From 42dbb7663927fbfa30db8b8f8526190bc417bd0f Mon Sep 17 00:00:00 2001 From: Lycs-D <139197676+Lycs-D@users.noreply.github.com> Date: Sat, 16 Mar 2024 07:29:25 +0800 Subject: [PATCH 1/2] [tree_sitter_v] Detach shebang from comment --- tree_sitter_v/grammar.cjs | 4 +- tree_sitter_v/node_types.v | 2 + tree_sitter_v/src/grammar.json | 23 +- tree_sitter_v/src/node-types.json | 8 + tree_sitter_v/src/parser.c | 435351 +++++++++++----------- tree_sitter_v/test/corpus/comments.txt | 19 - tree_sitter_v/test/corpus/shebang.txt | 18 + 7 files changed, 218040 insertions(+), 217385 deletions(-) create mode 100644 tree_sitter_v/test/corpus/shebang.txt diff --git a/tree_sitter_v/grammar.cjs b/tree_sitter_v/grammar.cjs index 46cf89d6..42a923bd 100644 --- a/tree_sitter_v/grammar.cjs +++ b/tree_sitter_v/grammar.cjs @@ -152,6 +152,7 @@ module.exports = grammar({ rules: { source_file: ($) => seq( + optional($.shebang), optional($.module_clause), optional($.import_list), repeat( @@ -162,6 +163,8 @@ module.exports = grammar({ ), ), + shebang: (_) => token(/\#\!([^\\\r\n]+)+/), + // http://stackoverflow.com/questions/13014947/regex-to-match-a-c-style-multiline-comment/36328890#36328890 comment: (_) => token( @@ -169,7 +172,6 @@ module.exports = grammar({ /\/\/[^\n\r]*/, /\/\*(?:[^\/][^\*]+\/\*+[^\/][^\*]+)+(?:[^\*][^\/]+\*+\/[^\*][^\/]+)+\//, /\/\*[^\*]*\*\//, - /\#\!.*/, ), ), diff --git a/tree_sitter_v/node_types.v b/tree_sitter_v/node_types.v index b1fe236c..b1733635 100644 --- a/tree_sitter_v/node_types.v +++ b/tree_sitter_v/node_types.v @@ -182,6 +182,7 @@ pub enum NodeType { nil_ none_ rune_literal + shebang true_ } @@ -491,5 +492,6 @@ const node_type_name_to_enum = { 'nil': NodeType.nil_ 'none': NodeType.none_ 'rune_literal': NodeType.rune_literal + 'shebang': NodeType.shebang 'true': NodeType.true_ } diff --git a/tree_sitter_v/src/grammar.json b/tree_sitter_v/src/grammar.json index fc688372..1ca3dc1c 100644 --- a/tree_sitter_v/src/grammar.json +++ b/tree_sitter_v/src/grammar.json @@ -5,6 +5,18 @@ "source_file": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "shebang" + }, + { + "type": "BLANK" + } + ] + }, { "type": "CHOICE", "members": [ @@ -107,6 +119,13 @@ } ] }, + "shebang": { + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "\\#\\!([^\\\\\\r\\n]+)+" + } + }, "comment": { "type": "TOKEN", "content": { @@ -123,10 +142,6 @@ { "type": "PATTERN", "value": "\\/\\*[^\\*]*\\*\\/" - }, - { - "type": "PATTERN", - "value": "\\#\\!.*" } ] } diff --git a/tree_sitter_v/src/node-types.json b/tree_sitter_v/src/node-types.json index 68f58b3c..3a4984c8 100644 --- a/tree_sitter_v/src/node-types.json +++ b/tree_sitter_v/src/node-types.json @@ -3530,6 +3530,10 @@ { "type": "module_clause", "named": true + }, + { + "type": "shebang", + "named": true } ] } @@ -4633,6 +4637,10 @@ "type": "shared", "named": false }, + { + "type": "shebang", + "named": true + }, { "type": "spawn", "named": false diff --git a/tree_sitter_v/src/parser.c b/tree_sitter_v/src/parser.c index abcc8c73..a5a05d95 100644 --- a/tree_sitter_v/src/parser.c +++ b/tree_sitter_v/src/parser.c @@ -14,11 +14,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 4735 -#define LARGE_STATE_COUNT 1598 -#define SYMBOL_COUNT 352 +#define STATE_COUNT 4739 +#define LARGE_STATE_COUNT 1602 +#define SYMBOL_COUNT 353 #define ALIAS_COUNT 1 -#define TOKEN_COUNT 138 +#define TOKEN_COUNT 139 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 46 #define MAX_ALIAS_SEQUENCE_LENGTH 9 @@ -29,354 +29,355 @@ enum ts_symbol_identifiers { anon_sym_LF = 2, anon_sym_CR = 3, anon_sym_CR_LF = 4, - sym_comment = 5, - anon_sym_module = 6, - anon_sym_import = 7, - anon_sym_SEMI = 8, - anon_sym_DOT = 9, - anon_sym_as = 10, - anon_sym_LBRACE = 11, - anon_sym_COMMA = 12, - anon_sym_RBRACE = 13, - anon_sym_const = 14, - anon_sym_LPAREN = 15, - anon_sym_RPAREN = 16, - anon_sym_EQ = 17, - anon_sym___global = 18, - anon_sym_type = 19, - anon_sym_PIPE = 20, - anon_sym_fn = 21, - anon_sym_PLUS = 22, - anon_sym_DASH = 23, - anon_sym_STAR = 24, - anon_sym_SLASH = 25, - anon_sym_PERCENT = 26, - anon_sym_LT = 27, - anon_sym_GT = 28, - anon_sym_EQ_EQ = 29, - anon_sym_BANG_EQ = 30, - anon_sym_LT_EQ = 31, - anon_sym_GT_EQ = 32, - anon_sym_DOT_DOT_DOT = 33, - anon_sym_LBRACK = 34, - anon_sym_LT2 = 35, - anon_sym_RBRACK = 36, - anon_sym_struct = 37, - anon_sym_union = 38, - anon_sym_pub = 39, - anon_sym_mut = 40, - anon_sym_COLON = 41, - anon_sym_enum = 42, - anon_sym_interface = 43, - anon_sym_PLUS_PLUS = 44, - anon_sym_DASH_DASH = 45, - anon_sym_QMARK = 46, - anon_sym_BANG = 47, - anon_sym_go = 48, - anon_sym_spawn = 49, - anon_sym_json_DOTdecode = 50, - anon_sym_LBRACK2 = 51, - anon_sym_TILDE = 52, - anon_sym_CARET = 53, - anon_sym_AMP = 54, - anon_sym_LT_DASH = 55, - anon_sym_LT_LT = 56, - anon_sym_GT_GT = 57, - anon_sym_GT_GT_GT = 58, - anon_sym_AMP_CARET = 59, - anon_sym_AMP_AMP = 60, - anon_sym_PIPE_PIPE = 61, - anon_sym_DOLLAR = 62, - anon_sym_or = 63, - sym_escape_sequence = 64, - sym_none = 65, - sym_true = 66, - sym_false = 67, - sym_nil = 68, - anon_sym_QMARK_DOT = 69, - anon_sym_POUND_LBRACK = 70, - anon_sym_if = 71, - anon_sym_else = 72, - anon_sym_DOLLARif = 73, - anon_sym_DOLLARelse = 74, - anon_sym_is = 75, - anon_sym_BANGis = 76, - anon_sym_in = 77, - anon_sym_BANGin = 78, - anon_sym_match = 79, - anon_sym_select = 80, - anon_sym_STAR_EQ = 81, - anon_sym_SLASH_EQ = 82, - anon_sym_PERCENT_EQ = 83, - anon_sym_LT_LT_EQ = 84, - anon_sym_GT_GT_EQ = 85, - anon_sym_GT_GT_GT_EQ = 86, - anon_sym_AMP_EQ = 87, - anon_sym_AMP_CARET_EQ = 88, - anon_sym_PLUS_EQ = 89, - anon_sym_DASH_EQ = 90, - anon_sym_PIPE_EQ = 91, - anon_sym_CARET_EQ = 92, - anon_sym_COLON_EQ = 93, - anon_sym_lock = 94, - anon_sym_rlock = 95, - anon_sym_unsafe = 96, - anon_sym_sql = 97, - sym_int_literal = 98, - sym_float_literal = 99, - sym_rune_literal = 100, - aux_sym_c_string_literal_token1 = 101, - aux_sym_c_string_literal_token2 = 102, - aux_sym_raw_string_literal_token1 = 103, - aux_sym_raw_string_literal_token2 = 104, - aux_sym_format_specifier_token1 = 105, - aux_sym_format_specifier_token2 = 106, - anon_sym_0 = 107, - anon_sym_AT = 108, - aux_sym_pseudo_compile_time_identifier_token1 = 109, - anon_sym_static = 110, - anon_sym_volatile = 111, - anon_sym_shared = 112, - anon_sym_map_LBRACK = 113, - anon_sym_chan = 114, - anon_sym_thread = 115, - anon_sym_atomic = 116, - anon_sym_assert = 117, - anon_sym_defer = 118, - anon_sym_goto = 119, - anon_sym_break = 120, - anon_sym_continue = 121, - anon_sym_return = 122, - anon_sym_DOLLARfor = 123, - anon_sym_for = 124, - anon_sym_DOT_DOT = 125, - anon_sym_POUND = 126, - aux_sym_hash_statement_token1 = 127, - anon_sym_asm = 128, - aux_sym__content_block_token1 = 129, - anon_sym_AT_LBRACK = 130, - sym___dolcbr = 131, - sym___double_quote = 132, - sym___single_quote = 133, - sym___c_double_quote = 134, - sym___c_single_quote = 135, - sym___r_double_quote = 136, - sym___r_single_quote = 137, - sym_source_file = 138, - sym_module_clause = 139, - sym_import_list = 140, - sym_import_declaration = 141, - sym_import_spec = 142, - sym_import_path = 143, - sym_import_name = 144, - sym_import_alias = 145, - sym_selective_import_list = 146, - sym_const_declaration = 147, - sym_const_definition = 148, - sym_global_var_declaration = 149, - sym_global_var_definition = 150, - sym__global_var_value = 151, - sym_type_declaration = 152, - sym__type_union_list = 153, - sym_function_declaration = 154, - sym_static_method_declaration = 155, - sym_static_receiver = 156, - sym__function_name = 157, - sym_overridable_operator = 158, - sym_receiver = 159, - sym_signature = 160, - sym_parameter_list = 161, - sym_parameter_declaration = 162, - sym_type_parameter_list = 163, - sym_type_parameter_declaration = 164, - sym_generic_parameters = 165, - sym_generic_parameter = 166, - sym_struct_declaration = 167, - sym__struct_body = 168, - sym_struct_field_scope = 169, - sym_struct_field_declaration = 170, - sym__struct_field_definition = 171, - sym_embedded_definition = 172, - sym_enum_declaration = 173, - sym_enum_backed_type = 174, - sym__enum_body = 175, - sym_enum_field_definition = 176, - sym_interface_declaration = 177, - sym__interface_body = 178, - sym_interface_method_definition = 179, - sym__expression = 180, - sym__expression_without_blocks = 181, - sym__expression_with_blocks = 182, - sym_strictly_expression_list = 183, - sym_inc_expression = 184, - sym_dec_expression = 185, - sym_or_block_expression = 186, - sym_option_propagation_expression = 187, - sym_result_propagation_expression = 188, - sym_anon_struct_value_expression = 189, - sym_go_expression = 190, - sym_spawn_expression = 191, - sym_parenthesized_expression = 192, - sym_call_expression = 193, - sym_type_parameters = 194, - sym_argument_list = 195, - sym_argument = 196, - sym_special_argument_list = 197, - sym_type_initializer = 198, - sym_type_initializer_body = 199, - sym_element_list = 200, - sym_short_element_list = 201, - sym_element = 202, - sym_keyed_element = 203, - sym_field_name = 204, - sym_function_literal = 205, - sym_capture_list = 206, - sym_capture = 207, - sym_reference_expression = 208, - sym_type_reference_expression = 209, - sym_unary_expression = 210, - sym_receive_expression = 211, - sym_binary_expression = 212, - sym_as_type_cast_expression = 213, - sym_compile_time_selector_expression = 214, - sym_or_block = 215, - sym__max_group = 216, - sym_literal = 217, - sym_spread_expression = 218, - sym_map_init_expression = 219, - sym_map_keyed_element = 220, - sym_array_creation = 221, - sym_fixed_array_creation = 222, - sym_selector_expression = 223, - sym_index_expression = 224, - sym_slice_expression = 225, - sym_if_expression = 226, - sym_else_branch = 227, - sym_compile_time_if_expression = 228, - sym_is_expression = 229, - sym_not_is_expression = 230, - sym_in_expression = 231, - sym_not_in_expression = 232, - sym_enum_fetch = 233, - sym_match_expression = 234, - sym_match_arms = 235, - sym_match_arm = 236, - sym_match_expression_list = 237, - sym_match_arm_type = 238, - sym_match_else_arm_clause = 239, - sym_select_expression = 240, - sym_select_arm = 241, - sym_select_arm_statement = 242, - sym__select_arm_assignment_statement = 243, - sym_select_var_declaration = 244, - sym_select_else_arn_clause = 245, - sym_lock_expression = 246, - sym_unsafe_expression = 247, - sym_sql_expression = 248, - sym_c_string_literal = 249, - sym_raw_string_literal = 250, - sym_interpreted_string_literal = 251, - sym_string_interpolation = 252, - sym_format_specifier = 253, - sym_pseudo_compile_time_identifier = 254, - sym_visibility_modifiers = 255, - sym_mutability_modifiers = 256, - sym_mutable_identifier = 257, - sym_mutable_expression = 258, - sym_identifier_list = 259, - sym_expression_list = 260, - sym_expression_without_blocks_list = 261, - sym_plain_type = 262, - sym__plain_type_without_special = 263, - sym_anon_struct_type = 264, - sym_multi_return_type = 265, - sym_result_type = 266, - sym_option_type = 267, - sym_qualified_type = 268, - sym_fixed_array_type = 269, - sym_array_type = 270, - sym_pointer_type = 271, - sym_wrong_pointer_type = 272, - sym_map_type = 273, - sym_channel_type = 274, - sym_shared_type = 275, - sym_thread_type = 276, - sym_atomic_type = 277, - sym_generic_type = 278, - sym_function_type = 279, - sym__statement_list = 280, - sym__statement = 281, - sym_simple_statement = 282, - sym_assert_statement = 283, - sym_append_statement = 284, - sym_send_statement = 285, - sym_var_declaration = 286, - sym_var_definition_list = 287, - sym_var_definition = 288, - sym_assignment_statement = 289, - sym_block = 290, - sym_defer_statement = 291, - sym_label_reference = 292, - sym_goto_statement = 293, - sym_break_statement = 294, - sym_continue_statement = 295, - sym_return_statement = 296, - sym_label_definition = 297, - sym_labeled_statement = 298, - sym_empty_labeled_statement = 299, - sym_compile_time_for_statement = 300, - sym_for_statement = 301, - sym_range_clause = 302, - sym_for_clause = 303, - sym__definite_range = 304, - sym_range = 305, - sym_hash_statement = 306, - sym_asm_statement = 307, - sym__content_block = 308, - sym_attributes = 309, - sym_attribute = 310, - sym_attribute_expression = 311, - sym_if_attribute = 312, - sym__plain_attribute = 313, - sym_literal_attribute = 314, - sym_value_attribute = 315, - sym_key_value_attribute = 316, - sym___rcbr = 317, - aux_sym_source_file_repeat1 = 318, - aux_sym_import_list_repeat1 = 319, - aux_sym_import_path_repeat1 = 320, - aux_sym_selective_import_list_repeat1 = 321, - aux_sym_const_declaration_repeat1 = 322, - aux_sym_global_var_declaration_repeat1 = 323, - aux_sym__type_union_list_repeat1 = 324, - aux_sym_parameter_list_repeat1 = 325, - aux_sym_type_parameter_list_repeat1 = 326, - aux_sym_generic_parameters_repeat1 = 327, - aux_sym__struct_body_repeat1 = 328, - aux_sym__enum_body_repeat1 = 329, - aux_sym__interface_body_repeat1 = 330, - aux_sym_strictly_expression_list_repeat1 = 331, - aux_sym_type_parameters_repeat1 = 332, - aux_sym_argument_list_repeat1 = 333, - aux_sym_element_list_repeat1 = 334, - aux_sym_short_element_list_repeat1 = 335, - aux_sym_capture_list_repeat1 = 336, - aux_sym_map_init_expression_repeat1 = 337, - aux_sym__array_repeat1 = 338, - aux_sym_match_arms_repeat1 = 339, - aux_sym_match_expression_list_repeat1 = 340, - aux_sym_select_expression_repeat1 = 341, - aux_sym_c_string_literal_repeat1 = 342, - aux_sym_c_string_literal_repeat2 = 343, - aux_sym_raw_string_literal_repeat1 = 344, - aux_sym_raw_string_literal_repeat2 = 345, - aux_sym_identifier_list_repeat1 = 346, - aux_sym_expression_without_blocks_list_repeat1 = 347, - aux_sym__statement_list_repeat1 = 348, - aux_sym_var_definition_list_repeat1 = 349, - aux_sym_attributes_repeat1 = 350, - aux_sym_attribute_repeat1 = 351, - alias_sym_interpolation_expression = 352, + sym_shebang = 5, + sym_comment = 6, + anon_sym_module = 7, + anon_sym_import = 8, + anon_sym_SEMI = 9, + anon_sym_DOT = 10, + anon_sym_as = 11, + anon_sym_LBRACE = 12, + anon_sym_COMMA = 13, + anon_sym_RBRACE = 14, + anon_sym_const = 15, + anon_sym_LPAREN = 16, + anon_sym_RPAREN = 17, + anon_sym_EQ = 18, + anon_sym___global = 19, + anon_sym_type = 20, + anon_sym_PIPE = 21, + anon_sym_fn = 22, + anon_sym_PLUS = 23, + anon_sym_DASH = 24, + anon_sym_STAR = 25, + anon_sym_SLASH = 26, + anon_sym_PERCENT = 27, + anon_sym_LT = 28, + anon_sym_GT = 29, + anon_sym_EQ_EQ = 30, + anon_sym_BANG_EQ = 31, + anon_sym_LT_EQ = 32, + anon_sym_GT_EQ = 33, + anon_sym_DOT_DOT_DOT = 34, + anon_sym_LBRACK = 35, + anon_sym_LT2 = 36, + anon_sym_RBRACK = 37, + anon_sym_struct = 38, + anon_sym_union = 39, + anon_sym_pub = 40, + anon_sym_mut = 41, + anon_sym_COLON = 42, + anon_sym_enum = 43, + anon_sym_interface = 44, + anon_sym_PLUS_PLUS = 45, + anon_sym_DASH_DASH = 46, + anon_sym_QMARK = 47, + anon_sym_BANG = 48, + anon_sym_go = 49, + anon_sym_spawn = 50, + anon_sym_json_DOTdecode = 51, + anon_sym_LBRACK2 = 52, + anon_sym_TILDE = 53, + anon_sym_CARET = 54, + anon_sym_AMP = 55, + anon_sym_LT_DASH = 56, + anon_sym_LT_LT = 57, + anon_sym_GT_GT = 58, + anon_sym_GT_GT_GT = 59, + anon_sym_AMP_CARET = 60, + anon_sym_AMP_AMP = 61, + anon_sym_PIPE_PIPE = 62, + anon_sym_DOLLAR = 63, + anon_sym_or = 64, + sym_escape_sequence = 65, + sym_none = 66, + sym_true = 67, + sym_false = 68, + sym_nil = 69, + anon_sym_QMARK_DOT = 70, + anon_sym_POUND_LBRACK = 71, + anon_sym_if = 72, + anon_sym_else = 73, + anon_sym_DOLLARif = 74, + anon_sym_DOLLARelse = 75, + anon_sym_is = 76, + anon_sym_BANGis = 77, + anon_sym_in = 78, + anon_sym_BANGin = 79, + anon_sym_match = 80, + anon_sym_select = 81, + anon_sym_STAR_EQ = 82, + anon_sym_SLASH_EQ = 83, + anon_sym_PERCENT_EQ = 84, + anon_sym_LT_LT_EQ = 85, + anon_sym_GT_GT_EQ = 86, + anon_sym_GT_GT_GT_EQ = 87, + anon_sym_AMP_EQ = 88, + anon_sym_AMP_CARET_EQ = 89, + anon_sym_PLUS_EQ = 90, + anon_sym_DASH_EQ = 91, + anon_sym_PIPE_EQ = 92, + anon_sym_CARET_EQ = 93, + anon_sym_COLON_EQ = 94, + anon_sym_lock = 95, + anon_sym_rlock = 96, + anon_sym_unsafe = 97, + anon_sym_sql = 98, + sym_int_literal = 99, + sym_float_literal = 100, + sym_rune_literal = 101, + aux_sym_c_string_literal_token1 = 102, + aux_sym_c_string_literal_token2 = 103, + aux_sym_raw_string_literal_token1 = 104, + aux_sym_raw_string_literal_token2 = 105, + aux_sym_format_specifier_token1 = 106, + aux_sym_format_specifier_token2 = 107, + anon_sym_0 = 108, + anon_sym_AT = 109, + aux_sym_pseudo_compile_time_identifier_token1 = 110, + anon_sym_static = 111, + anon_sym_volatile = 112, + anon_sym_shared = 113, + anon_sym_map_LBRACK = 114, + anon_sym_chan = 115, + anon_sym_thread = 116, + anon_sym_atomic = 117, + anon_sym_assert = 118, + anon_sym_defer = 119, + anon_sym_goto = 120, + anon_sym_break = 121, + anon_sym_continue = 122, + anon_sym_return = 123, + anon_sym_DOLLARfor = 124, + anon_sym_for = 125, + anon_sym_DOT_DOT = 126, + anon_sym_POUND = 127, + aux_sym_hash_statement_token1 = 128, + anon_sym_asm = 129, + aux_sym__content_block_token1 = 130, + anon_sym_AT_LBRACK = 131, + sym___dolcbr = 132, + sym___double_quote = 133, + sym___single_quote = 134, + sym___c_double_quote = 135, + sym___c_single_quote = 136, + sym___r_double_quote = 137, + sym___r_single_quote = 138, + sym_source_file = 139, + sym_module_clause = 140, + sym_import_list = 141, + sym_import_declaration = 142, + sym_import_spec = 143, + sym_import_path = 144, + sym_import_name = 145, + sym_import_alias = 146, + sym_selective_import_list = 147, + sym_const_declaration = 148, + sym_const_definition = 149, + sym_global_var_declaration = 150, + sym_global_var_definition = 151, + sym__global_var_value = 152, + sym_type_declaration = 153, + sym__type_union_list = 154, + sym_function_declaration = 155, + sym_static_method_declaration = 156, + sym_static_receiver = 157, + sym__function_name = 158, + sym_overridable_operator = 159, + sym_receiver = 160, + sym_signature = 161, + sym_parameter_list = 162, + sym_parameter_declaration = 163, + sym_type_parameter_list = 164, + sym_type_parameter_declaration = 165, + sym_generic_parameters = 166, + sym_generic_parameter = 167, + sym_struct_declaration = 168, + sym__struct_body = 169, + sym_struct_field_scope = 170, + sym_struct_field_declaration = 171, + sym__struct_field_definition = 172, + sym_embedded_definition = 173, + sym_enum_declaration = 174, + sym_enum_backed_type = 175, + sym__enum_body = 176, + sym_enum_field_definition = 177, + sym_interface_declaration = 178, + sym__interface_body = 179, + sym_interface_method_definition = 180, + sym__expression = 181, + sym__expression_without_blocks = 182, + sym__expression_with_blocks = 183, + sym_strictly_expression_list = 184, + sym_inc_expression = 185, + sym_dec_expression = 186, + sym_or_block_expression = 187, + sym_option_propagation_expression = 188, + sym_result_propagation_expression = 189, + sym_anon_struct_value_expression = 190, + sym_go_expression = 191, + sym_spawn_expression = 192, + sym_parenthesized_expression = 193, + sym_call_expression = 194, + sym_type_parameters = 195, + sym_argument_list = 196, + sym_argument = 197, + sym_special_argument_list = 198, + sym_type_initializer = 199, + sym_type_initializer_body = 200, + sym_element_list = 201, + sym_short_element_list = 202, + sym_element = 203, + sym_keyed_element = 204, + sym_field_name = 205, + sym_function_literal = 206, + sym_capture_list = 207, + sym_capture = 208, + sym_reference_expression = 209, + sym_type_reference_expression = 210, + sym_unary_expression = 211, + sym_receive_expression = 212, + sym_binary_expression = 213, + sym_as_type_cast_expression = 214, + sym_compile_time_selector_expression = 215, + sym_or_block = 216, + sym__max_group = 217, + sym_literal = 218, + sym_spread_expression = 219, + sym_map_init_expression = 220, + sym_map_keyed_element = 221, + sym_array_creation = 222, + sym_fixed_array_creation = 223, + sym_selector_expression = 224, + sym_index_expression = 225, + sym_slice_expression = 226, + sym_if_expression = 227, + sym_else_branch = 228, + sym_compile_time_if_expression = 229, + sym_is_expression = 230, + sym_not_is_expression = 231, + sym_in_expression = 232, + sym_not_in_expression = 233, + sym_enum_fetch = 234, + sym_match_expression = 235, + sym_match_arms = 236, + sym_match_arm = 237, + sym_match_expression_list = 238, + sym_match_arm_type = 239, + sym_match_else_arm_clause = 240, + sym_select_expression = 241, + sym_select_arm = 242, + sym_select_arm_statement = 243, + sym__select_arm_assignment_statement = 244, + sym_select_var_declaration = 245, + sym_select_else_arn_clause = 246, + sym_lock_expression = 247, + sym_unsafe_expression = 248, + sym_sql_expression = 249, + sym_c_string_literal = 250, + sym_raw_string_literal = 251, + sym_interpreted_string_literal = 252, + sym_string_interpolation = 253, + sym_format_specifier = 254, + sym_pseudo_compile_time_identifier = 255, + sym_visibility_modifiers = 256, + sym_mutability_modifiers = 257, + sym_mutable_identifier = 258, + sym_mutable_expression = 259, + sym_identifier_list = 260, + sym_expression_list = 261, + sym_expression_without_blocks_list = 262, + sym_plain_type = 263, + sym__plain_type_without_special = 264, + sym_anon_struct_type = 265, + sym_multi_return_type = 266, + sym_result_type = 267, + sym_option_type = 268, + sym_qualified_type = 269, + sym_fixed_array_type = 270, + sym_array_type = 271, + sym_pointer_type = 272, + sym_wrong_pointer_type = 273, + sym_map_type = 274, + sym_channel_type = 275, + sym_shared_type = 276, + sym_thread_type = 277, + sym_atomic_type = 278, + sym_generic_type = 279, + sym_function_type = 280, + sym__statement_list = 281, + sym__statement = 282, + sym_simple_statement = 283, + sym_assert_statement = 284, + sym_append_statement = 285, + sym_send_statement = 286, + sym_var_declaration = 287, + sym_var_definition_list = 288, + sym_var_definition = 289, + sym_assignment_statement = 290, + sym_block = 291, + sym_defer_statement = 292, + sym_label_reference = 293, + sym_goto_statement = 294, + sym_break_statement = 295, + sym_continue_statement = 296, + sym_return_statement = 297, + sym_label_definition = 298, + sym_labeled_statement = 299, + sym_empty_labeled_statement = 300, + sym_compile_time_for_statement = 301, + sym_for_statement = 302, + sym_range_clause = 303, + sym_for_clause = 304, + sym__definite_range = 305, + sym_range = 306, + sym_hash_statement = 307, + sym_asm_statement = 308, + sym__content_block = 309, + sym_attributes = 310, + sym_attribute = 311, + sym_attribute_expression = 312, + sym_if_attribute = 313, + sym__plain_attribute = 314, + sym_literal_attribute = 315, + sym_value_attribute = 316, + sym_key_value_attribute = 317, + sym___rcbr = 318, + aux_sym_source_file_repeat1 = 319, + aux_sym_import_list_repeat1 = 320, + aux_sym_import_path_repeat1 = 321, + aux_sym_selective_import_list_repeat1 = 322, + aux_sym_const_declaration_repeat1 = 323, + aux_sym_global_var_declaration_repeat1 = 324, + aux_sym__type_union_list_repeat1 = 325, + aux_sym_parameter_list_repeat1 = 326, + aux_sym_type_parameter_list_repeat1 = 327, + aux_sym_generic_parameters_repeat1 = 328, + aux_sym__struct_body_repeat1 = 329, + aux_sym__enum_body_repeat1 = 330, + aux_sym__interface_body_repeat1 = 331, + aux_sym_strictly_expression_list_repeat1 = 332, + aux_sym_type_parameters_repeat1 = 333, + aux_sym_argument_list_repeat1 = 334, + aux_sym_element_list_repeat1 = 335, + aux_sym_short_element_list_repeat1 = 336, + aux_sym_capture_list_repeat1 = 337, + aux_sym_map_init_expression_repeat1 = 338, + aux_sym__array_repeat1 = 339, + aux_sym_match_arms_repeat1 = 340, + aux_sym_match_expression_list_repeat1 = 341, + aux_sym_select_expression_repeat1 = 342, + aux_sym_c_string_literal_repeat1 = 343, + aux_sym_c_string_literal_repeat2 = 344, + aux_sym_raw_string_literal_repeat1 = 345, + aux_sym_raw_string_literal_repeat2 = 346, + aux_sym_identifier_list_repeat1 = 347, + aux_sym_expression_without_blocks_list_repeat1 = 348, + aux_sym__statement_list_repeat1 = 349, + aux_sym_var_definition_list_repeat1 = 350, + aux_sym_attributes_repeat1 = 351, + aux_sym_attribute_repeat1 = 352, + alias_sym_interpolation_expression = 353, }; static const char * const ts_symbol_names[] = { @@ -385,6 +386,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_LF] = "\n", [anon_sym_CR] = "\r", [anon_sym_CR_LF] = "\r\n", + [sym_shebang] = "shebang", [sym_comment] = "comment", [anon_sym_module] = "module", [anon_sym_import] = "import", @@ -741,6 +743,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LF] = anon_sym_LF, [anon_sym_CR] = anon_sym_CR, [anon_sym_CR_LF] = anon_sym_CR_LF, + [sym_shebang] = sym_shebang, [sym_comment] = sym_comment, [anon_sym_module] = anon_sym_module, [anon_sym_import] = anon_sym_import, @@ -1112,6 +1115,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [sym_shebang] = { + .visible = true, + .named = true, + }, [sym_comment] = { .visible = true, .named = true, @@ -3346,847 +3353,847 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [7] = 7, [8] = 8, [9] = 9, - [10] = 9, - [11] = 9, - [12] = 9, - [13] = 9, - [14] = 9, - [15] = 9, - [16] = 9, - [17] = 9, - [18] = 9, - [19] = 9, - [20] = 9, - [21] = 9, - [22] = 9, - [23] = 9, - [24] = 9, - [25] = 9, - [26] = 9, - [27] = 9, - [28] = 9, - [29] = 9, - [30] = 9, - [31] = 9, - [32] = 9, - [33] = 9, - [34] = 9, - [35] = 35, - [36] = 35, - [37] = 35, - [38] = 35, - [39] = 35, - [40] = 35, - [41] = 35, - [42] = 35, - [43] = 35, - [44] = 35, - [45] = 35, - [46] = 35, - [47] = 35, - [48] = 35, - [49] = 35, - [50] = 35, - [51] = 35, - [52] = 35, - [53] = 35, - [54] = 35, - [55] = 55, - [56] = 56, - [57] = 57, - [58] = 58, - [59] = 58, + [10] = 10, + [11] = 11, + [12] = 12, + [13] = 13, + [14] = 13, + [15] = 13, + [16] = 13, + [17] = 13, + [18] = 13, + [19] = 13, + [20] = 13, + [21] = 13, + [22] = 13, + [23] = 13, + [24] = 13, + [25] = 13, + [26] = 13, + [27] = 13, + [28] = 13, + [29] = 13, + [30] = 13, + [31] = 13, + [32] = 13, + [33] = 13, + [34] = 13, + [35] = 13, + [36] = 13, + [37] = 13, + [38] = 13, + [39] = 39, + [40] = 39, + [41] = 39, + [42] = 39, + [43] = 39, + [44] = 39, + [45] = 39, + [46] = 39, + [47] = 39, + [48] = 39, + [49] = 39, + [50] = 39, + [51] = 39, + [52] = 39, + [53] = 39, + [54] = 39, + [55] = 39, + [56] = 39, + [57] = 39, + [58] = 39, + [59] = 59, [60] = 60, [61] = 61, [62] = 62, - [63] = 63, + [63] = 62, [64] = 64, [65] = 65, [66] = 66, [67] = 67, - [68] = 67, - [69] = 67, - [70] = 67, - [71] = 67, - [72] = 67, - [73] = 67, - [74] = 67, - [75] = 67, - [76] = 67, - [77] = 67, - [78] = 67, - [79] = 67, - [80] = 80, - [81] = 80, - [82] = 80, - [83] = 80, - [84] = 80, - [85] = 80, - [86] = 80, - [87] = 80, - [88] = 80, - [89] = 80, - [90] = 80, - [91] = 80, - [92] = 80, - [93] = 80, - [94] = 80, - [95] = 80, - [96] = 80, - [97] = 80, - [98] = 80, - [99] = 80, - [100] = 80, - [101] = 80, - [102] = 102, - [103] = 102, - [104] = 104, - [105] = 104, + [68] = 68, + [69] = 69, + [70] = 70, + [71] = 71, + [72] = 71, + [73] = 71, + [74] = 71, + [75] = 71, + [76] = 71, + [77] = 71, + [78] = 71, + [79] = 71, + [80] = 71, + [81] = 71, + [82] = 71, + [83] = 71, + [84] = 84, + [85] = 84, + [86] = 84, + [87] = 84, + [88] = 84, + [89] = 84, + [90] = 84, + [91] = 84, + [92] = 84, + [93] = 84, + [94] = 84, + [95] = 84, + [96] = 84, + [97] = 84, + [98] = 84, + [99] = 84, + [100] = 84, + [101] = 84, + [102] = 84, + [103] = 84, + [104] = 84, + [105] = 84, [106] = 106, - [107] = 104, + [107] = 106, [108] = 108, - [109] = 106, - [110] = 104, - [111] = 106, - [112] = 108, - [113] = 104, + [109] = 109, + [110] = 110, + [111] = 109, + [112] = 110, + [113] = 108, [114] = 108, - [115] = 106, - [116] = 104, - [117] = 106, - [118] = 108, - [119] = 106, - [120] = 104, - [121] = 104, - [122] = 108, + [115] = 109, + [116] = 109, + [117] = 108, + [118] = 110, + [119] = 110, + [120] = 110, + [121] = 108, + [122] = 109, [123] = 108, - [124] = 104, - [125] = 106, - [126] = 108, - [127] = 104, + [124] = 110, + [125] = 109, + [126] = 109, + [127] = 110, [128] = 108, - [129] = 104, - [130] = 106, + [129] = 110, + [130] = 108, [131] = 108, - [132] = 108, - [133] = 106, - [134] = 104, - [135] = 106, + [132] = 110, + [133] = 110, + [134] = 110, + [135] = 109, [136] = 108, - [137] = 108, - [138] = 106, - [139] = 106, - [140] = 106, - [141] = 104, - [142] = 108, - [143] = 143, - [144] = 143, - [145] = 143, - [146] = 146, - [147] = 143, - [148] = 143, - [149] = 143, - [150] = 143, - [151] = 143, - [152] = 143, - [153] = 143, - [154] = 143, - [155] = 143, - [156] = 143, - [157] = 157, - [158] = 157, - [159] = 157, - [160] = 157, - [161] = 157, - [162] = 157, - [163] = 157, - [164] = 157, - [165] = 157, - [166] = 157, - [167] = 157, - [168] = 157, - [169] = 157, - [170] = 170, - [171] = 171, - [172] = 172, - [173] = 173, + [137] = 109, + [138] = 109, + [139] = 108, + [140] = 110, + [141] = 108, + [142] = 110, + [143] = 109, + [144] = 109, + [145] = 108, + [146] = 109, + [147] = 147, + [148] = 147, + [149] = 147, + [150] = 147, + [151] = 147, + [152] = 147, + [153] = 147, + [154] = 147, + [155] = 147, + [156] = 147, + [157] = 147, + [158] = 158, + [159] = 147, + [160] = 147, + [161] = 161, + [162] = 161, + [163] = 161, + [164] = 161, + [165] = 161, + [166] = 161, + [167] = 161, + [168] = 161, + [169] = 161, + [170] = 161, + [171] = 161, + [172] = 161, + [173] = 161, [174] = 174, - [175] = 174, - [176] = 174, + [175] = 175, + [176] = 176, [177] = 177, [178] = 178, [179] = 178, - [180] = 174, - [181] = 174, - [182] = 177, - [183] = 177, - [184] = 177, - [185] = 174, - [186] = 178, - [187] = 177, - [188] = 177, - [189] = 174, - [190] = 178, - [191] = 177, - [192] = 177, - [193] = 174, - [194] = 178, - [195] = 178, - [196] = 174, - [197] = 178, - [198] = 178, - [199] = 178, - [200] = 177, - [201] = 177, + [180] = 180, + [181] = 181, + [182] = 181, + [183] = 178, + [184] = 181, + [185] = 181, + [186] = 181, + [187] = 178, + [188] = 180, + [189] = 180, + [190] = 180, + [191] = 181, + [192] = 178, + [193] = 181, + [194] = 180, + [195] = 180, + [196] = 181, + [197] = 180, + [198] = 180, + [199] = 181, + [200] = 181, + [201] = 178, [202] = 178, [203] = 178, - [204] = 178, - [205] = 174, - [206] = 174, - [207] = 174, - [208] = 177, - [209] = 177, - [210] = 210, - [211] = 211, - [212] = 212, - [213] = 61, + [204] = 181, + [205] = 180, + [206] = 180, + [207] = 180, + [208] = 178, + [209] = 178, + [210] = 178, + [211] = 181, + [212] = 180, + [213] = 178, [214] = 214, [215] = 215, - [216] = 66, - [217] = 62, - [218] = 65, - [219] = 64, - [220] = 63, - [221] = 221, - [222] = 221, - [223] = 223, - [224] = 224, - [225] = 223, - [226] = 223, - [227] = 224, + [216] = 216, + [217] = 65, + [218] = 218, + [219] = 219, + [220] = 67, + [221] = 68, + [222] = 69, + [223] = 66, + [224] = 70, + [225] = 225, + [226] = 225, + [227] = 225, [228] = 228, - [229] = 221, - [230] = 228, - [231] = 221, - [232] = 223, - [233] = 228, - [234] = 234, + [229] = 229, + [230] = 230, + [231] = 228, + [232] = 228, + [233] = 230, + [234] = 225, [235] = 228, - [236] = 236, - [237] = 224, - [238] = 223, - [239] = 221, - [240] = 221, + [236] = 229, + [237] = 229, + [238] = 228, + [239] = 230, + [240] = 228, [241] = 228, - [242] = 224, - [243] = 221, - [244] = 224, - [245] = 234, - [246] = 228, + [242] = 228, + [243] = 230, + [244] = 228, + [245] = 228, + [246] = 229, [247] = 228, - [248] = 221, - [249] = 223, + [248] = 230, + [249] = 225, [250] = 228, - [251] = 223, - [252] = 223, - [253] = 223, - [254] = 223, - [255] = 223, + [251] = 229, + [252] = 252, + [253] = 225, + [254] = 230, + [255] = 229, [256] = 228, - [257] = 224, - [258] = 223, - [259] = 223, - [260] = 221, + [257] = 225, + [258] = 228, + [259] = 229, + [260] = 228, [261] = 261, - [262] = 223, - [263] = 223, + [262] = 230, + [263] = 230, [264] = 264, - [265] = 265, - [266] = 223, - [267] = 228, - [268] = 221, - [269] = 228, - [270] = 224, - [271] = 221, - [272] = 224, + [265] = 230, + [266] = 261, + [267] = 230, + [268] = 225, + [269] = 229, + [270] = 225, + [271] = 271, + [272] = 228, [273] = 228, - [274] = 224, - [275] = 221, - [276] = 223, - [277] = 223, - [278] = 224, - [279] = 223, - [280] = 280, - [281] = 228, - [282] = 221, - [283] = 223, - [284] = 224, - [285] = 223, - [286] = 224, - [287] = 224, - [288] = 223, - [289] = 289, - [290] = 290, - [291] = 290, + [274] = 230, + [275] = 225, + [276] = 225, + [277] = 277, + [278] = 230, + [279] = 229, + [280] = 228, + [281] = 229, + [282] = 229, + [283] = 225, + [284] = 228, + [285] = 228, + [286] = 225, + [287] = 229, + [288] = 228, + [289] = 228, + [290] = 230, + [291] = 229, [292] = 292, [293] = 293, [294] = 294, [295] = 295, - [296] = 296, + [296] = 293, [297] = 297, [298] = 298, - [299] = 295, - [300] = 296, + [299] = 298, + [300] = 297, [301] = 301, - [302] = 290, + [302] = 297, [303] = 303, - [304] = 294, - [305] = 293, - [306] = 296, - [307] = 295, + [304] = 304, + [305] = 305, + [306] = 303, + [307] = 301, [308] = 293, - [309] = 296, - [310] = 296, - [311] = 311, - [312] = 312, - [313] = 313, - [314] = 289, - [315] = 295, - [316] = 295, - [317] = 293, - [318] = 296, - [319] = 294, - [320] = 293, - [321] = 295, - [322] = 296, + [309] = 297, + [310] = 304, + [311] = 297, + [312] = 297, + [313] = 303, + [314] = 304, + [315] = 298, + [316] = 303, + [317] = 297, + [318] = 318, + [319] = 295, + [320] = 297, + [321] = 297, + [322] = 297, [323] = 295, - [324] = 290, - [325] = 293, + [324] = 324, + [325] = 297, [326] = 326, - [327] = 294, - [328] = 293, - [329] = 295, - [330] = 296, - [331] = 331, - [332] = 290, - [333] = 290, - [334] = 313, - [335] = 294, - [336] = 290, - [337] = 293, - [338] = 295, - [339] = 290, - [340] = 290, - [341] = 296, + [327] = 297, + [328] = 304, + [329] = 297, + [330] = 295, + [331] = 303, + [332] = 332, + [333] = 333, + [334] = 295, + [335] = 304, + [336] = 297, + [337] = 303, + [338] = 338, + [339] = 298, + [340] = 340, + [341] = 297, [342] = 342, - [343] = 290, - [344] = 294, - [345] = 290, - [346] = 290, - [347] = 296, - [348] = 296, - [349] = 294, + [343] = 343, + [344] = 305, + [345] = 297, + [346] = 298, + [347] = 298, + [348] = 304, + [349] = 303, [350] = 295, - [351] = 295, - [352] = 293, - [353] = 353, - [354] = 354, - [355] = 313, - [356] = 296, - [357] = 293, - [358] = 290, - [359] = 296, - [360] = 296, - [361] = 294, - [362] = 313, - [363] = 363, - [364] = 294, - [365] = 296, - [366] = 294, - [367] = 367, - [368] = 296, - [369] = 289, - [370] = 296, - [371] = 294, - [372] = 290, - [373] = 373, - [374] = 290, - [375] = 375, - [376] = 296, - [377] = 296, - [378] = 293, - [379] = 289, - [380] = 294, - [381] = 296, - [382] = 296, - [383] = 295, - [384] = 296, - [385] = 293, - [386] = 342, - [387] = 387, + [351] = 297, + [352] = 352, + [353] = 297, + [354] = 295, + [355] = 304, + [356] = 297, + [357] = 303, + [358] = 303, + [359] = 295, + [360] = 304, + [361] = 361, + [362] = 298, + [363] = 297, + [364] = 297, + [365] = 365, + [366] = 304, + [367] = 298, + [368] = 303, + [369] = 303, + [370] = 304, + [371] = 298, + [372] = 304, + [373] = 295, + [374] = 303, + [375] = 301, + [376] = 293, + [377] = 295, + [378] = 378, + [379] = 304, + [380] = 301, + [381] = 295, + [382] = 297, + [383] = 298, + [384] = 295, + [385] = 295, + [386] = 298, + [387] = 295, [388] = 388, - [389] = 389, - [390] = 390, + [389] = 298, + [390] = 295, [391] = 391, - [392] = 387, - [393] = 389, - [394] = 387, + [392] = 391, + [393] = 393, + [394] = 394, [395] = 395, [396] = 396, - [397] = 387, - [398] = 387, - [399] = 389, - [400] = 387, - [401] = 401, - [402] = 387, - [403] = 403, - [404] = 387, - [405] = 405, - [406] = 387, - [407] = 403, - [408] = 387, - [409] = 387, - [410] = 387, - [411] = 387, - [412] = 388, - [413] = 387, - [414] = 388, - [415] = 388, - [416] = 416, - [417] = 388, - [418] = 403, - [419] = 342, - [420] = 388, - [421] = 388, - [422] = 389, - [423] = 423, - [424] = 388, - [425] = 425, - [426] = 388, - [427] = 387, - [428] = 388, - [429] = 403, - [430] = 388, - [431] = 389, - [432] = 388, - [433] = 389, - [434] = 388, - [435] = 387, - [436] = 436, - [437] = 437, - [438] = 438, - [439] = 439, - [440] = 436, - [441] = 437, + [397] = 391, + [398] = 396, + [399] = 391, + [400] = 396, + [401] = 305, + [402] = 396, + [403] = 391, + [404] = 396, + [405] = 396, + [406] = 406, + [407] = 396, + [408] = 393, + [409] = 391, + [410] = 396, + [411] = 411, + [412] = 391, + [413] = 391, + [414] = 393, + [415] = 396, + [416] = 396, + [417] = 417, + [418] = 418, + [419] = 396, + [420] = 393, + [421] = 391, + [422] = 422, + [423] = 391, + [424] = 424, + [425] = 391, + [426] = 417, + [427] = 427, + [428] = 428, + [429] = 391, + [430] = 391, + [431] = 393, + [432] = 391, + [433] = 417, + [434] = 417, + [435] = 396, + [436] = 396, + [437] = 391, + [438] = 391, + [439] = 393, + [440] = 440, + [441] = 441, [442] = 442, - [443] = 438, + [443] = 443, [444] = 444, [445] = 445, - [446] = 446, + [446] = 445, [447] = 447, - [448] = 444, - [449] = 439, + [448] = 448, + [449] = 449, [450] = 450, [451] = 451, [452] = 452, - [453] = 452, - [454] = 451, - [455] = 439, - [456] = 456, + [453] = 451, + [454] = 454, + [455] = 455, + [456] = 440, [457] = 457, - [458] = 445, + [458] = 458, [459] = 459, - [460] = 452, - [461] = 461, + [460] = 447, + [461] = 444, [462] = 462, [463] = 463, - [464] = 444, - [465] = 437, - [466] = 466, - [467] = 342, + [464] = 464, + [465] = 465, + [466] = 305, + [467] = 455, [468] = 468, - [469] = 438, - [470] = 461, - [471] = 436, - [472] = 466, - [473] = 473, - [474] = 468, - [475] = 473, - [476] = 476, + [469] = 443, + [470] = 441, + [471] = 463, + [472] = 472, + [473] = 447, + [474] = 454, + [475] = 440, + [476] = 450, [477] = 477, - [478] = 439, - [479] = 451, - [480] = 476, - [481] = 466, - [482] = 452, - [483] = 342, - [484] = 450, - [485] = 468, - [486] = 445, - [487] = 487, - [488] = 463, - [489] = 437, - [490] = 463, - [491] = 477, - [492] = 466, - [493] = 493, - [494] = 494, - [495] = 342, + [478] = 449, + [479] = 479, + [480] = 444, + [481] = 305, + [482] = 465, + [483] = 445, + [484] = 452, + [485] = 457, + [486] = 451, + [487] = 441, + [488] = 454, + [489] = 462, + [490] = 468, + [491] = 443, + [492] = 455, + [493] = 442, + [494] = 464, + [495] = 305, [496] = 468, - [497] = 497, - [498] = 437, - [499] = 445, - [500] = 438, - [501] = 501, - [502] = 461, - [503] = 477, - [504] = 466, - [505] = 444, - [506] = 493, - [507] = 494, - [508] = 452, - [509] = 473, - [510] = 468, - [511] = 461, - [512] = 497, - [513] = 451, - [514] = 439, - [515] = 437, - [516] = 436, - [517] = 439, - [518] = 451, - [519] = 473, - [520] = 477, + [497] = 444, + [498] = 447, + [499] = 465, + [500] = 500, + [501] = 454, + [502] = 445, + [503] = 452, + [504] = 451, + [505] = 454, + [506] = 468, + [507] = 452, + [508] = 447, + [509] = 447, + [510] = 444, + [511] = 451, + [512] = 465, + [513] = 445, + [514] = 452, + [515] = 452, + [516] = 305, + [517] = 465, + [518] = 455, + [519] = 443, + [520] = 444, [521] = 521, - [522] = 439, - [523] = 451, - [524] = 466, - [525] = 493, - [526] = 494, - [527] = 342, - [528] = 468, - [529] = 497, - [530] = 530, - [531] = 452, - [532] = 439, - [533] = 451, - [534] = 452, - [535] = 445, - [536] = 444, - [537] = 461, - [538] = 445, - [539] = 473, - [540] = 444, - [541] = 445, - [542] = 463, - [543] = 477, - [544] = 466, - [545] = 493, - [546] = 452, + [522] = 468, + [523] = 445, + [524] = 445, + [525] = 464, + [526] = 526, + [527] = 443, + [528] = 454, + [529] = 445, + [530] = 455, + [531] = 451, + [532] = 454, + [533] = 468, + [534] = 441, + [535] = 443, + [536] = 463, + [537] = 472, + [538] = 538, + [539] = 440, + [540] = 455, + [541] = 305, + [542] = 465, + [543] = 305, + [544] = 452, + [545] = 545, + [546] = 449, [547] = 445, - [548] = 444, - [549] = 494, - [550] = 461, - [551] = 473, - [552] = 342, - [553] = 468, - [554] = 437, - [555] = 497, - [556] = 436, - [557] = 557, - [558] = 501, - [559] = 497, - [560] = 468, - [561] = 461, - [562] = 456, - [563] = 439, - [564] = 451, - [565] = 444, - [566] = 473, - [567] = 461, - [568] = 463, + [548] = 450, + [549] = 451, + [550] = 465, + [551] = 457, + [552] = 449, + [553] = 454, + [554] = 444, + [555] = 455, + [556] = 468, + [557] = 443, + [558] = 558, + [559] = 447, + [560] = 464, + [561] = 457, + [562] = 459, + [563] = 452, + [564] = 447, + [565] = 565, + [566] = 566, + [567] = 462, + [568] = 444, [569] = 569, - [570] = 473, - [571] = 447, - [572] = 494, - [573] = 462, - [574] = 436, - [575] = 497, - [576] = 493, - [577] = 466, - [578] = 477, - [579] = 468, - [580] = 342, - [581] = 494, - [582] = 463, - [583] = 462, - [584] = 493, - [585] = 466, - [586] = 477, - [587] = 466, - [588] = 493, - [589] = 494, - [590] = 438, - [591] = 342, - [592] = 468, - [593] = 497, - [594] = 439, - [595] = 437, - [596] = 596, - [597] = 597, - [598] = 463, - [599] = 497, + [570] = 442, + [571] = 462, + [572] = 442, + [573] = 457, + [574] = 465, + [575] = 445, + [576] = 465, + [577] = 450, + [578] = 451, + [579] = 440, + [580] = 463, + [581] = 441, + [582] = 464, + [583] = 454, + [584] = 462, + [585] = 442, + [586] = 468, + [587] = 464, + [588] = 468, + [589] = 305, + [590] = 441, + [591] = 463, + [592] = 463, + [593] = 455, + [594] = 443, + [595] = 464, + [596] = 443, + [597] = 442, + [598] = 443, + [599] = 464, [600] = 600, - [601] = 452, - [602] = 445, - [603] = 444, - [604] = 461, - [605] = 473, - [606] = 439, - [607] = 473, - [608] = 451, - [609] = 468, - [610] = 342, - [611] = 457, - [612] = 557, - [613] = 494, - [614] = 493, - [615] = 452, - [616] = 466, - [617] = 477, - [618] = 445, - [619] = 473, - [620] = 444, - [621] = 461, - [622] = 473, - [623] = 477, - [624] = 461, - [625] = 461, - [626] = 466, - [627] = 447, - [628] = 493, - [629] = 494, - [630] = 342, - [631] = 468, - [632] = 466, - [633] = 497, - [634] = 444, - [635] = 445, - [636] = 452, - [637] = 451, - [638] = 439, - [639] = 462, - [640] = 451, - [641] = 451, - [642] = 497, - [643] = 452, - [644] = 445, - [645] = 494, - [646] = 444, - [647] = 493, - [648] = 477, - [649] = 461, - [650] = 473, - [651] = 439, - [652] = 473, - [653] = 451, - [654] = 468, - [655] = 342, - [656] = 452, - [657] = 445, - [658] = 466, - [659] = 461, - [660] = 444, - [661] = 477, - [662] = 466, - [663] = 444, - [664] = 493, - [665] = 445, - [666] = 494, - [667] = 446, - [668] = 452, - [669] = 451, - [670] = 439, - [671] = 438, - [672] = 461, - [673] = 342, - [674] = 473, - [675] = 468, - [676] = 497, - [677] = 439, - [678] = 451, + [601] = 455, + [602] = 464, + [603] = 462, + [604] = 457, + [605] = 305, + [606] = 449, + [607] = 450, + [608] = 465, + [609] = 464, + [610] = 445, + [611] = 450, + [612] = 441, + [613] = 451, + [614] = 463, + [615] = 615, + [616] = 449, + [617] = 452, + [618] = 618, + [619] = 447, + [620] = 442, + [621] = 440, + [622] = 450, + [623] = 444, + [624] = 477, + [625] = 558, + [626] = 464, + [627] = 454, + [628] = 452, + [629] = 449, + [630] = 449, + [631] = 449, + [632] = 443, + [633] = 468, + [634] = 447, + [635] = 457, + [636] = 441, + [637] = 462, + [638] = 442, + [639] = 441, + [640] = 444, + [641] = 440, + [642] = 455, + [643] = 447, + [644] = 444, + [645] = 454, + [646] = 463, + [647] = 447, + [648] = 444, + [649] = 440, + [650] = 452, + [651] = 464, + [652] = 442, + [653] = 465, + [654] = 305, + [655] = 455, + [656] = 449, + [657] = 443, + [658] = 658, + [659] = 462, + [660] = 457, + [661] = 445, + [662] = 440, + [663] = 450, + [664] = 450, + [665] = 451, + [666] = 447, + [667] = 457, + [668] = 305, + [669] = 462, + [670] = 455, + [671] = 442, + [672] = 463, + [673] = 444, + [674] = 447, + [675] = 442, + [676] = 462, + [677] = 444, + [678] = 440, [679] = 452, - [680] = 445, - [681] = 444, - [682] = 461, - [683] = 439, - [684] = 597, - [685] = 451, - [686] = 452, - [687] = 473, - [688] = 445, - [689] = 444, - [690] = 461, - [691] = 473, - [692] = 436, - [693] = 436, - [694] = 439, - [695] = 451, - [696] = 462, - [697] = 442, - [698] = 439, - [699] = 477, - [700] = 466, - [701] = 493, - [702] = 438, - [703] = 451, - [704] = 494, - [705] = 342, - [706] = 468, - [707] = 497, - [708] = 708, - [709] = 452, - [710] = 445, - [711] = 452, - [712] = 445, - [713] = 444, - [714] = 461, - [715] = 444, - [716] = 473, - [717] = 461, - [718] = 473, + [680] = 457, + [681] = 681, + [682] = 465, + [683] = 443, + [684] = 463, + [685] = 450, + [686] = 441, + [687] = 457, + [688] = 444, + [689] = 558, + [690] = 447, + [691] = 452, + [692] = 465, + [693] = 452, + [694] = 305, + [695] = 455, + [696] = 443, + [697] = 462, + [698] = 465, + [699] = 444, + [700] = 450, + [701] = 447, + [702] = 305, + [703] = 440, + [704] = 452, + [705] = 463, + [706] = 447, + [707] = 441, + [708] = 465, + [709] = 305, + [710] = 444, + [711] = 455, + [712] = 443, + [713] = 305, + [714] = 455, + [715] = 443, + [716] = 500, + [717] = 441, + [718] = 449, [719] = 463, - [720] = 463, - [721] = 497, - [722] = 473, - [723] = 437, - [724] = 468, - [725] = 477, - [726] = 466, - [727] = 497, - [728] = 493, - [729] = 468, - [730] = 342, - [731] = 494, - [732] = 493, - [733] = 494, - [734] = 734, - [735] = 342, - [736] = 466, - [737] = 737, - [738] = 468, - [739] = 497, - [740] = 477, - [741] = 342, - [742] = 494, - [743] = 493, - [744] = 466, - [745] = 462, - [746] = 477, - [747] = 497, - [748] = 473, - [749] = 462, - [750] = 750, - [751] = 461, - [752] = 444, - [753] = 445, - [754] = 600, - [755] = 438, - [756] = 452, - [757] = 462, - [758] = 494, - [759] = 493, - [760] = 477, - [761] = 468, - [762] = 436, - [763] = 477, - [764] = 342, - [765] = 466, - [766] = 463, - [767] = 437, - [768] = 438, - [769] = 436, - [770] = 462, - [771] = 462, - [772] = 477, - [773] = 597, - [774] = 466, - [775] = 493, - [776] = 494, - [777] = 342, - [778] = 468, - [779] = 497, - [780] = 466, - [781] = 462, - [782] = 451, - [783] = 439, - [784] = 597, - [785] = 493, - [786] = 750, - [787] = 597, - [788] = 459, - [789] = 597, - [790] = 494, - [791] = 439, - [792] = 792, - [793] = 463, - [794] = 342, - [795] = 597, - [796] = 437, - [797] = 438, - [798] = 597, - [799] = 436, - [800] = 468, - [801] = 436, - [802] = 451, - [803] = 477, - [804] = 466, - [805] = 487, - [806] = 497, - [807] = 497, - [808] = 468, - [809] = 493, - [810] = 463, - [811] = 494, - [812] = 342, - [813] = 342, - [814] = 439, - [815] = 462, - [816] = 494, - [817] = 597, - [818] = 493, - [819] = 477, - [820] = 466, - [821] = 493, - [822] = 494, - [823] = 342, - [824] = 468, - [825] = 497, - [826] = 451, - [827] = 597, - [828] = 452, - [829] = 829, - [830] = 597, - [831] = 452, - [832] = 468, - [833] = 437, - [834] = 497, - [835] = 597, - [836] = 438, - [837] = 597, - [838] = 436, - [839] = 445, - [840] = 438, - [841] = 445, - [842] = 444, - [843] = 462, - [844] = 444, - [845] = 461, - [846] = 477, - [847] = 847, - [848] = 848, - [849] = 849, - [850] = 850, + [720] = 441, + [721] = 468, + [722] = 463, + [723] = 440, + [724] = 450, + [725] = 457, + [726] = 462, + [727] = 442, + [728] = 463, + [729] = 440, + [730] = 441, + [731] = 450, + [732] = 463, + [733] = 457, + [734] = 462, + [735] = 442, + [736] = 465, + [737] = 440, + [738] = 738, + [739] = 450, + [740] = 441, + [741] = 741, + [742] = 457, + [743] = 462, + [744] = 442, + [745] = 442, + [746] = 463, + [747] = 440, + [748] = 450, + [749] = 457, + [750] = 462, + [751] = 462, + [752] = 442, + [753] = 455, + [754] = 305, + [755] = 454, + [756] = 447, + [757] = 457, + [758] = 569, + [759] = 441, + [760] = 442, + [761] = 455, + [762] = 462, + [763] = 468, + [764] = 457, + [765] = 450, + [766] = 450, + [767] = 440, + [768] = 444, + [769] = 442, + [770] = 463, + [771] = 451, + [772] = 440, + [773] = 444, + [774] = 658, + [775] = 447, + [776] = 462, + [777] = 457, + [778] = 452, + [779] = 615, + [780] = 447, + [781] = 566, + [782] = 450, + [783] = 440, + [784] = 463, + [785] = 450, + [786] = 441, + [787] = 441, + [788] = 445, + [789] = 465, + [790] = 305, + [791] = 440, + [792] = 463, + [793] = 479, + [794] = 457, + [795] = 442, + [796] = 451, + [797] = 441, + [798] = 462, + [799] = 442, + [800] = 455, + [801] = 441, + [802] = 462, + [803] = 457, + [804] = 452, + [805] = 443, + [806] = 450, + [807] = 447, + [808] = 465, + [809] = 464, + [810] = 440, + [811] = 443, + [812] = 444, + [813] = 455, + [814] = 463, + [815] = 452, + [816] = 305, + [817] = 449, + [818] = 444, + [819] = 447, + [820] = 455, + [821] = 452, + [822] = 465, + [823] = 442, + [824] = 462, + [825] = 443, + [826] = 449, + [827] = 443, + [828] = 455, + [829] = 457, + [830] = 450, + [831] = 521, + [832] = 443, + [833] = 455, + [834] = 305, + [835] = 465, + [836] = 452, + [837] = 305, + [838] = 440, + [839] = 463, + [840] = 441, + [841] = 465, + [842] = 538, + [843] = 452, + [844] = 455, + [845] = 447, + [846] = 305, + [847] = 455, + [848] = 545, + [849] = 305, + [850] = 447, [851] = 851, [852] = 852, [853] = 853, @@ -4231,7 +4238,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [892] = 892, [893] = 893, [894] = 894, - [895] = 708, + [895] = 895, [896] = 896, [897] = 897, [898] = 898, @@ -4250,18 +4257,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [911] = 911, [912] = 912, [913] = 913, - [914] = 914, + [914] = 901, [915] = 915, [916] = 916, [917] = 917, - [918] = 918, + [918] = 900, [919] = 919, [920] = 920, [921] = 921, [922] = 922, [923] = 923, [924] = 924, - [925] = 925, + [925] = 681, [926] = 926, [927] = 927, [928] = 928, @@ -4269,24 +4276,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [930] = 930, [931] = 931, [932] = 932, - [933] = 893, - [934] = 889, - [935] = 908, + [933] = 933, + [934] = 934, + [935] = 935, [936] = 936, [937] = 937, - [938] = 938, - [939] = 939, + [938] = 900, + [939] = 865, [940] = 940, [941] = 941, [942] = 942, [943] = 943, - [944] = 944, + [944] = 901, [945] = 945, [946] = 946, [947] = 947, [948] = 948, - [949] = 889, - [950] = 893, + [949] = 949, + [950] = 950, [951] = 951, [952] = 952, [953] = 953, @@ -4295,540 +4302,540 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [956] = 956, [957] = 957, [958] = 958, - [959] = 303, - [960] = 373, - [961] = 363, + [959] = 959, + [960] = 960, + [961] = 961, [962] = 962, - [963] = 354, - [964] = 297, - [965] = 292, - [966] = 353, - [967] = 65, - [968] = 301, - [969] = 62, - [970] = 311, - [971] = 312, - [972] = 63, - [973] = 973, - [974] = 64, - [975] = 66, - [976] = 367, - [977] = 326, - [978] = 978, - [979] = 979, + [963] = 318, + [964] = 70, + [965] = 68, + [966] = 332, + [967] = 66, + [968] = 343, + [969] = 342, + [970] = 378, + [971] = 67, + [972] = 340, + [973] = 333, + [974] = 294, + [975] = 326, + [976] = 365, + [977] = 69, + [978] = 361, + [979] = 324, [980] = 980, [981] = 981, - [982] = 311, - [983] = 301, - [984] = 363, - [985] = 367, - [986] = 391, - [987] = 390, - [988] = 303, - [989] = 353, - [990] = 297, - [991] = 312, - [992] = 501, - [993] = 596, - [994] = 521, - [995] = 501, - [996] = 557, - [997] = 569, - [998] = 557, - [999] = 893, - [1000] = 859, - [1001] = 906, - [1002] = 907, - [1003] = 885, - [1004] = 955, - [1005] = 863, - [1006] = 905, - [1007] = 904, - [1008] = 883, - [1009] = 869, - [1010] = 865, - [1011] = 708, - [1012] = 858, - [1013] = 879, - [1014] = 855, - [1015] = 852, - [1016] = 877, - [1017] = 871, - [1018] = 938, - [1019] = 870, - [1020] = 851, - [1021] = 940, - [1022] = 918, - [1023] = 897, - [1024] = 894, - [1025] = 922, - [1026] = 901, - [1027] = 868, - [1028] = 860, - [1029] = 849, - [1030] = 920, - [1031] = 932, - [1032] = 930, - [1033] = 924, - [1034] = 923, - [1035] = 848, - [1036] = 902, - [1037] = 900, - [1038] = 937, - [1039] = 919, - [1040] = 867, - [1041] = 853, - [1042] = 888, - [1043] = 927, - [1044] = 926, - [1045] = 880, - [1046] = 891, - [1047] = 942, - [1048] = 944, - [1049] = 854, - [1050] = 954, - [1051] = 953, - [1052] = 850, - [1053] = 856, - [1054] = 857, - [1055] = 952, - [1056] = 941, - [1057] = 917, - [1058] = 914, - [1059] = 898, - [1060] = 896, - [1061] = 908, - [1062] = 912, - [1063] = 910, - [1064] = 909, - [1065] = 890, - [1066] = 884, - [1067] = 943, - [1068] = 911, - [1069] = 956, - [1070] = 916, - [1071] = 915, - [1072] = 866, - [1073] = 913, - [1074] = 847, - [1075] = 862, - [1076] = 861, - [1077] = 945, - [1078] = 875, - [1079] = 893, - [1080] = 876, - [1081] = 872, - [1082] = 939, - [1083] = 921, - [1084] = 903, - [1085] = 899, - [1086] = 889, - [1087] = 887, - [1088] = 886, - [1089] = 892, - [1090] = 864, - [1091] = 882, - [1092] = 881, - [1093] = 878, - [1094] = 908, - [1095] = 951, - [1096] = 936, - [1097] = 874, - [1098] = 873, - [1099] = 889, - [1100] = 948, - [1101] = 892, - [1102] = 931, - [1103] = 946, - [1104] = 947, - [1105] = 925, - [1106] = 708, - [1107] = 929, - [1108] = 928, - [1109] = 64, - [1110] = 63, - [1111] = 65, - [1112] = 66, - [1113] = 62, + [982] = 326, + [983] = 318, + [984] = 984, + [985] = 395, + [986] = 986, + [987] = 324, + [988] = 988, + [989] = 333, + [990] = 340, + [991] = 343, + [992] = 394, + [993] = 294, + [994] = 365, + [995] = 995, + [996] = 472, + [997] = 600, + [998] = 458, + [999] = 500, + [1000] = 472, + [1001] = 500, + [1002] = 618, + [1003] = 937, + [1004] = 919, + [1005] = 936, + [1006] = 908, + [1007] = 681, + [1008] = 865, + [1009] = 902, + [1010] = 864, + [1011] = 901, + [1012] = 900, + [1013] = 952, + [1014] = 852, + [1015] = 906, + [1016] = 866, + [1017] = 876, + [1018] = 878, + [1019] = 879, + [1020] = 886, + [1021] = 920, + [1022] = 922, + [1023] = 924, + [1024] = 899, + [1025] = 851, + [1026] = 929, + [1027] = 931, + [1028] = 934, + [1029] = 943, + [1030] = 946, + [1031] = 950, + [1032] = 958, + [1033] = 955, + [1034] = 953, + [1035] = 945, + [1036] = 895, + [1037] = 905, + [1038] = 896, + [1039] = 903, + [1040] = 904, + [1041] = 917, + [1042] = 930, + [1043] = 884, + [1044] = 858, + [1045] = 869, + [1046] = 871, + [1047] = 887, + [1048] = 894, + [1049] = 907, + [1050] = 956, + [1051] = 957, + [1052] = 959, + [1053] = 960, + [1054] = 954, + [1055] = 901, + [1056] = 900, + [1057] = 951, + [1058] = 949, + [1059] = 948, + [1060] = 947, + [1061] = 942, + [1062] = 935, + [1063] = 932, + [1064] = 923, + [1065] = 921, + [1066] = 910, + [1067] = 912, + [1068] = 909, + [1069] = 892, + [1070] = 891, + [1071] = 890, + [1072] = 889, + [1073] = 888, + [1074] = 883, + [1075] = 880, + [1076] = 856, + [1077] = 857, + [1078] = 873, + [1079] = 853, + [1080] = 926, + [1081] = 854, + [1082] = 860, + [1083] = 861, + [1084] = 941, + [1085] = 940, + [1086] = 865, + [1087] = 933, + [1088] = 928, + [1089] = 862, + [1090] = 916, + [1091] = 915, + [1092] = 681, + [1093] = 913, + [1094] = 911, + [1095] = 859, + [1096] = 893, + [1097] = 885, + [1098] = 882, + [1099] = 881, + [1100] = 877, + [1101] = 863, + [1102] = 875, + [1103] = 867, + [1104] = 868, + [1105] = 874, + [1106] = 872, + [1107] = 927, + [1108] = 870, + [1109] = 897, + [1110] = 863, + [1111] = 898, + [1112] = 855, + [1113] = 67, [1114] = 66, - [1115] = 62, - [1116] = 64, - [1117] = 63, - [1118] = 64, - [1119] = 65, - [1120] = 66, - [1121] = 62, + [1115] = 69, + [1116] = 70, + [1117] = 68, + [1118] = 66, + [1119] = 68, + [1120] = 70, + [1121] = 69, [1122] = 1122, - [1123] = 63, - [1124] = 65, + [1123] = 67, + [1124] = 70, [1125] = 66, - [1126] = 62, - [1127] = 64, - [1128] = 297, - [1129] = 353, - [1130] = 312, - [1131] = 301, - [1132] = 303, - [1133] = 1133, - [1134] = 354, - [1135] = 363, - [1136] = 367, - [1137] = 373, + [1126] = 68, + [1127] = 69, + [1128] = 67, + [1129] = 66, + [1130] = 68, + [1131] = 70, + [1132] = 326, + [1133] = 378, + [1134] = 343, + [1135] = 340, + [1136] = 333, + [1137] = 342, [1138] = 1138, - [1139] = 292, - [1140] = 311, - [1141] = 63, - [1142] = 63, - [1143] = 908, - [1144] = 63, - [1145] = 390, - [1146] = 65, - [1147] = 1147, + [1139] = 1139, + [1140] = 324, + [1141] = 361, + [1142] = 318, + [1143] = 365, + [1144] = 294, + [1145] = 70, + [1146] = 394, + [1147] = 66, [1148] = 66, - [1149] = 64, - [1150] = 391, - [1151] = 62, - [1152] = 64, - [1153] = 66, - [1154] = 65, - [1155] = 1147, - [1156] = 62, - [1157] = 65, - [1158] = 501, - [1159] = 557, - [1160] = 596, - [1161] = 557, - [1162] = 569, - [1163] = 501, - [1164] = 521, - [1165] = 881, - [1166] = 900, - [1167] = 874, - [1168] = 938, - [1169] = 937, - [1170] = 927, - [1171] = 926, - [1172] = 901, - [1173] = 922, - [1174] = 859, - [1175] = 872, - [1176] = 876, - [1177] = 898, - [1178] = 896, - [1179] = 875, - [1180] = 890, - [1181] = 884, - [1182] = 913, - [1183] = 915, - [1184] = 916, - [1185] = 956, - [1186] = 943, - [1187] = 866, - [1188] = 847, - [1189] = 862, - [1190] = 861, - [1191] = 909, - [1192] = 910, - [1193] = 912, - [1194] = 914, - [1195] = 917, - [1196] = 941, - [1197] = 873, - [1198] = 952, - [1199] = 953, - [1200] = 954, - [1201] = 945, - [1202] = 944, - [1203] = 942, - [1204] = 864, - [1205] = 891, - [1206] = 921, - [1207] = 708, - [1208] = 929, + [1149] = 1149, + [1150] = 67, + [1151] = 68, + [1152] = 67, + [1153] = 69, + [1154] = 69, + [1155] = 70, + [1156] = 68, + [1157] = 395, + [1158] = 69, + [1159] = 1149, + [1160] = 865, + [1161] = 600, + [1162] = 472, + [1163] = 472, + [1164] = 500, + [1165] = 458, + [1166] = 500, + [1167] = 618, + [1168] = 67, + [1169] = 905, + [1170] = 908, + [1171] = 889, + [1172] = 890, + [1173] = 681, + [1174] = 891, + [1175] = 892, + [1176] = 864, + [1177] = 909, + [1178] = 924, + [1179] = 912, + [1180] = 919, + [1181] = 901, + [1182] = 900, + [1183] = 851, + [1184] = 921, + [1185] = 923, + [1186] = 862, + [1187] = 935, + [1188] = 942, + [1189] = 947, + [1190] = 948, + [1191] = 910, + [1192] = 949, + [1193] = 951, + [1194] = 859, + [1195] = 954, + [1196] = 927, + [1197] = 960, + [1198] = 959, + [1199] = 957, + [1200] = 956, + [1201] = 855, + [1202] = 907, + [1203] = 898, + [1204] = 897, + [1205] = 894, + [1206] = 887, + [1207] = 871, + [1208] = 869, [1209] = 858, - [1210] = 851, - [1211] = 852, - [1212] = 855, - [1213] = 906, - [1214] = 928, - [1215] = 880, - [1216] = 931, - [1217] = 865, - [1218] = 903, - [1219] = 899, - [1220] = 887, - [1221] = 886, - [1222] = 882, - [1223] = 878, - [1224] = 888, - [1225] = 908, - [1226] = 907, - [1227] = 902, - [1228] = 848, - [1229] = 923, - [1230] = 924, - [1231] = 849, - [1232] = 860, - [1233] = 868, - [1234] = 892, - [1235] = 870, - [1236] = 871, - [1237] = 877, - [1238] = 869, - [1239] = 879, - [1240] = 946, - [1241] = 947, - [1242] = 911, - [1243] = 948, - [1244] = 885, - [1245] = 883, - [1246] = 889, - [1247] = 893, - [1248] = 925, - [1249] = 894, - [1250] = 904, - [1251] = 897, - [1252] = 905, - [1253] = 857, - [1254] = 856, - [1255] = 850, - [1256] = 854, - [1257] = 853, - [1258] = 951, - [1259] = 867, - [1260] = 919, - [1261] = 920, - [1262] = 930, + [1210] = 930, + [1211] = 917, + [1212] = 904, + [1213] = 903, + [1214] = 896, + [1215] = 922, + [1216] = 899, + [1217] = 895, + [1218] = 920, + [1219] = 883, + [1220] = 880, + [1221] = 945, + [1222] = 870, + [1223] = 873, + [1224] = 911, + [1225] = 902, + [1226] = 872, + [1227] = 874, + [1228] = 875, + [1229] = 877, + [1230] = 881, + [1231] = 882, + [1232] = 953, + [1233] = 885, + [1234] = 955, + [1235] = 853, + [1236] = 926, + [1237] = 854, + [1238] = 888, + [1239] = 958, + [1240] = 913, + [1241] = 915, + [1242] = 936, + [1243] = 952, + [1244] = 950, + [1245] = 893, + [1246] = 946, + [1247] = 868, + [1248] = 867, + [1249] = 852, + [1250] = 916, + [1251] = 937, + [1252] = 943, + [1253] = 884, + [1254] = 941, + [1255] = 940, + [1256] = 906, + [1257] = 860, + [1258] = 933, + [1259] = 857, + [1260] = 856, + [1261] = 928, + [1262] = 861, [1263] = 932, - [1264] = 939, - [1265] = 940, - [1266] = 918, - [1267] = 863, - [1268] = 955, - [1269] = 936, - [1270] = 354, - [1271] = 363, - [1272] = 367, - [1273] = 373, - [1274] = 297, - [1275] = 292, - [1276] = 353, - [1277] = 303, - [1278] = 301, - [1279] = 311, - [1280] = 312, - [1281] = 1281, - [1282] = 908, - [1283] = 390, - [1284] = 391, - [1285] = 1285, - [1286] = 923, - [1287] = 909, - [1288] = 63, - [1289] = 557, - [1290] = 501, - [1291] = 859, - [1292] = 1292, - [1293] = 1293, - [1294] = 521, - [1295] = 557, - [1296] = 596, - [1297] = 910, - [1298] = 912, - [1299] = 569, - [1300] = 924, - [1301] = 848, - [1302] = 501, - [1303] = 856, - [1304] = 708, - [1305] = 875, - [1306] = 911, - [1307] = 951, - [1308] = 926, - [1309] = 881, - [1310] = 927, - [1311] = 936, - [1312] = 882, - [1313] = 886, - [1314] = 887, - [1315] = 899, - [1316] = 903, - [1317] = 948, - [1318] = 913, - [1319] = 905, - [1320] = 921, - [1321] = 931, - [1322] = 929, - [1323] = 915, - [1324] = 916, - [1325] = 956, - [1326] = 943, - [1327] = 928, - [1328] = 937, - [1329] = 938, - [1330] = 945, - [1331] = 925, - [1332] = 893, - [1333] = 947, - [1334] = 914, - [1335] = 917, - [1336] = 941, - [1337] = 952, - [1338] = 889, - [1339] = 946, - [1340] = 872, - [1341] = 876, - [1342] = 953, - [1343] = 954, - [1344] = 898, - [1345] = 896, - [1346] = 944, - [1347] = 908, - [1348] = 1348, - [1349] = 904, - [1350] = 891, - [1351] = 874, - [1352] = 857, - [1353] = 880, - [1354] = 850, - [1355] = 854, - [1356] = 853, - [1357] = 867, - [1358] = 919, - [1359] = 920, - [1360] = 930, - [1361] = 932, - [1362] = 878, - [1363] = 939, - [1364] = 940, - [1365] = 888, - [1366] = 918, - [1367] = 890, - [1368] = 892, - [1369] = 900, - [1370] = 897, - [1371] = 902, - [1372] = 894, - [1373] = 66, - [1374] = 849, - [1375] = 860, - [1376] = 868, - [1377] = 64, - [1378] = 861, - [1379] = 885, - [1380] = 862, - [1381] = 847, - [1382] = 870, - [1383] = 871, - [1384] = 877, - [1385] = 866, - [1386] = 884, - [1387] = 879, - [1388] = 1388, - [1389] = 65, - [1390] = 883, - [1391] = 62, - [1392] = 869, - [1393] = 865, - [1394] = 942, - [1395] = 858, - [1396] = 863, - [1397] = 955, - [1398] = 855, - [1399] = 907, - [1400] = 864, - [1401] = 906, - [1402] = 873, - [1403] = 901, - [1404] = 922, - [1405] = 852, - [1406] = 851, - [1407] = 66, - [1408] = 64, - [1409] = 62, - [1410] = 63, - [1411] = 521, - [1412] = 63, - [1413] = 65, - [1414] = 62, - [1415] = 1415, - [1416] = 1416, - [1417] = 1417, - [1418] = 946, - [1419] = 947, + [1264] = 866, + [1265] = 934, + [1266] = 931, + [1267] = 865, + [1268] = 876, + [1269] = 929, + [1270] = 878, + [1271] = 886, + [1272] = 879, + [1273] = 863, + [1274] = 1274, + [1275] = 342, + [1276] = 378, + [1277] = 361, + [1278] = 318, + [1279] = 324, + [1280] = 340, + [1281] = 333, + [1282] = 326, + [1283] = 294, + [1284] = 365, + [1285] = 343, + [1286] = 394, + [1287] = 395, + [1288] = 865, + [1289] = 1289, + [1290] = 1290, + [1291] = 1291, + [1292] = 500, + [1293] = 472, + [1294] = 952, + [1295] = 472, + [1296] = 922, + [1297] = 896, + [1298] = 903, + [1299] = 904, + [1300] = 69, + [1301] = 500, + [1302] = 924, + [1303] = 618, + [1304] = 458, + [1305] = 920, + [1306] = 600, + [1307] = 68, + [1308] = 867, + [1309] = 864, + [1310] = 872, + [1311] = 874, + [1312] = 875, + [1313] = 877, + [1314] = 881, + [1315] = 882, + [1316] = 885, + [1317] = 893, + [1318] = 902, + [1319] = 865, + [1320] = 1320, + [1321] = 859, + [1322] = 852, + [1323] = 937, + [1324] = 681, + [1325] = 927, + [1326] = 884, + [1327] = 906, + [1328] = 936, + [1329] = 862, + [1330] = 899, + [1331] = 898, + [1332] = 897, + [1333] = 900, + [1334] = 866, + [1335] = 911, + [1336] = 913, + [1337] = 876, + [1338] = 878, + [1339] = 879, + [1340] = 886, + [1341] = 910, + [1342] = 901, + [1343] = 66, + [1344] = 67, + [1345] = 868, + [1346] = 70, + [1347] = 941, + [1348] = 851, + [1349] = 929, + [1350] = 931, + [1351] = 934, + [1352] = 855, + [1353] = 861, + [1354] = 860, + [1355] = 943, + [1356] = 946, + [1357] = 854, + [1358] = 915, + [1359] = 950, + [1360] = 916, + [1361] = 926, + [1362] = 958, + [1363] = 955, + [1364] = 853, + [1365] = 1365, + [1366] = 953, + [1367] = 908, + [1368] = 873, + [1369] = 928, + [1370] = 880, + [1371] = 883, + [1372] = 888, + [1373] = 889, + [1374] = 856, + [1375] = 857, + [1376] = 933, + [1377] = 945, + [1378] = 863, + [1379] = 895, + [1380] = 890, + [1381] = 905, + [1382] = 891, + [1383] = 917, + [1384] = 930, + [1385] = 858, + [1386] = 869, + [1387] = 871, + [1388] = 887, + [1389] = 892, + [1390] = 909, + [1391] = 894, + [1392] = 912, + [1393] = 919, + [1394] = 907, + [1395] = 921, + [1396] = 923, + [1397] = 932, + [1398] = 956, + [1399] = 957, + [1400] = 959, + [1401] = 960, + [1402] = 935, + [1403] = 954, + [1404] = 870, + [1405] = 951, + [1406] = 940, + [1407] = 949, + [1408] = 948, + [1409] = 942, + [1410] = 947, + [1411] = 66, + [1412] = 70, + [1413] = 68, + [1414] = 69, + [1415] = 618, + [1416] = 69, + [1417] = 67, + [1418] = 1418, + [1419] = 1419, [1420] = 1420, - [1421] = 908, - [1422] = 1422, + [1421] = 1421, + [1422] = 66, [1423] = 1423, - [1424] = 1424, - [1425] = 64, - [1426] = 66, - [1427] = 896, - [1428] = 1428, - [1429] = 1429, - [1430] = 937, - [1431] = 1431, - [1432] = 890, - [1433] = 899, + [1424] = 68, + [1425] = 898, + [1426] = 897, + [1427] = 1427, + [1428] = 70, + [1429] = 865, + [1430] = 1430, + [1431] = 885, + [1432] = 881, + [1433] = 1433, [1434] = 1434, - [1435] = 882, - [1436] = 911, - [1437] = 884, - [1438] = 948, + [1435] = 862, + [1436] = 899, + [1437] = 933, + [1438] = 1438, [1439] = 1439, [1440] = 1440, - [1441] = 1441, - [1442] = 921, - [1443] = 936, - [1444] = 945, - [1445] = 1445, - [1446] = 931, + [1441] = 864, + [1442] = 867, + [1443] = 1443, + [1444] = 868, + [1445] = 911, + [1446] = 1446, [1447] = 1447, - [1448] = 65, - [1449] = 1449, - [1450] = 1450, - [1451] = 878, + [1448] = 1448, + [1449] = 915, + [1450] = 67, + [1451] = 884, [1452] = 1452, [1453] = 1453, - [1454] = 887, - [1455] = 1455, - [1456] = 1456, - [1457] = 929, - [1458] = 928, + [1454] = 916, + [1455] = 859, + [1456] = 927, + [1457] = 1457, + [1458] = 882, [1459] = 1459, [1460] = 1460, - [1461] = 1461, - [1462] = 1462, - [1463] = 927, - [1464] = 926, - [1465] = 898, - [1466] = 925, - [1467] = 886, - [1468] = 1468, + [1461] = 877, + [1462] = 857, + [1463] = 1463, + [1464] = 1464, + [1465] = 1465, + [1466] = 1466, + [1467] = 1467, + [1468] = 875, [1469] = 1469, - [1470] = 866, + [1470] = 1470, [1471] = 1471, - [1472] = 903, + [1472] = 893, [1473] = 1473, - [1474] = 862, - [1475] = 938, - [1476] = 847, + [1474] = 874, + [1475] = 872, + [1476] = 870, [1477] = 1477, [1478] = 1478, - [1479] = 1479, - [1480] = 861, - [1481] = 951, - [1482] = 1482, - [1483] = 881, - [1484] = 1484, - [1485] = 1485, + [1479] = 941, + [1480] = 856, + [1481] = 940, + [1482] = 928, + [1483] = 1483, + [1484] = 913, + [1485] = 902, [1486] = 1486, [1487] = 1487, - [1488] = 1488, + [1488] = 855, [1489] = 1489, [1490] = 1490, [1491] = 1491, - [1492] = 858, + [1492] = 1492, [1493] = 1493, [1494] = 1494, [1495] = 1495, @@ -4845,13 +4852,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1506] = 1506, [1507] = 1507, [1508] = 1508, - [1509] = 63, + [1509] = 1509, [1510] = 1510, [1511] = 1511, [1512] = 1512, - [1513] = 1513, + [1513] = 69, [1514] = 1514, - [1515] = 1515, + [1515] = 472, [1516] = 1516, [1517] = 1517, [1518] = 1518, @@ -4860,9 +4867,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1521] = 1521, [1522] = 1522, [1523] = 1523, - [1524] = 1524, + [1524] = 932, [1525] = 1525, - [1526] = 501, + [1526] = 1526, [1527] = 1527, [1528] = 1528, [1529] = 1529, @@ -4886,7 +4893,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1547] = 1547, [1548] = 1548, [1549] = 1549, - [1550] = 1550, + [1550] = 500, [1551] = 1551, [1552] = 1552, [1553] = 1553, @@ -4904,7 +4911,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1565] = 1565, [1566] = 1566, [1567] = 1567, - [1568] = 557, + [1568] = 1568, [1569] = 1569, [1570] = 1570, [1571] = 1571, @@ -4917,1893 +4924,1893 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1578] = 1578, [1579] = 1579, [1580] = 1580, - [1581] = 63, - [1582] = 64, - [1583] = 62, - [1584] = 66, - [1585] = 65, - [1586] = 1586, - [1587] = 65, - [1588] = 1588, - [1589] = 1589, - [1590] = 65, + [1581] = 1581, + [1582] = 1582, + [1583] = 1583, + [1584] = 1584, + [1585] = 66, + [1586] = 69, + [1587] = 67, + [1588] = 70, + [1589] = 68, + [1590] = 1590, [1591] = 1591, - [1592] = 1592, - [1593] = 926, - [1594] = 911, - [1595] = 938, - [1596] = 937, - [1597] = 927, - [1598] = 911, - [1599] = 937, - [1600] = 938, - [1601] = 927, - [1602] = 926, - [1603] = 938, - [1604] = 911, - [1605] = 1605, - [1606] = 937, - [1607] = 927, - [1608] = 926, - [1609] = 926, - [1610] = 911, - [1611] = 927, - [1612] = 938, - [1613] = 937, - [1614] = 367, - [1615] = 303, - [1616] = 301, - [1617] = 363, - [1618] = 311, - [1619] = 312, - [1620] = 297, - [1621] = 298, - [1622] = 373, - [1623] = 261, - [1624] = 354, - [1625] = 353, - [1626] = 292, - [1627] = 501, - [1628] = 236, - [1629] = 557, - [1630] = 391, - [1631] = 390, - [1632] = 881, - [1633] = 925, - [1634] = 928, - [1635] = 929, - [1636] = 931, - [1637] = 936, - [1638] = 292, - [1639] = 878, - [1640] = 326, - [1641] = 896, - [1642] = 596, - [1643] = 882, - [1644] = 886, - [1645] = 297, - [1646] = 908, - [1647] = 887, - [1648] = 353, - [1649] = 303, - [1650] = 301, - [1651] = 311, - [1652] = 312, - [1653] = 899, - [1654] = 903, - [1655] = 921, - [1656] = 861, - [1657] = 862, - [1658] = 1658, - [1659] = 847, - [1660] = 866, - [1661] = 884, - [1662] = 1662, - [1663] = 890, - [1664] = 708, - [1665] = 898, - [1666] = 521, - [1667] = 792, - [1668] = 892, - [1669] = 569, - [1670] = 1662, - [1671] = 354, - [1672] = 363, - [1673] = 367, - [1674] = 373, - [1675] = 792, - [1676] = 865, - [1677] = 854, - [1678] = 932, - [1679] = 857, - [1680] = 951, - [1681] = 856, - [1682] = 850, - [1683] = 909, - [1684] = 853, - [1685] = 867, - [1686] = 557, + [1592] = 67, + [1593] = 67, + [1594] = 1594, + [1595] = 1595, + [1596] = 1596, + [1597] = 884, + [1598] = 868, + [1599] = 867, + [1600] = 856, + [1601] = 857, + [1602] = 857, + [1603] = 868, + [1604] = 867, + [1605] = 856, + [1606] = 884, + [1607] = 868, + [1608] = 867, + [1609] = 856, + [1610] = 1610, + [1611] = 857, + [1612] = 868, + [1613] = 884, + [1614] = 884, + [1615] = 867, + [1616] = 857, + [1617] = 856, + [1618] = 318, + [1619] = 271, + [1620] = 324, + [1621] = 361, + [1622] = 365, + [1623] = 342, + [1624] = 294, + [1625] = 338, + [1626] = 333, + [1627] = 343, + [1628] = 340, + [1629] = 326, + [1630] = 378, + [1631] = 395, + [1632] = 472, + [1633] = 252, + [1634] = 394, + [1635] = 500, + [1636] = 941, + [1637] = 324, + [1638] = 333, + [1639] = 933, + [1640] = 526, + [1641] = 526, + [1642] = 1642, + [1643] = 1642, + [1644] = 332, + [1645] = 343, + [1646] = 870, + [1647] = 326, + [1648] = 318, + [1649] = 340, + [1650] = 872, + [1651] = 940, + [1652] = 928, + [1653] = 916, + [1654] = 863, + [1655] = 915, + [1656] = 913, + [1657] = 681, + [1658] = 378, + [1659] = 911, + [1660] = 874, + [1661] = 855, + [1662] = 881, + [1663] = 294, + [1664] = 365, + [1665] = 927, + [1666] = 600, + [1667] = 361, + [1668] = 859, + [1669] = 618, + [1670] = 875, + [1671] = 342, + [1672] = 862, + [1673] = 864, + [1674] = 885, + [1675] = 458, + [1676] = 877, + [1677] = 865, + [1678] = 882, + [1679] = 1679, + [1680] = 904, + [1681] = 951, + [1682] = 876, + [1683] = 917, + [1684] = 866, + [1685] = 923, + [1686] = 921, [1687] = 919, - [1688] = 920, - [1689] = 880, - [1690] = 501, - [1691] = 908, - [1692] = 930, - [1693] = 939, - [1694] = 940, - [1695] = 910, - [1696] = 918, - [1697] = 897, - [1698] = 894, - [1699] = 708, - [1700] = 893, - [1701] = 912, - [1702] = 876, - [1703] = 889, - [1704] = 914, - [1705] = 885, - [1706] = 891, - [1707] = 869, - [1708] = 875, - [1709] = 943, - [1710] = 956, - [1711] = 916, - [1712] = 952, - [1713] = 877, - [1714] = 948, - [1715] = 953, - [1716] = 954, - [1717] = 944, - [1718] = 915, - [1719] = 855, - [1720] = 852, - [1721] = 874, - [1722] = 851, - [1723] = 708, - [1724] = 922, - [1725] = 390, - [1726] = 864, - [1727] = 391, - [1728] = 947, - [1729] = 901, - [1730] = 906, - [1731] = 917, - [1732] = 907, - [1733] = 955, - [1734] = 873, - [1735] = 863, - [1736] = 942, - [1737] = 905, - [1738] = 858, - [1739] = 883, - [1740] = 913, - [1741] = 946, - [1742] = 879, - [1743] = 941, - [1744] = 945, - [1745] = 871, - [1746] = 870, - [1747] = 904, - [1748] = 889, - [1749] = 893, - [1750] = 868, - [1751] = 860, - [1752] = 859, - [1753] = 849, - [1754] = 924, - [1755] = 923, - [1756] = 848, - [1757] = 902, - [1758] = 900, - [1759] = 872, - [1760] = 888, - [1761] = 927, - [1762] = 292, - [1763] = 236, - [1764] = 292, - [1765] = 353, - [1766] = 303, - [1767] = 373, - [1768] = 301, - [1769] = 367, - [1770] = 363, - [1771] = 354, - [1772] = 708, - [1773] = 311, - [1774] = 312, - [1775] = 908, - [1776] = 892, - [1777] = 236, - [1778] = 354, - [1779] = 363, - [1780] = 367, - [1781] = 373, - [1782] = 911, - [1783] = 569, - [1784] = 926, - [1785] = 303, - [1786] = 297, - [1787] = 521, - [1788] = 297, - [1789] = 1789, - [1790] = 301, - [1791] = 938, - [1792] = 937, - [1793] = 596, - [1794] = 312, - [1795] = 311, - [1796] = 353, - [1797] = 847, - [1798] = 870, - [1799] = 932, - [1800] = 872, - [1801] = 859, - [1802] = 951, - [1803] = 930, - [1804] = 920, - [1805] = 919, - [1806] = 936, - [1807] = 948, - [1808] = 931, - [1809] = 942, - [1810] = 326, - [1811] = 326, - [1812] = 929, - [1813] = 928, - [1814] = 925, - [1815] = 891, - [1816] = 297, - [1817] = 944, - [1818] = 947, - [1819] = 946, - [1820] = 367, - [1821] = 908, - [1822] = 918, - [1823] = 880, - [1824] = 875, - [1825] = 893, + [1688] = 900, + [1689] = 901, + [1690] = 912, + [1691] = 869, + [1692] = 903, + [1693] = 909, + [1694] = 935, + [1695] = 896, + [1696] = 922, + [1697] = 930, + [1698] = 942, + [1699] = 865, + [1700] = 892, + [1701] = 947, + [1702] = 948, + [1703] = 898, + [1704] = 949, + [1705] = 952, + [1706] = 929, + [1707] = 891, + [1708] = 899, + [1709] = 472, + [1710] = 890, + [1711] = 920, + [1712] = 852, + [1713] = 937, + [1714] = 889, + [1715] = 936, + [1716] = 888, + [1717] = 858, + [1718] = 500, + [1719] = 883, + [1720] = 953, + [1721] = 878, + [1722] = 880, + [1723] = 932, + [1724] = 681, + [1725] = 897, + [1726] = 931, + [1727] = 908, + [1728] = 924, + [1729] = 851, + [1730] = 954, + [1731] = 902, + [1732] = 955, + [1733] = 943, + [1734] = 394, + [1735] = 905, + [1736] = 958, + [1737] = 895, + [1738] = 960, + [1739] = 934, + [1740] = 906, + [1741] = 681, + [1742] = 910, + [1743] = 926, + [1744] = 395, + [1745] = 959, + [1746] = 873, + [1747] = 879, + [1748] = 946, + [1749] = 957, + [1750] = 853, + [1751] = 956, + [1752] = 886, + [1753] = 907, + [1754] = 900, + [1755] = 950, + [1756] = 901, + [1757] = 861, + [1758] = 894, + [1759] = 887, + [1760] = 860, + [1761] = 854, + [1762] = 871, + [1763] = 945, + [1764] = 893, + [1765] = 361, + [1766] = 324, + [1767] = 252, + [1768] = 868, + [1769] = 1769, + [1770] = 867, + [1771] = 600, + [1772] = 252, + [1773] = 618, + [1774] = 342, + [1775] = 857, + [1776] = 856, + [1777] = 318, + [1778] = 681, + [1779] = 324, + [1780] = 378, + [1781] = 326, + [1782] = 333, + [1783] = 294, + [1784] = 365, + [1785] = 340, + [1786] = 343, + [1787] = 458, + [1788] = 863, + [1789] = 884, + [1790] = 326, + [1791] = 333, + [1792] = 361, + [1793] = 340, + [1794] = 365, + [1795] = 294, + [1796] = 342, + [1797] = 865, + [1798] = 378, + [1799] = 343, + [1800] = 318, + [1801] = 895, + [1802] = 881, + [1803] = 911, + [1804] = 913, + [1805] = 915, + [1806] = 916, + [1807] = 901, + [1808] = 928, + [1809] = 933, + [1810] = 940, + [1811] = 941, + [1812] = 859, + [1813] = 936, + [1814] = 937, + [1815] = 899, + [1816] = 865, + [1817] = 864, + [1818] = 902, + [1819] = 952, + [1820] = 852, + [1821] = 954, + [1822] = 906, + [1823] = 294, + [1824] = 866, + [1825] = 876, [1826] = 878, - [1827] = 889, - [1828] = 881, - [1829] = 897, - [1830] = 894, - [1831] = 882, - [1832] = 886, - [1833] = 885, - [1834] = 887, - [1835] = 869, - [1836] = 865, - [1837] = 856, - [1838] = 855, - [1839] = 852, - [1840] = 851, - [1841] = 922, - [1842] = 901, - [1843] = 906, - [1844] = 907, - [1845] = 955, - [1846] = 863, - [1847] = 905, - [1848] = 899, - [1849] = 903, - [1850] = 391, - [1851] = 390, - [1852] = 921, + [1827] = 879, + [1828] = 886, + [1829] = 920, + [1830] = 922, + [1831] = 924, + [1832] = 851, + [1833] = 929, + [1834] = 931, + [1835] = 934, + [1836] = 365, + [1837] = 395, + [1838] = 394, + [1839] = 943, + [1840] = 946, + [1841] = 950, + [1842] = 958, + [1843] = 908, + [1844] = 955, + [1845] = 953, + [1846] = 945, + [1847] = 1847, + [1848] = 343, + [1849] = 862, + [1850] = 905, + [1851] = 896, + [1852] = 903, [1853] = 904, - [1854] = 954, - [1855] = 883, - [1856] = 879, - [1857] = 557, - [1858] = 858, - [1859] = 877, - [1860] = 945, - [1861] = 953, - [1862] = 871, - [1863] = 864, - [1864] = 867, - [1865] = 853, - [1866] = 854, - [1867] = 861, - [1868] = 862, - [1869] = 391, - [1870] = 868, - [1871] = 913, - [1872] = 884, - [1873] = 860, - [1874] = 849, - [1875] = 501, - [1876] = 850, - [1877] = 924, - [1878] = 890, - [1879] = 923, - [1880] = 848, - [1881] = 857, - [1882] = 902, - [1883] = 876, - [1884] = 915, - [1885] = 896, - [1886] = 898, - [1887] = 363, - [1888] = 873, - [1889] = 916, - [1890] = 952, - [1891] = 353, - [1892] = 557, - [1893] = 874, - [1894] = 956, - [1895] = 893, - [1896] = 889, - [1897] = 900, - [1898] = 501, - [1899] = 303, - [1900] = 301, - [1901] = 943, + [1854] = 917, + [1855] = 930, + [1856] = 858, + [1857] = 900, + [1858] = 893, + [1859] = 900, + [1860] = 885, + [1861] = 472, + [1862] = 882, + [1863] = 472, + [1864] = 869, + [1865] = 871, + [1866] = 340, + [1867] = 887, + [1868] = 500, + [1869] = 877, + [1870] = 875, + [1871] = 894, + [1872] = 907, + [1873] = 874, + [1874] = 872, + [1875] = 956, + [1876] = 957, + [1877] = 959, + [1878] = 960, + [1879] = 873, + [1880] = 951, + [1881] = 949, + [1882] = 870, + [1883] = 333, + [1884] = 326, + [1885] = 500, + [1886] = 901, + [1887] = 395, + [1888] = 948, + [1889] = 897, + [1890] = 324, + [1891] = 947, + [1892] = 942, + [1893] = 332, + [1894] = 935, + [1895] = 923, + [1896] = 921, + [1897] = 910, + [1898] = 919, + [1899] = 332, + [1900] = 318, + [1901] = 912, [1902] = 909, - [1903] = 312, - [1904] = 910, - [1905] = 912, - [1906] = 311, - [1907] = 940, - [1908] = 390, - [1909] = 939, - [1910] = 888, - [1911] = 866, - [1912] = 1912, - [1913] = 941, - [1914] = 914, - [1915] = 917, - [1916] = 596, - [1917] = 326, - [1918] = 973, - [1919] = 521, - [1920] = 569, - [1921] = 326, - [1922] = 1922, - [1923] = 521, - [1924] = 569, - [1925] = 596, - [1926] = 326, - [1927] = 857, - [1928] = 855, - [1929] = 944, - [1930] = 880, - [1931] = 928, - [1932] = 947, - [1933] = 946, - [1934] = 954, - [1935] = 953, - [1936] = 925, - [1937] = 902, - [1938] = 900, - [1939] = 1939, - [1940] = 897, - [1941] = 894, - [1942] = 896, - [1943] = 952, - [1944] = 926, - [1945] = 941, - [1946] = 955, - [1947] = 917, - [1948] = 914, + [1903] = 898, + [1904] = 855, + [1905] = 861, + [1906] = 932, + [1907] = 394, + [1908] = 927, + [1909] = 892, + [1910] = 891, + [1911] = 890, + [1912] = 889, + [1913] = 888, + [1914] = 883, + [1915] = 880, + [1916] = 860, + [1917] = 853, + [1918] = 926, + [1919] = 854, + [1920] = 332, + [1921] = 980, + [1922] = 332, + [1923] = 618, + [1924] = 458, + [1925] = 600, + [1926] = 332, + [1927] = 1927, + [1928] = 458, + [1929] = 600, + [1930] = 618, + [1931] = 949, + [1932] = 870, + [1933] = 1933, + [1934] = 681, + [1935] = 910, + [1936] = 936, + [1937] = 908, + [1938] = 884, + [1939] = 936, + [1940] = 852, + [1941] = 857, + [1942] = 867, + [1943] = 868, + [1944] = 937, + [1945] = 952, + [1946] = 941, + [1947] = 940, + [1948] = 852, [1949] = 937, - [1950] = 885, - [1951] = 918, - [1952] = 857, - [1953] = 928, - [1954] = 850, - [1955] = 873, - [1956] = 856, - [1957] = 912, - [1958] = 929, - [1959] = 910, - [1960] = 892, - [1961] = 909, - [1962] = 940, - [1963] = 869, - [1964] = 865, - [1965] = 858, - [1966] = 878, - [1967] = 858, - [1968] = 939, - [1969] = 855, - [1970] = 852, - [1971] = 881, - [1972] = 851, - [1973] = 942, - [1974] = 853, - [1975] = 861, - [1976] = 922, - [1977] = 943, - [1978] = 956, - [1979] = 867, - [1980] = 901, - [1981] = 932, - [1982] = 882, - [1983] = 942, - [1984] = 906, - [1985] = 915, - [1986] = 907, - [1987] = 936, - [1988] = 930, - [1989] = 955, - [1990] = 948, - [1991] = 894, - [1992] = 913, - [1993] = 920, - [1994] = 944, - [1995] = 897, - [1996] = 951, - [1997] = 936, - [1998] = 919, - [1999] = 863, - [2000] = 886, - [2001] = 948, - [2002] = 905, - [2003] = 887, - [2004] = 904, - [2005] = 899, - [2006] = 903, - [2007] = 889, - [2008] = 889, - [2009] = 893, - [2010] = 893, - [2011] = 929, - [2012] = 919, + [1950] = 681, + [1951] = 865, + [1952] = 906, + [1953] = 933, + [1954] = 928, + [1955] = 876, + [1956] = 878, + [1957] = 866, + [1958] = 879, + [1959] = 916, + [1960] = 876, + [1961] = 878, + [1962] = 879, + [1963] = 886, + [1964] = 863, + [1965] = 1965, + [1966] = 920, + [1967] = 922, + [1968] = 924, + [1969] = 915, + [1970] = 851, + [1971] = 865, + [1972] = 929, + [1973] = 865, + [1974] = 856, + [1975] = 865, + [1976] = 913, + [1977] = 681, + [1978] = 934, + [1979] = 943, + [1980] = 946, + [1981] = 950, + [1982] = 911, + [1983] = 958, + [1984] = 901, + [1985] = 900, + [1986] = 863, + [1987] = 955, + [1988] = 953, + [1989] = 893, + [1990] = 945, + [1991] = 931, + [1992] = 895, + [1993] = 905, + [1994] = 896, + [1995] = 903, + [1996] = 904, + [1997] = 917, + [1998] = 930, + [1999] = 858, + [2000] = 869, + [2001] = 871, + [2002] = 887, + [2003] = 894, + [2004] = 907, + [2005] = 950, + [2006] = 958, + [2007] = 901, + [2008] = 900, + [2009] = 956, + [2010] = 957, + [2011] = 959, + [2012] = 900, [2013] = 901, - [2014] = 867, - [2015] = 945, - [2016] = 927, - [2017] = 853, - [2018] = 922, - [2019] = 883, - [2020] = 898, - [2021] = 879, - [2022] = 848, - [2023] = 891, - [2024] = 923, - [2025] = 918, - [2026] = 854, - [2027] = 850, - [2028] = 920, - [2029] = 864, - [2030] = 859, - [2031] = 921, + [2014] = 908, + [2015] = 885, + [2016] = 960, + [2017] = 954, + [2018] = 951, + [2019] = 882, + [2020] = 881, + [2021] = 877, + [2022] = 948, + [2023] = 875, + [2024] = 947, + [2025] = 942, + [2026] = 874, + [2027] = 902, + [2028] = 935, + [2029] = 932, + [2030] = 864, + [2031] = 923, [2032] = 872, - [2033] = 856, - [2034] = 902, - [2035] = 877, - [2036] = 873, - [2037] = 863, - [2038] = 945, - [2039] = 874, - [2040] = 849, - [2041] = 875, - [2042] = 871, - [2043] = 940, - [2044] = 921, - [2045] = 924, - [2046] = 862, - [2047] = 931, + [2033] = 899, + [2034] = 952, + [2035] = 862, + [2036] = 932, + [2037] = 859, + [2038] = 927, + [2039] = 921, + [2040] = 919, + [2041] = 855, + [2042] = 898, + [2043] = 897, + [2044] = 912, + [2045] = 906, + [2046] = 909, + [2047] = 861, [2048] = 870, - [2049] = 892, - [2050] = 868, - [2051] = 925, - [2052] = 903, - [2053] = 899, - [2054] = 913, - [2055] = 887, - [2056] = 893, - [2057] = 883, - [2058] = 886, - [2059] = 882, - [2060] = 889, - [2061] = 854, - [2062] = 943, - [2063] = 931, - [2064] = 947, - [2065] = 885, - [2066] = 852, - [2067] = 909, - [2068] = 910, - [2069] = 912, - [2070] = 881, - [2071] = 2071, - [2072] = 876, - [2073] = 914, - [2074] = 917, - [2075] = 941, - [2076] = 952, - [2077] = 946, - [2078] = 889, - [2079] = 939, - [2080] = 893, - [2081] = 953, - [2082] = 954, - [2083] = 851, - [2084] = 900, - [2085] = 869, - [2086] = 865, - [2087] = 874, - [2088] = 864, - [2089] = 891, - [2090] = 888, - [2091] = 875, - [2092] = 880, - [2093] = 911, - [2094] = 2094, - [2095] = 861, - [2096] = 862, - [2097] = 908, - [2098] = 847, - [2099] = 860, - [2100] = 847, - [2101] = 866, - [2102] = 859, - [2103] = 888, - [2104] = 872, - [2105] = 916, - [2106] = 708, - [2107] = 892, - [2108] = 878, - [2109] = 884, - [2110] = 708, - [2111] = 866, - [2112] = 848, - [2113] = 923, - [2114] = 924, - [2115] = 849, - [2116] = 860, - [2117] = 868, - [2118] = 908, - [2119] = 876, - [2120] = 908, - [2121] = 908, - [2122] = 951, - [2123] = 870, - [2124] = 871, - [2125] = 877, - [2126] = 898, - [2127] = 896, - [2128] = 879, - [2129] = 708, - [2130] = 908, - [2131] = 890, - [2132] = 890, - [2133] = 932, - [2134] = 930, - [2135] = 904, - [2136] = 905, - [2137] = 884, - [2138] = 907, - [2139] = 915, - [2140] = 906, - [2141] = 916, - [2142] = 956, - [2143] = 938, - [2144] = 292, - [2145] = 2145, - [2146] = 354, - [2147] = 373, - [2148] = 391, - [2149] = 390, + [2049] = 860, + [2050] = 872, + [2051] = 874, + [2052] = 875, + [2053] = 877, + [2054] = 881, + [2055] = 882, + [2056] = 885, + [2057] = 895, + [2058] = 866, + [2059] = 893, + [2060] = 905, + [2061] = 853, + [2062] = 873, + [2063] = 897, + [2064] = 892, + [2065] = 911, + [2066] = 886, + [2067] = 913, + [2068] = 915, + [2069] = 916, + [2070] = 928, + [2071] = 920, + [2072] = 922, + [2073] = 924, + [2074] = 892, + [2075] = 891, + [2076] = 890, + [2077] = 851, + [2078] = 929, + [2079] = 931, + [2080] = 934, + [2081] = 933, + [2082] = 898, + [2083] = 907, + [2084] = 910, + [2085] = 943, + [2086] = 946, + [2087] = 940, + [2088] = 941, + [2089] = 901, + [2090] = 900, + [2091] = 854, + [2092] = 926, + [2093] = 955, + [2094] = 919, + [2095] = 902, + [2096] = 953, + [2097] = 880, + [2098] = 889, + [2099] = 921, + [2100] = 883, + [2101] = 923, + [2102] = 888, + [2103] = 865, + [2104] = 889, + [2105] = 890, + [2106] = 891, + [2107] = 945, + [2108] = 888, + [2109] = 883, + [2110] = 864, + [2111] = 863, + [2112] = 909, + [2113] = 855, + [2114] = 912, + [2115] = 899, + [2116] = 896, + [2117] = 903, + [2118] = 904, + [2119] = 917, + [2120] = 930, + [2121] = 858, + [2122] = 862, + [2123] = 959, + [2124] = 935, + [2125] = 2125, + [2126] = 942, + [2127] = 869, + [2128] = 871, + [2129] = 887, + [2130] = 947, + [2131] = 960, + [2132] = 894, + [2133] = 861, + [2134] = 860, + [2135] = 948, + [2136] = 854, + [2137] = 926, + [2138] = 853, + [2139] = 956, + [2140] = 957, + [2141] = 949, + [2142] = 859, + [2143] = 873, + [2144] = 954, + [2145] = 880, + [2146] = 951, + [2147] = 927, + [2148] = 361, + [2149] = 378, [2150] = 2150, - [2151] = 908, - [2152] = 2152, - [2153] = 557, + [2151] = 342, + [2152] = 394, + [2153] = 395, [2154] = 2154, - [2155] = 2155, - [2156] = 557, - [2157] = 501, - [2158] = 501, - [2159] = 521, - [2160] = 569, - [2161] = 2161, + [2155] = 500, + [2156] = 500, + [2157] = 865, + [2158] = 2158, + [2159] = 2159, + [2160] = 472, + [2161] = 600, [2162] = 2162, - [2163] = 501, - [2164] = 2164, - [2165] = 596, - [2166] = 557, - [2167] = 940, - [2168] = 882, - [2169] = 912, - [2170] = 943, - [2171] = 910, - [2172] = 915, - [2173] = 951, - [2174] = 2174, - [2175] = 857, - [2176] = 936, - [2177] = 909, - [2178] = 856, - [2179] = 956, - [2180] = 2180, - [2181] = 913, - [2182] = 850, - [2183] = 952, - [2184] = 908, - [2185] = 898, - [2186] = 896, - [2187] = 292, - [2188] = 854, - [2189] = 914, - [2190] = 917, + [2163] = 2163, + [2164] = 618, + [2165] = 472, + [2166] = 458, + [2167] = 472, + [2168] = 2168, + [2169] = 500, + [2170] = 2170, + [2171] = 878, + [2172] = 903, + [2173] = 895, + [2174] = 945, + [2175] = 957, + [2176] = 959, + [2177] = 960, + [2178] = 953, + [2179] = 955, + [2180] = 908, + [2181] = 958, + [2182] = 950, + [2183] = 946, + [2184] = 943, + [2185] = 956, + [2186] = 342, + [2187] = 910, + [2188] = 954, + [2189] = 340, + [2190] = 333, [2191] = 941, - [2192] = 911, - [2193] = 890, - [2194] = 875, - [2195] = 367, - [2196] = 853, - [2197] = 953, - [2198] = 884, - [2199] = 954, - [2200] = 944, - [2201] = 942, - [2202] = 864, - [2203] = 891, - [2204] = 373, - [2205] = 880, - [2206] = 893, - [2207] = 874, - [2208] = 889, - [2209] = 867, - [2210] = 866, - [2211] = 847, - [2212] = 862, - [2213] = 861, - [2214] = 938, - [2215] = 937, - [2216] = 927, - [2217] = 926, - [2218] = 2218, - [2219] = 888, - [2220] = 2220, - [2221] = 900, + [2192] = 940, + [2193] = 326, + [2194] = 934, + [2195] = 931, + [2196] = 929, + [2197] = 933, + [2198] = 851, + [2199] = 324, + [2200] = 318, + [2201] = 924, + [2202] = 928, + [2203] = 922, + [2204] = 920, + [2205] = 951, + [2206] = 884, + [2207] = 949, + [2208] = 886, + [2209] = 879, + [2210] = 856, + [2211] = 857, + [2212] = 867, + [2213] = 868, + [2214] = 916, + [2215] = 915, + [2216] = 913, + [2217] = 911, + [2218] = 343, + [2219] = 361, + [2220] = 876, + [2221] = 932, [2222] = 948, - [2223] = 931, - [2224] = 902, - [2225] = 354, - [2226] = 919, - [2227] = 363, - [2228] = 848, - [2229] = 920, - [2230] = 945, - [2231] = 923, - [2232] = 873, - [2233] = 876, - [2234] = 312, - [2235] = 311, - [2236] = 301, - [2237] = 921, - [2238] = 303, - [2239] = 353, - [2240] = 903, - [2241] = 899, - [2242] = 887, - [2243] = 886, - [2244] = 916, - [2245] = 872, - [2246] = 881, - [2247] = 297, - [2248] = 878, - [2249] = 859, - [2250] = 930, - [2251] = 924, - [2252] = 849, - [2253] = 860, - [2254] = 929, - [2255] = 868, - [2256] = 932, - [2257] = 858, - [2258] = 2258, - [2259] = 870, - [2260] = 871, - [2261] = 877, - [2262] = 879, - [2263] = 883, - [2264] = 928, - [2265] = 904, - [2266] = 905, - [2267] = 863, - [2268] = 955, - [2269] = 907, - [2270] = 906, - [2271] = 901, - [2272] = 922, - [2273] = 851, - [2274] = 852, - [2275] = 855, - [2276] = 946, - [2277] = 947, - [2278] = 865, - [2279] = 925, - [2280] = 869, - [2281] = 885, - [2282] = 894, - [2283] = 897, - [2284] = 918, - [2285] = 939, - [2286] = 367, + [2223] = 2223, + [2224] = 896, + [2225] = 378, + [2226] = 866, + [2227] = 947, + [2228] = 942, + [2229] = 935, + [2230] = 905, + [2231] = 904, + [2232] = 906, + [2233] = 900, + [2234] = 893, + [2235] = 901, + [2236] = 923, + [2237] = 936, + [2238] = 2238, + [2239] = 937, + [2240] = 852, + [2241] = 885, + [2242] = 921, + [2243] = 917, + [2244] = 882, + [2245] = 881, + [2246] = 877, + [2247] = 875, + [2248] = 874, + [2249] = 919, + [2250] = 872, + [2251] = 952, + [2252] = 870, + [2253] = 930, + [2254] = 912, + [2255] = 858, + [2256] = 909, + [2257] = 902, + [2258] = 892, + [2259] = 891, + [2260] = 890, + [2261] = 865, + [2262] = 889, + [2263] = 888, + [2264] = 869, + [2265] = 883, + [2266] = 880, + [2267] = 873, + [2268] = 365, + [2269] = 864, + [2270] = 853, + [2271] = 926, + [2272] = 2272, + [2273] = 854, + [2274] = 899, + [2275] = 860, + [2276] = 862, + [2277] = 861, + [2278] = 871, + [2279] = 897, + [2280] = 898, + [2281] = 855, + [2282] = 887, + [2283] = 894, + [2284] = 907, + [2285] = 927, + [2286] = 859, [2287] = 2287, [2288] = 2288, - [2289] = 311, - [2290] = 301, - [2291] = 363, - [2292] = 501, - [2293] = 303, - [2294] = 312, - [2295] = 353, - [2296] = 297, - [2297] = 557, - [2298] = 2298, - [2299] = 391, - [2300] = 390, - [2301] = 2301, - [2302] = 892, - [2303] = 708, - [2304] = 301, - [2305] = 312, - [2306] = 569, - [2307] = 596, - [2308] = 326, - [2309] = 297, - [2310] = 373, - [2311] = 367, - [2312] = 363, - [2313] = 292, - [2314] = 353, - [2315] = 303, - [2316] = 354, - [2317] = 2317, - [2318] = 521, - [2319] = 311, - [2320] = 944, - [2321] = 945, - [2322] = 948, - [2323] = 931, - [2324] = 854, - [2325] = 857, - [2326] = 856, - [2327] = 850, - [2328] = 2288, - [2329] = 2298, - [2330] = 884, - [2331] = 390, - [2332] = 391, - [2333] = 879, - [2334] = 853, - [2335] = 929, + [2289] = 294, + [2290] = 2290, + [2291] = 500, + [2292] = 2292, + [2293] = 2293, + [2294] = 294, + [2295] = 681, + [2296] = 472, + [2297] = 395, + [2298] = 394, + [2299] = 318, + [2300] = 863, + [2301] = 324, + [2302] = 2302, + [2303] = 326, + [2304] = 333, + [2305] = 340, + [2306] = 343, + [2307] = 365, + [2308] = 600, + [2309] = 332, + [2310] = 343, + [2311] = 340, + [2312] = 333, + [2313] = 318, + [2314] = 378, + [2315] = 618, + [2316] = 326, + [2317] = 342, + [2318] = 2318, + [2319] = 324, + [2320] = 458, + [2321] = 361, + [2322] = 365, + [2323] = 294, + [2324] = 962, + [2325] = 946, + [2326] = 2293, + [2327] = 2290, + [2328] = 881, + [2329] = 952, + [2330] = 882, + [2331] = 959, + [2332] = 960, + [2333] = 954, + [2334] = 681, + [2335] = 852, [2336] = 859, - [2337] = 557, - [2338] = 872, - [2339] = 867, - [2340] = 876, - [2341] = 873, - [2342] = 936, - [2343] = 919, - [2344] = 928, - [2345] = 920, - [2346] = 925, - [2347] = 875, - [2348] = 930, - [2349] = 932, - [2350] = 913, - [2351] = 939, - [2352] = 940, - [2353] = 915, - [2354] = 947, - [2355] = 946, - [2356] = 918, - [2357] = 897, - [2358] = 2358, - [2359] = 894, - [2360] = 893, - [2361] = 889, - [2362] = 885, - [2363] = 869, - [2364] = 865, - [2365] = 958, - [2366] = 858, - [2367] = 855, - [2368] = 501, - [2369] = 852, - [2370] = 851, - [2371] = 908, + [2337] = 951, + [2338] = 887, + [2339] = 937, + [2340] = 936, + [2341] = 871, + [2342] = 949, + [2343] = 860, + [2344] = 899, + [2345] = 869, + [2346] = 862, + [2347] = 948, + [2348] = 916, + [2349] = 906, + [2350] = 915, + [2351] = 913, + [2352] = 863, + [2353] = 933, + [2354] = 865, + [2355] = 911, + [2356] = 866, + [2357] = 902, + [2358] = 875, + [2359] = 874, + [2360] = 904, + [2361] = 872, + [2362] = 876, + [2363] = 957, + [2364] = 878, + [2365] = 500, + [2366] = 395, + [2367] = 394, + [2368] = 864, + [2369] = 879, + [2370] = 886, + [2371] = 920, [2372] = 922, - [2373] = 892, - [2374] = 878, - [2375] = 881, - [2376] = 901, - [2377] = 956, - [2378] = 882, - [2379] = 886, - [2380] = 887, - [2381] = 899, - [2382] = 906, - [2383] = 903, - [2384] = 907, - [2385] = 951, - [2386] = 955, - [2387] = 943, - [2388] = 908, - [2389] = 921, - [2390] = 864, - [2391] = 863, - [2392] = 905, - [2393] = 890, - [2394] = 904, - [2395] = 909, - [2396] = 874, + [2373] = 924, + [2374] = 851, + [2375] = 929, + [2376] = 931, + [2377] = 934, + [2378] = 943, + [2379] = 877, + [2380] = 893, + [2381] = 861, + [2382] = 858, + [2383] = 947, + [2384] = 865, + [2385] = 950, + [2386] = 958, + [2387] = 955, + [2388] = 873, + [2389] = 854, + [2390] = 953, + [2391] = 926, + [2392] = 853, + [2393] = 870, + [2394] = 885, + [2395] = 880, + [2396] = 910, [2397] = 883, - [2398] = 910, - [2399] = 912, - [2400] = 914, - [2401] = 917, - [2402] = 941, - [2403] = 952, - [2404] = 953, - [2405] = 916, - [2406] = 708, - [2407] = 861, - [2408] = 954, - [2409] = 862, - [2410] = 847, - [2411] = 866, - [2412] = 877, - [2413] = 871, - [2414] = 870, - [2415] = 868, - [2416] = 942, - [2417] = 860, - [2418] = 849, - [2419] = 924, - [2420] = 923, - [2421] = 848, - [2422] = 902, - [2423] = 900, - [2424] = 896, - [2425] = 888, - [2426] = 880, - [2427] = 891, - [2428] = 898, - [2429] = 2429, - [2430] = 892, - [2431] = 2429, - [2432] = 708, - [2433] = 962, - [2434] = 297, - [2435] = 353, - [2436] = 303, - [2437] = 301, - [2438] = 311, - [2439] = 312, - [2440] = 2429, - [2441] = 2429, - [2442] = 2429, - [2443] = 596, - [2444] = 908, - [2445] = 708, - [2446] = 2429, - [2447] = 363, - [2448] = 367, - [2449] = 2429, - [2450] = 312, - [2451] = 311, - [2452] = 301, - [2453] = 2429, - [2454] = 2429, - [2455] = 367, - [2456] = 303, - [2457] = 521, - [2458] = 353, - [2459] = 2429, - [2460] = 569, - [2461] = 363, - [2462] = 2429, - [2463] = 2429, - [2464] = 2429, - [2465] = 892, - [2466] = 973, - [2467] = 297, - [2468] = 939, - [2469] = 869, - [2470] = 877, - [2471] = 871, - [2472] = 870, - [2473] = 868, - [2474] = 860, - [2475] = 849, - [2476] = 924, - [2477] = 923, - [2478] = 848, - [2479] = 874, - [2480] = 908, - [2481] = 981, - [2482] = 902, - [2483] = 900, - [2484] = 301, - [2485] = 980, - [2486] = 888, - [2487] = 979, - [2488] = 878, - [2489] = 354, - [2490] = 881, - [2491] = 978, - [2492] = 882, - [2493] = 363, - [2494] = 367, - [2495] = 928, - [2496] = 946, - [2497] = 947, - [2498] = 373, - [2499] = 886, - [2500] = 887, - [2501] = 303, - [2502] = 883, - [2503] = 899, - [2504] = 903, - [2505] = 880, - [2506] = 921, - [2507] = 925, - [2508] = 904, - [2509] = 905, - [2510] = 66, - [2511] = 864, - [2512] = 942, - [2513] = 64, - [2514] = 62, - [2515] = 863, - [2516] = 353, - [2517] = 297, - [2518] = 944, - [2519] = 945, - [2520] = 954, - [2521] = 312, - [2522] = 2522, - [2523] = 953, - [2524] = 952, + [2398] = 888, + [2399] = 889, + [2400] = 928, + [2401] = 2401, + [2402] = 917, + [2403] = 894, + [2404] = 945, + [2405] = 890, + [2406] = 956, + [2407] = 891, + [2408] = 908, + [2409] = 855, + [2410] = 907, + [2411] = 895, + [2412] = 905, + [2413] = 897, + [2414] = 927, + [2415] = 941, + [2416] = 892, + [2417] = 940, + [2418] = 909, + [2419] = 912, + [2420] = 901, + [2421] = 898, + [2422] = 896, + [2423] = 903, + [2424] = 900, + [2425] = 919, + [2426] = 472, + [2427] = 921, + [2428] = 923, + [2429] = 930, + [2430] = 932, + [2431] = 935, + [2432] = 942, + [2433] = 333, + [2434] = 326, + [2435] = 2435, + [2436] = 863, + [2437] = 681, + [2438] = 458, + [2439] = 2435, + [2440] = 865, + [2441] = 318, + [2442] = 324, + [2443] = 326, + [2444] = 2435, + [2445] = 333, + [2446] = 340, + [2447] = 365, + [2448] = 980, + [2449] = 343, + [2450] = 600, + [2451] = 294, + [2452] = 2435, + [2453] = 618, + [2454] = 981, + [2455] = 2435, + [2456] = 2435, + [2457] = 2435, + [2458] = 2435, + [2459] = 2435, + [2460] = 2435, + [2461] = 2435, + [2462] = 2435, + [2463] = 318, + [2464] = 324, + [2465] = 365, + [2466] = 863, + [2467] = 294, + [2468] = 340, + [2469] = 681, + [2470] = 343, + [2471] = 2435, + [2472] = 899, + [2473] = 945, + [2474] = 934, + [2475] = 333, + [2476] = 340, + [2477] = 931, + [2478] = 343, + [2479] = 893, + [2480] = 929, + [2481] = 851, + [2482] = 860, + [2483] = 854, + [2484] = 950, + [2485] = 70, + [2486] = 68, + [2487] = 66, + [2488] = 869, + [2489] = 946, + [2490] = 318, + [2491] = 922, + [2492] = 324, + [2493] = 924, + [2494] = 920, + [2495] = 326, + [2496] = 952, + [2497] = 936, + [2498] = 908, + [2499] = 378, + [2500] = 911, + [2501] = 913, + [2502] = 915, + [2503] = 294, + [2504] = 365, + [2505] = 916, + [2506] = 955, + [2507] = 926, + [2508] = 361, + [2509] = 885, + [2510] = 953, + [2511] = 853, + [2512] = 902, + [2513] = 882, + [2514] = 881, + [2515] = 886, + [2516] = 873, + [2517] = 880, + [2518] = 883, + [2519] = 879, + [2520] = 2520, + [2521] = 888, + [2522] = 889, + [2523] = 877, + [2524] = 878, [2525] = 2525, - [2526] = 941, - [2527] = 917, - [2528] = 914, - [2529] = 892, - [2530] = 912, - [2531] = 910, - [2532] = 955, - [2533] = 909, - [2534] = 861, - [2535] = 862, - [2536] = 847, - [2537] = 866, - [2538] = 858, - [2539] = 943, - [2540] = 956, - [2541] = 916, - [2542] = 893, - [2543] = 889, - [2544] = 915, - [2545] = 907, - [2546] = 929, - [2547] = 906, - [2548] = 913, - [2549] = 901, - [2550] = 884, - [2551] = 708, - [2552] = 2525, - [2553] = 922, - [2554] = 311, - [2555] = 851, - [2556] = 852, - [2557] = 873, - [2558] = 855, - [2559] = 292, - [2560] = 931, - [2561] = 957, - [2562] = 890, - [2563] = 908, - [2564] = 893, - [2565] = 865, - [2566] = 875, - [2567] = 889, - [2568] = 879, - [2569] = 896, - [2570] = 898, - [2571] = 876, - [2572] = 872, - [2573] = 948, - [2574] = 885, - [2575] = 894, - [2576] = 897, - [2577] = 936, - [2578] = 859, - [2579] = 918, - [2580] = 940, - [2581] = 857, - [2582] = 891, - [2583] = 932, - [2584] = 930, - [2585] = 856, - [2586] = 920, - [2587] = 919, - [2588] = 867, - [2589] = 951, - [2590] = 853, - [2591] = 854, - [2592] = 850, - [2593] = 297, - [2594] = 367, - [2595] = 312, - [2596] = 311, - [2597] = 363, - [2598] = 301, - [2599] = 367, - [2600] = 363, - [2601] = 303, - [2602] = 893, - [2603] = 889, - [2604] = 501, - [2605] = 958, - [2606] = 557, - [2607] = 353, - [2608] = 297, - [2609] = 312, - [2610] = 311, - [2611] = 391, - [2612] = 2612, - [2613] = 390, - [2614] = 301, - [2615] = 973, - [2616] = 303, - [2617] = 353, - [2618] = 958, - [2619] = 363, - [2620] = 367, - [2621] = 312, - [2622] = 311, - [2623] = 301, - [2624] = 303, - [2625] = 353, - [2626] = 297, - [2627] = 892, - [2628] = 2628, - [2629] = 2629, - [2630] = 2628, + [2526] = 890, + [2527] = 876, + [2528] = 875, + [2529] = 2520, + [2530] = 891, + [2531] = 874, + [2532] = 866, + [2533] = 872, + [2534] = 870, + [2535] = 940, + [2536] = 895, + [2537] = 892, + [2538] = 905, + [2539] = 896, + [2540] = 865, + [2541] = 910, + [2542] = 928, + [2543] = 903, + [2544] = 901, + [2545] = 904, + [2546] = 864, + [2547] = 917, + [2548] = 909, + [2549] = 961, + [2550] = 912, + [2551] = 919, + [2552] = 933, + [2553] = 943, + [2554] = 921, + [2555] = 900, + [2556] = 995, + [2557] = 986, + [2558] = 988, + [2559] = 923, + [2560] = 984, + [2561] = 862, + [2562] = 935, + [2563] = 342, + [2564] = 942, + [2565] = 947, + [2566] = 861, + [2567] = 865, + [2568] = 948, + [2569] = 930, + [2570] = 949, + [2571] = 906, + [2572] = 951, + [2573] = 859, + [2574] = 954, + [2575] = 681, + [2576] = 927, + [2577] = 960, + [2578] = 959, + [2579] = 957, + [2580] = 956, + [2581] = 855, + [2582] = 907, + [2583] = 852, + [2584] = 937, + [2585] = 898, + [2586] = 897, + [2587] = 941, + [2588] = 894, + [2589] = 900, + [2590] = 901, + [2591] = 887, + [2592] = 871, + [2593] = 863, + [2594] = 958, + [2595] = 858, + [2596] = 932, + [2597] = 901, + [2598] = 326, + [2599] = 900, + [2600] = 318, + [2601] = 324, + [2602] = 294, + [2603] = 326, + [2604] = 2604, + [2605] = 472, + [2606] = 500, + [2607] = 333, + [2608] = 340, + [2609] = 340, + [2610] = 343, + [2611] = 343, + [2612] = 962, + [2613] = 333, + [2614] = 318, + [2615] = 324, + [2616] = 326, + [2617] = 395, + [2618] = 324, + [2619] = 394, + [2620] = 333, + [2621] = 365, + [2622] = 294, + [2623] = 318, + [2624] = 340, + [2625] = 343, + [2626] = 365, + [2627] = 980, + [2628] = 294, + [2629] = 962, + [2630] = 365, [2631] = 2631, [2632] = 2632, - [2633] = 973, - [2634] = 2628, - [2635] = 521, - [2636] = 326, - [2637] = 2632, - [2638] = 2632, - [2639] = 2628, - [2640] = 2632, - [2641] = 2628, - [2642] = 2628, - [2643] = 2632, - [2644] = 2632, - [2645] = 2628, - [2646] = 326, - [2647] = 908, - [2648] = 2628, - [2649] = 2649, - [2650] = 2632, - [2651] = 2651, - [2652] = 2632, - [2653] = 2653, - [2654] = 2628, - [2655] = 569, - [2656] = 2632, - [2657] = 596, - [2658] = 2632, - [2659] = 2628, - [2660] = 2628, - [2661] = 2632, - [2662] = 2632, - [2663] = 326, - [2664] = 708, - [2665] = 2628, - [2666] = 2628, - [2667] = 897, - [2668] = 2668, - [2669] = 873, - [2670] = 875, - [2671] = 942, - [2672] = 864, - [2673] = 2673, - [2674] = 859, - [2675] = 2673, + [2633] = 2633, + [2634] = 2634, + [2635] = 2635, + [2636] = 2634, + [2637] = 2637, + [2638] = 2634, + [2639] = 2634, + [2640] = 2634, + [2641] = 2635, + [2642] = 2635, + [2643] = 980, + [2644] = 865, + [2645] = 2635, + [2646] = 2635, + [2647] = 2635, + [2648] = 2635, + [2649] = 600, + [2650] = 2635, + [2651] = 2634, + [2652] = 332, + [2653] = 2635, + [2654] = 2634, + [2655] = 2655, + [2656] = 458, + [2657] = 2634, + [2658] = 2635, + [2659] = 332, + [2660] = 2634, + [2661] = 2635, + [2662] = 863, + [2663] = 2635, + [2664] = 2634, + [2665] = 2634, + [2666] = 2635, + [2667] = 618, + [2668] = 2634, + [2669] = 332, + [2670] = 681, + [2671] = 915, + [2672] = 681, + [2673] = 340, + [2674] = 2674, + [2675] = 950, [2676] = 2676, - [2677] = 2677, - [2678] = 2673, + [2677] = 958, + [2678] = 908, [2679] = 2676, - [2680] = 2668, - [2681] = 2677, - [2682] = 913, - [2683] = 892, - [2684] = 900, - [2685] = 2677, - [2686] = 902, - [2687] = 943, - [2688] = 2668, - [2689] = 909, - [2690] = 883, + [2680] = 333, + [2681] = 2676, + [2682] = 2674, + [2683] = 2683, + [2684] = 326, + [2685] = 863, + [2686] = 895, + [2687] = 905, + [2688] = 2683, + [2689] = 681, + [2690] = 907, [2691] = 2691, - [2692] = 863, - [2693] = 955, - [2694] = 910, - [2695] = 2677, - [2696] = 901, - [2697] = 922, - [2698] = 851, - [2699] = 852, - [2700] = 855, - [2701] = 912, - [2702] = 2677, - [2703] = 2673, - [2704] = 914, - [2705] = 894, - [2706] = 2706, - [2707] = 2668, - [2708] = 917, - [2709] = 940, - [2710] = 939, - [2711] = 932, - [2712] = 930, - [2713] = 920, - [2714] = 919, - [2715] = 2676, - [2716] = 854, - [2717] = 850, - [2718] = 941, - [2719] = 326, - [2720] = 952, - [2721] = 953, - [2722] = 954, - [2723] = 898, - [2724] = 896, - [2725] = 874, - [2726] = 891, - [2727] = 880, - [2728] = 363, - [2729] = 890, - [2730] = 367, - [2731] = 888, - [2732] = 391, - [2733] = 390, - [2734] = 884, - [2735] = 2668, - [2736] = 2673, - [2737] = 866, - [2738] = 847, - [2739] = 862, - [2740] = 861, - [2741] = 945, - [2742] = 2676, - [2743] = 2677, - [2744] = 921, - [2745] = 2676, - [2746] = 903, - [2747] = 899, - [2748] = 887, - [2749] = 886, + [2692] = 343, + [2693] = 959, + [2694] = 960, + [2695] = 2674, + [2696] = 2674, + [2697] = 949, + [2698] = 948, + [2699] = 2691, + [2700] = 947, + [2701] = 942, + [2702] = 935, + [2703] = 340, + [2704] = 2691, + [2705] = 952, + [2706] = 2691, + [2707] = 955, + [2708] = 912, + [2709] = 909, + [2710] = 879, + [2711] = 878, + [2712] = 876, + [2713] = 891, + [2714] = 890, + [2715] = 889, + [2716] = 888, + [2717] = 883, + [2718] = 880, + [2719] = 2674, + [2720] = 926, + [2721] = 854, + [2722] = 2691, + [2723] = 936, + [2724] = 906, + [2725] = 2691, + [2726] = 2726, + [2727] = 941, + [2728] = 940, + [2729] = 910, + [2730] = 2683, + [2731] = 866, + [2732] = 2732, + [2733] = 933, + [2734] = 332, + [2735] = 2637, + [2736] = 2676, + [2737] = 324, + [2738] = 928, + [2739] = 2676, + [2740] = 886, + [2741] = 916, + [2742] = 2691, + [2743] = 913, + [2744] = 911, + [2745] = 893, + [2746] = 2683, + [2747] = 920, + [2748] = 885, + [2749] = 2676, [2750] = 882, - [2751] = 892, - [2752] = 881, - [2753] = 2676, - [2754] = 878, - [2755] = 2755, - [2756] = 557, - [2757] = 2668, - [2758] = 501, - [2759] = 946, - [2760] = 947, - [2761] = 925, - [2762] = 2673, - [2763] = 2673, - [2764] = 928, - [2765] = 929, - [2766] = 858, - [2767] = 931, - [2768] = 948, - [2769] = 2668, - [2770] = 956, - [2771] = 936, - [2772] = 916, - [2773] = 915, - [2774] = 951, - [2775] = 848, - [2776] = 708, - [2777] = 2777, - [2778] = 923, - [2779] = 924, - [2780] = 849, - [2781] = 860, - [2782] = 868, - [2783] = 2673, - [2784] = 2676, - [2785] = 2668, - [2786] = 708, - [2787] = 870, - [2788] = 2677, - [2789] = 871, - [2790] = 877, - [2791] = 879, - [2792] = 2677, - [2793] = 2668, - [2794] = 2677, - [2795] = 876, - [2796] = 872, - [2797] = 2668, - [2798] = 2673, - [2799] = 2676, - [2800] = 904, - [2801] = 905, - [2802] = 2802, - [2803] = 857, - [2804] = 856, - [2805] = 297, - [2806] = 2677, - [2807] = 853, - [2808] = 2653, - [2809] = 2809, - [2810] = 353, - [2811] = 2668, - [2812] = 2812, - [2813] = 303, - [2814] = 867, - [2815] = 312, - [2816] = 301, - [2817] = 892, + [2751] = 881, + [2752] = 877, + [2753] = 875, + [2754] = 874, + [2755] = 995, + [2756] = 872, + [2757] = 937, + [2758] = 934, + [2759] = 2674, + [2760] = 852, + [2761] = 2691, + [2762] = 861, + [2763] = 897, + [2764] = 898, + [2765] = 855, + [2766] = 860, + [2767] = 2683, + [2768] = 927, + [2769] = 859, + [2770] = 932, + [2771] = 862, + [2772] = 899, + [2773] = 853, + [2774] = 922, + [2775] = 864, + [2776] = 873, + [2777] = 365, + [2778] = 902, + [2779] = 294, + [2780] = 953, + [2781] = 924, + [2782] = 2674, + [2783] = 318, + [2784] = 2691, + [2785] = 394, + [2786] = 2674, + [2787] = 2683, + [2788] = 892, + [2789] = 365, + [2790] = 681, + [2791] = 294, + [2792] = 2792, + [2793] = 395, + [2794] = 2691, + [2795] = 2795, + [2796] = 2676, + [2797] = 2683, + [2798] = 851, + [2799] = 2674, + [2800] = 919, + [2801] = 921, + [2802] = 923, + [2803] = 2683, + [2804] = 863, + [2805] = 2683, + [2806] = 929, + [2807] = 931, + [2808] = 2691, + [2809] = 324, + [2810] = 951, + [2811] = 2676, + [2812] = 954, + [2813] = 945, + [2814] = 2814, + [2815] = 2674, + [2816] = 957, + [2817] = 956, [2818] = 2676, - [2819] = 311, - [2820] = 312, - [2821] = 311, - [2822] = 908, - [2823] = 2676, - [2824] = 944, - [2825] = 918, - [2826] = 907, - [2827] = 708, + [2819] = 343, + [2820] = 2683, + [2821] = 863, + [2822] = 2674, + [2823] = 318, + [2824] = 2683, + [2825] = 863, + [2826] = 865, + [2827] = 500, [2828] = 2676, - [2829] = 301, - [2830] = 2677, - [2831] = 303, - [2832] = 981, - [2833] = 353, - [2834] = 297, - [2835] = 908, - [2836] = 908, - [2837] = 906, - [2838] = 2838, - [2839] = 2677, - [2840] = 2673, - [2841] = 885, - [2842] = 2673, - [2843] = 869, - [2844] = 892, - [2845] = 865, - [2846] = 708, - [2847] = 363, - [2848] = 367, - [2849] = 2676, - [2850] = 2850, - [2851] = 2677, - [2852] = 2676, - [2853] = 2676, + [2829] = 894, + [2830] = 326, + [2831] = 681, + [2832] = 2832, + [2833] = 887, + [2834] = 871, + [2835] = 869, + [2836] = 2691, + [2837] = 333, + [2838] = 943, + [2839] = 865, + [2840] = 865, + [2841] = 870, + [2842] = 946, + [2843] = 2676, + [2844] = 2844, + [2845] = 2691, + [2846] = 2674, + [2847] = 858, + [2848] = 930, + [2849] = 917, + [2850] = 904, + [2851] = 903, + [2852] = 2674, + [2853] = 2853, [2854] = 2854, - [2855] = 2673, - [2856] = 2668, - [2857] = 596, + [2855] = 472, + [2856] = 2676, + [2857] = 896, [2858] = 2858, - [2859] = 2859, - [2860] = 2858, - [2861] = 2858, + [2859] = 2691, + [2860] = 2683, + [2861] = 2861, [2862] = 2862, - [2863] = 2858, - [2864] = 1293, - [2865] = 2858, - [2866] = 2866, - [2867] = 569, - [2868] = 2858, - [2869] = 1922, - [2870] = 2859, - [2871] = 2858, - [2872] = 2872, - [2873] = 2858, - [2874] = 2874, - [2875] = 2858, - [2876] = 2876, - [2877] = 2858, - [2878] = 2858, - [2879] = 893, - [2880] = 2858, - [2881] = 889, - [2882] = 2859, - [2883] = 2858, - [2884] = 864, - [2885] = 942, - [2886] = 894, - [2887] = 2887, - [2888] = 66, - [2889] = 2889, - [2890] = 872, - [2891] = 855, - [2892] = 2889, - [2893] = 852, - [2894] = 851, - [2895] = 66, - [2896] = 2889, - [2897] = 897, - [2898] = 64, - [2899] = 2889, - [2900] = 2145, - [2901] = 2889, - [2902] = 876, - [2903] = 858, - [2904] = 940, - [2905] = 939, - [2906] = 2889, - [2907] = 930, - [2908] = 922, - [2909] = 901, - [2910] = 920, - [2911] = 955, - [2912] = 62, - [2913] = 863, - [2914] = 883, - [2915] = 915, - [2916] = 2889, - [2917] = 2889, - [2918] = 902, - [2919] = 919, - [2920] = 2889, - [2921] = 854, - [2922] = 900, - [2923] = 62, - [2924] = 64, - [2925] = 2889, - [2926] = 944, - [2927] = 850, - [2928] = 932, - [2929] = 2889, - [2930] = 2889, - [2931] = 2889, - [2932] = 916, - [2933] = 956, - [2934] = 2934, - [2935] = 1348, - [2936] = 2936, - [2937] = 1348, - [2938] = 1388, - [2939] = 1348, - [2940] = 1292, - [2941] = 1292, - [2942] = 1348, - [2943] = 2936, - [2944] = 2934, - [2945] = 2934, - [2946] = 1388, - [2947] = 1388, - [2948] = 1348, - [2949] = 1292, - [2950] = 1292, - [2951] = 1388, - [2952] = 1348, - [2953] = 1292, - [2954] = 1388, - [2955] = 2934, - [2956] = 2936, - [2957] = 1348, - [2958] = 1292, - [2959] = 1388, - [2960] = 1348, - [2961] = 1292, - [2962] = 1292, - [2963] = 2934, - [2964] = 1388, - [2965] = 2934, - [2966] = 2936, - [2967] = 1348, - [2968] = 1388, - [2969] = 1292, - [2970] = 1292, - [2971] = 1348, - [2972] = 1388, - [2973] = 2934, - [2974] = 2936, - [2975] = 2934, - [2976] = 1292, - [2977] = 1388, - [2978] = 1348, - [2979] = 2936, - [2980] = 1292, - [2981] = 2936, - [2982] = 1388, - [2983] = 1388, - [2984] = 1388, - [2985] = 1388, - [2986] = 1292, - [2987] = 2934, - [2988] = 2936, - [2989] = 2936, - [2990] = 2934, - [2991] = 2934, - [2992] = 2936, - [2993] = 1348, - [2994] = 2936, - [2995] = 1292, - [2996] = 1348, - [2997] = 1292, - [2998] = 1388, - [2999] = 1348, - [3000] = 1292, - [3001] = 1388, - [3002] = 2934, - [3003] = 1348, - [3004] = 1348, - [3005] = 2936, - [3006] = 3006, - [3007] = 3006, - [3008] = 3008, - [3009] = 3009, + [2863] = 2861, + [2864] = 2861, + [2865] = 2861, + [2866] = 901, + [2867] = 900, + [2868] = 2868, + [2869] = 2861, + [2870] = 600, + [2871] = 2868, + [2872] = 1927, + [2873] = 2861, + [2874] = 2861, + [2875] = 2875, + [2876] = 2861, + [2877] = 2861, + [2878] = 2878, + [2879] = 2861, + [2880] = 2868, + [2881] = 2861, + [2882] = 2861, + [2883] = 1290, + [2884] = 458, + [2885] = 2885, + [2886] = 2886, + [2887] = 2861, + [2888] = 895, + [2889] = 960, + [2890] = 937, + [2891] = 852, + [2892] = 2892, + [2893] = 878, + [2894] = 2892, + [2895] = 2892, + [2896] = 2892, + [2897] = 68, + [2898] = 2892, + [2899] = 2892, + [2900] = 66, + [2901] = 2892, + [2902] = 2892, + [2903] = 854, + [2904] = 2892, + [2905] = 932, + [2906] = 879, + [2907] = 66, + [2908] = 68, + [2909] = 950, + [2910] = 2892, + [2911] = 942, + [2912] = 70, + [2913] = 880, + [2914] = 958, + [2915] = 883, + [2916] = 2892, + [2917] = 888, + [2918] = 889, + [2919] = 2919, + [2920] = 890, + [2921] = 70, + [2922] = 891, + [2923] = 909, + [2924] = 908, + [2925] = 2892, + [2926] = 2150, + [2927] = 959, + [2928] = 912, + [2929] = 907, + [2930] = 935, + [2931] = 2892, + [2932] = 876, + [2933] = 905, + [2934] = 926, + [2935] = 947, + [2936] = 948, + [2937] = 949, + [2938] = 1291, + [2939] = 1365, + [2940] = 2940, + [2941] = 2940, + [2942] = 2942, + [2943] = 1365, + [2944] = 1291, + [2945] = 1291, + [2946] = 2940, + [2947] = 2942, + [2948] = 2940, + [2949] = 2940, + [2950] = 1291, + [2951] = 1365, + [2952] = 1320, + [2953] = 1291, + [2954] = 1320, + [2955] = 2940, + [2956] = 2940, + [2957] = 2942, + [2958] = 1320, + [2959] = 1365, + [2960] = 2942, + [2961] = 2940, + [2962] = 1365, + [2963] = 1365, + [2964] = 1320, + [2965] = 1291, + [2966] = 1320, + [2967] = 1320, + [2968] = 1320, + [2969] = 1291, + [2970] = 1320, + [2971] = 1320, + [2972] = 1291, + [2973] = 1291, + [2974] = 1291, + [2975] = 2942, + [2976] = 1291, + [2977] = 2940, + [2978] = 1320, + [2979] = 1365, + [2980] = 2942, + [2981] = 2940, + [2982] = 1291, + [2983] = 1320, + [2984] = 2940, + [2985] = 2942, + [2986] = 1365, + [2987] = 1320, + [2988] = 1365, + [2989] = 1365, + [2990] = 1365, + [2991] = 1291, + [2992] = 1320, + [2993] = 1291, + [2994] = 1320, + [2995] = 2942, + [2996] = 1320, + [2997] = 2942, + [2998] = 1291, + [2999] = 1365, + [3000] = 1291, + [3001] = 1320, + [3002] = 1365, + [3003] = 1365, + [3004] = 2942, + [3005] = 2942, + [3006] = 1365, + [3007] = 2940, + [3008] = 2942, + [3009] = 1365, [3010] = 3010, - [3011] = 3011, - [3012] = 3011, - [3013] = 3009, - [3014] = 3009, - [3015] = 3015, - [3016] = 3011, - [3017] = 3009, - [3018] = 3009, - [3019] = 3011, - [3020] = 3009, - [3021] = 3011, - [3022] = 3009, - [3023] = 3009, - [3024] = 3024, + [3011] = 3010, + [3012] = 3012, + [3013] = 3013, + [3014] = 3014, + [3015] = 3012, + [3016] = 3016, + [3017] = 3012, + [3018] = 3012, + [3019] = 3019, + [3020] = 3020, + [3021] = 3012, + [3022] = 3013, + [3023] = 3013, + [3024] = 3012, [3025] = 3025, - [3026] = 3011, - [3027] = 3009, - [3028] = 3028, - [3029] = 3009, - [3030] = 3009, - [3031] = 3031, - [3032] = 3011, - [3033] = 3009, - [3034] = 3009, - [3035] = 3035, - [3036] = 3011, - [3037] = 3037, - [3038] = 3011, - [3039] = 3011, - [3040] = 3011, - [3041] = 3011, - [3042] = 3011, - [3043] = 1589, - [3044] = 3011, - [3045] = 3009, - [3046] = 3046, - [3047] = 3046, + [3026] = 3012, + [3027] = 3013, + [3028] = 3012, + [3029] = 3013, + [3030] = 3030, + [3031] = 3013, + [3032] = 3013, + [3033] = 3033, + [3034] = 3013, + [3035] = 3012, + [3036] = 1590, + [3037] = 3013, + [3038] = 3013, + [3039] = 3013, + [3040] = 3013, + [3041] = 3012, + [3042] = 3042, + [3043] = 3012, + [3044] = 3013, + [3045] = 3012, + [3046] = 3013, + [3047] = 3012, [3048] = 3048, - [3049] = 3049, + [3049] = 3012, [3050] = 3050, - [3051] = 3048, + [3051] = 3051, [3052] = 3052, - [3053] = 3049, - [3054] = 3052, + [3053] = 3053, + [3054] = 3054, [3055] = 3055, [3056] = 3056, - [3057] = 3049, - [3058] = 3046, - [3059] = 3056, - [3060] = 3060, - [3061] = 3048, - [3062] = 3052, - [3063] = 3050, - [3064] = 3048, - [3065] = 3055, + [3057] = 3057, + [3058] = 3058, + [3059] = 3059, + [3060] = 3053, + [3061] = 3061, + [3062] = 3062, + [3063] = 3051, + [3064] = 3050, + [3065] = 3065, [3066] = 3066, - [3067] = 3055, - [3068] = 3068, - [3069] = 3060, - [3070] = 3046, - [3071] = 3060, - [3072] = 3072, - [3073] = 3073, - [3074] = 3068, - [3075] = 3052, - [3076] = 3073, - [3077] = 3072, - [3078] = 3055, - [3079] = 3052, - [3080] = 3048, + [3067] = 3066, + [3068] = 3057, + [3069] = 3050, + [3070] = 3052, + [3071] = 3071, + [3072] = 3052, + [3073] = 3054, + [3074] = 3061, + [3075] = 3050, + [3076] = 3062, + [3077] = 3051, + [3078] = 3057, + [3079] = 3065, + [3080] = 3053, [3081] = 3081, - [3082] = 3073, - [3083] = 3046, - [3084] = 3084, - [3085] = 3068, - [3086] = 3056, - [3087] = 3060, + [3082] = 3058, + [3083] = 3059, + [3084] = 3065, + [3085] = 3051, + [3086] = 3062, + [3087] = 3061, [3088] = 3088, [3089] = 3089, - [3090] = 3081, - [3091] = 3081, - [3092] = 3066, - [3093] = 3089, - [3094] = 3068, - [3095] = 3049, - [3096] = 3055, - [3097] = 3081, - [3098] = 3060, - [3099] = 3060, - [3100] = 3081, - [3101] = 3055, - [3102] = 3049, - [3103] = 3073, - [3104] = 3066, - [3105] = 3048, - [3106] = 3072, - [3107] = 3049, - [3108] = 3088, - [3109] = 3072, - [3110] = 3068, - [3111] = 3050, - [3112] = 3084, - [3113] = 3052, - [3114] = 3046, - [3115] = 3056, - [3116] = 3066, - [3117] = 3066, - [3118] = 3046, - [3119] = 3052, - [3120] = 3048, - [3121] = 3073, - [3122] = 3122, - [3123] = 3068, - [3124] = 3056, - [3125] = 3081, - [3126] = 3060, - [3127] = 3073, - [3128] = 3073, - [3129] = 3056, - [3130] = 3049, - [3131] = 3046, - [3132] = 3050, - [3133] = 3048, - [3134] = 3049, - [3135] = 3084, - [3136] = 3055, - [3137] = 3088, - [3138] = 3089, - [3139] = 3060, - [3140] = 3056, - [3141] = 3066, - [3142] = 3073, - [3143] = 3072, - [3144] = 3052, - [3145] = 3068, - [3146] = 3081, - [3147] = 3049, - [3148] = 3055, - [3149] = 3046, - [3150] = 3068, - [3151] = 3066, - [3152] = 3060, - [3153] = 3055, - [3154] = 3049, - [3155] = 3055, - [3156] = 3060, - [3157] = 3157, - [3158] = 3084, - [3159] = 3055, - [3160] = 3060, - [3161] = 3049, - [3162] = 3162, - [3163] = 3056, - [3164] = 3049, - [3165] = 3073, - [3166] = 3052, - [3167] = 3048, - [3168] = 3052, - [3169] = 3046, - [3170] = 3052, - [3171] = 3046, - [3172] = 3048, - [3173] = 3072, - [3174] = 3072, - [3175] = 3088, - [3176] = 3050, - [3177] = 3089, - [3178] = 3084, - [3179] = 3088, - [3180] = 3084, - [3181] = 3073, - [3182] = 3056, - [3183] = 3066, - [3184] = 3073, - [3185] = 3072, - [3186] = 3046, - [3187] = 3081, - [3188] = 3056, - [3189] = 3088, - [3190] = 3089, - [3191] = 3068, - [3192] = 3060, - [3193] = 3048, - [3194] = 3052, - [3195] = 3055, - [3196] = 3073, - [3197] = 3084, - [3198] = 3050, - [3199] = 3049, - [3200] = 3088, - [3201] = 3089, - [3202] = 3162, - [3203] = 3055, - [3204] = 3072, - [3205] = 3046, - [3206] = 3068, - [3207] = 3055, - [3208] = 3089, - [3209] = 3066, - [3210] = 3089, - [3211] = 3048, - [3212] = 3052, - [3213] = 3088, - [3214] = 3081, - [3215] = 3084, - [3216] = 3066, - [3217] = 3048, - [3218] = 3060, - [3219] = 3052, - [3220] = 3066, - [3221] = 3050, - [3222] = 3068, - [3223] = 3072, - [3224] = 3056, - [3225] = 3046, - [3226] = 3048, - [3227] = 3068, - [3228] = 3068, - [3229] = 3073, - [3230] = 3052, - [3231] = 3048, - [3232] = 3068, - [3233] = 3052, - [3234] = 3049, - [3235] = 3081, - [3236] = 3050, - [3237] = 3055, - [3238] = 3056, - [3239] = 3239, - [3240] = 3060, - [3241] = 3052, - [3242] = 3073, - [3243] = 3050, - [3244] = 3072, - [3245] = 3089, - [3246] = 3048, - [3247] = 3088, - [3248] = 3066, - [3249] = 3066, - [3250] = 3084, - [3251] = 3056, - [3252] = 3073, - [3253] = 3072, - [3254] = 3254, - [3255] = 3046, - [3256] = 3081, - [3257] = 3081, - [3258] = 3258, - [3259] = 3048, - [3260] = 3052, - [3261] = 3072, - [3262] = 3056, - [3263] = 3089, - [3264] = 3088, - [3265] = 3072, + [3090] = 3052, + [3091] = 3050, + [3092] = 3092, + [3093] = 3093, + [3094] = 3093, + [3095] = 3066, + [3096] = 3057, + [3097] = 3092, + [3098] = 3053, + [3099] = 3055, + [3100] = 3054, + [3101] = 3061, + [3102] = 3062, + [3103] = 3054, + [3104] = 3093, + [3105] = 3092, + [3106] = 3051, + [3107] = 3088, + [3108] = 3053, + [3109] = 3065, + [3110] = 3065, + [3111] = 3051, + [3112] = 3112, + [3113] = 3071, + [3114] = 3062, + [3115] = 3088, + [3116] = 3088, + [3117] = 3055, + [3118] = 3092, + [3119] = 3093, + [3120] = 3055, + [3121] = 3121, + [3122] = 3059, + [3123] = 3059, + [3124] = 3058, + [3125] = 3066, + [3126] = 3054, + [3127] = 3061, + [3128] = 3053, + [3129] = 3057, + [3130] = 3053, + [3131] = 3059, + [3132] = 3058, + [3133] = 3059, + [3134] = 3058, + [3135] = 3050, + [3136] = 3053, + [3137] = 3052, + [3138] = 3062, + [3139] = 3051, + [3140] = 3058, + [3141] = 3065, + [3142] = 3059, + [3143] = 3058, + [3144] = 3065, + [3145] = 3058, + [3146] = 3059, + [3147] = 3053, + [3148] = 3051, + [3149] = 3062, + [3150] = 3059, + [3151] = 3055, + [3152] = 3152, + [3153] = 3058, + [3154] = 3059, + [3155] = 3054, + [3156] = 3055, + [3157] = 3058, + [3158] = 3065, + [3159] = 3058, + [3160] = 3059, + [3161] = 3053, + [3162] = 3052, + [3163] = 3058, + [3164] = 3058, + [3165] = 3059, + [3166] = 3059, + [3167] = 3093, + [3168] = 3092, + [3169] = 3059, + [3170] = 3050, + [3171] = 3057, + [3172] = 3088, + [3173] = 3052, + [3174] = 3057, + [3175] = 3066, + [3176] = 3053, + [3177] = 3065, + [3178] = 3061, + [3179] = 3058, + [3180] = 3066, + [3181] = 3066, + [3182] = 3062, + [3183] = 3050, + [3184] = 3093, + [3185] = 3052, + [3186] = 3092, + [3187] = 3066, + [3188] = 3054, + [3189] = 3061, + [3190] = 3055, + [3191] = 3088, + [3192] = 3055, + [3193] = 3054, + [3194] = 3050, + [3195] = 3088, + [3196] = 3055, + [3197] = 3092, + [3198] = 3093, + [3199] = 3066, + [3200] = 3066, + [3201] = 3088, + [3202] = 3054, + [3203] = 3061, + [3204] = 3092, + [3205] = 3093, + [3206] = 3058, + [3207] = 3057, + [3208] = 3059, + [3209] = 3088, + [3210] = 3058, + [3211] = 3059, + [3212] = 3059, + [3213] = 3062, + [3214] = 3058, + [3215] = 3215, + [3216] = 3057, + [3217] = 3092, + [3218] = 3051, + [3219] = 3053, + [3220] = 3093, + [3221] = 3065, + [3222] = 3050, + [3223] = 3065, + [3224] = 3051, + [3225] = 3052, + [3226] = 3052, + [3227] = 3058, + [3228] = 3059, + [3229] = 3066, + [3230] = 3065, + [3231] = 3057, + [3232] = 3062, + [3233] = 3061, + [3234] = 3059, + [3235] = 3058, + [3236] = 3053, + [3237] = 3054, + [3238] = 3061, + [3239] = 3054, + [3240] = 3058, + [3241] = 3059, + [3242] = 3055, + [3243] = 3052, + [3244] = 3050, + [3245] = 3053, + [3246] = 3057, + [3247] = 3053, + [3248] = 3053, + [3249] = 3061, + [3250] = 3059, + [3251] = 3055, + [3252] = 3054, + [3253] = 3061, + [3254] = 3062, + [3255] = 3051, + [3256] = 3052, + [3257] = 3052, + [3258] = 3093, + [3259] = 3092, + [3260] = 3260, + [3261] = 3065, + [3262] = 3050, + [3263] = 3057, + [3264] = 3057, + [3265] = 3050, [3266] = 3066, - [3267] = 3162, - [3268] = 3072, - [3269] = 3056, - [3270] = 3084, - [3271] = 3271, - [3272] = 3048, - [3273] = 3052, - [3274] = 3052, - [3275] = 3048, - [3276] = 3081, - [3277] = 3048, - [3278] = 3060, - [3279] = 3084, - [3280] = 3055, - [3281] = 3088, - [3282] = 3089, - [3283] = 3049, - [3284] = 3050, - [3285] = 3049, - [3286] = 3081, - [3287] = 3052, - [3288] = 3050, - [3289] = 3048, - [3290] = 3048, - [3291] = 3050, - [3292] = 3292, - [3293] = 3060, - [3294] = 3050, - [3295] = 3068, - [3296] = 3066, - [3297] = 3046, - [3298] = 3052, - [3299] = 3066, - [3300] = 3081, - [3301] = 3050, - [3302] = 3072, - [3303] = 3073, - [3304] = 3304, - [3305] = 3084, - [3306] = 3068, - [3307] = 3056, - [3308] = 3088, - [3309] = 3089, - [3310] = 3081, - [3311] = 3311, - [3312] = 3311, - [3313] = 3311, - [3314] = 3314, - [3315] = 3311, - [3316] = 3311, - [3317] = 3317, - [3318] = 3311, - [3319] = 3311, - [3320] = 3320, - [3321] = 3311, - [3322] = 3311, - [3323] = 3311, - [3324] = 3311, - [3325] = 3325, - [3326] = 3311, - [3327] = 3327, - [3328] = 938, - [3329] = 926, - [3330] = 927, - [3331] = 937, - [3332] = 911, - [3333] = 1122, - [3334] = 927, - [3335] = 938, - [3336] = 937, - [3337] = 3337, + [3267] = 3055, + [3268] = 3054, + [3269] = 3061, + [3270] = 3088, + [3271] = 3062, + [3272] = 3051, + [3273] = 3065, + [3274] = 3055, + [3275] = 3051, + [3276] = 3092, + [3277] = 3066, + [3278] = 3052, + [3279] = 3062, + [3280] = 3071, + [3281] = 3062, + [3282] = 3093, + [3283] = 3050, + [3284] = 3088, + [3285] = 3057, + [3286] = 3065, + [3287] = 3054, + [3288] = 3066, + [3289] = 3061, + [3290] = 3051, + [3291] = 3059, + [3292] = 3062, + [3293] = 3051, + [3294] = 3055, + [3295] = 3052, + [3296] = 3050, + [3297] = 3057, + [3298] = 3065, + [3299] = 3051, + [3300] = 3062, + [3301] = 3061, + [3302] = 3054, + [3303] = 3055, + [3304] = 3058, + [3305] = 3057, + [3306] = 3055, + [3307] = 3054, + [3308] = 3050, + [3309] = 3088, + [3310] = 3061, + [3311] = 3052, + [3312] = 3092, + [3313] = 3093, + [3314] = 3058, + [3315] = 3315, + [3316] = 3316, + [3317] = 3315, + [3318] = 3318, + [3319] = 3319, + [3320] = 3315, + [3321] = 3315, + [3322] = 3315, + [3323] = 3323, + [3324] = 3315, + [3325] = 3315, + [3326] = 3315, + [3327] = 3315, + [3328] = 3315, + [3329] = 3315, + [3330] = 3315, + [3331] = 3331, + [3332] = 867, + [3333] = 868, + [3334] = 856, + [3335] = 884, + [3336] = 857, + [3337] = 1122, [3338] = 3338, - [3339] = 3339, - [3340] = 911, - [3341] = 3341, - [3342] = 926, - [3343] = 1428, - [3344] = 3344, - [3345] = 1122, + [3339] = 856, + [3340] = 857, + [3341] = 868, + [3342] = 867, + [3343] = 3343, + [3344] = 884, + [3345] = 3345, [3346] = 3346, [3347] = 1122, - [3348] = 2162, - [3349] = 1423, - [3350] = 1417, + [3348] = 2170, + [3349] = 1122, + [3350] = 3350, [3351] = 3351, - [3352] = 3352, - [3353] = 3352, - [3354] = 3352, - [3355] = 3355, - [3356] = 2258, - [3357] = 3352, - [3358] = 2287, - [3359] = 3359, - [3360] = 2301, - [3361] = 3361, + [3352] = 1433, + [3353] = 3353, + [3354] = 3354, + [3355] = 2238, + [3356] = 3356, + [3357] = 1421, + [3358] = 3354, + [3359] = 1427, + [3360] = 3354, + [3361] = 3354, [3362] = 3362, - [3363] = 3363, + [3363] = 2292, [3364] = 3364, [3365] = 3365, [3366] = 3366, - [3367] = 3367, - [3368] = 3367, - [3369] = 3365, - [3370] = 3367, - [3371] = 908, - [3372] = 3365, - [3373] = 3365, - [3374] = 3367, - [3375] = 3365, - [3376] = 3367, + [3367] = 2302, + [3368] = 3368, + [3369] = 3368, + [3370] = 3370, + [3371] = 3371, + [3372] = 3372, + [3373] = 3372, + [3374] = 3374, + [3375] = 3375, + [3376] = 3372, [3377] = 3377, - [3378] = 3365, - [3379] = 3367, - [3380] = 3367, - [3381] = 3366, - [3382] = 3367, - [3383] = 3366, - [3384] = 3365, - [3385] = 3365, - [3386] = 3365, - [3387] = 3365, - [3388] = 3367, - [3389] = 3365, - [3390] = 521, - [3391] = 3367, - [3392] = 3392, - [3393] = 3367, - [3394] = 3394, - [3395] = 3366, - [3396] = 3365, - [3397] = 3365, + [3378] = 3372, + [3379] = 3368, + [3380] = 3380, + [3381] = 3380, + [3382] = 3382, + [3383] = 3372, + [3384] = 3368, + [3385] = 3368, + [3386] = 898, + [3387] = 3372, + [3388] = 618, + [3389] = 3372, + [3390] = 3368, + [3391] = 3368, + [3392] = 3372, + [3393] = 3368, + [3394] = 3368, + [3395] = 3372, + [3396] = 3372, + [3397] = 865, [3398] = 3398, - [3399] = 3399, - [3400] = 3400, + [3399] = 3372, + [3400] = 897, [3401] = 3401, - [3402] = 3402, - [3403] = 3367, - [3404] = 946, + [3402] = 3368, + [3403] = 3368, + [3404] = 3372, [3405] = 3405, - [3406] = 3367, - [3407] = 947, - [3408] = 3365, - [3409] = 3367, - [3410] = 948, - [3411] = 3411, - [3412] = 945, - [3413] = 3413, - [3414] = 951, + [3406] = 3406, + [3407] = 3372, + [3408] = 3368, + [3409] = 3368, + [3410] = 3380, + [3411] = 3372, + [3412] = 3368, + [3413] = 3380, + [3414] = 893, [3415] = 3415, [3416] = 3416, - [3417] = 3417, - [3418] = 881, - [3419] = 862, - [3420] = 884, - [3421] = 921, - [3422] = 928, + [3417] = 899, + [3418] = 902, + [3419] = 3419, + [3420] = 3420, + [3421] = 3421, + [3422] = 859, [3423] = 3423, [3424] = 3424, - [3425] = 861, - [3426] = 931, - [3427] = 887, - [3428] = 890, - [3429] = 929, - [3430] = 936, - [3431] = 886, - [3432] = 3432, - [3433] = 847, - [3434] = 903, - [3435] = 866, - [3436] = 882, - [3437] = 925, - [3438] = 896, - [3439] = 878, - [3440] = 899, - [3441] = 3441, - [3442] = 898, - [3443] = 3443, - [3444] = 3444, - [3445] = 3445, - [3446] = 3446, - [3447] = 3446, - [3448] = 874, - [3449] = 3446, + [3425] = 881, + [3426] = 911, + [3427] = 913, + [3428] = 915, + [3429] = 916, + [3430] = 928, + [3431] = 941, + [3432] = 864, + [3433] = 862, + [3434] = 3434, + [3435] = 875, + [3436] = 933, + [3437] = 3437, + [3438] = 940, + [3439] = 882, + [3440] = 855, + [3441] = 870, + [3442] = 872, + [3443] = 927, + [3444] = 877, + [3445] = 874, + [3446] = 885, + [3447] = 3447, + [3448] = 3448, + [3449] = 3449, [3450] = 3450, - [3451] = 3446, - [3452] = 3446, - [3453] = 3446, - [3454] = 3446, - [3455] = 3446, - [3456] = 3446, - [3457] = 3446, - [3458] = 3458, - [3459] = 3446, - [3460] = 3446, - [3461] = 3461, - [3462] = 3462, - [3463] = 3463, - [3464] = 3464, - [3465] = 3465, - [3466] = 3466, - [3467] = 3467, + [3451] = 3451, + [3452] = 3452, + [3453] = 3453, + [3454] = 3451, + [3455] = 3451, + [3456] = 3456, + [3457] = 3451, + [3458] = 3451, + [3459] = 3451, + [3460] = 3460, + [3461] = 3451, + [3462] = 3451, + [3463] = 910, + [3464] = 3451, + [3465] = 3451, + [3466] = 3451, + [3467] = 3451, [3468] = 3468, [3469] = 3469, [3470] = 3470, @@ -6822,186 +6829,186 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3483] = 3483, [3484] = 3484, [3485] = 3485, - [3486] = 3485, + [3486] = 3486, [3487] = 3487, [3488] = 3488, - [3489] = 3485, - [3490] = 3487, - [3491] = 3484, - [3492] = 3484, - [3493] = 3487, - [3494] = 3485, - [3495] = 3487, + [3489] = 3489, + [3490] = 3490, + [3491] = 3491, + [3492] = 3492, + [3493] = 3489, + [3494] = 3489, + [3495] = 3490, [3496] = 3496, - [3497] = 3484, - [3498] = 3485, + [3497] = 3491, + [3498] = 3498, [3499] = 3499, - [3500] = 3500, - [3501] = 3484, + [3500] = 3491, + [3501] = 3489, [3502] = 3502, - [3503] = 3487, - [3504] = 3484, - [3505] = 3484, - [3506] = 3506, - [3507] = 3487, - [3508] = 3484, - [3509] = 3487, + [3503] = 3490, + [3504] = 3490, + [3505] = 3489, + [3506] = 3490, + [3507] = 3507, + [3508] = 3489, + [3509] = 3490, [3510] = 3510, - [3511] = 3487, - [3512] = 3485, - [3513] = 3487, - [3514] = 3487, - [3515] = 3515, - [3516] = 3485, + [3511] = 3511, + [3512] = 3491, + [3513] = 3490, + [3514] = 3489, + [3515] = 3490, + [3516] = 3490, [3517] = 3517, - [3518] = 3485, - [3519] = 3485, - [3520] = 3485, + [3518] = 3518, + [3519] = 3519, + [3520] = 3491, [3521] = 3521, [3522] = 3522, - [3523] = 3484, - [3524] = 3484, - [3525] = 3487, - [3526] = 3526, - [3527] = 3485, + [3523] = 3491, + [3524] = 3524, + [3525] = 3491, + [3526] = 3491, + [3527] = 3491, [3528] = 3528, - [3529] = 3529, - [3530] = 3530, - [3531] = 3485, - [3532] = 3484, - [3533] = 3533, - [3534] = 3534, - [3535] = 3535, - [3536] = 3536, - [3537] = 3487, - [3538] = 3484, - [3539] = 3539, + [3529] = 3489, + [3530] = 3491, + [3531] = 3489, + [3532] = 3489, + [3533] = 3489, + [3534] = 3490, + [3535] = 3490, + [3536] = 3490, + [3537] = 3491, + [3538] = 3489, + [3539] = 3491, [3540] = 3540, [3541] = 3541, [3542] = 3542, - [3543] = 3540, + [3543] = 3543, [3544] = 3544, - [3545] = 3542, + [3545] = 3545, [3546] = 3546, - [3547] = 3547, + [3547] = 618, [3548] = 3548, - [3549] = 3539, - [3550] = 1423, + [3549] = 3549, + [3550] = 3545, [3551] = 3551, [3552] = 3551, - [3553] = 3548, - [3554] = 3542, - [3555] = 3547, - [3556] = 3546, - [3557] = 3544, - [3558] = 3551, - [3559] = 3559, - [3560] = 3548, - [3561] = 3561, - [3562] = 3547, - [3563] = 3546, - [3564] = 3540, - [3565] = 3539, - [3566] = 1422, - [3567] = 908, - [3568] = 3568, - [3569] = 1424, - [3570] = 3570, - [3571] = 3571, - [3572] = 3540, - [3573] = 3546, - [3574] = 3547, - [3575] = 3548, - [3576] = 3551, - [3577] = 3539, - [3578] = 3540, - [3579] = 3544, - [3580] = 3542, - [3581] = 521, - [3582] = 3546, - [3583] = 3551, - [3584] = 3547, - [3585] = 3546, - [3586] = 3547, - [3587] = 3548, - [3588] = 3551, - [3589] = 3540, - [3590] = 3548, - [3591] = 3548, + [3553] = 1427, + [3554] = 1421, + [3555] = 3555, + [3556] = 3556, + [3557] = 3557, + [3558] = 3544, + [3559] = 3544, + [3560] = 865, + [3561] = 1418, + [3562] = 3555, + [3563] = 3543, + [3564] = 3564, + [3565] = 1438, + [3566] = 1439, + [3567] = 3545, + [3568] = 3551, + [3569] = 3556, + [3570] = 3555, + [3571] = 3556, + [3572] = 3557, + [3573] = 3564, + [3574] = 3557, + [3575] = 3544, + [3576] = 3544, + [3577] = 3544, + [3578] = 3555, + [3579] = 3556, + [3580] = 3557, + [3581] = 3544, + [3582] = 3544, + [3583] = 3557, + [3584] = 3556, + [3585] = 3555, + [3586] = 3551, + [3587] = 3545, + [3588] = 3564, + [3589] = 3543, + [3590] = 3564, + [3591] = 3545, [3592] = 3551, - [3593] = 3542, - [3594] = 3539, - [3595] = 3544, - [3596] = 3544, - [3597] = 3539, - [3598] = 3544, - [3599] = 3542, - [3600] = 3539, - [3601] = 3539, - [3602] = 3540, - [3603] = 3544, - [3604] = 3542, - [3605] = 3540, - [3606] = 3544, - [3607] = 3542, - [3608] = 3544, - [3609] = 3540, - [3610] = 3539, - [3611] = 3542, - [3612] = 3547, - [3613] = 3542, - [3614] = 3544, - [3615] = 3540, - [3616] = 3539, - [3617] = 3551, - [3618] = 3548, - [3619] = 3547, - [3620] = 3546, - [3621] = 3546, - [3622] = 3622, - [3623] = 3551, - [3624] = 3548, - [3625] = 3547, - [3626] = 3626, - [3627] = 3546, - [3628] = 3628, + [3593] = 3543, + [3594] = 3543, + [3595] = 3556, + [3596] = 3555, + [3597] = 3597, + [3598] = 3551, + [3599] = 3557, + [3600] = 3545, + [3601] = 3564, + [3602] = 3564, + [3603] = 3603, + [3604] = 3551, + [3605] = 3605, + [3606] = 3545, + [3607] = 3564, + [3608] = 3551, + [3609] = 3543, + [3610] = 3545, + [3611] = 3555, + [3612] = 3564, + [3613] = 3543, + [3614] = 3556, + [3615] = 3557, + [3616] = 1430, + [3617] = 3543, + [3618] = 3544, + [3619] = 3557, + [3620] = 3556, + [3621] = 3555, + [3622] = 3543, + [3623] = 3564, + [3624] = 3545, + [3625] = 3551, + [3626] = 3545, + [3627] = 3564, + [3628] = 3543, [3629] = 3551, - [3630] = 3548, - [3631] = 3539, - [3632] = 3540, - [3633] = 3547, - [3634] = 3544, - [3635] = 3542, - [3636] = 1455, - [3637] = 3546, - [3638] = 1456, - [3639] = 3639, - [3640] = 1417, - [3641] = 3551, - [3642] = 3548, - [3643] = 3547, - [3644] = 3546, - [3645] = 3539, - [3646] = 3540, - [3647] = 3544, - [3648] = 3542, - [3649] = 3546, - [3650] = 3547, - [3651] = 3548, - [3652] = 3551, + [3630] = 3557, + [3631] = 3543, + [3632] = 3544, + [3633] = 3556, + [3634] = 3564, + [3635] = 3544, + [3636] = 3557, + [3637] = 3637, + [3638] = 3557, + [3639] = 3556, + [3640] = 3555, + [3641] = 3545, + [3642] = 3642, + [3643] = 3551, + [3644] = 3556, + [3645] = 3555, + [3646] = 3555, + [3647] = 3555, + [3648] = 3648, + [3649] = 3556, + [3650] = 3543, + [3651] = 3557, + [3652] = 3544, [3653] = 3653, - [3654] = 3654, - [3655] = 3655, + [3654] = 3564, + [3655] = 3545, [3656] = 3656, - [3657] = 3657, - [3658] = 3657, + [3657] = 3551, + [3658] = 3658, [3659] = 3659, [3660] = 3660, [3661] = 3661, [3662] = 3662, [3663] = 3663, [3664] = 3664, - [3665] = 1428, + [3665] = 3665, [3666] = 3666, [3667] = 3667, [3668] = 3668, @@ -7015,15 +7022,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3676] = 3676, [3677] = 3677, [3678] = 3678, - [3679] = 3679, - [3680] = 3661, + [3679] = 3674, + [3680] = 3680, [3681] = 3681, - [3682] = 3682, + [3682] = 3658, [3683] = 3683, [3684] = 3684, [3685] = 3685, [3686] = 3686, - [3687] = 3687, + [3687] = 1433, [3688] = 3688, [3689] = 3689, [3690] = 3690, @@ -7031,1046 +7038,1050 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3692] = 3692, [3693] = 3693, [3694] = 3694, - [3695] = 3695, - [3696] = 1554, - [3697] = 1555, - [3698] = 1558, - [3699] = 3695, - [3700] = 3687, - [3701] = 3695, - [3702] = 1559, + [3695] = 3690, + [3696] = 3696, + [3697] = 3697, + [3698] = 3698, + [3699] = 3693, + [3700] = 3700, + [3701] = 3698, + [3702] = 3702, [3703] = 3703, - [3704] = 1562, - [3705] = 3695, + [3704] = 3693, + [3705] = 3698, [3706] = 3706, - [3707] = 3703, - [3708] = 3687, + [3707] = 3707, + [3708] = 3689, [3709] = 3709, - [3710] = 3710, - [3711] = 3690, - [3712] = 1567, - [3713] = 3709, - [3714] = 3688, + [3710] = 3693, + [3711] = 3711, + [3712] = 3712, + [3713] = 3713, + [3714] = 3714, [3715] = 3715, - [3716] = 3695, - [3717] = 3709, - [3718] = 1498, - [3719] = 3688, - [3720] = 3690, - [3721] = 3687, - [3722] = 3695, - [3723] = 3723, + [3716] = 3716, + [3717] = 3717, + [3718] = 3718, + [3719] = 3719, + [3720] = 3702, + [3721] = 3721, + [3722] = 3722, + [3723] = 3703, [3724] = 3724, [3725] = 3725, - [3726] = 3706, - [3727] = 3727, - [3728] = 3728, - [3729] = 3687, - [3730] = 3709, - [3731] = 1531, - [3732] = 3703, - [3733] = 3687, - [3734] = 1560, - [3735] = 1541, - [3736] = 1538, - [3737] = 3737, + [3726] = 3726, + [3727] = 3690, + [3728] = 3698, + [3729] = 3693, + [3730] = 3690, + [3731] = 3731, + [3732] = 3698, + [3733] = 3733, + [3734] = 3734, + [3735] = 3735, + [3736] = 3693, + [3737] = 3689, [3738] = 3738, - [3739] = 3695, + [3739] = 3696, [3740] = 3740, - [3741] = 3709, + [3741] = 3741, [3742] = 3742, - [3743] = 3695, - [3744] = 3687, - [3745] = 3709, - [3746] = 3695, - [3747] = 3690, - [3748] = 3688, + [3743] = 3743, + [3744] = 3744, + [3745] = 3693, + [3746] = 3690, + [3747] = 3747, + [3748] = 3698, [3749] = 3749, - [3750] = 3750, - [3751] = 1529, - [3752] = 3752, + [3750] = 3689, + [3751] = 3751, + [3752] = 3703, [3753] = 3753, - [3754] = 3687, - [3755] = 3706, - [3756] = 3706, - [3757] = 3757, - [3758] = 3709, - [3759] = 3759, - [3760] = 3690, - [3761] = 3688, - [3762] = 3690, - [3763] = 3688, - [3764] = 3690, - [3765] = 1523, - [3766] = 1522, - [3767] = 1519, - [3768] = 1565, - [3769] = 3703, - [3770] = 3703, + [3754] = 3754, + [3755] = 3755, + [3756] = 3702, + [3757] = 3693, + [3758] = 3689, + [3759] = 1544, + [3760] = 1530, + [3761] = 1512, + [3762] = 1526, + [3763] = 1500, + [3764] = 1503, + [3765] = 1504, + [3766] = 3702, + [3767] = 3703, + [3768] = 1506, + [3769] = 1520, + [3770] = 1523, [3771] = 3771, - [3772] = 3706, - [3773] = 3703, - [3774] = 3774, - [3775] = 3688, - [3776] = 3776, - [3777] = 3703, - [3778] = 3687, - [3779] = 3706, - [3780] = 3780, - [3781] = 3703, - [3782] = 3782, - [3783] = 3783, - [3784] = 3695, - [3785] = 3706, - [3786] = 3706, + [3772] = 3696, + [3773] = 1535, + [3774] = 1553, + [3775] = 3689, + [3776] = 3690, + [3777] = 3689, + [3778] = 1555, + [3779] = 3779, + [3780] = 1561, + [3781] = 3696, + [3782] = 1558, + [3783] = 3696, + [3784] = 1572, + [3785] = 3690, + [3786] = 1563, [3787] = 3787, - [3788] = 3709, + [3788] = 3706, [3789] = 3709, [3790] = 3703, - [3791] = 3688, - [3792] = 3690, - [3793] = 3793, - [3794] = 3695, + [3791] = 3696, + [3792] = 3703, + [3793] = 3738, + [3794] = 3794, [3795] = 3795, - [3796] = 1557, - [3797] = 3797, - [3798] = 3687, - [3799] = 3799, - [3800] = 3800, - [3801] = 3688, - [3802] = 3690, - [3803] = 3803, - [3804] = 3804, - [3805] = 3706, - [3806] = 3806, - [3807] = 3709, - [3808] = 3709, - [3809] = 1493, - [3810] = 3690, - [3811] = 3703, + [3796] = 3702, + [3797] = 1552, + [3798] = 3698, + [3799] = 3696, + [3800] = 3698, + [3801] = 3801, + [3802] = 3696, + [3803] = 3702, + [3804] = 3690, + [3805] = 3703, + [3806] = 3702, + [3807] = 3693, + [3808] = 3689, + [3809] = 3702, + [3810] = 3703, + [3811] = 3689, [3812] = 3812, - [3813] = 3813, - [3814] = 3709, - [3815] = 3815, - [3816] = 3816, - [3817] = 3706, - [3818] = 3818, - [3819] = 3688, - [3820] = 3820, - [3821] = 3709, - [3822] = 3822, - [3823] = 3823, - [3824] = 3824, - [3825] = 3825, - [3826] = 3826, - [3827] = 3827, - [3828] = 3774, - [3829] = 3703, - [3830] = 3709, - [3831] = 3690, - [3832] = 3706, - [3833] = 3709, - [3834] = 3688, - [3835] = 3835, - [3836] = 3687, - [3837] = 3695, - [3838] = 3838, - [3839] = 3706, - [3840] = 3840, - [3841] = 3706, - [3842] = 3771, - [3843] = 3690, - [3844] = 3844, - [3845] = 3703, - [3846] = 3688, - [3847] = 3688, - [3848] = 3690, - [3849] = 3849, - [3850] = 3687, - [3851] = 3709, - [3852] = 3776, - [3853] = 3853, + [3813] = 3698, + [3814] = 3690, + [3815] = 3689, + [3816] = 3703, + [3817] = 3702, + [3818] = 3693, + [3819] = 3690, + [3820] = 3696, + [3821] = 3689, + [3822] = 3698, + [3823] = 3689, + [3824] = 3702, + [3825] = 3689, + [3826] = 3693, + [3827] = 3703, + [3828] = 3828, + [3829] = 3693, + [3830] = 3690, + [3831] = 3689, + [3832] = 3832, + [3833] = 3703, + [3834] = 3702, + [3835] = 3698, + [3836] = 3698, + [3837] = 3702, + [3838] = 3703, + [3839] = 3839, + [3840] = 3696, + [3841] = 3689, + [3842] = 3842, + [3843] = 3843, + [3844] = 3690, + [3845] = 3845, + [3846] = 3846, + [3847] = 3847, + [3848] = 3848, + [3849] = 3696, + [3850] = 3702, + [3851] = 3703, + [3852] = 3852, + [3853] = 3696, [3854] = 3854, - [3855] = 3855, + [3855] = 3690, [3856] = 3856, - [3857] = 3857, + [3857] = 3689, [3858] = 3858, - [3859] = 3856, - [3860] = 3854, + [3859] = 3859, + [3860] = 3860, [3861] = 3861, [3862] = 3862, - [3863] = 3856, - [3864] = 3864, - [3865] = 3864, - [3866] = 3854, - [3867] = 874, - [3868] = 3854, - [3869] = 3864, - [3870] = 3864, + [3863] = 3863, + [3864] = 1430, + [3865] = 3865, + [3866] = 3859, + [3867] = 3867, + [3868] = 3868, + [3869] = 3869, + [3870] = 3870, [3871] = 3871, [3872] = 3872, - [3873] = 3861, + [3873] = 3873, [3874] = 3874, [3875] = 3875, - [3876] = 3861, - [3877] = 3877, - [3878] = 1422, - [3879] = 3879, - [3880] = 3880, - [3881] = 3881, + [3876] = 3874, + [3877] = 3859, + [3878] = 3878, + [3879] = 3860, + [3880] = 3873, + [3881] = 3862, [3882] = 3882, - [3883] = 3883, - [3884] = 3884, + [3883] = 3863, + [3884] = 3860, [3885] = 3885, - [3886] = 3886, - [3887] = 3871, - [3888] = 3888, - [3889] = 3874, - [3890] = 3862, - [3891] = 3875, - [3892] = 3892, - [3893] = 3888, - [3894] = 1423, - [3895] = 3858, - [3896] = 3881, - [3897] = 3864, - [3898] = 3881, - [3899] = 3886, - [3900] = 3883, - [3901] = 3875, - [3902] = 3864, - [3903] = 3903, - [3904] = 3888, - [3905] = 3874, - [3906] = 3871, - [3907] = 3907, - [3908] = 3883, - [3909] = 3888, - [3910] = 3864, - [3911] = 3858, - [3912] = 3862, - [3913] = 3913, - [3914] = 3856, - [3915] = 3854, - [3916] = 3861, - [3917] = 3917, - [3918] = 3861, - [3919] = 3919, - [3920] = 3854, - [3921] = 3888, - [3922] = 3856, + [3886] = 3860, + [3887] = 3887, + [3888] = 3861, + [3889] = 3875, + [3890] = 3861, + [3891] = 3860, + [3892] = 3862, + [3893] = 3893, + [3894] = 3887, + [3895] = 3861, + [3896] = 3896, + [3897] = 3897, + [3898] = 3871, + [3899] = 3870, + [3900] = 3900, + [3901] = 3901, + [3902] = 3902, + [3903] = 3862, + [3904] = 3873, + [3905] = 1421, + [3906] = 3874, + [3907] = 3882, + [3908] = 3870, + [3909] = 3871, + [3910] = 3875, + [3911] = 3911, + [3912] = 3912, + [3913] = 3902, + [3914] = 3873, + [3915] = 3915, + [3916] = 1430, + [3917] = 1427, + [3918] = 3902, + [3919] = 3860, + [3920] = 3859, + [3921] = 3882, + [3922] = 3863, [3923] = 3923, - [3924] = 3862, - [3925] = 3883, - [3926] = 3886, - [3927] = 3871, - [3928] = 3858, - [3929] = 3862, - [3930] = 3888, - [3931] = 3858, - [3932] = 1417, + [3924] = 3924, + [3925] = 3925, + [3926] = 3887, + [3927] = 1418, + [3928] = 3928, + [3929] = 3929, + [3930] = 3874, + [3931] = 3931, + [3932] = 3932, [3933] = 3874, - [3934] = 3875, - [3935] = 1423, - [3936] = 3936, - [3937] = 3937, - [3938] = 3938, - [3939] = 1422, - [3940] = 3856, - [3941] = 3854, - [3942] = 3861, + [3934] = 3873, + [3935] = 3935, + [3936] = 3353, + [3937] = 3902, + [3938] = 3875, + [3939] = 3874, + [3940] = 3873, + [3941] = 3875, + [3942] = 3942, [3943] = 3943, - [3944] = 3881, - [3945] = 3883, + [3944] = 3860, + [3945] = 3861, [3946] = 3862, - [3947] = 3864, - [3948] = 3858, - [3949] = 3886, + [3947] = 3947, + [3948] = 1427, + [3949] = 3871, [3950] = 3950, - [3951] = 3951, - [3952] = 3888, - [3953] = 3953, - [3954] = 3954, + [3951] = 3356, + [3952] = 1421, + [3953] = 3902, + [3954] = 3862, [3955] = 3955, - [3956] = 3888, - [3957] = 3881, - [3958] = 3886, - [3959] = 3871, - [3960] = 3886, - [3961] = 3883, - [3962] = 3864, - [3963] = 3883, - [3964] = 3881, - [3965] = 3874, - [3966] = 3875, - [3967] = 3967, - [3968] = 3968, - [3969] = 1424, - [3970] = 3864, - [3971] = 3971, - [3972] = 1423, + [3956] = 3870, + [3957] = 1430, + [3958] = 3863, + [3959] = 3959, + [3960] = 3887, + [3961] = 3882, + [3962] = 3860, + [3963] = 3859, + [3964] = 3902, + [3965] = 1427, + [3966] = 3861, + [3967] = 3870, + [3968] = 3859, + [3969] = 3882, + [3970] = 3863, + [3971] = 3887, + [3972] = 3862, [3973] = 3973, - [3974] = 3871, - [3975] = 3875, - [3976] = 3881, - [3977] = 3874, - [3978] = 3886, - [3979] = 3886, - [3980] = 3883, - [3981] = 3871, - [3982] = 3858, - [3983] = 3862, + [3974] = 3902, + [3975] = 3870, + [3976] = 3871, + [3977] = 3871, + [3978] = 3978, + [3979] = 3979, + [3980] = 3875, + [3981] = 3981, + [3982] = 3875, + [3983] = 3873, [3984] = 3984, [3985] = 3985, - [3986] = 3986, - [3987] = 3856, - [3988] = 3875, - [3989] = 3874, - [3990] = 3871, - [3991] = 3991, - [3992] = 3861, - [3993] = 3993, - [3994] = 3861, - [3995] = 3888, - [3996] = 3854, - [3997] = 3871, + [3986] = 3871, + [3987] = 3870, + [3988] = 3988, + [3989] = 3859, + [3990] = 3862, + [3991] = 3861, + [3992] = 3862, + [3993] = 3861, + [3994] = 3863, + [3995] = 3860, + [3996] = 3996, + [3997] = 3861, [3998] = 3998, - [3999] = 3856, - [4000] = 3861, - [4001] = 3886, - [4002] = 3883, - [4003] = 3862, - [4004] = 3854, - [4005] = 3874, - [4006] = 3875, - [4007] = 3856, - [4008] = 1422, - [4009] = 3679, - [4010] = 3677, - [4011] = 3858, - [4012] = 3881, - [4013] = 4013, - [4014] = 3862, - [4015] = 3675, - [4016] = 3858, - [4017] = 3684, - [4018] = 3864, - [4019] = 4019, - [4020] = 4020, - [4021] = 3881, - [4022] = 3875, - [4023] = 3874, - [4024] = 3888, - [4025] = 3858, - [4026] = 3871, - [4027] = 4027, - [4028] = 3886, - [4029] = 3861, - [4030] = 3858, - [4031] = 3862, - [4032] = 3854, + [3999] = 3902, + [4000] = 3882, + [4001] = 3871, + [4002] = 3870, + [4003] = 1421, + [4004] = 3902, + [4005] = 3870, + [4006] = 3871, + [4007] = 3863, + [4008] = 3875, + [4009] = 3874, + [4010] = 3873, + [4011] = 3874, + [4012] = 3902, + [4013] = 3676, + [4014] = 3671, + [4015] = 3882, + [4016] = 3859, + [4017] = 3875, + [4018] = 3887, + [4019] = 3670, + [4020] = 3887, + [4021] = 3669, + [4022] = 3874, + [4023] = 3875, + [4024] = 3873, + [4025] = 3875, + [4026] = 3863, + [4027] = 3882, + [4028] = 3882, + [4029] = 3902, + [4030] = 3862, + [4031] = 3859, + [4032] = 2170, [4033] = 3862, - [4034] = 3856, - [4035] = 3883, - [4036] = 4036, - [4037] = 4037, + [4034] = 3874, + [4035] = 3873, + [4036] = 3861, + [4037] = 3860, [4038] = 3874, - [4039] = 3881, - [4040] = 3883, - [4041] = 3886, - [4042] = 3856, - [4043] = 3854, - [4044] = 3861, - [4045] = 4045, - [4046] = 3864, - [4047] = 3875, - [4048] = 3856, - [4049] = 3854, - [4050] = 3888, - [4051] = 3874, - [4052] = 3883, - [4053] = 3861, - [4054] = 3886, - [4055] = 3858, - [4056] = 3871, - [4057] = 3888, - [4058] = 3862, - [4059] = 3875, - [4060] = 1417, - [4061] = 3871, - [4062] = 3861, - [4063] = 3864, - [4064] = 3854, - [4065] = 1417, + [4039] = 3863, + [4040] = 3882, + [4041] = 3870, + [4042] = 3871, + [4043] = 3873, + [4044] = 3887, + [4045] = 1418, + [4046] = 3860, + [4047] = 3861, + [4048] = 3862, + [4049] = 3859, + [4050] = 3875, + [4051] = 3870, + [4052] = 3887, + [4053] = 3863, + [4054] = 3882, + [4055] = 3863, + [4056] = 3882, + [4057] = 3887, + [4058] = 3860, + [4059] = 3861, + [4060] = 3871, + [4061] = 3859, + [4062] = 3862, + [4063] = 3870, + [4064] = 3887, + [4065] = 3859, [4066] = 4066, - [4067] = 3874, - [4068] = 3875, - [4069] = 3856, - [4070] = 3871, - [4071] = 3881, - [4072] = 3874, - [4073] = 3875, - [4074] = 3881, - [4075] = 3856, - [4076] = 3854, - [4077] = 3351, - [4078] = 3881, - [4079] = 4079, - [4080] = 3861, - [4081] = 4081, + [4067] = 4067, + [4068] = 3871, + [4069] = 3874, + [4070] = 3875, + [4071] = 3882, + [4072] = 3863, + [4073] = 4073, + [4074] = 3862, + [4075] = 3863, + [4076] = 4076, + [4077] = 3861, + [4078] = 3860, + [4079] = 3873, + [4080] = 4080, + [4081] = 3861, [4082] = 3875, - [4083] = 3874, - [4084] = 4084, - [4085] = 3881, - [4086] = 3355, - [4087] = 3888, - [4088] = 3871, - [4089] = 2162, - [4090] = 4090, - [4091] = 1424, - [4092] = 3864, + [4083] = 3902, + [4084] = 3859, + [4085] = 3859, + [4086] = 3863, + [4087] = 4087, + [4088] = 3902, + [4089] = 4089, + [4090] = 3882, + [4091] = 910, + [4092] = 3887, [4093] = 4093, - [4094] = 4094, - [4095] = 3679, - [4096] = 4096, - [4097] = 2258, + [4094] = 3860, + [4095] = 3887, + [4096] = 3887, + [4097] = 4097, [4098] = 4098, [4099] = 4099, - [4100] = 4100, + [4100] = 3670, [4101] = 4101, [4102] = 4102, [4103] = 4103, [4104] = 4104, [4105] = 4105, [4106] = 4106, - [4107] = 4107, + [4107] = 4102, [4108] = 4108, - [4109] = 4109, + [4109] = 4097, [4110] = 4110, - [4111] = 4111, - [4112] = 4112, - [4113] = 4113, - [4114] = 4101, - [4115] = 4096, - [4116] = 4096, - [4117] = 4117, - [4118] = 4096, - [4119] = 4103, - [4120] = 3677, - [4121] = 4121, - [4122] = 4113, - [4123] = 4123, - [4124] = 4108, - [4125] = 4125, - [4126] = 4099, - [4127] = 4112, - [4128] = 4094, - [4129] = 4129, - [4130] = 4107, - [4131] = 4131, - [4132] = 1557, - [4133] = 4121, - [4134] = 4101, - [4135] = 4111, - [4136] = 4099, - [4137] = 4103, - [4138] = 4138, - [4139] = 4109, - [4140] = 4104, - [4141] = 4100, - [4142] = 4113, - [4143] = 4107, - [4144] = 4144, - [4145] = 4106, - [4146] = 4104, - [4147] = 4100, - [4148] = 3684, - [4149] = 4113, - [4150] = 4150, - [4151] = 4151, - [4152] = 3675, + [4111] = 3671, + [4112] = 4104, + [4113] = 4105, + [4114] = 4114, + [4115] = 4115, + [4116] = 4116, + [4117] = 4108, + [4118] = 4105, + [4119] = 4119, + [4120] = 4110, + [4121] = 4104, + [4122] = 4122, + [4123] = 3669, + [4124] = 4124, + [4125] = 4114, + [4126] = 4126, + [4127] = 4126, + [4128] = 4110, + [4129] = 4106, + [4130] = 4108, + [4131] = 4124, + [4132] = 4119, + [4133] = 4115, + [4134] = 4134, + [4135] = 4135, + [4136] = 4108, + [4137] = 3676, + [4138] = 3671, + [4139] = 4139, + [4140] = 4126, + [4141] = 3676, + [4142] = 4126, + [4143] = 3671, + [4144] = 4110, + [4145] = 4105, + [4146] = 4097, + [4147] = 4106, + [4148] = 4148, + [4149] = 4106, + [4150] = 4124, + [4151] = 4097, + [4152] = 4119, [4153] = 4153, - [4154] = 4104, - [4155] = 3677, - [4156] = 3675, - [4157] = 3679, - [4158] = 4123, - [4159] = 4104, - [4160] = 4160, - [4161] = 4106, - [4162] = 4162, - [4163] = 4109, - [4164] = 4113, - [4165] = 4100, - [4166] = 4123, - [4167] = 4108, - [4168] = 4108, - [4169] = 3679, - [4170] = 3677, - [4171] = 4104, - [4172] = 3675, - [4173] = 4111, - [4174] = 3684, - [4175] = 4099, - [4176] = 4111, - [4177] = 4106, - [4178] = 4109, - [4179] = 4109, - [4180] = 4111, - [4181] = 4121, - [4182] = 4182, + [4154] = 1563, + [4155] = 1572, + [4156] = 4110, + [4157] = 4119, + [4158] = 3669, + [4159] = 3670, + [4160] = 4116, + [4161] = 4105, + [4162] = 4097, + [4163] = 4104, + [4164] = 3669, + [4165] = 4106, + [4166] = 2238, + [4167] = 4153, + [4168] = 4105, + [4169] = 4114, + [4170] = 1544, + [4171] = 4153, + [4172] = 4115, + [4173] = 4116, + [4174] = 4115, + [4175] = 4116, + [4176] = 4114, + [4177] = 3669, + [4178] = 3671, + [4179] = 4102, + [4180] = 4116, + [4181] = 4181, + [4182] = 4115, [4183] = 4183, - [4184] = 4184, - [4185] = 4112, - [4186] = 4106, - [4187] = 4187, - [4188] = 3684, - [4189] = 4104, - [4190] = 4094, - [4191] = 4108, - [4192] = 4123, - [4193] = 4106, - [4194] = 4096, - [4195] = 4113, - [4196] = 4196, - [4197] = 4197, - [4198] = 4108, - [4199] = 4123, - [4200] = 4113, - [4201] = 4100, - [4202] = 4101, - [4203] = 4107, - [4204] = 4109, - [4205] = 4205, - [4206] = 4111, - [4207] = 4101, - [4208] = 4103, - [4209] = 4111, - [4210] = 4107, - [4211] = 4103, - [4212] = 4107, - [4213] = 4213, - [4214] = 4101, - [4215] = 4099, - [4216] = 4109, - [4217] = 4121, + [4184] = 4103, + [4185] = 4185, + [4186] = 4186, + [4187] = 4114, + [4188] = 4134, + [4189] = 4189, + [4190] = 3670, + [4191] = 4134, + [4192] = 4115, + [4193] = 4103, + [4194] = 4102, + [4195] = 4104, + [4196] = 4104, + [4197] = 3676, + [4198] = 4104, + [4199] = 4102, + [4200] = 4105, + [4201] = 4201, + [4202] = 4106, + [4203] = 4153, + [4204] = 4108, + [4205] = 3670, + [4206] = 4206, + [4207] = 4102, + [4208] = 4105, + [4209] = 4103, + [4210] = 4106, + [4211] = 4114, + [4212] = 4119, + [4213] = 4124, + [4214] = 4214, + [4215] = 3669, + [4216] = 4216, + [4217] = 4108, [4218] = 4218, - [4219] = 4103, - [4220] = 4100, - [4221] = 4113, - [4222] = 4123, - [4223] = 4096, - [4224] = 4106, - [4225] = 3684, - [4226] = 4107, - [4227] = 4112, - [4228] = 4205, - [4229] = 4111, - [4230] = 4230, - [4231] = 4197, - [4232] = 4109, - [4233] = 3675, - [4234] = 4187, - [4235] = 4106, - [4236] = 4104, - [4237] = 3684, - [4238] = 3677, - [4239] = 3675, - [4240] = 4240, - [4241] = 4104, - [4242] = 3677, - [4243] = 3679, - [4244] = 3679, - [4245] = 4096, - [4246] = 4096, - [4247] = 4247, - [4248] = 4100, - [4249] = 4100, - [4250] = 4250, - [4251] = 4251, - [4252] = 4112, + [4219] = 4119, + [4220] = 4103, + [4221] = 4189, + [4222] = 3670, + [4223] = 4104, + [4224] = 4153, + [4225] = 4134, + [4226] = 4186, + [4227] = 4110, + [4228] = 4108, + [4229] = 3671, + [4230] = 4102, + [4231] = 4185, + [4232] = 3676, + [4233] = 4233, + [4234] = 4126, + [4235] = 4235, + [4236] = 4110, + [4237] = 4237, + [4238] = 3676, + [4239] = 4239, + [4240] = 4110, + [4241] = 4126, + [4242] = 4126, + [4243] = 4108, + [4244] = 3676, + [4245] = 4108, + [4246] = 4246, + [4247] = 3676, + [4248] = 3671, + [4249] = 4249, + [4250] = 4134, + [4251] = 3671, + [4252] = 4110, [4253] = 4253, - [4254] = 4099, - [4255] = 4121, - [4256] = 4099, - [4257] = 4094, + [4254] = 4153, + [4255] = 4255, + [4256] = 4153, + [4257] = 4104, [4258] = 4258, - [4259] = 4259, - [4260] = 4094, - [4261] = 4121, + [4259] = 4124, + [4260] = 4102, + [4261] = 4119, [4262] = 4262, - [4263] = 4103, - [4264] = 4112, - [4265] = 4112, - [4266] = 4266, - [4267] = 4267, - [4268] = 4258, - [4269] = 4100, - [4270] = 3679, - [4271] = 3677, - [4272] = 4108, - [4273] = 4101, - [4274] = 4104, - [4275] = 3675, - [4276] = 3684, - [4277] = 4106, - [4278] = 4109, - [4279] = 4096, - [4280] = 4121, - [4281] = 4281, - [4282] = 4113, - [4283] = 4123, - [4284] = 4284, - [4285] = 4285, - [4286] = 4111, - [4287] = 4108, - [4288] = 4099, - [4289] = 4108, - [4290] = 4094, - [4291] = 4123, - [4292] = 4267, - [4293] = 4113, - [4294] = 4108, - [4295] = 4123, - [4296] = 4113, - [4297] = 4100, - [4298] = 4094, - [4299] = 4111, - [4300] = 4300, - [4301] = 4103, - [4302] = 4302, - [4303] = 4109, - [4304] = 4094, - [4305] = 4107, - [4306] = 4101, - [4307] = 4106, - [4308] = 3679, - [4309] = 3684, - [4310] = 4113, - [4311] = 4311, - [4312] = 3677, - [4313] = 4123, - [4314] = 4108, - [4315] = 3675, - [4316] = 4104, - [4317] = 4101, - [4318] = 4103, - [4319] = 4111, - [4320] = 4109, - [4321] = 4106, - [4322] = 3684, - [4323] = 3675, - [4324] = 4104, - [4325] = 4104, - [4326] = 4326, - [4327] = 3677, - [4328] = 4328, - [4329] = 3679, - [4330] = 4107, - [4331] = 4331, - [4332] = 4332, - [4333] = 4100, + [4263] = 4124, + [4264] = 4134, + [4265] = 4103, + [4266] = 4103, + [4267] = 4102, + [4268] = 4106, + [4269] = 4097, + [4270] = 4099, + [4271] = 4271, + [4272] = 4134, + [4273] = 4104, + [4274] = 3670, + [4275] = 4105, + [4276] = 3670, + [4277] = 4124, + [4278] = 4108, + [4279] = 4105, + [4280] = 4097, + [4281] = 4106, + [4282] = 4282, + [4283] = 4119, + [4284] = 4119, + [4285] = 4101, + [4286] = 4126, + [4287] = 4114, + [4288] = 3669, + [4289] = 4153, + [4290] = 4115, + [4291] = 4116, + [4292] = 4292, + [4293] = 4293, + [4294] = 4124, + [4295] = 4119, + [4296] = 4116, + [4297] = 4297, + [4298] = 4114, + [4299] = 4110, + [4300] = 4105, + [4301] = 4301, + [4302] = 4097, + [4303] = 4110, + [4304] = 4102, + [4305] = 4124, + [4306] = 4153, + [4307] = 3669, + [4308] = 4308, + [4309] = 4115, + [4310] = 4116, + [4311] = 4126, + [4312] = 4116, + [4313] = 4115, + [4314] = 4314, + [4315] = 4315, + [4316] = 4316, + [4317] = 4114, + [4318] = 4318, + [4319] = 4134, + [4320] = 4320, + [4321] = 4321, + [4322] = 4116, + [4323] = 4323, + [4324] = 4116, + [4325] = 4325, + [4326] = 4106, + [4327] = 4115, + [4328] = 3669, + [4329] = 4103, + [4330] = 4115, + [4331] = 4103, + [4332] = 4110, + [4333] = 4333, [4334] = 4334, - [4335] = 3675, + [4335] = 4335, [4336] = 4336, [4337] = 4337, - [4338] = 3677, - [4339] = 3679, - [4340] = 3684, - [4341] = 4099, - [4342] = 4099, + [4338] = 3670, + [4339] = 4102, + [4340] = 4114, + [4341] = 4104, + [4342] = 4342, [4343] = 4343, - [4344] = 4121, - [4345] = 4345, - [4346] = 4106, - [4347] = 4112, - [4348] = 4094, - [4349] = 4121, - [4350] = 4096, - [4351] = 4351, + [4344] = 4344, + [4345] = 3671, + [4346] = 3669, + [4347] = 4347, + [4348] = 3676, + [4349] = 4134, + [4350] = 4126, + [4351] = 3670, [4352] = 4352, - [4353] = 4100, - [4354] = 4103, - [4355] = 4355, - [4356] = 4109, - [4357] = 4111, - [4358] = 4099, - [4359] = 4094, - [4360] = 4112, - [4361] = 4121, - [4362] = 4362, - [4363] = 4107, - [4364] = 4101, - [4365] = 4096, - [4366] = 4099, - [4367] = 4094, - [4368] = 4099, - [4369] = 4121, - [4370] = 4370, - [4371] = 4371, - [4372] = 4121, - [4373] = 4094, - [4374] = 4374, - [4375] = 4112, - [4376] = 4112, - [4377] = 4103, + [4353] = 4102, + [4354] = 4108, + [4355] = 4183, + [4356] = 4153, + [4357] = 4104, + [4358] = 4124, + [4359] = 4103, + [4360] = 4134, + [4361] = 4097, + [4362] = 3671, + [4363] = 4363, + [4364] = 4102, + [4365] = 4119, + [4366] = 4103, + [4367] = 4103, + [4368] = 4108, + [4369] = 4104, + [4370] = 3676, + [4371] = 4134, + [4372] = 4372, + [4373] = 4373, + [4374] = 4115, + [4375] = 4097, + [4376] = 4376, + [4377] = 4116, [4378] = 4105, - [4379] = 4107, - [4380] = 4101, - [4381] = 4094, - [4382] = 4382, - [4383] = 1522, - [4384] = 4096, - [4385] = 1519, - [4386] = 4112, - [4387] = 4103, - [4388] = 4113, - [4389] = 4123, - [4390] = 4108, - [4391] = 4391, - [4392] = 4107, - [4393] = 4101, - [4394] = 4111, - [4395] = 4395, - [4396] = 4109, - [4397] = 4113, - [4398] = 4106, - [4399] = 4123, - [4400] = 3684, - [4401] = 4401, - [4402] = 3675, - [4403] = 4104, - [4404] = 3677, - [4405] = 3679, - [4406] = 4406, - [4407] = 4100, + [4379] = 4379, + [4380] = 4380, + [4381] = 4110, + [4382] = 4114, + [4383] = 4105, + [4384] = 4097, + [4385] = 4153, + [4386] = 4106, + [4387] = 4119, + [4388] = 4124, + [4389] = 4134, + [4390] = 4116, + [4391] = 4115, + [4392] = 4392, + [4393] = 4114, + [4394] = 3669, + [4395] = 4108, + [4396] = 4126, + [4397] = 4106, + [4398] = 4153, + [4399] = 3670, + [4400] = 4400, + [4401] = 4097, + [4402] = 4104, + [4403] = 3671, + [4404] = 4126, + [4405] = 3676, + [4406] = 4105, + [4407] = 4114, [4408] = 4408, [4409] = 4409, [4410] = 4410, - [4411] = 4411, + [4411] = 4124, [4412] = 4412, [4413] = 4413, [4414] = 4414, [4415] = 4415, - [4416] = 4409, + [4416] = 4416, [4417] = 4417, [4418] = 4418, [4419] = 4419, - [4420] = 4414, - [4421] = 4415, - [4422] = 4417, - [4423] = 4409, - [4424] = 4424, - [4425] = 4425, - [4426] = 4414, - [4427] = 4415, - [4428] = 4417, - [4429] = 4429, - [4430] = 4430, - [4431] = 4431, - [4432] = 4432, - [4433] = 4433, - [4434] = 4434, + [4420] = 4420, + [4421] = 4418, + [4422] = 4422, + [4423] = 4423, + [4424] = 4422, + [4425] = 4416, + [4426] = 4420, + [4427] = 4416, + [4428] = 4428, + [4429] = 4420, + [4430] = 4420, + [4431] = 4418, + [4432] = 4422, + [4433] = 4418, + [4434] = 4422, [4435] = 4435, - [4436] = 4436, + [4436] = 4412, [4437] = 4437, - [4438] = 4438, + [4438] = 4416, [4439] = 4439, [4440] = 4440, [4441] = 4441, - [4442] = 4408, + [4442] = 4442, [4443] = 4443, - [4444] = 4409, - [4445] = 4417, - [4446] = 4415, - [4447] = 4414, - [4448] = 4415, - [4449] = 4417, - [4450] = 4414, - [4451] = 4451, - [4452] = 4452, - [4453] = 4408, - [4454] = 4441, - [4455] = 4439, - [4456] = 4451, - [4457] = 4457, + [4444] = 4444, + [4445] = 4445, + [4446] = 4446, + [4447] = 4447, + [4448] = 4416, + [4449] = 4449, + [4450] = 4450, + [4451] = 4420, + [4452] = 4418, + [4453] = 4422, + [4454] = 4454, + [4455] = 4422, + [4456] = 4456, + [4457] = 4418, [4458] = 4458, - [4459] = 4459, - [4460] = 4409, + [4459] = 4420, + [4460] = 4460, [4461] = 4461, - [4462] = 4437, - [4463] = 4436, - [4464] = 4411, - [4465] = 4409, - [4466] = 4435, - [4467] = 4433, - [4468] = 4414, - [4469] = 4415, - [4470] = 4417, - [4471] = 4471, - [4472] = 4413, - [4473] = 4412, - [4474] = 4434, + [4462] = 4416, + [4463] = 4463, + [4464] = 4464, + [4465] = 4465, + [4466] = 4466, + [4467] = 4467, + [4468] = 4468, + [4469] = 4416, + [4470] = 4470, + [4471] = 4467, + [4472] = 4420, + [4473] = 4418, + [4474] = 4422, [4475] = 4475, [4476] = 4476, [4477] = 4477, - [4478] = 4478, - [4479] = 4436, + [4478] = 4467, + [4479] = 4479, [4480] = 4480, - [4481] = 4413, - [4482] = 4411, - [4483] = 4483, - [4484] = 4425, - [4485] = 4430, - [4486] = 4409, - [4487] = 4411, - [4488] = 4413, - [4489] = 4414, - [4490] = 4415, - [4491] = 4417, + [4481] = 4481, + [4482] = 4467, + [4483] = 4467, + [4484] = 4484, + [4485] = 4485, + [4486] = 4486, + [4487] = 4487, + [4488] = 4488, + [4489] = 4467, + [4490] = 4416, + [4491] = 4487, [4492] = 4492, - [4493] = 4412, - [4494] = 4494, - [4495] = 4412, + [4493] = 4420, + [4494] = 4418, + [4495] = 4422, [4496] = 4496, - [4497] = 4433, - [4498] = 4435, - [4499] = 4433, - [4500] = 4430, - [4501] = 4436, - [4502] = 4432, - [4503] = 4437, - [4504] = 4417, - [4505] = 4415, - [4506] = 4439, - [4507] = 4409, - [4508] = 4414, - [4509] = 4441, - [4510] = 4414, - [4511] = 4415, - [4512] = 4417, - [4513] = 4408, - [4514] = 4425, - [4515] = 4409, - [4516] = 4451, - [4517] = 4451, - [4518] = 4518, - [4519] = 4519, - [4520] = 4434, - [4521] = 4521, + [4497] = 4492, + [4498] = 4487, + [4499] = 2292, + [4500] = 4467, + [4501] = 2302, + [4502] = 4502, + [4503] = 4449, + [4504] = 4435, + [4505] = 4412, + [4506] = 4506, + [4507] = 4417, + [4508] = 4450, + [4509] = 4484, + [4510] = 4492, + [4511] = 4416, + [4512] = 4512, + [4513] = 4513, + [4514] = 4420, + [4515] = 4418, + [4516] = 4422, + [4517] = 4517, + [4518] = 4487, + [4519] = 4467, + [4520] = 4520, + [4521] = 4449, [4522] = 4522, - [4523] = 4523, + [4523] = 4492, [4524] = 4524, - [4525] = 4434, - [4526] = 4451, - [4527] = 4436, - [4528] = 4409, - [4529] = 4425, - [4530] = 4408, - [4531] = 4414, - [4532] = 4415, - [4533] = 4417, + [4525] = 4435, + [4526] = 4512, + [4527] = 4527, + [4528] = 4417, + [4529] = 4450, + [4530] = 4484, + [4531] = 4502, + [4532] = 4416, + [4533] = 4449, [4534] = 4534, - [4535] = 4435, - [4536] = 4441, - [4537] = 4439, - [4538] = 4538, - [4539] = 4425, - [4540] = 4425, - [4541] = 4541, - [4542] = 4542, - [4543] = 4430, - [4544] = 4425, - [4545] = 4545, - [4546] = 4436, - [4547] = 4437, - [4548] = 4548, - [4549] = 4409, - [4550] = 4434, - [4551] = 4437, - [4552] = 4414, - [4553] = 4415, - [4554] = 4417, - [4555] = 4425, - [4556] = 4556, - [4557] = 4435, - [4558] = 4433, - [4559] = 4412, - [4560] = 4560, - [4561] = 4413, - [4562] = 4430, - [4563] = 4411, - [4564] = 4411, - [4565] = 4413, - [4566] = 4409, - [4567] = 4430, - [4568] = 4414, - [4569] = 4415, - [4570] = 4417, - [4571] = 4412, - [4572] = 4417, - [4573] = 4433, - [4574] = 4409, - [4575] = 4417, - [4576] = 4435, - [4577] = 4425, - [4578] = 4415, - [4579] = 4436, - [4580] = 4580, - [4581] = 4414, - [4582] = 4582, - [4583] = 4583, - [4584] = 4437, - [4585] = 4585, - [4586] = 4430, - [4587] = 4439, - [4588] = 4441, - [4589] = 4408, - [4590] = 4425, - [4591] = 4523, - [4592] = 4451, - [4593] = 4430, - [4594] = 4594, - [4595] = 4434, - [4596] = 4433, - [4597] = 4430, - [4598] = 4425, - [4599] = 4425, - [4600] = 4409, - [4601] = 4451, - [4602] = 4425, - [4603] = 4408, - [4604] = 4441, - [4605] = 4439, - [4606] = 4437, - [4607] = 4411, - [4608] = 4430, - [4609] = 4609, - [4610] = 4433, - [4611] = 4412, - [4612] = 4413, - [4613] = 4613, - [4614] = 4413, - [4615] = 4430, - [4616] = 4411, - [4617] = 4413, - [4618] = 4425, - [4619] = 4425, - [4620] = 4433, - [4621] = 2287, - [4622] = 4451, - [4623] = 4435, - [4624] = 4624, - [4625] = 4436, - [4626] = 4626, - [4627] = 4408, - [4628] = 4441, - [4629] = 4437, - [4630] = 4451, - [4631] = 4439, - [4632] = 4439, - [4633] = 4441, - [4634] = 4408, - [4635] = 4441, - [4636] = 4437, - [4637] = 4436, - [4638] = 4518, - [4639] = 4439, - [4640] = 4451, - [4641] = 4435, - [4642] = 4433, - [4643] = 4412, - [4644] = 4437, - [4645] = 4413, - [4646] = 4411, - [4647] = 4436, - [4648] = 4425, - [4649] = 4435, - [4650] = 4650, - [4651] = 4433, - [4652] = 4412, - [4653] = 4653, - [4654] = 4434, - [4655] = 4413, - [4656] = 4411, - [4657] = 4657, - [4658] = 4425, - [4659] = 4659, - [4660] = 4430, - [4661] = 4430, - [4662] = 4425, - [4663] = 4430, - [4664] = 4411, - [4665] = 4434, - [4666] = 4411, - [4667] = 4412, - [4668] = 4668, - [4669] = 4433, - [4670] = 2301, - [4671] = 4671, - [4672] = 4435, - [4673] = 4436, - [4674] = 4451, - [4675] = 4437, - [4676] = 4412, - [4677] = 4408, - [4678] = 4441, - [4679] = 4439, - [4680] = 4439, - [4681] = 4408, - [4682] = 4437, - [4683] = 4436, - [4684] = 4523, - [4685] = 4519, - [4686] = 4686, - [4687] = 4435, - [4688] = 4686, - [4689] = 4523, - [4690] = 4451, - [4691] = 4433, - [4692] = 4412, - [4693] = 4523, - [4694] = 4413, - [4695] = 4411, + [4535] = 4420, + [4536] = 4418, + [4537] = 4422, + [4538] = 4512, + [4539] = 4467, + [4540] = 4513, + [4541] = 4517, + [4542] = 4487, + [4543] = 4487, + [4544] = 4467, + [4545] = 4520, + [4546] = 4517, + [4547] = 4513, + [4548] = 4445, + [4549] = 4512, + [4550] = 4492, + [4551] = 4449, + [4552] = 4502, + [4553] = 4416, + [4554] = 4513, + [4555] = 4517, + [4556] = 4420, + [4557] = 4418, + [4558] = 4422, + [4559] = 4435, + [4560] = 4412, + [4561] = 4417, + [4562] = 4450, + [4563] = 4484, + [4564] = 4564, + [4565] = 4450, + [4566] = 4502, + [4567] = 4492, + [4568] = 4512, + [4569] = 4417, + [4570] = 4416, + [4571] = 4513, + [4572] = 4420, + [4573] = 4418, + [4574] = 4422, + [4575] = 4517, + [4576] = 4412, + [4577] = 4577, + [4578] = 4416, + [4579] = 4422, + [4580] = 4435, + [4581] = 4581, + [4582] = 4492, + [4583] = 4487, + [4584] = 4520, + [4585] = 4467, + [4586] = 4520, + [4587] = 4587, + [4588] = 4467, + [4589] = 4484, + [4590] = 4449, + [4591] = 4487, + [4592] = 4435, + [4593] = 4412, + [4594] = 4417, + [4595] = 4506, + [4596] = 4450, + [4597] = 4484, + [4598] = 4502, + [4599] = 4492, + [4600] = 4512, + [4601] = 4513, + [4602] = 4517, + [4603] = 4517, + [4604] = 4513, + [4605] = 4605, + [4606] = 4606, + [4607] = 4607, + [4608] = 4487, + [4609] = 4512, + [4610] = 4610, + [4611] = 4611, + [4612] = 4612, + [4613] = 4450, + [4614] = 4614, + [4615] = 4502, + [4616] = 4484, + [4617] = 4492, + [4618] = 4467, + [4619] = 4520, + [4620] = 4417, + [4621] = 4412, + [4622] = 4435, + [4623] = 4449, + [4624] = 4449, + [4625] = 4520, + [4626] = 4435, + [4627] = 4412, + [4628] = 4417, + [4629] = 4450, + [4630] = 4484, + [4631] = 4502, + [4632] = 4492, + [4633] = 4633, + [4634] = 4512, + [4635] = 4467, + [4636] = 4636, + [4637] = 4513, + [4638] = 4638, + [4639] = 4487, + [4640] = 4517, + [4641] = 4422, + [4642] = 4487, + [4643] = 4418, + [4644] = 4420, + [4645] = 4487, + [4646] = 4646, + [4647] = 4467, + [4648] = 4520, + [4649] = 4517, + [4650] = 4513, + [4651] = 4512, + [4652] = 4484, + [4653] = 4502, + [4654] = 4449, + [4655] = 4416, + [4656] = 4484, + [4657] = 4450, + [4658] = 4435, + [4659] = 4412, + [4660] = 4660, + [4661] = 4417, + [4662] = 4662, + [4663] = 4450, + [4664] = 4484, + [4665] = 4502, + [4666] = 4492, + [4667] = 4667, + [4668] = 4417, + [4669] = 4412, + [4670] = 4512, + [4671] = 4435, + [4672] = 4513, + [4673] = 4517, + [4674] = 4449, + [4675] = 4463, + [4676] = 4487, + [4677] = 4520, + [4678] = 4467, + [4679] = 4467, + [4680] = 4467, + [4681] = 4520, + [4682] = 4487, + [4683] = 4449, + [4684] = 4435, + [4685] = 4412, + [4686] = 4417, + [4687] = 4450, + [4688] = 4506, + [4689] = 4467, + [4690] = 4502, + [4691] = 4492, + [4692] = 4512, + [4693] = 4506, + [4694] = 4517, + [4695] = 4513, [4696] = 4696, - [4697] = 4523, - [4698] = 4434, - [4699] = 4434, - [4700] = 4430, - [4701] = 4523, - [4702] = 4434, - [4703] = 4425, - [4704] = 4704, - [4705] = 4523, - [4706] = 4706, - [4707] = 4707, - [4708] = 4425, - [4709] = 4523, - [4710] = 4441, - [4711] = 4430, - [4712] = 4712, - [4713] = 4523, - [4714] = 4714, - [4715] = 4434, - [4716] = 4408, - [4717] = 4523, - [4718] = 4718, - [4719] = 4441, - [4720] = 4720, - [4721] = 4523, - [4722] = 4722, - [4723] = 4451, - [4724] = 4724, - [4725] = 4408, - [4726] = 4441, - [4727] = 4439, - [4728] = 4437, - [4729] = 4436, - [4730] = 4435, - [4731] = 4433, - [4732] = 4439, - [4733] = 4412, - [4734] = 4413, + [4697] = 4506, + [4698] = 4513, + [4699] = 4517, + [4700] = 4492, + [4701] = 4506, + [4702] = 4502, + [4703] = 4484, + [4704] = 4450, + [4705] = 4506, + [4706] = 4487, + [4707] = 4417, + [4708] = 4412, + [4709] = 4506, + [4710] = 4465, + [4711] = 4435, + [4712] = 4522, + [4713] = 4506, + [4714] = 4467, + [4715] = 4449, + [4716] = 4520, + [4717] = 4506, + [4718] = 4520, + [4719] = 4449, + [4720] = 4520, + [4721] = 4506, + [4722] = 4512, + [4723] = 4435, + [4724] = 4412, + [4725] = 4506, + [4726] = 4417, + [4727] = 4450, + [4728] = 4728, + [4729] = 4484, + [4730] = 4730, + [4731] = 4502, + [4732] = 4732, + [4733] = 4492, + [4734] = 4734, + [4735] = 4512, + [4736] = 4513, + [4737] = 4517, + [4738] = 4487, }; static inline bool sym_rune_literal_character_set_1(int32_t c) { @@ -8170,453 +8181,299 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(259); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(716); - if (lookahead == '$') ADVANCE(355); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(276); - if (lookahead == '/') ADVANCE(305); - if (lookahead == '0') ADVANCE(686); - if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(324); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '\\') ADVANCE(239); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(710); + if (eof) ADVANCE(260); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '"') ADVANCE(852); + if (lookahead == '#') ADVANCE(710); + if (lookahead == '$') ADVANCE(356); + if (lookahead == '%') ADVANCE(308); + if (lookahead == '&') ADVANCE(342); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '(') ADVANCE(288); + if (lookahead == ')') ADVANCE(289); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(277); + if (lookahead == '/') ADVANCE(306); + if (lookahead == '0') ADVANCE(679); + if (lookahead == ':') ADVANCE(329); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(325); + if (lookahead == '=') ADVANCE(291); + if (lookahead == '>') ADVANCE(316); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(680); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); + if (lookahead == '\\') ADVANCE(238); + if (lookahead == ']') ADVANCE(327); + if (lookahead == '^') ADVANCE(340); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(703); if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); - if (lookahead == '~') ADVANCE(337); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'j') ADVANCE(701); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == 'r') ADVANCE(683); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '}') ADVANCE(287); + if (lookahead == '~') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(257) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(359); + if (lookahead == '\n') ADVANCE(360); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(180); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ':') ADVANCE(327); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(688); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(3) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 3: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(180); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ':') ADVANCE(327); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(688); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(3) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 4: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(177); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(688); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(5) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 5: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(177); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(688); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(5) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 6: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '"') ADVANCE(852); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(178); if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '(') ADVANCE(288); if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); + if (lookahead == ',') ADVANCE(286); if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); + if (lookahead == '.') ADVANCE(279); if (lookahead == '/') ADVANCE(305); + if (lookahead == '0') ADVANCE(391); if (lookahead == ':') ADVANCE(328); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(310); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(681); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(703); + if (lookahead == '`') ADVANCE(244); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'j') ADVANCE(701); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == 'r') ADVANCE(683); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '}') ADVANCE(287); + if (lookahead == '~') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(8) + lookahead == ' ') SKIP(3) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); END_STATE(); - case 7: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); + case 3: + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '"') ADVANCE(852); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(178); if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '(') ADVANCE(288); if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); + if (lookahead == ',') ADVANCE(286); if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); + if (lookahead == '.') ADVANCE(279); if (lookahead == '/') ADVANCE(305); + if (lookahead == '0') ADVANCE(391); if (lookahead == ':') ADVANCE(328); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(310); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(681); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); if (lookahead == '^') ADVANCE(339); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(703); + if (lookahead == '`') ADVANCE(244); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'j') ADVANCE(701); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == 'r') ADVANCE(683); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '}') ADVANCE(287); + if (lookahead == '~') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(9) + lookahead == ' ') SKIP(3) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); END_STATE(); - case 8: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); + case 4: + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '"') ADVANCE(852); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(175); if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '(') ADVANCE(288); if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); + if (lookahead == ',') ADVANCE(286); if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); + if (lookahead == '.') ADVANCE(282); if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(328); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); + if (lookahead == '0') ADVANCE(391); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(310); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(681); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(703); + if (lookahead == '`') ADVANCE(244); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'j') ADVANCE(701); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == 'r') ADVANCE(683); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '}') ADVANCE(287); + if (lookahead == '~') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(8) + lookahead == ' ') SKIP(5) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); END_STATE(); - case 9: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); + case 5: + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '"') ADVANCE(852); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(175); if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '(') ADVANCE(288); if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); + if (lookahead == ',') ADVANCE(286); if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); + if (lookahead == '.') ADVANCE(282); if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(328); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); + if (lookahead == '0') ADVANCE(391); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(310); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(681); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); if (lookahead == '^') ADVANCE(339); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(703); + if (lookahead == '`') ADVANCE(244); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'j') ADVANCE(701); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == 'r') ADVANCE(683); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '}') ADVANCE(287); + if (lookahead == '~') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(9) + lookahead == ' ') SKIP(5) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); END_STATE(); - case 10: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); + case 6: + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '%') ADVANCE(308); + if (lookahead == '&') ADVANCE(342); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(306); + if (lookahead == ':') ADVANCE(329); + if (lookahead == '<') ADVANCE(309); + if (lookahead == '=') ADVANCE(291); + if (lookahead == '>') ADVANCE(316); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); + if (lookahead == '^') ADVANCE(340); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(12) + lookahead == ' ') SKIP(8) END_STATE(); - case 11: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(339); + case 7: + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '%') ADVANCE(308); + if (lookahead == '&') ADVANCE(342); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(306); + if (lookahead == ':') ADVANCE(329); + if (lookahead == '<') ADVANCE(309); + if (lookahead == '=') ADVANCE(291); + if (lookahead == '>') ADVANCE(316); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); + if (lookahead == '^') ADVANCE(340); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -8624,76 +8481,76 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(13) + lookahead == ' ') SKIP(9) END_STATE(); - case 12: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); + case 8: + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '%') ADVANCE(308); + if (lookahead == '&') ADVANCE(342); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(306); + if (lookahead == ':') ADVANCE(329); + if (lookahead == '<') ADVANCE(309); + if (lookahead == '=') ADVANCE(291); + if (lookahead == '>') ADVANCE(316); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == '^') ADVANCE(340); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(12) + lookahead == ' ') SKIP(8) END_STATE(); - case 13: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(339); + case 9: + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '%') ADVANCE(308); + if (lookahead == '&') ADVANCE(342); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(306); + if (lookahead == ':') ADVANCE(329); + if (lookahead == '<') ADVANCE(309); + if (lookahead == '=') ADVANCE(291); + if (lookahead == '>') ADVANCE(316); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == '^') ADVANCE(340); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -8701,78 +8558,76 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(13) + lookahead == ' ') SKIP(9) END_STATE(); - case 14: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); + case 10: + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '%') ADVANCE(308); if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(277); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ';') ADVANCE(274); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(306); + if (lookahead == ':') ADVANCE(166); if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); + if (lookahead == '=') ADVANCE(291); if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(98); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); + if (lookahead == '^') ADVANCE(340); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(16) + lookahead == ' ') SKIP(12) END_STATE(); - case 15: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); + case 11: + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '%') ADVANCE(308); if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(277); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ';') ADVANCE(274); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(306); + if (lookahead == ':') ADVANCE(166); if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); + if (lookahead == '=') ADVANCE(291); if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(98); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); + if (lookahead == '^') ADVANCE(340); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -8780,79 +8635,76 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(17) + lookahead == ' ') SKIP(13) END_STATE(); - case 16: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); + case 12: + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '%') ADVANCE(308); if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(277); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ';') ADVANCE(274); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(306); + if (lookahead == ':') ADVANCE(166); if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); + if (lookahead == '=') ADVANCE(291); if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(98); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == '^') ADVANCE(340); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(16) + lookahead == ' ') SKIP(12) END_STATE(); - case 17: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); + case 13: + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '%') ADVANCE(308); if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(277); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ';') ADVANCE(274); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(306); + if (lookahead == ':') ADVANCE(166); if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); + if (lookahead == '=') ADVANCE(291); if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(98); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == '^') ADVANCE(340); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -8860,81 +8712,77 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(17) + lookahead == ' ') SKIP(13) END_STATE(); - case 18: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); + case 14: + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); if (lookahead == '$') ADVANCE(179); if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); + if (lookahead == ')') ADVANCE(289); if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); + if (lookahead == ',') ADVANCE(286); if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); + if (lookahead == '.') ADVANCE(278); if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(328); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(312); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(91); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); if (lookahead == '^') ADVANCE(339); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(19) + lookahead == ' ') SKIP(16) END_STATE(); - case 19: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); + case 15: + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); if (lookahead == '$') ADVANCE(179); if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); + if (lookahead == ')') ADVANCE(289); if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); + if (lookahead == ',') ADVANCE(286); if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); + if (lookahead == '.') ADVANCE(278); if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(328); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(312); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(91); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); if (lookahead == '^') ADVANCE(339); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -8943,80 +8791,78 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(19) + lookahead == ' ') SKIP(17) END_STATE(); - case 20: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); + case 16: + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); if (lookahead == '$') ADVANCE(179); if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); + if (lookahead == ')') ADVANCE(289); if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); + if (lookahead == ',') ADVANCE(286); if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); + if (lookahead == '.') ADVANCE(278); if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(312); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(91); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); if (lookahead == '^') ADVANCE(339); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(21) + lookahead == ' ') SKIP(16) END_STATE(); - case 21: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); + case 17: + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); if (lookahead == '$') ADVANCE(179); if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); + if (lookahead == ')') ADVANCE(289); if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); + if (lookahead == ',') ADVANCE(286); if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); + if (lookahead == '.') ADVANCE(278); if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(312); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(91); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); if (lookahead == '^') ADVANCE(339); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -9025,41 +8871,123 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(21) + lookahead == ' ') SKIP(17) END_STATE(); - case 22: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(306); + case 18: + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(177); + if (lookahead == '%') ADVANCE(308); if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(277); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ';') ADVANCE(274); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(306); + if (lookahead == ':') ADVANCE(329); + if (lookahead == '<') ADVANCE(309); + if (lookahead == '=') ADVANCE(291); + if (lookahead == '>') ADVANCE(316); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); + if (lookahead == '^') ADVANCE(340); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'h') || + ('j' <= lookahead && lookahead <= 'n') || + ('p' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '}') ADVANCE(287); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(19) + END_STATE(); + case 19: + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(177); + if (lookahead == '%') ADVANCE(308); + if (lookahead == '&') ADVANCE(342); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(306); + if (lookahead == ':') ADVANCE(329); + if (lookahead == '<') ADVANCE(309); + if (lookahead == '=') ADVANCE(291); + if (lookahead == '>') ADVANCE(316); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == '^') ADVANCE(340); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'h') || + ('j' <= lookahead && lookahead <= 'n') || + ('p' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '}') ADVANCE(287); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(19) + END_STATE(); + case 20: + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(177); + if (lookahead == '%') ADVANCE(308); + if (lookahead == '&') ADVANCE(342); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(306); + if (lookahead == ':') ADVANCE(166); if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); + if (lookahead == '=') ADVANCE(291); if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(98); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); + if (lookahead == '^') ADVANCE(340); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -9067,41 +8995,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(23) + lookahead == ' ') SKIP(21) END_STATE(); - case 23: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(306); + case 21: + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(177); + if (lookahead == '%') ADVANCE(308); if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(277); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ';') ADVANCE(274); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(306); + if (lookahead == ':') ADVANCE(166); if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); + if (lookahead == '=') ADVANCE(291); if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(98); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == '^') ADVANCE(340); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -9109,940 +9036,751 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(23) + lookahead == ' ') SKIP(21) END_STATE(); - case 24: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(193); + case 22: + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(177); if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); + if (lookahead == ')') ADVANCE(289); if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); + if (lookahead == ',') ADVANCE(286); if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); + if (lookahead == '.') ADVANCE(278); if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(322); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(312); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(91); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); if (lookahead == '^') ADVANCE(339); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'h') || + ('j' <= lookahead && lookahead <= 'n') || + ('p' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(25) + lookahead == ' ') SKIP(23) END_STATE(); - case 25: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(193); + case 23: + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(177); if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); + if (lookahead == ')') ADVANCE(289); if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); + if (lookahead == ',') ADVANCE(286); if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); + if (lookahead == '.') ADVANCE(278); if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(336); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(312); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(91); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); if (lookahead == '^') ADVANCE(339); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'h') || + ('j' <= lookahead && lookahead <= 'n') || + ('p' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '}') ADVANCE(287); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(23) + END_STATE(); + case 24: + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(192); + if (lookahead == '%') ADVANCE(308); + if (lookahead == '&') ADVANCE(342); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(306); + if (lookahead == ':') ADVANCE(329); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(309); + if (lookahead == '=') ADVANCE(291); + if (lookahead == '>') ADVANCE(316); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '[') ADVANCE(323); + if (lookahead == '^') ADVANCE(340); + if (lookahead == 'a') ADVANCE(201); + if (lookahead == 'i') ADVANCE(198); + if (lookahead == 'o') ADVANCE(200); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '}') ADVANCE(287); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(25) + END_STATE(); + case 25: + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(192); + if (lookahead == '%') ADVANCE(308); + if (lookahead == '&') ADVANCE(342); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(306); + if (lookahead == ':') ADVANCE(329); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(309); + if (lookahead == '=') ADVANCE(291); + if (lookahead == '>') ADVANCE(316); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '[') ADVANCE(337); + if (lookahead == '^') ADVANCE(340); + if (lookahead == 'a') ADVANCE(201); + if (lookahead == 'i') ADVANCE(198); + if (lookahead == 'o') ADVANCE(200); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(25) END_STATE(); case 26: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(193); + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(192); + if (lookahead == '%') ADVANCE(308); + if (lookahead == '&') ADVANCE(342); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(306); + if (lookahead == ':') ADVANCE(166); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(311); + if (lookahead == '=') ADVANCE(291); + if (lookahead == '>') ADVANCE(316); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '[') ADVANCE(323); + if (lookahead == '^') ADVANCE(340); + if (lookahead == 'a') ADVANCE(201); + if (lookahead == 'i') ADVANCE(198); + if (lookahead == 'o') ADVANCE(200); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '}') ADVANCE(287); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(27) + END_STATE(); + case 27: + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(192); + if (lookahead == '%') ADVANCE(308); + if (lookahead == '&') ADVANCE(342); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(306); + if (lookahead == ':') ADVANCE(166); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(311); + if (lookahead == '=') ADVANCE(291); + if (lookahead == '>') ADVANCE(316); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '[') ADVANCE(337); + if (lookahead == '^') ADVANCE(340); + if (lookahead == 'a') ADVANCE(201); + if (lookahead == 'i') ADVANCE(198); + if (lookahead == 'o') ADVANCE(200); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '}') ADVANCE(287); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(27) + END_STATE(); + case 28: + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(192); if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); + if (lookahead == ')') ADVANCE(289); if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); + if (lookahead == ',') ADVANCE(286); if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); + if (lookahead == '.') ADVANCE(276); if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(322); + if (lookahead == ':') ADVANCE(328); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(312); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '[') ADVANCE(323); if (lookahead == '^') ADVANCE(339); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); + if (lookahead == 'a') ADVANCE(201); + if (lookahead == 'i') ADVANCE(198); + if (lookahead == 'o') ADVANCE(200); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(27) + lookahead == ' ') SKIP(29) END_STATE(); - case 27: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(193); + case 29: + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(192); if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); + if (lookahead == ')') ADVANCE(289); if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); + if (lookahead == ',') ADVANCE(286); if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); + if (lookahead == '.') ADVANCE(276); if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(336); + if (lookahead == ':') ADVANCE(328); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(312); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '[') ADVANCE(337); if (lookahead == '^') ADVANCE(339); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(27) - END_STATE(); - case 28: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(193); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(327); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); + if (lookahead == 'a') ADVANCE(201); + if (lookahead == 'i') ADVANCE(198); + if (lookahead == 'o') ADVANCE(200); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(29) END_STATE(); - case 29: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); + case 30: + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(193); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); + if (lookahead == '"') ADVANCE(852); + if (lookahead == '$') ADVANCE(178); + if (lookahead == '&') ADVANCE(341); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); + if (lookahead == ',') ADVANCE(286); if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(327); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); + if (lookahead == '.') ADVANCE(282); + if (lookahead == '/') ADVANCE(95); + if (lookahead == '0') ADVANCE(391); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(150); if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(29) - END_STATE(); - case 30: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(333); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(180); - if (lookahead == '&') ADVANCE(340); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(294); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(298); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(155); - if (lookahead == '?') ADVANCE(331); - if (lookahead == '@') ADVANCE(688); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(710); + if (lookahead == '@') ADVANCE(681); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == '^') ADVANCE(339); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(703); if (lookahead == '`') ADVANCE(244); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '}') ADVANCE(286); - if (lookahead == '~') ADVANCE(337); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'j') ADVANCE(701); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'r') ADVANCE(683); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '}') ADVANCE(287); + if (lookahead == '~') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(30) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); END_STATE(); case 31: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(333); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '&') ADVANCE(340); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '<') ADVANCE(323); - if (lookahead == '?') ADVANCE(331); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(334); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '&') ADVANCE(341); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(95); + if (lookahead == '<') ADVANCE(324); + if (lookahead == '?') ADVANCE(332); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); 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(710); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == '}') ADVANCE(286); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(32) END_STATE(); case 32: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(333); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '&') ADVANCE(340); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '?') ADVANCE(331); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(334); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '&') ADVANCE(341); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(95); + if (lookahead == '?') ADVANCE(332); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); 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(710); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == '}') ADVANCE(286); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(32) END_STATE(); case 33: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(333); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '&') ADVANCE(340); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '/') ADVANCE(100); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '=') ADVANCE(289); - if (lookahead == '?') ADVANCE(331); - if (lookahead == '@') ADVANCE(98); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(334); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '&') ADVANCE(341); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '/') ADVANCE(95); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '=') ADVANCE(290); + if (lookahead == '?') ADVANCE(332); + if (lookahead == '@') ADVANCE(91); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); 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(710); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == '}') ADVANCE(286); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(33) END_STATE(); case 34: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(181); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '.') ADVANCE(158); - if (lookahead == '/') ADVANCE(100); - if (lookahead == ':') ADVANCE(327); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '=') ADVANCE(289); - if (lookahead == '@') ADVANCE(98); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '$') ADVANCE(179); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '.') ADVANCE(153); + if (lookahead == '/') ADVANCE(95); + if (lookahead == ':') ADVANCE(328); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '=') ADVANCE(290); + if (lookahead == '@') ADVANCE(91); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '}') ADVANCE(286); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(34) END_STATE(); case 35: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(100); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '=') ADVANCE(289); - if (lookahead == '@') ADVANCE(98); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(95); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '=') ADVANCE(290); + if (lookahead == '@') ADVANCE(91); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '}') ADVANCE(286); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(36) END_STATE(); case 36: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(100); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '=') ADVANCE(289); - if (lookahead == '@') ADVANCE(98); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(95); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '=') ADVANCE(290); + if (lookahead == '@') ADVANCE(91); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '}') ADVANCE(286); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(36) END_STATE(); case 37: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(180); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ':') ADVANCE(327); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(688); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(38) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 38: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(180); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ':') ADVANCE(327); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(688); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(38) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 39: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(177); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '0') ADVANCE(390); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(688); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(40) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 40: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(177); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '0') ADVANCE(390); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(688); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(40) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 41: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '"') ADVANCE(852); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(178); if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '(') ADVANCE(288); if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); + if (lookahead == ',') ADVANCE(286); if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); + if (lookahead == '.') ADVANCE(282); if (lookahead == '/') ADVANCE(305); - if (lookahead == '0') ADVANCE(397); + if (lookahead == '0') ADVANCE(391); if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(310); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(681); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); + if (lookahead == ']') ADVANCE(327); if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(703); + if (lookahead == '`') ADVANCE(244); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'j') ADVANCE(701); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == 'r') ADVANCE(683); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(42) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); + lookahead == ' ') SKIP(38) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); END_STATE(); - case 42: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); + case 38: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '"') ADVANCE(852); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(178); if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '(') ADVANCE(288); if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); + if (lookahead == ',') ADVANCE(286); if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); + if (lookahead == '.') ADVANCE(282); if (lookahead == '/') ADVANCE(305); - if (lookahead == '0') ADVANCE(397); + if (lookahead == '0') ADVANCE(391); if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(42) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); - END_STATE(); - case 43: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(327); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(339); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(44) - END_STATE(); - case 44: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(327); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(339); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(44) - END_STATE(); - case 45: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(274); + if (lookahead == ';') ADVANCE(275); if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(681); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == ']') ADVANCE(327); if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(703); + if (lookahead == '`') ADVANCE(244); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'j') ADVANCE(701); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == 'r') ADVANCE(683); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(47) + lookahead == ' ') SKIP(38) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); END_STATE(); - case 46: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); + case 39: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '"') ADVANCE(852); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(175); if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '(') ADVANCE(288); if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); + if (lookahead == ',') ADVANCE(286); if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); + if (lookahead == '.') ADVANCE(282); if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(274); + if (lookahead == '0') ADVANCE(391); if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(681); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); + if (lookahead == ']') ADVANCE(327); if (lookahead == '^') ADVANCE(339); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(703); + if (lookahead == '`') ADVANCE(244); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'j') ADVANCE(701); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == 'r') ADVANCE(683); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(48) + lookahead == ' ') SKIP(40) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); END_STATE(); - case 47: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); + case 40: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '"') ADVANCE(852); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(175); if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '(') ADVANCE(288); if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); + if (lookahead == ',') ADVANCE(286); if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); + if (lookahead == '.') ADVANCE(282); if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(274); + if (lookahead == '0') ADVANCE(391); if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(681); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == ']') ADVANCE(327); if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(703); + if (lookahead == '`') ADVANCE(244); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'j') ADVANCE(701); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == 'r') ADVANCE(683); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(47) + lookahead == ' ') SKIP(40) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); END_STATE(); - case 48: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(339); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); + case 41: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '%') ADVANCE(308); + if (lookahead == '&') ADVANCE(342); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(306); + if (lookahead == '0') ADVANCE(398); + if (lookahead == ':') ADVANCE(329); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(309); + if (lookahead == '=') ADVANCE(291); + if (lookahead == '>') ADVANCE(316); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); + if (lookahead == '^') ADVANCE(340); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(293); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(48) + lookahead == ' ') SKIP(42) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); END_STATE(); - case 49: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); + case 42: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '%') ADVANCE(308); if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(306); + if (lookahead == '0') ADVANCE(398); + if (lookahead == ':') ADVANCE(329); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(309); + if (lookahead == '=') ADVANCE(291); if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == '^') ADVANCE(340); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(51) + lookahead == ' ') SKIP(42) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); END_STATE(); - case 50: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); + case 43: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '%') ADVANCE(308); if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(304); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(306); if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); + if (lookahead == '<') ADVANCE(309); + if (lookahead == '=') ADVANCE(291); if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); + if (lookahead == '^') ADVANCE(340); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10050,79 +9788,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(52) - END_STATE(); - case 51: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(51) + lookahead == ' ') SKIP(44) END_STATE(); - case 52: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); + case 44: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '%') ADVANCE(308); if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(304); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(306); if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); + if (lookahead == '<') ADVANCE(309); + if (lookahead == '=') ADVANCE(291); if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == '^') ADVANCE(340); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10130,104 +9827,73 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(52) - END_STATE(); - case 53: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(276); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(293); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(54) + lookahead == ' ') SKIP(44) END_STATE(); - case 54: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); + case 45: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '%') ADVANCE(308); if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); if (lookahead == '.') ADVANCE(276); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(168); + if (lookahead == '/') ADVANCE(306); + if (lookahead == ':') ADVANCE(166); + if (lookahead == ';') ADVANCE(275); if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); + if (lookahead == '=') ADVANCE(291); if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); + if (lookahead == '^') ADVANCE(340); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(293); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(54) + lookahead == ' ') SKIP(47) END_STATE(); - case 55: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); + case 46: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '%') ADVANCE(308); if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); if (lookahead == '.') ADVANCE(276); - if (lookahead == '/') ADVANCE(304); + if (lookahead == '/') ADVANCE(306); + if (lookahead == ':') ADVANCE(166); + if (lookahead == ';') ADVANCE(275); if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); + if (lookahead == '=') ADVANCE(291); if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); + if (lookahead == '^') ADVANCE(340); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10235,75 +9901,73 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(293); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(56) + lookahead == ' ') SKIP(48) END_STATE(); - case 56: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); + case 47: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '%') ADVANCE(308); if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); if (lookahead == '.') ADVANCE(276); - if (lookahead == '/') ADVANCE(304); + if (lookahead == '/') ADVANCE(306); + if (lookahead == ':') ADVANCE(166); + if (lookahead == ';') ADVANCE(275); if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); + if (lookahead == '=') ADVANCE(291); if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == '^') ADVANCE(340); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(293); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(56) + lookahead == ' ') SKIP(47) END_STATE(); - case 57: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); + case 48: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '%') ADVANCE(308); if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(327); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(306); + if (lookahead == ':') ADVANCE(166); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(311); + if (lookahead == '=') ADVANCE(291); if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == '^') ADVANCE(340); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10311,73 +9975,77 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(293); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(58) + lookahead == ' ') SKIP(48) END_STATE(); - case 58: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(327); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '|') ADVANCE(293); + case 49: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '%') ADVANCE(307); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); + if (lookahead == ')') ADVANCE(289); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '+') ADVANCE(296); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(300); + if (lookahead == '.') ADVANCE(280); + if (lookahead == '/') ADVANCE(305); + if (lookahead == ':') ADVANCE(329); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(312); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); + if (lookahead == ']') ADVANCE(327); + if (lookahead == '^') ADVANCE(339); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(58) + lookahead == ' ') SKIP(51) END_STATE(); - case 59: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); + case 50: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); if (lookahead == '$') ADVANCE(179); if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); + if (lookahead == ')') ADVANCE(289); if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); + if (lookahead == ',') ADVANCE(286); if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); + if (lookahead == '.') ADVANCE(280); if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(327); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); + if (lookahead == ':') ADVANCE(329); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(312); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); + if (lookahead == ']') ADVANCE(327); if (lookahead == '^') ADVANCE(339); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -10386,77 +10054,78 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(60) + lookahead == ' ') SKIP(52) END_STATE(); - case 60: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); + case 51: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); if (lookahead == '$') ADVANCE(179); if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); + if (lookahead == ')') ADVANCE(289); if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); + if (lookahead == ',') ADVANCE(286); if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); + if (lookahead == '.') ADVANCE(280); if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(327); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); + if (lookahead == ':') ADVANCE(329); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(312); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == ']') ADVANCE(327); if (lookahead == '^') ADVANCE(339); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(60) + lookahead == ' ') SKIP(51) END_STATE(); - case 61: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); + case 52: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); if (lookahead == '$') ADVANCE(179); if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); + if (lookahead == ')') ADVANCE(289); if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); + if (lookahead == ',') ADVANCE(286); if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); + if (lookahead == '.') ADVANCE(280); if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); + if (lookahead == ':') ADVANCE(329); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(312); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == ']') ADVANCE(327); if (lookahead == '^') ADVANCE(339); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -10465,38 +10134,179 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(62) + lookahead == ' ') SKIP(52) END_STATE(); - case 62: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); + case 53: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); if (lookahead == '$') ADVANCE(179); if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '+') ADVANCE(296); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(300); + if (lookahead == '.') ADVANCE(277); + if (lookahead == '/') ADVANCE(305); + if (lookahead == ':') ADVANCE(166); + if (lookahead == '<') ADVANCE(312); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); + if (lookahead == '^') ADVANCE(339); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(54) + END_STATE(); + case 54: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '%') ADVANCE(307); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '+') ADVANCE(296); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(300); + if (lookahead == '.') ADVANCE(277); + if (lookahead == '/') ADVANCE(305); + if (lookahead == ':') ADVANCE(166); + if (lookahead == '<') ADVANCE(312); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == '^') ADVANCE(339); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(54) + END_STATE(); + case 55: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '%') ADVANCE(307); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '+') ADVANCE(296); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(300); + if (lookahead == '.') ADVANCE(277); + if (lookahead == '/') ADVANCE(305); + if (lookahead == '<') ADVANCE(312); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); + if (lookahead == '^') ADVANCE(339); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'h') || + ('j' <= lookahead && lookahead <= 'n') || + ('p' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(56) + END_STATE(); + case 56: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '%') ADVANCE(307); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '+') ADVANCE(296); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(300); + if (lookahead == '.') ADVANCE(277); + if (lookahead == '/') ADVANCE(305); + if (lookahead == '<') ADVANCE(312); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == '^') ADVANCE(339); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'h') || + ('j' <= lookahead && lookahead <= 'n') || + ('p' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(56) + END_STATE(); + case 57: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '%') ADVANCE(307); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); + if (lookahead == '.') ADVANCE(276); if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(274); + if (lookahead == ':') ADVANCE(328); if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); if (lookahead == '^') ADVANCE(339); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -10505,41 +10315,74 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '|') ADVANCE(294); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(62) + lookahead == ' ') SKIP(58) END_STATE(); - case 63: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); + case 58: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(306); + if (lookahead == '%') ADVANCE(307); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '+') ADVANCE(296); + if (lookahead == '-') ADVANCE(300); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(305); + if (lookahead == ':') ADVANCE(328); + if (lookahead == '<') ADVANCE(310); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == '^') ADVANCE(339); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'h') || + ('j' <= lookahead && lookahead <= 'n') || + ('p' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '|') ADVANCE(294); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(58) + END_STATE(); + case 59: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(177); + if (lookahead == '%') ADVANCE(308); if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(304); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(306); if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); + if (lookahead == '<') ADVANCE(309); + if (lookahead == '=') ADVANCE(291); if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); + if (lookahead == '^') ADVANCE(340); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10547,42 +10390,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(64) + lookahead == ' ') SKIP(60) END_STATE(); - case 64: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(306); + case 60: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(177); + if (lookahead == '%') ADVANCE(308); if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(304); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(306); if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); + if (lookahead == '<') ADVANCE(309); + if (lookahead == '=') ADVANCE(291); if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == '^') ADVANCE(340); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10590,38 +10429,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(64) + lookahead == ' ') SKIP(60) END_STATE(); - case 65: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(306); + case 61: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(177); + if (lookahead == '%') ADVANCE(308); if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); if (lookahead == '.') ADVANCE(276); - if (lookahead == '/') ADVANCE(304); + if (lookahead == '/') ADVANCE(306); + if (lookahead == ':') ADVANCE(166); + if (lookahead == ';') ADVANCE(275); if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); + if (lookahead == '=') ADVANCE(291); if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); + if (lookahead == '^') ADVANCE(340); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10629,37 +10469,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(293); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(66) + lookahead == ' ') SKIP(62) END_STATE(); - case 66: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(306); + case 62: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(177); + if (lookahead == '%') ADVANCE(308); if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); if (lookahead == '.') ADVANCE(276); - if (lookahead == '/') ADVANCE(304); + if (lookahead == '/') ADVANCE(306); + if (lookahead == ':') ADVANCE(166); + if (lookahead == ';') ADVANCE(275); if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); + if (lookahead == '=') ADVANCE(291); if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == '^') ADVANCE(340); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10667,37 +10509,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(293); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(66) + lookahead == ' ') SKIP(62) END_STATE(); - case 67: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(327); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); + case 63: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(177); + if (lookahead == '%') ADVANCE(307); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); + if (lookahead == ')') ADVANCE(289); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '+') ADVANCE(296); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(300); + if (lookahead == '.') ADVANCE(280); + if (lookahead == '/') ADVANCE(305); + if (lookahead == ':') ADVANCE(329); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(312); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); + if (lookahead == ']') ADVANCE(327); + if (lookahead == '^') ADVANCE(339); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10705,36 +10551,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '|') ADVANCE(293); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(68) + lookahead == ' ') SKIP(64) END_STATE(); - case 68: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(327); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); + case 64: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(177); + if (lookahead == '%') ADVANCE(307); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); + if (lookahead == ')') ADVANCE(289); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '+') ADVANCE(296); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(300); + if (lookahead == '.') ADVANCE(280); + if (lookahead == '/') ADVANCE(305); + if (lookahead == ':') ADVANCE(329); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(312); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == ']') ADVANCE(327); + if (lookahead == '^') ADVANCE(339); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10742,583 +10594,719 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '|') ADVANCE(293); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(68) + lookahead == ' ') SKIP(64) END_STATE(); - case 69: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(194); + case 65: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(177); if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); + if (lookahead == ',') ADVANCE(286); if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); + if (lookahead == '.') ADVANCE(277); if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(322); + if (lookahead == '<') ADVANCE(312); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); if (lookahead == '^') ADVANCE(339); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'h') || + ('j' <= lookahead && lookahead <= 'n') || + ('p' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(70) + lookahead == ' ') SKIP(66) END_STATE(); - case 70: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(194); + case 66: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(177); if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); + if (lookahead == ',') ADVANCE(286); if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); + if (lookahead == '.') ADVANCE(277); if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(336); + if (lookahead == '<') ADVANCE(312); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); if (lookahead == '^') ADVANCE(339); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'h') || + ('j' <= lookahead && lookahead <= 'n') || + ('p' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(70) + lookahead == ' ') SKIP(66) END_STATE(); - case 71: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(193); + case 67: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(177); if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); + if (lookahead == '.') ADVANCE(276); if (lookahead == '/') ADVANCE(305); if (lookahead == ':') ADVANCE(328); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(322); + if (lookahead == '<') ADVANCE(310); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); if (lookahead == '^') ADVANCE(339); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'h') || + ('j' <= lookahead && lookahead <= 'n') || + ('p' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '|') ADVANCE(294); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(72) + lookahead == ' ') SKIP(68) END_STATE(); - case 72: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(193); + case 68: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(177); if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); + if (lookahead == '.') ADVANCE(276); if (lookahead == '/') ADVANCE(305); if (lookahead == ':') ADVANCE(328); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(336); + if (lookahead == '<') ADVANCE(310); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); if (lookahead == '^') ADVANCE(339); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'h') || + ('j' <= lookahead && lookahead <= 'n') || + ('p' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == '|') ADVANCE(294); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(72) + lookahead == ' ') SKIP(68) END_STATE(); - case 73: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); + case 69: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); if (lookahead == '$') ADVANCE(193); - if (lookahead == '%') ADVANCE(306); + if (lookahead == '%') ADVANCE(308); if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(306); + if (lookahead == ':') ADVANCE(166); + if (lookahead == ';') ADVANCE(275); if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); + if (lookahead == '=') ADVANCE(291); if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(322); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '[') ADVANCE(323); + if (lookahead == '^') ADVANCE(340); + if (lookahead == 'a') ADVANCE(201); + if (lookahead == 'i') ADVANCE(198); + if (lookahead == 'o') ADVANCE(200); + if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(74) + lookahead == ' ') SKIP(70) END_STATE(); - case 74: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); + case 70: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); if (lookahead == '$') ADVANCE(193); - if (lookahead == '%') ADVANCE(306); + if (lookahead == '%') ADVANCE(308); if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(306); + if (lookahead == ':') ADVANCE(166); + if (lookahead == ';') ADVANCE(275); if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); + if (lookahead == '=') ADVANCE(291); if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(336); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '[') ADVANCE(337); + if (lookahead == '^') ADVANCE(340); + if (lookahead == 'a') ADVANCE(201); + if (lookahead == 'i') ADVANCE(198); + if (lookahead == 'o') ADVANCE(200); + if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(74) + lookahead == ' ') SKIP(70) END_STATE(); - case 75: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(193); - if (lookahead == '%') ADVANCE(306); + case 71: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(192); + if (lookahead == '%') ADVANCE(308); if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); if (lookahead == '.') ADVANCE(276); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); + if (lookahead == '/') ADVANCE(306); + if (lookahead == ':') ADVANCE(329); + if (lookahead == '<') ADVANCE(309); + if (lookahead == '=') ADVANCE(291); if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(322); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '[') ADVANCE(323); + if (lookahead == '^') ADVANCE(340); + if (lookahead == 'a') ADVANCE(201); + if (lookahead == 'i') ADVANCE(198); + if (lookahead == 'o') ADVANCE(200); + if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(293); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(76) + lookahead == ' ') SKIP(72) END_STATE(); - case 76: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(193); - if (lookahead == '%') ADVANCE(306); + case 72: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(192); + if (lookahead == '%') ADVANCE(308); if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); if (lookahead == '.') ADVANCE(276); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); + if (lookahead == '/') ADVANCE(306); + if (lookahead == ':') ADVANCE(329); + if (lookahead == '<') ADVANCE(309); + if (lookahead == '=') ADVANCE(291); if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(336); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '[') ADVANCE(337); + if (lookahead == '^') ADVANCE(340); + if (lookahead == 'a') ADVANCE(201); + if (lookahead == 'i') ADVANCE(198); + if (lookahead == 'o') ADVANCE(200); + if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(293); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(72) + END_STATE(); + case 73: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(192); + if (lookahead == '%') ADVANCE(307); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); + if (lookahead == ')') ADVANCE(289); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '+') ADVANCE(296); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(300); + if (lookahead == '.') ADVANCE(280); + if (lookahead == '/') ADVANCE(305); + if (lookahead == ':') ADVANCE(329); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(312); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '[') ADVANCE(323); + if (lookahead == ']') ADVANCE(327); + if (lookahead == '^') ADVANCE(339); + if (lookahead == 'a') ADVANCE(201); + if (lookahead == 'i') ADVANCE(198); + if (lookahead == 'o') ADVANCE(200); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '}') ADVANCE(287); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(74) + END_STATE(); + case 74: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(192); + if (lookahead == '%') ADVANCE(307); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); + if (lookahead == ')') ADVANCE(289); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '+') ADVANCE(296); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(300); + if (lookahead == '.') ADVANCE(280); + if (lookahead == '/') ADVANCE(305); + if (lookahead == ':') ADVANCE(329); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(312); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '[') ADVANCE(337); + if (lookahead == ']') ADVANCE(327); + if (lookahead == '^') ADVANCE(339); + if (lookahead == 'a') ADVANCE(201); + if (lookahead == 'i') ADVANCE(198); + if (lookahead == 'o') ADVANCE(200); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '}') ADVANCE(287); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(74) + END_STATE(); + case 75: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(192); + if (lookahead == '%') ADVANCE(307); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '+') ADVANCE(296); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(300); + if (lookahead == '.') ADVANCE(277); + if (lookahead == '/') ADVANCE(305); + if (lookahead == ':') ADVANCE(166); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(312); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '[') ADVANCE(323); + if (lookahead == ']') ADVANCE(327); + if (lookahead == '^') ADVANCE(339); + if (lookahead == 'a') ADVANCE(201); + if (lookahead == 'i') ADVANCE(198); + if (lookahead == 'o') ADVANCE(200); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(76) + END_STATE(); + case 76: + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(192); + if (lookahead == '%') ADVANCE(307); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '+') ADVANCE(296); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(300); + if (lookahead == '.') ADVANCE(277); + if (lookahead == '/') ADVANCE(305); + if (lookahead == ':') ADVANCE(166); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(312); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '[') ADVANCE(337); + if (lookahead == ']') ADVANCE(327); + if (lookahead == '^') ADVANCE(339); + if (lookahead == 'a') ADVANCE(201); + if (lookahead == 'i') ADVANCE(198); + if (lookahead == 'o') ADVANCE(200); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(76) END_STATE(); case 77: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(193); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(327); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(192); + if (lookahead == '%') ADVANCE(307); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '+') ADVANCE(296); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(300); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(305); + if (lookahead == ':') ADVANCE(328); + if (lookahead == '<') ADVANCE(310); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '[') ADVANCE(323); + if (lookahead == '^') ADVANCE(339); + if (lookahead == 'a') ADVANCE(201); + if (lookahead == 'i') ADVANCE(198); + if (lookahead == 'o') ADVANCE(200); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(78) END_STATE(); case 78: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(193); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(327); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '#') ADVANCE(181); + if (lookahead == '$') ADVANCE(192); + if (lookahead == '%') ADVANCE(307); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '+') ADVANCE(296); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(300); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(305); + if (lookahead == ':') ADVANCE(328); + if (lookahead == '<') ADVANCE(310); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '[') ADVANCE(337); + if (lookahead == '^') ADVANCE(339); + if (lookahead == 'a') ADVANCE(201); + if (lookahead == 'i') ADVANCE(198); + if (lookahead == 'o') ADVANCE(200); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(78) END_STATE(); case 79: - if (lookahead == '!') ADVANCE(272); - END_STATE(); - case 80: - if (lookahead == '!') ADVANCE(272); - if (lookahead == '[') ADVANCE(365); - END_STATE(); - case 81: - if (lookahead == '!') ADVANCE(333); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(180); - if (lookahead == '&') ADVANCE(340); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(294); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(298); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ':') ADVANCE(327); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(155); - if (lookahead == '?') ADVANCE(331); - if (lookahead == '@') ADVANCE(688); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(710); + if (lookahead == '!') ADVANCE(334); + if (lookahead == '"') ADVANCE(852); + if (lookahead == '$') ADVANCE(178); + if (lookahead == '&') ADVANCE(341); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '(') ADVANCE(288); + if (lookahead == ')') ADVANCE(289); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '+') ADVANCE(295); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(299); + if (lookahead == '.') ADVANCE(279); + if (lookahead == '/') ADVANCE(95); + if (lookahead == '0') ADVANCE(391); + if (lookahead == ':') ADVANCE(328); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(150); + if (lookahead == '?') ADVANCE(332); + if (lookahead == '@') ADVANCE(681); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == ']') ADVANCE(327); + if (lookahead == '^') ADVANCE(339); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(703); if (lookahead == '`') ADVANCE(244); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '}') ADVANCE(286); - if (lookahead == '~') ADVANCE(337); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'j') ADVANCE(701); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'r') ADVANCE(683); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '}') ADVANCE(287); + if (lookahead == '~') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(81) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == ' ') SKIP(79) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); END_STATE(); - case 82: - if (lookahead == '!') ADVANCE(333); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(180); - if (lookahead == '&') ADVANCE(340); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(294); - if (lookahead == '-') ADVANCE(298); - if (lookahead == '.') ADVANCE(280); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '0') ADVANCE(390); - if (lookahead == '<') ADVANCE(155); - if (lookahead == '?') ADVANCE(331); - if (lookahead == '@') ADVANCE(688); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(710); + case 80: + if (lookahead == '!') ADVANCE(334); + if (lookahead == '"') ADVANCE(852); + if (lookahead == '$') ADVANCE(178); + if (lookahead == '&') ADVANCE(341); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '+') ADVANCE(295); + if (lookahead == '-') ADVANCE(299); + if (lookahead == '.') ADVANCE(281); + if (lookahead == '/') ADVANCE(95); + if (lookahead == '0') ADVANCE(391); + if (lookahead == '<') ADVANCE(150); + if (lookahead == '?') ADVANCE(332); + if (lookahead == '@') ADVANCE(681); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == '^') ADVANCE(339); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(703); if (lookahead == '`') ADVANCE(244); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '~') ADVANCE(337); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'j') ADVANCE(701); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'r') ADVANCE(683); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '~') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(82) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == ' ') SKIP(80) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); END_STATE(); - case 83: - if (lookahead == '!') ADVANCE(333); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '&') ADVANCE(340); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '.') ADVANCE(277); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '<') ADVANCE(323); - if (lookahead == '=') ADVANCE(289); - if (lookahead == '?') ADVANCE(331); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); + case 81: + if (lookahead == '!') ADVANCE(334); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '&') ADVANCE(341); + if (lookahead == '(') ADVANCE(288); + if (lookahead == ')') ADVANCE(289); + if (lookahead == '*') ADVANCE(303); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '.') ADVANCE(278); + if (lookahead == '/') ADVANCE(95); + if (lookahead == '<') ADVANCE(324); + if (lookahead == '=') ADVANCE(290); + if (lookahead == '?') ADVANCE(332); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); 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(710); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == '{') ADVANCE(284); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == '{') ADVANCE(285); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(84) + lookahead == ' ') SKIP(82) END_STATE(); - case 84: - if (lookahead == '!') ADVANCE(333); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '&') ADVANCE(340); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '.') ADVANCE(277); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '=') ADVANCE(289); - if (lookahead == '?') ADVANCE(331); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); + case 82: + if (lookahead == '!') ADVANCE(334); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '&') ADVANCE(341); + if (lookahead == '(') ADVANCE(288); + if (lookahead == ')') ADVANCE(289); + if (lookahead == '*') ADVANCE(303); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '.') ADVANCE(278); + if (lookahead == '/') ADVANCE(95); + if (lookahead == '=') ADVANCE(290); + if (lookahead == '?') ADVANCE(332); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); 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(710); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == '{') ADVANCE(284); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == '{') ADVANCE(285); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(84) + lookahead == ' ') SKIP(82) END_STATE(); - case 85: - if (lookahead == '!') ADVANCE(333); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '&') ADVANCE(340); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '.') ADVANCE(158); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '=') ADVANCE(289); - if (lookahead == '?') ADVANCE(331); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == ']') ADVANCE(326); + case 83: + if (lookahead == '!') ADVANCE(334); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '&') ADVANCE(341); + if (lookahead == '(') ADVANCE(288); + if (lookahead == ')') ADVANCE(289); + if (lookahead == '*') ADVANCE(303); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '.') ADVANCE(153); + if (lookahead == '/') ADVANCE(95); + if (lookahead == '=') ADVANCE(290); + if (lookahead == '?') ADVANCE(332); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == ']') ADVANCE(327); 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(710); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == '{') ADVANCE(284); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == '{') ADVANCE(285); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(85) + lookahead == ' ') SKIP(83) END_STATE(); - case 86: - if (lookahead == '!') ADVANCE(166); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(294); - if (lookahead == '-') ADVANCE(298); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(314); - if (lookahead == '@') ADVANCE(98); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); + case 84: + if (lookahead == '!') ADVANCE(164); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '%') ADVANCE(307); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '+') ADVANCE(295); + if (lookahead == '-') ADVANCE(299); + if (lookahead == '/') ADVANCE(305); + if (lookahead == '<') ADVANCE(313); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(315); + if (lookahead == '@') ADVANCE(91); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(86) + lookahead == ' ') SKIP(84) END_STATE(); - case 87: - if (lookahead == '!') ADVANCE(166); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(356); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(294); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(298); - if (lookahead == '.') ADVANCE(277); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '0') ADVANCE(397); - if (lookahead == ':') ADVANCE(327); - if (lookahead == '<') ADVANCE(325); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(314); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == ']') ADVANCE(326); + case 85: + if (lookahead == '!') ADVANCE(164); + if (lookahead == '$') ADVANCE(357); + if (lookahead == '%') ADVANCE(307); + if (lookahead == '(') ADVANCE(288); + if (lookahead == ')') ADVANCE(289); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '+') ADVANCE(295); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(299); + if (lookahead == '.') ADVANCE(278); + if (lookahead == '/') ADVANCE(305); + if (lookahead == '0') ADVANCE(398); + if (lookahead == ':') ADVANCE(328); + if (lookahead == '<') ADVANCE(326); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(315); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); + if (lookahead == ']') ADVANCE(327); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '}') ADVANCE(286); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(88) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); + lookahead == ' ') SKIP(86) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); END_STATE(); - case 88: - if (lookahead == '!') ADVANCE(166); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(356); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(294); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(298); - if (lookahead == '.') ADVANCE(277); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '0') ADVANCE(397); - if (lookahead == ':') ADVANCE(327); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(314); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == ']') ADVANCE(326); + case 86: + if (lookahead == '!') ADVANCE(164); + if (lookahead == '$') ADVANCE(357); + if (lookahead == '%') ADVANCE(307); + if (lookahead == '(') ADVANCE(288); + if (lookahead == ')') ADVANCE(289); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '+') ADVANCE(295); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(299); + if (lookahead == '.') ADVANCE(278); + if (lookahead == '/') ADVANCE(305); + if (lookahead == '0') ADVANCE(398); + if (lookahead == ':') ADVANCE(328); + if (lookahead == '<') ADVANCE(313); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(315); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == ']') ADVANCE(327); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '}') ADVANCE(286); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '}') ADVANCE(287); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(88) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); + lookahead == ' ') SKIP(86) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); END_STATE(); - case 89: - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '.') ADVANCE(216); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '0') ADVANCE(390); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); + case 87: + if (lookahead == '"') ADVANCE(852); + if (lookahead == '$') ADVANCE(179); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '.') ADVANCE(215); + if (lookahead == '/') ADVANCE(95); + if (lookahead == '0') ADVANCE(391); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || lookahead == 'a' || @@ -11327,480 +11315,472 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('s' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); if (lookahead == '`') ADVANCE(244); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'r') ADVANCE(690); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'r') ADVANCE(683); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(89) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == ' ') SKIP(87) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); END_STATE(); - case 90: - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(473); - if (lookahead == '$') ADVANCE(204); - if (lookahead == '/') ADVANCE(485); - if (lookahead == '\\') ADVANCE(239); + case 88: + if (lookahead == '"') ADVANCE(852); + if (lookahead == '$') ADVANCE(203); + if (lookahead == '/') ADVANCE(481); + if (lookahead == '\\') ADVANCE(238); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(474); - if (lookahead != 0) ADVANCE(542); + lookahead == ' ') ADVANCE(534); + if (lookahead != 0) ADVANCE(539); END_STATE(); - case 91: - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(615); - if (lookahead == '/') ADVANCE(627); + case 89: + if (lookahead == '"') ADVANCE(852); + if (lookahead == '/') ADVANCE(619); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(616); + lookahead == ' ') ADVANCE(672); if (lookahead != 0 && - lookahead != '\\') ADVANCE(684); + lookahead != '\\') ADVANCE(677); END_STATE(); - case 92: - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '0') ADVANCE(686); - if (lookahead == '>') ADVANCE(313); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == ']') ADVANCE(326); + case 90: + if (lookahead == '$') ADVANCE(179); + if (lookahead == '.') ADVANCE(276); + if (lookahead == '/') ADVANCE(95); + if (lookahead == '0') ADVANCE(679); + if (lookahead == '>') ADVANCE(314); + if (lookahead == '@') ADVANCE(92); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == ']') ADVANCE(327); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == '}') ADVANCE(286); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == '}') ADVANCE(287); if (lookahead == '+' || - lookahead == '-') ADVANCE(685); + lookahead == '-') ADVANCE(678); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(92) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); + lookahead == ' ') SKIP(90) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); + END_STATE(); + case 91: + if (lookahead == '$') ADVANCE(179); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(850); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + END_STATE(); + case 92: + if (lookahead == '$') ADVANCE(179); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); END_STATE(); case 93: - if (lookahead == '#') ADVANCE(79); - if (lookahead == '/') ADVANCE(100); + if (lookahead == '$') ADVANCE(203); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '/') ADVANCE(412); + if (lookahead == '\\') ADVANCE(238); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(93) + lookahead == ' ') ADVANCE(465); + if (lookahead != 0) ADVANCE(470); END_STATE(); case 94: - if (lookahead == '#') ADVANCE(402); - if (lookahead == '$') ADVANCE(204); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '/') ADVANCE(414); - if (lookahead == '\\') ADVANCE(239); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '/') ADVANCE(550); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(403); - if (lookahead != 0) ADVANCE(471); + lookahead == ' ') ADVANCE(603); + if (lookahead != 0 && + lookahead != '\\') ADVANCE(608); END_STATE(); case 95: - if (lookahead == '#') ADVANCE(544); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '/') ADVANCE(556); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(545); - if (lookahead != 0 && - lookahead != '\\') ADVANCE(613); + if (lookahead == '*') ADVANCE(97); + if (lookahead == '/') ADVANCE(273); END_STATE(); case 96: - if (lookahead == '#') ADVANCE(789); - if (lookahead == '/') ADVANCE(801); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(790); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(858); + if (lookahead == '*') ADVANCE(97); + if (lookahead == '/') ADVANCE(273); + if (lookahead == '=') ADVANCE(378); END_STATE(); case 97: - if (lookahead == '#') ADVANCE(717); - if (lookahead == '/') ADVANCE(726); - if (lookahead == '\n' || - lookahead == '\r') SKIP(93) - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(718); - if (lookahead != 0 && - lookahead != '\\') ADVANCE(787); + if (lookahead == '*') ADVANCE(156); + if (lookahead == '/') ADVANCE(99); + if (lookahead != 0) ADVANCE(100); END_STATE(); case 98: - if (lookahead == '$') ADVANCE(181); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(859); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); + if (lookahead == '*') ADVANCE(157); + if (lookahead == '/') ADVANCE(105); + if (lookahead != 0) ADVANCE(98); END_STATE(); case 99: - if (lookahead == '$') ADVANCE(181); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); + if (lookahead == '*') ADVANCE(157); + if (lookahead != 0) ADVANCE(99); END_STATE(); case 100: - if (lookahead == '*') ADVANCE(102); - if (lookahead == '/') ADVANCE(271); + if (lookahead == '*') ADVANCE(157); + if (lookahead != 0) ADVANCE(98); END_STATE(); case 101: - if (lookahead == '*') ADVANCE(102); - if (lookahead == '/') ADVANCE(271); - if (lookahead == '=') ADVANCE(377); + if (lookahead == '*') ADVANCE(109); + if (lookahead == '/') ADVANCE(101); + if (lookahead != 0) ADVANCE(161); END_STATE(); case 102: - if (lookahead == '*') ADVANCE(161); - if (lookahead == '/') ADVANCE(104); - if (lookahead != 0) ADVANCE(105); + if (lookahead == '*') ADVANCE(241); + if (lookahead == '/') ADVANCE(110); + if (lookahead != 0) ADVANCE(112); END_STATE(); case 103: - if (lookahead == '*') ADVANCE(162); - if (lookahead == '/') ADVANCE(110); - if (lookahead != 0) ADVANCE(103); + if (lookahead == '*') ADVANCE(241); + if (lookahead == '/') ADVANCE(123); + if (lookahead != 0) ADVANCE(111); END_STATE(); case 104: - if (lookahead == '*') ADVANCE(162); - if (lookahead != 0) ADVANCE(104); + if (lookahead == '*') ADVANCE(241); + if (lookahead == '/') ADVANCE(139); + if (lookahead != 0) ADVANCE(140); END_STATE(); case 105: - if (lookahead == '*') ADVANCE(162); - if (lookahead != 0) ADVANCE(103); + if (lookahead == '*') ADVANCE(106); + if (lookahead == '/') ADVANCE(105); + if (lookahead != 0) ADVANCE(98); END_STATE(); case 106: - if (lookahead == '*') ADVANCE(114); - if (lookahead == '/') ADVANCE(106); - if (lookahead != 0) ADVANCE(163); + if (lookahead == '*') ADVANCE(108); + if (lookahead == '/') ADVANCE(264); + if (lookahead != 0) ADVANCE(242); END_STATE(); case 107: - if (lookahead == '*') ADVANCE(241); - if (lookahead == '/') ADVANCE(115); - if (lookahead != 0) ADVANCE(117); + if (lookahead == '*') ADVANCE(108); + if (lookahead == '/') ADVANCE(161); + if (lookahead != 0) ADVANCE(163); END_STATE(); case 108: - if (lookahead == '*') ADVANCE(241); - if (lookahead == '/') ADVANCE(128); - if (lookahead != 0) ADVANCE(116); + if (lookahead == '*') ADVANCE(108); + if (lookahead == '/') ADVANCE(102); + if (lookahead != 0) ADVANCE(102); END_STATE(); case 109: - if (lookahead == '*') ADVANCE(241); - if (lookahead == '/') ADVANCE(144); - if (lookahead != 0) ADVANCE(145); + if (lookahead == '*') ADVANCE(108); + if (lookahead != 0 && + lookahead != '/') ADVANCE(242); END_STATE(); case 110: - if (lookahead == '*') ADVANCE(111); + if (lookahead == '*') ADVANCE(113); if (lookahead == '/') ADVANCE(110); - if (lookahead != 0) ADVANCE(103); + if (lookahead != 0) ADVANCE(122); END_STATE(); case 111: if (lookahead == '*') ADVANCE(113); - if (lookahead == '/') ADVANCE(262); - if (lookahead != 0) ADVANCE(242); + if (lookahead == '/') ADVANCE(123); + if (lookahead != 0) ADVANCE(121); END_STATE(); case 112: if (lookahead == '*') ADVANCE(113); - if (lookahead == '/') ADVANCE(163); - if (lookahead != 0) ADVANCE(165); + if (lookahead == '/') ADVANCE(111); + if (lookahead != 0) ADVANCE(121); END_STATE(); case 113: - if (lookahead == '*') ADVANCE(113); - if (lookahead == '/') ADVANCE(107); - if (lookahead != 0) ADVANCE(107); + if (lookahead == '*') ADVANCE(116); + if (lookahead == '/') ADVANCE(161); + if (lookahead != 0) ADVANCE(114); END_STATE(); case 114: - if (lookahead == '*') ADVANCE(113); - if (lookahead != 0 && - lookahead != '/') ADVANCE(242); + if (lookahead == '*') ADVANCE(116); + if (lookahead == '/') ADVANCE(101); + if (lookahead != 0) ADVANCE(114); END_STATE(); case 115: - if (lookahead == '*') ADVANCE(118); - if (lookahead == '/') ADVANCE(115); - if (lookahead != 0) ADVANCE(127); + if (lookahead == '*') ADVANCE(116); + if (lookahead == '/') ADVANCE(162); + if (lookahead != 0) ADVANCE(114); END_STATE(); case 116: - if (lookahead == '*') ADVANCE(118); - if (lookahead == '/') ADVANCE(128); - if (lookahead != 0) ADVANCE(126); + if (lookahead == '*') ADVANCE(116); + if (lookahead == '/') ADVANCE(240); + if (lookahead != 0) ADVANCE(119); END_STATE(); case 117: - if (lookahead == '*') ADVANCE(118); - if (lookahead == '/') ADVANCE(116); - if (lookahead != 0) ADVANCE(126); + if (lookahead == '*') ADVANCE(116); + if (lookahead == '/') ADVANCE(102); + if (lookahead != 0) ADVANCE(120); END_STATE(); case 118: - if (lookahead == '*') ADVANCE(121); - if (lookahead == '/') ADVANCE(163); - if (lookahead != 0) ADVANCE(119); + if (lookahead == '*') ADVANCE(116); + if (lookahead == '/') ADVANCE(129); + if (lookahead != 0) ADVANCE(121); END_STATE(); case 119: - if (lookahead == '*') ADVANCE(121); - if (lookahead == '/') ADVANCE(106); - if (lookahead != 0) ADVANCE(119); + if (lookahead == '*') ADVANCE(116); + if (lookahead != 0 && + lookahead != '/') ADVANCE(119); END_STATE(); case 120: - if (lookahead == '*') ADVANCE(121); - if (lookahead == '/') ADVANCE(164); - if (lookahead != 0) ADVANCE(119); + if (lookahead == '*') ADVANCE(115); + if (lookahead == '/') ADVANCE(110); + if (lookahead != 0) ADVANCE(122); END_STATE(); case 121: - if (lookahead == '*') ADVANCE(121); - if (lookahead == '/') ADVANCE(240); - if (lookahead != 0) ADVANCE(124); + if (lookahead == '*') ADVANCE(115); + if (lookahead == '/') ADVANCE(123); + if (lookahead != 0) ADVANCE(121); END_STATE(); case 122: - if (lookahead == '*') ADVANCE(121); - if (lookahead == '/') ADVANCE(107); - if (lookahead != 0) ADVANCE(125); + if (lookahead == '*') ADVANCE(115); + if (lookahead == '/') ADVANCE(111); + if (lookahead != 0) ADVANCE(121); END_STATE(); case 123: - if (lookahead == '*') ADVANCE(121); - if (lookahead == '/') ADVANCE(134); - if (lookahead != 0) ADVANCE(126); + if (lookahead == '*') ADVANCE(147); + if (lookahead == '/') ADVANCE(123); + if (lookahead != 0) ADVANCE(121); END_STATE(); case 124: - if (lookahead == '*') ADVANCE(121); - if (lookahead != 0 && - lookahead != '/') ADVANCE(124); + if (lookahead == '*') ADVANCE(124); + if (lookahead == '/') ADVANCE(274); + if (lookahead != 0) ADVANCE(141); END_STATE(); case 125: - if (lookahead == '*') ADVANCE(120); - if (lookahead == '/') ADVANCE(115); - if (lookahead != 0) ADVANCE(127); + if (lookahead == '*') ADVANCE(124); + if (lookahead == '/') ADVANCE(268); + if (lookahead != 0) ADVANCE(142); END_STATE(); case 126: - if (lookahead == '*') ADVANCE(120); - if (lookahead == '/') ADVANCE(128); - if (lookahead != 0) ADVANCE(126); + if (lookahead == '*') ADVANCE(124); + if (lookahead == '/') ADVANCE(101); + if (lookahead != 0) ADVANCE(125); END_STATE(); case 127: - if (lookahead == '*') ADVANCE(120); - if (lookahead == '/') ADVANCE(116); - if (lookahead != 0) ADVANCE(126); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '/') ADVANCE(274); + if (lookahead != 0) ADVANCE(143); END_STATE(); case 128: - if (lookahead == '*') ADVANCE(152); - if (lookahead == '/') ADVANCE(128); - if (lookahead != 0) ADVANCE(126); + if (lookahead == '*') ADVANCE(128); + if (lookahead == '/') ADVANCE(269); + if (lookahead != 0) ADVANCE(138); END_STATE(); case 129: - if (lookahead == '*') ADVANCE(129); - if (lookahead == '/') ADVANCE(273); - if (lookahead != 0) ADVANCE(146); + if (lookahead == '*') ADVANCE(107); + if (lookahead == '/') ADVANCE(123); + if (lookahead != 0) ADVANCE(111); END_STATE(); case 130: - if (lookahead == '*') ADVANCE(129); - if (lookahead == '/') ADVANCE(266); - if (lookahead != 0) ADVANCE(147); + if (lookahead == '*') ADVANCE(133); + if (lookahead == '/') ADVANCE(274); + if (lookahead != 0) ADVANCE(130); END_STATE(); case 131: - if (lookahead == '*') ADVANCE(129); - if (lookahead == '/') ADVANCE(106); - if (lookahead != 0) ADVANCE(130); + if (lookahead == '*') ADVANCE(133); + if (lookahead == '/') ADVANCE(268); + if (lookahead != 0) ADVANCE(131); END_STATE(); case 132: if (lookahead == '*') ADVANCE(133); - if (lookahead == '/') ADVANCE(273); - if (lookahead != 0) ADVANCE(148); + if (lookahead == '/') ADVANCE(101); + if (lookahead != 0) ADVANCE(131); END_STATE(); case 133: if (lookahead == '*') ADVANCE(133); - if (lookahead == '/') ADVANCE(267); - if (lookahead != 0) ADVANCE(143); + if (lookahead == '/') ADVANCE(265); + if (lookahead != 0) ADVANCE(130); END_STATE(); case 134: - if (lookahead == '*') ADVANCE(112); - if (lookahead == '/') ADVANCE(128); - if (lookahead != 0) ADVANCE(116); + if (lookahead == '*') ADVANCE(133); + if (lookahead == '/') ADVANCE(266); + if (lookahead != 0) ADVANCE(131); END_STATE(); case 135: - if (lookahead == '*') ADVANCE(138); - if (lookahead == '/') ADVANCE(273); - if (lookahead != 0) ADVANCE(135); + if (lookahead == '*') ADVANCE(133); + if (lookahead == '/') ADVANCE(267); + if (lookahead != 0) ADVANCE(131); END_STATE(); case 136: - if (lookahead == '*') ADVANCE(138); - if (lookahead == '/') ADVANCE(266); - if (lookahead != 0) ADVANCE(136); + if (lookahead == '*') ADVANCE(133); + if (lookahead != 0 && + lookahead != '/') ADVANCE(130); END_STATE(); case 137: - if (lookahead == '*') ADVANCE(138); - if (lookahead == '/') ADVANCE(106); - if (lookahead != 0) ADVANCE(136); + if (lookahead == '*') ADVANCE(127); + if (lookahead == '/') ADVANCE(101); + if (lookahead != 0) ADVANCE(125); END_STATE(); case 138: - if (lookahead == '*') ADVANCE(138); - if (lookahead == '/') ADVANCE(263); - if (lookahead != 0) ADVANCE(135); + if (lookahead == '*') ADVANCE(134); + if (lookahead == '/') ADVANCE(269); + if (lookahead != 0) ADVANCE(146); END_STATE(); case 139: - if (lookahead == '*') ADVANCE(138); - if (lookahead == '/') ADVANCE(264); - if (lookahead != 0) ADVANCE(136); + if (lookahead == '*') ADVANCE(134); + if (lookahead == '/') ADVANCE(110); + if (lookahead != 0) ADVANCE(146); END_STATE(); case 140: - if (lookahead == '*') ADVANCE(138); - if (lookahead == '/') ADVANCE(265); - if (lookahead != 0) ADVANCE(136); + if (lookahead == '*') ADVANCE(134); + if (lookahead == '/') ADVANCE(111); + if (lookahead != 0) ADVANCE(145); END_STATE(); case 141: - if (lookahead == '*') ADVANCE(138); - if (lookahead != 0 && - lookahead != '/') ADVANCE(135); + if (lookahead == '*') ADVANCE(130); + if (lookahead == '/') ADVANCE(274); + if (lookahead != 0) ADVANCE(130); END_STATE(); case 142: - if (lookahead == '*') ADVANCE(132); - if (lookahead == '/') ADVANCE(106); - if (lookahead != 0) ADVANCE(130); + if (lookahead == '*') ADVANCE(130); + if (lookahead == '/') ADVANCE(268); + if (lookahead != 0) ADVANCE(131); END_STATE(); case 143: - if (lookahead == '*') ADVANCE(139); - if (lookahead == '/') ADVANCE(267); - if (lookahead != 0) ADVANCE(151); + if (lookahead == '*') ADVANCE(130); + if (lookahead == '/') ADVANCE(269); + if (lookahead != 0) ADVANCE(144); END_STATE(); case 144: - if (lookahead == '*') ADVANCE(139); - if (lookahead == '/') ADVANCE(115); - if (lookahead != 0) ADVANCE(151); + if (lookahead == '*') ADVANCE(135); + if (lookahead == '/') ADVANCE(269); + if (lookahead != 0) ADVANCE(146); END_STATE(); case 145: - if (lookahead == '*') ADVANCE(139); - if (lookahead == '/') ADVANCE(116); - if (lookahead != 0) ADVANCE(150); + if (lookahead == '*') ADVANCE(135); + if (lookahead == '/') ADVANCE(271); + if (lookahead != 0) ADVANCE(145); END_STATE(); case 146: if (lookahead == '*') ADVANCE(135); - if (lookahead == '/') ADVANCE(273); - if (lookahead != 0) ADVANCE(135); + if (lookahead == '/') ADVANCE(270); + if (lookahead != 0) ADVANCE(145); END_STATE(); case 147: - if (lookahead == '*') ADVANCE(135); - if (lookahead == '/') ADVANCE(266); - if (lookahead != 0) ADVANCE(136); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '/') ADVANCE(161); + if (lookahead != 0) ADVANCE(118); END_STATE(); case 148: - if (lookahead == '*') ADVANCE(135); - if (lookahead == '/') ADVANCE(267); - if (lookahead != 0) ADVANCE(149); + if (lookahead == '*') ADVANCE(148); + if (lookahead == '/') ADVANCE(104); + if (lookahead != 0) ADVANCE(120); END_STATE(); case 149: - if (lookahead == '*') ADVANCE(140); - if (lookahead == '/') ADVANCE(267); - if (lookahead != 0) ADVANCE(151); + if (lookahead == '*') ADVANCE(148); + if (lookahead != 0 && + lookahead != '/') ADVANCE(117); END_STATE(); case 150: - if (lookahead == '*') ADVANCE(140); - if (lookahead == '/') ADVANCE(269); - if (lookahead != 0) ADVANCE(150); + if (lookahead == '-') ADVANCE(345); END_STATE(); case 151: - if (lookahead == '*') ADVANCE(140); - if (lookahead == '/') ADVANCE(268); - if (lookahead != 0) ADVANCE(150); + if (lookahead == '-') ADVANCE(345); + if (lookahead == '<') ADVANCE(170); END_STATE(); case 152: - if (lookahead == '*') ADVANCE(153); - if (lookahead == '/') ADVANCE(163); - if (lookahead != 0) ADVANCE(123); + if (lookahead == '.') ADVANCE(322); END_STATE(); case 153: - if (lookahead == '*') ADVANCE(153); - if (lookahead == '/') ADVANCE(109); - if (lookahead != 0) ADVANCE(125); + if (lookahead == '.') ADVANCE(152); END_STATE(); case 154: - if (lookahead == '*') ADVANCE(153); - if (lookahead != 0 && - lookahead != '/') ADVANCE(122); + if (lookahead == '.') ADVANCE(215); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(204); + if (lookahead == '_') ADVANCE(216); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(154); END_STATE(); case 155: - if (lookahead == '-') ADVANCE(344); + if (lookahead == '.') ADVANCE(223); + if (lookahead == '_') ADVANCE(222); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(390); END_STATE(); case 156: - if (lookahead == '-') ADVANCE(344); - if (lookahead == '<') ADVANCE(172); + if (lookahead == '/') ADVANCE(272); + if (lookahead != 0 && + lookahead != '*') ADVANCE(161); END_STATE(); case 157: - if (lookahead == '.') ADVANCE(321); + if (lookahead == '/') ADVANCE(264); END_STATE(); case 158: - if (lookahead == '.') ADVANCE(157); + if (lookahead == '/') ADVANCE(95); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(158) END_STATE(); case 159: - if (lookahead == '.') ADVANCE(216); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(205); - if (lookahead == '_') ADVANCE(217); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(159); + if (lookahead == '/') ADVANCE(791); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(844); + if (lookahead != 0 && + lookahead != '{' && + lookahead != '}') ADVANCE(849); END_STATE(); case 160: - if (lookahead == '.') ADVANCE(224); - if (lookahead == '_') ADVANCE(223); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(389); + if (lookahead == '/') ADVANCE(719); + if (lookahead == '\n' || + lookahead == '\r') SKIP(158) + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(775); + if (lookahead != 0 && + lookahead != '\\') ADVANCE(780); END_STATE(); case 161: - if (lookahead == '/') ADVANCE(270); + if (lookahead == '/') ADVANCE(101); if (lookahead != 0 && - lookahead != '*') ADVANCE(163); + lookahead != '*') ADVANCE(161); END_STATE(); case 162: - if (lookahead == '/') ADVANCE(262); + if (lookahead == '/') ADVANCE(137); + if (lookahead != 0 && + lookahead != '*') ADVANCE(126); END_STATE(); case 163: - if (lookahead == '/') ADVANCE(106); + if (lookahead == '/') ADVANCE(129); if (lookahead != 0 && - lookahead != '*') ADVANCE(163); + lookahead != '*') ADVANCE(103); END_STATE(); case 164: - if (lookahead == '/') ADVANCE(142); - if (lookahead != 0 && - lookahead != '*') ADVANCE(131); + if (lookahead == '=') ADVANCE(319); END_STATE(); case 165: - if (lookahead == '/') ADVANCE(134); - if (lookahead != 0 && - lookahead != '*') ADVANCE(108); + if (lookahead == '=') ADVANCE(379); END_STATE(); case 166: - if (lookahead == '=') ADVANCE(318); + if (lookahead == '=') ADVANCE(389); END_STATE(); case 167: - if (lookahead == '=') ADVANCE(378); + if (lookahead == '=') ADVANCE(318); END_STATE(); case 168: - if (lookahead == '=') ADVANCE(388); + if (lookahead == '=') ADVANCE(387); END_STATE(); case 169: - if (lookahead == '=') ADVANCE(317); + if (lookahead == '=') ADVANCE(384); END_STATE(); case 170: - if (lookahead == '=') ADVANCE(386); + if (lookahead == '=') ADVANCE(380); END_STATE(); case 171: - if (lookahead == '=') ADVANCE(383); + if (lookahead == '=') ADVANCE(381); + if (lookahead == '>') ADVANCE(172); END_STATE(); case 172: - if (lookahead == '=') ADVANCE(379); + if (lookahead == '=') ADVANCE(382); END_STATE(); case 173: - if (lookahead == '=') ADVANCE(380); - if (lookahead == '>') ADVANCE(174); + if (lookahead == '>') ADVANCE(171); END_STATE(); case 174: - if (lookahead == '=') ADVANCE(381); - END_STATE(); - case 175: - if (lookahead == '>') ADVANCE(173); - END_STATE(); - case 176: - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || @@ -11809,14 +11789,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('j' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'e') ADVANCE(699); - if (lookahead == 'f') ADVANCE(702); - if (lookahead == 'i') ADVANCE(698); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'e') ADVANCE(692); + if (lookahead == 'f') ADVANCE(695); + if (lookahead == 'i') ADVANCE(691); END_STATE(); - case 177: - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); + case 175: + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || @@ -11824,13 +11804,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('j' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'e') ADVANCE(699); - if (lookahead == 'i') ADVANCE(698); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'e') ADVANCE(692); + if (lookahead == 'i') ADVANCE(691); END_STATE(); - case 178: - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); + case 176: + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'e') || @@ -11839,217 +11819,225 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('j' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'f') ADVANCE(702); - if (lookahead == 'i') ADVANCE(698); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'f') ADVANCE(695); + if (lookahead == 'i') ADVANCE(691); END_STATE(); - case 179: - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); + case 177: + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); 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(710); - if (lookahead == 'e') ADVANCE(699); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'e') ADVANCE(692); END_STATE(); - case 180: - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); + case 178: + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); 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(710); - if (lookahead == 'i') ADVANCE(698); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'i') ADVANCE(691); END_STATE(); - case 181: - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); + case 179: + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); END_STATE(); - case 182: - if (lookahead == 'J') ADVANCE(694); + case 180: + if (lookahead == 'J') ADVANCE(687); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); END_STATE(); - case 183: - if (lookahead == '_') ADVANCE(210); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(393); + case 181: + if (lookahead == '[') ADVANCE(366); END_STATE(); - case 184: - if (lookahead == '_') ADVANCE(208); + case 182: + if (lookahead == '_') ADVANCE(209); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(394); + END_STATE(); + case 183: + if (lookahead == '_') ADVANCE(207); if (lookahead == '0' || - lookahead == '1') ADVANCE(395); + lookahead == '1') ADVANCE(396); END_STATE(); - case 185: - if (lookahead == '_') ADVANCE(222); + case 184: + if (lookahead == '_') ADVANCE(221); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(396); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(397); + END_STATE(); + case 185: + if (lookahead == '`') ADVANCE(401); END_STATE(); case 186: - if (lookahead == '`') ADVANCE(400); + if (lookahead == '`') ADVANCE(401); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(210); END_STATE(); case 187: - if (lookahead == '`') ADVANCE(400); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(211); + if (lookahead == 'c') ADVANCE(199); END_STATE(); case 188: - if (lookahead == 'c') ADVANCE(200); + if (lookahead == 'd') ADVANCE(190); END_STATE(); case 189: if (lookahead == 'd') ADVANCE(191); END_STATE(); case 190: - if (lookahead == 'd') ADVANCE(192); + if (lookahead == 'e') ADVANCE(187); END_STATE(); case 191: - if (lookahead == 'e') ADVANCE(188); + if (lookahead == 'e') ADVANCE(336); END_STATE(); case 192: - if (lookahead == 'e') ADVANCE(335); + if (lookahead == 'e') ADVANCE(196); END_STATE(); case 193: - if (lookahead == 'e') ADVANCE(197); + if (lookahead == 'e') ADVANCE(196); + if (lookahead == 'i') ADVANCE(195); END_STATE(); case 194: - if (lookahead == 'e') ADVANCE(197); - if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'e') ADVANCE(369); END_STATE(); case 195: - if (lookahead == 'e') ADVANCE(368); + if (lookahead == 'f') ADVANCE(367); END_STATE(); case 196: - if (lookahead == 'f') ADVANCE(366); + if (lookahead == 'l') ADVANCE(202); END_STATE(); case 197: - if (lookahead == 'l') ADVANCE(203); + if (lookahead == 'n') ADVANCE(376); + if (lookahead == 's') ADVANCE(373); END_STATE(); case 198: - if (lookahead == 'n') ADVANCE(375); - if (lookahead == 's') ADVANCE(372); + if (lookahead == 'n') ADVANCE(374); + if (lookahead == 's') ADVANCE(371); END_STATE(); case 199: - if (lookahead == 'n') ADVANCE(373); - if (lookahead == 's') ADVANCE(370); + if (lookahead == 'o') ADVANCE(189); END_STATE(); case 200: - if (lookahead == 'o') ADVANCE(190); + if (lookahead == 'r') ADVANCE(358); END_STATE(); case 201: - if (lookahead == 'r') ADVANCE(357); + if (lookahead == 's') ADVANCE(283); END_STATE(); case 202: - if (lookahead == 's') ADVANCE(282); + if (lookahead == 's') ADVANCE(194); END_STATE(); case 203: - if (lookahead == 's') ADVANCE(195); + if (lookahead == '{') ADVANCE(851); END_STATE(); case 204: - if (lookahead == '{') ADVANCE(860); - END_STATE(); - case 205: if (lookahead == '+' || - lookahead == '-') ADVANCE(218); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(398); + lookahead == '-') ADVANCE(217); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(399); END_STATE(); - case 206: + case 205: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(205); - if (lookahead == '_') ADVANCE(224); + lookahead == 'p') ADVANCE(204); + if (lookahead == '_') ADVANCE(223); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(206); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(205); END_STATE(); - case 207: + case 206: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(205); + lookahead == 'p') ADVANCE(204); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(206); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(205); END_STATE(); - case 208: + case 207: if (lookahead == '0' || - lookahead == '1') ADVANCE(395); + lookahead == '1') ADVANCE(396); END_STATE(); - case 209: + case 208: if (lookahead == '8' || - lookahead == '9') ADVANCE(159); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(391); + lookahead == '9') ADVANCE(154); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(392); + END_STATE(); + case 209: + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(394); END_STATE(); case 210: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(393); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(185); END_STATE(); case 211: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(186); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(210); END_STATE(); case 212: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(211); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(395); END_STATE(); case 213: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(394); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(360); END_STATE(); case 214: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(359); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(393); END_STATE(); case 215: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(392); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(400); END_STATE(); case 216: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(154); END_STATE(); case 217: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(159); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(399); END_STATE(); case 218: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (sym_rune_literal_character_set_1(lookahead)) ADVANCE(185); + if (lookahead == '0') ADVANCE(186); + if (lookahead == 'U') ADVANCE(236); + if (lookahead == 'u') ADVANCE(229); + if (lookahead == 'x') ADVANCE(225); + if (('1' <= lookahead && lookahead <= '7')) ADVANCE(211); END_STATE(); case 219: - if (sym_rune_literal_character_set_1(lookahead)) ADVANCE(186); - if (lookahead == '0') ADVANCE(187); - if (lookahead == 'U') ADVANCE(237); - if (lookahead == 'u') ADVANCE(230); - if (lookahead == 'x') ADVANCE(226); - if (('1' <= lookahead && lookahead <= '7')) ADVANCE(212); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(360); END_STATE(); case 220: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(359); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(185); END_STATE(); case 221: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(186); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(397); END_STATE(); case 222: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(396); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(390); END_STATE(); case 223: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(389); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(205); END_STATE(); case 224: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(206); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(219); END_STATE(); case 225: if (('0' <= lookahead && lookahead <= '9') || @@ -12059,47 +12047,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 226: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(221); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(225); END_STATE(); case 227: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(226); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(224); END_STATE(); case 228: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(225); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(227); END_STATE(); case 229: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(228); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(226); END_STATE(); case 230: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(227); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(229); END_STATE(); case 231: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(230); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(228); END_STATE(); case 232: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(229); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(231); END_STATE(); case 233: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(232); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(230); END_STATE(); case 234: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(231); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(232); END_STATE(); case 235: if (('0' <= lookahead && lookahead <= '9') || @@ -12109,22 +12097,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 236: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(234); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(235); END_STATE(); case 237: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(236); - END_STATE(); - case 238: if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); END_STATE(); - case 239: + case 238: if (lookahead != 0 && lookahead != '\t' && (lookahead < 11 || '\r' < lookahead) && @@ -12132,12 +12115,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '0' || '9' < lookahead) && lookahead != 'U' && lookahead != 'u' && - lookahead != 'x') ADVANCE(359); + lookahead != 'x') ADVANCE(360); if (lookahead == '\r') ADVANCE(1); - if (lookahead == 'U') ADVANCE(361); - if (lookahead == 'u') ADVANCE(363); - if (lookahead == 'x') ADVANCE(362); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(360); + if (lookahead == 'U') ADVANCE(362); + if (lookahead == 'u') ADVANCE(364); + if (lookahead == 'x') ADVANCE(363); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(361); + END_STATE(); + case 239: + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\\') ADVANCE(263); END_STATE(); case 240: if (lookahead != 0 && @@ -12145,741 +12134,777 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 241: if (lookahead != 0 && - lookahead != '*') ADVANCE(163); + lookahead != '*') ADVANCE(161); END_STATE(); case 242: if (lookahead != 0 && - lookahead != '*') ADVANCE(107); + lookahead != '*') ADVANCE(102); END_STATE(); case 243: if (lookahead != 0 && - lookahead != '/') ADVANCE(129); + lookahead != '/') ADVANCE(124); END_STATE(); case 244: if (lookahead != 0 && - lookahead != '\\') ADVANCE(186); - if (lookahead == '\\') ADVANCE(219); + lookahead != '\\') ADVANCE(185); + if (lookahead == '\\') ADVANCE(218); END_STATE(); case 245: - if (eof) ADVANCE(259); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(716); - if (lookahead == '$') ADVANCE(178); + if (eof) ADVANCE(260); + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '"') ADVANCE(852); + if (lookahead == '#') ADVANCE(711); + if (lookahead == '$') ADVANCE(176); + if (lookahead == '%') ADVANCE(308); + if (lookahead == '&') ADVANCE(342); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(282); + if (lookahead == '/') ADVANCE(306); + if (lookahead == '0') ADVANCE(391); + if (lookahead == ':') ADVANCE(329); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(309); + if (lookahead == '=') ADVANCE(291); + if (lookahead == '>') ADVANCE(316); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(680); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); + if (lookahead == '^') ADVANCE(340); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(703); + if (lookahead == '`') ADVANCE(244); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'j') ADVANCE(701); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == 'r') ADVANCE(683); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '}') ADVANCE(287); + if (lookahead == '~') ADVANCE(338); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(246) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); + END_STATE(); + case 246: + if (eof) ADVANCE(260); + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '"') ADVANCE(852); + if (lookahead == '#') ADVANCE(711); + if (lookahead == '$') ADVANCE(176); + if (lookahead == '%') ADVANCE(308); + if (lookahead == '&') ADVANCE(342); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(282); + if (lookahead == '/') ADVANCE(306); + if (lookahead == '0') ADVANCE(391); + if (lookahead == ':') ADVANCE(329); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(309); + if (lookahead == '=') ADVANCE(291); + if (lookahead == '>') ADVANCE(316); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(680); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == '^') ADVANCE(340); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(703); + if (lookahead == '`') ADVANCE(244); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'j') ADVANCE(701); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == 'r') ADVANCE(683); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '}') ADVANCE(287); + if (lookahead == '~') ADVANCE(338); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(246) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); + END_STATE(); + case 247: + if (eof) ADVANCE(260); + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '"') ADVANCE(852); + if (lookahead == '#') ADVANCE(711); + if (lookahead == '$') ADVANCE(176); if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '(') ADVANCE(288); if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); + if (lookahead == ',') ADVANCE(286); if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(281); + if (lookahead == '.') ADVANCE(282); if (lookahead == '/') ADVANCE(305); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); + if (lookahead == '0') ADVANCE(391); + if (lookahead == '<') ADVANCE(310); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(680); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(703); if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); - if (lookahead == '~') ADVANCE(337); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'j') ADVANCE(701); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == 'r') ADVANCE(683); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(246) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == ' ') SKIP(248) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); END_STATE(); - case 246: - if (eof) ADVANCE(259); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(716); - if (lookahead == '$') ADVANCE(178); + case 248: + if (eof) ADVANCE(260); + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '"') ADVANCE(852); + if (lookahead == '#') ADVANCE(711); + if (lookahead == '$') ADVANCE(176); if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '(') ADVANCE(288); if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); + if (lookahead == ',') ADVANCE(286); if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(281); + if (lookahead == '.') ADVANCE(282); if (lookahead == '/') ADVANCE(305); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); + if (lookahead == '0') ADVANCE(391); + if (lookahead == '<') ADVANCE(310); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(680); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(703); if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); - if (lookahead == '~') ADVANCE(337); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'j') ADVANCE(701); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == 'r') ADVANCE(683); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(246) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == ' ') SKIP(248) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); END_STATE(); - case 247: - if (eof) ADVANCE(259); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(716); - if (lookahead == '$') ADVANCE(178); - if (lookahead == '%') ADVANCE(306); + case 249: + if (eof) ADVANCE(260); + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '"') ADVANCE(852); + if (lookahead == '#') ADVANCE(711); + if (lookahead == '$') ADVANCE(174); + if (lookahead == '%') ADVANCE(308); if (lookahead == '&') ADVANCE(342); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '0') ADVANCE(390); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(282); + if (lookahead == '/') ADVANCE(306); + if (lookahead == '0') ADVANCE(391); + if (lookahead == ':') ADVANCE(166); if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); + if (lookahead == '=') ADVANCE(291); if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(680); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); + if (lookahead == '^') ADVANCE(340); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(703); if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'j') ADVANCE(701); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == 'r') ADVANCE(683); + if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(337); + if (lookahead == '~') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(248) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == ' ') SKIP(250) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); END_STATE(); - case 248: - if (eof) ADVANCE(259); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(716); - if (lookahead == '$') ADVANCE(178); - if (lookahead == '%') ADVANCE(306); + case 250: + if (eof) ADVANCE(260); + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '"') ADVANCE(852); + if (lookahead == '#') ADVANCE(711); + if (lookahead == '$') ADVANCE(174); + if (lookahead == '%') ADVANCE(308); if (lookahead == '&') ADVANCE(342); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '0') ADVANCE(390); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(282); + if (lookahead == '/') ADVANCE(306); + if (lookahead == '0') ADVANCE(391); + if (lookahead == ':') ADVANCE(166); if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); + if (lookahead == '=') ADVANCE(291); if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(680); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == '^') ADVANCE(340); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(703); if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'j') ADVANCE(701); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == 'r') ADVANCE(683); + if (lookahead == '{') ADVANCE(285); if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(337); + if (lookahead == '~') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(248) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == ' ') SKIP(250) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); END_STATE(); - case 249: - if (eof) ADVANCE(259); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(716); - if (lookahead == '$') ADVANCE(176); + case 251: + if (eof) ADVANCE(260); + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '"') ADVANCE(852); + if (lookahead == '#') ADVANCE(711); + if (lookahead == '$') ADVANCE(174); if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '(') ADVANCE(288); if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); + if (lookahead == ',') ADVANCE(286); if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(281); + if (lookahead == '.') ADVANCE(282); if (lookahead == '/') ADVANCE(305); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); + if (lookahead == '0') ADVANCE(391); + if (lookahead == '<') ADVANCE(310); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(680); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(703); if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '~') ADVANCE(337); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'j') ADVANCE(701); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == 'r') ADVANCE(683); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(250) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == ' ') SKIP(252) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); END_STATE(); - case 250: - if (eof) ADVANCE(259); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(716); - if (lookahead == '$') ADVANCE(176); + case 252: + if (eof) ADVANCE(260); + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '"') ADVANCE(852); + if (lookahead == '#') ADVANCE(711); + if (lookahead == '$') ADVANCE(174); if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); + if (lookahead == '&') ADVANCE(343); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '(') ADVANCE(288); if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); + if (lookahead == ',') ADVANCE(286); if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(281); + if (lookahead == '.') ADVANCE(282); if (lookahead == '/') ADVANCE(305); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); + if (lookahead == '0') ADVANCE(391); + if (lookahead == '<') ADVANCE(310); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '>') ADVANCE(317); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(680); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(703); if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '~') ADVANCE(337); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'j') ADVANCE(701); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == 'r') ADVANCE(683); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(294); + if (lookahead == '~') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(250) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == ' ') SKIP(252) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); END_STATE(); - case 251: - if (eof) ADVANCE(259); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); + case 253: + if (eof) ADVANCE(260); + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(716); + if (lookahead == '"') ADVANCE(852); + if (lookahead == '#') ADVANCE(708); if (lookahead == '$') ADVANCE(176); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '0') ADVANCE(390); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); + if (lookahead == '%') ADVANCE(165); + if (lookahead == '&') ADVANCE(344); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(298); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '.') ADVANCE(282); + if (lookahead == '/') ADVANCE(96); + if (lookahead == '0') ADVANCE(391); + if (lookahead == ':') ADVANCE(166); + if (lookahead == '<') ADVANCE(151); + if (lookahead == '=') ADVANCE(290); + if (lookahead == '>') ADVANCE(173); if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); + if (lookahead == '@') ADVANCE(680); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == '^') ADVANCE(340); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(703); if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(337); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'j') ADVANCE(701); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'r') ADVANCE(683); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(168); + if (lookahead == '~') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(252) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == ' ') SKIP(253) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); END_STATE(); - case 252: - if (eof) ADVANCE(259); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); + case 254: + if (eof) ADVANCE(260); + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(716); + if (lookahead == '"') ADVANCE(852); + if (lookahead == '#') ADVANCE(708); if (lookahead == '$') ADVANCE(176); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); + if (lookahead == '&') ADVANCE(341); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '(') ADVANCE(288); + if (lookahead == ')') ADVANCE(289); + if (lookahead == '*') ADVANCE(303); if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); + if (lookahead == ',') ADVANCE(286); if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '0') ADVANCE(390); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); + if (lookahead == '.') ADVANCE(282); + if (lookahead == '/') ADVANCE(95); + if (lookahead == '0') ADVANCE(391); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(150); if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(252) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 253: - if (eof) ADVANCE(259); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(333); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(715); - if (lookahead == '$') ADVANCE(178); - if (lookahead == '%') ADVANCE(167); - if (lookahead == '&') ADVANCE(343); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(297); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(301); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(101); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(156); - if (lookahead == '=') ADVANCE(289); - if (lookahead == '>') ADVANCE(175); - if (lookahead == '?') ADVANCE(331); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); + if (lookahead == '@') ADVANCE(680); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(170); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(253) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 254: - if (eof) ADVANCE(259); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(333); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(715); - if (lookahead == '$') ADVANCE(178); - if (lookahead == '&') ADVANCE(340); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(294); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(298); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(155); - if (lookahead == '?') ADVANCE(331); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(710); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(703); if (lookahead == '`') ADVANCE(244); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(291); - if (lookahead == '}') ADVANCE(286); - if (lookahead == '~') ADVANCE(337); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'j') ADVANCE(701); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'r') ADVANCE(683); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(292); + if (lookahead == '}') ADVANCE(287); + if (lookahead == '~') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(254) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); END_STATE(); case 255: - if (eof) ADVANCE(259); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(333); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(715); - if (lookahead == '$') ADVANCE(178); - if (lookahead == '&') ADVANCE(340); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(294); - if (lookahead == '-') ADVANCE(298); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '0') ADVANCE(390); - if (lookahead == '<') ADVANCE(155); - if (lookahead == '?') ADVANCE(331); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(710); + if (eof) ADVANCE(260); + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(334); + if (lookahead == '"') ADVANCE(852); + if (lookahead == '#') ADVANCE(708); + if (lookahead == '$') ADVANCE(176); + if (lookahead == '&') ADVANCE(341); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '+') ADVANCE(295); + if (lookahead == '-') ADVANCE(299); + if (lookahead == '.') ADVANCE(282); + if (lookahead == '/') ADVANCE(95); + if (lookahead == '0') ADVANCE(391); + if (lookahead == '<') ADVANCE(150); + if (lookahead == '?') ADVANCE(332); + if (lookahead == '@') ADVANCE(680); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(323); + if (lookahead == '^') ADVANCE(339); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(703); if (lookahead == '`') ADVANCE(244); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(291); - if (lookahead == '~') ADVANCE(337); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'j') ADVANCE(701); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'r') ADVANCE(683); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(292); + if (lookahead == '~') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(256) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); END_STATE(); case 256: - if (eof) ADVANCE(259); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(333); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(715); - if (lookahead == '$') ADVANCE(178); - if (lookahead == '&') ADVANCE(340); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(294); - if (lookahead == '-') ADVANCE(298); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '0') ADVANCE(390); - if (lookahead == '<') ADVANCE(155); - if (lookahead == '?') ADVANCE(331); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(710); + if (eof) ADVANCE(260); + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); + if (lookahead == '!') ADVANCE(334); + if (lookahead == '"') ADVANCE(852); + if (lookahead == '#') ADVANCE(708); + if (lookahead == '$') ADVANCE(176); + if (lookahead == '&') ADVANCE(341); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '+') ADVANCE(295); + if (lookahead == '-') ADVANCE(299); + if (lookahead == '.') ADVANCE(282); + if (lookahead == '/') ADVANCE(95); + if (lookahead == '0') ADVANCE(391); + if (lookahead == '<') ADVANCE(150); + if (lookahead == '?') ADVANCE(332); + if (lookahead == '@') ADVANCE(680); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == '^') ADVANCE(339); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(703); if (lookahead == '`') ADVANCE(244); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(291); - if (lookahead == '~') ADVANCE(337); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'j') ADVANCE(701); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'r') ADVANCE(683); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(292); + if (lookahead == '~') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(256) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); END_STATE(); case 257: - if (eof) ADVANCE(259); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(716); - if (lookahead == '$') ADVANCE(355); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(276); - if (lookahead == '/') ADVANCE(305); - if (lookahead == '0') ADVANCE(686); - if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '\\') ADVANCE(239); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(710); + if (eof) ADVANCE(260); + if (lookahead == '!') ADVANCE(335); + if (lookahead == '"') ADVANCE(852); + if (lookahead == '#') ADVANCE(710); + if (lookahead == '$') ADVANCE(356); + if (lookahead == '%') ADVANCE(308); + if (lookahead == '&') ADVANCE(342); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '(') ADVANCE(288); + if (lookahead == ')') ADVANCE(289); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '+') ADVANCE(297); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '.') ADVANCE(277); + if (lookahead == '/') ADVANCE(306); + if (lookahead == '0') ADVANCE(679); + if (lookahead == ':') ADVANCE(329); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(309); + if (lookahead == '=') ADVANCE(291); + if (lookahead == '>') ADVANCE(316); + if (lookahead == '?') ADVANCE(333); + if (lookahead == '@') ADVANCE(680); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == '\\') ADVANCE(238); + if (lookahead == ']') ADVANCE(327); + if (lookahead == '^') ADVANCE(340); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(703); if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); - if (lookahead == '~') ADVANCE(337); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'i') ADVANCE(689); + if (lookahead == 'j') ADVANCE(701); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'o') ADVANCE(697); + if (lookahead == 'r') ADVANCE(683); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '|') ADVANCE(293); + if (lookahead == '}') ADVANCE(287); + if (lookahead == '~') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(257) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); END_STATE(); case 258: - if (eof) ADVANCE(259); - if (lookahead == '!') ADVANCE(333); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(715); - if (lookahead == '$') ADVANCE(178); - if (lookahead == '&') ADVANCE(340); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(294); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(298); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(155); - if (lookahead == '>') ADVANCE(313); - if (lookahead == '?') ADVANCE(331); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(710); + if (eof) ADVANCE(260); + if (lookahead == '!') ADVANCE(334); + if (lookahead == '"') ADVANCE(852); + if (lookahead == '#') ADVANCE(709); + if (lookahead == '$') ADVANCE(176); + if (lookahead == '&') ADVANCE(341); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '+') ADVANCE(295); + if (lookahead == ',') ADVANCE(286); + if (lookahead == '-') ADVANCE(299); + if (lookahead == '.') ADVANCE(282); + if (lookahead == '/') ADVANCE(95); + if (lookahead == '0') ADVANCE(391); + if (lookahead == ';') ADVANCE(275); + if (lookahead == '<') ADVANCE(150); + if (lookahead == '>') ADVANCE(314); + if (lookahead == '?') ADVANCE(332); + if (lookahead == '@') ADVANCE(680); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == ']') ADVANCE(327); + if (lookahead == '^') ADVANCE(339); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(703); if (lookahead == '`') ADVANCE(244); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '}') ADVANCE(286); - if (lookahead == '~') ADVANCE(337); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'j') ADVANCE(701); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'r') ADVANCE(683); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '~') ADVANCE(338); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(258) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); END_STATE(); case 259: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(260); + if (lookahead == '!') ADVANCE(334); + if (lookahead == '"') ADVANCE(852); + if (lookahead == '#') ADVANCE(708); + if (lookahead == '$') ADVANCE(176); + if (lookahead == '&') ADVANCE(341); + if (lookahead == '\'') ADVANCE(853); + if (lookahead == '(') ADVANCE(288); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '+') ADVANCE(295); + if (lookahead == '-') ADVANCE(299); + if (lookahead == '.') ADVANCE(282); + if (lookahead == '/') ADVANCE(95); + if (lookahead == '0') ADVANCE(391); + if (lookahead == '<') ADVANCE(150); + if (lookahead == '?') ADVANCE(332); + if (lookahead == '@') ADVANCE(680); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(337); + if (lookahead == '^') ADVANCE(339); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(703); + if (lookahead == '`') ADVANCE(244); + if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'j') ADVANCE(701); + if (lookahead == 'm') ADVANCE(702); + if (lookahead == 'r') ADVANCE(683); + if (lookahead == '{') ADVANCE(285); + if (lookahead == '}') ADVANCE(287); + if (lookahead == '~') ADVANCE(338); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(259) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(393); END_STATE(); case 260: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 261: - ACCEPT_TOKEN(anon_sym_CR); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); END_STATE(); case 262: - ACCEPT_TOKEN(sym_comment); + ACCEPT_TOKEN(anon_sym_CR); + if (lookahead == '\n') ADVANCE(261); + if (lookahead == '\r') ADVANCE(262); END_STATE(); case 263: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(124); - if (lookahead == '/') ADVANCE(243); - if (lookahead != 0) ADVANCE(141); + ACCEPT_TOKEN(sym_shebang); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\\') ADVANCE(263); END_STATE(); case 264: ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(124); - if (lookahead == '/') ADVANCE(106); - if (lookahead != 0) ADVANCE(119); END_STATE(); case 265: ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(124); - if (lookahead == '/') ADVANCE(142); - if (lookahead != 0) ADVANCE(137); + if (lookahead == '*') ADVANCE(119); + if (lookahead == '/') ADVANCE(243); + if (lookahead != 0) ADVANCE(136); END_STATE(); case 266: ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(154); - if (lookahead == '/') ADVANCE(106); - if (lookahead != 0) ADVANCE(119); + if (lookahead == '*') ADVANCE(119); + if (lookahead == '/') ADVANCE(101); + if (lookahead != 0) ADVANCE(114); END_STATE(); case 267: ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(118); - if (lookahead == '/') ADVANCE(115); - if (lookahead != 0) ADVANCE(127); + if (lookahead == '*') ADVANCE(119); + if (lookahead == '/') ADVANCE(137); + if (lookahead != 0) ADVANCE(132); END_STATE(); case 268: ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(118); - if (lookahead == '/') ADVANCE(128); - if (lookahead != 0) ADVANCE(126); + if (lookahead == '*') ADVANCE(149); + if (lookahead == '/') ADVANCE(101); + if (lookahead != 0) ADVANCE(114); END_STATE(); case 269: ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(152); - if (lookahead == '/') ADVANCE(128); - if (lookahead != 0) ADVANCE(126); + if (lookahead == '*') ADVANCE(113); + if (lookahead == '/') ADVANCE(110); + if (lookahead != 0) ADVANCE(122); END_STATE(); case 270: ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(106); - if (lookahead != 0 && - lookahead != '*') ADVANCE(163); + if (lookahead == '*') ADVANCE(113); + if (lookahead == '/') ADVANCE(123); + if (lookahead != 0) ADVANCE(121); END_STATE(); case 271: ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(271); + if (lookahead == '*') ADVANCE(147); + if (lookahead == '/') ADVANCE(123); + if (lookahead != 0) ADVANCE(121); END_STATE(); case 272: ACCEPT_TOKEN(sym_comment); + if (lookahead == '/') ADVANCE(101); if (lookahead != 0 && - lookahead != '\n') ADVANCE(272); + lookahead != '*') ADVANCE(161); END_STATE(); case 273: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '/') ADVANCE(124); + lookahead != '\n' && + lookahead != '\r') ADVANCE(273); END_STATE(); case 274: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '/') ADVANCE(119); END_STATE(); case 275: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 276: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(714); END_STATE(); case 277: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(157); + if (lookahead == '.') ADVANCE(707); END_STATE(); case 278: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(157); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(399); + if (lookahead == '.') ADVANCE(152); END_STATE(); case 279: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(713); + if (lookahead == '.') ADVANCE(152); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(400); END_STATE(); case 280: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(713); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(399); + if (lookahead == '.') ADVANCE(706); END_STATE(); case 281: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(399); + if (lookahead == '.') ADVANCE(706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(400); END_STATE(); case 282: - ACCEPT_TOKEN(anon_sym_as); + ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(400); END_STATE(); case 283: + ACCEPT_TOKEN(anon_sym_as); + END_STATE(); + case 284: ACCEPT_TOKEN(anon_sym_as); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -12887,282 +12912,282 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - END_STATE(); - case 284: - ACCEPT_TOKEN(anon_sym_LBRACE); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); END_STATE(); case 285: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 286: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 287: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 288: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 289: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 290: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(317); END_STATE(); case 291: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(318); END_STATE(); case 292: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(386); - if (lookahead == '|') ADVANCE(354); END_STATE(); case 293: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(354); + if (lookahead == '=') ADVANCE(387); + if (lookahead == '|') ADVANCE(355); END_STATE(); case 294: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(355); END_STATE(); case 295: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(329); END_STATE(); case 296: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(329); - if (lookahead == '=') ADVANCE(384); + if (lookahead == '+') ADVANCE(330); END_STATE(); case 297: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(384); + if (lookahead == '+') ADVANCE(330); + if (lookahead == '=') ADVANCE(385); END_STATE(); case 298: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(385); END_STATE(); case 299: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(330); END_STATE(); case 300: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '=') ADVANCE(385); + if (lookahead == '-') ADVANCE(331); END_STATE(); case 301: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(385); + if (lookahead == '-') ADVANCE(331); + if (lookahead == '=') ADVANCE(386); END_STATE(); case 302: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(386); END_STATE(); case 303: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(376); END_STATE(); case 304: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(102); - if (lookahead == '/') ADVANCE(271); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(377); END_STATE(); case 305: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(102); - if (lookahead == '/') ADVANCE(271); - if (lookahead == '=') ADVANCE(377); + if (lookahead == '*') ADVANCE(97); + if (lookahead == '/') ADVANCE(273); END_STATE(); case 306: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(97); + if (lookahead == '/') ADVANCE(273); + if (lookahead == '=') ADVANCE(378); END_STATE(); case 307: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(378); END_STATE(); case 308: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '-') ADVANCE(344); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(319); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(379); END_STATE(); case 309: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '-') ADVANCE(344); - if (lookahead == '<') ADVANCE(345); - if (lookahead == '=') ADVANCE(319); + if (lookahead == '-') ADVANCE(345); + if (lookahead == '<') ADVANCE(347); + if (lookahead == '=') ADVANCE(320); END_STATE(); case 310: ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '-') ADVANCE(345); if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(319); + if (lookahead == '=') ADVANCE(320); END_STATE(); case 311: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(345); - if (lookahead == '=') ADVANCE(319); + if (lookahead == '<') ADVANCE(347); + if (lookahead == '=') ADVANCE(320); END_STATE(); case 312: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(319); + if (lookahead == '<') ADVANCE(346); + if (lookahead == '=') ADVANCE(320); END_STATE(); case 313: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(320); END_STATE(); case 314: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(320); END_STATE(); case 315: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(320); - if (lookahead == '>') ADVANCE(347); + if (lookahead == '=') ADVANCE(321); END_STATE(); case 316: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(320); + if (lookahead == '=') ADVANCE(321); if (lookahead == '>') ADVANCE(348); END_STATE(); case 317: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(321); + if (lookahead == '>') ADVANCE(349); END_STATE(); case 318: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 319: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 320: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 321: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 322: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 323: - ACCEPT_TOKEN(anon_sym_LT2); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 324: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '-') ADVANCE(344); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(319); END_STATE(); case 325: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(319); + if (lookahead == '-') ADVANCE(345); + if (lookahead == '<') ADVANCE(347); + if (lookahead == '=') ADVANCE(320); END_STATE(); case 326: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LT2); + if (lookahead == '=') ADVANCE(320); END_STATE(); case 327: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 328: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '=') ADVANCE(388); END_STATE(); case 329: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '=') ADVANCE(389); END_STATE(); case 330: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 331: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 332: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(364); END_STATE(); case 333: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '.') ADVANCE(365); END_STATE(); case 334: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(318); - if (lookahead == 'i') ADVANCE(198); END_STATE(); case 335: - ACCEPT_TOKEN(anon_sym_json_DOTdecode); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(319); + if (lookahead == 'i') ADVANCE(197); END_STATE(); case 336: - ACCEPT_TOKEN(anon_sym_LBRACK2); + ACCEPT_TOKEN(anon_sym_json_DOTdecode); END_STATE(); case 337: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); case 338: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 339: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(387); END_STATE(); case 340: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(388); END_STATE(); case 341: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(353); - if (lookahead == '=') ADVANCE(382); - if (lookahead == '^') ADVANCE(352); END_STATE(); case 342: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(353); - if (lookahead == '^') ADVANCE(351); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '=') ADVANCE(383); + if (lookahead == '^') ADVANCE(353); END_STATE(); case 343: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '=') ADVANCE(382); - if (lookahead == '^') ADVANCE(171); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '^') ADVANCE(352); END_STATE(); case 344: - ACCEPT_TOKEN(anon_sym_LT_DASH); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '=') ADVANCE(383); + if (lookahead == '^') ADVANCE(169); END_STATE(); case 345: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_LT_DASH); END_STATE(); case 346: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(379); END_STATE(); case 347: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_LT_LT); if (lookahead == '=') ADVANCE(380); - if (lookahead == '>') ADVANCE(350); END_STATE(); case 348: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(349); + if (lookahead == '=') ADVANCE(381); + if (lookahead == '>') ADVANCE(351); END_STATE(); case 349: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '>') ADVANCE(350); END_STATE(); case 350: ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(381); END_STATE(); case 351: - ACCEPT_TOKEN(anon_sym_AMP_CARET); + ACCEPT_TOKEN(anon_sym_GT_GT_GT); + if (lookahead == '=') ADVANCE(382); END_STATE(); case 352: ACCEPT_TOKEN(anon_sym_AMP_CARET); - if (lookahead == '=') ADVANCE(383); END_STATE(); case 353: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_AMP_CARET); + if (lookahead == '=') ADVANCE(384); END_STATE(); case 354: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 355: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + END_STATE(); + case 356: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'd') || @@ -13171,27 +13196,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('j' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'e') ADVANCE(699); - if (lookahead == 'f') ADVANCE(702); - if (lookahead == 'i') ADVANCE(698); - if (lookahead == '{') ADVANCE(860); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'e') ADVANCE(692); + if (lookahead == 'f') ADVANCE(695); + if (lookahead == 'i') ADVANCE(691); + if (lookahead == '{') ADVANCE(851); END_STATE(); - case 356: + case 357: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); END_STATE(); - case 357: + case 358: ACCEPT_TOKEN(anon_sym_or); END_STATE(); - case 358: + case 359: ACCEPT_TOKEN(anon_sym_or); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13199,43 +13224,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - END_STATE(); - case 359: - ACCEPT_TOKEN(sym_escape_sequence); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); END_STATE(); case 360: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(214); END_STATE(); case 361: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(235); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(213); END_STATE(); case 362: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(220); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(234); END_STATE(); case 363: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(228); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(219); END_STATE(); case 364: - ACCEPT_TOKEN(anon_sym_QMARK_DOT); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(227); END_STATE(); case 365: - ACCEPT_TOKEN(anon_sym_POUND_LBRACK); + ACCEPT_TOKEN(anon_sym_QMARK_DOT); END_STATE(); case 366: - ACCEPT_TOKEN(anon_sym_DOLLARif); + ACCEPT_TOKEN(anon_sym_POUND_LBRACK); END_STATE(); case 367: + ACCEPT_TOKEN(anon_sym_DOLLARif); + END_STATE(); + case 368: ACCEPT_TOKEN(anon_sym_DOLLARif); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13243,12 +13268,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); END_STATE(); - case 368: + case 369: ACCEPT_TOKEN(anon_sym_DOLLARelse); END_STATE(); - case 369: + case 370: ACCEPT_TOKEN(anon_sym_DOLLARelse); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13256,12 +13281,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); END_STATE(); - case 370: + case 371: ACCEPT_TOKEN(anon_sym_is); END_STATE(); - case 371: + case 372: ACCEPT_TOKEN(anon_sym_is); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13269,15 +13294,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); END_STATE(); - case 372: + case 373: ACCEPT_TOKEN(anon_sym_BANGis); END_STATE(); - case 373: + case 374: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 374: + case 375: ACCEPT_TOKEN(anon_sym_in); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -13285,250 +13310,241 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); END_STATE(); - case 375: + case 376: ACCEPT_TOKEN(anon_sym_BANGin); END_STATE(); - case 376: + case 377: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 377: + case 378: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 378: + case 379: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 379: + case 380: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 380: + case 381: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 381: + case 382: ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); - case 382: + case 383: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 383: + case 384: ACCEPT_TOKEN(anon_sym_AMP_CARET_EQ); END_STATE(); - case 384: + case 385: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 385: + case 386: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 386: + case 387: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 387: + case 388: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 388: + case 389: ACCEPT_TOKEN(anon_sym_COLON_EQ); END_STATE(); - case 389: + case 390: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '.') ADVANCE(207); + if (lookahead == '.') ADVANCE(206); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(205); - if (lookahead == '_') ADVANCE(223); + lookahead == 'p') ADVANCE(204); + if (lookahead == '_') ADVANCE(222); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(389); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(390); END_STATE(); - case 390: + case 391: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '.') ADVANCE(216); + if (lookahead == '.') ADVANCE(215); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(184); + lookahead == 'b') ADVANCE(183); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(205); + lookahead == 'e') ADVANCE(204); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(183); + lookahead == 'o') ADVANCE(182); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(160); - if (lookahead == '_') ADVANCE(209); - if (lookahead == '8' || - lookahead == '9') ADVANCE(159); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(391); - END_STATE(); - case 391: - ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '.') ADVANCE(216); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(205); - if (lookahead == '_') ADVANCE(209); + lookahead == 'x') ADVANCE(155); + if (lookahead == '_') ADVANCE(208); if (lookahead == '8' || - lookahead == '9') ADVANCE(159); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(391); + lookahead == '9') ADVANCE(154); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(392); END_STATE(); case 392: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '.') ADVANCE(216); + if (lookahead == '.') ADVANCE(215); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(205); - if (lookahead == '_') ADVANCE(215); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == 'e') ADVANCE(204); + if (lookahead == '_') ADVANCE(208); + if (lookahead == '8' || + lookahead == '9') ADVANCE(154); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(392); END_STATE(); case 393: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '_') ADVANCE(210); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(393); + if (lookahead == '.') ADVANCE(215); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(204); + if (lookahead == '_') ADVANCE(214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(393); END_STATE(); case 394: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '_') ADVANCE(213); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(394); + if (lookahead == '_') ADVANCE(209); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(394); END_STATE(); case 395: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '_') ADVANCE(208); - if (lookahead == '0' || - lookahead == '1') ADVANCE(395); + if (lookahead == '_') ADVANCE(212); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(395); END_STATE(); case 396: ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '_') ADVANCE(222); + if (lookahead == '_') ADVANCE(207); + if (lookahead == '0' || + lookahead == '1') ADVANCE(396); + END_STATE(); + case 397: + ACCEPT_TOKEN(sym_int_literal); + if (lookahead == '_') ADVANCE(221); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(396); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(397); END_STATE(); - case 397: + case 398: ACCEPT_TOKEN(sym_int_literal); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(184); + lookahead == 'b') ADVANCE(183); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(183); + lookahead == 'o') ADVANCE(182); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(185); - if (lookahead == '_') ADVANCE(210); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(393); - END_STATE(); - case 398: - ACCEPT_TOKEN(sym_float_literal); - if (lookahead == '_') ADVANCE(218); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(398); + lookahead == 'x') ADVANCE(184); + if (lookahead == '_') ADVANCE(209); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(394); END_STATE(); case 399: ACCEPT_TOKEN(sym_float_literal); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(205); - if (lookahead == '_') ADVANCE(216); + if (lookahead == '_') ADVANCE(217); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(399); END_STATE(); case 400: - ACCEPT_TOKEN(sym_rune_literal); + ACCEPT_TOKEN(sym_float_literal); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(204); + if (lookahead == '_') ADVANCE(215); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(400); END_STATE(); case 401: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(471); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(401); + ACCEPT_TOKEN(sym_rune_literal); END_STATE(); case 402: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '!') ADVANCE(401); + if (lookahead == '*') ADVANCE(470); + if (lookahead == '/') ADVANCE(417); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(471); + lookahead != '\\') ADVANCE(402); END_STATE(); case 403: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '#') ADVANCE(402); - if (lookahead == '/') ADVANCE(414); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(403); + if (lookahead == '*') ADVANCE(470); + if (lookahead == '/') ADVANCE(439); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(471); + lookahead != '\\') ADVANCE(436); END_STATE(); case 404: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(471); - if (lookahead == '/') ADVANCE(419); + if (lookahead == '*') ADVANCE(470); + if (lookahead == '/') ADVANCE(402); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(404); + lookahead != '\\') ADVANCE(402); END_STATE(); case 405: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(471); - if (lookahead == '/') ADVANCE(441); + if (lookahead == '*') ADVANCE(470); + if (lookahead == '/') ADVANCE(440); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(438); + lookahead != '\\') ADVANCE(415); END_STATE(); case 406: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(471); - if (lookahead == '/') ADVANCE(404); + if (lookahead == '*') ADVANCE(470); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(404); + lookahead != '\\') ADVANCE(468); END_STATE(); case 407: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(471); - if (lookahead == '/') ADVANCE(442); + if (lookahead == '*') ADVANCE(470); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(417); + lookahead != '\\') ADVANCE(414); END_STATE(); case 408: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(471); + if (lookahead == '*') ADVANCE(470); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(469); + lookahead != '\\') ADVANCE(402); END_STATE(); case 409: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(471); + if (lookahead == '*') ADVANCE(466); + if (lookahead == '/') ADVANCE(418); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(416); + lookahead != '\\') ADVANCE(409); END_STATE(); case 410: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(471); + if (lookahead == '*') ADVANCE(466); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(404); + lookahead != '\\') ADVANCE(410); END_STATE(); case 411: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(467); - if (lookahead == '/') ADVANCE(420); + if (lookahead == '*') ADVANCE(466); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(411); + lookahead != '\\') ADVANCE(409); END_STATE(); case 412: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(467); + if (lookahead == '*') ADVANCE(413); + if (lookahead == '/') ADVANCE(469); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(412); + lookahead != '\\') ADVANCE(470); END_STATE(); case 413: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(467); + if (lookahead == '*') ADVANCE(404); + if (lookahead == '/') ADVANCE(410); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && @@ -13536,969 +13552,971 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 414: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(415); - if (lookahead == '/') ADVANCE(470); + if (lookahead == '*') ADVANCE(408); + if (lookahead == '/') ADVANCE(422); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(471); + lookahead != '\\') ADVANCE(424); END_STATE(); case 415: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(406); - if (lookahead == '/') ADVANCE(412); + if (lookahead == '*') ADVANCE(408); + if (lookahead == '/') ADVANCE(435); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(413); + lookahead != '\\') ADVANCE(423); END_STATE(); case 416: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(410); - if (lookahead == '/') ADVANCE(424); + if (lookahead == '*') ADVANCE(408); + if (lookahead == '/') ADVANCE(450); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(426); + lookahead != '\\') ADVANCE(451); END_STATE(); case 417: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(410); - if (lookahead == '/') ADVANCE(437); + if (lookahead == '*') ADVANCE(419); + if (lookahead == '/') ADVANCE(417); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(425); + lookahead != '\\') ADVANCE(402); END_STATE(); case 418: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(410); - if (lookahead == '/') ADVANCE(452); + if (lookahead == '*') ADVANCE(419); + if (lookahead == '/') ADVANCE(418); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(453); + lookahead != '\\') ADVANCE(409); END_STATE(); case 419: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(421); - if (lookahead == '/') ADVANCE(419); + if (lookahead == '*') ADVANCE(420); + if (lookahead == '/') ADVANCE(470); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(404); + lookahead != '\\') ADVANCE(407); END_STATE(); case 420: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(421); - if (lookahead == '/') ADVANCE(420); + if (lookahead == '*') ADVANCE(420); + if (lookahead == '/') ADVANCE(414); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(411); + lookahead != '\\') ADVANCE(414); END_STATE(); case 421: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(422); - if (lookahead == '/') ADVANCE(471); + if (lookahead == '*') ADVANCE(420); + if (lookahead == '/') ADVANCE(402); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(409); + lookahead != '\\') ADVANCE(405); END_STATE(); case 422: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(422); - if (lookahead == '/') ADVANCE(416); + if (lookahead == '*') ADVANCE(429); + if (lookahead == '/') ADVANCE(422); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(416); + lookahead != '\\') ADVANCE(464); END_STATE(); case 423: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(422); - if (lookahead == '/') ADVANCE(404); + if (lookahead == '*') ADVANCE(429); + if (lookahead == '/') ADVANCE(435); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(407); + lookahead != '\\') ADVANCE(463); END_STATE(); case 424: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(431); - if (lookahead == '/') ADVANCE(424); + if (lookahead == '*') ADVANCE(429); + if (lookahead == '/') ADVANCE(423); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(466); + lookahead != '\\') ADVANCE(463); END_STATE(); case 425: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(431); - if (lookahead == '/') ADVANCE(437); + if (lookahead == '*') ADVANCE(427); + if (lookahead == '/') ADVANCE(470); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(465); + lookahead != '\\') ADVANCE(425); END_STATE(); case 426: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(431); - if (lookahead == '/') ADVANCE(425); + if (lookahead == '*') ADVANCE(427); + if (lookahead == '/') ADVANCE(417); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(465); + lookahead != '\\') ADVANCE(426); END_STATE(); case 427: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(429); - if (lookahead == '/') ADVANCE(471); + if (lookahead == '*') ADVANCE(427); + if (lookahead == '/') ADVANCE(406); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(427); + lookahead != '\\') ADVANCE(425); END_STATE(); case 428: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(429); - if (lookahead == '/') ADVANCE(419); + if (lookahead == '*') ADVANCE(427); + if (lookahead == '/') ADVANCE(414); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(428); + lookahead != '\\') ADVANCE(462); END_STATE(); case 429: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(429); - if (lookahead == '/') ADVANCE(408); + if (lookahead == '*') ADVANCE(427); + if (lookahead == '/') ADVANCE(402); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(427); + lookahead != '\\') ADVANCE(426); END_STATE(); case 430: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(429); - if (lookahead == '/') ADVANCE(416); + if (lookahead == '*') ADVANCE(427); + if (lookahead == '/') ADVANCE(403); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(464); + lookahead != '\\') ADVANCE(426); END_STATE(); case 431: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(429); - if (lookahead == '/') ADVANCE(404); + if (lookahead == '*') ADVANCE(427); + if (lookahead == '/') ADVANCE(440); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(428); + lookahead != '\\') ADVANCE(463); END_STATE(); case 432: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(429); - if (lookahead == '/') ADVANCE(405); + if (lookahead == '*') ADVANCE(425); + if (lookahead == '/') ADVANCE(468); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(428); + lookahead != '\\') ADVANCE(452); END_STATE(); case 433: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(429); - if (lookahead == '/') ADVANCE(442); + if (lookahead == '*') ADVANCE(425); + if (lookahead == '/') ADVANCE(417); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(465); + lookahead != '\\') ADVANCE(426); END_STATE(); case 434: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(427); - if (lookahead == '/') ADVANCE(469); + if (lookahead == '*') ADVANCE(425); + if (lookahead == '/') ADVANCE(439); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(454); + lookahead != '\\') ADVANCE(453); END_STATE(); case 435: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(427); - if (lookahead == '/') ADVANCE(419); + if (lookahead == '*') ADVANCE(446); + if (lookahead == '/') ADVANCE(435); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(428); + lookahead != '\\') ADVANCE(463); END_STATE(); case 436: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(427); - if (lookahead == '/') ADVANCE(441); + if (lookahead == '*') ADVANCE(438); + if (lookahead == '/') ADVANCE(417); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(455); + lookahead != '\\') ADVANCE(437); END_STATE(); case 437: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(448); - if (lookahead == '/') ADVANCE(437); + if (lookahead == '*') ADVANCE(438); + if (lookahead == '/') ADVANCE(444); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(465); + lookahead != '\\') ADVANCE(441); END_STATE(); case 438: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(440); - if (lookahead == '/') ADVANCE(419); + if (lookahead == '*') ADVANCE(438); + if (lookahead == '/') ADVANCE(467); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(439); + lookahead != '\\') ADVANCE(442); END_STATE(); case 439: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(440); - if (lookahead == '/') ADVANCE(446); + if (lookahead == '*') ADVANCE(448); + if (lookahead == '/') ADVANCE(417); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(443); + lookahead != '\\') ADVANCE(437); END_STATE(); case 440: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(440); - if (lookahead == '/') ADVANCE(468); + if (lookahead == '*') ADVANCE(421); + if (lookahead == '/') ADVANCE(435); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(444); + lookahead != '\\') ADVANCE(423); END_STATE(); case 441: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(450); - if (lookahead == '/') ADVANCE(419); + if (lookahead == '*') ADVANCE(457); + if (lookahead == '/') ADVANCE(444); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(439); + lookahead != '\\') ADVANCE(454); END_STATE(); case 442: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(423); - if (lookahead == '/') ADVANCE(437); + if (lookahead == '*') ADVANCE(457); + if (lookahead == '/') ADVANCE(467); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(425); + lookahead != '\\') ADVANCE(457); END_STATE(); case 443: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(459); - if (lookahead == '/') ADVANCE(446); + if (lookahead == '*') ADVANCE(457); + if (lookahead == '/') ADVANCE(422); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(456); + lookahead != '\\') ADVANCE(459); END_STATE(); case 444: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(459); - if (lookahead == '/') ADVANCE(468); + if (lookahead == '*') ADVANCE(445); + if (lookahead == '/') ADVANCE(417); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(459); + lookahead != '\\') ADVANCE(426); END_STATE(); case 445: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(459); - if (lookahead == '/') ADVANCE(424); + if (lookahead == '*') ADVANCE(447); + if (lookahead == '/') ADVANCE(470); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(461); + lookahead != '\\') ADVANCE(428); END_STATE(); case 446: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); if (lookahead == '*') ADVANCE(447); - if (lookahead == '/') ADVANCE(419); + if (lookahead == '/') ADVANCE(402); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(428); + lookahead != '\\') ADVANCE(431); END_STATE(); case 447: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(449); - if (lookahead == '/') ADVANCE(471); + if (lookahead == '*') ADVANCE(447); + if (lookahead == '/') ADVANCE(416); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(430); + lookahead != '\\') ADVANCE(462); END_STATE(); case 448: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); if (lookahead == '*') ADVANCE(449); - if (lookahead == '/') ADVANCE(404); + if (lookahead == '/') ADVANCE(467); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(433); + lookahead != '\\') ADVANCE(443); END_STATE(); case 449: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); if (lookahead == '*') ADVANCE(449); - if (lookahead == '/') ADVANCE(418); + if (lookahead == '/') ADVANCE(422); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(464); + lookahead != '\\') ADVANCE(450); END_STATE(); case 450: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(451); - if (lookahead == '/') ADVANCE(468); + if (lookahead == '*') ADVANCE(455); + if (lookahead == '/') ADVANCE(422); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(445); + lookahead != '\\') ADVANCE(461); END_STATE(); case 451: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(451); - if (lookahead == '/') ADVANCE(424); + if (lookahead == '*') ADVANCE(455); + if (lookahead == '/') ADVANCE(423); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(452); + lookahead != '\\') ADVANCE(460); END_STATE(); case 452: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(457); - if (lookahead == '/') ADVANCE(424); + if (lookahead == '*') ADVANCE(456); + if (lookahead == '/') ADVANCE(470); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(463); + lookahead != '\\') ADVANCE(457); END_STATE(); case 453: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(457); - if (lookahead == '/') ADVANCE(425); + if (lookahead == '*') ADVANCE(456); + if (lookahead == '/') ADVANCE(417); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(462); + lookahead != '\\') ADVANCE(454); END_STATE(); case 454: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(458); - if (lookahead == '/') ADVANCE(471); + if (lookahead == '*') ADVANCE(456); + if (lookahead == '/') ADVANCE(444); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(459); + lookahead != '\\') ADVANCE(454); END_STATE(); case 455: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(458); - if (lookahead == '/') ADVANCE(419); + if (lookahead == '*') ADVANCE(456); + if (lookahead == '/') ADVANCE(433); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(456); + lookahead != '\\') ADVANCE(454); END_STATE(); case 456: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(458); - if (lookahead == '/') ADVANCE(446); + if (lookahead == '*') ADVANCE(456); + if (lookahead == '/') ADVANCE(432); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(456); + lookahead != '\\') ADVANCE(457); END_STATE(); case 457: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(458); - if (lookahead == '/') ADVANCE(435); + if (lookahead == '*') ADVANCE(456); + if (lookahead == '/') ADVANCE(467); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(456); + lookahead != '\\') ADVANCE(457); END_STATE(); case 458: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(458); + if (lookahead == '*') ADVANCE(456); if (lookahead == '/') ADVANCE(434); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(459); + lookahead != '\\') ADVANCE(454); END_STATE(); case 459: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); if (lookahead == '*') ADVANCE(458); - if (lookahead == '/') ADVANCE(468); + if (lookahead == '/') ADVANCE(422); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(459); + lookahead != '\\') ADVANCE(461); END_STATE(); case 460: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); if (lookahead == '*') ADVANCE(458); - if (lookahead == '/') ADVANCE(436); + if (lookahead == '/') ADVANCE(435); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(456); + lookahead != '\\') ADVANCE(460); END_STATE(); case 461: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(460); - if (lookahead == '/') ADVANCE(424); + if (lookahead == '*') ADVANCE(458); + if (lookahead == '/') ADVANCE(423); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(463); + lookahead != '\\') ADVANCE(460); END_STATE(); case 462: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(460); - if (lookahead == '/') ADVANCE(437); + if (lookahead == '*') ADVANCE(430); + if (lookahead == '/') ADVANCE(422); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(462); + lookahead != '\\') ADVANCE(464); END_STATE(); case 463: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(460); - if (lookahead == '/') ADVANCE(425); + if (lookahead == '*') ADVANCE(430); + if (lookahead == '/') ADVANCE(435); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(462); + lookahead != '\\') ADVANCE(463); END_STATE(); case 464: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(432); - if (lookahead == '/') ADVANCE(424); + if (lookahead == '*') ADVANCE(430); + if (lookahead == '/') ADVANCE(423); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(466); + lookahead != '\\') ADVANCE(463); END_STATE(); case 465: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(432); - if (lookahead == '/') ADVANCE(437); + if (lookahead == '/') ADVANCE(412); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(465); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(465); + lookahead != '\\') ADVANCE(470); END_STATE(); case 466: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(432); - if (lookahead == '/') ADVANCE(425); + if (lookahead == '/') ADVANCE(470); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(465); + lookahead != '\\') ADVANCE(470); END_STATE(); case 467: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '/') ADVANCE(471); + if (lookahead == '/') ADVANCE(470); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(471); + lookahead != '\\') ADVANCE(425); END_STATE(); case 468: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '/') ADVANCE(471); + if (lookahead == '/') ADVANCE(470); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(427); + lookahead != '\\') ADVANCE(438); END_STATE(); case 469: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '/') ADVANCE(471); + if (lookahead == '\n' || + lookahead == '\r') ADVANCE(470); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(440); + lookahead != '\\') ADVANCE(469); END_STATE(); case 470: ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(471); if (lookahead != 0 && lookahead != '$' && lookahead != '\'' && lookahead != '\\') ADVANCE(470); END_STATE(); case 471: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); + ACCEPT_TOKEN(aux_sym_c_string_literal_token2); + if (lookahead == '*') ADVANCE(539); + if (lookahead == '/') ADVANCE(486); if (lookahead != 0 && + lookahead != '"' && lookahead != '$' && - lookahead != '\'' && lookahead != '\\') ADVANCE(471); END_STATE(); case 472: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(542); + if (lookahead == '*') ADVANCE(539); + if (lookahead == '/') ADVANCE(508); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(472); + lookahead != '\\') ADVANCE(505); END_STATE(); case 473: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '!') ADVANCE(472); + if (lookahead == '*') ADVANCE(539); + if (lookahead == '/') ADVANCE(471); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(542); + lookahead != '\\') ADVANCE(471); END_STATE(); case 474: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '#') ADVANCE(473); - if (lookahead == '/') ADVANCE(485); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(474); + if (lookahead == '*') ADVANCE(539); + if (lookahead == '/') ADVANCE(509); if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - lookahead != '\\') ADVANCE(542); + lookahead != '"' && + lookahead != '$' && + lookahead != '\\') ADVANCE(484); END_STATE(); case 475: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(542); - if (lookahead == '/') ADVANCE(490); + if (lookahead == '*') ADVANCE(539); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(475); + lookahead != '\\') ADVANCE(537); END_STATE(); case 476: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(542); - if (lookahead == '/') ADVANCE(512); + if (lookahead == '*') ADVANCE(539); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(509); + lookahead != '\\') ADVANCE(483); END_STATE(); case 477: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(542); - if (lookahead == '/') ADVANCE(475); + if (lookahead == '*') ADVANCE(539); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(475); + lookahead != '\\') ADVANCE(471); END_STATE(); case 478: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(542); - if (lookahead == '/') ADVANCE(513); + if (lookahead == '*') ADVANCE(535); + if (lookahead == '/') ADVANCE(487); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(488); + lookahead != '\\') ADVANCE(478); END_STATE(); case 479: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(542); + if (lookahead == '*') ADVANCE(535); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(540); + lookahead != '\\') ADVANCE(479); END_STATE(); case 480: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(542); + if (lookahead == '*') ADVANCE(535); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(487); + lookahead != '\\') ADVANCE(478); END_STATE(); case 481: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(542); + if (lookahead == '*') ADVANCE(482); + if (lookahead == '/') ADVANCE(538); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(475); + lookahead != '\\') ADVANCE(539); END_STATE(); case 482: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(538); - if (lookahead == '/') ADVANCE(491); + if (lookahead == '*') ADVANCE(473); + if (lookahead == '/') ADVANCE(479); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(482); + lookahead != '\\') ADVANCE(480); END_STATE(); case 483: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(538); + if (lookahead == '*') ADVANCE(477); + if (lookahead == '/') ADVANCE(491); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(483); + lookahead != '\\') ADVANCE(493); END_STATE(); case 484: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(538); + if (lookahead == '*') ADVANCE(477); + if (lookahead == '/') ADVANCE(504); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(482); + lookahead != '\\') ADVANCE(492); END_STATE(); case 485: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(486); - if (lookahead == '/') ADVANCE(541); + if (lookahead == '*') ADVANCE(477); + if (lookahead == '/') ADVANCE(519); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(542); + lookahead != '\\') ADVANCE(520); END_STATE(); case 486: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(477); - if (lookahead == '/') ADVANCE(483); + if (lookahead == '*') ADVANCE(488); + if (lookahead == '/') ADVANCE(486); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(484); + lookahead != '\\') ADVANCE(471); END_STATE(); case 487: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(481); - if (lookahead == '/') ADVANCE(495); + if (lookahead == '*') ADVANCE(488); + if (lookahead == '/') ADVANCE(487); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(497); + lookahead != '\\') ADVANCE(478); END_STATE(); case 488: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(481); - if (lookahead == '/') ADVANCE(508); + if (lookahead == '*') ADVANCE(489); + if (lookahead == '/') ADVANCE(539); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(496); + lookahead != '\\') ADVANCE(476); END_STATE(); case 489: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(481); - if (lookahead == '/') ADVANCE(523); + if (lookahead == '*') ADVANCE(489); + if (lookahead == '/') ADVANCE(483); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(524); + lookahead != '\\') ADVANCE(483); END_STATE(); case 490: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(492); - if (lookahead == '/') ADVANCE(490); + if (lookahead == '*') ADVANCE(489); + if (lookahead == '/') ADVANCE(471); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(475); + lookahead != '\\') ADVANCE(474); END_STATE(); case 491: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(492); + if (lookahead == '*') ADVANCE(498); if (lookahead == '/') ADVANCE(491); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(482); + lookahead != '\\') ADVANCE(533); END_STATE(); case 492: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(493); - if (lookahead == '/') ADVANCE(542); + if (lookahead == '*') ADVANCE(498); + if (lookahead == '/') ADVANCE(504); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(480); + lookahead != '\\') ADVANCE(532); END_STATE(); case 493: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(493); - if (lookahead == '/') ADVANCE(487); + if (lookahead == '*') ADVANCE(498); + if (lookahead == '/') ADVANCE(492); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(487); + lookahead != '\\') ADVANCE(532); END_STATE(); case 494: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(493); - if (lookahead == '/') ADVANCE(475); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '/') ADVANCE(539); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(478); + lookahead != '\\') ADVANCE(494); END_STATE(); case 495: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '/') ADVANCE(495); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '/') ADVANCE(486); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(537); + lookahead != '\\') ADVANCE(495); END_STATE(); case 496: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '/') ADVANCE(508); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '/') ADVANCE(475); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(536); + lookahead != '\\') ADVANCE(494); END_STATE(); case 497: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '/') ADVANCE(496); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '/') ADVANCE(483); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(536); + lookahead != '\\') ADVANCE(531); END_STATE(); case 498: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(500); - if (lookahead == '/') ADVANCE(542); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '/') ADVANCE(471); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(498); + lookahead != '\\') ADVANCE(495); END_STATE(); case 499: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(500); - if (lookahead == '/') ADVANCE(490); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '/') ADVANCE(472); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(499); + lookahead != '\\') ADVANCE(495); END_STATE(); case 500: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(500); - if (lookahead == '/') ADVANCE(479); + if (lookahead == '*') ADVANCE(496); + if (lookahead == '/') ADVANCE(509); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(498); + lookahead != '\\') ADVANCE(532); END_STATE(); case 501: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(500); - if (lookahead == '/') ADVANCE(487); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '/') ADVANCE(537); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(535); + lookahead != '\\') ADVANCE(521); END_STATE(); case 502: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(500); - if (lookahead == '/') ADVANCE(475); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '/') ADVANCE(486); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(499); + lookahead != '\\') ADVANCE(495); END_STATE(); case 503: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(500); - if (lookahead == '/') ADVANCE(476); + if (lookahead == '*') ADVANCE(494); + if (lookahead == '/') ADVANCE(508); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(499); + lookahead != '\\') ADVANCE(522); END_STATE(); case 504: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); + if (lookahead == '*') ADVANCE(515); + if (lookahead == '/') ADVANCE(504); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(536); + lookahead != '\\') ADVANCE(532); END_STATE(); case 505: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(498); - if (lookahead == '/') ADVANCE(540); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '/') ADVANCE(486); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(525); + lookahead != '\\') ADVANCE(506); END_STATE(); case 506: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(498); - if (lookahead == '/') ADVANCE(490); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '/') ADVANCE(513); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(499); + lookahead != '\\') ADVANCE(510); END_STATE(); case 507: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(498); - if (lookahead == '/') ADVANCE(512); + if (lookahead == '*') ADVANCE(507); + if (lookahead == '/') ADVANCE(536); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(526); + lookahead != '\\') ADVANCE(511); END_STATE(); case 508: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(519); - if (lookahead == '/') ADVANCE(508); + if (lookahead == '*') ADVANCE(517); + if (lookahead == '/') ADVANCE(486); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(536); + lookahead != '\\') ADVANCE(506); END_STATE(); case 509: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(511); - if (lookahead == '/') ADVANCE(490); + if (lookahead == '*') ADVANCE(490); + if (lookahead == '/') ADVANCE(504); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(510); + lookahead != '\\') ADVANCE(492); END_STATE(); case 510: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(511); - if (lookahead == '/') ADVANCE(517); + if (lookahead == '*') ADVANCE(526); + if (lookahead == '/') ADVANCE(513); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(514); + lookahead != '\\') ADVANCE(523); END_STATE(); case 511: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(511); - if (lookahead == '/') ADVANCE(539); + if (lookahead == '*') ADVANCE(526); + if (lookahead == '/') ADVANCE(536); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(515); + lookahead != '\\') ADVANCE(526); END_STATE(); case 512: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(521); - if (lookahead == '/') ADVANCE(490); + if (lookahead == '*') ADVANCE(526); + if (lookahead == '/') ADVANCE(491); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(510); + lookahead != '\\') ADVANCE(528); END_STATE(); case 513: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(494); - if (lookahead == '/') ADVANCE(508); + if (lookahead == '*') ADVANCE(514); + if (lookahead == '/') ADVANCE(486); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(496); + lookahead != '\\') ADVANCE(495); END_STATE(); case 514: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(530); - if (lookahead == '/') ADVANCE(517); + if (lookahead == '*') ADVANCE(516); + if (lookahead == '/') ADVANCE(539); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(527); + lookahead != '\\') ADVANCE(497); END_STATE(); case 515: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(530); - if (lookahead == '/') ADVANCE(539); + if (lookahead == '*') ADVANCE(516); + if (lookahead == '/') ADVANCE(471); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(530); + lookahead != '\\') ADVANCE(500); END_STATE(); case 516: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(530); - if (lookahead == '/') ADVANCE(495); + if (lookahead == '*') ADVANCE(516); + if (lookahead == '/') ADVANCE(485); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(532); + lookahead != '\\') ADVANCE(531); END_STATE(); case 517: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); if (lookahead == '*') ADVANCE(518); - if (lookahead == '/') ADVANCE(490); + if (lookahead == '/') ADVANCE(536); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(499); + lookahead != '\\') ADVANCE(512); END_STATE(); case 518: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(520); - if (lookahead == '/') ADVANCE(542); + if (lookahead == '*') ADVANCE(518); + if (lookahead == '/') ADVANCE(491); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(501); + lookahead != '\\') ADVANCE(519); END_STATE(); case 519: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(520); - if (lookahead == '/') ADVANCE(475); + if (lookahead == '*') ADVANCE(524); + if (lookahead == '/') ADVANCE(491); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(504); + lookahead != '\\') ADVANCE(530); END_STATE(); case 520: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(520); - if (lookahead == '/') ADVANCE(489); + if (lookahead == '*') ADVANCE(524); + if (lookahead == '/') ADVANCE(492); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(535); + lookahead != '\\') ADVANCE(529); END_STATE(); case 521: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(522); + if (lookahead == '*') ADVANCE(525); if (lookahead == '/') ADVANCE(539); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(516); + lookahead != '\\') ADVANCE(526); END_STATE(); case 522: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(522); - if (lookahead == '/') ADVANCE(495); + if (lookahead == '*') ADVANCE(525); + if (lookahead == '/') ADVANCE(486); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && @@ -14506,1420 +14524,1364 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 523: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(528); - if (lookahead == '/') ADVANCE(495); + if (lookahead == '*') ADVANCE(525); + if (lookahead == '/') ADVANCE(513); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(534); + lookahead != '\\') ADVANCE(523); END_STATE(); case 524: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(528); - if (lookahead == '/') ADVANCE(496); + if (lookahead == '*') ADVANCE(525); + if (lookahead == '/') ADVANCE(502); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(533); + lookahead != '\\') ADVANCE(523); END_STATE(); case 525: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(529); - if (lookahead == '/') ADVANCE(542); + if (lookahead == '*') ADVANCE(525); + if (lookahead == '/') ADVANCE(501); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(530); + lookahead != '\\') ADVANCE(526); END_STATE(); case 526: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(529); - if (lookahead == '/') ADVANCE(490); + if (lookahead == '*') ADVANCE(525); + if (lookahead == '/') ADVANCE(536); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(527); + lookahead != '\\') ADVANCE(526); END_STATE(); case 527: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(529); - if (lookahead == '/') ADVANCE(517); + if (lookahead == '*') ADVANCE(525); + if (lookahead == '/') ADVANCE(503); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(527); + lookahead != '\\') ADVANCE(523); END_STATE(); case 528: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(529); - if (lookahead == '/') ADVANCE(506); + if (lookahead == '*') ADVANCE(527); + if (lookahead == '/') ADVANCE(491); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(527); + lookahead != '\\') ADVANCE(530); END_STATE(); case 529: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(529); - if (lookahead == '/') ADVANCE(505); + if (lookahead == '*') ADVANCE(527); + if (lookahead == '/') ADVANCE(504); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(530); + lookahead != '\\') ADVANCE(529); END_STATE(); case 530: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(529); - if (lookahead == '/') ADVANCE(539); + if (lookahead == '*') ADVANCE(527); + if (lookahead == '/') ADVANCE(492); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(530); + lookahead != '\\') ADVANCE(529); END_STATE(); case 531: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(529); - if (lookahead == '/') ADVANCE(507); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '/') ADVANCE(491); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(527); + lookahead != '\\') ADVANCE(533); END_STATE(); case 532: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(531); - if (lookahead == '/') ADVANCE(495); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '/') ADVANCE(504); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(534); + lookahead != '\\') ADVANCE(532); END_STATE(); case 533: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(531); - if (lookahead == '/') ADVANCE(508); + if (lookahead == '*') ADVANCE(499); + if (lookahead == '/') ADVANCE(492); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(533); + lookahead != '\\') ADVANCE(532); END_STATE(); case 534: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(531); - if (lookahead == '/') ADVANCE(496); + if (lookahead == '/') ADVANCE(481); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(534); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(533); + lookahead != '\\') ADVANCE(539); END_STATE(); case 535: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(503); - if (lookahead == '/') ADVANCE(495); + if (lookahead == '/') ADVANCE(539); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(537); + lookahead != '\\') ADVANCE(539); END_STATE(); case 536: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(503); - if (lookahead == '/') ADVANCE(508); + if (lookahead == '/') ADVANCE(539); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(536); + lookahead != '\\') ADVANCE(494); END_STATE(); case 537: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(503); - if (lookahead == '/') ADVANCE(496); + if (lookahead == '/') ADVANCE(539); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(536); + lookahead != '\\') ADVANCE(507); END_STATE(); case 538: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '/') ADVANCE(542); + if (lookahead == '\n' || + lookahead == '\r') ADVANCE(539); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(542); + lookahead != '\\') ADVANCE(538); END_STATE(); case 539: ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '/') ADVANCE(542); if (lookahead != 0 && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(498); + lookahead != '\\') ADVANCE(539); END_STATE(); case 540: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '/') ADVANCE(542); + ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); + if (lookahead == '*') ADVANCE(608); + if (lookahead == '/') ADVANCE(555); if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(511); + lookahead != '\'' && + lookahead != '\\') ADVANCE(540); END_STATE(); case 541: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(542); + ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); + if (lookahead == '*') ADVANCE(608); + if (lookahead == '/') ADVANCE(577); if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(541); + lookahead != '\'' && + lookahead != '\\') ADVANCE(574); END_STATE(); case 542: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); + ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); + if (lookahead == '*') ADVANCE(608); + if (lookahead == '/') ADVANCE(540); if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(542); + lookahead != '\'' && + lookahead != '\\') ADVANCE(540); END_STATE(); case 543: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(613); + if (lookahead == '*') ADVANCE(608); + if (lookahead == '/') ADVANCE(578); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(543); + lookahead != '\\') ADVANCE(553); END_STATE(); case 544: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '!') ADVANCE(543); + if (lookahead == '*') ADVANCE(608); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(613); + lookahead != '\\') ADVANCE(606); END_STATE(); case 545: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '#') ADVANCE(544); - if (lookahead == '/') ADVANCE(556); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(545); + if (lookahead == '*') ADVANCE(608); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(613); + lookahead != '\\') ADVANCE(552); END_STATE(); case 546: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(613); - if (lookahead == '/') ADVANCE(561); + if (lookahead == '*') ADVANCE(608); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(546); + lookahead != '\\') ADVANCE(540); END_STATE(); case 547: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(613); - if (lookahead == '/') ADVANCE(583); + if (lookahead == '*') ADVANCE(604); + if (lookahead == '/') ADVANCE(556); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(580); + lookahead != '\\') ADVANCE(547); END_STATE(); case 548: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(613); - if (lookahead == '/') ADVANCE(546); + if (lookahead == '*') ADVANCE(604); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(546); + lookahead != '\\') ADVANCE(548); END_STATE(); case 549: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(613); - if (lookahead == '/') ADVANCE(584); + if (lookahead == '*') ADVANCE(604); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(559); + lookahead != '\\') ADVANCE(547); END_STATE(); case 550: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(613); + if (lookahead == '*') ADVANCE(551); + if (lookahead == '/') ADVANCE(607); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(611); + lookahead != '\\') ADVANCE(608); END_STATE(); case 551: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(613); + if (lookahead == '*') ADVANCE(542); + if (lookahead == '/') ADVANCE(548); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(558); + lookahead != '\\') ADVANCE(549); END_STATE(); case 552: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(613); + if (lookahead == '*') ADVANCE(546); + if (lookahead == '/') ADVANCE(560); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(546); + lookahead != '\\') ADVANCE(562); END_STATE(); case 553: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(609); - if (lookahead == '/') ADVANCE(562); + if (lookahead == '*') ADVANCE(546); + if (lookahead == '/') ADVANCE(573); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(553); + lookahead != '\\') ADVANCE(561); END_STATE(); case 554: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(609); + if (lookahead == '*') ADVANCE(546); + if (lookahead == '/') ADVANCE(588); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(554); + lookahead != '\\') ADVANCE(589); END_STATE(); case 555: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(609); + if (lookahead == '*') ADVANCE(557); + if (lookahead == '/') ADVANCE(555); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(553); + lookahead != '\\') ADVANCE(540); END_STATE(); case 556: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); if (lookahead == '*') ADVANCE(557); - if (lookahead == '/') ADVANCE(612); + if (lookahead == '/') ADVANCE(556); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(613); + lookahead != '\\') ADVANCE(547); END_STATE(); case 557: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(548); - if (lookahead == '/') ADVANCE(554); + if (lookahead == '*') ADVANCE(558); + if (lookahead == '/') ADVANCE(608); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(555); + lookahead != '\\') ADVANCE(545); END_STATE(); case 558: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(552); - if (lookahead == '/') ADVANCE(566); + if (lookahead == '*') ADVANCE(558); + if (lookahead == '/') ADVANCE(552); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(568); + lookahead != '\\') ADVANCE(552); END_STATE(); case 559: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(552); - if (lookahead == '/') ADVANCE(579); + if (lookahead == '*') ADVANCE(558); + if (lookahead == '/') ADVANCE(540); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(567); + lookahead != '\\') ADVANCE(543); END_STATE(); case 560: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(552); - if (lookahead == '/') ADVANCE(594); + if (lookahead == '*') ADVANCE(567); + if (lookahead == '/') ADVANCE(560); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(595); + lookahead != '\\') ADVANCE(602); END_STATE(); case 561: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(563); - if (lookahead == '/') ADVANCE(561); + if (lookahead == '*') ADVANCE(567); + if (lookahead == '/') ADVANCE(573); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(546); + lookahead != '\\') ADVANCE(601); END_STATE(); case 562: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(563); - if (lookahead == '/') ADVANCE(562); + if (lookahead == '*') ADVANCE(567); + if (lookahead == '/') ADVANCE(561); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(553); + lookahead != '\\') ADVANCE(601); END_STATE(); case 563: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(564); - if (lookahead == '/') ADVANCE(613); + if (lookahead == '*') ADVANCE(565); + if (lookahead == '/') ADVANCE(608); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(551); + lookahead != '\\') ADVANCE(563); END_STATE(); case 564: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(564); - if (lookahead == '/') ADVANCE(558); + if (lookahead == '*') ADVANCE(565); + if (lookahead == '/') ADVANCE(555); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(558); + lookahead != '\\') ADVANCE(564); END_STATE(); case 565: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(564); - if (lookahead == '/') ADVANCE(546); + if (lookahead == '*') ADVANCE(565); + if (lookahead == '/') ADVANCE(544); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(549); + lookahead != '\\') ADVANCE(563); END_STATE(); case 566: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(573); - if (lookahead == '/') ADVANCE(566); + if (lookahead == '*') ADVANCE(565); + if (lookahead == '/') ADVANCE(552); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(608); + lookahead != '\\') ADVANCE(600); END_STATE(); case 567: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(573); - if (lookahead == '/') ADVANCE(579); + if (lookahead == '*') ADVANCE(565); + if (lookahead == '/') ADVANCE(540); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(607); + lookahead != '\\') ADVANCE(564); END_STATE(); case 568: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(573); - if (lookahead == '/') ADVANCE(567); + if (lookahead == '*') ADVANCE(565); + if (lookahead == '/') ADVANCE(541); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(607); + lookahead != '\\') ADVANCE(564); END_STATE(); case 569: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(571); - if (lookahead == '/') ADVANCE(613); + if (lookahead == '*') ADVANCE(565); + if (lookahead == '/') ADVANCE(578); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(569); + lookahead != '\\') ADVANCE(601); END_STATE(); case 570: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(571); - if (lookahead == '/') ADVANCE(561); + if (lookahead == '*') ADVANCE(563); + if (lookahead == '/') ADVANCE(606); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(570); + lookahead != '\\') ADVANCE(590); END_STATE(); case 571: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(571); - if (lookahead == '/') ADVANCE(550); + if (lookahead == '*') ADVANCE(563); + if (lookahead == '/') ADVANCE(555); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(569); + lookahead != '\\') ADVANCE(564); END_STATE(); case 572: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(571); - if (lookahead == '/') ADVANCE(558); + if (lookahead == '*') ADVANCE(563); + if (lookahead == '/') ADVANCE(577); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(606); + lookahead != '\\') ADVANCE(591); END_STATE(); case 573: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(571); - if (lookahead == '/') ADVANCE(546); + if (lookahead == '*') ADVANCE(584); + if (lookahead == '/') ADVANCE(573); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(570); + lookahead != '\\') ADVANCE(601); END_STATE(); case 574: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(571); - if (lookahead == '/') ADVANCE(547); + if (lookahead == '*') ADVANCE(576); + if (lookahead == '/') ADVANCE(555); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(570); + lookahead != '\\') ADVANCE(575); END_STATE(); case 575: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(571); - if (lookahead == '/') ADVANCE(584); + if (lookahead == '*') ADVANCE(576); + if (lookahead == '/') ADVANCE(582); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(607); + lookahead != '\\') ADVANCE(579); END_STATE(); case 576: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(569); - if (lookahead == '/') ADVANCE(611); + if (lookahead == '*') ADVANCE(576); + if (lookahead == '/') ADVANCE(605); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(596); + lookahead != '\\') ADVANCE(580); END_STATE(); case 577: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(569); - if (lookahead == '/') ADVANCE(561); + if (lookahead == '*') ADVANCE(586); + if (lookahead == '/') ADVANCE(555); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(570); + lookahead != '\\') ADVANCE(575); END_STATE(); case 578: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(569); - if (lookahead == '/') ADVANCE(583); + if (lookahead == '*') ADVANCE(559); + if (lookahead == '/') ADVANCE(573); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(597); + lookahead != '\\') ADVANCE(561); END_STATE(); case 579: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(590); - if (lookahead == '/') ADVANCE(579); + if (lookahead == '*') ADVANCE(595); + if (lookahead == '/') ADVANCE(582); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(607); + lookahead != '\\') ADVANCE(592); END_STATE(); case 580: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(582); - if (lookahead == '/') ADVANCE(561); + if (lookahead == '*') ADVANCE(595); + if (lookahead == '/') ADVANCE(605); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(581); + lookahead != '\\') ADVANCE(595); END_STATE(); case 581: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(582); - if (lookahead == '/') ADVANCE(588); + if (lookahead == '*') ADVANCE(595); + if (lookahead == '/') ADVANCE(560); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(585); + lookahead != '\\') ADVANCE(597); END_STATE(); case 582: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(582); - if (lookahead == '/') ADVANCE(610); + if (lookahead == '*') ADVANCE(583); + if (lookahead == '/') ADVANCE(555); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(586); + lookahead != '\\') ADVANCE(564); END_STATE(); case 583: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(592); - if (lookahead == '/') ADVANCE(561); + if (lookahead == '*') ADVANCE(585); + if (lookahead == '/') ADVANCE(608); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(581); + lookahead != '\\') ADVANCE(566); END_STATE(); case 584: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(565); - if (lookahead == '/') ADVANCE(579); + if (lookahead == '*') ADVANCE(585); + if (lookahead == '/') ADVANCE(540); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(567); + lookahead != '\\') ADVANCE(569); END_STATE(); case 585: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(601); - if (lookahead == '/') ADVANCE(588); + if (lookahead == '*') ADVANCE(585); + if (lookahead == '/') ADVANCE(554); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(598); + lookahead != '\\') ADVANCE(600); END_STATE(); case 586: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(601); - if (lookahead == '/') ADVANCE(610); + if (lookahead == '*') ADVANCE(587); + if (lookahead == '/') ADVANCE(605); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(601); + lookahead != '\\') ADVANCE(581); END_STATE(); case 587: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(601); - if (lookahead == '/') ADVANCE(566); + if (lookahead == '*') ADVANCE(587); + if (lookahead == '/') ADVANCE(560); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(603); + lookahead != '\\') ADVANCE(588); END_STATE(); case 588: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(589); - if (lookahead == '/') ADVANCE(561); + if (lookahead == '*') ADVANCE(593); + if (lookahead == '/') ADVANCE(560); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(570); + lookahead != '\\') ADVANCE(599); END_STATE(); case 589: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(591); - if (lookahead == '/') ADVANCE(613); + if (lookahead == '*') ADVANCE(593); + if (lookahead == '/') ADVANCE(561); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(572); + lookahead != '\\') ADVANCE(598); END_STATE(); case 590: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(591); - if (lookahead == '/') ADVANCE(546); + if (lookahead == '*') ADVANCE(594); + if (lookahead == '/') ADVANCE(608); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(575); + lookahead != '\\') ADVANCE(595); END_STATE(); case 591: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(591); - if (lookahead == '/') ADVANCE(560); + if (lookahead == '*') ADVANCE(594); + if (lookahead == '/') ADVANCE(555); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(606); + lookahead != '\\') ADVANCE(592); END_STATE(); case 592: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(593); - if (lookahead == '/') ADVANCE(610); + if (lookahead == '*') ADVANCE(594); + if (lookahead == '/') ADVANCE(582); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(587); + lookahead != '\\') ADVANCE(592); END_STATE(); case 593: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(593); - if (lookahead == '/') ADVANCE(566); + if (lookahead == '*') ADVANCE(594); + if (lookahead == '/') ADVANCE(571); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(594); + lookahead != '\\') ADVANCE(592); END_STATE(); case 594: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(599); - if (lookahead == '/') ADVANCE(566); + if (lookahead == '*') ADVANCE(594); + if (lookahead == '/') ADVANCE(570); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(605); + lookahead != '\\') ADVANCE(595); END_STATE(); case 595: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(599); - if (lookahead == '/') ADVANCE(567); + if (lookahead == '*') ADVANCE(594); + if (lookahead == '/') ADVANCE(605); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(604); + lookahead != '\\') ADVANCE(595); END_STATE(); case 596: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(600); - if (lookahead == '/') ADVANCE(613); + if (lookahead == '*') ADVANCE(594); + if (lookahead == '/') ADVANCE(572); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(601); + lookahead != '\\') ADVANCE(592); END_STATE(); case 597: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(600); - if (lookahead == '/') ADVANCE(561); + if (lookahead == '*') ADVANCE(596); + if (lookahead == '/') ADVANCE(560); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(598); + lookahead != '\\') ADVANCE(599); END_STATE(); case 598: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(600); - if (lookahead == '/') ADVANCE(588); + if (lookahead == '*') ADVANCE(596); + if (lookahead == '/') ADVANCE(573); if (lookahead != 0 && lookahead != '\'' && lookahead != '\\') ADVANCE(598); END_STATE(); case 599: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(600); - if (lookahead == '/') ADVANCE(577); + if (lookahead == '*') ADVANCE(596); + if (lookahead == '/') ADVANCE(561); if (lookahead != 0 && lookahead != '\'' && lookahead != '\\') ADVANCE(598); END_STATE(); case 600: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(600); - if (lookahead == '/') ADVANCE(576); + if (lookahead == '*') ADVANCE(568); + if (lookahead == '/') ADVANCE(560); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(601); + lookahead != '\\') ADVANCE(602); END_STATE(); case 601: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(600); - if (lookahead == '/') ADVANCE(610); + if (lookahead == '*') ADVANCE(568); + if (lookahead == '/') ADVANCE(573); if (lookahead != 0 && lookahead != '\'' && lookahead != '\\') ADVANCE(601); END_STATE(); case 602: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(600); - if (lookahead == '/') ADVANCE(578); + if (lookahead == '*') ADVANCE(568); + if (lookahead == '/') ADVANCE(561); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(598); + lookahead != '\\') ADVANCE(601); END_STATE(); case 603: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '/') ADVANCE(566); + if (lookahead == '/') ADVANCE(550); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(603); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(605); + lookahead != '\\') ADVANCE(608); END_STATE(); case 604: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '/') ADVANCE(579); + if (lookahead == '/') ADVANCE(608); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(604); + lookahead != '\\') ADVANCE(608); END_STATE(); case 605: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '/') ADVANCE(567); + if (lookahead == '/') ADVANCE(608); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(604); + lookahead != '\\') ADVANCE(563); END_STATE(); case 606: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(574); - if (lookahead == '/') ADVANCE(566); + if (lookahead == '/') ADVANCE(608); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(608); + lookahead != '\\') ADVANCE(576); END_STATE(); case 607: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(574); - if (lookahead == '/') ADVANCE(579); + if (lookahead == '\n' || + lookahead == '\r') ADVANCE(608); if (lookahead != 0 && lookahead != '\'' && lookahead != '\\') ADVANCE(607); END_STATE(); case 608: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(574); - if (lookahead == '/') ADVANCE(567); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(607); + lookahead != '\\') ADVANCE(608); END_STATE(); case 609: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '/') ADVANCE(613); + ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); + if (lookahead == '*') ADVANCE(677); + if (lookahead == '/') ADVANCE(624); if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(613); + lookahead != '"' && + lookahead != '\\') ADVANCE(609); END_STATE(); case 610: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '/') ADVANCE(613); + ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); + if (lookahead == '*') ADVANCE(677); + if (lookahead == '/') ADVANCE(646); if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(569); + lookahead != '"' && + lookahead != '\\') ADVANCE(643); END_STATE(); case 611: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '/') ADVANCE(613); + ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); + if (lookahead == '*') ADVANCE(677); + if (lookahead == '/') ADVANCE(609); if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(582); + lookahead != '"' && + lookahead != '\\') ADVANCE(609); END_STATE(); case 612: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(613); + ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); + if (lookahead == '*') ADVANCE(677); + if (lookahead == '/') ADVANCE(647); if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(612); + lookahead != '"' && + lookahead != '\\') ADVANCE(622); END_STATE(); case 613: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); + ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); + if (lookahead == '*') ADVANCE(677); if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(613); + lookahead != '"' && + lookahead != '\\') ADVANCE(675); END_STATE(); case 614: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(684); + if (lookahead == '*') ADVANCE(677); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(614); + lookahead != '\\') ADVANCE(621); END_STATE(); case 615: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '!') ADVANCE(614); + if (lookahead == '*') ADVANCE(677); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(684); + lookahead != '\\') ADVANCE(609); END_STATE(); case 616: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '#') ADVANCE(615); - if (lookahead == '/') ADVANCE(627); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(616); + if (lookahead == '*') ADVANCE(673); + if (lookahead == '/') ADVANCE(625); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(684); + lookahead != '\\') ADVANCE(616); END_STATE(); case 617: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(684); - if (lookahead == '/') ADVANCE(632); + if (lookahead == '*') ADVANCE(673); if (lookahead != 0 && lookahead != '"' && lookahead != '\\') ADVANCE(617); END_STATE(); case 618: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(684); - if (lookahead == '/') ADVANCE(654); + if (lookahead == '*') ADVANCE(673); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(651); + lookahead != '\\') ADVANCE(616); END_STATE(); case 619: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(684); - if (lookahead == '/') ADVANCE(617); + if (lookahead == '*') ADVANCE(620); + if (lookahead == '/') ADVANCE(676); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(617); + lookahead != '\\') ADVANCE(677); END_STATE(); case 620: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(684); - if (lookahead == '/') ADVANCE(655); + if (lookahead == '*') ADVANCE(611); + if (lookahead == '/') ADVANCE(617); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(630); + lookahead != '\\') ADVANCE(618); END_STATE(); case 621: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(684); + if (lookahead == '*') ADVANCE(615); + if (lookahead == '/') ADVANCE(629); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(682); + lookahead != '\\') ADVANCE(631); END_STATE(); case 622: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(684); + if (lookahead == '*') ADVANCE(615); + if (lookahead == '/') ADVANCE(642); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(629); + lookahead != '\\') ADVANCE(630); END_STATE(); case 623: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(684); + if (lookahead == '*') ADVANCE(615); + if (lookahead == '/') ADVANCE(657); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(617); + lookahead != '\\') ADVANCE(658); END_STATE(); case 624: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(680); - if (lookahead == '/') ADVANCE(633); + if (lookahead == '*') ADVANCE(626); + if (lookahead == '/') ADVANCE(624); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(624); + lookahead != '\\') ADVANCE(609); END_STATE(); case 625: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(680); + if (lookahead == '*') ADVANCE(626); + if (lookahead == '/') ADVANCE(625); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(625); + lookahead != '\\') ADVANCE(616); END_STATE(); case 626: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(680); + if (lookahead == '*') ADVANCE(627); + if (lookahead == '/') ADVANCE(677); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(624); + lookahead != '\\') ADVANCE(614); END_STATE(); case 627: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(628); - if (lookahead == '/') ADVANCE(683); + if (lookahead == '*') ADVANCE(627); + if (lookahead == '/') ADVANCE(621); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(684); + lookahead != '\\') ADVANCE(621); END_STATE(); case 628: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(619); - if (lookahead == '/') ADVANCE(625); + if (lookahead == '*') ADVANCE(627); + if (lookahead == '/') ADVANCE(609); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(626); + lookahead != '\\') ADVANCE(612); END_STATE(); case 629: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(623); - if (lookahead == '/') ADVANCE(637); + if (lookahead == '*') ADVANCE(636); + if (lookahead == '/') ADVANCE(629); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(639); + lookahead != '\\') ADVANCE(671); END_STATE(); case 630: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(623); - if (lookahead == '/') ADVANCE(650); + if (lookahead == '*') ADVANCE(636); + if (lookahead == '/') ADVANCE(642); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(638); + lookahead != '\\') ADVANCE(670); END_STATE(); case 631: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(623); - if (lookahead == '/') ADVANCE(665); + if (lookahead == '*') ADVANCE(636); + if (lookahead == '/') ADVANCE(630); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(666); + lookahead != '\\') ADVANCE(670); END_STATE(); case 632: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); if (lookahead == '*') ADVANCE(634); - if (lookahead == '/') ADVANCE(632); + if (lookahead == '/') ADVANCE(677); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(617); + lookahead != '\\') ADVANCE(632); END_STATE(); case 633: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); if (lookahead == '*') ADVANCE(634); - if (lookahead == '/') ADVANCE(633); + if (lookahead == '/') ADVANCE(624); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(624); + lookahead != '\\') ADVANCE(633); END_STATE(); case 634: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(635); - if (lookahead == '/') ADVANCE(684); + if (lookahead == '*') ADVANCE(634); + if (lookahead == '/') ADVANCE(613); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(622); + lookahead != '\\') ADVANCE(632); END_STATE(); case 635: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(635); - if (lookahead == '/') ADVANCE(629); + if (lookahead == '*') ADVANCE(634); + if (lookahead == '/') ADVANCE(621); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(629); + lookahead != '\\') ADVANCE(669); END_STATE(); case 636: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(635); - if (lookahead == '/') ADVANCE(617); + if (lookahead == '*') ADVANCE(634); + if (lookahead == '/') ADVANCE(609); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(620); + lookahead != '\\') ADVANCE(633); END_STATE(); case 637: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(644); - if (lookahead == '/') ADVANCE(637); + if (lookahead == '*') ADVANCE(634); + if (lookahead == '/') ADVANCE(610); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(679); + lookahead != '\\') ADVANCE(633); END_STATE(); case 638: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(644); - if (lookahead == '/') ADVANCE(650); + if (lookahead == '*') ADVANCE(634); + if (lookahead == '/') ADVANCE(647); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(678); + lookahead != '\\') ADVANCE(670); END_STATE(); case 639: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(644); - if (lookahead == '/') ADVANCE(638); + if (lookahead == '*') ADVANCE(632); + if (lookahead == '/') ADVANCE(675); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(678); + lookahead != '\\') ADVANCE(659); END_STATE(); case 640: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(642); - if (lookahead == '/') ADVANCE(684); + if (lookahead == '*') ADVANCE(632); + if (lookahead == '/') ADVANCE(624); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(640); + lookahead != '\\') ADVANCE(633); END_STATE(); case 641: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(642); - if (lookahead == '/') ADVANCE(632); + if (lookahead == '*') ADVANCE(632); + if (lookahead == '/') ADVANCE(646); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(641); + lookahead != '\\') ADVANCE(660); END_STATE(); case 642: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(642); - if (lookahead == '/') ADVANCE(621); + if (lookahead == '*') ADVANCE(653); + if (lookahead == '/') ADVANCE(642); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(640); + lookahead != '\\') ADVANCE(670); END_STATE(); case 643: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(642); - if (lookahead == '/') ADVANCE(629); + if (lookahead == '*') ADVANCE(645); + if (lookahead == '/') ADVANCE(624); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(677); + lookahead != '\\') ADVANCE(644); END_STATE(); case 644: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(642); - if (lookahead == '/') ADVANCE(617); + if (lookahead == '*') ADVANCE(645); + if (lookahead == '/') ADVANCE(651); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(641); + lookahead != '\\') ADVANCE(648); END_STATE(); case 645: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(642); - if (lookahead == '/') ADVANCE(618); + if (lookahead == '*') ADVANCE(645); + if (lookahead == '/') ADVANCE(674); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(641); + lookahead != '\\') ADVANCE(649); END_STATE(); case 646: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(642); - if (lookahead == '/') ADVANCE(655); + if (lookahead == '*') ADVANCE(655); + if (lookahead == '/') ADVANCE(624); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(678); + lookahead != '\\') ADVANCE(644); END_STATE(); case 647: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '/') ADVANCE(682); + if (lookahead == '*') ADVANCE(628); + if (lookahead == '/') ADVANCE(642); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(667); + lookahead != '\\') ADVANCE(630); END_STATE(); case 648: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '/') ADVANCE(632); + if (lookahead == '*') ADVANCE(664); + if (lookahead == '/') ADVANCE(651); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(641); + lookahead != '\\') ADVANCE(661); END_STATE(); case 649: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '/') ADVANCE(654); + if (lookahead == '*') ADVANCE(664); + if (lookahead == '/') ADVANCE(674); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(668); + lookahead != '\\') ADVANCE(664); END_STATE(); case 650: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(661); - if (lookahead == '/') ADVANCE(650); + if (lookahead == '*') ADVANCE(664); + if (lookahead == '/') ADVANCE(629); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(678); + lookahead != '\\') ADVANCE(666); END_STATE(); case 651: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(653); - if (lookahead == '/') ADVANCE(632); + if (lookahead == '*') ADVANCE(652); + if (lookahead == '/') ADVANCE(624); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(652); + lookahead != '\\') ADVANCE(633); END_STATE(); case 652: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(653); - if (lookahead == '/') ADVANCE(659); + if (lookahead == '*') ADVANCE(654); + if (lookahead == '/') ADVANCE(677); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(656); + lookahead != '\\') ADVANCE(635); END_STATE(); case 653: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(653); - if (lookahead == '/') ADVANCE(681); + if (lookahead == '*') ADVANCE(654); + if (lookahead == '/') ADVANCE(609); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(657); + lookahead != '\\') ADVANCE(638); END_STATE(); case 654: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(663); - if (lookahead == '/') ADVANCE(632); + if (lookahead == '*') ADVANCE(654); + if (lookahead == '/') ADVANCE(623); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(652); + lookahead != '\\') ADVANCE(669); END_STATE(); case 655: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(636); - if (lookahead == '/') ADVANCE(650); + if (lookahead == '*') ADVANCE(656); + if (lookahead == '/') ADVANCE(674); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(638); + lookahead != '\\') ADVANCE(650); END_STATE(); case 656: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(672); - if (lookahead == '/') ADVANCE(659); + if (lookahead == '*') ADVANCE(656); + if (lookahead == '/') ADVANCE(629); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(669); + lookahead != '\\') ADVANCE(657); END_STATE(); case 657: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(672); - if (lookahead == '/') ADVANCE(681); + if (lookahead == '*') ADVANCE(662); + if (lookahead == '/') ADVANCE(629); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(672); + lookahead != '\\') ADVANCE(668); END_STATE(); case 658: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(672); - if (lookahead == '/') ADVANCE(637); + if (lookahead == '*') ADVANCE(662); + if (lookahead == '/') ADVANCE(630); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(674); + lookahead != '\\') ADVANCE(667); END_STATE(); case 659: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(660); - if (lookahead == '/') ADVANCE(632); + if (lookahead == '*') ADVANCE(663); + if (lookahead == '/') ADVANCE(677); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(641); + lookahead != '\\') ADVANCE(664); END_STATE(); case 660: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(662); - if (lookahead == '/') ADVANCE(684); + if (lookahead == '*') ADVANCE(663); + if (lookahead == '/') ADVANCE(624); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(643); + lookahead != '\\') ADVANCE(661); END_STATE(); case 661: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(662); - if (lookahead == '/') ADVANCE(617); + if (lookahead == '*') ADVANCE(663); + if (lookahead == '/') ADVANCE(651); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(646); + lookahead != '\\') ADVANCE(661); END_STATE(); case 662: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(662); - if (lookahead == '/') ADVANCE(631); + if (lookahead == '*') ADVANCE(663); + if (lookahead == '/') ADVANCE(640); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(677); + lookahead != '\\') ADVANCE(661); END_STATE(); case 663: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(664); - if (lookahead == '/') ADVANCE(681); + if (lookahead == '*') ADVANCE(663); + if (lookahead == '/') ADVANCE(639); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(658); + lookahead != '\\') ADVANCE(664); END_STATE(); case 664: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(664); - if (lookahead == '/') ADVANCE(637); + if (lookahead == '*') ADVANCE(663); + if (lookahead == '/') ADVANCE(674); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(665); + lookahead != '\\') ADVANCE(664); END_STATE(); case 665: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(670); - if (lookahead == '/') ADVANCE(637); + if (lookahead == '*') ADVANCE(663); + if (lookahead == '/') ADVANCE(641); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(676); + lookahead != '\\') ADVANCE(661); END_STATE(); case 666: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(670); - if (lookahead == '/') ADVANCE(638); + if (lookahead == '*') ADVANCE(665); + if (lookahead == '/') ADVANCE(629); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(675); + lookahead != '\\') ADVANCE(668); END_STATE(); case 667: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(671); - if (lookahead == '/') ADVANCE(684); + if (lookahead == '*') ADVANCE(665); + if (lookahead == '/') ADVANCE(642); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(672); + lookahead != '\\') ADVANCE(667); END_STATE(); case 668: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(671); - if (lookahead == '/') ADVANCE(632); + if (lookahead == '*') ADVANCE(665); + if (lookahead == '/') ADVANCE(630); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(669); + lookahead != '\\') ADVANCE(667); END_STATE(); case 669: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(671); - if (lookahead == '/') ADVANCE(659); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '/') ADVANCE(629); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(669); + lookahead != '\\') ADVANCE(671); END_STATE(); case 670: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(671); - if (lookahead == '/') ADVANCE(648); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '/') ADVANCE(642); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(669); + lookahead != '\\') ADVANCE(670); END_STATE(); case 671: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(671); - if (lookahead == '/') ADVANCE(647); + if (lookahead == '*') ADVANCE(637); + if (lookahead == '/') ADVANCE(630); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(672); + lookahead != '\\') ADVANCE(670); END_STATE(); case 672: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(671); - if (lookahead == '/') ADVANCE(681); + if (lookahead == '/') ADVANCE(619); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(672); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(672); + lookahead != '\\') ADVANCE(677); END_STATE(); case 673: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(671); - if (lookahead == '/') ADVANCE(649); + if (lookahead == '/') ADVANCE(677); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(669); + lookahead != '\\') ADVANCE(677); END_STATE(); case 674: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(673); - if (lookahead == '/') ADVANCE(637); + if (lookahead == '/') ADVANCE(677); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(676); + lookahead != '\\') ADVANCE(632); END_STATE(); case 675: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(673); - if (lookahead == '/') ADVANCE(650); + if (lookahead == '/') ADVANCE(677); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(675); + lookahead != '\\') ADVANCE(645); END_STATE(); case 676: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(673); - if (lookahead == '/') ADVANCE(638); + if (lookahead == '\n' || + lookahead == '\r') ADVANCE(677); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(675); + lookahead != '\\') ADVANCE(676); END_STATE(); case 677: ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(645); - if (lookahead == '/') ADVANCE(637); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(679); + lookahead != '\\') ADVANCE(677); END_STATE(); case 678: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(645); - if (lookahead == '/') ADVANCE(650); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(678); - END_STATE(); - case 679: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(645); - if (lookahead == '/') ADVANCE(638); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(678); - END_STATE(); - case 680: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '/') ADVANCE(684); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(684); - END_STATE(); - case 681: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '/') ADVANCE(684); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(640); - END_STATE(); - case 682: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '/') ADVANCE(684); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(653); - END_STATE(); - case 683: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(684); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(683); - END_STATE(); - case 684: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(684); - END_STATE(); - case 685: ACCEPT_TOKEN(aux_sym_format_specifier_token2); END_STATE(); - case 686: + case 679: ACCEPT_TOKEN(anon_sym_0); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(184); + lookahead == 'b') ADVANCE(183); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(183); + lookahead == 'o') ADVANCE(182); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(185); - if (lookahead == '_') ADVANCE(210); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(393); + lookahead == 'x') ADVANCE(184); + if (lookahead == '_') ADVANCE(209); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(394); END_STATE(); - case 687: + case 680: ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == '$') ADVANCE(181); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(859); + if (lookahead == '$') ADVANCE(179); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); + if (lookahead == '[') ADVANCE(850); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); END_STATE(); - case 688: + case 681: ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == '$') ADVANCE(181); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); + if (lookahead == '$') ADVANCE(179); + if (lookahead == 'C') ADVANCE(684); + if (lookahead == 'J') ADVANCE(687); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); END_STATE(); - case 689: + case 682: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(863); - if (lookahead == '\'') ADVANCE(864); + if (lookahead == '"') ADVANCE(854); + if (lookahead == '\'') ADVANCE(855); 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(710); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); END_STATE(); - case 690: + case 683: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(865); - if (lookahead == '\'') ADVANCE(866); + if (lookahead == '"') ADVANCE(856); + if (lookahead == '\'') ADVANCE(857); 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(710); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); END_STATE(); - case 691: + case 684: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(182); + if (lookahead == '.') ADVANCE(180); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); END_STATE(); - case 692: + case 685: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(238); + if (lookahead == '.') ADVANCE(237); 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(710); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); END_STATE(); - case 693: + case 686: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(189); + if (lookahead == '.') ADVANCE(188); 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(710); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); END_STATE(); - case 694: + case 687: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(692); + if (lookahead == 'S') ADVANCE(685); 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(710); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); END_STATE(); - case 695: + case 688: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '[') ADVANCE(711); + if (lookahead == '[') ADVANCE(704); 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(710); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); END_STATE(); - case 696: + case 689: ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(710); - if (lookahead == 'n') ADVANCE(374); - if (lookahead == 's') ADVANCE(371); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(703); + if (lookahead == 'n') ADVANCE(375); + if (lookahead == 's') ADVANCE(372); END_STATE(); - case 697: + case 690: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -15928,10 +15890,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('f' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'e') ADVANCE(369); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'e') ADVANCE(370); END_STATE(); - case 698: + case 691: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -15940,10 +15902,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('g' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'f') ADVANCE(367); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'f') ADVANCE(368); END_STATE(); - case 699: + case 692: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -15952,10 +15914,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('m' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'l') ADVANCE(707); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'l') ADVANCE(700); END_STATE(); - case 700: + case 693: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -15964,10 +15926,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('o' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'n') ADVANCE(693); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'n') ADVANCE(686); END_STATE(); - case 701: + case 694: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -15976,10 +15938,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'o') ADVANCE(700); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'o') ADVANCE(693); END_STATE(); - case 702: + case 695: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -15988,10 +15950,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'o') ADVANCE(705); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'o') ADVANCE(698); END_STATE(); - case 703: + case 696: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16000,10 +15962,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('q' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'p') ADVANCE(695); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'p') ADVANCE(688); END_STATE(); - case 704: + case 697: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16012,10 +15974,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('s' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'r') ADVANCE(358); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'r') ADVANCE(359); END_STATE(); - case 705: + case 698: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16024,10 +15986,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('s' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'r') ADVANCE(712); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'r') ADVANCE(705); END_STATE(); - case 706: + case 699: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16036,10 +15998,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('t' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 's') ADVANCE(283); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 's') ADVANCE(284); END_STATE(); - case 707: + case 700: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16048,10 +16010,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('t' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 's') ADVANCE(697); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 's') ADVANCE(690); END_STATE(); - case 708: + case 701: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16060,10 +16022,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('t' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 's') ADVANCE(701); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 's') ADVANCE(694); END_STATE(); - case 709: + case 702: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16071,10 +16033,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('b' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(703); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); + if (lookahead == 'a') ADVANCE(696); END_STATE(); - case 710: + case 703: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16082,12 +16044,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); END_STATE(); - case 711: + case 704: ACCEPT_TOKEN(anon_sym_map_LBRACK); END_STATE(); - case 712: + case 705: ACCEPT_TOKEN(anon_sym_DOLLARfor); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -16095,1231 +16057,1207 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); + (945 <= lookahead && lookahead <= 969)) ADVANCE(703); END_STATE(); - case 713: + case 706: ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); - case 714: + case 707: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(321); + if (lookahead == '.') ADVANCE(322); END_STATE(); - case 715: + case 708: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(272); END_STATE(); - case 716: + case 709: + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead == '!') ADVANCE(239); + END_STATE(); + case 710: + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead == '!') ADVANCE(239); + if (lookahead == '[') ADVANCE(366); + END_STATE(); + case 711: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(272); - if (lookahead == '[') ADVANCE(365); + if (lookahead == '[') ADVANCE(366); + END_STATE(); + case 712: + ACCEPT_TOKEN(aux_sym_hash_statement_token1); + if (lookahead == '*') ADVANCE(780); + if (lookahead == '/') ADVANCE(727); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == '\\') ADVANCE(161); + if (lookahead != 0) ADVANCE(712); + END_STATE(); + case 713: + ACCEPT_TOKEN(aux_sym_hash_statement_token1); + if (lookahead == '*') ADVANCE(780); + if (lookahead == '/') ADVANCE(755); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == '\\') ADVANCE(126); + if (lookahead != 0) ADVANCE(753); + END_STATE(); + case 714: + ACCEPT_TOKEN(aux_sym_hash_statement_token1); + if (lookahead == '*') ADVANCE(780); + if (lookahead == '/') ADVANCE(712); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == '\\') ADVANCE(161); + if (lookahead != 0) ADVANCE(712); + END_STATE(); + case 715: + ACCEPT_TOKEN(aux_sym_hash_statement_token1); + if (lookahead == '*') ADVANCE(780); + if (lookahead == '/') ADVANCE(758); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == '\\') ADVANCE(103); + if (lookahead != 0) ADVANCE(726); + END_STATE(); + case 716: + ACCEPT_TOKEN(aux_sym_hash_statement_token1); + if (lookahead == '*') ADVANCE(780); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == '\\') ADVANCE(243); + if (lookahead != 0) ADVANCE(777); END_STATE(); case 717: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '!') ADVANCE(786); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '\\') ADVANCE(787); + if (lookahead == '*') ADVANCE(780); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == '\\') ADVANCE(161); + if (lookahead != 0) ADVANCE(712); END_STATE(); case 718: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '#') ADVANCE(717); - if (lookahead == '/') ADVANCE(726); - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') ADVANCE(718); - if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead) && - lookahead != '\\') ADVANCE(787); + if (lookahead == '*') ADVANCE(780); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == '\\') ADVANCE(102); + if (lookahead != 0) ADVANCE(724); END_STATE(); case 719: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(787); - if (lookahead == '/') ADVANCE(734); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(163); - if (lookahead != 0) ADVANCE(719); + if (lookahead == '*') ADVANCE(723); + if (lookahead == '/') ADVANCE(779); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\\') ADVANCE(780); END_STATE(); case 720: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(787); - if (lookahead == '/') ADVANCE(762); + if (lookahead == '*') ADVANCE(778); + if (lookahead == '/') ADVANCE(728); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(131); - if (lookahead != 0) ADVANCE(760); + lookahead == '\\') ADVANCE(98); + if (lookahead != 0) ADVANCE(720); END_STATE(); case 721: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(787); - if (lookahead == '/') ADVANCE(719); + if (lookahead == '*') ADVANCE(778); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(163); - if (lookahead != 0) ADVANCE(719); + lookahead == '\\') ADVANCE(99); + if (lookahead != 0) ADVANCE(721); END_STATE(); case 722: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(787); - if (lookahead == '/') ADVANCE(765); + if (lookahead == '*') ADVANCE(778); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(108); - if (lookahead != 0) ADVANCE(733); + lookahead == '\\') ADVANCE(98); + if (lookahead != 0) ADVANCE(720); END_STATE(); case 723: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(787); + if (lookahead == '*') ADVANCE(714); + if (lookahead == '/') ADVANCE(721); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(243); - if (lookahead != 0) ADVANCE(783); + lookahead == '\\') ADVANCE(100); + if (lookahead != 0) ADVANCE(722); END_STATE(); case 724: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(787); + if (lookahead == '*') ADVANCE(717); + if (lookahead == '/') ADVANCE(732); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(163); - if (lookahead != 0) ADVANCE(719); + lookahead == '\\') ADVANCE(112); + if (lookahead != 0) ADVANCE(734); END_STATE(); case 725: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(787); + if (lookahead == '*') ADVANCE(717); + if (lookahead == '/') ADVANCE(760); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(107); - if (lookahead != 0) ADVANCE(731); + lookahead == '\\') ADVANCE(140); + if (lookahead != 0) ADVANCE(761); END_STATE(); case 726: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(730); - if (lookahead == '/') ADVANCE(785); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '\\') ADVANCE(787); + if (lookahead == '*') ADVANCE(717); + if (lookahead == '/') ADVANCE(748); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == '\\') ADVANCE(111); + if (lookahead != 0) ADVANCE(733); END_STATE(); case 727: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(784); - if (lookahead == '/') ADVANCE(735); + if (lookahead == '*') ADVANCE(729); + if (lookahead == '/') ADVANCE(727); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(103); - if (lookahead != 0) ADVANCE(727); + lookahead == '\\') ADVANCE(161); + if (lookahead != 0) ADVANCE(712); END_STATE(); case 728: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(784); + if (lookahead == '*') ADVANCE(729); + if (lookahead == '/') ADVANCE(728); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(104); - if (lookahead != 0) ADVANCE(728); + lookahead == '\\') ADVANCE(98); + if (lookahead != 0) ADVANCE(720); END_STATE(); case 729: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(784); + if (lookahead == '*') ADVANCE(730); + if (lookahead == '/') ADVANCE(780); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(103); - if (lookahead != 0) ADVANCE(727); + lookahead == '\\') ADVANCE(242); + if (lookahead != 0) ADVANCE(718); END_STATE(); case 730: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(721); - if (lookahead == '/') ADVANCE(728); + if (lookahead == '*') ADVANCE(730); + if (lookahead == '/') ADVANCE(724); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(105); - if (lookahead != 0) ADVANCE(729); + lookahead == '\\') ADVANCE(102); + if (lookahead != 0) ADVANCE(724); END_STATE(); case 731: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(724); - if (lookahead == '/') ADVANCE(739); + if (lookahead == '*') ADVANCE(730); + if (lookahead == '/') ADVANCE(712); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(117); - if (lookahead != 0) ADVANCE(741); + lookahead == '\\') ADVANCE(163); + if (lookahead != 0) ADVANCE(715); END_STATE(); case 732: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(724); - if (lookahead == '/') ADVANCE(767); + if (lookahead == '*') ADVANCE(740); + if (lookahead == '/') ADVANCE(732); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(145); - if (lookahead != 0) ADVANCE(768); + lookahead == '\\') ADVANCE(122); + if (lookahead != 0) ADVANCE(744); END_STATE(); case 733: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(724); - if (lookahead == '/') ADVANCE(755); + if (lookahead == '*') ADVANCE(740); + if (lookahead == '/') ADVANCE(748); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(116); - if (lookahead != 0) ADVANCE(740); + lookahead == '\\') ADVANCE(121); + if (lookahead != 0) ADVANCE(743); END_STATE(); case 734: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(736); - if (lookahead == '/') ADVANCE(734); + if (lookahead == '*') ADVANCE(740); + if (lookahead == '/') ADVANCE(733); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(163); - if (lookahead != 0) ADVANCE(719); + lookahead == '\\') ADVANCE(121); + if (lookahead != 0) ADVANCE(743); END_STATE(); case 735: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(736); - if (lookahead == '/') ADVANCE(735); + if (lookahead == '*') ADVANCE(737); + if (lookahead == '/') ADVANCE(780); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(103); - if (lookahead != 0) ADVANCE(727); + lookahead == '\\') ADVANCE(119); + if (lookahead != 0) ADVANCE(735); END_STATE(); case 736: ACCEPT_TOKEN(aux_sym_hash_statement_token1); if (lookahead == '*') ADVANCE(737); - if (lookahead == '/') ADVANCE(787); + if (lookahead == '/') ADVANCE(727); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(242); - if (lookahead != 0) ADVANCE(725); + lookahead == '\\') ADVANCE(114); + if (lookahead != 0) ADVANCE(736); END_STATE(); case 737: ACCEPT_TOKEN(aux_sym_hash_statement_token1); if (lookahead == '*') ADVANCE(737); - if (lookahead == '/') ADVANCE(731); + if (lookahead == '/') ADVANCE(716); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(107); - if (lookahead != 0) ADVANCE(731); + lookahead == '\\') ADVANCE(119); + if (lookahead != 0) ADVANCE(735); END_STATE(); case 738: ACCEPT_TOKEN(aux_sym_hash_statement_token1); if (lookahead == '*') ADVANCE(737); - if (lookahead == '/') ADVANCE(719); + if (lookahead == '/') ADVANCE(724); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(165); - if (lookahead != 0) ADVANCE(722); + lookahead == '\\') ADVANCE(120); + if (lookahead != 0) ADVANCE(742); END_STATE(); case 739: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(747); - if (lookahead == '/') ADVANCE(739); + if (lookahead == '*') ADVANCE(737); + if (lookahead == '/') ADVANCE(713); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(127); - if (lookahead != 0) ADVANCE(751); + lookahead == '\\') ADVANCE(114); + if (lookahead != 0) ADVANCE(736); END_STATE(); case 740: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(747); - if (lookahead == '/') ADVANCE(755); + if (lookahead == '*') ADVANCE(737); + if (lookahead == '/') ADVANCE(712); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(126); - if (lookahead != 0) ADVANCE(750); + lookahead == '\\') ADVANCE(114); + if (lookahead != 0) ADVANCE(736); END_STATE(); case 741: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(747); - if (lookahead == '/') ADVANCE(740); + if (lookahead == '*') ADVANCE(737); + if (lookahead == '/') ADVANCE(758); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(126); - if (lookahead != 0) ADVANCE(750); + lookahead == '\\') ADVANCE(121); + if (lookahead != 0) ADVANCE(743); END_STATE(); case 742: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(744); - if (lookahead == '/') ADVANCE(787); + if (lookahead == '*') ADVANCE(739); + if (lookahead == '/') ADVANCE(732); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(124); - if (lookahead != 0) ADVANCE(742); + lookahead == '\\') ADVANCE(122); + if (lookahead != 0) ADVANCE(744); END_STATE(); case 743: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(744); - if (lookahead == '/') ADVANCE(734); + if (lookahead == '*') ADVANCE(739); + if (lookahead == '/') ADVANCE(748); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(119); + lookahead == '\\') ADVANCE(121); if (lookahead != 0) ADVANCE(743); END_STATE(); case 744: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(744); - if (lookahead == '/') ADVANCE(723); + if (lookahead == '*') ADVANCE(739); + if (lookahead == '/') ADVANCE(733); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(124); - if (lookahead != 0) ADVANCE(742); + lookahead == '\\') ADVANCE(121); + if (lookahead != 0) ADVANCE(743); END_STATE(); case 745: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(744); - if (lookahead == '/') ADVANCE(731); + if (lookahead == '*') ADVANCE(735); + if (lookahead == '/') ADVANCE(777); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(125); - if (lookahead != 0) ADVANCE(749); + lookahead == '\\') ADVANCE(136); + if (lookahead != 0) ADVANCE(762); END_STATE(); case 746: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(744); - if (lookahead == '/') ADVANCE(720); + if (lookahead == '*') ADVANCE(735); + if (lookahead == '/') ADVANCE(727); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(119); - if (lookahead != 0) ADVANCE(743); + lookahead == '\\') ADVANCE(114); + if (lookahead != 0) ADVANCE(736); END_STATE(); case 747: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(744); - if (lookahead == '/') ADVANCE(719); + if (lookahead == '*') ADVANCE(735); + if (lookahead == '/') ADVANCE(755); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(119); - if (lookahead != 0) ADVANCE(743); + lookahead == '\\') ADVANCE(132); + if (lookahead != 0) ADVANCE(764); END_STATE(); case 748: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(744); - if (lookahead == '/') ADVANCE(765); + if (lookahead == '*') ADVANCE(750); + if (lookahead == '/') ADVANCE(748); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(126); - if (lookahead != 0) ADVANCE(750); + lookahead == '\\') ADVANCE(121); + if (lookahead != 0) ADVANCE(743); END_STATE(); case 749: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(746); - if (lookahead == '/') ADVANCE(739); + if (lookahead == '*') ADVANCE(751); + if (lookahead == '/') ADVANCE(780); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(127); - if (lookahead != 0) ADVANCE(751); + lookahead == '\\') ADVANCE(117); + if (lookahead != 0) ADVANCE(738); END_STATE(); case 750: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(746); - if (lookahead == '/') ADVANCE(755); + if (lookahead == '*') ADVANCE(751); + if (lookahead == '/') ADVANCE(712); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(126); - if (lookahead != 0) ADVANCE(750); + lookahead == '\\') ADVANCE(118); + if (lookahead != 0) ADVANCE(741); END_STATE(); case 751: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(746); - if (lookahead == '/') ADVANCE(740); + if (lookahead == '*') ADVANCE(751); + if (lookahead == '/') ADVANCE(725); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(126); - if (lookahead != 0) ADVANCE(750); + lookahead == '\\') ADVANCE(120); + if (lookahead != 0) ADVANCE(742); END_STATE(); case 752: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(742); - if (lookahead == '/') ADVANCE(783); + if (lookahead == '*') ADVANCE(752); + if (lookahead == '/') ADVANCE(776); if (lookahead == '\n' || lookahead == '\r' || lookahead == '\\') ADVANCE(141); - if (lookahead != 0) ADVANCE(769); + if (lookahead != 0) ADVANCE(772); END_STATE(); case 753: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(742); - if (lookahead == '/') ADVANCE(734); + if (lookahead == '*') ADVANCE(752); + if (lookahead == '/') ADVANCE(727); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(119); - if (lookahead != 0) ADVANCE(743); + lookahead == '\\') ADVANCE(125); + if (lookahead != 0) ADVANCE(754); END_STATE(); case 754: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(742); - if (lookahead == '/') ADVANCE(762); + if (lookahead == '*') ADVANCE(752); + if (lookahead == '/') ADVANCE(759); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(137); - if (lookahead != 0) ADVANCE(771); + lookahead == '\\') ADVANCE(142); + if (lookahead != 0) ADVANCE(774); END_STATE(); case 755: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(757); - if (lookahead == '/') ADVANCE(755); + if (lookahead == '*') ADVANCE(756); + if (lookahead == '/') ADVANCE(727); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(126); - if (lookahead != 0) ADVANCE(750); + lookahead == '\\') ADVANCE(125); + if (lookahead != 0) ADVANCE(754); END_STATE(); case 756: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(758); - if (lookahead == '/') ADVANCE(787); + if (lookahead == '*') ADVANCE(757); + if (lookahead == '/') ADVANCE(776); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(122); - if (lookahead != 0) ADVANCE(745); + lookahead == '\\') ADVANCE(143); + if (lookahead != 0) ADVANCE(773); END_STATE(); case 757: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(758); - if (lookahead == '/') ADVANCE(719); + if (lookahead == '*') ADVANCE(757); + if (lookahead == '/') ADVANCE(732); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(123); - if (lookahead != 0) ADVANCE(748); + lookahead == '\\') ADVANCE(138); + if (lookahead != 0) ADVANCE(760); END_STATE(); case 758: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(758); - if (lookahead == '/') ADVANCE(732); + if (lookahead == '*') ADVANCE(731); + if (lookahead == '/') ADVANCE(748); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(125); - if (lookahead != 0) ADVANCE(749); + lookahead == '\\') ADVANCE(111); + if (lookahead != 0) ADVANCE(733); END_STATE(); case 759: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(759); - if (lookahead == '/') ADVANCE(782); + if (lookahead == '*') ADVANCE(749); + if (lookahead == '/') ADVANCE(727); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(146); - if (lookahead != 0) ADVANCE(779); + lookahead == '\\') ADVANCE(114); + if (lookahead != 0) ADVANCE(736); END_STATE(); case 760: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(759); - if (lookahead == '/') ADVANCE(734); + if (lookahead == '*') ADVANCE(766); + if (lookahead == '/') ADVANCE(732); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(130); - if (lookahead != 0) ADVANCE(761); + lookahead == '\\') ADVANCE(146); + if (lookahead != 0) ADVANCE(771); END_STATE(); case 761: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(759); - if (lookahead == '/') ADVANCE(766); + if (lookahead == '*') ADVANCE(766); + if (lookahead == '/') ADVANCE(733); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(147); - if (lookahead != 0) ADVANCE(781); + lookahead == '\\') ADVANCE(145); + if (lookahead != 0) ADVANCE(770); END_STATE(); case 762: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(763); - if (lookahead == '/') ADVANCE(734); + if (lookahead == '*') ADVANCE(767); + if (lookahead == '/') ADVANCE(780); if (lookahead == '\n' || lookahead == '\r' || lookahead == '\\') ADVANCE(130); - if (lookahead != 0) ADVANCE(761); + if (lookahead != 0) ADVANCE(763); END_STATE(); case 763: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(764); - if (lookahead == '/') ADVANCE(782); + if (lookahead == '*') ADVANCE(767); + if (lookahead == '/') ADVANCE(776); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(148); - if (lookahead != 0) ADVANCE(780); + lookahead == '\\') ADVANCE(130); + if (lookahead != 0) ADVANCE(763); END_STATE(); case 764: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(764); - if (lookahead == '/') ADVANCE(739); + if (lookahead == '*') ADVANCE(767); + if (lookahead == '/') ADVANCE(727); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(143); - if (lookahead != 0) ADVANCE(767); + lookahead == '\\') ADVANCE(131); + if (lookahead != 0) ADVANCE(765); END_STATE(); case 765: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(738); - if (lookahead == '/') ADVANCE(755); + if (lookahead == '*') ADVANCE(767); + if (lookahead == '/') ADVANCE(759); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(116); - if (lookahead != 0) ADVANCE(740); + lookahead == '\\') ADVANCE(131); + if (lookahead != 0) ADVANCE(765); END_STATE(); case 766: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(756); - if (lookahead == '/') ADVANCE(734); + if (lookahead == '*') ADVANCE(767); + if (lookahead == '/') ADVANCE(746); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(119); - if (lookahead != 0) ADVANCE(743); + lookahead == '\\') ADVANCE(131); + if (lookahead != 0) ADVANCE(765); END_STATE(); case 767: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(773); - if (lookahead == '/') ADVANCE(739); + if (lookahead == '*') ADVANCE(767); + if (lookahead == '/') ADVANCE(745); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(151); - if (lookahead != 0) ADVANCE(778); + lookahead == '\\') ADVANCE(130); + if (lookahead != 0) ADVANCE(763); END_STATE(); case 768: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(773); - if (lookahead == '/') ADVANCE(740); + if (lookahead == '*') ADVANCE(767); + if (lookahead == '/') ADVANCE(747); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(150); - if (lookahead != 0) ADVANCE(777); + lookahead == '\\') ADVANCE(131); + if (lookahead != 0) ADVANCE(765); END_STATE(); case 769: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(774); - if (lookahead == '/') ADVANCE(787); + if (lookahead == '*') ADVANCE(768); + if (lookahead == '/') ADVANCE(732); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(135); - if (lookahead != 0) ADVANCE(770); + lookahead == '\\') ADVANCE(146); + if (lookahead != 0) ADVANCE(771); END_STATE(); case 770: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(774); - if (lookahead == '/') ADVANCE(782); + if (lookahead == '*') ADVANCE(768); + if (lookahead == '/') ADVANCE(748); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(135); + lookahead == '\\') ADVANCE(145); if (lookahead != 0) ADVANCE(770); END_STATE(); case 771: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(774); - if (lookahead == '/') ADVANCE(734); + if (lookahead == '*') ADVANCE(768); + if (lookahead == '/') ADVANCE(733); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(136); - if (lookahead != 0) ADVANCE(772); + lookahead == '\\') ADVANCE(145); + if (lookahead != 0) ADVANCE(770); END_STATE(); case 772: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(774); - if (lookahead == '/') ADVANCE(766); + if (lookahead == '*') ADVANCE(763); + if (lookahead == '/') ADVANCE(776); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(136); - if (lookahead != 0) ADVANCE(772); + lookahead == '\\') ADVANCE(130); + if (lookahead != 0) ADVANCE(763); END_STATE(); case 773: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(774); - if (lookahead == '/') ADVANCE(753); + if (lookahead == '*') ADVANCE(763); + if (lookahead == '/') ADVANCE(732); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(136); - if (lookahead != 0) ADVANCE(772); + lookahead == '\\') ADVANCE(144); + if (lookahead != 0) ADVANCE(769); END_STATE(); case 774: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(774); - if (lookahead == '/') ADVANCE(752); + if (lookahead == '*') ADVANCE(763); + if (lookahead == '/') ADVANCE(759); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(135); - if (lookahead != 0) ADVANCE(770); + lookahead == '\\') ADVANCE(131); + if (lookahead != 0) ADVANCE(765); END_STATE(); case 775: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(774); - if (lookahead == '/') ADVANCE(754); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(136); - if (lookahead != 0) ADVANCE(772); + if (lookahead == '/') ADVANCE(719); + if (lookahead == '\t' || + lookahead == 11 || + lookahead == '\f' || + lookahead == ' ') ADVANCE(775); + if (lookahead != 0 && + (lookahead < '\n' || '\r' < lookahead) && + lookahead != '\\') ADVANCE(780); END_STATE(); case 776: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(775); - if (lookahead == '/') ADVANCE(739); + if (lookahead == '/') ADVANCE(780); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(151); - if (lookahead != 0) ADVANCE(778); + lookahead == '\\') ADVANCE(119); + if (lookahead != 0) ADVANCE(735); END_STATE(); case 777: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(775); - if (lookahead == '/') ADVANCE(755); + if (lookahead == '/') ADVANCE(780); if (lookahead == '\n' || lookahead == '\r' || - lookahead == '\\') ADVANCE(150); - if (lookahead != 0) ADVANCE(777); + lookahead == '\\') ADVANCE(124); + if (lookahead != 0) ADVANCE(752); END_STATE(); case 778: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(775); - if (lookahead == '/') ADVANCE(740); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(150); - if (lookahead != 0) ADVANCE(777); + if (lookahead == '/') ADVANCE(780); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\\') ADVANCE(780); END_STATE(); case 779: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(770); - if (lookahead == '/') ADVANCE(782); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(135); - if (lookahead != 0) ADVANCE(770); + if (lookahead == '\\') ADVANCE(273); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(779); END_STATE(); case 780: ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(770); - if (lookahead == '/') ADVANCE(739); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(149); - if (lookahead != 0) ADVANCE(776); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\\') ADVANCE(780); END_STATE(); case 781: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(770); - if (lookahead == '/') ADVANCE(766); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(136); - if (lookahead != 0) ADVANCE(772); + ACCEPT_TOKEN(aux_sym__content_block_token1); + if (lookahead == '*') ADVANCE(849); + if (lookahead == '/') ADVANCE(796); + if (lookahead != 0 && + lookahead != '{' && + lookahead != '}') ADVANCE(781); END_STATE(); case 782: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '/') ADVANCE(787); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(124); - if (lookahead != 0) ADVANCE(742); + ACCEPT_TOKEN(aux_sym__content_block_token1); + if (lookahead == '*') ADVANCE(849); + if (lookahead == '/') ADVANCE(818); + if (lookahead != 0 && + lookahead != '{' && + lookahead != '}') ADVANCE(815); END_STATE(); case 783: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '/') ADVANCE(787); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(129); - if (lookahead != 0) ADVANCE(759); + ACCEPT_TOKEN(aux_sym__content_block_token1); + if (lookahead == '*') ADVANCE(849); + if (lookahead == '/') ADVANCE(781); + if (lookahead != 0 && + lookahead != '{' && + lookahead != '}') ADVANCE(781); END_STATE(); case 784: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '/') ADVANCE(787); + ACCEPT_TOKEN(aux_sym__content_block_token1); + if (lookahead == '*') ADVANCE(849); + if (lookahead == '/') ADVANCE(819); if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '\\') ADVANCE(787); + lookahead != '{' && + lookahead != '}') ADVANCE(794); END_STATE(); case 785: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\\') ADVANCE(271); + ACCEPT_TOKEN(aux_sym__content_block_token1); + if (lookahead == '*') ADVANCE(849); if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(785); + lookahead != '{' && + lookahead != '}') ADVANCE(847); END_STATE(); case 786: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(272); + ACCEPT_TOKEN(aux_sym__content_block_token1); + if (lookahead == '*') ADVANCE(849); if (lookahead != 0 && - lookahead != '\n') ADVANCE(786); + lookahead != '{' && + lookahead != '}') ADVANCE(793); END_STATE(); case 787: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); + ACCEPT_TOKEN(aux_sym__content_block_token1); + if (lookahead == '*') ADVANCE(849); if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '\\') ADVANCE(787); + lookahead != '{' && + lookahead != '}') ADVANCE(781); END_STATE(); case 788: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(858); + if (lookahead == '*') ADVANCE(845); + if (lookahead == '/') ADVANCE(797); if (lookahead != 0 && lookahead != '{' && lookahead != '}') ADVANCE(788); END_STATE(); case 789: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '!') ADVANCE(788); + if (lookahead == '*') ADVANCE(845); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(858); + lookahead != '}') ADVANCE(789); END_STATE(); case 790: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '#') ADVANCE(789); - if (lookahead == '/') ADVANCE(801); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(790); + if (lookahead == '*') ADVANCE(845); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(858); + lookahead != '}') ADVANCE(788); END_STATE(); case 791: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(858); - if (lookahead == '/') ADVANCE(806); + if (lookahead == '*') ADVANCE(792); + if (lookahead == '/') ADVANCE(848); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(791); + lookahead != '}') ADVANCE(849); END_STATE(); case 792: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(858); - if (lookahead == '/') ADVANCE(828); + if (lookahead == '*') ADVANCE(783); + if (lookahead == '/') ADVANCE(789); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(825); + lookahead != '}') ADVANCE(790); END_STATE(); case 793: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(858); - if (lookahead == '/') ADVANCE(791); + if (lookahead == '*') ADVANCE(787); + if (lookahead == '/') ADVANCE(801); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(791); + lookahead != '}') ADVANCE(803); END_STATE(); case 794: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(858); - if (lookahead == '/') ADVANCE(829); + if (lookahead == '*') ADVANCE(787); + if (lookahead == '/') ADVANCE(814); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(804); + lookahead != '}') ADVANCE(802); END_STATE(); case 795: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(858); + if (lookahead == '*') ADVANCE(787); + if (lookahead == '/') ADVANCE(829); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(856); + lookahead != '}') ADVANCE(830); END_STATE(); case 796: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(858); + if (lookahead == '*') ADVANCE(798); + if (lookahead == '/') ADVANCE(796); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(803); + lookahead != '}') ADVANCE(781); END_STATE(); case 797: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(858); + if (lookahead == '*') ADVANCE(798); + if (lookahead == '/') ADVANCE(797); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(791); + lookahead != '}') ADVANCE(788); END_STATE(); case 798: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(854); - if (lookahead == '/') ADVANCE(807); + if (lookahead == '*') ADVANCE(799); + if (lookahead == '/') ADVANCE(849); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(798); + lookahead != '}') ADVANCE(786); END_STATE(); case 799: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(854); + if (lookahead == '*') ADVANCE(799); + if (lookahead == '/') ADVANCE(793); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(799); + lookahead != '}') ADVANCE(793); END_STATE(); case 800: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(854); + if (lookahead == '*') ADVANCE(799); + if (lookahead == '/') ADVANCE(781); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(798); + lookahead != '}') ADVANCE(784); END_STATE(); case 801: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(802); - if (lookahead == '/') ADVANCE(857); + if (lookahead == '*') ADVANCE(808); + if (lookahead == '/') ADVANCE(801); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(858); + lookahead != '}') ADVANCE(843); END_STATE(); case 802: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(793); - if (lookahead == '/') ADVANCE(799); + if (lookahead == '*') ADVANCE(808); + if (lookahead == '/') ADVANCE(814); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(800); + lookahead != '}') ADVANCE(842); END_STATE(); case 803: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(797); - if (lookahead == '/') ADVANCE(811); + if (lookahead == '*') ADVANCE(808); + if (lookahead == '/') ADVANCE(802); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(813); + lookahead != '}') ADVANCE(842); END_STATE(); case 804: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(797); - if (lookahead == '/') ADVANCE(824); + if (lookahead == '*') ADVANCE(806); + if (lookahead == '/') ADVANCE(849); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(812); + lookahead != '}') ADVANCE(804); END_STATE(); case 805: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(797); - if (lookahead == '/') ADVANCE(839); + if (lookahead == '*') ADVANCE(806); + if (lookahead == '/') ADVANCE(796); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(840); + lookahead != '}') ADVANCE(805); END_STATE(); case 806: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(808); - if (lookahead == '/') ADVANCE(806); + if (lookahead == '*') ADVANCE(806); + if (lookahead == '/') ADVANCE(785); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(791); + lookahead != '}') ADVANCE(804); END_STATE(); case 807: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(808); - if (lookahead == '/') ADVANCE(807); + if (lookahead == '*') ADVANCE(806); + if (lookahead == '/') ADVANCE(793); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(798); + lookahead != '}') ADVANCE(841); END_STATE(); case 808: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(809); - if (lookahead == '/') ADVANCE(858); + if (lookahead == '*') ADVANCE(806); + if (lookahead == '/') ADVANCE(781); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(796); + lookahead != '}') ADVANCE(805); END_STATE(); case 809: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(809); - if (lookahead == '/') ADVANCE(803); + if (lookahead == '*') ADVANCE(806); + if (lookahead == '/') ADVANCE(782); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(803); + lookahead != '}') ADVANCE(805); END_STATE(); case 810: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(809); - if (lookahead == '/') ADVANCE(791); + if (lookahead == '*') ADVANCE(806); + if (lookahead == '/') ADVANCE(819); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(794); + lookahead != '}') ADVANCE(842); END_STATE(); case 811: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(818); - if (lookahead == '/') ADVANCE(811); + if (lookahead == '*') ADVANCE(804); + if (lookahead == '/') ADVANCE(847); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(853); + lookahead != '}') ADVANCE(831); END_STATE(); case 812: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(818); - if (lookahead == '/') ADVANCE(824); + if (lookahead == '*') ADVANCE(804); + if (lookahead == '/') ADVANCE(796); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(852); + lookahead != '}') ADVANCE(805); END_STATE(); case 813: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(818); - if (lookahead == '/') ADVANCE(812); + if (lookahead == '*') ADVANCE(804); + if (lookahead == '/') ADVANCE(818); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(852); + lookahead != '}') ADVANCE(832); END_STATE(); case 814: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(816); - if (lookahead == '/') ADVANCE(858); + if (lookahead == '*') ADVANCE(825); + if (lookahead == '/') ADVANCE(814); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(814); + lookahead != '}') ADVANCE(842); END_STATE(); case 815: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(816); - if (lookahead == '/') ADVANCE(806); + if (lookahead == '*') ADVANCE(817); + if (lookahead == '/') ADVANCE(796); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(815); + lookahead != '}') ADVANCE(816); END_STATE(); case 816: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(816); - if (lookahead == '/') ADVANCE(795); + if (lookahead == '*') ADVANCE(817); + if (lookahead == '/') ADVANCE(823); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(814); + lookahead != '}') ADVANCE(820); END_STATE(); case 817: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(816); - if (lookahead == '/') ADVANCE(803); + if (lookahead == '*') ADVANCE(817); + if (lookahead == '/') ADVANCE(846); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(851); + lookahead != '}') ADVANCE(821); END_STATE(); case 818: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(816); - if (lookahead == '/') ADVANCE(791); + if (lookahead == '*') ADVANCE(827); + if (lookahead == '/') ADVANCE(796); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(815); + lookahead != '}') ADVANCE(816); END_STATE(); case 819: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(816); - if (lookahead == '/') ADVANCE(792); + if (lookahead == '*') ADVANCE(800); + if (lookahead == '/') ADVANCE(814); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(815); + lookahead != '}') ADVANCE(802); END_STATE(); case 820: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(816); - if (lookahead == '/') ADVANCE(829); + if (lookahead == '*') ADVANCE(836); + if (lookahead == '/') ADVANCE(823); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(852); + lookahead != '}') ADVANCE(833); END_STATE(); case 821: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(814); - if (lookahead == '/') ADVANCE(856); + if (lookahead == '*') ADVANCE(836); + if (lookahead == '/') ADVANCE(846); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(841); + lookahead != '}') ADVANCE(836); END_STATE(); case 822: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(814); - if (lookahead == '/') ADVANCE(806); + if (lookahead == '*') ADVANCE(836); + if (lookahead == '/') ADVANCE(801); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(815); + lookahead != '}') ADVANCE(838); END_STATE(); case 823: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(814); - if (lookahead == '/') ADVANCE(828); + if (lookahead == '*') ADVANCE(824); + if (lookahead == '/') ADVANCE(796); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(842); + lookahead != '}') ADVANCE(805); END_STATE(); case 824: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(835); - if (lookahead == '/') ADVANCE(824); + if (lookahead == '*') ADVANCE(826); + if (lookahead == '/') ADVANCE(849); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(852); + lookahead != '}') ADVANCE(807); END_STATE(); case 825: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(827); - if (lookahead == '/') ADVANCE(806); + if (lookahead == '*') ADVANCE(826); + if (lookahead == '/') ADVANCE(781); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(826); + lookahead != '}') ADVANCE(810); END_STATE(); case 826: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(827); - if (lookahead == '/') ADVANCE(833); + if (lookahead == '*') ADVANCE(826); + if (lookahead == '/') ADVANCE(795); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(830); + lookahead != '}') ADVANCE(841); END_STATE(); case 827: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(827); - if (lookahead == '/') ADVANCE(855); + if (lookahead == '*') ADVANCE(828); + if (lookahead == '/') ADVANCE(846); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(831); + lookahead != '}') ADVANCE(822); END_STATE(); case 828: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(837); - if (lookahead == '/') ADVANCE(806); + if (lookahead == '*') ADVANCE(828); + if (lookahead == '/') ADVANCE(801); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(826); + lookahead != '}') ADVANCE(829); END_STATE(); case 829: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(810); - if (lookahead == '/') ADVANCE(824); + if (lookahead == '*') ADVANCE(834); + if (lookahead == '/') ADVANCE(801); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(812); + lookahead != '}') ADVANCE(840); END_STATE(); case 830: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(846); - if (lookahead == '/') ADVANCE(833); + if (lookahead == '*') ADVANCE(834); + if (lookahead == '/') ADVANCE(802); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(843); + lookahead != '}') ADVANCE(839); END_STATE(); case 831: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(846); - if (lookahead == '/') ADVANCE(855); + if (lookahead == '*') ADVANCE(835); + if (lookahead == '/') ADVANCE(849); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(846); + lookahead != '}') ADVANCE(836); END_STATE(); case 832: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(846); - if (lookahead == '/') ADVANCE(811); + if (lookahead == '*') ADVANCE(835); + if (lookahead == '/') ADVANCE(796); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(848); + lookahead != '}') ADVANCE(833); END_STATE(); case 833: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(834); - if (lookahead == '/') ADVANCE(806); + if (lookahead == '*') ADVANCE(835); + if (lookahead == '/') ADVANCE(823); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(815); + lookahead != '}') ADVANCE(833); END_STATE(); case 834: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(836); - if (lookahead == '/') ADVANCE(858); + if (lookahead == '*') ADVANCE(835); + if (lookahead == '/') ADVANCE(812); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(817); + lookahead != '}') ADVANCE(833); END_STATE(); case 835: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(836); - if (lookahead == '/') ADVANCE(791); + if (lookahead == '*') ADVANCE(835); + if (lookahead == '/') ADVANCE(811); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(820); + lookahead != '}') ADVANCE(836); END_STATE(); case 836: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(836); - if (lookahead == '/') ADVANCE(805); + if (lookahead == '*') ADVANCE(835); + if (lookahead == '/') ADVANCE(846); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(851); + lookahead != '}') ADVANCE(836); END_STATE(); case 837: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(838); - if (lookahead == '/') ADVANCE(855); + if (lookahead == '*') ADVANCE(835); + if (lookahead == '/') ADVANCE(813); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(832); + lookahead != '}') ADVANCE(833); END_STATE(); case 838: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(838); - if (lookahead == '/') ADVANCE(811); + if (lookahead == '*') ADVANCE(837); + if (lookahead == '/') ADVANCE(801); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(839); + lookahead != '}') ADVANCE(840); END_STATE(); case 839: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(844); - if (lookahead == '/') ADVANCE(811); + if (lookahead == '*') ADVANCE(837); + if (lookahead == '/') ADVANCE(814); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(850); + lookahead != '}') ADVANCE(839); END_STATE(); case 840: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(844); - if (lookahead == '/') ADVANCE(812); + if (lookahead == '*') ADVANCE(837); + if (lookahead == '/') ADVANCE(802); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(849); + lookahead != '}') ADVANCE(839); END_STATE(); case 841: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(845); - if (lookahead == '/') ADVANCE(858); + if (lookahead == '*') ADVANCE(809); + if (lookahead == '/') ADVANCE(801); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(846); + lookahead != '}') ADVANCE(843); END_STATE(); case 842: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(845); - if (lookahead == '/') ADVANCE(806); + if (lookahead == '*') ADVANCE(809); + if (lookahead == '/') ADVANCE(814); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(843); + lookahead != '}') ADVANCE(842); END_STATE(); case 843: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(845); - if (lookahead == '/') ADVANCE(833); + if (lookahead == '*') ADVANCE(809); + if (lookahead == '/') ADVANCE(802); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(843); + lookahead != '}') ADVANCE(842); END_STATE(); case 844: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(845); - if (lookahead == '/') ADVANCE(822); + if (lookahead == '/') ADVANCE(791); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(844); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(843); + lookahead != '}') ADVANCE(849); END_STATE(); case 845: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(845); - if (lookahead == '/') ADVANCE(821); + if (lookahead == '/') ADVANCE(849); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(846); + lookahead != '}') ADVANCE(849); END_STATE(); case 846: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(845); - if (lookahead == '/') ADVANCE(855); + if (lookahead == '/') ADVANCE(849); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(846); + lookahead != '}') ADVANCE(804); END_STATE(); case 847: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(845); - if (lookahead == '/') ADVANCE(823); + if (lookahead == '/') ADVANCE(849); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(843); + lookahead != '}') ADVANCE(817); END_STATE(); case 848: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(847); - if (lookahead == '/') ADVANCE(811); + if (lookahead == '\n' || + lookahead == '\r') ADVANCE(849); if (lookahead != 0 && lookahead != '{' && - lookahead != '}') ADVANCE(850); + lookahead != '}') ADVANCE(848); END_STATE(); case 849: ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(847); - if (lookahead == '/') ADVANCE(824); if (lookahead != 0 && lookahead != '{' && lookahead != '}') ADVANCE(849); END_STATE(); case 850: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(847); - if (lookahead == '/') ADVANCE(812); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(849); - END_STATE(); - case 851: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(819); - if (lookahead == '/') ADVANCE(811); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(853); - END_STATE(); - case 852: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(819); - if (lookahead == '/') ADVANCE(824); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(852); - END_STATE(); - case 853: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(819); - if (lookahead == '/') ADVANCE(812); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(852); - END_STATE(); - case 854: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '/') ADVANCE(858); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(858); - END_STATE(); - case 855: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '/') ADVANCE(858); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(814); - END_STATE(); - case 856: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '/') ADVANCE(858); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(827); - END_STATE(); - case 857: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(858); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(857); - END_STATE(); - case 858: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(858); - END_STATE(); - case 859: ACCEPT_TOKEN(anon_sym_AT_LBRACK); END_STATE(); - case 860: + case 851: ACCEPT_TOKEN(sym___dolcbr); END_STATE(); - case 861: + case 852: ACCEPT_TOKEN(sym___double_quote); END_STATE(); - case 862: + case 853: ACCEPT_TOKEN(sym___single_quote); END_STATE(); - case 863: + case 854: ACCEPT_TOKEN(sym___c_double_quote); END_STATE(); - case 864: + case 855: ACCEPT_TOKEN(sym___c_single_quote); END_STATE(); - case 865: + case 856: ACCEPT_TOKEN(sym___r_double_quote); END_STATE(); - case 866: + case 857: ACCEPT_TOKEN(sym___r_single_quote); END_STATE(); default: @@ -17918,855 +17856,855 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, [1] = {.lex_state = 258}, - [2] = {.lex_state = 258}, - [3] = {.lex_state = 258}, - [4] = {.lex_state = 258}, - [5] = {.lex_state = 258}, - [6] = {.lex_state = 258}, - [7] = {.lex_state = 258}, - [8] = {.lex_state = 258}, - [9] = {.lex_state = 258}, - [10] = {.lex_state = 258}, - [11] = {.lex_state = 258}, - [12] = {.lex_state = 258}, - [13] = {.lex_state = 258}, - [14] = {.lex_state = 258}, - [15] = {.lex_state = 258}, - [16] = {.lex_state = 258}, - [17] = {.lex_state = 258}, - [18] = {.lex_state = 258}, - [19] = {.lex_state = 258}, - [20] = {.lex_state = 258}, - [21] = {.lex_state = 258}, - [22] = {.lex_state = 258}, - [23] = {.lex_state = 258}, - [24] = {.lex_state = 258}, - [25] = {.lex_state = 258}, - [26] = {.lex_state = 258}, - [27] = {.lex_state = 258}, - [28] = {.lex_state = 258}, - [29] = {.lex_state = 258}, - [30] = {.lex_state = 258}, - [31] = {.lex_state = 258}, - [32] = {.lex_state = 258}, - [33] = {.lex_state = 258}, - [34] = {.lex_state = 258}, - [35] = {.lex_state = 258}, - [36] = {.lex_state = 258}, - [37] = {.lex_state = 258}, - [38] = {.lex_state = 258}, - [39] = {.lex_state = 258}, - [40] = {.lex_state = 258}, - [41] = {.lex_state = 258}, - [42] = {.lex_state = 258}, - [43] = {.lex_state = 258}, - [44] = {.lex_state = 258}, - [45] = {.lex_state = 258}, - [46] = {.lex_state = 258}, - [47] = {.lex_state = 258}, - [48] = {.lex_state = 258}, - [49] = {.lex_state = 258}, - [50] = {.lex_state = 258}, - [51] = {.lex_state = 258}, - [52] = {.lex_state = 258}, - [53] = {.lex_state = 258}, - [54] = {.lex_state = 258}, - [55] = {.lex_state = 258}, - [56] = {.lex_state = 258}, - [57] = {.lex_state = 258}, - [58] = {.lex_state = 258}, - [59] = {.lex_state = 258}, - [60] = {.lex_state = 258}, - [61] = {.lex_state = 254}, - [62] = {.lex_state = 245}, - [63] = {.lex_state = 245}, - [64] = {.lex_state = 245}, - [65] = {.lex_state = 245}, + [2] = {.lex_state = 259}, + [3] = {.lex_state = 259}, + [4] = {.lex_state = 259}, + [5] = {.lex_state = 259}, + [6] = {.lex_state = 259}, + [7] = {.lex_state = 259}, + [8] = {.lex_state = 259}, + [9] = {.lex_state = 259}, + [10] = {.lex_state = 259}, + [11] = {.lex_state = 259}, + [12] = {.lex_state = 259}, + [13] = {.lex_state = 259}, + [14] = {.lex_state = 259}, + [15] = {.lex_state = 259}, + [16] = {.lex_state = 259}, + [17] = {.lex_state = 259}, + [18] = {.lex_state = 259}, + [19] = {.lex_state = 259}, + [20] = {.lex_state = 259}, + [21] = {.lex_state = 259}, + [22] = {.lex_state = 259}, + [23] = {.lex_state = 259}, + [24] = {.lex_state = 259}, + [25] = {.lex_state = 259}, + [26] = {.lex_state = 259}, + [27] = {.lex_state = 259}, + [28] = {.lex_state = 259}, + [29] = {.lex_state = 259}, + [30] = {.lex_state = 259}, + [31] = {.lex_state = 259}, + [32] = {.lex_state = 259}, + [33] = {.lex_state = 259}, + [34] = {.lex_state = 259}, + [35] = {.lex_state = 259}, + [36] = {.lex_state = 259}, + [37] = {.lex_state = 259}, + [38] = {.lex_state = 259}, + [39] = {.lex_state = 259}, + [40] = {.lex_state = 259}, + [41] = {.lex_state = 259}, + [42] = {.lex_state = 259}, + [43] = {.lex_state = 259}, + [44] = {.lex_state = 259}, + [45] = {.lex_state = 259}, + [46] = {.lex_state = 259}, + [47] = {.lex_state = 259}, + [48] = {.lex_state = 259}, + [49] = {.lex_state = 259}, + [50] = {.lex_state = 259}, + [51] = {.lex_state = 259}, + [52] = {.lex_state = 259}, + [53] = {.lex_state = 259}, + [54] = {.lex_state = 259}, + [55] = {.lex_state = 259}, + [56] = {.lex_state = 259}, + [57] = {.lex_state = 259}, + [58] = {.lex_state = 259}, + [59] = {.lex_state = 259}, + [60] = {.lex_state = 259}, + [61] = {.lex_state = 259}, + [62] = {.lex_state = 259}, + [63] = {.lex_state = 259}, + [64] = {.lex_state = 259}, + [65] = {.lex_state = 254}, [66] = {.lex_state = 245}, - [67] = {.lex_state = 81}, - [68] = {.lex_state = 81}, - [69] = {.lex_state = 81}, - [70] = {.lex_state = 81}, - [71] = {.lex_state = 81}, - [72] = {.lex_state = 81}, - [73] = {.lex_state = 81}, - [74] = {.lex_state = 81}, - [75] = {.lex_state = 81}, - [76] = {.lex_state = 81}, - [77] = {.lex_state = 81}, - [78] = {.lex_state = 81}, - [79] = {.lex_state = 81}, - [80] = {.lex_state = 81}, - [81] = {.lex_state = 81}, - [82] = {.lex_state = 81}, - [83] = {.lex_state = 81}, - [84] = {.lex_state = 81}, - [85] = {.lex_state = 81}, - [86] = {.lex_state = 81}, - [87] = {.lex_state = 81}, - [88] = {.lex_state = 81}, - [89] = {.lex_state = 81}, - [90] = {.lex_state = 81}, - [91] = {.lex_state = 81}, - [92] = {.lex_state = 81}, - [93] = {.lex_state = 81}, - [94] = {.lex_state = 81}, - [95] = {.lex_state = 81}, - [96] = {.lex_state = 81}, - [97] = {.lex_state = 81}, - [98] = {.lex_state = 81}, - [99] = {.lex_state = 81}, - [100] = {.lex_state = 81}, - [101] = {.lex_state = 81}, - [102] = {.lex_state = 81}, - [103] = {.lex_state = 81}, - [104] = {.lex_state = 81}, - [105] = {.lex_state = 81}, - [106] = {.lex_state = 81}, - [107] = {.lex_state = 81}, - [108] = {.lex_state = 81}, - [109] = {.lex_state = 81}, - [110] = {.lex_state = 81}, - [111] = {.lex_state = 81}, - [112] = {.lex_state = 81}, - [113] = {.lex_state = 81}, - [114] = {.lex_state = 81}, - [115] = {.lex_state = 81}, - [116] = {.lex_state = 81}, - [117] = {.lex_state = 81}, - [118] = {.lex_state = 81}, - [119] = {.lex_state = 81}, - [120] = {.lex_state = 81}, - [121] = {.lex_state = 81}, - [122] = {.lex_state = 81}, - [123] = {.lex_state = 81}, - [124] = {.lex_state = 81}, - [125] = {.lex_state = 81}, - [126] = {.lex_state = 81}, - [127] = {.lex_state = 81}, - [128] = {.lex_state = 81}, - [129] = {.lex_state = 81}, - [130] = {.lex_state = 81}, - [131] = {.lex_state = 81}, - [132] = {.lex_state = 81}, - [133] = {.lex_state = 81}, - [134] = {.lex_state = 81}, - [135] = {.lex_state = 81}, - [136] = {.lex_state = 81}, - [137] = {.lex_state = 81}, - [138] = {.lex_state = 81}, - [139] = {.lex_state = 81}, - [140] = {.lex_state = 81}, - [141] = {.lex_state = 81}, - [142] = {.lex_state = 81}, - [143] = {.lex_state = 81}, - [144] = {.lex_state = 81}, - [145] = {.lex_state = 81}, - [146] = {.lex_state = 81}, - [147] = {.lex_state = 81}, - [148] = {.lex_state = 81}, - [149] = {.lex_state = 81}, - [150] = {.lex_state = 81}, - [151] = {.lex_state = 81}, - [152] = {.lex_state = 81}, - [153] = {.lex_state = 81}, - [154] = {.lex_state = 81}, - [155] = {.lex_state = 81}, - [156] = {.lex_state = 81}, - [157] = {.lex_state = 81}, - [158] = {.lex_state = 81}, - [159] = {.lex_state = 81}, - [160] = {.lex_state = 81}, - [161] = {.lex_state = 81}, - [162] = {.lex_state = 81}, - [163] = {.lex_state = 81}, - [164] = {.lex_state = 81}, - [165] = {.lex_state = 81}, - [166] = {.lex_state = 81}, - [167] = {.lex_state = 81}, - [168] = {.lex_state = 81}, - [169] = {.lex_state = 81}, - [170] = {.lex_state = 81}, - [171] = {.lex_state = 82}, - [172] = {.lex_state = 81}, - [173] = {.lex_state = 81}, - [174] = {.lex_state = 81}, - [175] = {.lex_state = 81}, - [176] = {.lex_state = 81}, - [177] = {.lex_state = 81}, - [178] = {.lex_state = 81}, - [179] = {.lex_state = 81}, - [180] = {.lex_state = 81}, - [181] = {.lex_state = 81}, - [182] = {.lex_state = 81}, - [183] = {.lex_state = 81}, - [184] = {.lex_state = 81}, - [185] = {.lex_state = 81}, - [186] = {.lex_state = 81}, - [187] = {.lex_state = 81}, - [188] = {.lex_state = 81}, - [189] = {.lex_state = 81}, - [190] = {.lex_state = 81}, - [191] = {.lex_state = 81}, - [192] = {.lex_state = 81}, - [193] = {.lex_state = 81}, - [194] = {.lex_state = 81}, - [195] = {.lex_state = 81}, - [196] = {.lex_state = 81}, - [197] = {.lex_state = 81}, - [198] = {.lex_state = 81}, - [199] = {.lex_state = 81}, - [200] = {.lex_state = 81}, - [201] = {.lex_state = 81}, - [202] = {.lex_state = 81}, - [203] = {.lex_state = 81}, - [204] = {.lex_state = 81}, - [205] = {.lex_state = 81}, - [206] = {.lex_state = 81}, - [207] = {.lex_state = 81}, - [208] = {.lex_state = 81}, - [209] = {.lex_state = 81}, - [210] = {.lex_state = 81}, - [211] = {.lex_state = 81}, - [212] = {.lex_state = 81}, - [213] = {.lex_state = 30}, - [214] = {.lex_state = 81}, - [215] = {.lex_state = 81}, - [216] = {.lex_state = 247}, - [217] = {.lex_state = 247}, - [218] = {.lex_state = 247}, - [219] = {.lex_state = 247}, + [67] = {.lex_state = 245}, + [68] = {.lex_state = 245}, + [69] = {.lex_state = 245}, + [70] = {.lex_state = 245}, + [71] = {.lex_state = 79}, + [72] = {.lex_state = 79}, + [73] = {.lex_state = 79}, + [74] = {.lex_state = 79}, + [75] = {.lex_state = 79}, + [76] = {.lex_state = 79}, + [77] = {.lex_state = 79}, + [78] = {.lex_state = 79}, + [79] = {.lex_state = 79}, + [80] = {.lex_state = 79}, + [81] = {.lex_state = 79}, + [82] = {.lex_state = 79}, + [83] = {.lex_state = 79}, + [84] = {.lex_state = 79}, + [85] = {.lex_state = 79}, + [86] = {.lex_state = 79}, + [87] = {.lex_state = 79}, + [88] = {.lex_state = 79}, + [89] = {.lex_state = 79}, + [90] = {.lex_state = 79}, + [91] = {.lex_state = 79}, + [92] = {.lex_state = 79}, + [93] = {.lex_state = 79}, + [94] = {.lex_state = 79}, + [95] = {.lex_state = 79}, + [96] = {.lex_state = 79}, + [97] = {.lex_state = 79}, + [98] = {.lex_state = 79}, + [99] = {.lex_state = 79}, + [100] = {.lex_state = 79}, + [101] = {.lex_state = 79}, + [102] = {.lex_state = 79}, + [103] = {.lex_state = 79}, + [104] = {.lex_state = 79}, + [105] = {.lex_state = 79}, + [106] = {.lex_state = 79}, + [107] = {.lex_state = 79}, + [108] = {.lex_state = 79}, + [109] = {.lex_state = 79}, + [110] = {.lex_state = 79}, + [111] = {.lex_state = 79}, + [112] = {.lex_state = 79}, + [113] = {.lex_state = 79}, + [114] = {.lex_state = 79}, + [115] = {.lex_state = 79}, + [116] = {.lex_state = 79}, + [117] = {.lex_state = 79}, + [118] = {.lex_state = 79}, + [119] = {.lex_state = 79}, + [120] = {.lex_state = 79}, + [121] = {.lex_state = 79}, + [122] = {.lex_state = 79}, + [123] = {.lex_state = 79}, + [124] = {.lex_state = 79}, + [125] = {.lex_state = 79}, + [126] = {.lex_state = 79}, + [127] = {.lex_state = 79}, + [128] = {.lex_state = 79}, + [129] = {.lex_state = 79}, + [130] = {.lex_state = 79}, + [131] = {.lex_state = 79}, + [132] = {.lex_state = 79}, + [133] = {.lex_state = 79}, + [134] = {.lex_state = 79}, + [135] = {.lex_state = 79}, + [136] = {.lex_state = 79}, + [137] = {.lex_state = 79}, + [138] = {.lex_state = 79}, + [139] = {.lex_state = 79}, + [140] = {.lex_state = 79}, + [141] = {.lex_state = 79}, + [142] = {.lex_state = 79}, + [143] = {.lex_state = 79}, + [144] = {.lex_state = 79}, + [145] = {.lex_state = 79}, + [146] = {.lex_state = 79}, + [147] = {.lex_state = 79}, + [148] = {.lex_state = 79}, + [149] = {.lex_state = 79}, + [150] = {.lex_state = 79}, + [151] = {.lex_state = 79}, + [152] = {.lex_state = 79}, + [153] = {.lex_state = 79}, + [154] = {.lex_state = 79}, + [155] = {.lex_state = 79}, + [156] = {.lex_state = 79}, + [157] = {.lex_state = 79}, + [158] = {.lex_state = 79}, + [159] = {.lex_state = 79}, + [160] = {.lex_state = 79}, + [161] = {.lex_state = 79}, + [162] = {.lex_state = 79}, + [163] = {.lex_state = 79}, + [164] = {.lex_state = 79}, + [165] = {.lex_state = 79}, + [166] = {.lex_state = 79}, + [167] = {.lex_state = 79}, + [168] = {.lex_state = 79}, + [169] = {.lex_state = 79}, + [170] = {.lex_state = 79}, + [171] = {.lex_state = 79}, + [172] = {.lex_state = 79}, + [173] = {.lex_state = 79}, + [174] = {.lex_state = 79}, + [175] = {.lex_state = 79}, + [176] = {.lex_state = 80}, + [177] = {.lex_state = 79}, + [178] = {.lex_state = 79}, + [179] = {.lex_state = 79}, + [180] = {.lex_state = 79}, + [181] = {.lex_state = 79}, + [182] = {.lex_state = 79}, + [183] = {.lex_state = 79}, + [184] = {.lex_state = 79}, + [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}, + [192] = {.lex_state = 79}, + [193] = {.lex_state = 79}, + [194] = {.lex_state = 79}, + [195] = {.lex_state = 79}, + [196] = {.lex_state = 79}, + [197] = {.lex_state = 79}, + [198] = {.lex_state = 79}, + [199] = {.lex_state = 79}, + [200] = {.lex_state = 79}, + [201] = {.lex_state = 79}, + [202] = {.lex_state = 79}, + [203] = {.lex_state = 79}, + [204] = {.lex_state = 79}, + [205] = {.lex_state = 79}, + [206] = {.lex_state = 79}, + [207] = {.lex_state = 79}, + [208] = {.lex_state = 79}, + [209] = {.lex_state = 79}, + [210] = {.lex_state = 79}, + [211] = {.lex_state = 79}, + [212] = {.lex_state = 79}, + [213] = {.lex_state = 79}, + [214] = {.lex_state = 79}, + [215] = {.lex_state = 79}, + [216] = {.lex_state = 79}, + [217] = {.lex_state = 30}, + [218] = {.lex_state = 79}, + [219] = {.lex_state = 79}, [220] = {.lex_state = 247}, - [221] = {.lex_state = 81}, - [222] = {.lex_state = 81}, - [223] = {.lex_state = 81}, - [224] = {.lex_state = 81}, - [225] = {.lex_state = 81}, - [226] = {.lex_state = 81}, - [227] = {.lex_state = 81}, - [228] = {.lex_state = 81}, - [229] = {.lex_state = 81}, - [230] = {.lex_state = 81}, - [231] = {.lex_state = 81}, - [232] = {.lex_state = 81}, - [233] = {.lex_state = 81}, - [234] = {.lex_state = 81}, - [235] = {.lex_state = 81}, - [236] = {.lex_state = 245}, - [237] = {.lex_state = 81}, - [238] = {.lex_state = 81}, - [239] = {.lex_state = 81}, - [240] = {.lex_state = 81}, - [241] = {.lex_state = 81}, - [242] = {.lex_state = 81}, - [243] = {.lex_state = 81}, - [244] = {.lex_state = 81}, - [245] = {.lex_state = 81}, - [246] = {.lex_state = 81}, - [247] = {.lex_state = 81}, - [248] = {.lex_state = 81}, - [249] = {.lex_state = 81}, - [250] = {.lex_state = 81}, - [251] = {.lex_state = 81}, - [252] = {.lex_state = 81}, - [253] = {.lex_state = 81}, - [254] = {.lex_state = 81}, - [255] = {.lex_state = 81}, - [256] = {.lex_state = 81}, - [257] = {.lex_state = 81}, - [258] = {.lex_state = 81}, - [259] = {.lex_state = 81}, - [260] = {.lex_state = 81}, - [261] = {.lex_state = 245}, - [262] = {.lex_state = 81}, - [263] = {.lex_state = 81}, - [264] = {.lex_state = 81}, - [265] = {.lex_state = 81}, - [266] = {.lex_state = 81}, - [267] = {.lex_state = 81}, - [268] = {.lex_state = 81}, - [269] = {.lex_state = 81}, - [270] = {.lex_state = 81}, - [271] = {.lex_state = 81}, - [272] = {.lex_state = 81}, - [273] = {.lex_state = 81}, - [274] = {.lex_state = 81}, - [275] = {.lex_state = 81}, - [276] = {.lex_state = 81}, - [277] = {.lex_state = 81}, - [278] = {.lex_state = 81}, - [279] = {.lex_state = 81}, - [280] = {.lex_state = 81}, - [281] = {.lex_state = 81}, - [282] = {.lex_state = 81}, - [283] = {.lex_state = 81}, - [284] = {.lex_state = 81}, - [285] = {.lex_state = 81}, - [286] = {.lex_state = 81}, - [287] = {.lex_state = 81}, - [288] = {.lex_state = 81}, - [289] = {.lex_state = 81}, - [290] = {.lex_state = 81}, - [291] = {.lex_state = 81}, - [292] = {.lex_state = 245}, - [293] = {.lex_state = 82}, - [294] = {.lex_state = 81}, - [295] = {.lex_state = 82}, - [296] = {.lex_state = 81}, - [297] = {.lex_state = 245}, - [298] = {.lex_state = 245}, - [299] = {.lex_state = 82}, - [300] = {.lex_state = 81}, - [301] = {.lex_state = 245}, - [302] = {.lex_state = 81}, - [303] = {.lex_state = 245}, - [304] = {.lex_state = 81}, - [305] = {.lex_state = 82}, - [306] = {.lex_state = 81}, - [307] = {.lex_state = 82}, - [308] = {.lex_state = 82}, - [309] = {.lex_state = 81}, - [310] = {.lex_state = 81}, - [311] = {.lex_state = 245}, - [312] = {.lex_state = 245}, - [313] = {.lex_state = 81}, - [314] = {.lex_state = 81}, - [315] = {.lex_state = 82}, - [316] = {.lex_state = 82}, - [317] = {.lex_state = 82}, - [318] = {.lex_state = 81}, - [319] = {.lex_state = 81}, - [320] = {.lex_state = 82}, - [321] = {.lex_state = 82}, - [322] = {.lex_state = 81}, - [323] = {.lex_state = 82}, - [324] = {.lex_state = 81}, - [325] = {.lex_state = 82}, + [221] = {.lex_state = 247}, + [222] = {.lex_state = 247}, + [223] = {.lex_state = 247}, + [224] = {.lex_state = 247}, + [225] = {.lex_state = 79}, + [226] = {.lex_state = 79}, + [227] = {.lex_state = 79}, + [228] = {.lex_state = 79}, + [229] = {.lex_state = 79}, + [230] = {.lex_state = 79}, + [231] = {.lex_state = 79}, + [232] = {.lex_state = 79}, + [233] = {.lex_state = 79}, + [234] = {.lex_state = 79}, + [235] = {.lex_state = 79}, + [236] = {.lex_state = 79}, + [237] = {.lex_state = 79}, + [238] = {.lex_state = 79}, + [239] = {.lex_state = 79}, + [240] = {.lex_state = 79}, + [241] = {.lex_state = 79}, + [242] = {.lex_state = 79}, + [243] = {.lex_state = 79}, + [244] = {.lex_state = 79}, + [245] = {.lex_state = 79}, + [246] = {.lex_state = 79}, + [247] = {.lex_state = 79}, + [248] = {.lex_state = 79}, + [249] = {.lex_state = 79}, + [250] = {.lex_state = 79}, + [251] = {.lex_state = 79}, + [252] = {.lex_state = 245}, + [253] = {.lex_state = 79}, + [254] = {.lex_state = 79}, + [255] = {.lex_state = 79}, + [256] = {.lex_state = 79}, + [257] = {.lex_state = 79}, + [258] = {.lex_state = 79}, + [259] = {.lex_state = 79}, + [260] = {.lex_state = 79}, + [261] = {.lex_state = 79}, + [262] = {.lex_state = 79}, + [263] = {.lex_state = 79}, + [264] = {.lex_state = 79}, + [265] = {.lex_state = 79}, + [266] = {.lex_state = 79}, + [267] = {.lex_state = 79}, + [268] = {.lex_state = 79}, + [269] = {.lex_state = 79}, + [270] = {.lex_state = 79}, + [271] = {.lex_state = 245}, + [272] = {.lex_state = 79}, + [273] = {.lex_state = 79}, + [274] = {.lex_state = 79}, + [275] = {.lex_state = 79}, + [276] = {.lex_state = 79}, + [277] = {.lex_state = 79}, + [278] = {.lex_state = 79}, + [279] = {.lex_state = 79}, + [280] = {.lex_state = 79}, + [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 = 79}, + [289] = {.lex_state = 79}, + [290] = {.lex_state = 79}, + [291] = {.lex_state = 79}, + [292] = {.lex_state = 79}, + [293] = {.lex_state = 79}, + [294] = {.lex_state = 245}, + [295] = {.lex_state = 79}, + [296] = {.lex_state = 79}, + [297] = {.lex_state = 79}, + [298] = {.lex_state = 79}, + [299] = {.lex_state = 79}, + [300] = {.lex_state = 79}, + [301] = {.lex_state = 79}, + [302] = {.lex_state = 79}, + [303] = {.lex_state = 80}, + [304] = {.lex_state = 80}, + [305] = {.lex_state = 79}, + [306] = {.lex_state = 80}, + [307] = {.lex_state = 79}, + [308] = {.lex_state = 79}, + [309] = {.lex_state = 79}, + [310] = {.lex_state = 80}, + [311] = {.lex_state = 79}, + [312] = {.lex_state = 79}, + [313] = {.lex_state = 80}, + [314] = {.lex_state = 80}, + [315] = {.lex_state = 79}, + [316] = {.lex_state = 80}, + [317] = {.lex_state = 79}, + [318] = {.lex_state = 245}, + [319] = {.lex_state = 79}, + [320] = {.lex_state = 79}, + [321] = {.lex_state = 79}, + [322] = {.lex_state = 79}, + [323] = {.lex_state = 79}, + [324] = {.lex_state = 245}, + [325] = {.lex_state = 79}, [326] = {.lex_state = 245}, - [327] = {.lex_state = 81}, - [328] = {.lex_state = 82}, - [329] = {.lex_state = 82}, - [330] = {.lex_state = 81}, - [331] = {.lex_state = 81}, - [332] = {.lex_state = 81}, - [333] = {.lex_state = 81}, - [334] = {.lex_state = 81}, - [335] = {.lex_state = 81}, - [336] = {.lex_state = 81}, - [337] = {.lex_state = 82}, - [338] = {.lex_state = 82}, - [339] = {.lex_state = 81}, - [340] = {.lex_state = 81}, - [341] = {.lex_state = 81}, - [342] = {.lex_state = 81}, - [343] = {.lex_state = 81}, - [344] = {.lex_state = 81}, - [345] = {.lex_state = 81}, - [346] = {.lex_state = 81}, - [347] = {.lex_state = 81}, - [348] = {.lex_state = 81}, - [349] = {.lex_state = 81}, - [350] = {.lex_state = 82}, - [351] = {.lex_state = 82}, - [352] = {.lex_state = 82}, - [353] = {.lex_state = 245}, - [354] = {.lex_state = 245}, - [355] = {.lex_state = 81}, - [356] = {.lex_state = 81}, - [357] = {.lex_state = 82}, - [358] = {.lex_state = 81}, - [359] = {.lex_state = 81}, - [360] = {.lex_state = 81}, - [361] = {.lex_state = 81}, - [362] = {.lex_state = 81}, - [363] = {.lex_state = 245}, - [364] = {.lex_state = 81}, - [365] = {.lex_state = 81}, - [366] = {.lex_state = 81}, - [367] = {.lex_state = 245}, - [368] = {.lex_state = 81}, - [369] = {.lex_state = 81}, - [370] = {.lex_state = 81}, - [371] = {.lex_state = 81}, - [372] = {.lex_state = 81}, - [373] = {.lex_state = 245}, - [374] = {.lex_state = 81}, - [375] = {.lex_state = 81}, - [376] = {.lex_state = 81}, - [377] = {.lex_state = 81}, - [378] = {.lex_state = 82}, - [379] = {.lex_state = 81}, - [380] = {.lex_state = 81}, - [381] = {.lex_state = 81}, - [382] = {.lex_state = 81}, - [383] = {.lex_state = 82}, - [384] = {.lex_state = 81}, - [385] = {.lex_state = 82}, - [386] = {.lex_state = 81}, - [387] = {.lex_state = 81}, - [388] = {.lex_state = 81}, - [389] = {.lex_state = 81}, - [390] = {.lex_state = 245}, - [391] = {.lex_state = 245}, - [392] = {.lex_state = 81}, - [393] = {.lex_state = 81}, - [394] = {.lex_state = 81}, - [395] = {.lex_state = 81}, - [396] = {.lex_state = 81}, - [397] = {.lex_state = 81}, - [398] = {.lex_state = 81}, - [399] = {.lex_state = 81}, - [400] = {.lex_state = 81}, - [401] = {.lex_state = 81}, - [402] = {.lex_state = 81}, - [403] = {.lex_state = 81}, - [404] = {.lex_state = 81}, - [405] = {.lex_state = 81}, - [406] = {.lex_state = 81}, - [407] = {.lex_state = 81}, - [408] = {.lex_state = 81}, - [409] = {.lex_state = 81}, - [410] = {.lex_state = 81}, - [411] = {.lex_state = 81}, - [412] = {.lex_state = 81}, - [413] = {.lex_state = 81}, - [414] = {.lex_state = 81}, - [415] = {.lex_state = 81}, - [416] = {.lex_state = 81}, - [417] = {.lex_state = 81}, - [418] = {.lex_state = 81}, - [419] = {.lex_state = 81}, - [420] = {.lex_state = 81}, - [421] = {.lex_state = 81}, - [422] = {.lex_state = 81}, - [423] = {.lex_state = 81}, - [424] = {.lex_state = 81}, - [425] = {.lex_state = 81}, - [426] = {.lex_state = 81}, - [427] = {.lex_state = 81}, - [428] = {.lex_state = 81}, - [429] = {.lex_state = 81}, - [430] = {.lex_state = 81}, - [431] = {.lex_state = 81}, - [432] = {.lex_state = 81}, - [433] = {.lex_state = 81}, - [434] = {.lex_state = 81}, - [435] = {.lex_state = 81}, - [436] = {.lex_state = 81}, - [437] = {.lex_state = 81}, - [438] = {.lex_state = 81}, - [439] = {.lex_state = 81}, - [440] = {.lex_state = 81}, - [441] = {.lex_state = 81}, - [442] = {.lex_state = 81}, - [443] = {.lex_state = 81}, - [444] = {.lex_state = 81}, - [445] = {.lex_state = 81}, - [446] = {.lex_state = 81}, - [447] = {.lex_state = 81}, - [448] = {.lex_state = 81}, - [449] = {.lex_state = 81}, - [450] = {.lex_state = 81}, - [451] = {.lex_state = 81}, - [452] = {.lex_state = 81}, - [453] = {.lex_state = 81}, - [454] = {.lex_state = 81}, - [455] = {.lex_state = 81}, - [456] = {.lex_state = 81}, - [457] = {.lex_state = 81}, - [458] = {.lex_state = 81}, - [459] = {.lex_state = 81}, - [460] = {.lex_state = 81}, - [461] = {.lex_state = 81}, - [462] = {.lex_state = 81}, - [463] = {.lex_state = 81}, - [464] = {.lex_state = 81}, - [465] = {.lex_state = 81}, - [466] = {.lex_state = 81}, - [467] = {.lex_state = 81}, - [468] = {.lex_state = 81}, - [469] = {.lex_state = 81}, - [470] = {.lex_state = 81}, - [471] = {.lex_state = 81}, - [472] = {.lex_state = 81}, - [473] = {.lex_state = 81}, - [474] = {.lex_state = 81}, - [475] = {.lex_state = 81}, - [476] = {.lex_state = 81}, - [477] = {.lex_state = 81}, - [478] = {.lex_state = 81}, - [479] = {.lex_state = 81}, - [480] = {.lex_state = 81}, - [481] = {.lex_state = 81}, - [482] = {.lex_state = 81}, - [483] = {.lex_state = 81}, - [484] = {.lex_state = 81}, - [485] = {.lex_state = 81}, - [486] = {.lex_state = 81}, - [487] = {.lex_state = 81}, - [488] = {.lex_state = 81}, - [489] = {.lex_state = 81}, - [490] = {.lex_state = 81}, - [491] = {.lex_state = 81}, - [492] = {.lex_state = 81}, - [493] = {.lex_state = 81}, - [494] = {.lex_state = 81}, - [495] = {.lex_state = 81}, - [496] = {.lex_state = 81}, - [497] = {.lex_state = 81}, - [498] = {.lex_state = 81}, - [499] = {.lex_state = 81}, - [500] = {.lex_state = 81}, - [501] = {.lex_state = 245}, - [502] = {.lex_state = 81}, - [503] = {.lex_state = 81}, - [504] = {.lex_state = 81}, - [505] = {.lex_state = 81}, - [506] = {.lex_state = 81}, - [507] = {.lex_state = 81}, - [508] = {.lex_state = 81}, - [509] = {.lex_state = 81}, - [510] = {.lex_state = 81}, - [511] = {.lex_state = 81}, - [512] = {.lex_state = 81}, - [513] = {.lex_state = 81}, - [514] = {.lex_state = 81}, - [515] = {.lex_state = 81}, - [516] = {.lex_state = 81}, - [517] = {.lex_state = 81}, - [518] = {.lex_state = 81}, - [519] = {.lex_state = 81}, - [520] = {.lex_state = 81}, - [521] = {.lex_state = 245}, - [522] = {.lex_state = 81}, - [523] = {.lex_state = 81}, - [524] = {.lex_state = 81}, - [525] = {.lex_state = 81}, - [526] = {.lex_state = 81}, - [527] = {.lex_state = 81}, - [528] = {.lex_state = 81}, - [529] = {.lex_state = 81}, - [530] = {.lex_state = 81}, - [531] = {.lex_state = 81}, - [532] = {.lex_state = 81}, - [533] = {.lex_state = 81}, - [534] = {.lex_state = 81}, - [535] = {.lex_state = 81}, - [536] = {.lex_state = 81}, - [537] = {.lex_state = 81}, - [538] = {.lex_state = 81}, - [539] = {.lex_state = 81}, - [540] = {.lex_state = 81}, - [541] = {.lex_state = 81}, - [542] = {.lex_state = 81}, - [543] = {.lex_state = 81}, - [544] = {.lex_state = 81}, - [545] = {.lex_state = 81}, - [546] = {.lex_state = 81}, - [547] = {.lex_state = 81}, - [548] = {.lex_state = 81}, - [549] = {.lex_state = 81}, - [550] = {.lex_state = 81}, - [551] = {.lex_state = 81}, - [552] = {.lex_state = 81}, - [553] = {.lex_state = 81}, - [554] = {.lex_state = 81}, - [555] = {.lex_state = 81}, - [556] = {.lex_state = 81}, - [557] = {.lex_state = 249}, - [558] = {.lex_state = 249}, - [559] = {.lex_state = 81}, - [560] = {.lex_state = 81}, - [561] = {.lex_state = 81}, - [562] = {.lex_state = 81}, - [563] = {.lex_state = 81}, - [564] = {.lex_state = 81}, - [565] = {.lex_state = 81}, - [566] = {.lex_state = 81}, - [567] = {.lex_state = 81}, - [568] = {.lex_state = 81}, - [569] = {.lex_state = 249}, - [570] = {.lex_state = 81}, - [571] = {.lex_state = 81}, - [572] = {.lex_state = 81}, - [573] = {.lex_state = 81}, - [574] = {.lex_state = 81}, - [575] = {.lex_state = 81}, - [576] = {.lex_state = 81}, - [577] = {.lex_state = 81}, - [578] = {.lex_state = 81}, - [579] = {.lex_state = 81}, - [580] = {.lex_state = 81}, - [581] = {.lex_state = 81}, - [582] = {.lex_state = 81}, - [583] = {.lex_state = 81}, - [584] = {.lex_state = 81}, - [585] = {.lex_state = 81}, - [586] = {.lex_state = 81}, - [587] = {.lex_state = 81}, - [588] = {.lex_state = 81}, - [589] = {.lex_state = 81}, - [590] = {.lex_state = 81}, - [591] = {.lex_state = 81}, - [592] = {.lex_state = 81}, - [593] = {.lex_state = 81}, - [594] = {.lex_state = 81}, - [595] = {.lex_state = 81}, - [596] = {.lex_state = 249}, - [597] = {.lex_state = 81}, - [598] = {.lex_state = 81}, - [599] = {.lex_state = 81}, - [600] = {.lex_state = 81}, - [601] = {.lex_state = 81}, - [602] = {.lex_state = 81}, - [603] = {.lex_state = 81}, - [604] = {.lex_state = 81}, - [605] = {.lex_state = 81}, - [606] = {.lex_state = 81}, - [607] = {.lex_state = 81}, - [608] = {.lex_state = 81}, - [609] = {.lex_state = 81}, - [610] = {.lex_state = 81}, - [611] = {.lex_state = 81}, - [612] = {.lex_state = 245}, - [613] = {.lex_state = 81}, - [614] = {.lex_state = 81}, - [615] = {.lex_state = 81}, - [616] = {.lex_state = 81}, - [617] = {.lex_state = 81}, - [618] = {.lex_state = 81}, - [619] = {.lex_state = 81}, - [620] = {.lex_state = 81}, - [621] = {.lex_state = 81}, - [622] = {.lex_state = 81}, - [623] = {.lex_state = 81}, - [624] = {.lex_state = 81}, - [625] = {.lex_state = 81}, - [626] = {.lex_state = 81}, - [627] = {.lex_state = 81}, - [628] = {.lex_state = 81}, - [629] = {.lex_state = 81}, - [630] = {.lex_state = 81}, - [631] = {.lex_state = 81}, - [632] = {.lex_state = 81}, - [633] = {.lex_state = 81}, - [634] = {.lex_state = 81}, - [635] = {.lex_state = 81}, - [636] = {.lex_state = 81}, - [637] = {.lex_state = 81}, - [638] = {.lex_state = 81}, - [639] = {.lex_state = 81}, - [640] = {.lex_state = 81}, - [641] = {.lex_state = 81}, - [642] = {.lex_state = 81}, - [643] = {.lex_state = 81}, - [644] = {.lex_state = 81}, - [645] = {.lex_state = 81}, - [646] = {.lex_state = 81}, - [647] = {.lex_state = 81}, - [648] = {.lex_state = 81}, - [649] = {.lex_state = 81}, - [650] = {.lex_state = 81}, - [651] = {.lex_state = 81}, - [652] = {.lex_state = 81}, - [653] = {.lex_state = 81}, - [654] = {.lex_state = 81}, - [655] = {.lex_state = 81}, - [656] = {.lex_state = 81}, - [657] = {.lex_state = 81}, - [658] = {.lex_state = 81}, - [659] = {.lex_state = 81}, - [660] = {.lex_state = 81}, - [661] = {.lex_state = 81}, - [662] = {.lex_state = 81}, - [663] = {.lex_state = 81}, - [664] = {.lex_state = 81}, - [665] = {.lex_state = 81}, - [666] = {.lex_state = 81}, - [667] = {.lex_state = 81}, - [668] = {.lex_state = 81}, - [669] = {.lex_state = 81}, - [670] = {.lex_state = 81}, - [671] = {.lex_state = 81}, - [672] = {.lex_state = 81}, - [673] = {.lex_state = 81}, - [674] = {.lex_state = 81}, - [675] = {.lex_state = 81}, - [676] = {.lex_state = 81}, - [677] = {.lex_state = 81}, - [678] = {.lex_state = 81}, - [679] = {.lex_state = 81}, - [680] = {.lex_state = 81}, - [681] = {.lex_state = 81}, - [682] = {.lex_state = 81}, - [683] = {.lex_state = 81}, - [684] = {.lex_state = 81}, - [685] = {.lex_state = 81}, - [686] = {.lex_state = 81}, - [687] = {.lex_state = 81}, - [688] = {.lex_state = 81}, - [689] = {.lex_state = 81}, - [690] = {.lex_state = 81}, - [691] = {.lex_state = 81}, - [692] = {.lex_state = 81}, - [693] = {.lex_state = 81}, - [694] = {.lex_state = 81}, - [695] = {.lex_state = 81}, - [696] = {.lex_state = 81}, - [697] = {.lex_state = 81}, - [698] = {.lex_state = 81}, - [699] = {.lex_state = 81}, - [700] = {.lex_state = 81}, - [701] = {.lex_state = 81}, - [702] = {.lex_state = 81}, - [703] = {.lex_state = 81}, - [704] = {.lex_state = 81}, - [705] = {.lex_state = 81}, - [706] = {.lex_state = 81}, - [707] = {.lex_state = 81}, - [708] = {.lex_state = 245}, - [709] = {.lex_state = 81}, - [710] = {.lex_state = 81}, - [711] = {.lex_state = 81}, - [712] = {.lex_state = 81}, - [713] = {.lex_state = 81}, - [714] = {.lex_state = 81}, - [715] = {.lex_state = 81}, - [716] = {.lex_state = 81}, - [717] = {.lex_state = 81}, - [718] = {.lex_state = 81}, - [719] = {.lex_state = 81}, - [720] = {.lex_state = 81}, - [721] = {.lex_state = 81}, - [722] = {.lex_state = 81}, - [723] = {.lex_state = 81}, - [724] = {.lex_state = 81}, - [725] = {.lex_state = 81}, - [726] = {.lex_state = 81}, - [727] = {.lex_state = 81}, - [728] = {.lex_state = 81}, - [729] = {.lex_state = 81}, - [730] = {.lex_state = 81}, - [731] = {.lex_state = 81}, - [732] = {.lex_state = 81}, - [733] = {.lex_state = 81}, - [734] = {.lex_state = 81}, - [735] = {.lex_state = 81}, - [736] = {.lex_state = 81}, - [737] = {.lex_state = 81}, - [738] = {.lex_state = 81}, - [739] = {.lex_state = 81}, - [740] = {.lex_state = 81}, - [741] = {.lex_state = 81}, - [742] = {.lex_state = 81}, - [743] = {.lex_state = 81}, - [744] = {.lex_state = 81}, - [745] = {.lex_state = 81}, - [746] = {.lex_state = 81}, - [747] = {.lex_state = 81}, - [748] = {.lex_state = 81}, - [749] = {.lex_state = 81}, - [750] = {.lex_state = 81}, - [751] = {.lex_state = 81}, - [752] = {.lex_state = 81}, - [753] = {.lex_state = 81}, - [754] = {.lex_state = 81}, - [755] = {.lex_state = 81}, - [756] = {.lex_state = 81}, - [757] = {.lex_state = 81}, - [758] = {.lex_state = 81}, - [759] = {.lex_state = 81}, - [760] = {.lex_state = 81}, - [761] = {.lex_state = 81}, - [762] = {.lex_state = 81}, - [763] = {.lex_state = 81}, - [764] = {.lex_state = 81}, - [765] = {.lex_state = 81}, - [766] = {.lex_state = 81}, - [767] = {.lex_state = 81}, - [768] = {.lex_state = 81}, - [769] = {.lex_state = 81}, - [770] = {.lex_state = 81}, - [771] = {.lex_state = 81}, - [772] = {.lex_state = 81}, - [773] = {.lex_state = 81}, - [774] = {.lex_state = 81}, - [775] = {.lex_state = 81}, - [776] = {.lex_state = 81}, - [777] = {.lex_state = 81}, - [778] = {.lex_state = 81}, - [779] = {.lex_state = 81}, - [780] = {.lex_state = 81}, - [781] = {.lex_state = 81}, - [782] = {.lex_state = 81}, - [783] = {.lex_state = 81}, - [784] = {.lex_state = 81}, - [785] = {.lex_state = 81}, - [786] = {.lex_state = 81}, - [787] = {.lex_state = 81}, - [788] = {.lex_state = 81}, - [789] = {.lex_state = 81}, - [790] = {.lex_state = 81}, - [791] = {.lex_state = 81}, - [792] = {.lex_state = 245}, - [793] = {.lex_state = 81}, - [794] = {.lex_state = 81}, - [795] = {.lex_state = 81}, - [796] = {.lex_state = 81}, - [797] = {.lex_state = 81}, - [798] = {.lex_state = 81}, - [799] = {.lex_state = 81}, - [800] = {.lex_state = 81}, - [801] = {.lex_state = 81}, - [802] = {.lex_state = 81}, - [803] = {.lex_state = 81}, - [804] = {.lex_state = 81}, - [805] = {.lex_state = 81}, - [806] = {.lex_state = 81}, - [807] = {.lex_state = 81}, - [808] = {.lex_state = 81}, - [809] = {.lex_state = 81}, - [810] = {.lex_state = 81}, - [811] = {.lex_state = 81}, - [812] = {.lex_state = 81}, - [813] = {.lex_state = 81}, - [814] = {.lex_state = 81}, - [815] = {.lex_state = 81}, - [816] = {.lex_state = 81}, - [817] = {.lex_state = 81}, - [818] = {.lex_state = 81}, - [819] = {.lex_state = 81}, - [820] = {.lex_state = 81}, - [821] = {.lex_state = 81}, - [822] = {.lex_state = 81}, - [823] = {.lex_state = 81}, - [824] = {.lex_state = 81}, - [825] = {.lex_state = 81}, - [826] = {.lex_state = 81}, - [827] = {.lex_state = 81}, - [828] = {.lex_state = 81}, - [829] = {.lex_state = 81}, - [830] = {.lex_state = 81}, - [831] = {.lex_state = 81}, - [832] = {.lex_state = 81}, - [833] = {.lex_state = 81}, - [834] = {.lex_state = 81}, - [835] = {.lex_state = 81}, - [836] = {.lex_state = 81}, - [837] = {.lex_state = 81}, - [838] = {.lex_state = 81}, - [839] = {.lex_state = 81}, - [840] = {.lex_state = 81}, - [841] = {.lex_state = 81}, - [842] = {.lex_state = 81}, - [843] = {.lex_state = 81}, - [844] = {.lex_state = 81}, - [845] = {.lex_state = 81}, - [846] = {.lex_state = 81}, - [847] = {.lex_state = 245}, - [848] = {.lex_state = 245}, - [849] = {.lex_state = 245}, - [850] = {.lex_state = 245}, + [327] = {.lex_state = 79}, + [328] = {.lex_state = 80}, + [329] = {.lex_state = 79}, + [330] = {.lex_state = 79}, + [331] = {.lex_state = 80}, + [332] = {.lex_state = 245}, + [333] = {.lex_state = 245}, + [334] = {.lex_state = 79}, + [335] = {.lex_state = 80}, + [336] = {.lex_state = 79}, + [337] = {.lex_state = 80}, + [338] = {.lex_state = 245}, + [339] = {.lex_state = 79}, + [340] = {.lex_state = 245}, + [341] = {.lex_state = 79}, + [342] = {.lex_state = 245}, + [343] = {.lex_state = 245}, + [344] = {.lex_state = 79}, + [345] = {.lex_state = 79}, + [346] = {.lex_state = 79}, + [347] = {.lex_state = 79}, + [348] = {.lex_state = 80}, + [349] = {.lex_state = 80}, + [350] = {.lex_state = 79}, + [351] = {.lex_state = 79}, + [352] = {.lex_state = 79}, + [353] = {.lex_state = 79}, + [354] = {.lex_state = 79}, + [355] = {.lex_state = 80}, + [356] = {.lex_state = 79}, + [357] = {.lex_state = 80}, + [358] = {.lex_state = 80}, + [359] = {.lex_state = 79}, + [360] = {.lex_state = 80}, + [361] = {.lex_state = 245}, + [362] = {.lex_state = 79}, + [363] = {.lex_state = 79}, + [364] = {.lex_state = 79}, + [365] = {.lex_state = 245}, + [366] = {.lex_state = 80}, + [367] = {.lex_state = 79}, + [368] = {.lex_state = 80}, + [369] = {.lex_state = 80}, + [370] = {.lex_state = 80}, + [371] = {.lex_state = 79}, + [372] = {.lex_state = 80}, + [373] = {.lex_state = 79}, + [374] = {.lex_state = 80}, + [375] = {.lex_state = 79}, + [376] = {.lex_state = 79}, + [377] = {.lex_state = 79}, + [378] = {.lex_state = 245}, + [379] = {.lex_state = 80}, + [380] = {.lex_state = 79}, + [381] = {.lex_state = 79}, + [382] = {.lex_state = 79}, + [383] = {.lex_state = 79}, + [384] = {.lex_state = 79}, + [385] = {.lex_state = 79}, + [386] = {.lex_state = 79}, + [387] = {.lex_state = 79}, + [388] = {.lex_state = 79}, + [389] = {.lex_state = 79}, + [390] = {.lex_state = 79}, + [391] = {.lex_state = 79}, + [392] = {.lex_state = 79}, + [393] = {.lex_state = 79}, + [394] = {.lex_state = 245}, + [395] = {.lex_state = 245}, + [396] = {.lex_state = 79}, + [397] = {.lex_state = 79}, + [398] = {.lex_state = 79}, + [399] = {.lex_state = 79}, + [400] = {.lex_state = 79}, + [401] = {.lex_state = 79}, + [402] = {.lex_state = 79}, + [403] = {.lex_state = 79}, + [404] = {.lex_state = 79}, + [405] = {.lex_state = 79}, + [406] = {.lex_state = 79}, + [407] = {.lex_state = 79}, + [408] = {.lex_state = 79}, + [409] = {.lex_state = 79}, + [410] = {.lex_state = 79}, + [411] = {.lex_state = 79}, + [412] = {.lex_state = 79}, + [413] = {.lex_state = 79}, + [414] = {.lex_state = 79}, + [415] = {.lex_state = 79}, + [416] = {.lex_state = 79}, + [417] = {.lex_state = 79}, + [418] = {.lex_state = 79}, + [419] = {.lex_state = 79}, + [420] = {.lex_state = 79}, + [421] = {.lex_state = 79}, + [422] = {.lex_state = 79}, + [423] = {.lex_state = 79}, + [424] = {.lex_state = 79}, + [425] = {.lex_state = 79}, + [426] = {.lex_state = 79}, + [427] = {.lex_state = 79}, + [428] = {.lex_state = 79}, + [429] = {.lex_state = 79}, + [430] = {.lex_state = 79}, + [431] = {.lex_state = 79}, + [432] = {.lex_state = 79}, + [433] = {.lex_state = 79}, + [434] = {.lex_state = 79}, + [435] = {.lex_state = 79}, + [436] = {.lex_state = 79}, + [437] = {.lex_state = 79}, + [438] = {.lex_state = 79}, + [439] = {.lex_state = 79}, + [440] = {.lex_state = 79}, + [441] = {.lex_state = 79}, + [442] = {.lex_state = 79}, + [443] = {.lex_state = 79}, + [444] = {.lex_state = 79}, + [445] = {.lex_state = 79}, + [446] = {.lex_state = 79}, + [447] = {.lex_state = 79}, + [448] = {.lex_state = 79}, + [449] = {.lex_state = 79}, + [450] = {.lex_state = 79}, + [451] = {.lex_state = 79}, + [452] = {.lex_state = 79}, + [453] = {.lex_state = 79}, + [454] = {.lex_state = 79}, + [455] = {.lex_state = 79}, + [456] = {.lex_state = 79}, + [457] = {.lex_state = 79}, + [458] = {.lex_state = 249}, + [459] = {.lex_state = 79}, + [460] = {.lex_state = 79}, + [461] = {.lex_state = 79}, + [462] = {.lex_state = 79}, + [463] = {.lex_state = 79}, + [464] = {.lex_state = 79}, + [465] = {.lex_state = 79}, + [466] = {.lex_state = 79}, + [467] = {.lex_state = 79}, + [468] = {.lex_state = 79}, + [469] = {.lex_state = 79}, + [470] = {.lex_state = 79}, + [471] = {.lex_state = 79}, + [472] = {.lex_state = 245}, + [473] = {.lex_state = 79}, + [474] = {.lex_state = 79}, + [475] = {.lex_state = 79}, + [476] = {.lex_state = 79}, + [477] = {.lex_state = 79}, + [478] = {.lex_state = 79}, + [479] = {.lex_state = 79}, + [480] = {.lex_state = 79}, + [481] = {.lex_state = 79}, + [482] = {.lex_state = 79}, + [483] = {.lex_state = 79}, + [484] = {.lex_state = 79}, + [485] = {.lex_state = 79}, + [486] = {.lex_state = 79}, + [487] = {.lex_state = 79}, + [488] = {.lex_state = 79}, + [489] = {.lex_state = 79}, + [490] = {.lex_state = 79}, + [491] = {.lex_state = 79}, + [492] = {.lex_state = 79}, + [493] = {.lex_state = 79}, + [494] = {.lex_state = 79}, + [495] = {.lex_state = 79}, + [496] = {.lex_state = 79}, + [497] = {.lex_state = 79}, + [498] = {.lex_state = 79}, + [499] = {.lex_state = 79}, + [500] = {.lex_state = 249}, + [501] = {.lex_state = 79}, + [502] = {.lex_state = 79}, + [503] = {.lex_state = 79}, + [504] = {.lex_state = 79}, + [505] = {.lex_state = 79}, + [506] = {.lex_state = 79}, + [507] = {.lex_state = 79}, + [508] = {.lex_state = 79}, + [509] = {.lex_state = 79}, + [510] = {.lex_state = 79}, + [511] = {.lex_state = 79}, + [512] = {.lex_state = 79}, + [513] = {.lex_state = 79}, + [514] = {.lex_state = 79}, + [515] = {.lex_state = 79}, + [516] = {.lex_state = 79}, + [517] = {.lex_state = 79}, + [518] = {.lex_state = 79}, + [519] = {.lex_state = 79}, + [520] = {.lex_state = 79}, + [521] = {.lex_state = 79}, + [522] = {.lex_state = 79}, + [523] = {.lex_state = 79}, + [524] = {.lex_state = 79}, + [525] = {.lex_state = 79}, + [526] = {.lex_state = 245}, + [527] = {.lex_state = 79}, + [528] = {.lex_state = 79}, + [529] = {.lex_state = 79}, + [530] = {.lex_state = 79}, + [531] = {.lex_state = 79}, + [532] = {.lex_state = 79}, + [533] = {.lex_state = 79}, + [534] = {.lex_state = 79}, + [535] = {.lex_state = 79}, + [536] = {.lex_state = 79}, + [537] = {.lex_state = 249}, + [538] = {.lex_state = 79}, + [539] = {.lex_state = 79}, + [540] = {.lex_state = 79}, + [541] = {.lex_state = 79}, + [542] = {.lex_state = 79}, + [543] = {.lex_state = 79}, + [544] = {.lex_state = 79}, + [545] = {.lex_state = 79}, + [546] = {.lex_state = 79}, + [547] = {.lex_state = 79}, + [548] = {.lex_state = 79}, + [549] = {.lex_state = 79}, + [550] = {.lex_state = 79}, + [551] = {.lex_state = 79}, + [552] = {.lex_state = 79}, + [553] = {.lex_state = 79}, + [554] = {.lex_state = 79}, + [555] = {.lex_state = 79}, + [556] = {.lex_state = 79}, + [557] = {.lex_state = 79}, + [558] = {.lex_state = 79}, + [559] = {.lex_state = 79}, + [560] = {.lex_state = 79}, + [561] = {.lex_state = 79}, + [562] = {.lex_state = 79}, + [563] = {.lex_state = 79}, + [564] = {.lex_state = 79}, + [565] = {.lex_state = 79}, + [566] = {.lex_state = 79}, + [567] = {.lex_state = 79}, + [568] = {.lex_state = 79}, + [569] = {.lex_state = 79}, + [570] = {.lex_state = 79}, + [571] = {.lex_state = 79}, + [572] = {.lex_state = 79}, + [573] = {.lex_state = 79}, + [574] = {.lex_state = 79}, + [575] = {.lex_state = 79}, + [576] = {.lex_state = 79}, + [577] = {.lex_state = 79}, + [578] = {.lex_state = 79}, + [579] = {.lex_state = 79}, + [580] = {.lex_state = 79}, + [581] = {.lex_state = 79}, + [582] = {.lex_state = 79}, + [583] = {.lex_state = 79}, + [584] = {.lex_state = 79}, + [585] = {.lex_state = 79}, + [586] = {.lex_state = 79}, + [587] = {.lex_state = 79}, + [588] = {.lex_state = 79}, + [589] = {.lex_state = 79}, + [590] = {.lex_state = 79}, + [591] = {.lex_state = 79}, + [592] = {.lex_state = 79}, + [593] = {.lex_state = 79}, + [594] = {.lex_state = 79}, + [595] = {.lex_state = 79}, + [596] = {.lex_state = 79}, + [597] = {.lex_state = 79}, + [598] = {.lex_state = 79}, + [599] = {.lex_state = 79}, + [600] = {.lex_state = 249}, + [601] = {.lex_state = 79}, + [602] = {.lex_state = 79}, + [603] = {.lex_state = 79}, + [604] = {.lex_state = 79}, + [605] = {.lex_state = 79}, + [606] = {.lex_state = 79}, + [607] = {.lex_state = 79}, + [608] = {.lex_state = 79}, + [609] = {.lex_state = 79}, + [610] = {.lex_state = 79}, + [611] = {.lex_state = 79}, + [612] = {.lex_state = 79}, + [613] = {.lex_state = 79}, + [614] = {.lex_state = 79}, + [615] = {.lex_state = 79}, + [616] = {.lex_state = 79}, + [617] = {.lex_state = 79}, + [618] = {.lex_state = 245}, + [619] = {.lex_state = 79}, + [620] = {.lex_state = 79}, + [621] = {.lex_state = 79}, + [622] = {.lex_state = 79}, + [623] = {.lex_state = 79}, + [624] = {.lex_state = 79}, + [625] = {.lex_state = 79}, + [626] = {.lex_state = 79}, + [627] = {.lex_state = 79}, + [628] = {.lex_state = 79}, + [629] = {.lex_state = 79}, + [630] = {.lex_state = 79}, + [631] = {.lex_state = 79}, + [632] = {.lex_state = 79}, + [633] = {.lex_state = 79}, + [634] = {.lex_state = 79}, + [635] = {.lex_state = 79}, + [636] = {.lex_state = 79}, + [637] = {.lex_state = 79}, + [638] = {.lex_state = 79}, + [639] = {.lex_state = 79}, + [640] = {.lex_state = 79}, + [641] = {.lex_state = 79}, + [642] = {.lex_state = 79}, + [643] = {.lex_state = 79}, + [644] = {.lex_state = 79}, + [645] = {.lex_state = 79}, + [646] = {.lex_state = 79}, + [647] = {.lex_state = 79}, + [648] = {.lex_state = 79}, + [649] = {.lex_state = 79}, + [650] = {.lex_state = 79}, + [651] = {.lex_state = 79}, + [652] = {.lex_state = 79}, + [653] = {.lex_state = 79}, + [654] = {.lex_state = 79}, + [655] = {.lex_state = 79}, + [656] = {.lex_state = 79}, + [657] = {.lex_state = 79}, + [658] = {.lex_state = 79}, + [659] = {.lex_state = 79}, + [660] = {.lex_state = 79}, + [661] = {.lex_state = 79}, + [662] = {.lex_state = 79}, + [663] = {.lex_state = 79}, + [664] = {.lex_state = 79}, + [665] = {.lex_state = 79}, + [666] = {.lex_state = 79}, + [667] = {.lex_state = 79}, + [668] = {.lex_state = 79}, + [669] = {.lex_state = 79}, + [670] = {.lex_state = 79}, + [671] = {.lex_state = 79}, + [672] = {.lex_state = 79}, + [673] = {.lex_state = 79}, + [674] = {.lex_state = 79}, + [675] = {.lex_state = 79}, + [676] = {.lex_state = 79}, + [677] = {.lex_state = 79}, + [678] = {.lex_state = 79}, + [679] = {.lex_state = 79}, + [680] = {.lex_state = 79}, + [681] = {.lex_state = 245}, + [682] = {.lex_state = 79}, + [683] = {.lex_state = 79}, + [684] = {.lex_state = 79}, + [685] = {.lex_state = 79}, + [686] = {.lex_state = 79}, + [687] = {.lex_state = 79}, + [688] = {.lex_state = 79}, + [689] = {.lex_state = 79}, + [690] = {.lex_state = 79}, + [691] = {.lex_state = 79}, + [692] = {.lex_state = 79}, + [693] = {.lex_state = 79}, + [694] = {.lex_state = 79}, + [695] = {.lex_state = 79}, + [696] = {.lex_state = 79}, + [697] = {.lex_state = 79}, + [698] = {.lex_state = 79}, + [699] = {.lex_state = 79}, + [700] = {.lex_state = 79}, + [701] = {.lex_state = 79}, + [702] = {.lex_state = 79}, + [703] = {.lex_state = 79}, + [704] = {.lex_state = 79}, + [705] = {.lex_state = 79}, + [706] = {.lex_state = 79}, + [707] = {.lex_state = 79}, + [708] = {.lex_state = 79}, + [709] = {.lex_state = 79}, + [710] = {.lex_state = 79}, + [711] = {.lex_state = 79}, + [712] = {.lex_state = 79}, + [713] = {.lex_state = 79}, + [714] = {.lex_state = 79}, + [715] = {.lex_state = 79}, + [716] = {.lex_state = 245}, + [717] = {.lex_state = 79}, + [718] = {.lex_state = 79}, + [719] = {.lex_state = 79}, + [720] = {.lex_state = 79}, + [721] = {.lex_state = 79}, + [722] = {.lex_state = 79}, + [723] = {.lex_state = 79}, + [724] = {.lex_state = 79}, + [725] = {.lex_state = 79}, + [726] = {.lex_state = 79}, + [727] = {.lex_state = 79}, + [728] = {.lex_state = 79}, + [729] = {.lex_state = 79}, + [730] = {.lex_state = 79}, + [731] = {.lex_state = 79}, + [732] = {.lex_state = 79}, + [733] = {.lex_state = 79}, + [734] = {.lex_state = 79}, + [735] = {.lex_state = 79}, + [736] = {.lex_state = 79}, + [737] = {.lex_state = 79}, + [738] = {.lex_state = 79}, + [739] = {.lex_state = 79}, + [740] = {.lex_state = 79}, + [741] = {.lex_state = 79}, + [742] = {.lex_state = 79}, + [743] = {.lex_state = 79}, + [744] = {.lex_state = 79}, + [745] = {.lex_state = 79}, + [746] = {.lex_state = 79}, + [747] = {.lex_state = 79}, + [748] = {.lex_state = 79}, + [749] = {.lex_state = 79}, + [750] = {.lex_state = 79}, + [751] = {.lex_state = 79}, + [752] = {.lex_state = 79}, + [753] = {.lex_state = 79}, + [754] = {.lex_state = 79}, + [755] = {.lex_state = 79}, + [756] = {.lex_state = 79}, + [757] = {.lex_state = 79}, + [758] = {.lex_state = 79}, + [759] = {.lex_state = 79}, + [760] = {.lex_state = 79}, + [761] = {.lex_state = 79}, + [762] = {.lex_state = 79}, + [763] = {.lex_state = 79}, + [764] = {.lex_state = 79}, + [765] = {.lex_state = 79}, + [766] = {.lex_state = 79}, + [767] = {.lex_state = 79}, + [768] = {.lex_state = 79}, + [769] = {.lex_state = 79}, + [770] = {.lex_state = 79}, + [771] = {.lex_state = 79}, + [772] = {.lex_state = 79}, + [773] = {.lex_state = 79}, + [774] = {.lex_state = 79}, + [775] = {.lex_state = 79}, + [776] = {.lex_state = 79}, + [777] = {.lex_state = 79}, + [778] = {.lex_state = 79}, + [779] = {.lex_state = 79}, + [780] = {.lex_state = 79}, + [781] = {.lex_state = 79}, + [782] = {.lex_state = 79}, + [783] = {.lex_state = 79}, + [784] = {.lex_state = 79}, + [785] = {.lex_state = 79}, + [786] = {.lex_state = 79}, + [787] = {.lex_state = 79}, + [788] = {.lex_state = 79}, + [789] = {.lex_state = 79}, + [790] = {.lex_state = 79}, + [791] = {.lex_state = 79}, + [792] = {.lex_state = 79}, + [793] = {.lex_state = 79}, + [794] = {.lex_state = 79}, + [795] = {.lex_state = 79}, + [796] = {.lex_state = 79}, + [797] = {.lex_state = 79}, + [798] = {.lex_state = 79}, + [799] = {.lex_state = 79}, + [800] = {.lex_state = 79}, + [801] = {.lex_state = 79}, + [802] = {.lex_state = 79}, + [803] = {.lex_state = 79}, + [804] = {.lex_state = 79}, + [805] = {.lex_state = 79}, + [806] = {.lex_state = 79}, + [807] = {.lex_state = 79}, + [808] = {.lex_state = 79}, + [809] = {.lex_state = 79}, + [810] = {.lex_state = 79}, + [811] = {.lex_state = 79}, + [812] = {.lex_state = 79}, + [813] = {.lex_state = 79}, + [814] = {.lex_state = 79}, + [815] = {.lex_state = 79}, + [816] = {.lex_state = 79}, + [817] = {.lex_state = 79}, + [818] = {.lex_state = 79}, + [819] = {.lex_state = 79}, + [820] = {.lex_state = 79}, + [821] = {.lex_state = 79}, + [822] = {.lex_state = 79}, + [823] = {.lex_state = 79}, + [824] = {.lex_state = 79}, + [825] = {.lex_state = 79}, + [826] = {.lex_state = 79}, + [827] = {.lex_state = 79}, + [828] = {.lex_state = 79}, + [829] = {.lex_state = 79}, + [830] = {.lex_state = 79}, + [831] = {.lex_state = 79}, + [832] = {.lex_state = 79}, + [833] = {.lex_state = 79}, + [834] = {.lex_state = 79}, + [835] = {.lex_state = 79}, + [836] = {.lex_state = 79}, + [837] = {.lex_state = 79}, + [838] = {.lex_state = 79}, + [839] = {.lex_state = 79}, + [840] = {.lex_state = 79}, + [841] = {.lex_state = 79}, + [842] = {.lex_state = 79}, + [843] = {.lex_state = 79}, + [844] = {.lex_state = 79}, + [845] = {.lex_state = 79}, + [846] = {.lex_state = 79}, + [847] = {.lex_state = 79}, + [848] = {.lex_state = 79}, + [849] = {.lex_state = 79}, + [850] = {.lex_state = 79}, [851] = {.lex_state = 245}, [852] = {.lex_state = 245}, [853] = {.lex_state = 245}, @@ -18873,27 +18811,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [954] = {.lex_state = 245}, [955] = {.lex_state = 245}, [956] = {.lex_state = 245}, - [957] = {.lex_state = 2}, - [958] = {.lex_state = 247}, - [959] = {.lex_state = 247}, - [960] = {.lex_state = 247}, - [961] = {.lex_state = 247}, + [957] = {.lex_state = 245}, + [958] = {.lex_state = 245}, + [959] = {.lex_state = 245}, + [960] = {.lex_state = 245}, + [961] = {.lex_state = 2}, [962] = {.lex_state = 247}, [963] = {.lex_state = 247}, - [964] = {.lex_state = 247}, - [965] = {.lex_state = 247}, + [964] = {.lex_state = 2}, + [965] = {.lex_state = 2}, [966] = {.lex_state = 247}, [967] = {.lex_state = 2}, [968] = {.lex_state = 247}, - [969] = {.lex_state = 2}, + [969] = {.lex_state = 247}, [970] = {.lex_state = 247}, - [971] = {.lex_state = 247}, - [972] = {.lex_state = 2}, + [971] = {.lex_state = 2}, + [972] = {.lex_state = 247}, [973] = {.lex_state = 247}, - [974] = {.lex_state = 2}, - [975] = {.lex_state = 2}, + [974] = {.lex_state = 247}, + [975] = {.lex_state = 247}, [976] = {.lex_state = 247}, - [977] = {.lex_state = 247}, + [977] = {.lex_state = 2}, [978] = {.lex_state = 247}, [979] = {.lex_state = 247}, [980] = {.lex_state = 247}, @@ -18908,16 +18846,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [989] = {.lex_state = 247}, [990] = {.lex_state = 247}, [991] = {.lex_state = 247}, - [992] = {.lex_state = 251}, - [993] = {.lex_state = 251}, + [992] = {.lex_state = 247}, + [993] = {.lex_state = 247}, [994] = {.lex_state = 247}, [995] = {.lex_state = 247}, - [996] = {.lex_state = 247}, + [996] = {.lex_state = 251}, [997] = {.lex_state = 251}, [998] = {.lex_state = 251}, [999] = {.lex_state = 247}, [1000] = {.lex_state = 247}, - [1001] = {.lex_state = 247}, + [1001] = {.lex_state = 251}, [1002] = {.lex_state = 247}, [1003] = {.lex_state = 247}, [1004] = {.lex_state = 247}, @@ -19025,29 +18963,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1106] = {.lex_state = 247}, [1107] = {.lex_state = 247}, [1108] = {.lex_state = 247}, - [1109] = {.lex_state = 37}, - [1110] = {.lex_state = 37}, - [1111] = {.lex_state = 37}, - [1112] = {.lex_state = 37}, + [1109] = {.lex_state = 247}, + [1110] = {.lex_state = 247}, + [1111] = {.lex_state = 247}, + [1112] = {.lex_state = 247}, [1113] = {.lex_state = 37}, - [1114] = {.lex_state = 254}, - [1115] = {.lex_state = 254}, - [1116] = {.lex_state = 254}, - [1117] = {.lex_state = 6}, - [1118] = {.lex_state = 6}, - [1119] = {.lex_state = 6}, - [1120] = {.lex_state = 6}, + [1114] = {.lex_state = 37}, + [1115] = {.lex_state = 37}, + [1116] = {.lex_state = 37}, + [1117] = {.lex_state = 37}, + [1118] = {.lex_state = 254}, + [1119] = {.lex_state = 254}, + [1120] = {.lex_state = 254}, [1121] = {.lex_state = 6}, [1122] = {.lex_state = 253}, - [1123] = {.lex_state = 10}, - [1124] = {.lex_state = 10}, - [1125] = {.lex_state = 10}, - [1126] = {.lex_state = 10}, + [1123] = {.lex_state = 6}, + [1124] = {.lex_state = 6}, + [1125] = {.lex_state = 6}, + [1126] = {.lex_state = 6}, [1127] = {.lex_state = 10}, - [1128] = {.lex_state = 2}, - [1129] = {.lex_state = 2}, - [1130] = {.lex_state = 2}, - [1131] = {.lex_state = 2}, + [1128] = {.lex_state = 10}, + [1129] = {.lex_state = 10}, + [1130] = {.lex_state = 10}, + [1131] = {.lex_state = 10}, [1132] = {.lex_state = 2}, [1133] = {.lex_state = 2}, [1134] = {.lex_state = 2}, @@ -19057,34 +18995,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1138] = {.lex_state = 2}, [1139] = {.lex_state = 2}, [1140] = {.lex_state = 2}, - [1141] = {.lex_state = 41}, - [1142] = {.lex_state = 45}, + [1141] = {.lex_state = 2}, + [1142] = {.lex_state = 2}, [1143] = {.lex_state = 2}, - [1144] = {.lex_state = 45}, - [1145] = {.lex_state = 2}, - [1146] = {.lex_state = 45}, - [1147] = {.lex_state = 2}, + [1144] = {.lex_state = 2}, + [1145] = {.lex_state = 41}, + [1146] = {.lex_state = 2}, + [1147] = {.lex_state = 45}, [1148] = {.lex_state = 41}, - [1149] = {.lex_state = 41}, - [1150] = {.lex_state = 2}, - [1151] = {.lex_state = 45}, - [1152] = {.lex_state = 45}, - [1153] = {.lex_state = 45}, - [1154] = {.lex_state = 41}, - [1155] = {.lex_state = 2}, - [1156] = {.lex_state = 41}, - [1157] = {.lex_state = 45}, - [1158] = {.lex_state = 2}, + [1149] = {.lex_state = 2}, + [1150] = {.lex_state = 45}, + [1151] = {.lex_state = 41}, + [1152] = {.lex_state = 41}, + [1153] = {.lex_state = 41}, + [1154] = {.lex_state = 45}, + [1155] = {.lex_state = 45}, + [1156] = {.lex_state = 45}, + [1157] = {.lex_state = 2}, + [1158] = {.lex_state = 45}, [1159] = {.lex_state = 2}, - [1160] = {.lex_state = 4}, + [1160] = {.lex_state = 2}, [1161] = {.lex_state = 4}, [1162] = {.lex_state = 4}, - [1163] = {.lex_state = 4}, - [1164] = {.lex_state = 2}, - [1165] = {.lex_state = 2}, + [1163] = {.lex_state = 2}, + [1164] = {.lex_state = 4}, + [1165] = {.lex_state = 4}, [1166] = {.lex_state = 2}, [1167] = {.lex_state = 2}, - [1168] = {.lex_state = 2}, + [1168] = {.lex_state = 45}, [1169] = {.lex_state = 2}, [1170] = {.lex_state = 2}, [1171] = {.lex_state = 2}, @@ -19186,10 +19124,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1267] = {.lex_state = 2}, [1268] = {.lex_state = 2}, [1269] = {.lex_state = 2}, - [1270] = {.lex_state = 37}, - [1271] = {.lex_state = 37}, - [1272] = {.lex_state = 37}, - [1273] = {.lex_state = 37}, + [1270] = {.lex_state = 2}, + [1271] = {.lex_state = 2}, + [1272] = {.lex_state = 2}, + [1273] = {.lex_state = 2}, [1274] = {.lex_state = 37}, [1275] = {.lex_state = 37}, [1276] = {.lex_state = 37}, @@ -19204,7 +19142,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1285] = {.lex_state = 37}, [1286] = {.lex_state = 37}, [1287] = {.lex_state = 37}, - [1288] = {.lex_state = 14}, + [1288] = {.lex_state = 37}, [1289] = {.lex_state = 37}, [1290] = {.lex_state = 37}, [1291] = {.lex_state = 37}, @@ -19212,18 +19150,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1293] = {.lex_state = 37}, [1294] = {.lex_state = 37}, [1295] = {.lex_state = 39}, - [1296] = {.lex_state = 39}, + [1296] = {.lex_state = 37}, [1297] = {.lex_state = 37}, [1298] = {.lex_state = 37}, - [1299] = {.lex_state = 39}, - [1300] = {.lex_state = 37}, - [1301] = {.lex_state = 37}, - [1302] = {.lex_state = 39}, + [1299] = {.lex_state = 37}, + [1300] = {.lex_state = 14}, + [1301] = {.lex_state = 39}, + [1302] = {.lex_state = 37}, [1303] = {.lex_state = 37}, - [1304] = {.lex_state = 37}, + [1304] = {.lex_state = 39}, [1305] = {.lex_state = 37}, - [1306] = {.lex_state = 37}, - [1307] = {.lex_state = 37}, + [1306] = {.lex_state = 39}, + [1307] = {.lex_state = 14}, [1308] = {.lex_state = 37}, [1309] = {.lex_state = 37}, [1310] = {.lex_state = 37}, @@ -19259,10 +19197,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1340] = {.lex_state = 37}, [1341] = {.lex_state = 37}, [1342] = {.lex_state = 37}, - [1343] = {.lex_state = 37}, - [1344] = {.lex_state = 37}, + [1343] = {.lex_state = 14}, + [1344] = {.lex_state = 14}, [1345] = {.lex_state = 37}, - [1346] = {.lex_state = 37}, + [1346] = {.lex_state = 14}, [1347] = {.lex_state = 37}, [1348] = {.lex_state = 37}, [1349] = {.lex_state = 37}, @@ -19289,11 +19227,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1370] = {.lex_state = 37}, [1371] = {.lex_state = 37}, [1372] = {.lex_state = 37}, - [1373] = {.lex_state = 14}, + [1373] = {.lex_state = 37}, [1374] = {.lex_state = 37}, [1375] = {.lex_state = 37}, [1376] = {.lex_state = 37}, - [1377] = {.lex_state = 14}, + [1377] = {.lex_state = 37}, [1378] = {.lex_state = 37}, [1379] = {.lex_state = 37}, [1380] = {.lex_state = 37}, @@ -19305,9 +19243,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1386] = {.lex_state = 37}, [1387] = {.lex_state = 37}, [1388] = {.lex_state = 37}, - [1389] = {.lex_state = 14}, + [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 = 37}, @@ -19323,29 +19261,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1404] = {.lex_state = 37}, [1405] = {.lex_state = 37}, [1406] = {.lex_state = 37}, - [1407] = {.lex_state = 49}, - [1408] = {.lex_state = 49}, - [1409] = {.lex_state = 49}, - [1410] = {.lex_state = 49}, - [1411] = {.lex_state = 255}, - [1412] = {.lex_state = 14}, - [1413] = {.lex_state = 14}, + [1407] = {.lex_state = 37}, + [1408] = {.lex_state = 37}, + [1409] = {.lex_state = 37}, + [1410] = {.lex_state = 37}, + [1411] = {.lex_state = 49}, + [1412] = {.lex_state = 49}, + [1413] = {.lex_state = 49}, [1414] = {.lex_state = 14}, - [1415] = {.lex_state = 254}, - [1416] = {.lex_state = 254}, - [1417] = {.lex_state = 254}, - [1418] = {.lex_state = 255}, - [1419] = {.lex_state = 255}, + [1415] = {.lex_state = 255}, + [1416] = {.lex_state = 49}, + [1417] = {.lex_state = 14}, + [1418] = {.lex_state = 254}, + [1419] = {.lex_state = 254}, [1420] = {.lex_state = 254}, - [1421] = {.lex_state = 255}, - [1422] = {.lex_state = 254}, + [1421] = {.lex_state = 254}, + [1422] = {.lex_state = 14}, [1423] = {.lex_state = 254}, - [1424] = {.lex_state = 254}, - [1425] = {.lex_state = 14}, - [1426] = {.lex_state = 14}, + [1424] = {.lex_state = 14}, + [1425] = {.lex_state = 255}, + [1426] = {.lex_state = 255}, [1427] = {.lex_state = 254}, - [1428] = {.lex_state = 254}, - [1429] = {.lex_state = 254}, + [1428] = {.lex_state = 14}, + [1429] = {.lex_state = 255}, [1430] = {.lex_state = 254}, [1431] = {.lex_state = 254}, [1432] = {.lex_state = 254}, @@ -19364,9 +19302,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1445] = {.lex_state = 254}, [1446] = {.lex_state = 254}, [1447] = {.lex_state = 254}, - [1448] = {.lex_state = 49}, + [1448] = {.lex_state = 254}, [1449] = {.lex_state = 254}, - [1450] = {.lex_state = 254}, + [1450] = {.lex_state = 49}, [1451] = {.lex_state = 254}, [1452] = {.lex_state = 254}, [1453] = {.lex_state = 254}, @@ -19415,7 +19353,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1496] = {.lex_state = 254}, [1497] = {.lex_state = 254}, [1498] = {.lex_state = 254}, - [1499] = {.lex_state = 254}, + [1499] = {.lex_state = 259}, [1500] = {.lex_state = 254}, [1501] = {.lex_state = 254}, [1502] = {.lex_state = 254}, @@ -19425,11 +19363,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1506] = {.lex_state = 254}, [1507] = {.lex_state = 254}, [1508] = {.lex_state = 254}, - [1509] = {.lex_state = 53}, + [1509] = {.lex_state = 254}, [1510] = {.lex_state = 254}, [1511] = {.lex_state = 254}, [1512] = {.lex_state = 254}, - [1513] = {.lex_state = 254}, + [1513] = {.lex_state = 53}, [1514] = {.lex_state = 254}, [1515] = {.lex_state = 254}, [1516] = {.lex_state = 254}, @@ -19475,19 +19413,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1556] = {.lex_state = 254}, [1557] = {.lex_state = 254}, [1558] = {.lex_state = 254}, - [1559] = {.lex_state = 254}, + [1559] = {.lex_state = 259}, [1560] = {.lex_state = 254}, [1561] = {.lex_state = 254}, [1562] = {.lex_state = 254}, [1563] = {.lex_state = 254}, - [1564] = {.lex_state = 258}, + [1564] = {.lex_state = 254}, [1565] = {.lex_state = 254}, [1566] = {.lex_state = 254}, [1567] = {.lex_state = 254}, [1568] = {.lex_state = 254}, [1569] = {.lex_state = 254}, [1570] = {.lex_state = 254}, - [1571] = {.lex_state = 258}, + [1571] = {.lex_state = 254}, [1572] = {.lex_state = 254}, [1573] = {.lex_state = 254}, [1574] = {.lex_state = 254}, @@ -19497,43 +19435,43 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1578] = {.lex_state = 254}, [1579] = {.lex_state = 254}, [1580] = {.lex_state = 254}, - [1581] = {.lex_state = 49}, - [1582] = {.lex_state = 53}, - [1583] = {.lex_state = 53}, - [1584] = {.lex_state = 53}, + [1581] = {.lex_state = 254}, + [1582] = {.lex_state = 254}, + [1583] = {.lex_state = 254}, + [1584] = {.lex_state = 254}, [1585] = {.lex_state = 53}, - [1586] = {.lex_state = 258}, - [1587] = {.lex_state = 49}, - [1588] = {.lex_state = 258}, - [1589] = {.lex_state = 81}, - [1590] = {.lex_state = 49}, - [1591] = {.lex_state = 258}, - [1592] = {.lex_state = 258}, - [1593] = {.lex_state = 6}, - [1594] = {.lex_state = 6}, - [1595] = {.lex_state = 6}, - [1596] = {.lex_state = 6}, + [1586] = {.lex_state = 49}, + [1587] = {.lex_state = 53}, + [1588] = {.lex_state = 53}, + [1589] = {.lex_state = 53}, + [1590] = {.lex_state = 79}, + [1591] = {.lex_state = 259}, + [1592] = {.lex_state = 49}, + [1593] = {.lex_state = 49}, + [1594] = {.lex_state = 259}, + [1595] = {.lex_state = 259}, + [1596] = {.lex_state = 259}, [1597] = {.lex_state = 6}, - [1598] = {.lex_state = 10}, - [1599] = {.lex_state = 10}, - [1600] = {.lex_state = 10}, - [1601] = {.lex_state = 10}, + [1598] = {.lex_state = 6}, + [1599] = {.lex_state = 6}, + [1600] = {.lex_state = 6}, + [1601] = {.lex_state = 6}, [1602] = {.lex_state = 10}, - [1603] = {.lex_state = 41}, - [1604] = {.lex_state = 45}, - [1605] = {.lex_state = 24}, - [1606] = {.lex_state = 41}, + [1603] = {.lex_state = 10}, + [1604] = {.lex_state = 10}, + [1605] = {.lex_state = 10}, + [1606] = {.lex_state = 10}, [1607] = {.lex_state = 41}, [1608] = {.lex_state = 45}, - [1609] = {.lex_state = 41}, - [1610] = {.lex_state = 41}, + [1609] = {.lex_state = 45}, + [1610] = {.lex_state = 24}, [1611] = {.lex_state = 45}, [1612] = {.lex_state = 45}, [1613] = {.lex_state = 45}, - [1614] = {.lex_state = 24}, - [1615] = {.lex_state = 24}, - [1616] = {.lex_state = 24}, - [1617] = {.lex_state = 24}, + [1614] = {.lex_state = 41}, + [1615] = {.lex_state = 41}, + [1616] = {.lex_state = 41}, + [1617] = {.lex_state = 41}, [1618] = {.lex_state = 24}, [1619] = {.lex_state = 24}, [1620] = {.lex_state = 24}, @@ -19543,70 +19481,70 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1624] = {.lex_state = 24}, [1625] = {.lex_state = 24}, [1626] = {.lex_state = 24}, - [1627] = {.lex_state = 18}, - [1628] = {.lex_state = 26}, - [1629] = {.lex_state = 18}, - [1630] = {.lex_state = 7}, + [1627] = {.lex_state = 24}, + [1628] = {.lex_state = 24}, + [1629] = {.lex_state = 24}, + [1630] = {.lex_state = 24}, [1631] = {.lex_state = 7}, - [1632] = {.lex_state = 24}, - [1633] = {.lex_state = 24}, - [1634] = {.lex_state = 24}, - [1635] = {.lex_state = 24}, + [1632] = {.lex_state = 18}, + [1633] = {.lex_state = 26}, + [1634] = {.lex_state = 7}, + [1635] = {.lex_state = 18}, [1636] = {.lex_state = 24}, - [1637] = {.lex_state = 24}, + [1637] = {.lex_state = 26}, [1638] = {.lex_state = 26}, [1639] = {.lex_state = 24}, - [1640] = {.lex_state = 26}, + [1640] = {.lex_state = 24}, [1641] = {.lex_state = 24}, - [1642] = {.lex_state = 24}, - [1643] = {.lex_state = 24}, - [1644] = {.lex_state = 24}, + [1642] = {.lex_state = 69}, + [1643] = {.lex_state = 69}, + [1644] = {.lex_state = 26}, [1645] = {.lex_state = 26}, [1646] = {.lex_state = 24}, - [1647] = {.lex_state = 24}, + [1647] = {.lex_state = 26}, [1648] = {.lex_state = 26}, [1649] = {.lex_state = 26}, - [1650] = {.lex_state = 26}, - [1651] = {.lex_state = 26}, - [1652] = {.lex_state = 26}, + [1650] = {.lex_state = 24}, + [1651] = {.lex_state = 24}, + [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 = 258}, + [1658] = {.lex_state = 26}, [1659] = {.lex_state = 24}, [1660] = {.lex_state = 24}, [1661] = {.lex_state = 24}, - [1662] = {.lex_state = 69}, - [1663] = {.lex_state = 24}, - [1664] = {.lex_state = 24}, + [1662] = {.lex_state = 24}, + [1663] = {.lex_state = 26}, + [1664] = {.lex_state = 26}, [1665] = {.lex_state = 24}, [1666] = {.lex_state = 24}, - [1667] = {.lex_state = 24}, + [1667] = {.lex_state = 26}, [1668] = {.lex_state = 24}, [1669] = {.lex_state = 24}, - [1670] = {.lex_state = 69}, + [1670] = {.lex_state = 24}, [1671] = {.lex_state = 26}, - [1672] = {.lex_state = 26}, - [1673] = {.lex_state = 26}, - [1674] = {.lex_state = 26}, + [1672] = {.lex_state = 24}, + [1673] = {.lex_state = 24}, + [1674] = {.lex_state = 24}, [1675] = {.lex_state = 24}, [1676] = {.lex_state = 24}, [1677] = {.lex_state = 24}, [1678] = {.lex_state = 24}, - [1679] = {.lex_state = 24}, + [1679] = {.lex_state = 259}, [1680] = {.lex_state = 24}, [1681] = {.lex_state = 24}, [1682] = {.lex_state = 24}, [1683] = {.lex_state = 24}, [1684] = {.lex_state = 24}, [1685] = {.lex_state = 24}, - [1686] = {.lex_state = 20}, + [1686] = {.lex_state = 24}, [1687] = {.lex_state = 24}, [1688] = {.lex_state = 24}, [1689] = {.lex_state = 24}, - [1690] = {.lex_state = 20}, + [1690] = {.lex_state = 24}, [1691] = {.lex_state = 24}, [1692] = {.lex_state = 24}, [1693] = {.lex_state = 24}, @@ -19625,7 +19563,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1706] = {.lex_state = 24}, [1707] = {.lex_state = 24}, [1708] = {.lex_state = 24}, - [1709] = {.lex_state = 24}, + [1709] = {.lex_state = 20}, [1710] = {.lex_state = 24}, [1711] = {.lex_state = 24}, [1712] = {.lex_state = 24}, @@ -19634,23 +19572,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1715] = {.lex_state = 24}, [1716] = {.lex_state = 24}, [1717] = {.lex_state = 24}, - [1718] = {.lex_state = 24}, + [1718] = {.lex_state = 20}, [1719] = {.lex_state = 24}, [1720] = {.lex_state = 24}, [1721] = {.lex_state = 24}, [1722] = {.lex_state = 24}, - [1723] = {.lex_state = 26}, - [1724] = {.lex_state = 24}, - [1725] = {.lex_state = 11}, + [1723] = {.lex_state = 24}, + [1724] = {.lex_state = 26}, + [1725] = {.lex_state = 24}, [1726] = {.lex_state = 24}, - [1727] = {.lex_state = 11}, + [1727] = {.lex_state = 24}, [1728] = {.lex_state = 24}, [1729] = {.lex_state = 24}, [1730] = {.lex_state = 24}, [1731] = {.lex_state = 24}, [1732] = {.lex_state = 24}, [1733] = {.lex_state = 24}, - [1734] = {.lex_state = 24}, + [1734] = {.lex_state = 11}, [1735] = {.lex_state = 24}, [1736] = {.lex_state = 24}, [1737] = {.lex_state = 24}, @@ -19660,7 +19598,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1741] = {.lex_state = 24}, [1742] = {.lex_state = 24}, [1743] = {.lex_state = 24}, - [1744] = {.lex_state = 24}, + [1744] = {.lex_state = 11}, [1745] = {.lex_state = 24}, [1746] = {.lex_state = 24}, [1747] = {.lex_state = 24}, @@ -19677,46 +19615,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1758] = {.lex_state = 24}, [1759] = {.lex_state = 24}, [1760] = {.lex_state = 24}, - [1761] = {.lex_state = 14}, - [1762] = {.lex_state = 71}, - [1763] = {.lex_state = 69}, - [1764] = {.lex_state = 69}, + [1761] = {.lex_state = 24}, + [1762] = {.lex_state = 24}, + [1763] = {.lex_state = 24}, + [1764] = {.lex_state = 24}, [1765] = {.lex_state = 69}, [1766] = {.lex_state = 69}, - [1767] = {.lex_state = 71}, - [1768] = {.lex_state = 69}, - [1769] = {.lex_state = 71}, - [1770] = {.lex_state = 71}, - [1771] = {.lex_state = 71}, - [1772] = {.lex_state = 26}, - [1773] = {.lex_state = 69}, - [1774] = {.lex_state = 69}, - [1775] = {.lex_state = 26}, - [1776] = {.lex_state = 26}, - [1777] = {.lex_state = 69}, - [1778] = {.lex_state = 69}, - [1779] = {.lex_state = 69}, + [1767] = {.lex_state = 69}, + [1768] = {.lex_state = 14}, + [1769] = {.lex_state = 69}, + [1770] = {.lex_state = 14}, + [1771] = {.lex_state = 26}, + [1772] = {.lex_state = 69}, + [1773] = {.lex_state = 26}, + [1774] = {.lex_state = 71}, + [1775] = {.lex_state = 14}, + [1776] = {.lex_state = 14}, + [1777] = {.lex_state = 71}, + [1778] = {.lex_state = 26}, + [1779] = {.lex_state = 71}, [1780] = {.lex_state = 69}, - [1781] = {.lex_state = 69}, - [1782] = {.lex_state = 14}, - [1783] = {.lex_state = 26}, - [1784] = {.lex_state = 14}, + [1781] = {.lex_state = 71}, + [1782] = {.lex_state = 71}, + [1783] = {.lex_state = 69}, + [1784] = {.lex_state = 69}, [1785] = {.lex_state = 71}, - [1786] = {.lex_state = 69}, + [1786] = {.lex_state = 71}, [1787] = {.lex_state = 26}, - [1788] = {.lex_state = 71}, - [1789] = {.lex_state = 69}, - [1790] = {.lex_state = 71}, - [1791] = {.lex_state = 14}, - [1792] = {.lex_state = 14}, - [1793] = {.lex_state = 26}, + [1788] = {.lex_state = 26}, + [1789] = {.lex_state = 14}, + [1790] = {.lex_state = 69}, + [1791] = {.lex_state = 69}, + [1792] = {.lex_state = 71}, + [1793] = {.lex_state = 69}, [1794] = {.lex_state = 71}, [1795] = {.lex_state = 71}, - [1796] = {.lex_state = 71}, + [1796] = {.lex_state = 69}, [1797] = {.lex_state = 26}, - [1798] = {.lex_state = 26}, - [1799] = {.lex_state = 26}, - [1800] = {.lex_state = 26}, + [1798] = {.lex_state = 71}, + [1799] = {.lex_state = 69}, + [1800] = {.lex_state = 69}, [1801] = {.lex_state = 26}, [1802] = {.lex_state = 26}, [1803] = {.lex_state = 26}, @@ -19726,20 +19664,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1807] = {.lex_state = 26}, [1808] = {.lex_state = 26}, [1809] = {.lex_state = 26}, - [1810] = {.lex_state = 69}, - [1811] = {.lex_state = 69}, + [1810] = {.lex_state = 26}, + [1811] = {.lex_state = 26}, [1812] = {.lex_state = 26}, [1813] = {.lex_state = 26}, [1814] = {.lex_state = 26}, [1815] = {.lex_state = 26}, - [1816] = {.lex_state = 69}, + [1816] = {.lex_state = 26}, [1817] = {.lex_state = 26}, [1818] = {.lex_state = 26}, [1819] = {.lex_state = 26}, - [1820] = {.lex_state = 69}, + [1820] = {.lex_state = 26}, [1821] = {.lex_state = 26}, [1822] = {.lex_state = 26}, - [1823] = {.lex_state = 26}, + [1823] = {.lex_state = 69}, [1824] = {.lex_state = 26}, [1825] = {.lex_state = 26}, [1826] = {.lex_state = 26}, @@ -19752,9 +19690,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1833] = {.lex_state = 26}, [1834] = {.lex_state = 26}, [1835] = {.lex_state = 26}, - [1836] = {.lex_state = 26}, - [1837] = {.lex_state = 26}, - [1838] = {.lex_state = 26}, + [1836] = {.lex_state = 69}, + [1837] = {.lex_state = 46}, + [1838] = {.lex_state = 46}, [1839] = {.lex_state = 26}, [1840] = {.lex_state = 26}, [1841] = {.lex_state = 26}, @@ -19763,35 +19701,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1844] = {.lex_state = 26}, [1845] = {.lex_state = 26}, [1846] = {.lex_state = 26}, - [1847] = {.lex_state = 26}, - [1848] = {.lex_state = 26}, + [1847] = {.lex_state = 71}, + [1848] = {.lex_state = 69}, [1849] = {.lex_state = 26}, - [1850] = {.lex_state = 46}, - [1851] = {.lex_state = 46}, + [1850] = {.lex_state = 26}, + [1851] = {.lex_state = 26}, [1852] = {.lex_state = 26}, [1853] = {.lex_state = 26}, [1854] = {.lex_state = 26}, [1855] = {.lex_state = 26}, [1856] = {.lex_state = 26}, - [1857] = {.lex_state = 61}, + [1857] = {.lex_state = 26}, [1858] = {.lex_state = 26}, [1859] = {.lex_state = 26}, [1860] = {.lex_state = 26}, - [1861] = {.lex_state = 26}, + [1861] = {.lex_state = 61}, [1862] = {.lex_state = 26}, - [1863] = {.lex_state = 26}, + [1863] = {.lex_state = 59}, [1864] = {.lex_state = 26}, [1865] = {.lex_state = 26}, - [1866] = {.lex_state = 26}, + [1866] = {.lex_state = 69}, [1867] = {.lex_state = 26}, - [1868] = {.lex_state = 26}, - [1869] = {.lex_state = 43}, + [1868] = {.lex_state = 59}, + [1869] = {.lex_state = 26}, [1870] = {.lex_state = 26}, [1871] = {.lex_state = 26}, [1872] = {.lex_state = 26}, [1873] = {.lex_state = 26}, [1874] = {.lex_state = 26}, - [1875] = {.lex_state = 59}, + [1875] = {.lex_state = 26}, [1876] = {.lex_state = 26}, [1877] = {.lex_state = 26}, [1878] = {.lex_state = 26}, @@ -19799,79 +19737,79 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1880] = {.lex_state = 26}, [1881] = {.lex_state = 26}, [1882] = {.lex_state = 26}, - [1883] = {.lex_state = 26}, - [1884] = {.lex_state = 26}, - [1885] = {.lex_state = 26}, + [1883] = {.lex_state = 69}, + [1884] = {.lex_state = 69}, + [1885] = {.lex_state = 61}, [1886] = {.lex_state = 26}, - [1887] = {.lex_state = 69}, + [1887] = {.lex_state = 43}, [1888] = {.lex_state = 26}, [1889] = {.lex_state = 26}, - [1890] = {.lex_state = 26}, - [1891] = {.lex_state = 69}, - [1892] = {.lex_state = 59}, - [1893] = {.lex_state = 26}, + [1890] = {.lex_state = 69}, + [1891] = {.lex_state = 26}, + [1892] = {.lex_state = 26}, + [1893] = {.lex_state = 69}, [1894] = {.lex_state = 26}, [1895] = {.lex_state = 26}, [1896] = {.lex_state = 26}, [1897] = {.lex_state = 26}, - [1898] = {.lex_state = 61}, + [1898] = {.lex_state = 26}, [1899] = {.lex_state = 69}, [1900] = {.lex_state = 69}, [1901] = {.lex_state = 26}, [1902] = {.lex_state = 26}, - [1903] = {.lex_state = 69}, + [1903] = {.lex_state = 26}, [1904] = {.lex_state = 26}, [1905] = {.lex_state = 26}, - [1906] = {.lex_state = 69}, - [1907] = {.lex_state = 26}, - [1908] = {.lex_state = 43}, + [1906] = {.lex_state = 26}, + [1907] = {.lex_state = 43}, + [1908] = {.lex_state = 26}, [1909] = {.lex_state = 26}, [1910] = {.lex_state = 26}, [1911] = {.lex_state = 26}, - [1912] = {.lex_state = 71}, + [1912] = {.lex_state = 26}, [1913] = {.lex_state = 26}, [1914] = {.lex_state = 26}, [1915] = {.lex_state = 26}, - [1916] = {.lex_state = 69}, - [1917] = {.lex_state = 69}, - [1918] = {.lex_state = 69}, - [1919] = {.lex_state = 69}, - [1920] = {.lex_state = 71}, + [1916] = {.lex_state = 26}, + [1917] = {.lex_state = 26}, + [1918] = {.lex_state = 26}, + [1919] = {.lex_state = 26}, + [1920] = {.lex_state = 69}, [1921] = {.lex_state = 69}, - [1922] = {.lex_state = 71}, + [1922] = {.lex_state = 69}, [1923] = {.lex_state = 71}, - [1924] = {.lex_state = 69}, + [1924] = {.lex_state = 71}, [1925] = {.lex_state = 71}, [1926] = {.lex_state = 69}, - [1927] = {.lex_state = 69}, - [1928] = {.lex_state = 71}, + [1927] = {.lex_state = 71}, + [1928] = {.lex_state = 69}, [1929] = {.lex_state = 69}, [1930] = {.lex_state = 69}, [1931] = {.lex_state = 69}, - [1932] = {.lex_state = 71}, - [1933] = {.lex_state = 71}, + [1932] = {.lex_state = 69}, + [1933] = {.lex_state = 69}, [1934] = {.lex_state = 69}, [1935] = {.lex_state = 69}, - [1936] = {.lex_state = 71}, + [1936] = {.lex_state = 69}, [1937] = {.lex_state = 69}, - [1938] = {.lex_state = 71}, - [1939] = {.lex_state = 30}, - [1940] = {.lex_state = 69}, - [1941] = {.lex_state = 69}, - [1942] = {.lex_state = 71}, - [1943] = {.lex_state = 69}, - [1944] = {.lex_state = 49}, + [1938] = {.lex_state = 49}, + [1939] = {.lex_state = 71}, + [1940] = {.lex_state = 71}, + [1941] = {.lex_state = 49}, + [1942] = {.lex_state = 49}, + [1943] = {.lex_state = 49}, + [1944] = {.lex_state = 71}, [1945] = {.lex_state = 69}, - [1946] = {.lex_state = 71}, + [1946] = {.lex_state = 69}, [1947] = {.lex_state = 69}, [1948] = {.lex_state = 69}, - [1949] = {.lex_state = 49}, + [1949] = {.lex_state = 69}, [1950] = {.lex_state = 69}, [1951] = {.lex_state = 69}, - [1952] = {.lex_state = 71}, - [1953] = {.lex_state = 71}, - [1954] = {.lex_state = 71}, - [1955] = {.lex_state = 69}, + [1952] = {.lex_state = 69}, + [1953] = {.lex_state = 69}, + [1954] = {.lex_state = 69}, + [1955] = {.lex_state = 71}, [1956] = {.lex_state = 71}, [1957] = {.lex_state = 69}, [1958] = {.lex_state = 71}, @@ -19881,234 +19819,234 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1962] = {.lex_state = 69}, [1963] = {.lex_state = 69}, [1964] = {.lex_state = 69}, - [1965] = {.lex_state = 69}, - [1966] = {.lex_state = 71}, - [1967] = {.lex_state = 71}, + [1965] = {.lex_state = 30}, + [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 = 69}, [1973] = {.lex_state = 69}, - [1974] = {.lex_state = 71}, - [1975] = {.lex_state = 69}, + [1974] = {.lex_state = 49}, + [1975] = {.lex_state = 71}, [1976] = {.lex_state = 69}, - [1977] = {.lex_state = 69}, + [1977] = {.lex_state = 71}, [1978] = {.lex_state = 69}, - [1979] = {.lex_state = 71}, + [1979] = {.lex_state = 69}, [1980] = {.lex_state = 69}, [1981] = {.lex_state = 69}, - [1982] = {.lex_state = 71}, - [1983] = {.lex_state = 71}, + [1982] = {.lex_state = 69}, + [1983] = {.lex_state = 69}, [1984] = {.lex_state = 69}, [1985] = {.lex_state = 69}, - [1986] = {.lex_state = 69}, - [1987] = {.lex_state = 71}, + [1986] = {.lex_state = 71}, + [1987] = {.lex_state = 69}, [1988] = {.lex_state = 69}, [1989] = {.lex_state = 69}, [1990] = {.lex_state = 69}, - [1991] = {.lex_state = 71}, + [1991] = {.lex_state = 69}, [1992] = {.lex_state = 69}, [1993] = {.lex_state = 69}, - [1994] = {.lex_state = 71}, - [1995] = {.lex_state = 71}, - [1996] = {.lex_state = 71}, + [1994] = {.lex_state = 69}, + [1995] = {.lex_state = 69}, + [1996] = {.lex_state = 69}, [1997] = {.lex_state = 69}, - [1998] = {.lex_state = 71}, + [1998] = {.lex_state = 69}, [1999] = {.lex_state = 69}, - [2000] = {.lex_state = 71}, - [2001] = {.lex_state = 71}, + [2000] = {.lex_state = 69}, + [2001] = {.lex_state = 69}, [2002] = {.lex_state = 69}, - [2003] = {.lex_state = 71}, + [2003] = {.lex_state = 69}, [2004] = {.lex_state = 69}, [2005] = {.lex_state = 71}, [2006] = {.lex_state = 71}, [2007] = {.lex_state = 71}, - [2008] = {.lex_state = 69}, + [2008] = {.lex_state = 71}, [2009] = {.lex_state = 69}, - [2010] = {.lex_state = 71}, + [2010] = {.lex_state = 69}, [2011] = {.lex_state = 69}, [2012] = {.lex_state = 69}, - [2013] = {.lex_state = 71}, - [2014] = {.lex_state = 69}, + [2013] = {.lex_state = 69}, + [2014] = {.lex_state = 71}, [2015] = {.lex_state = 69}, - [2016] = {.lex_state = 49}, + [2016] = {.lex_state = 69}, [2017] = {.lex_state = 69}, - [2018] = {.lex_state = 71}, + [2018] = {.lex_state = 69}, [2019] = {.lex_state = 69}, - [2020] = {.lex_state = 71}, + [2020] = {.lex_state = 69}, [2021] = {.lex_state = 69}, [2022] = {.lex_state = 69}, [2023] = {.lex_state = 69}, [2024] = {.lex_state = 69}, - [2025] = {.lex_state = 71}, + [2025] = {.lex_state = 69}, [2026] = {.lex_state = 69}, - [2027] = {.lex_state = 69}, - [2028] = {.lex_state = 71}, - [2029] = {.lex_state = 71}, + [2027] = {.lex_state = 71}, + [2028] = {.lex_state = 69}, + [2029] = {.lex_state = 69}, [2030] = {.lex_state = 71}, - [2031] = {.lex_state = 71}, + [2031] = {.lex_state = 69}, [2032] = {.lex_state = 69}, - [2033] = {.lex_state = 69}, + [2033] = {.lex_state = 71}, [2034] = {.lex_state = 71}, - [2035] = {.lex_state = 69}, + [2035] = {.lex_state = 71}, [2036] = {.lex_state = 71}, [2037] = {.lex_state = 71}, [2038] = {.lex_state = 71}, - [2039] = {.lex_state = 71}, + [2039] = {.lex_state = 69}, [2040] = {.lex_state = 69}, [2041] = {.lex_state = 71}, - [2042] = {.lex_state = 69}, + [2042] = {.lex_state = 71}, [2043] = {.lex_state = 71}, [2044] = {.lex_state = 69}, - [2045] = {.lex_state = 69}, + [2045] = {.lex_state = 71}, [2046] = {.lex_state = 69}, - [2047] = {.lex_state = 69}, - [2048] = {.lex_state = 69}, + [2047] = {.lex_state = 71}, + [2048] = {.lex_state = 71}, [2049] = {.lex_state = 71}, - [2050] = {.lex_state = 69}, - [2051] = {.lex_state = 69}, - [2052] = {.lex_state = 69}, - [2053] = {.lex_state = 69}, + [2050] = {.lex_state = 71}, + [2051] = {.lex_state = 71}, + [2052] = {.lex_state = 71}, + [2053] = {.lex_state = 71}, [2054] = {.lex_state = 71}, - [2055] = {.lex_state = 69}, - [2056] = {.lex_state = 69}, + [2055] = {.lex_state = 71}, + [2056] = {.lex_state = 71}, [2057] = {.lex_state = 71}, - [2058] = {.lex_state = 69}, - [2059] = {.lex_state = 69}, - [2060] = {.lex_state = 69}, + [2058] = {.lex_state = 71}, + [2059] = {.lex_state = 71}, + [2060] = {.lex_state = 71}, [2061] = {.lex_state = 71}, [2062] = {.lex_state = 71}, - [2063] = {.lex_state = 71}, - [2064] = {.lex_state = 69}, + [2063] = {.lex_state = 69}, + [2064] = {.lex_state = 71}, [2065] = {.lex_state = 71}, [2066] = {.lex_state = 71}, [2067] = {.lex_state = 71}, [2068] = {.lex_state = 71}, [2069] = {.lex_state = 71}, - [2070] = {.lex_state = 69}, - [2071] = {.lex_state = 30}, - [2072] = {.lex_state = 69}, + [2070] = {.lex_state = 71}, + [2071] = {.lex_state = 71}, + [2072] = {.lex_state = 71}, [2073] = {.lex_state = 71}, - [2074] = {.lex_state = 71}, - [2075] = {.lex_state = 71}, - [2076] = {.lex_state = 71}, - [2077] = {.lex_state = 69}, - [2078] = {.lex_state = 69}, + [2074] = {.lex_state = 69}, + [2075] = {.lex_state = 69}, + [2076] = {.lex_state = 69}, + [2077] = {.lex_state = 71}, + [2078] = {.lex_state = 71}, [2079] = {.lex_state = 71}, - [2080] = {.lex_state = 69}, + [2080] = {.lex_state = 71}, [2081] = {.lex_state = 71}, - [2082] = {.lex_state = 71}, + [2082] = {.lex_state = 69}, [2083] = {.lex_state = 71}, - [2084] = {.lex_state = 69}, + [2084] = {.lex_state = 71}, [2085] = {.lex_state = 71}, [2086] = {.lex_state = 71}, - [2087] = {.lex_state = 69}, - [2088] = {.lex_state = 69}, - [2089] = {.lex_state = 71}, + [2087] = {.lex_state = 71}, + [2088] = {.lex_state = 71}, + [2089] = {.lex_state = 69}, [2090] = {.lex_state = 69}, - [2091] = {.lex_state = 69}, + [2091] = {.lex_state = 71}, [2092] = {.lex_state = 71}, - [2093] = {.lex_state = 49}, - [2094] = {.lex_state = 69}, - [2095] = {.lex_state = 71}, + [2093] = {.lex_state = 71}, + [2094] = {.lex_state = 71}, + [2095] = {.lex_state = 69}, [2096] = {.lex_state = 71}, - [2097] = {.lex_state = 69}, + [2097] = {.lex_state = 71}, [2098] = {.lex_state = 69}, - [2099] = {.lex_state = 69}, + [2099] = {.lex_state = 71}, [2100] = {.lex_state = 71}, [2101] = {.lex_state = 71}, - [2102] = {.lex_state = 69}, - [2103] = {.lex_state = 71}, + [2102] = {.lex_state = 71}, + [2103] = {.lex_state = 69}, [2104] = {.lex_state = 71}, - [2105] = {.lex_state = 69}, - [2106] = {.lex_state = 69}, - [2107] = {.lex_state = 69}, + [2105] = {.lex_state = 71}, + [2106] = {.lex_state = 71}, + [2107] = {.lex_state = 71}, [2108] = {.lex_state = 69}, - [2109] = {.lex_state = 71}, - [2110] = {.lex_state = 71}, + [2109] = {.lex_state = 69}, + [2110] = {.lex_state = 69}, [2111] = {.lex_state = 69}, [2112] = {.lex_state = 71}, - [2113] = {.lex_state = 71}, + [2113] = {.lex_state = 69}, [2114] = {.lex_state = 71}, - [2115] = {.lex_state = 71}, + [2115] = {.lex_state = 69}, [2116] = {.lex_state = 71}, [2117] = {.lex_state = 71}, [2118] = {.lex_state = 71}, [2119] = {.lex_state = 71}, - [2120] = {.lex_state = 69}, + [2120] = {.lex_state = 71}, [2121] = {.lex_state = 71}, [2122] = {.lex_state = 69}, [2123] = {.lex_state = 71}, [2124] = {.lex_state = 71}, - [2125] = {.lex_state = 71}, - [2126] = {.lex_state = 69}, - [2127] = {.lex_state = 69}, + [2125] = {.lex_state = 30}, + [2126] = {.lex_state = 71}, + [2127] = {.lex_state = 71}, [2128] = {.lex_state = 71}, - [2129] = {.lex_state = 69}, - [2130] = {.lex_state = 69}, + [2129] = {.lex_state = 71}, + [2130] = {.lex_state = 71}, [2131] = {.lex_state = 71}, - [2132] = {.lex_state = 69}, - [2133] = {.lex_state = 71}, - [2134] = {.lex_state = 71}, + [2132] = {.lex_state = 71}, + [2133] = {.lex_state = 69}, + [2134] = {.lex_state = 69}, [2135] = {.lex_state = 71}, - [2136] = {.lex_state = 71}, + [2136] = {.lex_state = 69}, [2137] = {.lex_state = 69}, - [2138] = {.lex_state = 71}, + [2138] = {.lex_state = 69}, [2139] = {.lex_state = 71}, [2140] = {.lex_state = 71}, [2141] = {.lex_state = 71}, - [2142] = {.lex_state = 71}, - [2143] = {.lex_state = 49}, - [2144] = {.lex_state = 15}, + [2142] = {.lex_state = 69}, + [2143] = {.lex_state = 69}, + [2144] = {.lex_state = 71}, [2145] = {.lex_state = 69}, - [2146] = {.lex_state = 15}, - [2147] = {.lex_state = 15}, + [2146] = {.lex_state = 71}, + [2147] = {.lex_state = 69}, [2148] = {.lex_state = 15}, [2149] = {.lex_state = 15}, - [2150] = {.lex_state = 81}, + [2150] = {.lex_state = 69}, [2151] = {.lex_state = 15}, - [2152] = {.lex_state = 81}, - [2153] = {.lex_state = 81}, - [2154] = {.lex_state = 15}, - [2155] = {.lex_state = 81}, + [2152] = {.lex_state = 15}, + [2153] = {.lex_state = 15}, + [2154] = {.lex_state = 79}, + [2155] = {.lex_state = 22}, [2156] = {.lex_state = 15}, [2157] = {.lex_state = 15}, - [2158] = {.lex_state = 22}, - [2159] = {.lex_state = 15}, - [2160] = {.lex_state = 22}, - [2161] = {.lex_state = 81}, - [2162] = {.lex_state = 81}, - [2163] = {.lex_state = 81}, - [2164] = {.lex_state = 81}, - [2165] = {.lex_state = 22}, + [2158] = {.lex_state = 79}, + [2159] = {.lex_state = 79}, + [2160] = {.lex_state = 15}, + [2161] = {.lex_state = 22}, + [2162] = {.lex_state = 79}, + [2163] = {.lex_state = 79}, + [2164] = {.lex_state = 15}, + [2165] = {.lex_state = 79}, [2166] = {.lex_state = 22}, - [2167] = {.lex_state = 15}, + [2167] = {.lex_state = 22}, [2168] = {.lex_state = 15}, - [2169] = {.lex_state = 15}, - [2170] = {.lex_state = 15}, + [2169] = {.lex_state = 79}, + [2170] = {.lex_state = 79}, [2171] = {.lex_state = 15}, [2172] = {.lex_state = 15}, [2173] = {.lex_state = 15}, - [2174] = {.lex_state = 31}, + [2174] = {.lex_state = 15}, [2175] = {.lex_state = 15}, [2176] = {.lex_state = 15}, [2177] = {.lex_state = 15}, [2178] = {.lex_state = 15}, [2179] = {.lex_state = 15}, - [2180] = {.lex_state = 81}, + [2180] = {.lex_state = 15}, [2181] = {.lex_state = 15}, [2182] = {.lex_state = 15}, [2183] = {.lex_state = 15}, [2184] = {.lex_state = 15}, [2185] = {.lex_state = 15}, - [2186] = {.lex_state = 15}, - [2187] = {.lex_state = 73}, + [2186] = {.lex_state = 73}, + [2187] = {.lex_state = 15}, [2188] = {.lex_state = 15}, [2189] = {.lex_state = 15}, [2190] = {.lex_state = 15}, [2191] = {.lex_state = 15}, - [2192] = {.lex_state = 53}, + [2192] = {.lex_state = 15}, [2193] = {.lex_state = 15}, [2194] = {.lex_state = 15}, [2195] = {.lex_state = 15}, @@ -20120,26 +20058,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2201] = {.lex_state = 15}, [2202] = {.lex_state = 15}, [2203] = {.lex_state = 15}, - [2204] = {.lex_state = 73}, + [2204] = {.lex_state = 15}, [2205] = {.lex_state = 15}, - [2206] = {.lex_state = 15}, + [2206] = {.lex_state = 53}, [2207] = {.lex_state = 15}, [2208] = {.lex_state = 15}, [2209] = {.lex_state = 15}, - [2210] = {.lex_state = 15}, - [2211] = {.lex_state = 15}, - [2212] = {.lex_state = 15}, - [2213] = {.lex_state = 15}, - [2214] = {.lex_state = 53}, - [2215] = {.lex_state = 53}, - [2216] = {.lex_state = 53}, - [2217] = {.lex_state = 53}, - [2218] = {.lex_state = 81}, - [2219] = {.lex_state = 15}, - [2220] = {.lex_state = 81}, + [2210] = {.lex_state = 53}, + [2211] = {.lex_state = 53}, + [2212] = {.lex_state = 53}, + [2213] = {.lex_state = 53}, + [2214] = {.lex_state = 15}, + [2215] = {.lex_state = 15}, + [2216] = {.lex_state = 15}, + [2217] = {.lex_state = 15}, + [2218] = {.lex_state = 15}, + [2219] = {.lex_state = 73}, + [2220] = {.lex_state = 15}, [2221] = {.lex_state = 15}, [2222] = {.lex_state = 15}, - [2223] = {.lex_state = 15}, + [2223] = {.lex_state = 79}, [2224] = {.lex_state = 15}, [2225] = {.lex_state = 73}, [2226] = {.lex_state = 15}, @@ -20154,7 +20092,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2235] = {.lex_state = 15}, [2236] = {.lex_state = 15}, [2237] = {.lex_state = 15}, - [2238] = {.lex_state = 15}, + [2238] = {.lex_state = 79}, [2239] = {.lex_state = 15}, [2240] = {.lex_state = 15}, [2241] = {.lex_state = 15}, @@ -20174,7 +20112,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2255] = {.lex_state = 15}, [2256] = {.lex_state = 15}, [2257] = {.lex_state = 15}, - [2258] = {.lex_state = 81}, + [2258] = {.lex_state = 15}, [2259] = {.lex_state = 15}, [2260] = {.lex_state = 15}, [2261] = {.lex_state = 15}, @@ -20188,7 +20126,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2269] = {.lex_state = 15}, [2270] = {.lex_state = 15}, [2271] = {.lex_state = 15}, - [2272] = {.lex_state = 15}, + [2272] = {.lex_state = 79}, [2273] = {.lex_state = 15}, [2274] = {.lex_state = 15}, [2275] = {.lex_state = 15}, @@ -20203,57 +20141,57 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2284] = {.lex_state = 15}, [2285] = {.lex_state = 15}, [2286] = {.lex_state = 15}, - [2287] = {.lex_state = 81}, - [2288] = {.lex_state = 15}, + [2287] = {.lex_state = 79}, + [2288] = {.lex_state = 31}, [2289] = {.lex_state = 15}, [2290] = {.lex_state = 15}, - [2291] = {.lex_state = 15}, - [2292] = {.lex_state = 63}, + [2291] = {.lex_state = 63}, + [2292] = {.lex_state = 79}, [2293] = {.lex_state = 15}, [2294] = {.lex_state = 15}, [2295] = {.lex_state = 15}, - [2296] = {.lex_state = 15}, - [2297] = {.lex_state = 63}, - [2298] = {.lex_state = 15}, - [2299] = {.lex_state = 50}, - [2300] = {.lex_state = 50}, - [2301] = {.lex_state = 81}, - [2302] = {.lex_state = 15}, + [2296] = {.lex_state = 63}, + [2297] = {.lex_state = 50}, + [2298] = {.lex_state = 50}, + [2299] = {.lex_state = 15}, + [2300] = {.lex_state = 15}, + [2301] = {.lex_state = 15}, + [2302] = {.lex_state = 79}, [2303] = {.lex_state = 15}, - [2304] = {.lex_state = 28}, - [2305] = {.lex_state = 28}, - [2306] = {.lex_state = 73}, - [2307] = {.lex_state = 73}, - [2308] = {.lex_state = 28}, + [2304] = {.lex_state = 15}, + [2305] = {.lex_state = 15}, + [2306] = {.lex_state = 15}, + [2307] = {.lex_state = 15}, + [2308] = {.lex_state = 73}, [2309] = {.lex_state = 28}, [2310] = {.lex_state = 28}, [2311] = {.lex_state = 28}, [2312] = {.lex_state = 28}, [2313] = {.lex_state = 28}, [2314] = {.lex_state = 28}, - [2315] = {.lex_state = 28}, + [2315] = {.lex_state = 73}, [2316] = {.lex_state = 28}, - [2317] = {.lex_state = 15}, - [2318] = {.lex_state = 73}, + [2317] = {.lex_state = 28}, + [2318] = {.lex_state = 15}, [2319] = {.lex_state = 28}, [2320] = {.lex_state = 73}, - [2321] = {.lex_state = 73}, - [2322] = {.lex_state = 73}, - [2323] = {.lex_state = 73}, - [2324] = {.lex_state = 73}, + [2321] = {.lex_state = 28}, + [2322] = {.lex_state = 28}, + [2323] = {.lex_state = 28}, + [2324] = {.lex_state = 28}, [2325] = {.lex_state = 73}, - [2326] = {.lex_state = 73}, - [2327] = {.lex_state = 73}, - [2328] = {.lex_state = 28}, - [2329] = {.lex_state = 28}, + [2326] = {.lex_state = 28}, + [2327] = {.lex_state = 28}, + [2328] = {.lex_state = 73}, + [2329] = {.lex_state = 73}, [2330] = {.lex_state = 73}, - [2331] = {.lex_state = 15}, - [2332] = {.lex_state = 15}, + [2331] = {.lex_state = 73}, + [2332] = {.lex_state = 73}, [2333] = {.lex_state = 73}, - [2334] = {.lex_state = 73}, + [2334] = {.lex_state = 15}, [2335] = {.lex_state = 73}, [2336] = {.lex_state = 73}, - [2337] = {.lex_state = 22}, + [2337] = {.lex_state = 73}, [2338] = {.lex_state = 73}, [2339] = {.lex_state = 73}, [2340] = {.lex_state = 73}, @@ -20268,28 +20206,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2349] = {.lex_state = 73}, [2350] = {.lex_state = 73}, [2351] = {.lex_state = 73}, - [2352] = {.lex_state = 73}, + [2352] = {.lex_state = 15}, [2353] = {.lex_state = 73}, [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 = 73}, [2362] = {.lex_state = 73}, [2363] = {.lex_state = 73}, [2364] = {.lex_state = 73}, - [2365] = {.lex_state = 28}, - [2366] = {.lex_state = 73}, - [2367] = {.lex_state = 73}, - [2368] = {.lex_state = 22}, + [2365] = {.lex_state = 22}, + [2366] = {.lex_state = 15}, + [2367] = {.lex_state = 15}, + [2368] = {.lex_state = 73}, [2369] = {.lex_state = 73}, [2370] = {.lex_state = 73}, [2371] = {.lex_state = 73}, [2372] = {.lex_state = 73}, - [2373] = {.lex_state = 15}, + [2373] = {.lex_state = 73}, [2374] = {.lex_state = 73}, [2375] = {.lex_state = 73}, [2376] = {.lex_state = 73}, @@ -20300,11 +20238,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2381] = {.lex_state = 73}, [2382] = {.lex_state = 73}, [2383] = {.lex_state = 73}, - [2384] = {.lex_state = 73}, + [2384] = {.lex_state = 28}, [2385] = {.lex_state = 73}, [2386] = {.lex_state = 73}, [2387] = {.lex_state = 73}, - [2388] = {.lex_state = 28}, + [2388] = {.lex_state = 73}, [2389] = {.lex_state = 73}, [2390] = {.lex_state = 73}, [2391] = {.lex_state = 73}, @@ -20317,12 +20255,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2398] = {.lex_state = 73}, [2399] = {.lex_state = 73}, [2400] = {.lex_state = 73}, - [2401] = {.lex_state = 73}, + [2401] = {.lex_state = 28}, [2402] = {.lex_state = 73}, [2403] = {.lex_state = 73}, [2404] = {.lex_state = 73}, [2405] = {.lex_state = 73}, - [2406] = {.lex_state = 15}, + [2406] = {.lex_state = 73}, [2407] = {.lex_state = 73}, [2408] = {.lex_state = 73}, [2409] = {.lex_state = 73}, @@ -20342,7 +20280,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2423] = {.lex_state = 73}, [2424] = {.lex_state = 73}, [2425] = {.lex_state = 73}, - [2426] = {.lex_state = 73}, + [2426] = {.lex_state = 22}, [2427] = {.lex_state = 73}, [2428] = {.lex_state = 73}, [2429] = {.lex_state = 73}, @@ -20350,102 +20288,102 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2431] = {.lex_state = 73}, [2432] = {.lex_state = 73}, [2433] = {.lex_state = 28}, - [2434] = {.lex_state = 73}, + [2434] = {.lex_state = 28}, [2435] = {.lex_state = 73}, [2436] = {.lex_state = 73}, - [2437] = {.lex_state = 73}, - [2438] = {.lex_state = 73}, + [2437] = {.lex_state = 28}, + [2438] = {.lex_state = 28}, [2439] = {.lex_state = 73}, [2440] = {.lex_state = 73}, [2441] = {.lex_state = 73}, [2442] = {.lex_state = 73}, - [2443] = {.lex_state = 28}, + [2443] = {.lex_state = 73}, [2444] = {.lex_state = 73}, - [2445] = {.lex_state = 28}, + [2445] = {.lex_state = 73}, [2446] = {.lex_state = 73}, - [2447] = {.lex_state = 73}, - [2448] = {.lex_state = 73}, + [2447] = {.lex_state = 28}, + [2448] = {.lex_state = 28}, [2449] = {.lex_state = 73}, [2450] = {.lex_state = 28}, [2451] = {.lex_state = 28}, - [2452] = {.lex_state = 28}, - [2453] = {.lex_state = 73}, - [2454] = {.lex_state = 73}, - [2455] = {.lex_state = 28}, - [2456] = {.lex_state = 28}, - [2457] = {.lex_state = 28}, - [2458] = {.lex_state = 28}, + [2452] = {.lex_state = 73}, + [2453] = {.lex_state = 28}, + [2454] = {.lex_state = 28}, + [2455] = {.lex_state = 73}, + [2456] = {.lex_state = 73}, + [2457] = {.lex_state = 73}, + [2458] = {.lex_state = 73}, [2459] = {.lex_state = 73}, - [2460] = {.lex_state = 28}, - [2461] = {.lex_state = 28}, + [2460] = {.lex_state = 73}, + [2461] = {.lex_state = 73}, [2462] = {.lex_state = 73}, - [2463] = {.lex_state = 73}, - [2464] = {.lex_state = 73}, - [2465] = {.lex_state = 28}, + [2463] = {.lex_state = 28}, + [2464] = {.lex_state = 28}, + [2465] = {.lex_state = 73}, [2466] = {.lex_state = 28}, - [2467] = {.lex_state = 28}, + [2467] = {.lex_state = 73}, [2468] = {.lex_state = 28}, - [2469] = {.lex_state = 28}, + [2469] = {.lex_state = 73}, [2470] = {.lex_state = 28}, - [2471] = {.lex_state = 28}, + [2471] = {.lex_state = 73}, [2472] = {.lex_state = 28}, [2473] = {.lex_state = 28}, [2474] = {.lex_state = 28}, - [2475] = {.lex_state = 28}, - [2476] = {.lex_state = 28}, + [2475] = {.lex_state = 75}, + [2476] = {.lex_state = 75}, [2477] = {.lex_state = 28}, - [2478] = {.lex_state = 28}, + [2478] = {.lex_state = 75}, [2479] = {.lex_state = 28}, - [2480] = {.lex_state = 75}, + [2480] = {.lex_state = 28}, [2481] = {.lex_state = 28}, [2482] = {.lex_state = 28}, [2483] = {.lex_state = 28}, - [2484] = {.lex_state = 75}, - [2485] = {.lex_state = 28}, - [2486] = {.lex_state = 28}, - [2487] = {.lex_state = 28}, + [2484] = {.lex_state = 28}, + [2485] = {.lex_state = 33}, + [2486] = {.lex_state = 33}, + [2487] = {.lex_state = 33}, [2488] = {.lex_state = 28}, - [2489] = {.lex_state = 75}, - [2490] = {.lex_state = 28}, + [2489] = {.lex_state = 28}, + [2490] = {.lex_state = 75}, [2491] = {.lex_state = 28}, - [2492] = {.lex_state = 28}, - [2493] = {.lex_state = 75}, - [2494] = {.lex_state = 75}, - [2495] = {.lex_state = 28}, + [2492] = {.lex_state = 75}, + [2493] = {.lex_state = 28}, + [2494] = {.lex_state = 28}, + [2495] = {.lex_state = 75}, [2496] = {.lex_state = 28}, [2497] = {.lex_state = 28}, - [2498] = {.lex_state = 75}, - [2499] = {.lex_state = 28}, + [2498] = {.lex_state = 28}, + [2499] = {.lex_state = 75}, [2500] = {.lex_state = 28}, - [2501] = {.lex_state = 75}, + [2501] = {.lex_state = 28}, [2502] = {.lex_state = 28}, - [2503] = {.lex_state = 28}, - [2504] = {.lex_state = 28}, + [2503] = {.lex_state = 75}, + [2504] = {.lex_state = 75}, [2505] = {.lex_state = 28}, [2506] = {.lex_state = 28}, [2507] = {.lex_state = 28}, - [2508] = {.lex_state = 28}, + [2508] = {.lex_state = 75}, [2509] = {.lex_state = 28}, - [2510] = {.lex_state = 33}, + [2510] = {.lex_state = 28}, [2511] = {.lex_state = 28}, [2512] = {.lex_state = 28}, - [2513] = {.lex_state = 33}, - [2514] = {.lex_state = 33}, + [2513] = {.lex_state = 28}, + [2514] = {.lex_state = 28}, [2515] = {.lex_state = 28}, - [2516] = {.lex_state = 75}, - [2517] = {.lex_state = 75}, + [2516] = {.lex_state = 28}, + [2517] = {.lex_state = 28}, [2518] = {.lex_state = 28}, [2519] = {.lex_state = 28}, - [2520] = {.lex_state = 28}, - [2521] = {.lex_state = 75}, + [2520] = {.lex_state = 73}, + [2521] = {.lex_state = 28}, [2522] = {.lex_state = 28}, [2523] = {.lex_state = 28}, [2524] = {.lex_state = 28}, - [2525] = {.lex_state = 73}, + [2525] = {.lex_state = 28}, [2526] = {.lex_state = 28}, [2527] = {.lex_state = 28}, [2528] = {.lex_state = 28}, - [2529] = {.lex_state = 28}, + [2529] = {.lex_state = 73}, [2530] = {.lex_state = 28}, [2531] = {.lex_state = 28}, [2532] = {.lex_state = 28}, @@ -20456,7 +20394,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2537] = {.lex_state = 28}, [2538] = {.lex_state = 28}, [2539] = {.lex_state = 28}, - [2540] = {.lex_state = 28}, + [2540] = {.lex_state = 75}, [2541] = {.lex_state = 28}, [2542] = {.lex_state = 28}, [2543] = {.lex_state = 28}, @@ -20465,21 +20403,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2546] = {.lex_state = 28}, [2547] = {.lex_state = 28}, [2548] = {.lex_state = 28}, - [2549] = {.lex_state = 28}, + [2549] = {.lex_state = 31}, [2550] = {.lex_state = 28}, [2551] = {.lex_state = 28}, - [2552] = {.lex_state = 73}, + [2552] = {.lex_state = 28}, [2553] = {.lex_state = 28}, - [2554] = {.lex_state = 75}, + [2554] = {.lex_state = 28}, [2555] = {.lex_state = 28}, [2556] = {.lex_state = 28}, [2557] = {.lex_state = 28}, [2558] = {.lex_state = 28}, - [2559] = {.lex_state = 75}, + [2559] = {.lex_state = 28}, [2560] = {.lex_state = 28}, - [2561] = {.lex_state = 31}, + [2561] = {.lex_state = 28}, [2562] = {.lex_state = 28}, - [2563] = {.lex_state = 28}, + [2563] = {.lex_state = 75}, [2564] = {.lex_state = 28}, [2565] = {.lex_state = 28}, [2566] = {.lex_state = 28}, @@ -20509,49 +20447,49 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2590] = {.lex_state = 28}, [2591] = {.lex_state = 28}, [2592] = {.lex_state = 28}, - [2593] = {.lex_state = 73}, - [2594] = {.lex_state = 73}, - [2595] = {.lex_state = 75}, - [2596] = {.lex_state = 75}, - [2597] = {.lex_state = 73}, - [2598] = {.lex_state = 75}, + [2593] = {.lex_state = 28}, + [2594] = {.lex_state = 28}, + [2595] = {.lex_state = 28}, + [2596] = {.lex_state = 28}, + [2597] = {.lex_state = 75}, + [2598] = {.lex_state = 73}, [2599] = {.lex_state = 75}, - [2600] = {.lex_state = 75}, - [2601] = {.lex_state = 75}, + [2600] = {.lex_state = 73}, + [2601] = {.lex_state = 73}, [2602] = {.lex_state = 75}, - [2603] = {.lex_state = 75}, - [2604] = {.lex_state = 65}, - [2605] = {.lex_state = 73}, + [2603] = {.lex_state = 73}, + [2604] = {.lex_state = 75}, + [2605] = {.lex_state = 65}, [2606] = {.lex_state = 65}, - [2607] = {.lex_state = 75}, - [2608] = {.lex_state = 75}, - [2609] = {.lex_state = 73}, - [2610] = {.lex_state = 73}, - [2611] = {.lex_state = 55}, - [2612] = {.lex_state = 75}, - [2613] = {.lex_state = 55}, + [2607] = {.lex_state = 73}, + [2608] = {.lex_state = 73}, + [2609] = {.lex_state = 75}, + [2610] = {.lex_state = 75}, + [2611] = {.lex_state = 73}, + [2612] = {.lex_state = 73}, + [2613] = {.lex_state = 75}, [2614] = {.lex_state = 73}, [2615] = {.lex_state = 73}, - [2616] = {.lex_state = 73}, - [2617] = {.lex_state = 73}, - [2618] = {.lex_state = 73}, - [2619] = {.lex_state = 73}, + [2616] = {.lex_state = 75}, + [2617] = {.lex_state = 55}, + [2618] = {.lex_state = 75}, + [2619] = {.lex_state = 55}, [2620] = {.lex_state = 73}, [2621] = {.lex_state = 73}, [2622] = {.lex_state = 73}, - [2623] = {.lex_state = 73}, + [2623] = {.lex_state = 75}, [2624] = {.lex_state = 73}, [2625] = {.lex_state = 73}, [2626] = {.lex_state = 73}, - [2627] = {.lex_state = 75}, + [2627] = {.lex_state = 73}, [2628] = {.lex_state = 73}, - [2629] = {.lex_state = 77}, - [2630] = {.lex_state = 73}, - [2631] = {.lex_state = 73}, - [2632] = {.lex_state = 73}, - [2633] = {.lex_state = 73}, + [2629] = {.lex_state = 73}, + [2630] = {.lex_state = 75}, + [2631] = {.lex_state = 77}, + [2632] = {.lex_state = 75}, + [2633] = {.lex_state = 75}, [2634] = {.lex_state = 73}, - [2635] = {.lex_state = 75}, + [2635] = {.lex_state = 73}, [2636] = {.lex_state = 73}, [2637] = {.lex_state = 73}, [2638] = {.lex_state = 73}, @@ -20567,63 +20505,63 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2648] = {.lex_state = 73}, [2649] = {.lex_state = 75}, [2650] = {.lex_state = 73}, - [2651] = {.lex_state = 75}, + [2651] = {.lex_state = 73}, [2652] = {.lex_state = 73}, [2653] = {.lex_state = 73}, [2654] = {.lex_state = 73}, - [2655] = {.lex_state = 75}, - [2656] = {.lex_state = 73}, - [2657] = {.lex_state = 75}, + [2655] = {.lex_state = 73}, + [2656] = {.lex_state = 75}, + [2657] = {.lex_state = 73}, [2658] = {.lex_state = 73}, [2659] = {.lex_state = 73}, [2660] = {.lex_state = 73}, [2661] = {.lex_state = 73}, - [2662] = {.lex_state = 73}, + [2662] = {.lex_state = 75}, [2663] = {.lex_state = 73}, - [2664] = {.lex_state = 75}, + [2664] = {.lex_state = 73}, [2665] = {.lex_state = 73}, [2666] = {.lex_state = 73}, [2667] = {.lex_state = 75}, [2668] = {.lex_state = 73}, - [2669] = {.lex_state = 75}, + [2669] = {.lex_state = 73}, [2670] = {.lex_state = 75}, [2671] = {.lex_state = 75}, - [2672] = {.lex_state = 75}, + [2672] = {.lex_state = 73}, [2673] = {.lex_state = 73}, - [2674] = {.lex_state = 75}, - [2675] = {.lex_state = 73}, - [2676] = {.lex_state = 85}, - [2677] = {.lex_state = 73}, - [2678] = {.lex_state = 73}, - [2679] = {.lex_state = 85}, + [2674] = {.lex_state = 73}, + [2675] = {.lex_state = 75}, + [2676] = {.lex_state = 73}, + [2677] = {.lex_state = 75}, + [2678] = {.lex_state = 75}, + [2679] = {.lex_state = 73}, [2680] = {.lex_state = 73}, [2681] = {.lex_state = 73}, - [2682] = {.lex_state = 75}, - [2683] = {.lex_state = 77}, - [2684] = {.lex_state = 75}, - [2685] = {.lex_state = 73}, + [2682] = {.lex_state = 73}, + [2683] = {.lex_state = 73}, + [2684] = {.lex_state = 73}, + [2685] = {.lex_state = 77}, [2686] = {.lex_state = 75}, [2687] = {.lex_state = 75}, [2688] = {.lex_state = 73}, [2689] = {.lex_state = 75}, [2690] = {.lex_state = 75}, - [2691] = {.lex_state = 73}, - [2692] = {.lex_state = 75}, + [2691] = {.lex_state = 83}, + [2692] = {.lex_state = 73}, [2693] = {.lex_state = 75}, [2694] = {.lex_state = 75}, [2695] = {.lex_state = 73}, - [2696] = {.lex_state = 75}, + [2696] = {.lex_state = 73}, [2697] = {.lex_state = 75}, [2698] = {.lex_state = 75}, - [2699] = {.lex_state = 75}, + [2699] = {.lex_state = 83}, [2700] = {.lex_state = 75}, [2701] = {.lex_state = 75}, - [2702] = {.lex_state = 73}, + [2702] = {.lex_state = 75}, [2703] = {.lex_state = 73}, - [2704] = {.lex_state = 75}, + [2704] = {.lex_state = 83}, [2705] = {.lex_state = 75}, - [2706] = {.lex_state = 73}, - [2707] = {.lex_state = 73}, + [2706] = {.lex_state = 83}, + [2707] = {.lex_state = 75}, [2708] = {.lex_state = 75}, [2709] = {.lex_state = 75}, [2710] = {.lex_state = 75}, @@ -20631,229 +20569,229 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2712] = {.lex_state = 75}, [2713] = {.lex_state = 75}, [2714] = {.lex_state = 75}, - [2715] = {.lex_state = 85}, + [2715] = {.lex_state = 75}, [2716] = {.lex_state = 75}, [2717] = {.lex_state = 75}, [2718] = {.lex_state = 75}, [2719] = {.lex_state = 73}, [2720] = {.lex_state = 75}, [2721] = {.lex_state = 75}, - [2722] = {.lex_state = 75}, + [2722] = {.lex_state = 83}, [2723] = {.lex_state = 75}, [2724] = {.lex_state = 75}, - [2725] = {.lex_state = 75}, - [2726] = {.lex_state = 75}, + [2725] = {.lex_state = 83}, + [2726] = {.lex_state = 73}, [2727] = {.lex_state = 75}, - [2728] = {.lex_state = 73}, + [2728] = {.lex_state = 75}, [2729] = {.lex_state = 75}, [2730] = {.lex_state = 73}, [2731] = {.lex_state = 75}, - [2732] = {.lex_state = 57}, - [2733] = {.lex_state = 57}, - [2734] = {.lex_state = 75}, + [2732] = {.lex_state = 83}, + [2733] = {.lex_state = 75}, + [2734] = {.lex_state = 73}, [2735] = {.lex_state = 73}, [2736] = {.lex_state = 73}, - [2737] = {.lex_state = 75}, + [2737] = {.lex_state = 73}, [2738] = {.lex_state = 75}, - [2739] = {.lex_state = 75}, + [2739] = {.lex_state = 73}, [2740] = {.lex_state = 75}, [2741] = {.lex_state = 75}, - [2742] = {.lex_state = 85}, - [2743] = {.lex_state = 73}, + [2742] = {.lex_state = 83}, + [2743] = {.lex_state = 75}, [2744] = {.lex_state = 75}, - [2745] = {.lex_state = 85}, - [2746] = {.lex_state = 75}, + [2745] = {.lex_state = 75}, + [2746] = {.lex_state = 73}, [2747] = {.lex_state = 75}, [2748] = {.lex_state = 75}, - [2749] = {.lex_state = 75}, + [2749] = {.lex_state = 73}, [2750] = {.lex_state = 75}, - [2751] = {.lex_state = 73}, + [2751] = {.lex_state = 75}, [2752] = {.lex_state = 75}, - [2753] = {.lex_state = 85}, + [2753] = {.lex_state = 75}, [2754] = {.lex_state = 75}, - [2755] = {.lex_state = 85}, - [2756] = {.lex_state = 67}, - [2757] = {.lex_state = 73}, - [2758] = {.lex_state = 67}, - [2759] = {.lex_state = 75}, + [2755] = {.lex_state = 73}, + [2756] = {.lex_state = 75}, + [2757] = {.lex_state = 75}, + [2758] = {.lex_state = 75}, + [2759] = {.lex_state = 73}, [2760] = {.lex_state = 75}, - [2761] = {.lex_state = 75}, - [2762] = {.lex_state = 73}, - [2763] = {.lex_state = 73}, + [2761] = {.lex_state = 83}, + [2762] = {.lex_state = 75}, + [2763] = {.lex_state = 75}, [2764] = {.lex_state = 75}, [2765] = {.lex_state = 75}, [2766] = {.lex_state = 75}, - [2767] = {.lex_state = 75}, + [2767] = {.lex_state = 73}, [2768] = {.lex_state = 75}, - [2769] = {.lex_state = 73}, + [2769] = {.lex_state = 75}, [2770] = {.lex_state = 75}, [2771] = {.lex_state = 75}, [2772] = {.lex_state = 75}, [2773] = {.lex_state = 75}, [2774] = {.lex_state = 75}, [2775] = {.lex_state = 75}, - [2776] = {.lex_state = 73}, + [2776] = {.lex_state = 75}, [2777] = {.lex_state = 73}, [2778] = {.lex_state = 75}, - [2779] = {.lex_state = 75}, + [2779] = {.lex_state = 73}, [2780] = {.lex_state = 75}, [2781] = {.lex_state = 75}, - [2782] = {.lex_state = 75}, + [2782] = {.lex_state = 73}, [2783] = {.lex_state = 73}, - [2784] = {.lex_state = 85}, - [2785] = {.lex_state = 73}, - [2786] = {.lex_state = 77}, - [2787] = {.lex_state = 75}, - [2788] = {.lex_state = 73}, - [2789] = {.lex_state = 75}, - [2790] = {.lex_state = 75}, - [2791] = {.lex_state = 75}, + [2784] = {.lex_state = 83}, + [2785] = {.lex_state = 57}, + [2786] = {.lex_state = 73}, + [2787] = {.lex_state = 73}, + [2788] = {.lex_state = 75}, + [2789] = {.lex_state = 73}, + [2790] = {.lex_state = 77}, + [2791] = {.lex_state = 73}, [2792] = {.lex_state = 73}, - [2793] = {.lex_state = 73}, - [2794] = {.lex_state = 73}, - [2795] = {.lex_state = 75}, - [2796] = {.lex_state = 75}, + [2793] = {.lex_state = 57}, + [2794] = {.lex_state = 83}, + [2795] = {.lex_state = 77}, + [2796] = {.lex_state = 73}, [2797] = {.lex_state = 73}, - [2798] = {.lex_state = 73}, - [2799] = {.lex_state = 85}, + [2798] = {.lex_state = 75}, + [2799] = {.lex_state = 73}, [2800] = {.lex_state = 75}, [2801] = {.lex_state = 75}, - [2802] = {.lex_state = 77}, - [2803] = {.lex_state = 75}, + [2802] = {.lex_state = 75}, + [2803] = {.lex_state = 73}, [2804] = {.lex_state = 75}, [2805] = {.lex_state = 73}, - [2806] = {.lex_state = 73}, + [2806] = {.lex_state = 75}, [2807] = {.lex_state = 75}, - [2808] = {.lex_state = 73}, - [2809] = {.lex_state = 85}, - [2810] = {.lex_state = 73}, + [2808] = {.lex_state = 83}, + [2809] = {.lex_state = 73}, + [2810] = {.lex_state = 75}, [2811] = {.lex_state = 73}, - [2812] = {.lex_state = 73}, - [2813] = {.lex_state = 73}, - [2814] = {.lex_state = 75}, + [2812] = {.lex_state = 75}, + [2813] = {.lex_state = 75}, + [2814] = {.lex_state = 73}, [2815] = {.lex_state = 73}, - [2816] = {.lex_state = 73}, + [2816] = {.lex_state = 75}, [2817] = {.lex_state = 75}, - [2818] = {.lex_state = 85}, + [2818] = {.lex_state = 73}, [2819] = {.lex_state = 73}, [2820] = {.lex_state = 73}, - [2821] = {.lex_state = 73}, - [2822] = {.lex_state = 75}, - [2823] = {.lex_state = 85}, - [2824] = {.lex_state = 75}, - [2825] = {.lex_state = 75}, + [2821] = {.lex_state = 75}, + [2822] = {.lex_state = 73}, + [2823] = {.lex_state = 73}, + [2824] = {.lex_state = 73}, + [2825] = {.lex_state = 73}, [2826] = {.lex_state = 75}, - [2827] = {.lex_state = 75}, - [2828] = {.lex_state = 85}, - [2829] = {.lex_state = 73}, + [2827] = {.lex_state = 67}, + [2828] = {.lex_state = 73}, + [2829] = {.lex_state = 75}, [2830] = {.lex_state = 73}, - [2831] = {.lex_state = 73}, - [2832] = {.lex_state = 73}, - [2833] = {.lex_state = 73}, - [2834] = {.lex_state = 73}, - [2835] = {.lex_state = 73}, - [2836] = {.lex_state = 75}, - [2837] = {.lex_state = 75}, - [2838] = {.lex_state = 73}, + [2831] = {.lex_state = 75}, + [2832] = {.lex_state = 75}, + [2833] = {.lex_state = 75}, + [2834] = {.lex_state = 75}, + [2835] = {.lex_state = 75}, + [2836] = {.lex_state = 83}, + [2837] = {.lex_state = 73}, + [2838] = {.lex_state = 75}, [2839] = {.lex_state = 73}, - [2840] = {.lex_state = 73}, + [2840] = {.lex_state = 75}, [2841] = {.lex_state = 75}, - [2842] = {.lex_state = 73}, - [2843] = {.lex_state = 75}, - [2844] = {.lex_state = 75}, - [2845] = {.lex_state = 75}, - [2846] = {.lex_state = 75}, - [2847] = {.lex_state = 73}, - [2848] = {.lex_state = 73}, - [2849] = {.lex_state = 85}, + [2842] = {.lex_state = 75}, + [2843] = {.lex_state = 73}, + [2844] = {.lex_state = 83}, + [2845] = {.lex_state = 83}, + [2846] = {.lex_state = 73}, + [2847] = {.lex_state = 75}, + [2848] = {.lex_state = 75}, + [2849] = {.lex_state = 75}, [2850] = {.lex_state = 75}, - [2851] = {.lex_state = 73}, - [2852] = {.lex_state = 85}, - [2853] = {.lex_state = 85}, + [2851] = {.lex_state = 75}, + [2852] = {.lex_state = 73}, + [2853] = {.lex_state = 73}, [2854] = {.lex_state = 73}, - [2855] = {.lex_state = 73}, + [2855] = {.lex_state = 67}, [2856] = {.lex_state = 73}, - [2857] = {.lex_state = 77}, + [2857] = {.lex_state = 75}, [2858] = {.lex_state = 73}, - [2859] = {.lex_state = 73}, + [2859] = {.lex_state = 83}, [2860] = {.lex_state = 73}, [2861] = {.lex_state = 73}, - [2862] = {.lex_state = 83}, + [2862] = {.lex_state = 81}, [2863] = {.lex_state = 73}, [2864] = {.lex_state = 73}, [2865] = {.lex_state = 73}, - [2866] = {.lex_state = 83}, - [2867] = {.lex_state = 77}, + [2866] = {.lex_state = 73}, + [2867] = {.lex_state = 73}, [2868] = {.lex_state = 73}, [2869] = {.lex_state = 73}, - [2870] = {.lex_state = 73}, + [2870] = {.lex_state = 77}, [2871] = {.lex_state = 73}, [2872] = {.lex_state = 73}, [2873] = {.lex_state = 73}, - [2874] = {.lex_state = 83}, - [2875] = {.lex_state = 73}, - [2876] = {.lex_state = 83}, + [2874] = {.lex_state = 73}, + [2875] = {.lex_state = 81}, + [2876] = {.lex_state = 73}, [2877] = {.lex_state = 73}, - [2878] = {.lex_state = 73}, + [2878] = {.lex_state = 81}, [2879] = {.lex_state = 73}, [2880] = {.lex_state = 73}, [2881] = {.lex_state = 73}, [2882] = {.lex_state = 73}, [2883] = {.lex_state = 73}, [2884] = {.lex_state = 77}, - [2885] = {.lex_state = 77}, - [2886] = {.lex_state = 77}, - [2887] = {.lex_state = 85}, - [2888] = {.lex_state = 85}, - [2889] = {.lex_state = 73}, + [2885] = {.lex_state = 73}, + [2886] = {.lex_state = 81}, + [2887] = {.lex_state = 73}, + [2888] = {.lex_state = 77}, + [2889] = {.lex_state = 77}, [2890] = {.lex_state = 77}, [2891] = {.lex_state = 77}, [2892] = {.lex_state = 73}, [2893] = {.lex_state = 77}, - [2894] = {.lex_state = 77}, - [2895] = {.lex_state = 33}, + [2894] = {.lex_state = 73}, + [2895] = {.lex_state = 73}, [2896] = {.lex_state = 73}, - [2897] = {.lex_state = 77}, - [2898] = {.lex_state = 33}, + [2897] = {.lex_state = 83}, + [2898] = {.lex_state = 73}, [2899] = {.lex_state = 73}, - [2900] = {.lex_state = 73}, + [2900] = {.lex_state = 83}, [2901] = {.lex_state = 73}, - [2902] = {.lex_state = 77}, + [2902] = {.lex_state = 73}, [2903] = {.lex_state = 77}, - [2904] = {.lex_state = 77}, + [2904] = {.lex_state = 73}, [2905] = {.lex_state = 77}, - [2906] = {.lex_state = 73}, - [2907] = {.lex_state = 77}, - [2908] = {.lex_state = 77}, + [2906] = {.lex_state = 77}, + [2907] = {.lex_state = 33}, + [2908] = {.lex_state = 33}, [2909] = {.lex_state = 77}, - [2910] = {.lex_state = 77}, + [2910] = {.lex_state = 73}, [2911] = {.lex_state = 77}, [2912] = {.lex_state = 33}, [2913] = {.lex_state = 77}, [2914] = {.lex_state = 77}, [2915] = {.lex_state = 77}, [2916] = {.lex_state = 73}, - [2917] = {.lex_state = 73}, + [2917] = {.lex_state = 77}, [2918] = {.lex_state = 77}, - [2919] = {.lex_state = 77}, - [2920] = {.lex_state = 73}, - [2921] = {.lex_state = 77}, + [2919] = {.lex_state = 83}, + [2920] = {.lex_state = 77}, + [2921] = {.lex_state = 83}, [2922] = {.lex_state = 77}, - [2923] = {.lex_state = 85}, - [2924] = {.lex_state = 85}, + [2923] = {.lex_state = 77}, + [2924] = {.lex_state = 77}, [2925] = {.lex_state = 73}, - [2926] = {.lex_state = 77}, + [2926] = {.lex_state = 73}, [2927] = {.lex_state = 77}, [2928] = {.lex_state = 77}, - [2929] = {.lex_state = 73}, - [2930] = {.lex_state = 73}, + [2929] = {.lex_state = 77}, + [2930] = {.lex_state = 77}, [2931] = {.lex_state = 73}, [2932] = {.lex_state = 77}, [2933] = {.lex_state = 77}, - [2934] = {.lex_state = 73}, - [2935] = {.lex_state = 73}, - [2936] = {.lex_state = 73}, - [2937] = {.lex_state = 73}, + [2934] = {.lex_state = 77}, + [2935] = {.lex_state = 77}, + [2936] = {.lex_state = 77}, + [2937] = {.lex_state = 77}, [2938] = {.lex_state = 73}, [2939] = {.lex_state = 73}, [2940] = {.lex_state = 73}, @@ -20922,421 +20860,421 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3003] = {.lex_state = 73}, [3004] = {.lex_state = 73}, [3005] = {.lex_state = 73}, - [3006] = {.lex_state = 85}, - [3007] = {.lex_state = 85}, - [3008] = {.lex_state = 85}, - [3009] = {.lex_state = 85}, - [3010] = {.lex_state = 85}, - [3011] = {.lex_state = 85}, - [3012] = {.lex_state = 85}, - [3013] = {.lex_state = 85}, - [3014] = {.lex_state = 85}, - [3015] = {.lex_state = 85}, - [3016] = {.lex_state = 85}, - [3017] = {.lex_state = 85}, - [3018] = {.lex_state = 85}, - [3019] = {.lex_state = 85}, - [3020] = {.lex_state = 85}, - [3021] = {.lex_state = 85}, - [3022] = {.lex_state = 85}, - [3023] = {.lex_state = 85}, - [3024] = {.lex_state = 85}, - [3025] = {.lex_state = 85}, - [3026] = {.lex_state = 85}, - [3027] = {.lex_state = 85}, - [3028] = {.lex_state = 85}, - [3029] = {.lex_state = 85}, - [3030] = {.lex_state = 85}, - [3031] = {.lex_state = 85}, - [3032] = {.lex_state = 85}, - [3033] = {.lex_state = 85}, - [3034] = {.lex_state = 85}, - [3035] = {.lex_state = 85}, - [3036] = {.lex_state = 85}, - [3037] = {.lex_state = 85}, - [3038] = {.lex_state = 85}, - [3039] = {.lex_state = 85}, - [3040] = {.lex_state = 85}, - [3041] = {.lex_state = 85}, - [3042] = {.lex_state = 85}, - [3043] = {.lex_state = 85}, - [3044] = {.lex_state = 85}, - [3045] = {.lex_state = 85}, - [3046] = {.lex_state = 85}, - [3047] = {.lex_state = 85}, - [3048] = {.lex_state = 85}, - [3049] = {.lex_state = 85}, - [3050] = {.lex_state = 85}, - [3051] = {.lex_state = 85}, - [3052] = {.lex_state = 85}, - [3053] = {.lex_state = 85}, - [3054] = {.lex_state = 85}, - [3055] = {.lex_state = 85}, - [3056] = {.lex_state = 85}, - [3057] = {.lex_state = 85}, - [3058] = {.lex_state = 85}, - [3059] = {.lex_state = 85}, - [3060] = {.lex_state = 85}, - [3061] = {.lex_state = 85}, - [3062] = {.lex_state = 85}, - [3063] = {.lex_state = 85}, - [3064] = {.lex_state = 85}, - [3065] = {.lex_state = 85}, - [3066] = {.lex_state = 85}, - [3067] = {.lex_state = 85}, - [3068] = {.lex_state = 85}, - [3069] = {.lex_state = 85}, - [3070] = {.lex_state = 85}, - [3071] = {.lex_state = 85}, - [3072] = {.lex_state = 85}, - [3073] = {.lex_state = 85}, - [3074] = {.lex_state = 85}, - [3075] = {.lex_state = 85}, - [3076] = {.lex_state = 85}, - [3077] = {.lex_state = 85}, - [3078] = {.lex_state = 85}, - [3079] = {.lex_state = 85}, - [3080] = {.lex_state = 85}, - [3081] = {.lex_state = 85}, - [3082] = {.lex_state = 85}, - [3083] = {.lex_state = 85}, - [3084] = {.lex_state = 85}, - [3085] = {.lex_state = 85}, - [3086] = {.lex_state = 85}, - [3087] = {.lex_state = 85}, - [3088] = {.lex_state = 85}, - [3089] = {.lex_state = 85}, - [3090] = {.lex_state = 85}, - [3091] = {.lex_state = 85}, - [3092] = {.lex_state = 85}, - [3093] = {.lex_state = 85}, - [3094] = {.lex_state = 85}, - [3095] = {.lex_state = 85}, - [3096] = {.lex_state = 85}, - [3097] = {.lex_state = 85}, - [3098] = {.lex_state = 85}, - [3099] = {.lex_state = 85}, - [3100] = {.lex_state = 85}, - [3101] = {.lex_state = 85}, - [3102] = {.lex_state = 85}, - [3103] = {.lex_state = 85}, - [3104] = {.lex_state = 85}, - [3105] = {.lex_state = 85}, - [3106] = {.lex_state = 85}, - [3107] = {.lex_state = 85}, - [3108] = {.lex_state = 85}, - [3109] = {.lex_state = 85}, - [3110] = {.lex_state = 85}, - [3111] = {.lex_state = 85}, - [3112] = {.lex_state = 85}, - [3113] = {.lex_state = 85}, - [3114] = {.lex_state = 85}, - [3115] = {.lex_state = 85}, - [3116] = {.lex_state = 85}, - [3117] = {.lex_state = 85}, - [3118] = {.lex_state = 85}, - [3119] = {.lex_state = 85}, - [3120] = {.lex_state = 85}, - [3121] = {.lex_state = 85}, - [3122] = {.lex_state = 85}, - [3123] = {.lex_state = 85}, - [3124] = {.lex_state = 85}, - [3125] = {.lex_state = 85}, - [3126] = {.lex_state = 85}, - [3127] = {.lex_state = 85}, - [3128] = {.lex_state = 85}, - [3129] = {.lex_state = 85}, - [3130] = {.lex_state = 85}, - [3131] = {.lex_state = 85}, - [3132] = {.lex_state = 85}, - [3133] = {.lex_state = 85}, - [3134] = {.lex_state = 85}, - [3135] = {.lex_state = 85}, - [3136] = {.lex_state = 85}, - [3137] = {.lex_state = 85}, - [3138] = {.lex_state = 85}, - [3139] = {.lex_state = 85}, - [3140] = {.lex_state = 85}, - [3141] = {.lex_state = 85}, - [3142] = {.lex_state = 85}, - [3143] = {.lex_state = 85}, - [3144] = {.lex_state = 85}, - [3145] = {.lex_state = 85}, - [3146] = {.lex_state = 85}, - [3147] = {.lex_state = 85}, - [3148] = {.lex_state = 85}, - [3149] = {.lex_state = 85}, - [3150] = {.lex_state = 85}, - [3151] = {.lex_state = 85}, - [3152] = {.lex_state = 85}, - [3153] = {.lex_state = 85}, - [3154] = {.lex_state = 85}, - [3155] = {.lex_state = 85}, - [3156] = {.lex_state = 85}, - [3157] = {.lex_state = 85}, - [3158] = {.lex_state = 85}, - [3159] = {.lex_state = 85}, - [3160] = {.lex_state = 85}, - [3161] = {.lex_state = 85}, - [3162] = {.lex_state = 85}, - [3163] = {.lex_state = 85}, - [3164] = {.lex_state = 85}, - [3165] = {.lex_state = 85}, - [3166] = {.lex_state = 85}, - [3167] = {.lex_state = 85}, - [3168] = {.lex_state = 85}, - [3169] = {.lex_state = 85}, - [3170] = {.lex_state = 85}, - [3171] = {.lex_state = 85}, - [3172] = {.lex_state = 85}, - [3173] = {.lex_state = 85}, - [3174] = {.lex_state = 85}, - [3175] = {.lex_state = 85}, - [3176] = {.lex_state = 85}, - [3177] = {.lex_state = 85}, - [3178] = {.lex_state = 85}, - [3179] = {.lex_state = 85}, - [3180] = {.lex_state = 85}, - [3181] = {.lex_state = 85}, - [3182] = {.lex_state = 85}, - [3183] = {.lex_state = 85}, - [3184] = {.lex_state = 85}, - [3185] = {.lex_state = 85}, - [3186] = {.lex_state = 85}, - [3187] = {.lex_state = 85}, - [3188] = {.lex_state = 85}, - [3189] = {.lex_state = 85}, - [3190] = {.lex_state = 85}, - [3191] = {.lex_state = 85}, - [3192] = {.lex_state = 85}, - [3193] = {.lex_state = 85}, - [3194] = {.lex_state = 85}, - [3195] = {.lex_state = 85}, - [3196] = {.lex_state = 85}, - [3197] = {.lex_state = 85}, - [3198] = {.lex_state = 85}, - [3199] = {.lex_state = 85}, - [3200] = {.lex_state = 85}, - [3201] = {.lex_state = 85}, - [3202] = {.lex_state = 85}, - [3203] = {.lex_state = 85}, - [3204] = {.lex_state = 85}, - [3205] = {.lex_state = 85}, - [3206] = {.lex_state = 85}, - [3207] = {.lex_state = 85}, - [3208] = {.lex_state = 85}, - [3209] = {.lex_state = 85}, - [3210] = {.lex_state = 85}, - [3211] = {.lex_state = 85}, - [3212] = {.lex_state = 85}, - [3213] = {.lex_state = 85}, - [3214] = {.lex_state = 85}, - [3215] = {.lex_state = 85}, - [3216] = {.lex_state = 85}, - [3217] = {.lex_state = 85}, - [3218] = {.lex_state = 85}, - [3219] = {.lex_state = 85}, - [3220] = {.lex_state = 85}, - [3221] = {.lex_state = 85}, - [3222] = {.lex_state = 85}, - [3223] = {.lex_state = 85}, - [3224] = {.lex_state = 85}, - [3225] = {.lex_state = 85}, - [3226] = {.lex_state = 85}, - [3227] = {.lex_state = 85}, - [3228] = {.lex_state = 85}, - [3229] = {.lex_state = 85}, - [3230] = {.lex_state = 85}, - [3231] = {.lex_state = 85}, - [3232] = {.lex_state = 85}, - [3233] = {.lex_state = 85}, - [3234] = {.lex_state = 85}, - [3235] = {.lex_state = 85}, - [3236] = {.lex_state = 85}, - [3237] = {.lex_state = 85}, - [3238] = {.lex_state = 85}, - [3239] = {.lex_state = 85}, - [3240] = {.lex_state = 85}, - [3241] = {.lex_state = 85}, - [3242] = {.lex_state = 85}, - [3243] = {.lex_state = 85}, - [3244] = {.lex_state = 85}, - [3245] = {.lex_state = 85}, - [3246] = {.lex_state = 85}, - [3247] = {.lex_state = 85}, - [3248] = {.lex_state = 85}, - [3249] = {.lex_state = 85}, - [3250] = {.lex_state = 85}, - [3251] = {.lex_state = 85}, - [3252] = {.lex_state = 85}, - [3253] = {.lex_state = 85}, - [3254] = {.lex_state = 85}, - [3255] = {.lex_state = 85}, - [3256] = {.lex_state = 85}, - [3257] = {.lex_state = 85}, - [3258] = {.lex_state = 85}, - [3259] = {.lex_state = 85}, - [3260] = {.lex_state = 85}, - [3261] = {.lex_state = 85}, - [3262] = {.lex_state = 85}, - [3263] = {.lex_state = 85}, - [3264] = {.lex_state = 85}, - [3265] = {.lex_state = 85}, - [3266] = {.lex_state = 85}, - [3267] = {.lex_state = 85}, - [3268] = {.lex_state = 85}, - [3269] = {.lex_state = 85}, - [3270] = {.lex_state = 85}, - [3271] = {.lex_state = 85}, - [3272] = {.lex_state = 85}, - [3273] = {.lex_state = 85}, - [3274] = {.lex_state = 85}, - [3275] = {.lex_state = 85}, - [3276] = {.lex_state = 85}, - [3277] = {.lex_state = 85}, - [3278] = {.lex_state = 85}, - [3279] = {.lex_state = 85}, - [3280] = {.lex_state = 85}, - [3281] = {.lex_state = 85}, - [3282] = {.lex_state = 85}, - [3283] = {.lex_state = 85}, - [3284] = {.lex_state = 85}, - [3285] = {.lex_state = 85}, - [3286] = {.lex_state = 85}, - [3287] = {.lex_state = 85}, - [3288] = {.lex_state = 85}, - [3289] = {.lex_state = 85}, - [3290] = {.lex_state = 85}, - [3291] = {.lex_state = 85}, - [3292] = {.lex_state = 85}, - [3293] = {.lex_state = 85}, - [3294] = {.lex_state = 85}, - [3295] = {.lex_state = 85}, - [3296] = {.lex_state = 85}, - [3297] = {.lex_state = 85}, - [3298] = {.lex_state = 85}, - [3299] = {.lex_state = 85}, - [3300] = {.lex_state = 85}, - [3301] = {.lex_state = 85}, - [3302] = {.lex_state = 85}, - [3303] = {.lex_state = 85}, - [3304] = {.lex_state = 85}, - [3305] = {.lex_state = 85}, - [3306] = {.lex_state = 85}, - [3307] = {.lex_state = 85}, - [3308] = {.lex_state = 85}, - [3309] = {.lex_state = 85}, - [3310] = {.lex_state = 85}, - [3311] = {.lex_state = 85}, - [3312] = {.lex_state = 85}, - [3313] = {.lex_state = 85}, - [3314] = {.lex_state = 89}, - [3315] = {.lex_state = 85}, - [3316] = {.lex_state = 85}, - [3317] = {.lex_state = 89}, - [3318] = {.lex_state = 85}, - [3319] = {.lex_state = 85}, - [3320] = {.lex_state = 85}, - [3321] = {.lex_state = 85}, - [3322] = {.lex_state = 85}, - [3323] = {.lex_state = 85}, - [3324] = {.lex_state = 85}, - [3325] = {.lex_state = 85}, - [3326] = {.lex_state = 85}, - [3327] = {.lex_state = 87}, - [3328] = {.lex_state = 33}, - [3329] = {.lex_state = 33}, - [3330] = {.lex_state = 33}, - [3331] = {.lex_state = 33}, + [3006] = {.lex_state = 73}, + [3007] = {.lex_state = 73}, + [3008] = {.lex_state = 73}, + [3009] = {.lex_state = 73}, + [3010] = {.lex_state = 83}, + [3011] = {.lex_state = 83}, + [3012] = {.lex_state = 83}, + [3013] = {.lex_state = 83}, + [3014] = {.lex_state = 83}, + [3015] = {.lex_state = 83}, + [3016] = {.lex_state = 83}, + [3017] = {.lex_state = 83}, + [3018] = {.lex_state = 83}, + [3019] = {.lex_state = 83}, + [3020] = {.lex_state = 83}, + [3021] = {.lex_state = 83}, + [3022] = {.lex_state = 83}, + [3023] = {.lex_state = 83}, + [3024] = {.lex_state = 83}, + [3025] = {.lex_state = 83}, + [3026] = {.lex_state = 83}, + [3027] = {.lex_state = 83}, + [3028] = {.lex_state = 83}, + [3029] = {.lex_state = 83}, + [3030] = {.lex_state = 83}, + [3031] = {.lex_state = 83}, + [3032] = {.lex_state = 83}, + [3033] = {.lex_state = 83}, + [3034] = {.lex_state = 83}, + [3035] = {.lex_state = 83}, + [3036] = {.lex_state = 83}, + [3037] = {.lex_state = 83}, + [3038] = {.lex_state = 83}, + [3039] = {.lex_state = 83}, + [3040] = {.lex_state = 83}, + [3041] = {.lex_state = 83}, + [3042] = {.lex_state = 83}, + [3043] = {.lex_state = 83}, + [3044] = {.lex_state = 83}, + [3045] = {.lex_state = 83}, + [3046] = {.lex_state = 83}, + [3047] = {.lex_state = 83}, + [3048] = {.lex_state = 83}, + [3049] = {.lex_state = 83}, + [3050] = {.lex_state = 83}, + [3051] = {.lex_state = 83}, + [3052] = {.lex_state = 83}, + [3053] = {.lex_state = 83}, + [3054] = {.lex_state = 83}, + [3055] = {.lex_state = 83}, + [3056] = {.lex_state = 83}, + [3057] = {.lex_state = 83}, + [3058] = {.lex_state = 83}, + [3059] = {.lex_state = 83}, + [3060] = {.lex_state = 83}, + [3061] = {.lex_state = 83}, + [3062] = {.lex_state = 83}, + [3063] = {.lex_state = 83}, + [3064] = {.lex_state = 83}, + [3065] = {.lex_state = 83}, + [3066] = {.lex_state = 83}, + [3067] = {.lex_state = 83}, + [3068] = {.lex_state = 83}, + [3069] = {.lex_state = 83}, + [3070] = {.lex_state = 83}, + [3071] = {.lex_state = 83}, + [3072] = {.lex_state = 83}, + [3073] = {.lex_state = 83}, + [3074] = {.lex_state = 83}, + [3075] = {.lex_state = 83}, + [3076] = {.lex_state = 83}, + [3077] = {.lex_state = 83}, + [3078] = {.lex_state = 83}, + [3079] = {.lex_state = 83}, + [3080] = {.lex_state = 83}, + [3081] = {.lex_state = 83}, + [3082] = {.lex_state = 83}, + [3083] = {.lex_state = 83}, + [3084] = {.lex_state = 83}, + [3085] = {.lex_state = 83}, + [3086] = {.lex_state = 83}, + [3087] = {.lex_state = 83}, + [3088] = {.lex_state = 83}, + [3089] = {.lex_state = 83}, + [3090] = {.lex_state = 83}, + [3091] = {.lex_state = 83}, + [3092] = {.lex_state = 83}, + [3093] = {.lex_state = 83}, + [3094] = {.lex_state = 83}, + [3095] = {.lex_state = 83}, + [3096] = {.lex_state = 83}, + [3097] = {.lex_state = 83}, + [3098] = {.lex_state = 83}, + [3099] = {.lex_state = 83}, + [3100] = {.lex_state = 83}, + [3101] = {.lex_state = 83}, + [3102] = {.lex_state = 83}, + [3103] = {.lex_state = 83}, + [3104] = {.lex_state = 83}, + [3105] = {.lex_state = 83}, + [3106] = {.lex_state = 83}, + [3107] = {.lex_state = 83}, + [3108] = {.lex_state = 83}, + [3109] = {.lex_state = 83}, + [3110] = {.lex_state = 83}, + [3111] = {.lex_state = 83}, + [3112] = {.lex_state = 83}, + [3113] = {.lex_state = 83}, + [3114] = {.lex_state = 83}, + [3115] = {.lex_state = 83}, + [3116] = {.lex_state = 83}, + [3117] = {.lex_state = 83}, + [3118] = {.lex_state = 83}, + [3119] = {.lex_state = 83}, + [3120] = {.lex_state = 83}, + [3121] = {.lex_state = 83}, + [3122] = {.lex_state = 83}, + [3123] = {.lex_state = 83}, + [3124] = {.lex_state = 83}, + [3125] = {.lex_state = 83}, + [3126] = {.lex_state = 83}, + [3127] = {.lex_state = 83}, + [3128] = {.lex_state = 83}, + [3129] = {.lex_state = 83}, + [3130] = {.lex_state = 83}, + [3131] = {.lex_state = 83}, + [3132] = {.lex_state = 83}, + [3133] = {.lex_state = 83}, + [3134] = {.lex_state = 83}, + [3135] = {.lex_state = 83}, + [3136] = {.lex_state = 83}, + [3137] = {.lex_state = 83}, + [3138] = {.lex_state = 83}, + [3139] = {.lex_state = 83}, + [3140] = {.lex_state = 83}, + [3141] = {.lex_state = 83}, + [3142] = {.lex_state = 83}, + [3143] = {.lex_state = 83}, + [3144] = {.lex_state = 83}, + [3145] = {.lex_state = 83}, + [3146] = {.lex_state = 83}, + [3147] = {.lex_state = 83}, + [3148] = {.lex_state = 83}, + [3149] = {.lex_state = 83}, + [3150] = {.lex_state = 83}, + [3151] = {.lex_state = 83}, + [3152] = {.lex_state = 83}, + [3153] = {.lex_state = 83}, + [3154] = {.lex_state = 83}, + [3155] = {.lex_state = 83}, + [3156] = {.lex_state = 83}, + [3157] = {.lex_state = 83}, + [3158] = {.lex_state = 83}, + [3159] = {.lex_state = 83}, + [3160] = {.lex_state = 83}, + [3161] = {.lex_state = 83}, + [3162] = {.lex_state = 83}, + [3163] = {.lex_state = 83}, + [3164] = {.lex_state = 83}, + [3165] = {.lex_state = 83}, + [3166] = {.lex_state = 83}, + [3167] = {.lex_state = 83}, + [3168] = {.lex_state = 83}, + [3169] = {.lex_state = 83}, + [3170] = {.lex_state = 83}, + [3171] = {.lex_state = 83}, + [3172] = {.lex_state = 83}, + [3173] = {.lex_state = 83}, + [3174] = {.lex_state = 83}, + [3175] = {.lex_state = 83}, + [3176] = {.lex_state = 83}, + [3177] = {.lex_state = 83}, + [3178] = {.lex_state = 83}, + [3179] = {.lex_state = 83}, + [3180] = {.lex_state = 83}, + [3181] = {.lex_state = 83}, + [3182] = {.lex_state = 83}, + [3183] = {.lex_state = 83}, + [3184] = {.lex_state = 83}, + [3185] = {.lex_state = 83}, + [3186] = {.lex_state = 83}, + [3187] = {.lex_state = 83}, + [3188] = {.lex_state = 83}, + [3189] = {.lex_state = 83}, + [3190] = {.lex_state = 83}, + [3191] = {.lex_state = 83}, + [3192] = {.lex_state = 83}, + [3193] = {.lex_state = 83}, + [3194] = {.lex_state = 83}, + [3195] = {.lex_state = 83}, + [3196] = {.lex_state = 83}, + [3197] = {.lex_state = 83}, + [3198] = {.lex_state = 83}, + [3199] = {.lex_state = 83}, + [3200] = {.lex_state = 83}, + [3201] = {.lex_state = 83}, + [3202] = {.lex_state = 83}, + [3203] = {.lex_state = 83}, + [3204] = {.lex_state = 83}, + [3205] = {.lex_state = 83}, + [3206] = {.lex_state = 83}, + [3207] = {.lex_state = 83}, + [3208] = {.lex_state = 83}, + [3209] = {.lex_state = 83}, + [3210] = {.lex_state = 83}, + [3211] = {.lex_state = 83}, + [3212] = {.lex_state = 83}, + [3213] = {.lex_state = 83}, + [3214] = {.lex_state = 83}, + [3215] = {.lex_state = 83}, + [3216] = {.lex_state = 83}, + [3217] = {.lex_state = 83}, + [3218] = {.lex_state = 83}, + [3219] = {.lex_state = 83}, + [3220] = {.lex_state = 83}, + [3221] = {.lex_state = 83}, + [3222] = {.lex_state = 83}, + [3223] = {.lex_state = 83}, + [3224] = {.lex_state = 83}, + [3225] = {.lex_state = 83}, + [3226] = {.lex_state = 83}, + [3227] = {.lex_state = 83}, + [3228] = {.lex_state = 83}, + [3229] = {.lex_state = 83}, + [3230] = {.lex_state = 83}, + [3231] = {.lex_state = 83}, + [3232] = {.lex_state = 83}, + [3233] = {.lex_state = 83}, + [3234] = {.lex_state = 83}, + [3235] = {.lex_state = 83}, + [3236] = {.lex_state = 83}, + [3237] = {.lex_state = 83}, + [3238] = {.lex_state = 83}, + [3239] = {.lex_state = 83}, + [3240] = {.lex_state = 83}, + [3241] = {.lex_state = 83}, + [3242] = {.lex_state = 83}, + [3243] = {.lex_state = 83}, + [3244] = {.lex_state = 83}, + [3245] = {.lex_state = 83}, + [3246] = {.lex_state = 83}, + [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 = 83}, + [3264] = {.lex_state = 83}, + [3265] = {.lex_state = 83}, + [3266] = {.lex_state = 83}, + [3267] = {.lex_state = 83}, + [3268] = {.lex_state = 83}, + [3269] = {.lex_state = 83}, + [3270] = {.lex_state = 83}, + [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 = 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 = 83}, + [3297] = {.lex_state = 83}, + [3298] = {.lex_state = 83}, + [3299] = {.lex_state = 83}, + [3300] = {.lex_state = 83}, + [3301] = {.lex_state = 83}, + [3302] = {.lex_state = 83}, + [3303] = {.lex_state = 83}, + [3304] = {.lex_state = 83}, + [3305] = {.lex_state = 83}, + [3306] = {.lex_state = 83}, + [3307] = {.lex_state = 83}, + [3308] = {.lex_state = 83}, + [3309] = {.lex_state = 83}, + [3310] = {.lex_state = 83}, + [3311] = {.lex_state = 83}, + [3312] = {.lex_state = 83}, + [3313] = {.lex_state = 83}, + [3314] = {.lex_state = 83}, + [3315] = {.lex_state = 83}, + [3316] = {.lex_state = 87}, + [3317] = {.lex_state = 83}, + [3318] = {.lex_state = 83}, + [3319] = {.lex_state = 87}, + [3320] = {.lex_state = 83}, + [3321] = {.lex_state = 83}, + [3322] = {.lex_state = 83}, + [3323] = {.lex_state = 83}, + [3324] = {.lex_state = 83}, + [3325] = {.lex_state = 83}, + [3326] = {.lex_state = 83}, + [3327] = {.lex_state = 83}, + [3328] = {.lex_state = 83}, + [3329] = {.lex_state = 83}, + [3330] = {.lex_state = 83}, + [3331] = {.lex_state = 85}, [3332] = {.lex_state = 33}, - [3333] = {.lex_state = 245}, - [3334] = {.lex_state = 85}, - [3335] = {.lex_state = 85}, - [3336] = {.lex_state = 85}, - [3337] = {.lex_state = 86}, - [3338] = {.lex_state = 86}, - [3339] = {.lex_state = 86}, - [3340] = {.lex_state = 85}, - [3341] = {.lex_state = 89}, - [3342] = {.lex_state = 85}, - [3343] = {.lex_state = 41}, - [3344] = {.lex_state = 34}, - [3345] = {.lex_state = 41}, - [3346] = {.lex_state = 34}, + [3333] = {.lex_state = 33}, + [3334] = {.lex_state = 33}, + [3335] = {.lex_state = 33}, + [3336] = {.lex_state = 33}, + [3337] = {.lex_state = 245}, + [3338] = {.lex_state = 84}, + [3339] = {.lex_state = 83}, + [3340] = {.lex_state = 83}, + [3341] = {.lex_state = 83}, + [3342] = {.lex_state = 83}, + [3343] = {.lex_state = 84}, + [3344] = {.lex_state = 83}, + [3345] = {.lex_state = 87}, + [3346] = {.lex_state = 84}, [3347] = {.lex_state = 41}, - [3348] = {.lex_state = 85}, + [3348] = {.lex_state = 83}, [3349] = {.lex_state = 41}, - [3350] = {.lex_state = 41}, - [3351] = {.lex_state = 41}, + [3350] = {.lex_state = 34}, + [3351] = {.lex_state = 34}, [3352] = {.lex_state = 41}, [3353] = {.lex_state = 41}, [3354] = {.lex_state = 41}, - [3355] = {.lex_state = 41}, - [3356] = {.lex_state = 85}, + [3355] = {.lex_state = 83}, + [3356] = {.lex_state = 41}, [3357] = {.lex_state = 41}, - [3358] = {.lex_state = 85}, + [3358] = {.lex_state = 41}, [3359] = {.lex_state = 41}, - [3360] = {.lex_state = 85}, - [3361] = {.lex_state = 87}, - [3362] = {.lex_state = 87}, - [3363] = {.lex_state = 87}, - [3364] = {.lex_state = 86}, - [3365] = {.lex_state = 87}, - [3366] = {.lex_state = 41}, - [3367] = {.lex_state = 87}, - [3368] = {.lex_state = 87}, - [3369] = {.lex_state = 87}, - [3370] = {.lex_state = 87}, - [3371] = {.lex_state = 35}, - [3372] = {.lex_state = 87}, - [3373] = {.lex_state = 87}, - [3374] = {.lex_state = 87}, - [3375] = {.lex_state = 87}, - [3376] = {.lex_state = 87}, - [3377] = {.lex_state = 86}, - [3378] = {.lex_state = 87}, - [3379] = {.lex_state = 87}, - [3380] = {.lex_state = 87}, + [3360] = {.lex_state = 41}, + [3361] = {.lex_state = 41}, + [3362] = {.lex_state = 85}, + [3363] = {.lex_state = 83}, + [3364] = {.lex_state = 41}, + [3365] = {.lex_state = 85}, + [3366] = {.lex_state = 85}, + [3367] = {.lex_state = 83}, + [3368] = {.lex_state = 85}, + [3369] = {.lex_state = 85}, + [3370] = {.lex_state = 84}, + [3371] = {.lex_state = 84}, + [3372] = {.lex_state = 85}, + [3373] = {.lex_state = 85}, + [3374] = {.lex_state = 84}, + [3375] = {.lex_state = 84}, + [3376] = {.lex_state = 85}, + [3377] = {.lex_state = 34}, + [3378] = {.lex_state = 85}, + [3379] = {.lex_state = 85}, + [3380] = {.lex_state = 41}, [3381] = {.lex_state = 41}, - [3382] = {.lex_state = 87}, - [3383] = {.lex_state = 41}, - [3384] = {.lex_state = 87}, - [3385] = {.lex_state = 87}, - [3386] = {.lex_state = 87}, - [3387] = {.lex_state = 87}, - [3388] = {.lex_state = 87}, - [3389] = {.lex_state = 87}, - [3390] = {.lex_state = 35}, - [3391] = {.lex_state = 87}, - [3392] = {.lex_state = 86}, - [3393] = {.lex_state = 87}, - [3394] = {.lex_state = 86}, - [3395] = {.lex_state = 41}, - [3396] = {.lex_state = 87}, - [3397] = {.lex_state = 87}, - [3398] = {.lex_state = 86}, - [3399] = {.lex_state = 87}, - [3400] = {.lex_state = 86}, - [3401] = {.lex_state = 34}, - [3402] = {.lex_state = 86}, - [3403] = {.lex_state = 87}, - [3404] = {.lex_state = 35}, - [3405] = {.lex_state = 86}, - [3406] = {.lex_state = 87}, - [3407] = {.lex_state = 35}, - [3408] = {.lex_state = 87}, - [3409] = {.lex_state = 87}, - [3410] = {.lex_state = 34}, - [3411] = {.lex_state = 86}, - [3412] = {.lex_state = 34}, - [3413] = {.lex_state = 86}, + [3382] = {.lex_state = 84}, + [3383] = {.lex_state = 85}, + [3384] = {.lex_state = 85}, + [3385] = {.lex_state = 85}, + [3386] = {.lex_state = 35}, + [3387] = {.lex_state = 85}, + [3388] = {.lex_state = 35}, + [3389] = {.lex_state = 85}, + [3390] = {.lex_state = 85}, + [3391] = {.lex_state = 85}, + [3392] = {.lex_state = 85}, + [3393] = {.lex_state = 85}, + [3394] = {.lex_state = 85}, + [3395] = {.lex_state = 85}, + [3396] = {.lex_state = 85}, + [3397] = {.lex_state = 35}, + [3398] = {.lex_state = 85}, + [3399] = {.lex_state = 85}, + [3400] = {.lex_state = 35}, + [3401] = {.lex_state = 84}, + [3402] = {.lex_state = 85}, + [3403] = {.lex_state = 85}, + [3404] = {.lex_state = 85}, + [3405] = {.lex_state = 84}, + [3406] = {.lex_state = 84}, + [3407] = {.lex_state = 85}, + [3408] = {.lex_state = 85}, + [3409] = {.lex_state = 85}, + [3410] = {.lex_state = 41}, + [3411] = {.lex_state = 85}, + [3412] = {.lex_state = 85}, + [3413] = {.lex_state = 41}, [3414] = {.lex_state = 34}, - [3415] = {.lex_state = 34}, - [3416] = {.lex_state = 86}, - [3417] = {.lex_state = 86}, + [3415] = {.lex_state = 84}, + [3416] = {.lex_state = 84}, + [3417] = {.lex_state = 34}, [3418] = {.lex_state = 34}, - [3419] = {.lex_state = 34}, - [3420] = {.lex_state = 34}, + [3419] = {.lex_state = 84}, + [3420] = {.lex_state = 84}, [3421] = {.lex_state = 34}, [3422] = {.lex_state = 34}, [3423] = {.lex_state = 34}, @@ -21353,704 +21291,704 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3434] = {.lex_state = 34}, [3435] = {.lex_state = 34}, [3436] = {.lex_state = 34}, - [3437] = {.lex_state = 34}, + [3437] = {.lex_state = 84}, [3438] = {.lex_state = 34}, [3439] = {.lex_state = 34}, [3440] = {.lex_state = 34}, - [3441] = {.lex_state = 86}, + [3441] = {.lex_state = 34}, [3442] = {.lex_state = 34}, - [3443] = {.lex_state = 87}, - [3444] = {.lex_state = 87}, - [3445] = {.lex_state = 35}, - [3446] = {.lex_state = 83}, - [3447] = {.lex_state = 83}, - [3448] = {.lex_state = 34}, - [3449] = {.lex_state = 83}, - [3450] = {.lex_state = 34}, - [3451] = {.lex_state = 83}, - [3452] = {.lex_state = 83}, - [3453] = {.lex_state = 83}, - [3454] = {.lex_state = 83}, - [3455] = {.lex_state = 83}, - [3456] = {.lex_state = 83}, - [3457] = {.lex_state = 83}, - [3458] = {.lex_state = 34}, - [3459] = {.lex_state = 83}, - [3460] = {.lex_state = 83}, - [3461] = {.lex_state = 87}, - [3462] = {.lex_state = 34}, - [3463] = {.lex_state = 87}, - [3464] = {.lex_state = 34}, - [3465] = {.lex_state = 34}, - [3466] = {.lex_state = 87}, - [3467] = {.lex_state = 34}, + [3443] = {.lex_state = 34}, + [3444] = {.lex_state = 34}, + [3445] = {.lex_state = 34}, + [3446] = {.lex_state = 34}, + [3447] = {.lex_state = 85}, + [3448] = {.lex_state = 85}, + [3449] = {.lex_state = 35}, + [3450] = {.lex_state = 85}, + [3451] = {.lex_state = 81}, + [3452] = {.lex_state = 34}, + [3453] = {.lex_state = 85}, + [3454] = {.lex_state = 81}, + [3455] = {.lex_state = 81}, + [3456] = {.lex_state = 34}, + [3457] = {.lex_state = 81}, + [3458] = {.lex_state = 81}, + [3459] = {.lex_state = 81}, + [3460] = {.lex_state = 34}, + [3461] = {.lex_state = 81}, + [3462] = {.lex_state = 81}, + [3463] = {.lex_state = 34}, + [3464] = {.lex_state = 81}, + [3465] = {.lex_state = 81}, + [3466] = {.lex_state = 81}, + [3467] = {.lex_state = 81}, [3468] = {.lex_state = 24}, [3469] = {.lex_state = 24}, - [3470] = {.lex_state = 24}, - [3471] = {.lex_state = 87}, - [3472] = {.lex_state = 87}, - [3473] = {.lex_state = 34}, - [3474] = {.lex_state = 34}, + [3470] = {.lex_state = 34}, + [3471] = {.lex_state = 24}, + [3472] = {.lex_state = 34}, + [3473] = {.lex_state = 24}, + [3474] = {.lex_state = 85}, [3475] = {.lex_state = 34}, [3476] = {.lex_state = 34}, - [3477] = {.lex_state = 34}, + [3477] = {.lex_state = 85}, [3478] = {.lex_state = 34}, [3479] = {.lex_state = 34}, [3480] = {.lex_state = 34}, [3481] = {.lex_state = 34}, - [3482] = {.lex_state = 24}, - [3483] = {.lex_state = 83}, - [3484] = {.lex_state = 254}, - [3485] = {.lex_state = 254}, - [3486] = {.lex_state = 254}, - [3487] = {.lex_state = 83}, - [3488] = {.lex_state = 87}, - [3489] = {.lex_state = 254}, - [3490] = {.lex_state = 83}, + [3482] = {.lex_state = 34}, + [3483] = {.lex_state = 34}, + [3484] = {.lex_state = 34}, + [3485] = {.lex_state = 85}, + [3486] = {.lex_state = 34}, + [3487] = {.lex_state = 81}, + [3488] = {.lex_state = 81}, + [3489] = {.lex_state = 81}, + [3490] = {.lex_state = 254}, [3491] = {.lex_state = 254}, - [3492] = {.lex_state = 254}, - [3493] = {.lex_state = 83}, - [3494] = {.lex_state = 254}, - [3495] = {.lex_state = 83}, - [3496] = {.lex_state = 87}, + [3492] = {.lex_state = 81}, + [3493] = {.lex_state = 81}, + [3494] = {.lex_state = 81}, + [3495] = {.lex_state = 254}, + [3496] = {.lex_state = 254}, [3497] = {.lex_state = 254}, - [3498] = {.lex_state = 254}, - [3499] = {.lex_state = 83}, - [3500] = {.lex_state = 87}, - [3501] = {.lex_state = 254}, - [3502] = {.lex_state = 254}, - [3503] = {.lex_state = 83}, + [3498] = {.lex_state = 81}, + [3499] = {.lex_state = 81}, + [3500] = {.lex_state = 254}, + [3501] = {.lex_state = 81}, + [3502] = {.lex_state = 81}, + [3503] = {.lex_state = 254}, [3504] = {.lex_state = 254}, - [3505] = {.lex_state = 254}, - [3506] = {.lex_state = 83}, - [3507] = {.lex_state = 83}, - [3508] = {.lex_state = 254}, - [3509] = {.lex_state = 83}, - [3510] = {.lex_state = 34}, - [3511] = {.lex_state = 83}, + [3505] = {.lex_state = 81}, + [3506] = {.lex_state = 254}, + [3507] = {.lex_state = 24}, + [3508] = {.lex_state = 81}, + [3509] = {.lex_state = 254}, + [3510] = {.lex_state = 24}, + [3511] = {.lex_state = 81}, [3512] = {.lex_state = 254}, - [3513] = {.lex_state = 83}, - [3514] = {.lex_state = 83}, - [3515] = {.lex_state = 83}, + [3513] = {.lex_state = 254}, + [3514] = {.lex_state = 81}, + [3515] = {.lex_state = 254}, [3516] = {.lex_state = 254}, - [3517] = {.lex_state = 87}, - [3518] = {.lex_state = 254}, - [3519] = {.lex_state = 254}, + [3517] = {.lex_state = 85}, + [3518] = {.lex_state = 34}, + [3519] = {.lex_state = 81}, [3520] = {.lex_state = 254}, - [3521] = {.lex_state = 83}, - [3522] = {.lex_state = 83}, + [3521] = {.lex_state = 81}, + [3522] = {.lex_state = 81}, [3523] = {.lex_state = 254}, - [3524] = {.lex_state = 254}, - [3525] = {.lex_state = 83}, - [3526] = {.lex_state = 24}, + [3524] = {.lex_state = 85}, + [3525] = {.lex_state = 254}, + [3526] = {.lex_state = 254}, [3527] = {.lex_state = 254}, - [3528] = {.lex_state = 83}, - [3529] = {.lex_state = 83}, - [3530] = {.lex_state = 83}, - [3531] = {.lex_state = 254}, - [3532] = {.lex_state = 254}, - [3533] = {.lex_state = 24}, - [3534] = {.lex_state = 83}, - [3535] = {.lex_state = 83}, - [3536] = {.lex_state = 83}, - [3537] = {.lex_state = 83}, - [3538] = {.lex_state = 254}, - [3539] = {.lex_state = 94}, - [3540] = {.lex_state = 90}, - [3541] = {.lex_state = 254}, - [3542] = {.lex_state = 90}, - [3543] = {.lex_state = 90}, - [3544] = {.lex_state = 94}, - [3545] = {.lex_state = 90}, - [3546] = {.lex_state = 90}, - [3547] = {.lex_state = 94}, - [3548] = {.lex_state = 90}, - [3549] = {.lex_state = 94}, - [3550] = {.lex_state = 254}, - [3551] = {.lex_state = 94}, - [3552] = {.lex_state = 94}, - [3553] = {.lex_state = 90}, - [3554] = {.lex_state = 90}, - [3555] = {.lex_state = 94}, - [3556] = {.lex_state = 90}, - [3557] = {.lex_state = 94}, - [3558] = {.lex_state = 94}, - [3559] = {.lex_state = 254}, - [3560] = {.lex_state = 90}, + [3528] = {.lex_state = 81}, + [3529] = {.lex_state = 81}, + [3530] = {.lex_state = 254}, + [3531] = {.lex_state = 81}, + [3532] = {.lex_state = 81}, + [3533] = {.lex_state = 81}, + [3534] = {.lex_state = 254}, + [3535] = {.lex_state = 254}, + [3536] = {.lex_state = 254}, + [3537] = {.lex_state = 254}, + [3538] = {.lex_state = 81}, + [3539] = {.lex_state = 254}, + [3540] = {.lex_state = 85}, + [3541] = {.lex_state = 81}, + [3542] = {.lex_state = 85}, + [3543] = {.lex_state = 88}, + [3544] = {.lex_state = 88}, + [3545] = {.lex_state = 88}, + [3546] = {.lex_state = 254}, + [3547] = {.lex_state = 0}, + [3548] = {.lex_state = 93}, + [3549] = {.lex_state = 88}, + [3550] = {.lex_state = 88}, + [3551] = {.lex_state = 93}, + [3552] = {.lex_state = 93}, + [3553] = {.lex_state = 254}, + [3554] = {.lex_state = 254}, + [3555] = {.lex_state = 93}, + [3556] = {.lex_state = 88}, + [3557] = {.lex_state = 93}, + [3558] = {.lex_state = 88}, + [3559] = {.lex_state = 88}, + [3560] = {.lex_state = 0}, [3561] = {.lex_state = 254}, - [3562] = {.lex_state = 94}, - [3563] = {.lex_state = 90}, - [3564] = {.lex_state = 90}, - [3565] = {.lex_state = 94}, - [3566] = {.lex_state = 254}, - [3567] = {.lex_state = 0}, - [3568] = {.lex_state = 87}, - [3569] = {.lex_state = 254}, - [3570] = {.lex_state = 254}, - [3571] = {.lex_state = 94}, - [3572] = {.lex_state = 90}, - [3573] = {.lex_state = 90}, - [3574] = {.lex_state = 94}, - [3575] = {.lex_state = 90}, - [3576] = {.lex_state = 94}, - [3577] = {.lex_state = 94}, - [3578] = {.lex_state = 90}, - [3579] = {.lex_state = 94}, - [3580] = {.lex_state = 90}, - [3581] = {.lex_state = 0}, - [3582] = {.lex_state = 90}, - [3583] = {.lex_state = 94}, - [3584] = {.lex_state = 94}, - [3585] = {.lex_state = 90}, - [3586] = {.lex_state = 94}, - [3587] = {.lex_state = 90}, - [3588] = {.lex_state = 94}, - [3589] = {.lex_state = 90}, - [3590] = {.lex_state = 90}, - [3591] = {.lex_state = 90}, - [3592] = {.lex_state = 94}, - [3593] = {.lex_state = 90}, - [3594] = {.lex_state = 94}, - [3595] = {.lex_state = 94}, - [3596] = {.lex_state = 94}, - [3597] = {.lex_state = 94}, - [3598] = {.lex_state = 94}, - [3599] = {.lex_state = 90}, - [3600] = {.lex_state = 94}, - [3601] = {.lex_state = 94}, - [3602] = {.lex_state = 90}, - [3603] = {.lex_state = 94}, - [3604] = {.lex_state = 90}, - [3605] = {.lex_state = 90}, - [3606] = {.lex_state = 94}, - [3607] = {.lex_state = 90}, - [3608] = {.lex_state = 94}, - [3609] = {.lex_state = 90}, - [3610] = {.lex_state = 94}, - [3611] = {.lex_state = 90}, - [3612] = {.lex_state = 94}, - [3613] = {.lex_state = 90}, - [3614] = {.lex_state = 94}, - [3615] = {.lex_state = 90}, - [3616] = {.lex_state = 94}, - [3617] = {.lex_state = 94}, - [3618] = {.lex_state = 90}, - [3619] = {.lex_state = 94}, - [3620] = {.lex_state = 90}, - [3621] = {.lex_state = 90}, - [3622] = {.lex_state = 254}, - [3623] = {.lex_state = 94}, - [3624] = {.lex_state = 90}, - [3625] = {.lex_state = 94}, - [3626] = {.lex_state = 87}, - [3627] = {.lex_state = 90}, - [3628] = {.lex_state = 254}, - [3629] = {.lex_state = 94}, - [3630] = {.lex_state = 90}, - [3631] = {.lex_state = 94}, - [3632] = {.lex_state = 90}, - [3633] = {.lex_state = 94}, - [3634] = {.lex_state = 94}, - [3635] = {.lex_state = 90}, - [3636] = {.lex_state = 34}, - [3637] = {.lex_state = 90}, - [3638] = {.lex_state = 34}, - [3639] = {.lex_state = 90}, - [3640] = {.lex_state = 254}, - [3641] = {.lex_state = 94}, - [3642] = {.lex_state = 90}, - [3643] = {.lex_state = 94}, - [3644] = {.lex_state = 90}, - [3645] = {.lex_state = 94}, - [3646] = {.lex_state = 90}, - [3647] = {.lex_state = 94}, - [3648] = {.lex_state = 90}, - [3649] = {.lex_state = 90}, - [3650] = {.lex_state = 94}, - [3651] = {.lex_state = 90}, - [3652] = {.lex_state = 94}, - [3653] = {.lex_state = 92}, - [3654] = {.lex_state = 83}, - [3655] = {.lex_state = 34}, - [3656] = {.lex_state = 0}, - [3657] = {.lex_state = 87}, - [3658] = {.lex_state = 87}, - [3659] = {.lex_state = 83}, - [3660] = {.lex_state = 83}, - [3661] = {.lex_state = 0}, - [3662] = {.lex_state = 83}, - [3663] = {.lex_state = 254}, - [3664] = {.lex_state = 83}, - [3665] = {.lex_state = 254}, - [3666] = {.lex_state = 254}, - [3667] = {.lex_state = 0}, - [3668] = {.lex_state = 87}, - [3669] = {.lex_state = 254}, - [3670] = {.lex_state = 254}, - [3671] = {.lex_state = 87}, - [3672] = {.lex_state = 254}, - [3673] = {.lex_state = 83}, - [3674] = {.lex_state = 34}, - [3675] = {.lex_state = 0}, - [3676] = {.lex_state = 83}, - [3677] = {.lex_state = 0}, - [3678] = {.lex_state = 83}, - [3679] = {.lex_state = 0}, - [3680] = {.lex_state = 0}, - [3681] = {.lex_state = 87}, - [3682] = {.lex_state = 34}, - [3683] = {.lex_state = 87}, - [3684] = {.lex_state = 0}, - [3685] = {.lex_state = 0}, - [3686] = {.lex_state = 254}, - [3687] = {.lex_state = 0}, - [3688] = {.lex_state = 69}, + [3562] = {.lex_state = 93}, + [3563] = {.lex_state = 88}, + [3564] = {.lex_state = 93}, + [3565] = {.lex_state = 34}, + [3566] = {.lex_state = 34}, + [3567] = {.lex_state = 88}, + [3568] = {.lex_state = 93}, + [3569] = {.lex_state = 88}, + [3570] = {.lex_state = 93}, + [3571] = {.lex_state = 88}, + [3572] = {.lex_state = 93}, + [3573] = {.lex_state = 93}, + [3574] = {.lex_state = 93}, + [3575] = {.lex_state = 88}, + [3576] = {.lex_state = 88}, + [3577] = {.lex_state = 88}, + [3578] = {.lex_state = 93}, + [3579] = {.lex_state = 88}, + [3580] = {.lex_state = 93}, + [3581] = {.lex_state = 88}, + [3582] = {.lex_state = 88}, + [3583] = {.lex_state = 93}, + [3584] = {.lex_state = 88}, + [3585] = {.lex_state = 93}, + [3586] = {.lex_state = 93}, + [3587] = {.lex_state = 88}, + [3588] = {.lex_state = 93}, + [3589] = {.lex_state = 88}, + [3590] = {.lex_state = 93}, + [3591] = {.lex_state = 88}, + [3592] = {.lex_state = 93}, + [3593] = {.lex_state = 88}, + [3594] = {.lex_state = 88}, + [3595] = {.lex_state = 88}, + [3596] = {.lex_state = 93}, + [3597] = {.lex_state = 85}, + [3598] = {.lex_state = 93}, + [3599] = {.lex_state = 93}, + [3600] = {.lex_state = 88}, + [3601] = {.lex_state = 93}, + [3602] = {.lex_state = 93}, + [3603] = {.lex_state = 254}, + [3604] = {.lex_state = 93}, + [3605] = {.lex_state = 254}, + [3606] = {.lex_state = 88}, + [3607] = {.lex_state = 93}, + [3608] = {.lex_state = 93}, + [3609] = {.lex_state = 88}, + [3610] = {.lex_state = 88}, + [3611] = {.lex_state = 93}, + [3612] = {.lex_state = 93}, + [3613] = {.lex_state = 88}, + [3614] = {.lex_state = 88}, + [3615] = {.lex_state = 93}, + [3616] = {.lex_state = 254}, + [3617] = {.lex_state = 88}, + [3618] = {.lex_state = 88}, + [3619] = {.lex_state = 93}, + [3620] = {.lex_state = 88}, + [3621] = {.lex_state = 93}, + [3622] = {.lex_state = 88}, + [3623] = {.lex_state = 93}, + [3624] = {.lex_state = 88}, + [3625] = {.lex_state = 93}, + [3626] = {.lex_state = 88}, + [3627] = {.lex_state = 93}, + [3628] = {.lex_state = 88}, + [3629] = {.lex_state = 93}, + [3630] = {.lex_state = 93}, + [3631] = {.lex_state = 88}, + [3632] = {.lex_state = 88}, + [3633] = {.lex_state = 88}, + [3634] = {.lex_state = 93}, + [3635] = {.lex_state = 88}, + [3636] = {.lex_state = 93}, + [3637] = {.lex_state = 254}, + [3638] = {.lex_state = 93}, + [3639] = {.lex_state = 88}, + [3640] = {.lex_state = 93}, + [3641] = {.lex_state = 88}, + [3642] = {.lex_state = 254}, + [3643] = {.lex_state = 93}, + [3644] = {.lex_state = 88}, + [3645] = {.lex_state = 93}, + [3646] = {.lex_state = 93}, + [3647] = {.lex_state = 93}, + [3648] = {.lex_state = 254}, + [3649] = {.lex_state = 88}, + [3650] = {.lex_state = 88}, + [3651] = {.lex_state = 93}, + [3652] = {.lex_state = 88}, + [3653] = {.lex_state = 85}, + [3654] = {.lex_state = 93}, + [3655] = {.lex_state = 88}, + [3656] = {.lex_state = 90}, + [3657] = {.lex_state = 93}, + [3658] = {.lex_state = 0}, + [3659] = {.lex_state = 0}, + [3660] = {.lex_state = 81}, + [3661] = {.lex_state = 81}, + [3662] = {.lex_state = 85}, + [3663] = {.lex_state = 34}, + [3664] = {.lex_state = 34}, + [3665] = {.lex_state = 81}, + [3666] = {.lex_state = 85}, + [3667] = {.lex_state = 254}, + [3668] = {.lex_state = 254}, + [3669] = {.lex_state = 0}, + [3670] = {.lex_state = 0}, + [3671] = {.lex_state = 0}, + [3672] = {.lex_state = 85}, + [3673] = {.lex_state = 81}, + [3674] = {.lex_state = 85}, + [3675] = {.lex_state = 254}, + [3676] = {.lex_state = 0}, + [3677] = {.lex_state = 254}, + [3678] = {.lex_state = 254}, + [3679] = {.lex_state = 85}, + [3680] = {.lex_state = 81}, + [3681] = {.lex_state = 81}, + [3682] = {.lex_state = 0}, + [3683] = {.lex_state = 34}, + [3684] = {.lex_state = 81}, + [3685] = {.lex_state = 81}, + [3686] = {.lex_state = 85}, + [3687] = {.lex_state = 254}, + [3688] = {.lex_state = 0}, [3689] = {.lex_state = 0}, - [3690] = {.lex_state = 87}, - [3691] = {.lex_state = 0}, - [3692] = {.lex_state = 254}, + [3690] = {.lex_state = 69}, + [3691] = {.lex_state = 90}, + [3692] = {.lex_state = 258}, [3693] = {.lex_state = 0}, [3694] = {.lex_state = 0}, - [3695] = {.lex_state = 0}, - [3696] = {.lex_state = 254}, - [3697] = {.lex_state = 254}, - [3698] = {.lex_state = 254}, + [3695] = {.lex_state = 69}, + [3696] = {.lex_state = 85}, + [3697] = {.lex_state = 85}, + [3698] = {.lex_state = 0}, [3699] = {.lex_state = 0}, - [3700] = {.lex_state = 0}, + [3700] = {.lex_state = 85}, [3701] = {.lex_state = 0}, - [3702] = {.lex_state = 254}, - [3703] = {.lex_state = 87}, - [3704] = {.lex_state = 254}, + [3702] = {.lex_state = 85}, + [3703] = {.lex_state = 69}, + [3704] = {.lex_state = 0}, [3705] = {.lex_state = 0}, - [3706] = {.lex_state = 69}, - [3707] = {.lex_state = 87}, + [3706] = {.lex_state = 88}, + [3707] = {.lex_state = 85}, [3708] = {.lex_state = 0}, - [3709] = {.lex_state = 0}, - [3710] = {.lex_state = 87}, - [3711] = {.lex_state = 87}, - [3712] = {.lex_state = 254}, - [3713] = {.lex_state = 0}, - [3714] = {.lex_state = 69}, - [3715] = {.lex_state = 254}, - [3716] = {.lex_state = 0}, - [3717] = {.lex_state = 0}, + [3709] = {.lex_state = 88}, + [3710] = {.lex_state = 0}, + [3711] = {.lex_state = 85}, + [3712] = {.lex_state = 0}, + [3713] = {.lex_state = 85}, + [3714] = {.lex_state = 85}, + [3715] = {.lex_state = 0}, + [3716] = {.lex_state = 85}, + [3717] = {.lex_state = 69}, [3718] = {.lex_state = 254}, - [3719] = {.lex_state = 69}, - [3720] = {.lex_state = 87}, - [3721] = {.lex_state = 0}, - [3722] = {.lex_state = 0}, + [3719] = {.lex_state = 85}, + [3720] = {.lex_state = 85}, + [3721] = {.lex_state = 90}, + [3722] = {.lex_state = 258}, [3723] = {.lex_state = 69}, - [3724] = {.lex_state = 254}, - [3725] = {.lex_state = 87}, - [3726] = {.lex_state = 69}, - [3727] = {.lex_state = 87}, - [3728] = {.lex_state = 92}, + [3724] = {.lex_state = 0}, + [3725] = {.lex_state = 85}, + [3726] = {.lex_state = 0}, + [3727] = {.lex_state = 69}, + [3728] = {.lex_state = 0}, [3729] = {.lex_state = 0}, - [3730] = {.lex_state = 0}, - [3731] = {.lex_state = 254}, - [3732] = {.lex_state = 87}, - [3733] = {.lex_state = 0}, + [3730] = {.lex_state = 69}, + [3731] = {.lex_state = 0}, + [3732] = {.lex_state = 0}, + [3733] = {.lex_state = 254}, [3734] = {.lex_state = 254}, - [3735] = {.lex_state = 254}, - [3736] = {.lex_state = 254}, - [3737] = {.lex_state = 87}, - [3738] = {.lex_state = 87}, - [3739] = {.lex_state = 0}, - [3740] = {.lex_state = 258}, + [3735] = {.lex_state = 85}, + [3736] = {.lex_state = 0}, + [3737] = {.lex_state = 0}, + [3738] = {.lex_state = 88}, + [3739] = {.lex_state = 85}, + [3740] = {.lex_state = 0}, [3741] = {.lex_state = 0}, - [3742] = {.lex_state = 0}, + [3742] = {.lex_state = 85}, [3743] = {.lex_state = 0}, - [3744] = {.lex_state = 0}, + [3744] = {.lex_state = 254}, [3745] = {.lex_state = 0}, - [3746] = {.lex_state = 0}, - [3747] = {.lex_state = 87}, - [3748] = {.lex_state = 69}, - [3749] = {.lex_state = 87}, + [3746] = {.lex_state = 69}, + [3747] = {.lex_state = 69}, + [3748] = {.lex_state = 0}, + [3749] = {.lex_state = 0}, [3750] = {.lex_state = 0}, - [3751] = {.lex_state = 254}, + [3751] = {.lex_state = 0}, [3752] = {.lex_state = 69}, - [3753] = {.lex_state = 254}, - [3754] = {.lex_state = 0}, - [3755] = {.lex_state = 69}, - [3756] = {.lex_state = 69}, - [3757] = {.lex_state = 87}, + [3753] = {.lex_state = 85}, + [3754] = {.lex_state = 85}, + [3755] = {.lex_state = 0}, + [3756] = {.lex_state = 85}, + [3757] = {.lex_state = 0}, [3758] = {.lex_state = 0}, - [3759] = {.lex_state = 87}, - [3760] = {.lex_state = 87}, - [3761] = {.lex_state = 69}, - [3762] = {.lex_state = 87}, - [3763] = {.lex_state = 69}, - [3764] = {.lex_state = 87}, + [3759] = {.lex_state = 254}, + [3760] = {.lex_state = 254}, + [3761] = {.lex_state = 254}, + [3762] = {.lex_state = 254}, + [3763] = {.lex_state = 254}, + [3764] = {.lex_state = 254}, [3765] = {.lex_state = 254}, - [3766] = {.lex_state = 254}, - [3767] = {.lex_state = 254}, + [3766] = {.lex_state = 85}, + [3767] = {.lex_state = 69}, [3768] = {.lex_state = 254}, - [3769] = {.lex_state = 87}, - [3770] = {.lex_state = 87}, - [3771] = {.lex_state = 94}, - [3772] = {.lex_state = 69}, - [3773] = {.lex_state = 87}, - [3774] = {.lex_state = 94}, - [3775] = {.lex_state = 69}, - [3776] = {.lex_state = 94}, - [3777] = {.lex_state = 87}, - [3778] = {.lex_state = 0}, - [3779] = {.lex_state = 69}, - [3780] = {.lex_state = 0}, - [3781] = {.lex_state = 87}, - [3782] = {.lex_state = 87}, - [3783] = {.lex_state = 87}, - [3784] = {.lex_state = 0}, + [3769] = {.lex_state = 254}, + [3770] = {.lex_state = 254}, + [3771] = {.lex_state = 69}, + [3772] = {.lex_state = 85}, + [3773] = {.lex_state = 254}, + [3774] = {.lex_state = 254}, + [3775] = {.lex_state = 0}, + [3776] = {.lex_state = 69}, + [3777] = {.lex_state = 0}, + [3778] = {.lex_state = 254}, + [3779] = {.lex_state = 0}, + [3780] = {.lex_state = 254}, + [3781] = {.lex_state = 85}, + [3782] = {.lex_state = 254}, + [3783] = {.lex_state = 85}, + [3784] = {.lex_state = 254}, [3785] = {.lex_state = 69}, - [3786] = {.lex_state = 69}, - [3787] = {.lex_state = 0}, - [3788] = {.lex_state = 0}, - [3789] = {.lex_state = 0}, - [3790] = {.lex_state = 87}, - [3791] = {.lex_state = 69}, - [3792] = {.lex_state = 87}, - [3793] = {.lex_state = 254}, - [3794] = {.lex_state = 0}, - [3795] = {.lex_state = 254}, - [3796] = {.lex_state = 254}, - [3797] = {.lex_state = 258}, + [3786] = {.lex_state = 254}, + [3787] = {.lex_state = 69}, + [3788] = {.lex_state = 93}, + [3789] = {.lex_state = 93}, + [3790] = {.lex_state = 69}, + [3791] = {.lex_state = 85}, + [3792] = {.lex_state = 69}, + [3793] = {.lex_state = 93}, + [3794] = {.lex_state = 85}, + [3795] = {.lex_state = 81}, + [3796] = {.lex_state = 85}, + [3797] = {.lex_state = 254}, [3798] = {.lex_state = 0}, - [3799] = {.lex_state = 0}, - [3800] = {.lex_state = 83}, - [3801] = {.lex_state = 69}, - [3802] = {.lex_state = 87}, - [3803] = {.lex_state = 83}, - [3804] = {.lex_state = 87}, + [3799] = {.lex_state = 85}, + [3800] = {.lex_state = 0}, + [3801] = {.lex_state = 85}, + [3802] = {.lex_state = 85}, + [3803] = {.lex_state = 85}, + [3804] = {.lex_state = 69}, [3805] = {.lex_state = 69}, - [3806] = {.lex_state = 87}, + [3806] = {.lex_state = 85}, [3807] = {.lex_state = 0}, [3808] = {.lex_state = 0}, - [3809] = {.lex_state = 254}, - [3810] = {.lex_state = 87}, - [3811] = {.lex_state = 87}, + [3809] = {.lex_state = 85}, + [3810] = {.lex_state = 69}, + [3811] = {.lex_state = 0}, [3812] = {.lex_state = 254}, [3813] = {.lex_state = 0}, - [3814] = {.lex_state = 0}, - [3815] = {.lex_state = 87}, + [3814] = {.lex_state = 69}, + [3815] = {.lex_state = 0}, [3816] = {.lex_state = 69}, - [3817] = {.lex_state = 69}, - [3818] = {.lex_state = 87}, + [3817] = {.lex_state = 85}, + [3818] = {.lex_state = 0}, [3819] = {.lex_state = 69}, - [3820] = {.lex_state = 0}, + [3820] = {.lex_state = 85}, [3821] = {.lex_state = 0}, - [3822] = {.lex_state = 87}, + [3822] = {.lex_state = 0}, [3823] = {.lex_state = 0}, - [3824] = {.lex_state = 87}, - [3825] = {.lex_state = 87}, + [3824] = {.lex_state = 85}, + [3825] = {.lex_state = 0}, [3826] = {.lex_state = 0}, - [3827] = {.lex_state = 258}, - [3828] = {.lex_state = 90}, - [3829] = {.lex_state = 87}, - [3830] = {.lex_state = 0}, - [3831] = {.lex_state = 87}, - [3832] = {.lex_state = 69}, - [3833] = {.lex_state = 0}, - [3834] = {.lex_state = 69}, - [3835] = {.lex_state = 69}, + [3827] = {.lex_state = 69}, + [3828] = {.lex_state = 85}, + [3829] = {.lex_state = 0}, + [3830] = {.lex_state = 69}, + [3831] = {.lex_state = 0}, + [3832] = {.lex_state = 81}, + [3833] = {.lex_state = 69}, + [3834] = {.lex_state = 85}, + [3835] = {.lex_state = 0}, [3836] = {.lex_state = 0}, - [3837] = {.lex_state = 0}, - [3838] = {.lex_state = 87}, - [3839] = {.lex_state = 69}, - [3840] = {.lex_state = 83}, - [3841] = {.lex_state = 69}, - [3842] = {.lex_state = 90}, - [3843] = {.lex_state = 87}, - [3844] = {.lex_state = 87}, - [3845] = {.lex_state = 87}, - [3846] = {.lex_state = 69}, - [3847] = {.lex_state = 69}, - [3848] = {.lex_state = 87}, - [3849] = {.lex_state = 87}, - [3850] = {.lex_state = 0}, - [3851] = {.lex_state = 0}, - [3852] = {.lex_state = 90}, - [3853] = {.lex_state = 92}, - [3854] = {.lex_state = 0}, - [3855] = {.lex_state = 0}, - [3856] = {.lex_state = 0}, + [3837] = {.lex_state = 85}, + [3838] = {.lex_state = 69}, + [3839] = {.lex_state = 0}, + [3840] = {.lex_state = 85}, + [3841] = {.lex_state = 0}, + [3842] = {.lex_state = 258}, + [3843] = {.lex_state = 81}, + [3844] = {.lex_state = 69}, + [3845] = {.lex_state = 254}, + [3846] = {.lex_state = 85}, + [3847] = {.lex_state = 85}, + [3848] = {.lex_state = 85}, + [3849] = {.lex_state = 85}, + [3850] = {.lex_state = 85}, + [3851] = {.lex_state = 69}, + [3852] = {.lex_state = 254}, + [3853] = {.lex_state = 85}, + [3854] = {.lex_state = 85}, + [3855] = {.lex_state = 69}, + [3856] = {.lex_state = 254}, [3857] = {.lex_state = 0}, - [3858] = {.lex_state = 91}, + [3858] = {.lex_state = 85}, [3859] = {.lex_state = 0}, [3860] = {.lex_state = 0}, [3861] = {.lex_state = 0}, - [3862] = {.lex_state = 95}, + [3862] = {.lex_state = 0}, [3863] = {.lex_state = 0}, [3864] = {.lex_state = 0}, [3865] = {.lex_state = 0}, [3866] = {.lex_state = 0}, - [3867] = {.lex_state = 258}, + [3867] = {.lex_state = 81}, [3868] = {.lex_state = 0}, [3869] = {.lex_state = 0}, - [3870] = {.lex_state = 0}, - [3871] = {.lex_state = 0}, - [3872] = {.lex_state = 87}, - [3873] = {.lex_state = 0}, - [3874] = {.lex_state = 0}, + [3870] = {.lex_state = 89}, + [3871] = {.lex_state = 94}, + [3872] = {.lex_state = 85}, + [3873] = {.lex_state = 94}, + [3874] = {.lex_state = 89}, [3875] = {.lex_state = 0}, - [3876] = {.lex_state = 0}, - [3877] = {.lex_state = 258}, - [3878] = {.lex_state = 0}, - [3879] = {.lex_state = 83}, - [3880] = {.lex_state = 0}, + [3876] = {.lex_state = 89}, + [3877] = {.lex_state = 0}, + [3878] = {.lex_state = 81}, + [3879] = {.lex_state = 0}, + [3880] = {.lex_state = 94}, [3881] = {.lex_state = 0}, [3882] = {.lex_state = 0}, - [3883] = {.lex_state = 95}, - [3884] = {.lex_state = 87}, - [3885] = {.lex_state = 69}, - [3886] = {.lex_state = 91}, + [3883] = {.lex_state = 0}, + [3884] = {.lex_state = 0}, + [3885] = {.lex_state = 0}, + [3886] = {.lex_state = 0}, [3887] = {.lex_state = 0}, - [3888] = {.lex_state = 87}, + [3888] = {.lex_state = 0}, [3889] = {.lex_state = 0}, - [3890] = {.lex_state = 95}, + [3890] = {.lex_state = 0}, [3891] = {.lex_state = 0}, - [3892] = {.lex_state = 83}, - [3893] = {.lex_state = 87}, + [3892] = {.lex_state = 0}, + [3893] = {.lex_state = 0}, [3894] = {.lex_state = 0}, - [3895] = {.lex_state = 91}, + [3895] = {.lex_state = 0}, [3896] = {.lex_state = 0}, [3897] = {.lex_state = 0}, - [3898] = {.lex_state = 0}, - [3899] = {.lex_state = 91}, - [3900] = {.lex_state = 95}, - [3901] = {.lex_state = 0}, - [3902] = {.lex_state = 0}, + [3898] = {.lex_state = 94}, + [3899] = {.lex_state = 89}, + [3900] = {.lex_state = 0}, + [3901] = {.lex_state = 69}, + [3902] = {.lex_state = 85}, [3903] = {.lex_state = 0}, - [3904] = {.lex_state = 87}, + [3904] = {.lex_state = 94}, [3905] = {.lex_state = 0}, - [3906] = {.lex_state = 0}, - [3907] = {.lex_state = 87}, - [3908] = {.lex_state = 95}, - [3909] = {.lex_state = 87}, + [3906] = {.lex_state = 89}, + [3907] = {.lex_state = 0}, + [3908] = {.lex_state = 89}, + [3909] = {.lex_state = 94}, [3910] = {.lex_state = 0}, - [3911] = {.lex_state = 91}, - [3912] = {.lex_state = 95}, - [3913] = {.lex_state = 0}, - [3914] = {.lex_state = 0}, - [3915] = {.lex_state = 0}, + [3911] = {.lex_state = 85}, + [3912] = {.lex_state = 85}, + [3913] = {.lex_state = 85}, + [3914] = {.lex_state = 94}, + [3915] = {.lex_state = 258}, [3916] = {.lex_state = 0}, - [3917] = {.lex_state = 87}, - [3918] = {.lex_state = 0}, + [3917] = {.lex_state = 0}, + [3918] = {.lex_state = 85}, [3919] = {.lex_state = 0}, [3920] = {.lex_state = 0}, - [3921] = {.lex_state = 87}, + [3921] = {.lex_state = 0}, [3922] = {.lex_state = 0}, [3923] = {.lex_state = 0}, - [3924] = {.lex_state = 95}, - [3925] = {.lex_state = 95}, - [3926] = {.lex_state = 91}, + [3924] = {.lex_state = 0}, + [3925] = {.lex_state = 0}, + [3926] = {.lex_state = 0}, [3927] = {.lex_state = 0}, - [3928] = {.lex_state = 91}, - [3929] = {.lex_state = 95}, - [3930] = {.lex_state = 87}, - [3931] = {.lex_state = 91}, + [3928] = {.lex_state = 258}, + [3929] = {.lex_state = 0}, + [3930] = {.lex_state = 89}, + [3931] = {.lex_state = 81}, [3932] = {.lex_state = 0}, - [3933] = {.lex_state = 0}, - [3934] = {.lex_state = 0}, - [3935] = {.lex_state = 0}, - [3936] = {.lex_state = 87}, - [3937] = {.lex_state = 0}, - [3938] = {.lex_state = 69}, - [3939] = {.lex_state = 0}, - [3940] = {.lex_state = 0}, + [3933] = {.lex_state = 89}, + [3934] = {.lex_state = 94}, + [3935] = {.lex_state = 81}, + [3936] = {.lex_state = 0}, + [3937] = {.lex_state = 85}, + [3938] = {.lex_state = 0}, + [3939] = {.lex_state = 89}, + [3940] = {.lex_state = 94}, [3941] = {.lex_state = 0}, [3942] = {.lex_state = 0}, - [3943] = {.lex_state = 258}, + [3943] = {.lex_state = 0}, [3944] = {.lex_state = 0}, - [3945] = {.lex_state = 95}, - [3946] = {.lex_state = 95}, + [3945] = {.lex_state = 0}, + [3946] = {.lex_state = 0}, [3947] = {.lex_state = 0}, - [3948] = {.lex_state = 91}, - [3949] = {.lex_state = 91}, - [3950] = {.lex_state = 87}, + [3948] = {.lex_state = 0}, + [3949] = {.lex_state = 94}, + [3950] = {.lex_state = 0}, [3951] = {.lex_state = 0}, - [3952] = {.lex_state = 87}, - [3953] = {.lex_state = 0}, - [3954] = {.lex_state = 91}, - [3955] = {.lex_state = 95}, - [3956] = {.lex_state = 87}, + [3952] = {.lex_state = 0}, + [3953] = {.lex_state = 85}, + [3954] = {.lex_state = 0}, + [3955] = {.lex_state = 0}, + [3956] = {.lex_state = 89}, [3957] = {.lex_state = 0}, - [3958] = {.lex_state = 91}, - [3959] = {.lex_state = 0}, - [3960] = {.lex_state = 91}, - [3961] = {.lex_state = 95}, + [3958] = {.lex_state = 0}, + [3959] = {.lex_state = 85}, + [3960] = {.lex_state = 0}, + [3961] = {.lex_state = 0}, [3962] = {.lex_state = 0}, - [3963] = {.lex_state = 95}, - [3964] = {.lex_state = 0}, + [3963] = {.lex_state = 0}, + [3964] = {.lex_state = 85}, [3965] = {.lex_state = 0}, [3966] = {.lex_state = 0}, - [3967] = {.lex_state = 0}, + [3967] = {.lex_state = 89}, [3968] = {.lex_state = 0}, [3969] = {.lex_state = 0}, [3970] = {.lex_state = 0}, [3971] = {.lex_state = 0}, [3972] = {.lex_state = 0}, - [3973] = {.lex_state = 0}, - [3974] = {.lex_state = 0}, - [3975] = {.lex_state = 0}, - [3976] = {.lex_state = 0}, - [3977] = {.lex_state = 0}, - [3978] = {.lex_state = 91}, - [3979] = {.lex_state = 91}, - [3980] = {.lex_state = 95}, + [3973] = {.lex_state = 69}, + [3974] = {.lex_state = 85}, + [3975] = {.lex_state = 89}, + [3976] = {.lex_state = 94}, + [3977] = {.lex_state = 94}, + [3978] = {.lex_state = 0}, + [3979] = {.lex_state = 81}, + [3980] = {.lex_state = 0}, [3981] = {.lex_state = 0}, - [3982] = {.lex_state = 91}, - [3983] = {.lex_state = 95}, - [3984] = {.lex_state = 69}, - [3985] = {.lex_state = 0}, - [3986] = {.lex_state = 0}, - [3987] = {.lex_state = 0}, + [3982] = {.lex_state = 0}, + [3983] = {.lex_state = 94}, + [3984] = {.lex_state = 0}, + [3985] = {.lex_state = 85}, + [3986] = {.lex_state = 94}, + [3987] = {.lex_state = 89}, [3988] = {.lex_state = 0}, [3989] = {.lex_state = 0}, [3990] = {.lex_state = 0}, [3991] = {.lex_state = 0}, [3992] = {.lex_state = 0}, - [3993] = {.lex_state = 87}, + [3993] = {.lex_state = 0}, [3994] = {.lex_state = 0}, - [3995] = {.lex_state = 87}, + [3995] = {.lex_state = 0}, [3996] = {.lex_state = 0}, [3997] = {.lex_state = 0}, - [3998] = {.lex_state = 87}, - [3999] = {.lex_state = 0}, + [3998] = {.lex_state = 0}, + [3999] = {.lex_state = 85}, [4000] = {.lex_state = 0}, - [4001] = {.lex_state = 91}, - [4002] = {.lex_state = 95}, - [4003] = {.lex_state = 95}, - [4004] = {.lex_state = 0}, - [4005] = {.lex_state = 0}, - [4006] = {.lex_state = 0}, + [4001] = {.lex_state = 94}, + [4002] = {.lex_state = 89}, + [4003] = {.lex_state = 0}, + [4004] = {.lex_state = 85}, + [4005] = {.lex_state = 89}, + [4006] = {.lex_state = 94}, [4007] = {.lex_state = 0}, [4008] = {.lex_state = 0}, - [4009] = {.lex_state = 0}, - [4010] = {.lex_state = 0}, - [4011] = {.lex_state = 91}, - [4012] = {.lex_state = 0}, + [4009] = {.lex_state = 89}, + [4010] = {.lex_state = 94}, + [4011] = {.lex_state = 89}, + [4012] = {.lex_state = 85}, [4013] = {.lex_state = 0}, - [4014] = {.lex_state = 95}, + [4014] = {.lex_state = 0}, [4015] = {.lex_state = 0}, - [4016] = {.lex_state = 91}, + [4016] = {.lex_state = 0}, [4017] = {.lex_state = 0}, [4018] = {.lex_state = 0}, [4019] = {.lex_state = 0}, [4020] = {.lex_state = 0}, [4021] = {.lex_state = 0}, - [4022] = {.lex_state = 0}, + [4022] = {.lex_state = 89}, [4023] = {.lex_state = 0}, - [4024] = {.lex_state = 87}, - [4025] = {.lex_state = 91}, + [4024] = {.lex_state = 94}, + [4025] = {.lex_state = 0}, [4026] = {.lex_state = 0}, [4027] = {.lex_state = 0}, - [4028] = {.lex_state = 91}, - [4029] = {.lex_state = 0}, - [4030] = {.lex_state = 91}, - [4031] = {.lex_state = 95}, - [4032] = {.lex_state = 0}, - [4033] = {.lex_state = 95}, - [4034] = {.lex_state = 0}, - [4035] = {.lex_state = 95}, - [4036] = {.lex_state = 83}, - [4037] = {.lex_state = 258}, - [4038] = {.lex_state = 0}, + [4028] = {.lex_state = 0}, + [4029] = {.lex_state = 85}, + [4030] = {.lex_state = 0}, + [4031] = {.lex_state = 0}, + [4032] = {.lex_state = 85}, + [4033] = {.lex_state = 0}, + [4034] = {.lex_state = 89}, + [4035] = {.lex_state = 94}, + [4036] = {.lex_state = 0}, + [4037] = {.lex_state = 0}, + [4038] = {.lex_state = 89}, [4039] = {.lex_state = 0}, - [4040] = {.lex_state = 95}, - [4041] = {.lex_state = 91}, - [4042] = {.lex_state = 0}, - [4043] = {.lex_state = 0}, + [4040] = {.lex_state = 0}, + [4041] = {.lex_state = 89}, + [4042] = {.lex_state = 94}, + [4043] = {.lex_state = 94}, [4044] = {.lex_state = 0}, [4045] = {.lex_state = 0}, [4046] = {.lex_state = 0}, [4047] = {.lex_state = 0}, [4048] = {.lex_state = 0}, [4049] = {.lex_state = 0}, - [4050] = {.lex_state = 87}, - [4051] = {.lex_state = 0}, - [4052] = {.lex_state = 95}, + [4050] = {.lex_state = 0}, + [4051] = {.lex_state = 89}, + [4052] = {.lex_state = 0}, [4053] = {.lex_state = 0}, - [4054] = {.lex_state = 91}, - [4055] = {.lex_state = 91}, + [4054] = {.lex_state = 0}, + [4055] = {.lex_state = 0}, [4056] = {.lex_state = 0}, - [4057] = {.lex_state = 87}, - [4058] = {.lex_state = 95}, + [4057] = {.lex_state = 0}, + [4058] = {.lex_state = 0}, [4059] = {.lex_state = 0}, - [4060] = {.lex_state = 0}, + [4060] = {.lex_state = 94}, [4061] = {.lex_state = 0}, [4062] = {.lex_state = 0}, - [4063] = {.lex_state = 0}, + [4063] = {.lex_state = 89}, [4064] = {.lex_state = 0}, [4065] = {.lex_state = 0}, - [4066] = {.lex_state = 0}, - [4067] = {.lex_state = 0}, - [4068] = {.lex_state = 0}, - [4069] = {.lex_state = 0}, + [4066] = {.lex_state = 94}, + [4067] = {.lex_state = 85}, + [4068] = {.lex_state = 94}, + [4069] = {.lex_state = 89}, [4070] = {.lex_state = 0}, [4071] = {.lex_state = 0}, [4072] = {.lex_state = 0}, - [4073] = {.lex_state = 0}, + [4073] = {.lex_state = 89}, [4074] = {.lex_state = 0}, [4075] = {.lex_state = 0}, [4076] = {.lex_state = 0}, [4077] = {.lex_state = 0}, [4078] = {.lex_state = 0}, - [4079] = {.lex_state = 83}, - [4080] = {.lex_state = 0}, - [4081] = {.lex_state = 83}, + [4079] = {.lex_state = 94}, + [4080] = {.lex_state = 85}, + [4081] = {.lex_state = 0}, [4082] = {.lex_state = 0}, - [4083] = {.lex_state = 0}, - [4084] = {.lex_state = 87}, + [4083] = {.lex_state = 85}, + [4084] = {.lex_state = 0}, [4085] = {.lex_state = 0}, [4086] = {.lex_state = 0}, - [4087] = {.lex_state = 87}, - [4088] = {.lex_state = 0}, - [4089] = {.lex_state = 87}, + [4087] = {.lex_state = 69}, + [4088] = {.lex_state = 85}, + [4089] = {.lex_state = 258}, [4090] = {.lex_state = 0}, - [4091] = {.lex_state = 0}, + [4091] = {.lex_state = 258}, [4092] = {.lex_state = 0}, - [4093] = {.lex_state = 0}, + [4093] = {.lex_state = 85}, [4094] = {.lex_state = 0}, [4095] = {.lex_state = 0}, [4096] = {.lex_state = 0}, - [4097] = {.lex_state = 87}, + [4097] = {.lex_state = 0}, [4098] = {.lex_state = 0}, - [4099] = {.lex_state = 0}, + [4099] = {.lex_state = 85}, [4100] = {.lex_state = 0}, [4101] = {.lex_state = 0}, [4102] = {.lex_state = 0}, [4103] = {.lex_state = 0}, [4104] = {.lex_state = 0}, - [4105] = {.lex_state = 0}, + [4105] = {.lex_state = 85}, [4106] = {.lex_state = 0}, [4107] = {.lex_state = 0}, [4108] = {.lex_state = 0}, [4109] = {.lex_state = 0}, [4110] = {.lex_state = 0}, [4111] = {.lex_state = 0}, - [4112] = {.lex_state = 87}, - [4113] = {.lex_state = 87}, + [4112] = {.lex_state = 0}, + [4113] = {.lex_state = 85}, [4114] = {.lex_state = 0}, [4115] = {.lex_state = 0}, [4116] = {.lex_state = 0}, [4117] = {.lex_state = 0}, - [4118] = {.lex_state = 0}, + [4118] = {.lex_state = 85}, [4119] = {.lex_state = 0}, [4120] = {.lex_state = 0}, [4121] = {.lex_state = 0}, - [4122] = {.lex_state = 87}, + [4122] = {.lex_state = 69}, [4123] = {.lex_state = 0}, [4124] = {.lex_state = 0}, [4125] = {.lex_state = 0}, [4126] = {.lex_state = 0}, - [4127] = {.lex_state = 87}, + [4127] = {.lex_state = 0}, [4128] = {.lex_state = 0}, [4129] = {.lex_state = 0}, [4130] = {.lex_state = 0}, [4131] = {.lex_state = 0}, [4132] = {.lex_state = 0}, [4133] = {.lex_state = 0}, - [4134] = {.lex_state = 0}, + [4134] = {.lex_state = 85}, [4135] = {.lex_state = 0}, [4136] = {.lex_state = 0}, [4137] = {.lex_state = 0}, @@ -22058,14 +21996,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4139] = {.lex_state = 0}, [4140] = {.lex_state = 0}, [4141] = {.lex_state = 0}, - [4142] = {.lex_state = 87}, + [4142] = {.lex_state = 0}, [4143] = {.lex_state = 0}, [4144] = {.lex_state = 0}, - [4145] = {.lex_state = 0}, + [4145] = {.lex_state = 85}, [4146] = {.lex_state = 0}, [4147] = {.lex_state = 0}, [4148] = {.lex_state = 0}, - [4149] = {.lex_state = 87}, + [4149] = {.lex_state = 0}, [4150] = {.lex_state = 0}, [4151] = {.lex_state = 0}, [4152] = {.lex_state = 0}, @@ -22076,15 +22014,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4157] = {.lex_state = 0}, [4158] = {.lex_state = 0}, [4159] = {.lex_state = 0}, - [4160] = {.lex_state = 87}, - [4161] = {.lex_state = 0}, + [4160] = {.lex_state = 0}, + [4161] = {.lex_state = 85}, [4162] = {.lex_state = 0}, [4163] = {.lex_state = 0}, - [4164] = {.lex_state = 87}, + [4164] = {.lex_state = 0}, [4165] = {.lex_state = 0}, - [4166] = {.lex_state = 0}, + [4166] = {.lex_state = 85}, [4167] = {.lex_state = 0}, - [4168] = {.lex_state = 0}, + [4168] = {.lex_state = 85}, [4169] = {.lex_state = 0}, [4170] = {.lex_state = 0}, [4171] = {.lex_state = 0}, @@ -22098,25 +22036,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4179] = {.lex_state = 0}, [4180] = {.lex_state = 0}, [4181] = {.lex_state = 0}, - [4182] = {.lex_state = 87}, - [4183] = {.lex_state = 87}, + [4182] = {.lex_state = 0}, + [4183] = {.lex_state = 0}, [4184] = {.lex_state = 0}, - [4185] = {.lex_state = 87}, + [4185] = {.lex_state = 0}, [4186] = {.lex_state = 0}, [4187] = {.lex_state = 0}, - [4188] = {.lex_state = 0}, + [4188] = {.lex_state = 85}, [4189] = {.lex_state = 0}, [4190] = {.lex_state = 0}, - [4191] = {.lex_state = 0}, + [4191] = {.lex_state = 85}, [4192] = {.lex_state = 0}, [4193] = {.lex_state = 0}, [4194] = {.lex_state = 0}, - [4195] = {.lex_state = 87}, + [4195] = {.lex_state = 0}, [4196] = {.lex_state = 0}, [4197] = {.lex_state = 0}, [4198] = {.lex_state = 0}, [4199] = {.lex_state = 0}, - [4200] = {.lex_state = 87}, + [4200] = {.lex_state = 85}, [4201] = {.lex_state = 0}, [4202] = {.lex_state = 0}, [4203] = {.lex_state = 0}, @@ -22124,83 +22062,83 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4205] = {.lex_state = 0}, [4206] = {.lex_state = 0}, [4207] = {.lex_state = 0}, - [4208] = {.lex_state = 0}, + [4208] = {.lex_state = 85}, [4209] = {.lex_state = 0}, [4210] = {.lex_state = 0}, [4211] = {.lex_state = 0}, [4212] = {.lex_state = 0}, - [4213] = {.lex_state = 69}, - [4214] = {.lex_state = 0}, + [4213] = {.lex_state = 0}, + [4214] = {.lex_state = 85}, [4215] = {.lex_state = 0}, - [4216] = {.lex_state = 0}, + [4216] = {.lex_state = 85}, [4217] = {.lex_state = 0}, - [4218] = {.lex_state = 0}, + [4218] = {.lex_state = 85}, [4219] = {.lex_state = 0}, [4220] = {.lex_state = 0}, - [4221] = {.lex_state = 87}, + [4221] = {.lex_state = 0}, [4222] = {.lex_state = 0}, [4223] = {.lex_state = 0}, [4224] = {.lex_state = 0}, - [4225] = {.lex_state = 0}, + [4225] = {.lex_state = 85}, [4226] = {.lex_state = 0}, - [4227] = {.lex_state = 87}, + [4227] = {.lex_state = 0}, [4228] = {.lex_state = 0}, [4229] = {.lex_state = 0}, [4230] = {.lex_state = 0}, [4231] = {.lex_state = 0}, [4232] = {.lex_state = 0}, - [4233] = {.lex_state = 0}, + [4233] = {.lex_state = 85}, [4234] = {.lex_state = 0}, [4235] = {.lex_state = 0}, [4236] = {.lex_state = 0}, [4237] = {.lex_state = 0}, [4238] = {.lex_state = 0}, [4239] = {.lex_state = 0}, - [4240] = {.lex_state = 87}, + [4240] = {.lex_state = 0}, [4241] = {.lex_state = 0}, [4242] = {.lex_state = 0}, [4243] = {.lex_state = 0}, [4244] = {.lex_state = 0}, [4245] = {.lex_state = 0}, - [4246] = {.lex_state = 0}, + [4246] = {.lex_state = 85}, [4247] = {.lex_state = 0}, [4248] = {.lex_state = 0}, [4249] = {.lex_state = 0}, - [4250] = {.lex_state = 87}, + [4250] = {.lex_state = 85}, [4251] = {.lex_state = 0}, - [4252] = {.lex_state = 87}, + [4252] = {.lex_state = 0}, [4253] = {.lex_state = 0}, [4254] = {.lex_state = 0}, [4255] = {.lex_state = 0}, [4256] = {.lex_state = 0}, [4257] = {.lex_state = 0}, - [4258] = {.lex_state = 87}, + [4258] = {.lex_state = 69}, [4259] = {.lex_state = 0}, [4260] = {.lex_state = 0}, [4261] = {.lex_state = 0}, - [4262] = {.lex_state = 0}, + [4262] = {.lex_state = 85}, [4263] = {.lex_state = 0}, - [4264] = {.lex_state = 87}, - [4265] = {.lex_state = 87}, + [4264] = {.lex_state = 85}, + [4265] = {.lex_state = 0}, [4266] = {.lex_state = 0}, [4267] = {.lex_state = 0}, - [4268] = {.lex_state = 87}, + [4268] = {.lex_state = 0}, [4269] = {.lex_state = 0}, - [4270] = {.lex_state = 0}, - [4271] = {.lex_state = 0}, - [4272] = {.lex_state = 0}, + [4270] = {.lex_state = 85}, + [4271] = {.lex_state = 85}, + [4272] = {.lex_state = 85}, [4273] = {.lex_state = 0}, [4274] = {.lex_state = 0}, - [4275] = {.lex_state = 0}, + [4275] = {.lex_state = 85}, [4276] = {.lex_state = 0}, [4277] = {.lex_state = 0}, [4278] = {.lex_state = 0}, - [4279] = {.lex_state = 0}, + [4279] = {.lex_state = 85}, [4280] = {.lex_state = 0}, [4281] = {.lex_state = 0}, - [4282] = {.lex_state = 87}, + [4282] = {.lex_state = 85}, [4283] = {.lex_state = 0}, - [4284] = {.lex_state = 69}, + [4284] = {.lex_state = 0}, [4285] = {.lex_state = 0}, [4286] = {.lex_state = 0}, [4287] = {.lex_state = 0}, @@ -22208,16 +22146,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4289] = {.lex_state = 0}, [4290] = {.lex_state = 0}, [4291] = {.lex_state = 0}, - [4292] = {.lex_state = 0}, - [4293] = {.lex_state = 87}, + [4292] = {.lex_state = 85}, + [4293] = {.lex_state = 0}, [4294] = {.lex_state = 0}, [4295] = {.lex_state = 0}, - [4296] = {.lex_state = 87}, + [4296] = {.lex_state = 0}, [4297] = {.lex_state = 0}, [4298] = {.lex_state = 0}, [4299] = {.lex_state = 0}, - [4300] = {.lex_state = 0}, - [4301] = {.lex_state = 0}, + [4300] = {.lex_state = 85}, + [4301] = {.lex_state = 85}, [4302] = {.lex_state = 0}, [4303] = {.lex_state = 0}, [4304] = {.lex_state = 0}, @@ -22226,8 +22164,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4307] = {.lex_state = 0}, [4308] = {.lex_state = 0}, [4309] = {.lex_state = 0}, - [4310] = {.lex_state = 87}, - [4311] = {.lex_state = 87}, + [4310] = {.lex_state = 0}, + [4311] = {.lex_state = 0}, [4312] = {.lex_state = 0}, [4313] = {.lex_state = 0}, [4314] = {.lex_state = 0}, @@ -22235,8 +22173,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4316] = {.lex_state = 0}, [4317] = {.lex_state = 0}, [4318] = {.lex_state = 0}, - [4319] = {.lex_state = 0}, - [4320] = {.lex_state = 0}, + [4319] = {.lex_state = 85}, + [4320] = {.lex_state = 85}, [4321] = {.lex_state = 0}, [4322] = {.lex_state = 0}, [4323] = {.lex_state = 0}, @@ -22252,8 +22190,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4333] = {.lex_state = 0}, [4334] = {.lex_state = 0}, [4335] = {.lex_state = 0}, - [4336] = {.lex_state = 87}, - [4337] = {.lex_state = 87}, + [4336] = {.lex_state = 0}, + [4337] = {.lex_state = 0}, [4338] = {.lex_state = 0}, [4339] = {.lex_state = 0}, [4340] = {.lex_state = 0}, @@ -22263,57 +22201,57 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4344] = {.lex_state = 0}, [4345] = {.lex_state = 0}, [4346] = {.lex_state = 0}, - [4347] = {.lex_state = 87}, + [4347] = {.lex_state = 0}, [4348] = {.lex_state = 0}, - [4349] = {.lex_state = 0}, + [4349] = {.lex_state = 85}, [4350] = {.lex_state = 0}, - [4351] = {.lex_state = 87}, - [4352] = {.lex_state = 87}, + [4351] = {.lex_state = 0}, + [4352] = {.lex_state = 0}, [4353] = {.lex_state = 0}, [4354] = {.lex_state = 0}, - [4355] = {.lex_state = 87}, + [4355] = {.lex_state = 0}, [4356] = {.lex_state = 0}, [4357] = {.lex_state = 0}, [4358] = {.lex_state = 0}, [4359] = {.lex_state = 0}, - [4360] = {.lex_state = 87}, + [4360] = {.lex_state = 85}, [4361] = {.lex_state = 0}, - [4362] = {.lex_state = 87}, - [4363] = {.lex_state = 0}, + [4362] = {.lex_state = 0}, + [4363] = {.lex_state = 69}, [4364] = {.lex_state = 0}, [4365] = {.lex_state = 0}, [4366] = {.lex_state = 0}, [4367] = {.lex_state = 0}, [4368] = {.lex_state = 0}, [4369] = {.lex_state = 0}, - [4370] = {.lex_state = 87}, - [4371] = {.lex_state = 0}, + [4370] = {.lex_state = 0}, + [4371] = {.lex_state = 85}, [4372] = {.lex_state = 0}, [4373] = {.lex_state = 0}, - [4374] = {.lex_state = 69}, - [4375] = {.lex_state = 87}, - [4376] = {.lex_state = 87}, + [4374] = {.lex_state = 0}, + [4375] = {.lex_state = 0}, + [4376] = {.lex_state = 0}, [4377] = {.lex_state = 0}, - [4378] = {.lex_state = 0}, + [4378] = {.lex_state = 85}, [4379] = {.lex_state = 0}, [4380] = {.lex_state = 0}, [4381] = {.lex_state = 0}, [4382] = {.lex_state = 0}, - [4383] = {.lex_state = 0}, + [4383] = {.lex_state = 85}, [4384] = {.lex_state = 0}, [4385] = {.lex_state = 0}, - [4386] = {.lex_state = 87}, + [4386] = {.lex_state = 0}, [4387] = {.lex_state = 0}, - [4388] = {.lex_state = 87}, - [4389] = {.lex_state = 0}, + [4388] = {.lex_state = 0}, + [4389] = {.lex_state = 85}, [4390] = {.lex_state = 0}, [4391] = {.lex_state = 0}, - [4392] = {.lex_state = 0}, + [4392] = {.lex_state = 85}, [4393] = {.lex_state = 0}, [4394] = {.lex_state = 0}, [4395] = {.lex_state = 0}, [4396] = {.lex_state = 0}, - [4397] = {.lex_state = 87}, + [4397] = {.lex_state = 0}, [4398] = {.lex_state = 0}, [4399] = {.lex_state = 0}, [4400] = {.lex_state = 0}, @@ -22322,10 +22260,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4403] = {.lex_state = 0}, [4404] = {.lex_state = 0}, [4405] = {.lex_state = 0}, - [4406] = {.lex_state = 87}, + [4406] = {.lex_state = 85}, [4407] = {.lex_state = 0}, - [4408] = {.lex_state = 0}, - [4409] = {.lex_state = 0}, + [4408] = {.lex_state = 85}, + [4409] = {.lex_state = 85}, [4410] = {.lex_state = 0}, [4411] = {.lex_state = 0}, [4412] = {.lex_state = 0}, @@ -22333,94 +22271,94 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4414] = {.lex_state = 0}, [4415] = {.lex_state = 0}, [4416] = {.lex_state = 0}, - [4417] = {.lex_state = 96}, + [4417] = {.lex_state = 0}, [4418] = {.lex_state = 0}, - [4419] = {.lex_state = 87}, + [4419] = {.lex_state = 0}, [4420] = {.lex_state = 0}, [4421] = {.lex_state = 0}, - [4422] = {.lex_state = 96}, + [4422] = {.lex_state = 159}, [4423] = {.lex_state = 0}, - [4424] = {.lex_state = 41}, + [4424] = {.lex_state = 159}, [4425] = {.lex_state = 0}, [4426] = {.lex_state = 0}, [4427] = {.lex_state = 0}, - [4428] = {.lex_state = 96}, + [4428] = {.lex_state = 0}, [4429] = {.lex_state = 0}, [4430] = {.lex_state = 0}, [4431] = {.lex_state = 0}, - [4432] = {.lex_state = 0}, + [4432] = {.lex_state = 159}, [4433] = {.lex_state = 0}, - [4434] = {.lex_state = 87}, + [4434] = {.lex_state = 159}, [4435] = {.lex_state = 0}, [4436] = {.lex_state = 0}, - [4437] = {.lex_state = 0}, + [4437] = {.lex_state = 85}, [4438] = {.lex_state = 0}, [4439] = {.lex_state = 0}, - [4440] = {.lex_state = 0}, + [4440] = {.lex_state = 85}, [4441] = {.lex_state = 0}, [4442] = {.lex_state = 0}, [4443] = {.lex_state = 0}, [4444] = {.lex_state = 0}, - [4445] = {.lex_state = 96}, - [4446] = {.lex_state = 0}, + [4445] = {.lex_state = 0}, + [4446] = {.lex_state = 85}, [4447] = {.lex_state = 0}, [4448] = {.lex_state = 0}, - [4449] = {.lex_state = 96}, + [4449] = {.lex_state = 0}, [4450] = {.lex_state = 0}, [4451] = {.lex_state = 0}, - [4452] = {.lex_state = 41}, - [4453] = {.lex_state = 0}, + [4452] = {.lex_state = 0}, + [4453] = {.lex_state = 159}, [4454] = {.lex_state = 0}, - [4455] = {.lex_state = 0}, + [4455] = {.lex_state = 159}, [4456] = {.lex_state = 0}, - [4457] = {.lex_state = 87}, - [4458] = {.lex_state = 87}, - [4459] = {.lex_state = 87}, - [4460] = {.lex_state = 0}, - [4461] = {.lex_state = 87}, + [4457] = {.lex_state = 0}, + [4458] = {.lex_state = 0}, + [4459] = {.lex_state = 0}, + [4460] = {.lex_state = 41}, + [4461] = {.lex_state = 0}, [4462] = {.lex_state = 0}, [4463] = {.lex_state = 0}, - [4464] = {.lex_state = 0}, - [4465] = {.lex_state = 0}, + [4464] = {.lex_state = 85}, + [4465] = {.lex_state = 85}, [4466] = {.lex_state = 0}, [4467] = {.lex_state = 0}, - [4468] = {.lex_state = 0}, + [4468] = {.lex_state = 85}, [4469] = {.lex_state = 0}, - [4470] = {.lex_state = 96}, + [4470] = {.lex_state = 85}, [4471] = {.lex_state = 0}, [4472] = {.lex_state = 0}, [4473] = {.lex_state = 0}, - [4474] = {.lex_state = 87}, - [4475] = {.lex_state = 87}, - [4476] = {.lex_state = 87}, - [4477] = {.lex_state = 87}, + [4474] = {.lex_state = 159}, + [4475] = {.lex_state = 0}, + [4476] = {.lex_state = 41}, + [4477] = {.lex_state = 0}, [4478] = {.lex_state = 0}, [4479] = {.lex_state = 0}, - [4480] = {.lex_state = 87}, + [4480] = {.lex_state = 0}, [4481] = {.lex_state = 0}, [4482] = {.lex_state = 0}, [4483] = {.lex_state = 0}, [4484] = {.lex_state = 0}, - [4485] = {.lex_state = 0}, + [4485] = {.lex_state = 41}, [4486] = {.lex_state = 0}, [4487] = {.lex_state = 0}, [4488] = {.lex_state = 0}, [4489] = {.lex_state = 0}, [4490] = {.lex_state = 0}, - [4491] = {.lex_state = 96}, + [4491] = {.lex_state = 0}, [4492] = {.lex_state = 0}, [4493] = {.lex_state = 0}, [4494] = {.lex_state = 0}, - [4495] = {.lex_state = 0}, + [4495] = {.lex_state = 159}, [4496] = {.lex_state = 0}, [4497] = {.lex_state = 0}, [4498] = {.lex_state = 0}, - [4499] = {.lex_state = 0}, + [4499] = {.lex_state = 85}, [4500] = {.lex_state = 0}, - [4501] = {.lex_state = 0}, + [4501] = {.lex_state = 85}, [4502] = {.lex_state = 0}, [4503] = {.lex_state = 0}, - [4504] = {.lex_state = 96}, + [4504] = {.lex_state = 0}, [4505] = {.lex_state = 0}, [4506] = {.lex_state = 0}, [4507] = {.lex_state = 0}, @@ -22428,20 +22366,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4509] = {.lex_state = 0}, [4510] = {.lex_state = 0}, [4511] = {.lex_state = 0}, - [4512] = {.lex_state = 96}, + [4512] = {.lex_state = 0}, [4513] = {.lex_state = 0}, [4514] = {.lex_state = 0}, [4515] = {.lex_state = 0}, - [4516] = {.lex_state = 0}, + [4516] = {.lex_state = 159}, [4517] = {.lex_state = 0}, [4518] = {.lex_state = 0}, - [4519] = {.lex_state = 87}, - [4520] = {.lex_state = 87}, + [4519] = {.lex_state = 0}, + [4520] = {.lex_state = 85}, [4521] = {.lex_state = 0}, - [4522] = {.lex_state = 41}, + [4522] = {.lex_state = 160}, [4523] = {.lex_state = 0}, [4524] = {.lex_state = 0}, - [4525] = {.lex_state = 87}, + [4525] = {.lex_state = 0}, [4526] = {.lex_state = 0}, [4527] = {.lex_state = 0}, [4528] = {.lex_state = 0}, @@ -22449,11 +22387,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4530] = {.lex_state = 0}, [4531] = {.lex_state = 0}, [4532] = {.lex_state = 0}, - [4533] = {.lex_state = 96}, - [4534] = {.lex_state = 0}, + [4533] = {.lex_state = 0}, + [4534] = {.lex_state = 85}, [4535] = {.lex_state = 0}, [4536] = {.lex_state = 0}, - [4537] = {.lex_state = 0}, + [4537] = {.lex_state = 159}, [4538] = {.lex_state = 0}, [4539] = {.lex_state = 0}, [4540] = {.lex_state = 0}, @@ -22461,20 +22399,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4542] = {.lex_state = 0}, [4543] = {.lex_state = 0}, [4544] = {.lex_state = 0}, - [4545] = {.lex_state = 87}, + [4545] = {.lex_state = 85}, [4546] = {.lex_state = 0}, [4547] = {.lex_state = 0}, - [4548] = {.lex_state = 69}, + [4548] = {.lex_state = 0}, [4549] = {.lex_state = 0}, - [4550] = {.lex_state = 87}, + [4550] = {.lex_state = 0}, [4551] = {.lex_state = 0}, [4552] = {.lex_state = 0}, [4553] = {.lex_state = 0}, - [4554] = {.lex_state = 96}, + [4554] = {.lex_state = 0}, [4555] = {.lex_state = 0}, - [4556] = {.lex_state = 87}, + [4556] = {.lex_state = 0}, [4557] = {.lex_state = 0}, - [4558] = {.lex_state = 0}, + [4558] = {.lex_state = 159}, [4559] = {.lex_state = 0}, [4560] = {.lex_state = 0}, [4561] = {.lex_state = 0}, @@ -22486,23 +22424,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4567] = {.lex_state = 0}, [4568] = {.lex_state = 0}, [4569] = {.lex_state = 0}, - [4570] = {.lex_state = 96}, + [4570] = {.lex_state = 0}, [4571] = {.lex_state = 0}, - [4572] = {.lex_state = 96}, + [4572] = {.lex_state = 0}, [4573] = {.lex_state = 0}, - [4574] = {.lex_state = 0}, - [4575] = {.lex_state = 96}, + [4574] = {.lex_state = 159}, + [4575] = {.lex_state = 0}, [4576] = {.lex_state = 0}, - [4577] = {.lex_state = 0}, + [4577] = {.lex_state = 85}, [4578] = {.lex_state = 0}, - [4579] = {.lex_state = 0}, - [4580] = {.lex_state = 87}, + [4579] = {.lex_state = 159}, + [4580] = {.lex_state = 0}, [4581] = {.lex_state = 0}, - [4582] = {.lex_state = 87}, - [4583] = {.lex_state = 87}, - [4584] = {.lex_state = 0}, + [4582] = {.lex_state = 0}, + [4583] = {.lex_state = 0}, + [4584] = {.lex_state = 85}, [4585] = {.lex_state = 0}, - [4586] = {.lex_state = 0}, + [4586] = {.lex_state = 85}, [4587] = {.lex_state = 0}, [4588] = {.lex_state = 0}, [4589] = {.lex_state = 0}, @@ -22511,7 +22449,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4592] = {.lex_state = 0}, [4593] = {.lex_state = 0}, [4594] = {.lex_state = 0}, - [4595] = {.lex_state = 87}, + [4595] = {.lex_state = 0}, [4596] = {.lex_state = 0}, [4597] = {.lex_state = 0}, [4598] = {.lex_state = 0}, @@ -22521,27 +22459,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4602] = {.lex_state = 0}, [4603] = {.lex_state = 0}, [4604] = {.lex_state = 0}, - [4605] = {.lex_state = 0}, - [4606] = {.lex_state = 0}, - [4607] = {.lex_state = 0}, + [4605] = {.lex_state = 85}, + [4606] = {.lex_state = 85}, + [4607] = {.lex_state = 85}, [4608] = {.lex_state = 0}, - [4609] = {.lex_state = 87}, - [4610] = {.lex_state = 0}, - [4611] = {.lex_state = 0}, - [4612] = {.lex_state = 0}, + [4609] = {.lex_state = 0}, + [4610] = {.lex_state = 85}, + [4611] = {.lex_state = 85}, + [4612] = {.lex_state = 85}, [4613] = {.lex_state = 0}, - [4614] = {.lex_state = 0}, + [4614] = {.lex_state = 85}, [4615] = {.lex_state = 0}, [4616] = {.lex_state = 0}, [4617] = {.lex_state = 0}, [4618] = {.lex_state = 0}, - [4619] = {.lex_state = 0}, + [4619] = {.lex_state = 85}, [4620] = {.lex_state = 0}, - [4621] = {.lex_state = 87}, + [4621] = {.lex_state = 0}, [4622] = {.lex_state = 0}, [4623] = {.lex_state = 0}, [4624] = {.lex_state = 0}, - [4625] = {.lex_state = 0}, + [4625] = {.lex_state = 85}, [4626] = {.lex_state = 0}, [4627] = {.lex_state = 0}, [4628] = {.lex_state = 0}, @@ -22552,59 +22490,59 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4633] = {.lex_state = 0}, [4634] = {.lex_state = 0}, [4635] = {.lex_state = 0}, - [4636] = {.lex_state = 0}, + [4636] = {.lex_state = 69}, [4637] = {.lex_state = 0}, - [4638] = {.lex_state = 0}, + [4638] = {.lex_state = 85}, [4639] = {.lex_state = 0}, [4640] = {.lex_state = 0}, - [4641] = {.lex_state = 0}, + [4641] = {.lex_state = 159}, [4642] = {.lex_state = 0}, [4643] = {.lex_state = 0}, [4644] = {.lex_state = 0}, [4645] = {.lex_state = 0}, [4646] = {.lex_state = 0}, [4647] = {.lex_state = 0}, - [4648] = {.lex_state = 0}, + [4648] = {.lex_state = 85}, [4649] = {.lex_state = 0}, - [4650] = {.lex_state = 87}, + [4650] = {.lex_state = 0}, [4651] = {.lex_state = 0}, [4652] = {.lex_state = 0}, [4653] = {.lex_state = 0}, - [4654] = {.lex_state = 87}, + [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}, + [4660] = {.lex_state = 85}, [4661] = {.lex_state = 0}, [4662] = {.lex_state = 0}, [4663] = {.lex_state = 0}, [4664] = {.lex_state = 0}, - [4665] = {.lex_state = 87}, + [4665] = {.lex_state = 0}, [4666] = {.lex_state = 0}, [4667] = {.lex_state = 0}, [4668] = {.lex_state = 0}, [4669] = {.lex_state = 0}, - [4670] = {.lex_state = 87}, + [4670] = {.lex_state = 0}, [4671] = {.lex_state = 0}, [4672] = {.lex_state = 0}, [4673] = {.lex_state = 0}, [4674] = {.lex_state = 0}, [4675] = {.lex_state = 0}, [4676] = {.lex_state = 0}, - [4677] = {.lex_state = 0}, + [4677] = {.lex_state = 85}, [4678] = {.lex_state = 0}, [4679] = {.lex_state = 0}, [4680] = {.lex_state = 0}, - [4681] = {.lex_state = 0}, + [4681] = {.lex_state = 85}, [4682] = {.lex_state = 0}, [4683] = {.lex_state = 0}, [4684] = {.lex_state = 0}, - [4685] = {.lex_state = 87}, - [4686] = {.lex_state = 97}, + [4685] = {.lex_state = 0}, + [4686] = {.lex_state = 0}, [4687] = {.lex_state = 0}, - [4688] = {.lex_state = 97}, + [4688] = {.lex_state = 0}, [4689] = {.lex_state = 0}, [4690] = {.lex_state = 0}, [4691] = {.lex_state = 0}, @@ -22614,49 +22552,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4695] = {.lex_state = 0}, [4696] = {.lex_state = 0}, [4697] = {.lex_state = 0}, - [4698] = {.lex_state = 87}, - [4699] = {.lex_state = 87}, + [4698] = {.lex_state = 0}, + [4699] = {.lex_state = 0}, [4700] = {.lex_state = 0}, [4701] = {.lex_state = 0}, - [4702] = {.lex_state = 87}, + [4702] = {.lex_state = 0}, [4703] = {.lex_state = 0}, - [4704] = {.lex_state = 87}, + [4704] = {.lex_state = 0}, [4705] = {.lex_state = 0}, [4706] = {.lex_state = 0}, [4707] = {.lex_state = 0}, [4708] = {.lex_state = 0}, [4709] = {.lex_state = 0}, - [4710] = {.lex_state = 0}, + [4710] = {.lex_state = 85}, [4711] = {.lex_state = 0}, - [4712] = {.lex_state = 87}, + [4712] = {.lex_state = 160}, [4713] = {.lex_state = 0}, - [4714] = {.lex_state = 87}, - [4715] = {.lex_state = 87}, - [4716] = {.lex_state = 0}, + [4714] = {.lex_state = 0}, + [4715] = {.lex_state = 0}, + [4716] = {.lex_state = 85}, [4717] = {.lex_state = 0}, - [4718] = {.lex_state = 87}, + [4718] = {.lex_state = 85}, [4719] = {.lex_state = 0}, - [4720] = {.lex_state = 0}, + [4720] = {.lex_state = 85}, [4721] = {.lex_state = 0}, [4722] = {.lex_state = 0}, [4723] = {.lex_state = 0}, - [4724] = {.lex_state = 87}, + [4724] = {.lex_state = 0}, [4725] = {.lex_state = 0}, [4726] = {.lex_state = 0}, [4727] = {.lex_state = 0}, - [4728] = {.lex_state = 0}, + [4728] = {.lex_state = 85}, [4729] = {.lex_state = 0}, - [4730] = {.lex_state = 0}, + [4730] = {.lex_state = 85}, [4731] = {.lex_state = 0}, - [4732] = {.lex_state = 0}, + [4732] = {.lex_state = 85}, [4733] = {.lex_state = 0}, - [4734] = {.lex_state = 0}, + [4734] = {.lex_state = 85}, + [4735] = {.lex_state = 0}, + [4736] = {.lex_state = 0}, + [4737] = {.lex_state = 0}, + [4738] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [0] = { [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), + [sym_shebang] = ACTIONS(1), [sym_comment] = ACTIONS(3), [anon_sym_module] = ACTIONS(1), [anon_sym_import] = ACTIONS(1), @@ -22785,110493 +22728,111289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(4671), - [sym_module_clause] = STATE(2), - [sym_import_list] = STATE(4), - [sym_import_declaration] = STATE(1571), - [sym_const_declaration] = STATE(1553), - [sym_global_var_declaration] = STATE(1553), - [sym_type_declaration] = STATE(1553), - [sym_function_declaration] = STATE(1553), - [sym_static_method_declaration] = STATE(1553), - [sym_struct_declaration] = STATE(1553), - [sym_enum_declaration] = STATE(1553), - [sym_interface_declaration] = STATE(1553), - [sym__expression] = STATE(261), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_strictly_expression_list] = STATE(1557), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_visibility_modifiers] = STATE(3517), - [sym_mutability_modifiers] = STATE(745), - [sym_mutable_expression] = STATE(3352), - [sym_expression_list] = STATE(3395), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement] = STATE(1553), - [sym_simple_statement] = STATE(1565), - [sym_assert_statement] = STATE(1565), - [sym_append_statement] = STATE(1565), - [sym_send_statement] = STATE(1565), - [sym_var_declaration] = STATE(1557), - [sym_assignment_statement] = STATE(1557), - [sym_block] = STATE(1565), - [sym_defer_statement] = STATE(1565), - [sym_goto_statement] = STATE(1565), - [sym_break_statement] = STATE(1565), - [sym_continue_statement] = STATE(1565), - [sym_return_statement] = STATE(1565), - [sym_label_definition] = STATE(58), - [sym_labeled_statement] = STATE(1565), - [sym_compile_time_for_statement] = STATE(1565), - [sym_for_statement] = STATE(1565), - [sym_hash_statement] = STATE(1565), - [sym_asm_statement] = STATE(1565), - [sym_attributes] = STATE(3443), - [sym_attribute] = STATE(3401), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_import_list_repeat1] = STATE(1571), - [aux_sym_attributes_repeat1] = STATE(3413), + [sym_source_file] = STATE(4696), + [sym_module_clause] = STATE(3), + [sym_import_list] = STATE(6), + [sym_import_declaration] = STATE(1559), + [sym_const_declaration] = STATE(1566), + [sym_global_var_declaration] = STATE(1566), + [sym_type_declaration] = STATE(1566), + [sym_function_declaration] = STATE(1566), + [sym_static_method_declaration] = STATE(1566), + [sym_struct_declaration] = STATE(1566), + [sym_enum_declaration] = STATE(1566), + [sym_interface_declaration] = STATE(1566), + [sym__expression] = STATE(271), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_strictly_expression_list] = STATE(1544), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_visibility_modifiers] = STATE(3540), + [sym_mutability_modifiers] = STATE(631), + [sym_mutable_expression] = STATE(3360), + [sym_expression_list] = STATE(3380), + [sym_plain_type] = STATE(4117), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1566), + [sym_simple_statement] = STATE(1530), + [sym_assert_statement] = STATE(1530), + [sym_append_statement] = STATE(1530), + [sym_send_statement] = STATE(1530), + [sym_var_declaration] = STATE(1544), + [sym_assignment_statement] = STATE(1544), + [sym_block] = STATE(1530), + [sym_defer_statement] = STATE(1530), + [sym_goto_statement] = STATE(1530), + [sym_break_statement] = STATE(1530), + [sym_continue_statement] = STATE(1530), + [sym_return_statement] = STATE(1530), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(1530), + [sym_compile_time_for_statement] = STATE(1530), + [sym_for_statement] = STATE(1530), + [sym_hash_statement] = STATE(1530), + [sym_asm_statement] = STATE(1530), + [sym_attributes] = STATE(3448), + [sym_attribute] = STATE(3377), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_import_list_repeat1] = STATE(1559), + [aux_sym_attributes_repeat1] = STATE(3416), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), + [sym_shebang] = ACTIONS(9), [sym_comment] = ACTIONS(3), - [anon_sym_module] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym___global] = ACTIONS(21), - [anon_sym_type] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_pub] = ACTIONS(35), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_enum] = ACTIONS(39), - [anon_sym_interface] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(89), - [anon_sym_defer] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_break] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(97), - [anon_sym_return] = ACTIONS(99), - [anon_sym_DOLLARfor] = ACTIONS(101), - [anon_sym_for] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(105), - [anon_sym_asm] = ACTIONS(107), - [anon_sym_AT_LBRACK] = ACTIONS(109), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), + [anon_sym_module] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_const] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym___global] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_pub] = ACTIONS(37), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_interface] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(91), + [anon_sym_defer] = ACTIONS(93), + [anon_sym_goto] = ACTIONS(95), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_return] = ACTIONS(101), + [anon_sym_DOLLARfor] = ACTIONS(103), + [anon_sym_for] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(107), + [anon_sym_asm] = ACTIONS(109), + [anon_sym_AT_LBRACK] = ACTIONS(111), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [2] = { - [sym_import_list] = STATE(7), - [sym_import_declaration] = STATE(1571), - [sym_const_declaration] = STATE(1553), - [sym_global_var_declaration] = STATE(1553), - [sym_type_declaration] = STATE(1553), - [sym_function_declaration] = STATE(1553), - [sym_static_method_declaration] = STATE(1553), - [sym_struct_declaration] = STATE(1553), - [sym_enum_declaration] = STATE(1553), - [sym_interface_declaration] = STATE(1553), - [sym__expression] = STATE(261), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_strictly_expression_list] = STATE(1557), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_visibility_modifiers] = STATE(3517), - [sym_mutability_modifiers] = STATE(745), - [sym_mutable_expression] = STATE(3352), - [sym_expression_list] = STATE(3395), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement] = STATE(1553), - [sym_simple_statement] = STATE(1565), - [sym_assert_statement] = STATE(1565), - [sym_append_statement] = STATE(1565), - [sym_send_statement] = STATE(1565), - [sym_var_declaration] = STATE(1557), - [sym_assignment_statement] = STATE(1557), - [sym_block] = STATE(1565), - [sym_defer_statement] = STATE(1565), - [sym_goto_statement] = STATE(1565), - [sym_break_statement] = STATE(1565), - [sym_continue_statement] = STATE(1565), - [sym_return_statement] = STATE(1565), - [sym_label_definition] = STATE(58), - [sym_labeled_statement] = STATE(1565), - [sym_compile_time_for_statement] = STATE(1565), - [sym_for_statement] = STATE(1565), - [sym_hash_statement] = STATE(1565), - [sym_asm_statement] = STATE(1565), - [sym_attributes] = STATE(3463), - [sym_attribute] = STATE(3401), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_import_list_repeat1] = STATE(1571), - [aux_sym_attributes_repeat1] = STATE(3413), - [ts_builtin_sym_end] = ACTIONS(123), + [sym_module_clause] = STATE(4), + [sym_import_list] = STATE(5), + [sym_import_declaration] = STATE(1559), + [sym_const_declaration] = STATE(1566), + [sym_global_var_declaration] = STATE(1566), + [sym_type_declaration] = STATE(1566), + [sym_function_declaration] = STATE(1566), + [sym_static_method_declaration] = STATE(1566), + [sym_struct_declaration] = STATE(1566), + [sym_enum_declaration] = STATE(1566), + [sym_interface_declaration] = STATE(1566), + [sym__expression] = STATE(271), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_strictly_expression_list] = STATE(1544), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_visibility_modifiers] = STATE(3540), + [sym_mutability_modifiers] = STATE(631), + [sym_mutable_expression] = STATE(3360), + [sym_expression_list] = STATE(3380), + [sym_plain_type] = STATE(4117), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1566), + [sym_simple_statement] = STATE(1530), + [sym_assert_statement] = STATE(1530), + [sym_append_statement] = STATE(1530), + [sym_send_statement] = STATE(1530), + [sym_var_declaration] = STATE(1544), + [sym_assignment_statement] = STATE(1544), + [sym_block] = STATE(1530), + [sym_defer_statement] = STATE(1530), + [sym_goto_statement] = STATE(1530), + [sym_break_statement] = STATE(1530), + [sym_continue_statement] = STATE(1530), + [sym_return_statement] = STATE(1530), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(1530), + [sym_compile_time_for_statement] = STATE(1530), + [sym_for_statement] = STATE(1530), + [sym_hash_statement] = STATE(1530), + [sym_asm_statement] = STATE(1530), + [sym_attributes] = STATE(3448), + [sym_attribute] = STATE(3377), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_import_list_repeat1] = STATE(1559), + [aux_sym_attributes_repeat1] = STATE(3416), + [ts_builtin_sym_end] = ACTIONS(125), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), - [anon_sym_import] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym___global] = ACTIONS(21), - [anon_sym_type] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_pub] = ACTIONS(35), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_enum] = ACTIONS(39), - [anon_sym_interface] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(89), - [anon_sym_defer] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_break] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(97), - [anon_sym_return] = ACTIONS(99), - [anon_sym_DOLLARfor] = ACTIONS(101), - [anon_sym_for] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(105), - [anon_sym_asm] = ACTIONS(107), - [anon_sym_AT_LBRACK] = ACTIONS(109), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), + [anon_sym_module] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_const] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym___global] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_pub] = ACTIONS(37), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_interface] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(91), + [anon_sym_defer] = ACTIONS(93), + [anon_sym_goto] = ACTIONS(95), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_return] = ACTIONS(101), + [anon_sym_DOLLARfor] = ACTIONS(103), + [anon_sym_for] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(127), + [anon_sym_asm] = ACTIONS(109), + [anon_sym_AT_LBRACK] = ACTIONS(111), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [3] = { - [sym_const_declaration] = STATE(1553), - [sym_global_var_declaration] = STATE(1553), - [sym_type_declaration] = STATE(1553), - [sym_function_declaration] = STATE(1553), - [sym_static_method_declaration] = STATE(1553), - [sym_struct_declaration] = STATE(1553), - [sym_enum_declaration] = STATE(1553), - [sym_interface_declaration] = STATE(1553), - [sym__expression] = STATE(261), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_strictly_expression_list] = STATE(1557), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_visibility_modifiers] = STATE(3517), - [sym_mutability_modifiers] = STATE(745), - [sym_mutable_expression] = STATE(3352), - [sym_expression_list] = STATE(3395), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement] = STATE(1553), - [sym_simple_statement] = STATE(1565), - [sym_assert_statement] = STATE(1565), - [sym_append_statement] = STATE(1565), - [sym_send_statement] = STATE(1565), - [sym_var_declaration] = STATE(1557), - [sym_assignment_statement] = STATE(1557), - [sym_block] = STATE(1565), - [sym_defer_statement] = STATE(1565), - [sym_goto_statement] = STATE(1565), - [sym_break_statement] = STATE(1565), - [sym_continue_statement] = STATE(1565), - [sym_return_statement] = STATE(1565), - [sym_label_definition] = STATE(58), - [sym_labeled_statement] = STATE(1565), - [sym_compile_time_for_statement] = STATE(1565), - [sym_for_statement] = STATE(1565), - [sym_hash_statement] = STATE(1565), - [sym_asm_statement] = STATE(1565), - [sym_attributes] = STATE(3463), - [sym_attribute] = STATE(3401), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_attributes_repeat1] = STATE(3413), + [sym_import_list] = STATE(5), + [sym_import_declaration] = STATE(1559), + [sym_const_declaration] = STATE(1566), + [sym_global_var_declaration] = STATE(1566), + [sym_type_declaration] = STATE(1566), + [sym_function_declaration] = STATE(1566), + [sym_static_method_declaration] = STATE(1566), + [sym_struct_declaration] = STATE(1566), + [sym_enum_declaration] = STATE(1566), + [sym_interface_declaration] = STATE(1566), + [sym__expression] = STATE(271), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_strictly_expression_list] = STATE(1544), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_visibility_modifiers] = STATE(3540), + [sym_mutability_modifiers] = STATE(631), + [sym_mutable_expression] = STATE(3360), + [sym_expression_list] = STATE(3380), + [sym_plain_type] = STATE(4117), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1566), + [sym_simple_statement] = STATE(1530), + [sym_assert_statement] = STATE(1530), + [sym_append_statement] = STATE(1530), + [sym_send_statement] = STATE(1530), + [sym_var_declaration] = STATE(1544), + [sym_assignment_statement] = STATE(1544), + [sym_block] = STATE(1530), + [sym_defer_statement] = STATE(1530), + [sym_goto_statement] = STATE(1530), + [sym_break_statement] = STATE(1530), + [sym_continue_statement] = STATE(1530), + [sym_return_statement] = STATE(1530), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(1530), + [sym_compile_time_for_statement] = STATE(1530), + [sym_for_statement] = STATE(1530), + [sym_hash_statement] = STATE(1530), + [sym_asm_statement] = STATE(1530), + [sym_attributes] = STATE(3450), + [sym_attribute] = STATE(3377), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_import_list_repeat1] = STATE(1559), + [aux_sym_attributes_repeat1] = STATE(3416), [ts_builtin_sym_end] = ACTIONS(125), - [sym_identifier] = ACTIONS(127), + [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(130), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_const] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym___global] = ACTIONS(142), - [anon_sym_type] = ACTIONS(145), - [anon_sym_fn] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_struct] = ACTIONS(157), - [anon_sym_union] = ACTIONS(160), - [anon_sym_pub] = ACTIONS(163), - [anon_sym_mut] = ACTIONS(166), - [anon_sym_enum] = ACTIONS(169), - [anon_sym_interface] = ACTIONS(172), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(178), - [anon_sym_go] = ACTIONS(181), - [anon_sym_spawn] = ACTIONS(184), - [anon_sym_json_DOTdecode] = ACTIONS(187), - [anon_sym_LBRACK2] = ACTIONS(190), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(151), - [anon_sym_AMP] = ACTIONS(193), - [anon_sym_LT_DASH] = ACTIONS(196), - [sym_none] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_nil] = ACTIONS(199), - [anon_sym_if] = ACTIONS(202), - [anon_sym_DOLLARif] = ACTIONS(205), - [anon_sym_match] = ACTIONS(208), - [anon_sym_select] = ACTIONS(211), - [anon_sym_lock] = ACTIONS(214), - [anon_sym_rlock] = ACTIONS(214), - [anon_sym_unsafe] = ACTIONS(217), - [anon_sym_sql] = ACTIONS(220), - [sym_int_literal] = ACTIONS(199), - [sym_float_literal] = ACTIONS(223), - [sym_rune_literal] = ACTIONS(223), - [anon_sym_AT] = ACTIONS(226), - [anon_sym_shared] = ACTIONS(229), - [anon_sym_map_LBRACK] = ACTIONS(232), - [anon_sym_chan] = ACTIONS(235), - [anon_sym_thread] = ACTIONS(238), - [anon_sym_atomic] = ACTIONS(241), - [anon_sym_assert] = ACTIONS(244), - [anon_sym_defer] = ACTIONS(247), - [anon_sym_goto] = ACTIONS(250), - [anon_sym_break] = ACTIONS(253), - [anon_sym_continue] = ACTIONS(256), - [anon_sym_return] = ACTIONS(259), - [anon_sym_DOLLARfor] = ACTIONS(262), - [anon_sym_for] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(268), - [anon_sym_asm] = ACTIONS(271), - [anon_sym_AT_LBRACK] = ACTIONS(274), - [sym___double_quote] = ACTIONS(277), - [sym___single_quote] = ACTIONS(280), - [sym___c_double_quote] = ACTIONS(283), - [sym___c_single_quote] = ACTIONS(286), - [sym___r_double_quote] = ACTIONS(289), - [sym___r_single_quote] = ACTIONS(292), + [anon_sym_import] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_const] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym___global] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_pub] = ACTIONS(37), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_interface] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(91), + [anon_sym_defer] = ACTIONS(93), + [anon_sym_goto] = ACTIONS(95), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_return] = ACTIONS(101), + [anon_sym_DOLLARfor] = ACTIONS(103), + [anon_sym_for] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(127), + [anon_sym_asm] = ACTIONS(109), + [anon_sym_AT_LBRACK] = ACTIONS(111), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [4] = { - [sym_const_declaration] = STATE(1553), - [sym_global_var_declaration] = STATE(1553), - [sym_type_declaration] = STATE(1553), - [sym_function_declaration] = STATE(1553), - [sym_static_method_declaration] = STATE(1553), - [sym_struct_declaration] = STATE(1553), - [sym_enum_declaration] = STATE(1553), - [sym_interface_declaration] = STATE(1553), - [sym__expression] = STATE(261), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_strictly_expression_list] = STATE(1557), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_visibility_modifiers] = STATE(3517), - [sym_mutability_modifiers] = STATE(745), - [sym_mutable_expression] = STATE(3352), - [sym_expression_list] = STATE(3395), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement] = STATE(1553), - [sym_simple_statement] = STATE(1565), - [sym_assert_statement] = STATE(1565), - [sym_append_statement] = STATE(1565), - [sym_send_statement] = STATE(1565), - [sym_var_declaration] = STATE(1557), - [sym_assignment_statement] = STATE(1557), - [sym_block] = STATE(1565), - [sym_defer_statement] = STATE(1565), - [sym_goto_statement] = STATE(1565), - [sym_break_statement] = STATE(1565), - [sym_continue_statement] = STATE(1565), - [sym_return_statement] = STATE(1565), - [sym_label_definition] = STATE(58), - [sym_labeled_statement] = STATE(1565), - [sym_compile_time_for_statement] = STATE(1565), - [sym_for_statement] = STATE(1565), - [sym_hash_statement] = STATE(1565), - [sym_asm_statement] = STATE(1565), - [sym_attributes] = STATE(3463), - [sym_attribute] = STATE(3401), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_attributes_repeat1] = STATE(3413), - [ts_builtin_sym_end] = ACTIONS(123), + [sym_import_list] = STATE(11), + [sym_import_declaration] = STATE(1559), + [sym_const_declaration] = STATE(1566), + [sym_global_var_declaration] = STATE(1566), + [sym_type_declaration] = STATE(1566), + [sym_function_declaration] = STATE(1566), + [sym_static_method_declaration] = STATE(1566), + [sym_struct_declaration] = STATE(1566), + [sym_enum_declaration] = STATE(1566), + [sym_interface_declaration] = STATE(1566), + [sym__expression] = STATE(271), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_strictly_expression_list] = STATE(1544), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_visibility_modifiers] = STATE(3540), + [sym_mutability_modifiers] = STATE(631), + [sym_mutable_expression] = STATE(3360), + [sym_expression_list] = STATE(3380), + [sym_plain_type] = STATE(4117), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1566), + [sym_simple_statement] = STATE(1530), + [sym_assert_statement] = STATE(1530), + [sym_append_statement] = STATE(1530), + [sym_send_statement] = STATE(1530), + [sym_var_declaration] = STATE(1544), + [sym_assignment_statement] = STATE(1544), + [sym_block] = STATE(1530), + [sym_defer_statement] = STATE(1530), + [sym_goto_statement] = STATE(1530), + [sym_break_statement] = STATE(1530), + [sym_continue_statement] = STATE(1530), + [sym_return_statement] = STATE(1530), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(1530), + [sym_compile_time_for_statement] = STATE(1530), + [sym_for_statement] = STATE(1530), + [sym_hash_statement] = STATE(1530), + [sym_asm_statement] = STATE(1530), + [sym_attributes] = STATE(3450), + [sym_attribute] = STATE(3377), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_import_list_repeat1] = STATE(1559), + [aux_sym_attributes_repeat1] = STATE(3416), + [ts_builtin_sym_end] = ACTIONS(129), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym___global] = ACTIONS(21), - [anon_sym_type] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_pub] = ACTIONS(35), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_enum] = ACTIONS(39), - [anon_sym_interface] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(89), - [anon_sym_defer] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_break] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(97), - [anon_sym_return] = ACTIONS(99), - [anon_sym_DOLLARfor] = ACTIONS(101), - [anon_sym_for] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(105), - [anon_sym_asm] = ACTIONS(107), - [anon_sym_AT_LBRACK] = ACTIONS(109), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), + [anon_sym_import] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_const] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym___global] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_pub] = ACTIONS(37), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_interface] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(91), + [anon_sym_defer] = ACTIONS(93), + [anon_sym_goto] = ACTIONS(95), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_return] = ACTIONS(101), + [anon_sym_DOLLARfor] = ACTIONS(103), + [anon_sym_for] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(127), + [anon_sym_asm] = ACTIONS(109), + [anon_sym_AT_LBRACK] = ACTIONS(111), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [5] = { - [sym_const_declaration] = STATE(1553), - [sym_global_var_declaration] = STATE(1553), - [sym_type_declaration] = STATE(1553), - [sym_function_declaration] = STATE(1553), - [sym_static_method_declaration] = STATE(1553), - [sym_struct_declaration] = STATE(1553), - [sym_enum_declaration] = STATE(1553), - [sym_interface_declaration] = STATE(1553), - [sym__expression] = STATE(261), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_strictly_expression_list] = STATE(1557), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_visibility_modifiers] = STATE(3517), - [sym_mutability_modifiers] = STATE(745), - [sym_mutable_expression] = STATE(3352), - [sym_expression_list] = STATE(3395), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement] = STATE(1553), - [sym_simple_statement] = STATE(1565), - [sym_assert_statement] = STATE(1565), - [sym_append_statement] = STATE(1565), - [sym_send_statement] = STATE(1565), - [sym_var_declaration] = STATE(1557), - [sym_assignment_statement] = STATE(1557), - [sym_block] = STATE(1565), - [sym_defer_statement] = STATE(1565), - [sym_goto_statement] = STATE(1565), - [sym_break_statement] = STATE(1565), - [sym_continue_statement] = STATE(1565), - [sym_return_statement] = STATE(1565), - [sym_label_definition] = STATE(58), - [sym_labeled_statement] = STATE(1565), - [sym_compile_time_for_statement] = STATE(1565), - [sym_for_statement] = STATE(1565), - [sym_hash_statement] = STATE(1565), - [sym_asm_statement] = STATE(1565), - [sym_attributes] = STATE(3463), - [sym_attribute] = STATE(3401), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_attributes_repeat1] = STATE(3413), - [ts_builtin_sym_end] = ACTIONS(295), + [sym_const_declaration] = STATE(1566), + [sym_global_var_declaration] = STATE(1566), + [sym_type_declaration] = STATE(1566), + [sym_function_declaration] = STATE(1566), + [sym_static_method_declaration] = STATE(1566), + [sym_struct_declaration] = STATE(1566), + [sym_enum_declaration] = STATE(1566), + [sym_interface_declaration] = STATE(1566), + [sym__expression] = STATE(271), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_strictly_expression_list] = STATE(1544), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_visibility_modifiers] = STATE(3540), + [sym_mutability_modifiers] = STATE(631), + [sym_mutable_expression] = STATE(3360), + [sym_expression_list] = STATE(3380), + [sym_plain_type] = STATE(4117), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1566), + [sym_simple_statement] = STATE(1530), + [sym_assert_statement] = STATE(1530), + [sym_append_statement] = STATE(1530), + [sym_send_statement] = STATE(1530), + [sym_var_declaration] = STATE(1544), + [sym_assignment_statement] = STATE(1544), + [sym_block] = STATE(1530), + [sym_defer_statement] = STATE(1530), + [sym_goto_statement] = STATE(1530), + [sym_break_statement] = STATE(1530), + [sym_continue_statement] = STATE(1530), + [sym_return_statement] = STATE(1530), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(1530), + [sym_compile_time_for_statement] = STATE(1530), + [sym_for_statement] = STATE(1530), + [sym_hash_statement] = STATE(1530), + [sym_asm_statement] = STATE(1530), + [sym_attributes] = STATE(3450), + [sym_attribute] = STATE(3377), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_attributes_repeat1] = STATE(3416), + [ts_builtin_sym_end] = ACTIONS(129), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym___global] = ACTIONS(21), - [anon_sym_type] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_pub] = ACTIONS(35), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_enum] = ACTIONS(39), - [anon_sym_interface] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(89), - [anon_sym_defer] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_break] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(97), - [anon_sym_return] = ACTIONS(99), - [anon_sym_DOLLARfor] = ACTIONS(101), - [anon_sym_for] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(105), - [anon_sym_asm] = ACTIONS(107), - [anon_sym_AT_LBRACK] = ACTIONS(109), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_const] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym___global] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_pub] = ACTIONS(37), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_interface] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(91), + [anon_sym_defer] = ACTIONS(93), + [anon_sym_goto] = ACTIONS(95), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_return] = ACTIONS(101), + [anon_sym_DOLLARfor] = ACTIONS(103), + [anon_sym_for] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(127), + [anon_sym_asm] = ACTIONS(109), + [anon_sym_AT_LBRACK] = ACTIONS(111), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [6] = { - [sym_const_declaration] = STATE(1553), - [sym_global_var_declaration] = STATE(1553), - [sym_type_declaration] = STATE(1553), - [sym_function_declaration] = STATE(1553), - [sym_static_method_declaration] = STATE(1553), - [sym_struct_declaration] = STATE(1553), - [sym_enum_declaration] = STATE(1553), - [sym_interface_declaration] = STATE(1553), - [sym__expression] = STATE(261), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_strictly_expression_list] = STATE(1557), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_visibility_modifiers] = STATE(3517), - [sym_mutability_modifiers] = STATE(745), - [sym_mutable_expression] = STATE(3352), - [sym_expression_list] = STATE(3395), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement] = STATE(1553), - [sym_simple_statement] = STATE(1565), - [sym_assert_statement] = STATE(1565), - [sym_append_statement] = STATE(1565), - [sym_send_statement] = STATE(1565), - [sym_var_declaration] = STATE(1557), - [sym_assignment_statement] = STATE(1557), - [sym_block] = STATE(1565), - [sym_defer_statement] = STATE(1565), - [sym_goto_statement] = STATE(1565), - [sym_break_statement] = STATE(1565), - [sym_continue_statement] = STATE(1565), - [sym_return_statement] = STATE(1565), - [sym_label_definition] = STATE(58), - [sym_labeled_statement] = STATE(1565), - [sym_compile_time_for_statement] = STATE(1565), - [sym_for_statement] = STATE(1565), - [sym_hash_statement] = STATE(1565), - [sym_asm_statement] = STATE(1565), - [sym_attributes] = STATE(3463), - [sym_attribute] = STATE(3401), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_attributes_repeat1] = STATE(3413), - [ts_builtin_sym_end] = ACTIONS(297), + [sym_const_declaration] = STATE(1566), + [sym_global_var_declaration] = STATE(1566), + [sym_type_declaration] = STATE(1566), + [sym_function_declaration] = STATE(1566), + [sym_static_method_declaration] = STATE(1566), + [sym_struct_declaration] = STATE(1566), + [sym_enum_declaration] = STATE(1566), + [sym_interface_declaration] = STATE(1566), + [sym__expression] = STATE(271), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_strictly_expression_list] = STATE(1544), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_visibility_modifiers] = STATE(3540), + [sym_mutability_modifiers] = STATE(631), + [sym_mutable_expression] = STATE(3360), + [sym_expression_list] = STATE(3380), + [sym_plain_type] = STATE(4117), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1566), + [sym_simple_statement] = STATE(1530), + [sym_assert_statement] = STATE(1530), + [sym_append_statement] = STATE(1530), + [sym_send_statement] = STATE(1530), + [sym_var_declaration] = STATE(1544), + [sym_assignment_statement] = STATE(1544), + [sym_block] = STATE(1530), + [sym_defer_statement] = STATE(1530), + [sym_goto_statement] = STATE(1530), + [sym_break_statement] = STATE(1530), + [sym_continue_statement] = STATE(1530), + [sym_return_statement] = STATE(1530), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(1530), + [sym_compile_time_for_statement] = STATE(1530), + [sym_for_statement] = STATE(1530), + [sym_hash_statement] = STATE(1530), + [sym_asm_statement] = STATE(1530), + [sym_attributes] = STATE(3450), + [sym_attribute] = STATE(3377), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_attributes_repeat1] = STATE(3416), + [ts_builtin_sym_end] = ACTIONS(125), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym___global] = ACTIONS(21), - [anon_sym_type] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_pub] = ACTIONS(35), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_enum] = ACTIONS(39), - [anon_sym_interface] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(89), - [anon_sym_defer] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_break] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(97), - [anon_sym_return] = ACTIONS(99), - [anon_sym_DOLLARfor] = ACTIONS(101), - [anon_sym_for] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(105), - [anon_sym_asm] = ACTIONS(107), - [anon_sym_AT_LBRACK] = ACTIONS(109), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_const] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym___global] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_pub] = ACTIONS(37), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_interface] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(91), + [anon_sym_defer] = ACTIONS(93), + [anon_sym_goto] = ACTIONS(95), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_return] = ACTIONS(101), + [anon_sym_DOLLARfor] = ACTIONS(103), + [anon_sym_for] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(127), + [anon_sym_asm] = ACTIONS(109), + [anon_sym_AT_LBRACK] = ACTIONS(111), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [7] = { - [sym_const_declaration] = STATE(1553), - [sym_global_var_declaration] = STATE(1553), - [sym_type_declaration] = STATE(1553), - [sym_function_declaration] = STATE(1553), - [sym_static_method_declaration] = STATE(1553), - [sym_struct_declaration] = STATE(1553), - [sym_enum_declaration] = STATE(1553), - [sym_interface_declaration] = STATE(1553), - [sym__expression] = STATE(261), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_strictly_expression_list] = STATE(1557), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_visibility_modifiers] = STATE(3517), - [sym_mutability_modifiers] = STATE(745), - [sym_mutable_expression] = STATE(3352), - [sym_expression_list] = STATE(3395), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement] = STATE(1553), - [sym_simple_statement] = STATE(1565), - [sym_assert_statement] = STATE(1565), - [sym_append_statement] = STATE(1565), - [sym_send_statement] = STATE(1565), - [sym_var_declaration] = STATE(1557), - [sym_assignment_statement] = STATE(1557), - [sym_block] = STATE(1565), - [sym_defer_statement] = STATE(1565), - [sym_goto_statement] = STATE(1565), - [sym_break_statement] = STATE(1565), - [sym_continue_statement] = STATE(1565), - [sym_return_statement] = STATE(1565), - [sym_label_definition] = STATE(58), - [sym_labeled_statement] = STATE(1565), - [sym_compile_time_for_statement] = STATE(1565), - [sym_for_statement] = STATE(1565), - [sym_hash_statement] = STATE(1565), - [sym_asm_statement] = STATE(1565), - [sym_attributes] = STATE(3463), - [sym_attribute] = STATE(3401), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_attributes_repeat1] = STATE(3413), - [ts_builtin_sym_end] = ACTIONS(297), + [sym_const_declaration] = STATE(1566), + [sym_global_var_declaration] = STATE(1566), + [sym_type_declaration] = STATE(1566), + [sym_function_declaration] = STATE(1566), + [sym_static_method_declaration] = STATE(1566), + [sym_struct_declaration] = STATE(1566), + [sym_enum_declaration] = STATE(1566), + [sym_interface_declaration] = STATE(1566), + [sym__expression] = STATE(271), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_strictly_expression_list] = STATE(1544), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_visibility_modifiers] = STATE(3540), + [sym_mutability_modifiers] = STATE(631), + [sym_mutable_expression] = STATE(3360), + [sym_expression_list] = STATE(3380), + [sym_plain_type] = STATE(4117), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1566), + [sym_simple_statement] = STATE(1530), + [sym_assert_statement] = STATE(1530), + [sym_append_statement] = STATE(1530), + [sym_send_statement] = STATE(1530), + [sym_var_declaration] = STATE(1544), + [sym_assignment_statement] = STATE(1544), + [sym_block] = STATE(1530), + [sym_defer_statement] = STATE(1530), + [sym_goto_statement] = STATE(1530), + [sym_break_statement] = STATE(1530), + [sym_continue_statement] = STATE(1530), + [sym_return_statement] = STATE(1530), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(1530), + [sym_compile_time_for_statement] = STATE(1530), + [sym_for_statement] = STATE(1530), + [sym_hash_statement] = STATE(1530), + [sym_asm_statement] = STATE(1530), + [sym_attributes] = STATE(3450), + [sym_attribute] = STATE(3377), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_attributes_repeat1] = STATE(3416), + [ts_builtin_sym_end] = ACTIONS(125), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym___global] = ACTIONS(21), - [anon_sym_type] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_pub] = ACTIONS(35), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_enum] = ACTIONS(39), - [anon_sym_interface] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(89), - [anon_sym_defer] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_break] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(97), - [anon_sym_return] = ACTIONS(99), - [anon_sym_DOLLARfor] = ACTIONS(101), - [anon_sym_for] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(105), - [anon_sym_asm] = ACTIONS(107), - [anon_sym_AT_LBRACK] = ACTIONS(109), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_const] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym___global] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_pub] = ACTIONS(37), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_interface] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(91), + [anon_sym_defer] = ACTIONS(93), + [anon_sym_goto] = ACTIONS(95), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_return] = ACTIONS(101), + [anon_sym_DOLLARfor] = ACTIONS(103), + [anon_sym_for] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(127), + [anon_sym_asm] = ACTIONS(109), + [anon_sym_AT_LBRACK] = ACTIONS(111), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [8] = { - [sym_const_declaration] = STATE(1553), - [sym_global_var_declaration] = STATE(1553), - [sym_type_declaration] = STATE(1553), - [sym_function_declaration] = STATE(1553), - [sym_static_method_declaration] = STATE(1553), - [sym_struct_declaration] = STATE(1553), - [sym_enum_declaration] = STATE(1553), - [sym_interface_declaration] = STATE(1553), - [sym__expression] = STATE(261), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_strictly_expression_list] = STATE(1557), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_visibility_modifiers] = STATE(3517), - [sym_mutability_modifiers] = STATE(745), - [sym_mutable_expression] = STATE(3352), - [sym_expression_list] = STATE(3395), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement] = STATE(1553), - [sym_simple_statement] = STATE(1565), - [sym_assert_statement] = STATE(1565), - [sym_append_statement] = STATE(1565), - [sym_send_statement] = STATE(1565), - [sym_var_declaration] = STATE(1557), - [sym_assignment_statement] = STATE(1557), - [sym_block] = STATE(1565), - [sym_defer_statement] = STATE(1565), - [sym_goto_statement] = STATE(1565), - [sym_break_statement] = STATE(1565), - [sym_continue_statement] = STATE(1565), - [sym_return_statement] = STATE(1565), - [sym_label_definition] = STATE(58), - [sym_labeled_statement] = STATE(1565), - [sym_compile_time_for_statement] = STATE(1565), - [sym_for_statement] = STATE(1565), - [sym_hash_statement] = STATE(1565), - [sym_asm_statement] = STATE(1565), - [sym_attributes] = STATE(3463), - [sym_attribute] = STATE(3401), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_attributes_repeat1] = STATE(3413), - [ts_builtin_sym_end] = ACTIONS(123), + [sym_const_declaration] = STATE(1566), + [sym_global_var_declaration] = STATE(1566), + [sym_type_declaration] = STATE(1566), + [sym_function_declaration] = STATE(1566), + [sym_static_method_declaration] = STATE(1566), + [sym_struct_declaration] = STATE(1566), + [sym_enum_declaration] = STATE(1566), + [sym_interface_declaration] = STATE(1566), + [sym__expression] = STATE(271), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_strictly_expression_list] = STATE(1544), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_visibility_modifiers] = STATE(3540), + [sym_mutability_modifiers] = STATE(631), + [sym_mutable_expression] = STATE(3360), + [sym_expression_list] = STATE(3380), + [sym_plain_type] = STATE(4117), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1566), + [sym_simple_statement] = STATE(1530), + [sym_assert_statement] = STATE(1530), + [sym_append_statement] = STATE(1530), + [sym_send_statement] = STATE(1530), + [sym_var_declaration] = STATE(1544), + [sym_assignment_statement] = STATE(1544), + [sym_block] = STATE(1530), + [sym_defer_statement] = STATE(1530), + [sym_goto_statement] = STATE(1530), + [sym_break_statement] = STATE(1530), + [sym_continue_statement] = STATE(1530), + [sym_return_statement] = STATE(1530), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(1530), + [sym_compile_time_for_statement] = STATE(1530), + [sym_for_statement] = STATE(1530), + [sym_hash_statement] = STATE(1530), + [sym_asm_statement] = STATE(1530), + [sym_attributes] = STATE(3450), + [sym_attribute] = STATE(3377), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_attributes_repeat1] = STATE(3416), + [ts_builtin_sym_end] = ACTIONS(131), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym___global] = ACTIONS(21), - [anon_sym_type] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_pub] = ACTIONS(35), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_enum] = ACTIONS(39), - [anon_sym_interface] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(89), - [anon_sym_defer] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_break] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(97), - [anon_sym_return] = ACTIONS(99), - [anon_sym_DOLLARfor] = ACTIONS(101), - [anon_sym_for] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(105), - [anon_sym_asm] = ACTIONS(107), - [anon_sym_AT_LBRACK] = ACTIONS(109), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_const] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym___global] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_pub] = ACTIONS(37), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_interface] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(91), + [anon_sym_defer] = ACTIONS(93), + [anon_sym_goto] = ACTIONS(95), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_return] = ACTIONS(101), + [anon_sym_DOLLARfor] = ACTIONS(103), + [anon_sym_for] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(127), + [anon_sym_asm] = ACTIONS(109), + [anon_sym_AT_LBRACK] = ACTIONS(111), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [9] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4648), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4648), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(299), + [sym_const_declaration] = STATE(1566), + [sym_global_var_declaration] = STATE(1566), + [sym_type_declaration] = STATE(1566), + [sym_function_declaration] = STATE(1566), + [sym_static_method_declaration] = STATE(1566), + [sym_struct_declaration] = STATE(1566), + [sym_enum_declaration] = STATE(1566), + [sym_interface_declaration] = STATE(1566), + [sym__expression] = STATE(271), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_strictly_expression_list] = STATE(1544), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_visibility_modifiers] = STATE(3540), + [sym_mutability_modifiers] = STATE(631), + [sym_mutable_expression] = STATE(3360), + [sym_expression_list] = STATE(3380), + [sym_plain_type] = STATE(4117), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1566), + [sym_simple_statement] = STATE(1530), + [sym_assert_statement] = STATE(1530), + [sym_append_statement] = STATE(1530), + [sym_send_statement] = STATE(1530), + [sym_var_declaration] = STATE(1544), + [sym_assignment_statement] = STATE(1544), + [sym_block] = STATE(1530), + [sym_defer_statement] = STATE(1530), + [sym_goto_statement] = STATE(1530), + [sym_break_statement] = STATE(1530), + [sym_continue_statement] = STATE(1530), + [sym_return_statement] = STATE(1530), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(1530), + [sym_compile_time_for_statement] = STATE(1530), + [sym_for_statement] = STATE(1530), + [sym_hash_statement] = STATE(1530), + [sym_asm_statement] = STATE(1530), + [sym_attributes] = STATE(3450), + [sym_attribute] = STATE(3377), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_attributes_repeat1] = STATE(3416), + [ts_builtin_sym_end] = ACTIONS(133), + [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_const] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym___global] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_pub] = ACTIONS(37), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_interface] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(91), + [anon_sym_defer] = ACTIONS(93), + [anon_sym_goto] = ACTIONS(95), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_return] = ACTIONS(101), + [anon_sym_DOLLARfor] = ACTIONS(103), + [anon_sym_for] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(127), + [anon_sym_asm] = ACTIONS(109), + [anon_sym_AT_LBRACK] = ACTIONS(111), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [10] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4514), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4514), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), + [sym_const_declaration] = STATE(1566), + [sym_global_var_declaration] = STATE(1566), + [sym_type_declaration] = STATE(1566), + [sym_function_declaration] = STATE(1566), + [sym_static_method_declaration] = STATE(1566), + [sym_struct_declaration] = STATE(1566), + [sym_enum_declaration] = STATE(1566), + [sym_interface_declaration] = STATE(1566), + [sym__expression] = STATE(271), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_strictly_expression_list] = STATE(1544), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_visibility_modifiers] = STATE(3540), + [sym_mutability_modifiers] = STATE(631), + [sym_mutable_expression] = STATE(3360), + [sym_expression_list] = STATE(3380), + [sym_plain_type] = STATE(4117), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1566), + [sym_simple_statement] = STATE(1530), + [sym_assert_statement] = STATE(1530), + [sym_append_statement] = STATE(1530), + [sym_send_statement] = STATE(1530), + [sym_var_declaration] = STATE(1544), + [sym_assignment_statement] = STATE(1544), + [sym_block] = STATE(1530), + [sym_defer_statement] = STATE(1530), + [sym_goto_statement] = STATE(1530), + [sym_break_statement] = STATE(1530), + [sym_continue_statement] = STATE(1530), + [sym_return_statement] = STATE(1530), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(1530), + [sym_compile_time_for_statement] = STATE(1530), + [sym_for_statement] = STATE(1530), + [sym_hash_statement] = STATE(1530), + [sym_asm_statement] = STATE(1530), + [sym_attributes] = STATE(3450), + [sym_attribute] = STATE(3377), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_attributes_repeat1] = STATE(3416), + [ts_builtin_sym_end] = ACTIONS(129), + [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(383), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_const] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym___global] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_pub] = ACTIONS(37), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_interface] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(91), + [anon_sym_defer] = ACTIONS(93), + [anon_sym_goto] = ACTIONS(95), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_return] = ACTIONS(101), + [anon_sym_DOLLARfor] = ACTIONS(103), + [anon_sym_for] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(127), + [anon_sym_asm] = ACTIONS(109), + [anon_sym_AT_LBRACK] = ACTIONS(111), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [11] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4648), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4648), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(248), - [sym_identifier] = ACTIONS(299), + [sym_const_declaration] = STATE(1566), + [sym_global_var_declaration] = STATE(1566), + [sym_type_declaration] = STATE(1566), + [sym_function_declaration] = STATE(1566), + [sym_static_method_declaration] = STATE(1566), + [sym_struct_declaration] = STATE(1566), + [sym_enum_declaration] = STATE(1566), + [sym_interface_declaration] = STATE(1566), + [sym__expression] = STATE(271), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_strictly_expression_list] = STATE(1544), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_visibility_modifiers] = STATE(3540), + [sym_mutability_modifiers] = STATE(631), + [sym_mutable_expression] = STATE(3360), + [sym_expression_list] = STATE(3380), + [sym_plain_type] = STATE(4117), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1566), + [sym_simple_statement] = STATE(1530), + [sym_assert_statement] = STATE(1530), + [sym_append_statement] = STATE(1530), + [sym_send_statement] = STATE(1530), + [sym_var_declaration] = STATE(1544), + [sym_assignment_statement] = STATE(1544), + [sym_block] = STATE(1530), + [sym_defer_statement] = STATE(1530), + [sym_goto_statement] = STATE(1530), + [sym_break_statement] = STATE(1530), + [sym_continue_statement] = STATE(1530), + [sym_return_statement] = STATE(1530), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(1530), + [sym_compile_time_for_statement] = STATE(1530), + [sym_for_statement] = STATE(1530), + [sym_hash_statement] = STATE(1530), + [sym_asm_statement] = STATE(1530), + [sym_attributes] = STATE(3450), + [sym_attribute] = STATE(3377), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_attributes_repeat1] = STATE(3416), + [ts_builtin_sym_end] = ACTIONS(133), + [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_const] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym___global] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_pub] = ACTIONS(37), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_interface] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(91), + [anon_sym_defer] = ACTIONS(93), + [anon_sym_goto] = ACTIONS(95), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_return] = ACTIONS(101), + [anon_sym_DOLLARfor] = ACTIONS(103), + [anon_sym_for] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(127), + [anon_sym_asm] = ACTIONS(109), + [anon_sym_AT_LBRACK] = ACTIONS(111), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [12] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4618), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4618), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(268), - [sym_identifier] = ACTIONS(299), + [sym_const_declaration] = STATE(1566), + [sym_global_var_declaration] = STATE(1566), + [sym_type_declaration] = STATE(1566), + [sym_function_declaration] = STATE(1566), + [sym_static_method_declaration] = STATE(1566), + [sym_struct_declaration] = STATE(1566), + [sym_enum_declaration] = STATE(1566), + [sym_interface_declaration] = STATE(1566), + [sym__expression] = STATE(271), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_strictly_expression_list] = STATE(1544), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_visibility_modifiers] = STATE(3540), + [sym_mutability_modifiers] = STATE(631), + [sym_mutable_expression] = STATE(3360), + [sym_expression_list] = STATE(3380), + [sym_plain_type] = STATE(4117), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1566), + [sym_simple_statement] = STATE(1530), + [sym_assert_statement] = STATE(1530), + [sym_append_statement] = STATE(1530), + [sym_send_statement] = STATE(1530), + [sym_var_declaration] = STATE(1544), + [sym_assignment_statement] = STATE(1544), + [sym_block] = STATE(1530), + [sym_defer_statement] = STATE(1530), + [sym_goto_statement] = STATE(1530), + [sym_break_statement] = STATE(1530), + [sym_continue_statement] = STATE(1530), + [sym_return_statement] = STATE(1530), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(1530), + [sym_compile_time_for_statement] = STATE(1530), + [sym_for_statement] = STATE(1530), + [sym_hash_statement] = STATE(1530), + [sym_asm_statement] = STATE(1530), + [sym_attributes] = STATE(3450), + [sym_attribute] = STATE(3377), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_attributes_repeat1] = STATE(3416), + [ts_builtin_sym_end] = ACTIONS(135), + [sym_identifier] = ACTIONS(137), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [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_AT] = ACTIONS(236), + [anon_sym_shared] = ACTIONS(239), + [anon_sym_map_LBRACK] = ACTIONS(242), + [anon_sym_chan] = ACTIONS(245), + [anon_sym_thread] = ACTIONS(248), + [anon_sym_atomic] = ACTIONS(251), + [anon_sym_assert] = ACTIONS(254), + [anon_sym_defer] = ACTIONS(257), + [anon_sym_goto] = ACTIONS(260), + [anon_sym_break] = ACTIONS(263), + [anon_sym_continue] = ACTIONS(266), + [anon_sym_return] = ACTIONS(269), + [anon_sym_DOLLARfor] = ACTIONS(272), + [anon_sym_for] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(278), + [anon_sym_asm] = ACTIONS(281), + [anon_sym_AT_LBRACK] = ACTIONS(284), + [sym___double_quote] = ACTIONS(287), + [sym___single_quote] = ACTIONS(290), + [sym___c_double_quote] = ACTIONS(293), + [sym___c_single_quote] = ACTIONS(296), + [sym___r_double_quote] = ACTIONS(299), + [sym___r_single_quote] = ACTIONS(302), }, [13] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4514), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4514), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), + [sym__expression] = STATE(1610), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4647), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4647), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(311), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [14] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4598), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4598), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), + [sym__expression] = STATE(1610), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4539), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4539), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [aux_sym_map_init_expression_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_RBRACE] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [15] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4598), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4598), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), + [sym__expression] = STATE(1610), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4635), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_RBRACE] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [16] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4602), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4602), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), + [sym__expression] = STATE(1610), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4714), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4714), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_RBRACE] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [17] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4658), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4658), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), + [sym__expression] = STATE(1610), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4478), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4478), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_RBRACE] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [18] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4703), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4703), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), + [sym__expression] = STATE(1610), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4489), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4489), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [19] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4514), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4514), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), + [sym__expression] = STATE(1610), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4471), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4471), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_RBRACE] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [20] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4425), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4425), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), + [sym__expression] = STATE(1610), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4678), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4678), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [aux_sym_map_init_expression_repeat1] = STATE(287), + [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_RBRACE] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [21] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4514), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4514), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), + [sym__expression] = STATE(1610), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4680), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4680), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_RBRACE] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [22] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4529), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4529), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), + [sym__expression] = STATE(1610), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4478), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4478), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_RBRACE] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [23] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4577), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4577), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), + [sym__expression] = STATE(1610), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4539), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4539), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_RBRACE] = ACTIONS(407), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [24] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4618), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4618), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(299), + [sym__expression] = STATE(1610), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4478), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4478), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_RBRACE] = ACTIONS(409), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [25] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4544), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), + [sym__expression] = STATE(1610), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4679), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4679), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(383), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [26] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4544), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), + [sym__expression] = STATE(1610), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4714), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4714), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [27] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4540), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4540), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), + [sym__expression] = STATE(1610), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4489), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4489), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(411), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [28] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4544), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), + [sym__expression] = STATE(1610), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4618), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4618), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [29] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4529), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4529), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), + [sym__expression] = STATE(1610), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4483), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4483), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(415), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [30] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4662), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4662), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), + [sym__expression] = STATE(1610), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4680), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4680), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(417), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(421), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [31] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4577), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4577), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), + [sym__expression] = STATE(1610), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4588), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4588), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(423), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [32] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4590), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4590), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), + [sym__expression] = STATE(1610), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4678), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4678), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [aux_sym_map_init_expression_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(401), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [33] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4618), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4618), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), + [sym__expression] = STATE(1610), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4635), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [34] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4658), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4658), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), + [sym__expression] = STATE(1610), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4539), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4539), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [aux_sym_map_init_expression_repeat1] = STATE(237), + [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_RBRACE] = ACTIONS(425), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [35] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4555), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4555), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), + [sym__expression] = STATE(1610), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4544), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4544), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(429), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [36] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4599), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4599), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), + [sym__expression] = STATE(1610), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4635), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(431), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [37] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4484), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4484), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), + [sym__expression] = STATE(1610), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4647), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4647), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(433), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(429), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [38] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4544), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), + [sym__expression] = STATE(1610), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4635), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(435), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [39] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4425), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4425), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), + [sym__expression] = STATE(1619), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4483), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4483), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [sym_identifier] = ACTIONS(433), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [40] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4514), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4514), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), + [sym__expression] = STATE(1619), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4519), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4519), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [sym_identifier] = ACTIONS(433), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(437), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [41] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4590), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4590), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), + [sym__expression] = STATE(1619), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4680), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4680), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [sym_identifier] = ACTIONS(433), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [42] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4577), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4577), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), + [sym__expression] = STATE(1619), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4478), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4478), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [sym_identifier] = ACTIONS(433), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(443), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(441), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [43] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4598), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4598), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), + [sym__expression] = STATE(1619), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4679), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4679), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [sym_identifier] = ACTIONS(433), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(445), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [44] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4618), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4618), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), + [sym__expression] = STATE(1619), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4489), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4489), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [sym_identifier] = ACTIONS(433), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(445), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [45] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4708), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4708), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), + [sym__expression] = STATE(1619), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4585), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4585), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [sym_identifier] = ACTIONS(433), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [46] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4658), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4658), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), + [sym__expression] = STATE(1619), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4647), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4647), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [sym_identifier] = ACTIONS(433), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [47] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4662), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4662), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), + [sym__expression] = STATE(1619), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4588), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4588), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [sym_identifier] = ACTIONS(433), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [48] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4539), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4539), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), + [sym__expression] = STATE(1619), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4635), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4635), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [sym_identifier] = ACTIONS(433), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [49] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4703), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4703), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), + [sym__expression] = STATE(1619), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4539), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4539), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [sym_identifier] = ACTIONS(433), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(457), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(455), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [50] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4540), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4540), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), + [sym__expression] = STATE(1619), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4500), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4500), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [sym_identifier] = ACTIONS(433), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [51] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4602), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4602), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), + [sym__expression] = STATE(1619), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4467), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4467), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [sym_identifier] = ACTIONS(433), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(461), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [52] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4619), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4619), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), + [sym__expression] = STATE(1619), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4689), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4689), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [sym_identifier] = ACTIONS(433), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(461), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [53] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4529), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4529), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), + [sym__expression] = STATE(1619), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4544), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4544), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [sym_identifier] = ACTIONS(433), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [54] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4648), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4648), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), + [sym__expression] = STATE(1619), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4471), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4471), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [sym_identifier] = ACTIONS(433), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [55] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement] = STATE(3686), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4657), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), + [sym__expression] = STATE(1619), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4618), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4618), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [sym_identifier] = ACTIONS(433), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [56] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement] = STATE(3686), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4594), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), + [sym__expression] = STATE(1619), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4482), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4482), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [sym_identifier] = ACTIONS(433), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(471), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [57] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement] = STATE(3734), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(59), - [sym_labeled_statement] = STATE(3768), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), + [sym__expression] = STATE(1619), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4678), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4678), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [sym_identifier] = ACTIONS(433), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(473), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [58] = { - [sym__expression] = STATE(261), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_strictly_expression_list] = STATE(1557), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(745), - [sym_mutable_expression] = STATE(3352), - [sym_expression_list] = STATE(3395), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement] = STATE(1560), - [sym_simple_statement] = STATE(1565), - [sym_assert_statement] = STATE(1565), - [sym_append_statement] = STATE(1565), - [sym_send_statement] = STATE(1565), - [sym_var_declaration] = STATE(1557), - [sym_assignment_statement] = STATE(1557), - [sym_block] = STATE(1565), - [sym_defer_statement] = STATE(1565), - [sym_goto_statement] = STATE(1565), - [sym_break_statement] = STATE(1565), - [sym_continue_statement] = STATE(1565), - [sym_return_statement] = STATE(1565), - [sym_label_definition] = STATE(58), - [sym_labeled_statement] = STATE(1565), - [sym_compile_time_for_statement] = STATE(1565), - [sym_for_statement] = STATE(1565), - [sym_hash_statement] = STATE(1565), - [sym_asm_statement] = STATE(1565), - [sym_identifier] = ACTIONS(7), + [sym__expression] = STATE(1619), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement_list] = STATE(4714), + [sym__statement] = STATE(3678), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4714), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [sym_identifier] = ACTIONS(433), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(89), - [anon_sym_defer] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_break] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(97), - [anon_sym_return] = ACTIONS(99), - [anon_sym_DOLLARfor] = ACTIONS(101), - [anon_sym_for] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(105), - [anon_sym_asm] = ACTIONS(107), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [59] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement] = STATE(3734), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(59), - [sym_labeled_statement] = STATE(3768), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), + [sym__expression] = STATE(1619), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(3733), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4456), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [sym_identifier] = ACTIONS(433), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [60] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement] = STATE(3686), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(59), - [sym_labeled_statement] = STATE(3768), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), + [sym__expression] = STATE(1619), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(3733), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(61), + [sym_labeled_statement] = STATE(3760), + [sym_empty_labeled_statement] = STATE(4442), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [sym_identifier] = ACTIONS(433), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [61] = { - [sym__expression] = STATE(958), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(749), - [sym_mutable_expression] = STATE(1422), - [sym_expression_list] = STATE(1567), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [ts_builtin_sym_end] = ACTIONS(481), - [sym_identifier] = ACTIONS(483), - [anon_sym_LF] = ACTIONS(485), - [anon_sym_CR] = ACTIONS(485), - [anon_sym_CR_LF] = ACTIONS(485), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_const] = ACTIONS(485), - [anon_sym_LPAREN] = ACTIONS(493), - [anon_sym___global] = ACTIONS(485), - [anon_sym_type] = ACTIONS(485), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(497), - [anon_sym_DASH] = ACTIONS(497), - [anon_sym_STAR] = ACTIONS(499), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_union] = ACTIONS(485), - [anon_sym_pub] = ACTIONS(485), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_enum] = ACTIONS(485), - [anon_sym_interface] = ACTIONS(485), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(505), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(511), - [anon_sym_LBRACK2] = ACTIONS(513), - [anon_sym_TILDE] = ACTIONS(497), - [anon_sym_CARET] = ACTIONS(497), - [anon_sym_AMP] = ACTIONS(515), - [anon_sym_LT_DASH] = ACTIONS(517), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(519), - [sym_rune_literal] = ACTIONS(519), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(537), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(485), - [anon_sym_defer] = ACTIONS(485), - [anon_sym_goto] = ACTIONS(485), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_return] = ACTIONS(485), - [anon_sym_DOLLARfor] = ACTIONS(485), - [anon_sym_for] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(485), - [anon_sym_asm] = ACTIONS(485), - [anon_sym_AT_LBRACK] = ACTIONS(485), - [sym___double_quote] = ACTIONS(539), - [sym___single_quote] = ACTIONS(541), - [sym___c_double_quote] = ACTIONS(543), - [sym___c_single_quote] = ACTIONS(545), - [sym___r_double_quote] = ACTIONS(547), - [sym___r_single_quote] = ACTIONS(549), + [sym__expression] = STATE(1619), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(3773), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(3760), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [sym_identifier] = ACTIONS(433), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(479), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [62] = { - [sym_reference_expression] = STATE(4460), - [sym_type_reference_expression] = STATE(521), - [sym_plain_type] = STATE(884), - [sym__plain_type_without_special] = STATE(898), - [sym_anon_struct_type] = STATE(896), - [sym_multi_return_type] = STATE(898), - [sym_result_type] = STATE(898), - [sym_option_type] = STATE(898), - [sym_qualified_type] = STATE(521), - [sym_fixed_array_type] = STATE(896), - [sym_array_type] = STATE(896), - [sym_pointer_type] = STATE(896), - [sym_wrong_pointer_type] = STATE(896), - [sym_map_type] = STATE(896), - [sym_channel_type] = STATE(896), - [sym_shared_type] = STATE(896), - [sym_thread_type] = STATE(896), - [sym_atomic_type] = STATE(896), - [sym_generic_type] = STATE(896), - [sym_function_type] = STATE(896), - [ts_builtin_sym_end] = ACTIONS(551), - [sym_identifier] = ACTIONS(553), - [anon_sym_LF] = ACTIONS(555), - [anon_sym_CR] = ACTIONS(555), - [anon_sym_CR_LF] = ACTIONS(555), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_as] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(555), - [anon_sym_const] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(557), - [anon_sym_EQ] = ACTIONS(555), - [anon_sym___global] = ACTIONS(555), - [anon_sym_type] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_fn] = ACTIONS(559), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(555), - [anon_sym_PERCENT] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(555), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_EQ_EQ] = ACTIONS(555), - [anon_sym_BANG_EQ] = ACTIONS(555), - [anon_sym_LT_EQ] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(563), - [anon_sym_union] = ACTIONS(555), - [anon_sym_pub] = ACTIONS(555), - [anon_sym_mut] = ACTIONS(555), - [anon_sym_enum] = ACTIONS(555), - [anon_sym_interface] = ACTIONS(555), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_go] = ACTIONS(555), - [anon_sym_spawn] = ACTIONS(555), - [anon_sym_json_DOTdecode] = ACTIONS(555), - [anon_sym_LBRACK2] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(555), - [anon_sym_CARET] = ACTIONS(555), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_LT_DASH] = ACTIONS(555), - [anon_sym_LT_LT] = ACTIONS(555), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_GT_GT_GT] = ACTIONS(555), - [anon_sym_AMP_CARET] = ACTIONS(555), - [anon_sym_AMP_AMP] = ACTIONS(555), - [anon_sym_PIPE_PIPE] = ACTIONS(555), - [anon_sym_or] = ACTIONS(555), - [sym_none] = ACTIONS(555), - [sym_true] = ACTIONS(555), - [sym_false] = ACTIONS(555), - [sym_nil] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(555), - [anon_sym_POUND_LBRACK] = ACTIONS(555), - [anon_sym_if] = ACTIONS(555), - [anon_sym_DOLLARif] = ACTIONS(555), - [anon_sym_is] = ACTIONS(555), - [anon_sym_BANGis] = ACTIONS(555), - [anon_sym_in] = ACTIONS(555), - [anon_sym_BANGin] = ACTIONS(555), - [anon_sym_match] = ACTIONS(555), - [anon_sym_select] = ACTIONS(555), - [anon_sym_STAR_EQ] = ACTIONS(555), - [anon_sym_SLASH_EQ] = ACTIONS(555), - [anon_sym_PERCENT_EQ] = ACTIONS(555), - [anon_sym_LT_LT_EQ] = ACTIONS(555), - [anon_sym_GT_GT_EQ] = ACTIONS(555), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(555), - [anon_sym_AMP_EQ] = ACTIONS(555), - [anon_sym_AMP_CARET_EQ] = ACTIONS(555), - [anon_sym_PLUS_EQ] = ACTIONS(555), - [anon_sym_DASH_EQ] = ACTIONS(555), - [anon_sym_PIPE_EQ] = ACTIONS(555), - [anon_sym_CARET_EQ] = ACTIONS(555), - [anon_sym_COLON_EQ] = ACTIONS(555), - [anon_sym_lock] = ACTIONS(555), - [anon_sym_rlock] = ACTIONS(555), - [anon_sym_unsafe] = ACTIONS(555), - [anon_sym_sql] = ACTIONS(555), - [sym_int_literal] = ACTIONS(555), - [sym_float_literal] = ACTIONS(555), - [sym_rune_literal] = ACTIONS(555), - [anon_sym_AT] = ACTIONS(555), - [anon_sym_shared] = ACTIONS(573), - [anon_sym_map_LBRACK] = ACTIONS(575), - [anon_sym_chan] = ACTIONS(577), - [anon_sym_thread] = ACTIONS(579), - [anon_sym_atomic] = ACTIONS(581), - [anon_sym_assert] = ACTIONS(555), - [anon_sym_defer] = ACTIONS(555), - [anon_sym_goto] = ACTIONS(555), - [anon_sym_break] = ACTIONS(555), - [anon_sym_continue] = ACTIONS(555), - [anon_sym_return] = ACTIONS(555), - [anon_sym_DOLLARfor] = ACTIONS(555), - [anon_sym_for] = ACTIONS(555), - [anon_sym_POUND] = ACTIONS(555), - [anon_sym_asm] = ACTIONS(555), - [anon_sym_AT_LBRACK] = ACTIONS(555), - [sym___double_quote] = ACTIONS(555), - [sym___single_quote] = ACTIONS(555), - [sym___c_double_quote] = ACTIONS(555), - [sym___c_single_quote] = ACTIONS(555), - [sym___r_double_quote] = ACTIONS(555), - [sym___r_single_quote] = ACTIONS(555), + [sym__expression] = STATE(271), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_strictly_expression_list] = STATE(1544), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_mutability_modifiers] = STATE(631), + [sym_mutable_expression] = STATE(3360), + [sym_expression_list] = STATE(3380), + [sym_plain_type] = STATE(4117), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(1535), + [sym_simple_statement] = STATE(1530), + [sym_assert_statement] = STATE(1530), + [sym_append_statement] = STATE(1530), + [sym_send_statement] = STATE(1530), + [sym_var_declaration] = STATE(1544), + [sym_assignment_statement] = STATE(1544), + [sym_block] = STATE(1530), + [sym_defer_statement] = STATE(1530), + [sym_goto_statement] = STATE(1530), + [sym_break_statement] = STATE(1530), + [sym_continue_statement] = STATE(1530), + [sym_return_statement] = STATE(1530), + [sym_label_definition] = STATE(62), + [sym_labeled_statement] = STATE(1530), + [sym_compile_time_for_statement] = STATE(1530), + [sym_for_statement] = STATE(1530), + [sym_hash_statement] = STATE(1530), + [sym_asm_statement] = STATE(1530), + [sym_identifier] = ACTIONS(7), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(481), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(483), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(485), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(91), + [anon_sym_defer] = ACTIONS(93), + [anon_sym_goto] = ACTIONS(95), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_return] = ACTIONS(101), + [anon_sym_DOLLARfor] = ACTIONS(103), + [anon_sym_for] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(127), + [anon_sym_asm] = ACTIONS(109), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [63] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [ts_builtin_sym_end] = ACTIONS(583), - [sym_identifier] = ACTIONS(585), - [anon_sym_LF] = ACTIONS(585), - [anon_sym_CR] = ACTIONS(585), - [anon_sym_CR_LF] = ACTIONS(585), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_const] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym___global] = ACTIONS(585), - [anon_sym_type] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(585), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(585), - [anon_sym_union] = ACTIONS(585), - [anon_sym_pub] = ACTIONS(585), - [anon_sym_mut] = ACTIONS(585), - [anon_sym_enum] = ACTIONS(585), - [anon_sym_interface] = ACTIONS(585), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_go] = ACTIONS(585), - [anon_sym_spawn] = ACTIONS(585), - [anon_sym_json_DOTdecode] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_LT_DASH] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_AMP_CARET] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_or] = ACTIONS(585), - [sym_none] = ACTIONS(585), - [sym_true] = ACTIONS(585), - [sym_false] = ACTIONS(585), - [sym_nil] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_if] = ACTIONS(585), - [anon_sym_DOLLARif] = ACTIONS(585), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(585), - [anon_sym_match] = ACTIONS(585), - [anon_sym_select] = ACTIONS(585), - [anon_sym_STAR_EQ] = ACTIONS(585), - [anon_sym_SLASH_EQ] = ACTIONS(585), - [anon_sym_PERCENT_EQ] = ACTIONS(585), - [anon_sym_LT_LT_EQ] = ACTIONS(585), - [anon_sym_GT_GT_EQ] = ACTIONS(585), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(585), - [anon_sym_AMP_EQ] = ACTIONS(585), - [anon_sym_AMP_CARET_EQ] = ACTIONS(585), - [anon_sym_PLUS_EQ] = ACTIONS(585), - [anon_sym_DASH_EQ] = ACTIONS(585), - [anon_sym_PIPE_EQ] = ACTIONS(585), - [anon_sym_CARET_EQ] = ACTIONS(585), - [anon_sym_COLON_EQ] = ACTIONS(585), - [anon_sym_lock] = ACTIONS(585), - [anon_sym_rlock] = ACTIONS(585), - [anon_sym_unsafe] = ACTIONS(585), - [anon_sym_sql] = ACTIONS(585), - [sym_int_literal] = ACTIONS(585), - [sym_float_literal] = ACTIONS(585), - [sym_rune_literal] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(585), - [anon_sym_shared] = ACTIONS(585), - [anon_sym_map_LBRACK] = ACTIONS(585), - [anon_sym_chan] = ACTIONS(585), - [anon_sym_thread] = ACTIONS(585), - [anon_sym_atomic] = ACTIONS(585), - [anon_sym_assert] = ACTIONS(585), - [anon_sym_defer] = ACTIONS(585), - [anon_sym_goto] = ACTIONS(585), - [anon_sym_break] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(585), - [anon_sym_return] = ACTIONS(585), - [anon_sym_DOLLARfor] = ACTIONS(585), - [anon_sym_for] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_asm] = ACTIONS(585), - [anon_sym_AT_LBRACK] = ACTIONS(585), - [sym___double_quote] = ACTIONS(585), - [sym___single_quote] = ACTIONS(585), - [sym___c_double_quote] = ACTIONS(585), - [sym___c_single_quote] = ACTIONS(585), - [sym___r_double_quote] = ACTIONS(585), - [sym___r_single_quote] = ACTIONS(585), + [sym__expression] = STATE(1619), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(3773), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(3760), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [sym_identifier] = ACTIONS(433), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [64] = { - [sym_reference_expression] = STATE(4460), - [sym_type_reference_expression] = STATE(521), - [sym_plain_type] = STATE(903), - [sym__plain_type_without_special] = STATE(898), - [sym_anon_struct_type] = STATE(896), - [sym_multi_return_type] = STATE(898), - [sym_result_type] = STATE(898), - [sym_option_type] = STATE(898), - [sym_qualified_type] = STATE(521), - [sym_fixed_array_type] = STATE(896), - [sym_array_type] = STATE(896), - [sym_pointer_type] = STATE(896), - [sym_wrong_pointer_type] = STATE(896), - [sym_map_type] = STATE(896), - [sym_channel_type] = STATE(896), - [sym_shared_type] = STATE(896), - [sym_thread_type] = STATE(896), - [sym_atomic_type] = STATE(896), - [sym_generic_type] = STATE(896), - [sym_function_type] = STATE(896), - [ts_builtin_sym_end] = ACTIONS(587), - [sym_identifier] = ACTIONS(553), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_const] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(557), - [anon_sym_EQ] = ACTIONS(589), - [anon_sym___global] = ACTIONS(589), - [anon_sym_type] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(559), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_struct] = ACTIONS(563), - [anon_sym_union] = ACTIONS(589), - [anon_sym_pub] = ACTIONS(589), - [anon_sym_mut] = ACTIONS(589), - [anon_sym_enum] = ACTIONS(589), - [anon_sym_interface] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_go] = ACTIONS(589), - [anon_sym_spawn] = ACTIONS(589), - [anon_sym_json_DOTdecode] = ACTIONS(589), - [anon_sym_LBRACK2] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(589), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_LT_DASH] = ACTIONS(589), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(589), - [sym_none] = ACTIONS(589), - [sym_true] = ACTIONS(589), - [sym_false] = ACTIONS(589), - [sym_nil] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_if] = ACTIONS(589), - [anon_sym_DOLLARif] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_match] = ACTIONS(589), - [anon_sym_select] = ACTIONS(589), - [anon_sym_STAR_EQ] = ACTIONS(589), - [anon_sym_SLASH_EQ] = ACTIONS(589), - [anon_sym_PERCENT_EQ] = ACTIONS(589), - [anon_sym_LT_LT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(589), - [anon_sym_AMP_EQ] = ACTIONS(589), - [anon_sym_AMP_CARET_EQ] = ACTIONS(589), - [anon_sym_PLUS_EQ] = ACTIONS(589), - [anon_sym_DASH_EQ] = ACTIONS(589), - [anon_sym_PIPE_EQ] = ACTIONS(589), - [anon_sym_CARET_EQ] = ACTIONS(589), - [anon_sym_COLON_EQ] = ACTIONS(589), - [anon_sym_lock] = ACTIONS(589), - [anon_sym_rlock] = ACTIONS(589), - [anon_sym_unsafe] = ACTIONS(589), - [anon_sym_sql] = ACTIONS(589), - [sym_int_literal] = ACTIONS(589), - [sym_float_literal] = ACTIONS(589), - [sym_rune_literal] = ACTIONS(589), - [anon_sym_AT] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(573), - [anon_sym_map_LBRACK] = ACTIONS(575), - [anon_sym_chan] = ACTIONS(577), - [anon_sym_thread] = ACTIONS(579), - [anon_sym_atomic] = ACTIONS(581), - [anon_sym_assert] = ACTIONS(589), - [anon_sym_defer] = ACTIONS(589), - [anon_sym_goto] = ACTIONS(589), - [anon_sym_break] = ACTIONS(589), - [anon_sym_continue] = ACTIONS(589), - [anon_sym_return] = ACTIONS(589), - [anon_sym_DOLLARfor] = ACTIONS(589), - [anon_sym_for] = ACTIONS(589), - [anon_sym_POUND] = ACTIONS(589), - [anon_sym_asm] = ACTIONS(589), - [anon_sym_AT_LBRACK] = ACTIONS(589), - [sym___double_quote] = ACTIONS(589), - [sym___single_quote] = ACTIONS(589), - [sym___c_double_quote] = ACTIONS(589), - [sym___c_single_quote] = ACTIONS(589), - [sym___r_double_quote] = ACTIONS(589), - [sym___r_single_quote] = ACTIONS(589), + [sym__expression] = STATE(1619), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_strictly_expression_list] = STATE(3759), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(546), + [sym_mutable_expression] = STATE(3361), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__statement] = STATE(3733), + [sym_simple_statement] = STATE(3760), + [sym_assert_statement] = STATE(3760), + [sym_append_statement] = STATE(3760), + [sym_send_statement] = STATE(3760), + [sym_var_declaration] = STATE(3759), + [sym_assignment_statement] = STATE(3759), + [sym_block] = STATE(3760), + [sym_defer_statement] = STATE(3760), + [sym_goto_statement] = STATE(3760), + [sym_break_statement] = STATE(3760), + [sym_continue_statement] = STATE(3760), + [sym_return_statement] = STATE(3760), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(3760), + [sym_compile_time_for_statement] = STATE(3760), + [sym_for_statement] = STATE(3760), + [sym_hash_statement] = STATE(3760), + [sym_asm_statement] = STATE(3760), + [sym_identifier] = ACTIONS(433), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [65] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [ts_builtin_sym_end] = ACTIONS(591), - [sym_identifier] = ACTIONS(593), - [anon_sym_LF] = ACTIONS(595), - [anon_sym_CR] = ACTIONS(595), - [anon_sym_CR_LF] = ACTIONS(595), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_as] = ACTIONS(595), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_const] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(597), - [anon_sym_EQ] = ACTIONS(595), - [anon_sym___global] = ACTIONS(595), - [anon_sym_type] = ACTIONS(595), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [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(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_union] = ACTIONS(595), - [anon_sym_pub] = ACTIONS(595), - [anon_sym_mut] = ACTIONS(595), - [anon_sym_enum] = ACTIONS(595), - [anon_sym_interface] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(605), - [anon_sym_go] = ACTIONS(595), - [anon_sym_spawn] = ACTIONS(595), - [anon_sym_json_DOTdecode] = ACTIONS(595), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_TILDE] = ACTIONS(595), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_DASH] = ACTIONS(595), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [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(595), - [sym_none] = ACTIONS(595), - [sym_true] = ACTIONS(595), - [sym_false] = ACTIONS(595), - [sym_nil] = ACTIONS(595), - [anon_sym_QMARK_DOT] = ACTIONS(595), - [anon_sym_POUND_LBRACK] = ACTIONS(595), - [anon_sym_if] = ACTIONS(595), - [anon_sym_DOLLARif] = ACTIONS(595), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(595), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(595), - [anon_sym_match] = ACTIONS(595), - [anon_sym_select] = ACTIONS(595), - [anon_sym_STAR_EQ] = ACTIONS(595), - [anon_sym_SLASH_EQ] = ACTIONS(595), - [anon_sym_PERCENT_EQ] = ACTIONS(595), - [anon_sym_LT_LT_EQ] = ACTIONS(595), - [anon_sym_GT_GT_EQ] = ACTIONS(595), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(595), - [anon_sym_AMP_EQ] = ACTIONS(595), - [anon_sym_AMP_CARET_EQ] = ACTIONS(595), - [anon_sym_PLUS_EQ] = ACTIONS(595), - [anon_sym_DASH_EQ] = ACTIONS(595), - [anon_sym_PIPE_EQ] = ACTIONS(595), - [anon_sym_CARET_EQ] = ACTIONS(595), - [anon_sym_COLON_EQ] = ACTIONS(595), - [anon_sym_lock] = ACTIONS(595), - [anon_sym_rlock] = ACTIONS(595), - [anon_sym_unsafe] = ACTIONS(595), - [anon_sym_sql] = ACTIONS(595), - [sym_int_literal] = ACTIONS(595), - [sym_float_literal] = ACTIONS(595), - [sym_rune_literal] = ACTIONS(595), - [anon_sym_AT] = ACTIONS(595), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(537), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(595), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_goto] = ACTIONS(595), - [anon_sym_break] = ACTIONS(595), - [anon_sym_continue] = ACTIONS(595), - [anon_sym_return] = ACTIONS(595), - [anon_sym_DOLLARfor] = ACTIONS(595), - [anon_sym_for] = ACTIONS(595), - [anon_sym_POUND] = ACTIONS(595), - [anon_sym_asm] = ACTIONS(595), - [anon_sym_AT_LBRACK] = ACTIONS(595), - [sym___double_quote] = ACTIONS(595), - [sym___single_quote] = ACTIONS(595), - [sym___c_double_quote] = ACTIONS(595), - [sym___c_single_quote] = ACTIONS(595), - [sym___r_double_quote] = ACTIONS(595), - [sym___r_single_quote] = ACTIONS(595), + [sym__expression] = STATE(962), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(478), + [sym_mutable_expression] = STATE(1430), + [sym_expression_list] = STATE(1506), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [ts_builtin_sym_end] = ACTIONS(487), + [sym_identifier] = ACTIONS(489), + [anon_sym_LF] = ACTIONS(491), + [anon_sym_CR] = ACTIONS(491), + [anon_sym_CR_LF] = ACTIONS(491), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(497), + [anon_sym_const] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(499), + [anon_sym___global] = ACTIONS(491), + [anon_sym_type] = ACTIONS(491), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_STAR] = ACTIONS(505), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_union] = ACTIONS(491), + [anon_sym_pub] = ACTIONS(491), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_enum] = ACTIONS(491), + [anon_sym_interface] = ACTIONS(491), + [anon_sym_QMARK] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(511), + [anon_sym_go] = ACTIONS(513), + [anon_sym_spawn] = ACTIONS(515), + [anon_sym_json_DOTdecode] = ACTIONS(517), + [anon_sym_LBRACK2] = ACTIONS(519), + [anon_sym_TILDE] = ACTIONS(503), + [anon_sym_CARET] = ACTIONS(503), + [anon_sym_AMP] = ACTIONS(521), + [anon_sym_LT_DASH] = ACTIONS(523), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(533), + [anon_sym_lock] = ACTIONS(535), + [anon_sym_rlock] = ACTIONS(535), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(525), + [sym_rune_literal] = ACTIONS(525), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(543), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(491), + [anon_sym_defer] = ACTIONS(491), + [anon_sym_goto] = ACTIONS(491), + [anon_sym_break] = ACTIONS(491), + [anon_sym_continue] = ACTIONS(491), + [anon_sym_return] = ACTIONS(491), + [anon_sym_DOLLARfor] = ACTIONS(491), + [anon_sym_for] = ACTIONS(491), + [anon_sym_POUND] = ACTIONS(491), + [anon_sym_asm] = ACTIONS(491), + [anon_sym_AT_LBRACK] = ACTIONS(491), + [sym___double_quote] = ACTIONS(545), + [sym___single_quote] = ACTIONS(547), + [sym___c_double_quote] = ACTIONS(549), + [sym___c_single_quote] = ACTIONS(551), + [sym___r_double_quote] = ACTIONS(553), + [sym___r_single_quote] = ACTIONS(555), }, [66] = { - [sym_reference_expression] = STATE(4460), - [sym_type_reference_expression] = STATE(521), - [sym_plain_type] = STATE(882), - [sym__plain_type_without_special] = STATE(898), - [sym_anon_struct_type] = STATE(896), - [sym_multi_return_type] = STATE(898), - [sym_result_type] = STATE(898), - [sym_option_type] = STATE(898), - [sym_qualified_type] = STATE(521), - [sym_fixed_array_type] = STATE(896), - [sym_array_type] = STATE(896), - [sym_pointer_type] = STATE(896), - [sym_wrong_pointer_type] = STATE(896), - [sym_map_type] = STATE(896), - [sym_channel_type] = STATE(896), - [sym_shared_type] = STATE(896), - [sym_thread_type] = STATE(896), - [sym_atomic_type] = STATE(896), - [sym_generic_type] = STATE(896), - [sym_function_type] = STATE(896), - [ts_builtin_sym_end] = ACTIONS(613), - [sym_identifier] = ACTIONS(553), - [anon_sym_LF] = ACTIONS(615), - [anon_sym_CR] = ACTIONS(615), - [anon_sym_CR_LF] = ACTIONS(615), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_const] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(557), - [anon_sym_EQ] = ACTIONS(615), - [anon_sym___global] = ACTIONS(615), - [anon_sym_type] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(559), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(563), - [anon_sym_union] = ACTIONS(615), - [anon_sym_pub] = ACTIONS(615), - [anon_sym_mut] = ACTIONS(615), - [anon_sym_enum] = ACTIONS(615), - [anon_sym_interface] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_go] = ACTIONS(615), - [anon_sym_spawn] = ACTIONS(615), - [anon_sym_json_DOTdecode] = ACTIONS(615), - [anon_sym_LBRACK2] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_LT_DASH] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_or] = ACTIONS(615), - [sym_none] = ACTIONS(615), - [sym_true] = ACTIONS(615), - [sym_false] = ACTIONS(615), - [sym_nil] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(615), - [anon_sym_POUND_LBRACK] = ACTIONS(615), - [anon_sym_if] = ACTIONS(615), - [anon_sym_DOLLARif] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(615), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(615), - [anon_sym_match] = ACTIONS(615), - [anon_sym_select] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_LT_LT_EQ] = ACTIONS(615), - [anon_sym_GT_GT_EQ] = ACTIONS(615), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(615), - [anon_sym_AMP_EQ] = ACTIONS(615), - [anon_sym_AMP_CARET_EQ] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_PIPE_EQ] = ACTIONS(615), - [anon_sym_CARET_EQ] = ACTIONS(615), - [anon_sym_COLON_EQ] = ACTIONS(615), - [anon_sym_lock] = ACTIONS(615), - [anon_sym_rlock] = ACTIONS(615), - [anon_sym_unsafe] = ACTIONS(615), - [anon_sym_sql] = ACTIONS(615), - [sym_int_literal] = ACTIONS(615), - [sym_float_literal] = ACTIONS(615), - [sym_rune_literal] = ACTIONS(615), - [anon_sym_AT] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(573), - [anon_sym_map_LBRACK] = ACTIONS(575), - [anon_sym_chan] = ACTIONS(577), - [anon_sym_thread] = ACTIONS(579), - [anon_sym_atomic] = ACTIONS(581), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_defer] = ACTIONS(615), - [anon_sym_goto] = ACTIONS(615), - [anon_sym_break] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(615), - [anon_sym_return] = ACTIONS(615), - [anon_sym_DOLLARfor] = ACTIONS(615), - [anon_sym_for] = ACTIONS(615), - [anon_sym_POUND] = ACTIONS(615), - [anon_sym_asm] = ACTIONS(615), - [anon_sym_AT_LBRACK] = ACTIONS(615), - [sym___double_quote] = ACTIONS(615), - [sym___single_quote] = ACTIONS(615), - [sym___c_double_quote] = ACTIONS(615), - [sym___c_single_quote] = ACTIONS(615), - [sym___r_double_quote] = ACTIONS(615), - [sym___r_single_quote] = ACTIONS(615), + [sym_reference_expression] = STATE(4438), + [sym_type_reference_expression] = STATE(618), + [sym_plain_type] = STATE(928), + [sym__plain_type_without_special] = STATE(941), + [sym_anon_struct_type] = STATE(940), + [sym_multi_return_type] = STATE(941), + [sym_result_type] = STATE(941), + [sym_option_type] = STATE(941), + [sym_qualified_type] = STATE(618), + [sym_fixed_array_type] = STATE(940), + [sym_array_type] = STATE(940), + [sym_pointer_type] = STATE(940), + [sym_wrong_pointer_type] = STATE(940), + [sym_map_type] = STATE(940), + [sym_channel_type] = STATE(940), + [sym_shared_type] = STATE(940), + [sym_thread_type] = STATE(940), + [sym_atomic_type] = STATE(940), + [sym_generic_type] = STATE(940), + [sym_function_type] = STATE(940), + [ts_builtin_sym_end] = ACTIONS(557), + [sym_identifier] = ACTIONS(559), + [anon_sym_LF] = ACTIONS(561), + [anon_sym_CR] = ACTIONS(561), + [anon_sym_CR_LF] = ACTIONS(561), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(561), + [anon_sym_as] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_COMMA] = ACTIONS(561), + [anon_sym_const] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(561), + [anon_sym___global] = ACTIONS(561), + [anon_sym_type] = ACTIONS(561), + [anon_sym_PIPE] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(565), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(567), + [anon_sym_SLASH] = ACTIONS(561), + [anon_sym_PERCENT] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(561), + [anon_sym_GT] = ACTIONS(561), + [anon_sym_EQ_EQ] = ACTIONS(561), + [anon_sym_BANG_EQ] = ACTIONS(561), + [anon_sym_LT_EQ] = ACTIONS(561), + [anon_sym_GT_EQ] = ACTIONS(561), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_union] = ACTIONS(561), + [anon_sym_pub] = ACTIONS(561), + [anon_sym_mut] = ACTIONS(561), + [anon_sym_enum] = ACTIONS(561), + [anon_sym_interface] = ACTIONS(561), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_go] = ACTIONS(561), + [anon_sym_spawn] = ACTIONS(561), + [anon_sym_json_DOTdecode] = ACTIONS(561), + [anon_sym_LBRACK2] = ACTIONS(575), + [anon_sym_TILDE] = ACTIONS(561), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_LT_DASH] = ACTIONS(561), + [anon_sym_LT_LT] = ACTIONS(561), + [anon_sym_GT_GT] = ACTIONS(561), + [anon_sym_GT_GT_GT] = ACTIONS(561), + [anon_sym_AMP_CARET] = ACTIONS(561), + [anon_sym_AMP_AMP] = ACTIONS(561), + [anon_sym_PIPE_PIPE] = ACTIONS(561), + [anon_sym_or] = ACTIONS(561), + [sym_none] = ACTIONS(561), + [sym_true] = ACTIONS(561), + [sym_false] = ACTIONS(561), + [sym_nil] = ACTIONS(561), + [anon_sym_QMARK_DOT] = ACTIONS(561), + [anon_sym_POUND_LBRACK] = ACTIONS(561), + [anon_sym_if] = ACTIONS(561), + [anon_sym_DOLLARif] = ACTIONS(561), + [anon_sym_is] = ACTIONS(561), + [anon_sym_BANGis] = ACTIONS(561), + [anon_sym_in] = ACTIONS(561), + [anon_sym_BANGin] = ACTIONS(561), + [anon_sym_match] = ACTIONS(561), + [anon_sym_select] = ACTIONS(561), + [anon_sym_STAR_EQ] = ACTIONS(561), + [anon_sym_SLASH_EQ] = ACTIONS(561), + [anon_sym_PERCENT_EQ] = ACTIONS(561), + [anon_sym_LT_LT_EQ] = ACTIONS(561), + [anon_sym_GT_GT_EQ] = ACTIONS(561), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(561), + [anon_sym_AMP_EQ] = ACTIONS(561), + [anon_sym_AMP_CARET_EQ] = ACTIONS(561), + [anon_sym_PLUS_EQ] = ACTIONS(561), + [anon_sym_DASH_EQ] = ACTIONS(561), + [anon_sym_PIPE_EQ] = ACTIONS(561), + [anon_sym_CARET_EQ] = ACTIONS(561), + [anon_sym_COLON_EQ] = ACTIONS(561), + [anon_sym_lock] = ACTIONS(561), + [anon_sym_rlock] = ACTIONS(561), + [anon_sym_unsafe] = ACTIONS(561), + [anon_sym_sql] = ACTIONS(561), + [sym_int_literal] = ACTIONS(561), + [sym_float_literal] = ACTIONS(561), + [sym_rune_literal] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(581), + [anon_sym_chan] = ACTIONS(583), + [anon_sym_thread] = ACTIONS(585), + [anon_sym_atomic] = ACTIONS(587), + [anon_sym_assert] = ACTIONS(561), + [anon_sym_defer] = ACTIONS(561), + [anon_sym_goto] = ACTIONS(561), + [anon_sym_break] = ACTIONS(561), + [anon_sym_continue] = ACTIONS(561), + [anon_sym_return] = ACTIONS(561), + [anon_sym_DOLLARfor] = ACTIONS(561), + [anon_sym_for] = ACTIONS(561), + [anon_sym_POUND] = ACTIONS(561), + [anon_sym_asm] = ACTIONS(561), + [anon_sym_AT_LBRACK] = ACTIONS(561), + [sym___double_quote] = ACTIONS(561), + [sym___single_quote] = ACTIONS(561), + [sym___c_double_quote] = ACTIONS(561), + [sym___c_single_quote] = ACTIONS(561), + [sym___r_double_quote] = ACTIONS(561), + [sym___r_single_quote] = ACTIONS(561), }, [67] = { - [sym_struct_field_scope] = STATE(3479), - [sym_struct_field_declaration] = STATE(3479), - [sym__struct_field_definition] = STATE(3478), - [sym_embedded_definition] = STATE(3477), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4564), - [sym_short_element_list] = STATE(4565), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1155), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(3462), - [sym_function_type] = STATE(2424), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(617), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym___global] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_pub] = ACTIONS(639), - [anon_sym_mut] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2393), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [ts_builtin_sym_end] = ACTIONS(589), + [sym_identifier] = ACTIONS(591), + [anon_sym_LF] = ACTIONS(593), + [anon_sym_CR] = ACTIONS(593), + [anon_sym_CR_LF] = ACTIONS(593), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(593), + [anon_sym_as] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(593), + [anon_sym_COMMA] = ACTIONS(593), + [anon_sym_const] = ACTIONS(593), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_EQ] = ACTIONS(593), + [anon_sym___global] = ACTIONS(593), + [anon_sym_type] = ACTIONS(593), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_STAR] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(593), + [anon_sym_PERCENT] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(593), + [anon_sym_GT_EQ] = ACTIONS(593), + [anon_sym_LBRACK] = ACTIONS(589), + [anon_sym_struct] = ACTIONS(601), + [anon_sym_union] = ACTIONS(593), + [anon_sym_pub] = ACTIONS(593), + [anon_sym_mut] = ACTIONS(593), + [anon_sym_enum] = ACTIONS(593), + [anon_sym_interface] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(593), + [anon_sym_DASH_DASH] = ACTIONS(593), + [anon_sym_QMARK] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(603), + [anon_sym_go] = ACTIONS(593), + [anon_sym_spawn] = ACTIONS(593), + [anon_sym_json_DOTdecode] = ACTIONS(593), + [anon_sym_LBRACK2] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_CARET] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(593), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_GT_GT_GT] = ACTIONS(593), + [anon_sym_AMP_CARET] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(593), + [anon_sym_PIPE_PIPE] = ACTIONS(593), + [anon_sym_or] = ACTIONS(593), + [sym_none] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [sym_nil] = ACTIONS(593), + [anon_sym_QMARK_DOT] = ACTIONS(593), + [anon_sym_POUND_LBRACK] = ACTIONS(593), + [anon_sym_if] = ACTIONS(593), + [anon_sym_DOLLARif] = ACTIONS(593), + [anon_sym_is] = ACTIONS(593), + [anon_sym_BANGis] = ACTIONS(593), + [anon_sym_in] = ACTIONS(593), + [anon_sym_BANGin] = ACTIONS(593), + [anon_sym_match] = ACTIONS(593), + [anon_sym_select] = ACTIONS(593), + [anon_sym_STAR_EQ] = ACTIONS(593), + [anon_sym_SLASH_EQ] = ACTIONS(593), + [anon_sym_PERCENT_EQ] = ACTIONS(593), + [anon_sym_LT_LT_EQ] = ACTIONS(593), + [anon_sym_GT_GT_EQ] = ACTIONS(593), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(593), + [anon_sym_AMP_EQ] = ACTIONS(593), + [anon_sym_AMP_CARET_EQ] = ACTIONS(593), + [anon_sym_PLUS_EQ] = ACTIONS(593), + [anon_sym_DASH_EQ] = ACTIONS(593), + [anon_sym_PIPE_EQ] = ACTIONS(593), + [anon_sym_CARET_EQ] = ACTIONS(593), + [anon_sym_COLON_EQ] = ACTIONS(593), + [anon_sym_lock] = ACTIONS(593), + [anon_sym_rlock] = ACTIONS(593), + [anon_sym_unsafe] = ACTIONS(593), + [anon_sym_sql] = ACTIONS(593), + [sym_int_literal] = ACTIONS(593), + [sym_float_literal] = ACTIONS(593), + [sym_rune_literal] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(593), + [anon_sym_shared] = ACTIONS(609), + [anon_sym_map_LBRACK] = ACTIONS(543), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(593), + [anon_sym_defer] = ACTIONS(593), + [anon_sym_goto] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_return] = ACTIONS(593), + [anon_sym_DOLLARfor] = ACTIONS(593), + [anon_sym_for] = ACTIONS(593), + [anon_sym_POUND] = ACTIONS(593), + [anon_sym_asm] = ACTIONS(593), + [anon_sym_AT_LBRACK] = ACTIONS(593), + [sym___double_quote] = ACTIONS(593), + [sym___single_quote] = ACTIONS(593), + [sym___c_double_quote] = ACTIONS(593), + [sym___c_single_quote] = ACTIONS(593), + [sym___r_double_quote] = ACTIONS(593), + [sym___r_single_quote] = ACTIONS(593), }, [68] = { - [sym_struct_field_scope] = STATE(3479), - [sym_struct_field_declaration] = STATE(3479), - [sym__struct_field_definition] = STATE(3478), - [sym_embedded_definition] = STATE(3477), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4656), - [sym_short_element_list] = STATE(4655), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1155), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(3462), - [sym_function_type] = STATE(2424), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(617), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym___global] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_pub] = ACTIONS(639), - [anon_sym_mut] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [sym_reference_expression] = STATE(4438), + [sym_type_reference_expression] = STATE(618), + [sym_plain_type] = STATE(882), + [sym__plain_type_without_special] = STATE(941), + [sym_anon_struct_type] = STATE(940), + [sym_multi_return_type] = STATE(941), + [sym_result_type] = STATE(941), + [sym_option_type] = STATE(941), + [sym_qualified_type] = STATE(618), + [sym_fixed_array_type] = STATE(940), + [sym_array_type] = STATE(940), + [sym_pointer_type] = STATE(940), + [sym_wrong_pointer_type] = STATE(940), + [sym_map_type] = STATE(940), + [sym_channel_type] = STATE(940), + [sym_shared_type] = STATE(940), + [sym_thread_type] = STATE(940), + [sym_atomic_type] = STATE(940), + [sym_generic_type] = STATE(940), + [sym_function_type] = STATE(940), + [ts_builtin_sym_end] = ACTIONS(611), + [sym_identifier] = ACTIONS(559), + [anon_sym_LF] = ACTIONS(613), + [anon_sym_CR] = ACTIONS(613), + [anon_sym_CR_LF] = ACTIONS(613), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(613), + [anon_sym_as] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_COMMA] = ACTIONS(613), + [anon_sym_const] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(613), + [anon_sym___global] = ACTIONS(613), + [anon_sym_type] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(613), + [anon_sym_fn] = ACTIONS(565), + [anon_sym_PLUS] = ACTIONS(613), + [anon_sym_DASH] = ACTIONS(613), + [anon_sym_STAR] = ACTIONS(567), + [anon_sym_SLASH] = ACTIONS(613), + [anon_sym_PERCENT] = ACTIONS(613), + [anon_sym_LT] = ACTIONS(613), + [anon_sym_GT] = ACTIONS(613), + [anon_sym_EQ_EQ] = ACTIONS(613), + [anon_sym_BANG_EQ] = ACTIONS(613), + [anon_sym_LT_EQ] = ACTIONS(613), + [anon_sym_GT_EQ] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(611), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_union] = ACTIONS(613), + [anon_sym_pub] = ACTIONS(613), + [anon_sym_mut] = ACTIONS(613), + [anon_sym_enum] = ACTIONS(613), + [anon_sym_interface] = ACTIONS(613), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_go] = ACTIONS(613), + [anon_sym_spawn] = ACTIONS(613), + [anon_sym_json_DOTdecode] = ACTIONS(613), + [anon_sym_LBRACK2] = ACTIONS(575), + [anon_sym_TILDE] = ACTIONS(613), + [anon_sym_CARET] = ACTIONS(613), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_LT_DASH] = ACTIONS(613), + [anon_sym_LT_LT] = ACTIONS(613), + [anon_sym_GT_GT] = ACTIONS(613), + [anon_sym_GT_GT_GT] = ACTIONS(613), + [anon_sym_AMP_CARET] = ACTIONS(613), + [anon_sym_AMP_AMP] = ACTIONS(613), + [anon_sym_PIPE_PIPE] = ACTIONS(613), + [anon_sym_or] = ACTIONS(613), + [sym_none] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_nil] = ACTIONS(613), + [anon_sym_QMARK_DOT] = ACTIONS(613), + [anon_sym_POUND_LBRACK] = ACTIONS(613), + [anon_sym_if] = ACTIONS(613), + [anon_sym_DOLLARif] = ACTIONS(613), + [anon_sym_is] = ACTIONS(613), + [anon_sym_BANGis] = ACTIONS(613), + [anon_sym_in] = ACTIONS(613), + [anon_sym_BANGin] = ACTIONS(613), + [anon_sym_match] = ACTIONS(613), + [anon_sym_select] = ACTIONS(613), + [anon_sym_STAR_EQ] = ACTIONS(613), + [anon_sym_SLASH_EQ] = ACTIONS(613), + [anon_sym_PERCENT_EQ] = ACTIONS(613), + [anon_sym_LT_LT_EQ] = ACTIONS(613), + [anon_sym_GT_GT_EQ] = ACTIONS(613), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(613), + [anon_sym_AMP_EQ] = ACTIONS(613), + [anon_sym_AMP_CARET_EQ] = ACTIONS(613), + [anon_sym_PLUS_EQ] = ACTIONS(613), + [anon_sym_DASH_EQ] = ACTIONS(613), + [anon_sym_PIPE_EQ] = ACTIONS(613), + [anon_sym_CARET_EQ] = ACTIONS(613), + [anon_sym_COLON_EQ] = ACTIONS(613), + [anon_sym_lock] = ACTIONS(613), + [anon_sym_rlock] = ACTIONS(613), + [anon_sym_unsafe] = ACTIONS(613), + [anon_sym_sql] = ACTIONS(613), + [sym_int_literal] = ACTIONS(613), + [sym_float_literal] = ACTIONS(613), + [sym_rune_literal] = ACTIONS(613), + [anon_sym_AT] = ACTIONS(613), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(581), + [anon_sym_chan] = ACTIONS(583), + [anon_sym_thread] = ACTIONS(585), + [anon_sym_atomic] = ACTIONS(587), + [anon_sym_assert] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(613), + [anon_sym_goto] = ACTIONS(613), + [anon_sym_break] = ACTIONS(613), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_return] = ACTIONS(613), + [anon_sym_DOLLARfor] = ACTIONS(613), + [anon_sym_for] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(613), + [anon_sym_asm] = ACTIONS(613), + [anon_sym_AT_LBRACK] = ACTIONS(613), + [sym___double_quote] = ACTIONS(613), + [sym___single_quote] = ACTIONS(613), + [sym___c_double_quote] = ACTIONS(613), + [sym___c_single_quote] = ACTIONS(613), + [sym___r_double_quote] = ACTIONS(613), + [sym___r_single_quote] = ACTIONS(613), }, [69] = { - [sym_struct_field_scope] = STATE(3479), - [sym_struct_field_declaration] = STATE(3479), - [sym__struct_field_definition] = STATE(3478), - [sym_embedded_definition] = STATE(3477), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4487), - [sym_short_element_list] = STATE(4488), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1155), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(3462), - [sym_function_type] = STATE(2424), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2359), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [ts_builtin_sym_end] = ACTIONS(615), [sym_identifier] = ACTIONS(617), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym___global] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_pub] = ACTIONS(639), - [anon_sym_mut] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_LF] = ACTIONS(617), + [anon_sym_CR] = ACTIONS(617), + [anon_sym_CR_LF] = ACTIONS(617), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(617), + [anon_sym_as] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_const] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_EQ] = ACTIONS(617), + [anon_sym___global] = ACTIONS(617), + [anon_sym_type] = ACTIONS(617), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_fn] = ACTIONS(617), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(617), + [anon_sym_PERCENT] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(617), + [anon_sym_GT] = ACTIONS(617), + [anon_sym_EQ_EQ] = ACTIONS(617), + [anon_sym_BANG_EQ] = ACTIONS(617), + [anon_sym_LT_EQ] = ACTIONS(617), + [anon_sym_GT_EQ] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_struct] = ACTIONS(617), + [anon_sym_union] = ACTIONS(617), + [anon_sym_pub] = ACTIONS(617), + [anon_sym_mut] = ACTIONS(617), + [anon_sym_enum] = ACTIONS(617), + [anon_sym_interface] = ACTIONS(617), + [anon_sym_PLUS_PLUS] = ACTIONS(617), + [anon_sym_DASH_DASH] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_go] = ACTIONS(617), + [anon_sym_spawn] = ACTIONS(617), + [anon_sym_json_DOTdecode] = ACTIONS(617), + [anon_sym_LBRACK2] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_CARET] = ACTIONS(617), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_LT_DASH] = ACTIONS(617), + [anon_sym_LT_LT] = ACTIONS(617), + [anon_sym_GT_GT] = ACTIONS(617), + [anon_sym_GT_GT_GT] = ACTIONS(617), + [anon_sym_AMP_CARET] = ACTIONS(617), + [anon_sym_AMP_AMP] = ACTIONS(617), + [anon_sym_PIPE_PIPE] = ACTIONS(617), + [anon_sym_or] = ACTIONS(617), + [sym_none] = ACTIONS(617), + [sym_true] = ACTIONS(617), + [sym_false] = ACTIONS(617), + [sym_nil] = ACTIONS(617), + [anon_sym_QMARK_DOT] = ACTIONS(617), + [anon_sym_POUND_LBRACK] = ACTIONS(617), + [anon_sym_if] = ACTIONS(617), + [anon_sym_DOLLARif] = ACTIONS(617), + [anon_sym_is] = ACTIONS(617), + [anon_sym_BANGis] = ACTIONS(617), + [anon_sym_in] = ACTIONS(617), + [anon_sym_BANGin] = ACTIONS(617), + [anon_sym_match] = ACTIONS(617), + [anon_sym_select] = ACTIONS(617), + [anon_sym_STAR_EQ] = ACTIONS(617), + [anon_sym_SLASH_EQ] = ACTIONS(617), + [anon_sym_PERCENT_EQ] = ACTIONS(617), + [anon_sym_LT_LT_EQ] = ACTIONS(617), + [anon_sym_GT_GT_EQ] = ACTIONS(617), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(617), + [anon_sym_AMP_EQ] = ACTIONS(617), + [anon_sym_AMP_CARET_EQ] = ACTIONS(617), + [anon_sym_PLUS_EQ] = ACTIONS(617), + [anon_sym_DASH_EQ] = ACTIONS(617), + [anon_sym_PIPE_EQ] = ACTIONS(617), + [anon_sym_CARET_EQ] = ACTIONS(617), + [anon_sym_COLON_EQ] = ACTIONS(617), + [anon_sym_lock] = ACTIONS(617), + [anon_sym_rlock] = ACTIONS(617), + [anon_sym_unsafe] = ACTIONS(617), + [anon_sym_sql] = ACTIONS(617), + [sym_int_literal] = ACTIONS(617), + [sym_float_literal] = ACTIONS(617), + [sym_rune_literal] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(617), + [anon_sym_shared] = ACTIONS(617), + [anon_sym_map_LBRACK] = ACTIONS(617), + [anon_sym_chan] = ACTIONS(617), + [anon_sym_thread] = ACTIONS(617), + [anon_sym_atomic] = ACTIONS(617), + [anon_sym_assert] = ACTIONS(617), + [anon_sym_defer] = ACTIONS(617), + [anon_sym_goto] = ACTIONS(617), + [anon_sym_break] = ACTIONS(617), + [anon_sym_continue] = ACTIONS(617), + [anon_sym_return] = ACTIONS(617), + [anon_sym_DOLLARfor] = ACTIONS(617), + [anon_sym_for] = ACTIONS(617), + [anon_sym_POUND] = ACTIONS(617), + [anon_sym_asm] = ACTIONS(617), + [anon_sym_AT_LBRACK] = ACTIONS(617), + [sym___double_quote] = ACTIONS(617), + [sym___single_quote] = ACTIONS(617), + [sym___c_double_quote] = ACTIONS(617), + [sym___c_single_quote] = ACTIONS(617), + [sym___r_double_quote] = ACTIONS(617), + [sym___r_single_quote] = ACTIONS(617), }, [70] = { - [sym_struct_field_scope] = STATE(3479), - [sym_struct_field_declaration] = STATE(3479), - [sym__struct_field_definition] = STATE(3478), - [sym_embedded_definition] = STATE(3477), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4411), - [sym_short_element_list] = STATE(4413), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1155), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(3462), - [sym_function_type] = STATE(2424), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(617), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), + [sym_reference_expression] = STATE(4438), + [sym_type_reference_expression] = STATE(618), + [sym_plain_type] = STATE(874), + [sym__plain_type_without_special] = STATE(941), + [sym_anon_struct_type] = STATE(940), + [sym_multi_return_type] = STATE(941), + [sym_result_type] = STATE(941), + [sym_option_type] = STATE(941), + [sym_qualified_type] = STATE(618), + [sym_fixed_array_type] = STATE(940), + [sym_array_type] = STATE(940), + [sym_pointer_type] = STATE(940), + [sym_wrong_pointer_type] = STATE(940), + [sym_map_type] = STATE(940), + [sym_channel_type] = STATE(940), + [sym_shared_type] = STATE(940), + [sym_thread_type] = STATE(940), + [sym_atomic_type] = STATE(940), + [sym_generic_type] = STATE(940), + [sym_function_type] = STATE(940), + [ts_builtin_sym_end] = ACTIONS(619), + [sym_identifier] = ACTIONS(559), + [anon_sym_LF] = ACTIONS(621), + [anon_sym_CR] = ACTIONS(621), + [anon_sym_CR_LF] = ACTIONS(621), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_as] = ACTIONS(621), [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym___global] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_pub] = ACTIONS(639), - [anon_sym_mut] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_const] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym___global] = ACTIONS(621), + [anon_sym_type] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_fn] = ACTIONS(565), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(567), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(621), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_EQ_EQ] = ACTIONS(621), + [anon_sym_BANG_EQ] = ACTIONS(621), + [anon_sym_LT_EQ] = ACTIONS(621), + [anon_sym_GT_EQ] = ACTIONS(621), + [anon_sym_LBRACK] = ACTIONS(619), + [anon_sym_struct] = ACTIONS(569), + [anon_sym_union] = ACTIONS(621), + [anon_sym_pub] = ACTIONS(621), + [anon_sym_mut] = ACTIONS(621), + [anon_sym_enum] = ACTIONS(621), + [anon_sym_interface] = ACTIONS(621), + [anon_sym_PLUS_PLUS] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(571), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_go] = ACTIONS(621), + [anon_sym_spawn] = ACTIONS(621), + [anon_sym_json_DOTdecode] = ACTIONS(621), + [anon_sym_LBRACK2] = ACTIONS(575), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_LT_DASH] = ACTIONS(621), + [anon_sym_LT_LT] = ACTIONS(621), + [anon_sym_GT_GT] = ACTIONS(621), + [anon_sym_GT_GT_GT] = ACTIONS(621), + [anon_sym_AMP_CARET] = ACTIONS(621), + [anon_sym_AMP_AMP] = ACTIONS(621), + [anon_sym_PIPE_PIPE] = ACTIONS(621), + [anon_sym_or] = ACTIONS(621), + [sym_none] = ACTIONS(621), + [sym_true] = ACTIONS(621), + [sym_false] = ACTIONS(621), + [sym_nil] = ACTIONS(621), + [anon_sym_QMARK_DOT] = ACTIONS(621), + [anon_sym_POUND_LBRACK] = ACTIONS(621), + [anon_sym_if] = ACTIONS(621), + [anon_sym_DOLLARif] = ACTIONS(621), + [anon_sym_is] = ACTIONS(621), + [anon_sym_BANGis] = ACTIONS(621), + [anon_sym_in] = ACTIONS(621), + [anon_sym_BANGin] = ACTIONS(621), + [anon_sym_match] = ACTIONS(621), + [anon_sym_select] = ACTIONS(621), + [anon_sym_STAR_EQ] = ACTIONS(621), + [anon_sym_SLASH_EQ] = ACTIONS(621), + [anon_sym_PERCENT_EQ] = ACTIONS(621), + [anon_sym_LT_LT_EQ] = ACTIONS(621), + [anon_sym_GT_GT_EQ] = ACTIONS(621), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(621), + [anon_sym_AMP_EQ] = ACTIONS(621), + [anon_sym_AMP_CARET_EQ] = ACTIONS(621), + [anon_sym_PLUS_EQ] = ACTIONS(621), + [anon_sym_DASH_EQ] = ACTIONS(621), + [anon_sym_PIPE_EQ] = ACTIONS(621), + [anon_sym_CARET_EQ] = ACTIONS(621), + [anon_sym_COLON_EQ] = ACTIONS(621), + [anon_sym_lock] = ACTIONS(621), + [anon_sym_rlock] = ACTIONS(621), + [anon_sym_unsafe] = ACTIONS(621), + [anon_sym_sql] = ACTIONS(621), + [sym_int_literal] = ACTIONS(621), + [sym_float_literal] = ACTIONS(621), + [sym_rune_literal] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(581), + [anon_sym_chan] = ACTIONS(583), + [anon_sym_thread] = ACTIONS(585), + [anon_sym_atomic] = ACTIONS(587), + [anon_sym_assert] = ACTIONS(621), + [anon_sym_defer] = ACTIONS(621), + [anon_sym_goto] = ACTIONS(621), + [anon_sym_break] = ACTIONS(621), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_return] = ACTIONS(621), + [anon_sym_DOLLARfor] = ACTIONS(621), + [anon_sym_for] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_asm] = ACTIONS(621), + [anon_sym_AT_LBRACK] = ACTIONS(621), + [sym___double_quote] = ACTIONS(621), + [sym___single_quote] = ACTIONS(621), + [sym___c_double_quote] = ACTIONS(621), + [sym___c_single_quote] = ACTIONS(621), + [sym___r_double_quote] = ACTIONS(621), + [sym___r_single_quote] = ACTIONS(621), }, [71] = { - [sym_struct_field_scope] = STATE(3479), - [sym_struct_field_declaration] = STATE(3479), - [sym__struct_field_definition] = STATE(3478), - [sym_embedded_definition] = STATE(3477), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4482), - [sym_short_element_list] = STATE(4481), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1155), + [sym_struct_field_scope] = STATE(3475), + [sym_struct_field_declaration] = STATE(3475), + [sym__struct_field_definition] = STATE(3476), + [sym_embedded_definition] = STATE(3480), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_element_list] = STATE(4603), + [sym_short_element_list] = STATE(4604), + [sym_element] = STATE(1965), + [sym_keyed_element] = STATE(3481), + [sym_field_name] = STATE(4548), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1159), [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_spread_expression] = STATE(3481), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(3462), - [sym_function_type] = STATE(2424), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(617), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(3452), + [sym_function_type] = STATE(2417), + [aux_sym__struct_body_repeat1] = STATE(3368), + [aux_sym_element_list_repeat1] = STATE(3477), + [aux_sym_short_element_list_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(623), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym___global] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_pub] = ACTIONS(639), - [anon_sym_mut] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym___global] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_pub] = ACTIONS(645), + [anon_sym_mut] = ACTIONS(647), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [72] = { - [sym_struct_field_scope] = STATE(3479), - [sym_struct_field_declaration] = STATE(3479), - [sym__struct_field_definition] = STATE(3478), - [sym_embedded_definition] = STATE(3477), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4464), - [sym_short_element_list] = STATE(4472), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1155), + [sym_struct_field_scope] = STATE(3475), + [sym_struct_field_declaration] = STATE(3475), + [sym__struct_field_definition] = STATE(3476), + [sym_embedded_definition] = STATE(3480), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_element_list] = STATE(4517), + [sym_short_element_list] = STATE(4513), + [sym_element] = STATE(1965), + [sym_keyed_element] = STATE(3481), + [sym_field_name] = STATE(4548), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1159), [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_spread_expression] = STATE(3481), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(3462), - [sym_function_type] = STATE(2424), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(617), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(3452), + [sym_function_type] = STATE(2417), + [aux_sym__struct_body_repeat1] = STATE(3368), + [aux_sym_element_list_repeat1] = STATE(3477), + [aux_sym_short_element_list_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(623), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym___global] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_pub] = ACTIONS(639), - [anon_sym_mut] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym___global] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_pub] = ACTIONS(645), + [anon_sym_mut] = ACTIONS(647), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [73] = { - [sym_struct_field_scope] = STATE(3479), - [sym_struct_field_declaration] = STATE(3479), - [sym__struct_field_definition] = STATE(3478), - [sym_embedded_definition] = STATE(3477), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4607), - [sym_short_element_list] = STATE(4612), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1155), + [sym_struct_field_scope] = STATE(3475), + [sym_struct_field_declaration] = STATE(3475), + [sym__struct_field_definition] = STATE(3476), + [sym_embedded_definition] = STATE(3480), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_element_list] = STATE(4699), + [sym_short_element_list] = STATE(4698), + [sym_element] = STATE(1965), + [sym_keyed_element] = STATE(3481), + [sym_field_name] = STATE(4548), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1159), [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_spread_expression] = STATE(3481), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(3462), - [sym_function_type] = STATE(2424), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(617), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(3452), + [sym_function_type] = STATE(2417), + [aux_sym__struct_body_repeat1] = STATE(3368), + [aux_sym_element_list_repeat1] = STATE(3477), + [aux_sym_short_element_list_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(623), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym___global] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_pub] = ACTIONS(639), - [anon_sym_mut] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym___global] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_pub] = ACTIONS(645), + [anon_sym_mut] = ACTIONS(647), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [74] = { - [sym_struct_field_scope] = STATE(3479), - [sym_struct_field_declaration] = STATE(3479), - [sym__struct_field_definition] = STATE(3478), - [sym_embedded_definition] = STATE(3477), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4695), - [sym_short_element_list] = STATE(4694), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1155), + [sym_struct_field_scope] = STATE(3475), + [sym_struct_field_declaration] = STATE(3475), + [sym__struct_field_definition] = STATE(3476), + [sym_embedded_definition] = STATE(3480), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_element_list] = STATE(4649), + [sym_short_element_list] = STATE(4650), + [sym_element] = STATE(1965), + [sym_keyed_element] = STATE(3481), + [sym_field_name] = STATE(4548), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1159), [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_spread_expression] = STATE(3481), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(3462), - [sym_function_type] = STATE(2424), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(617), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(3452), + [sym_function_type] = STATE(2417), + [aux_sym__struct_body_repeat1] = STATE(3368), + [aux_sym_element_list_repeat1] = STATE(3477), + [aux_sym_short_element_list_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(623), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym___global] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_pub] = ACTIONS(639), - [anon_sym_mut] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym___global] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_pub] = ACTIONS(645), + [anon_sym_mut] = ACTIONS(647), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [75] = { - [sym_struct_field_scope] = STATE(3479), - [sym_struct_field_declaration] = STATE(3479), - [sym__struct_field_definition] = STATE(3478), - [sym_embedded_definition] = STATE(3477), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4666), - [sym_short_element_list] = STATE(4734), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1155), + [sym_struct_field_scope] = STATE(3475), + [sym_struct_field_declaration] = STATE(3475), + [sym__struct_field_definition] = STATE(3476), + [sym_embedded_definition] = STATE(3480), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_element_list] = STATE(4555), + [sym_short_element_list] = STATE(4554), + [sym_element] = STATE(1965), + [sym_keyed_element] = STATE(3481), + [sym_field_name] = STATE(4548), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1159), [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_spread_expression] = STATE(3481), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(3462), - [sym_function_type] = STATE(2424), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(617), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(3452), + [sym_function_type] = STATE(2417), + [aux_sym__struct_body_repeat1] = STATE(3368), + [aux_sym_element_list_repeat1] = STATE(3477), + [aux_sym_short_element_list_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(623), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym___global] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_pub] = ACTIONS(639), - [anon_sym_mut] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym___global] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_pub] = ACTIONS(645), + [anon_sym_mut] = ACTIONS(647), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [76] = { - [sym_struct_field_scope] = STATE(3479), - [sym_struct_field_declaration] = STATE(3479), - [sym__struct_field_definition] = STATE(3478), - [sym_embedded_definition] = STATE(3477), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4646), - [sym_short_element_list] = STATE(4645), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1155), + [sym_struct_field_scope] = STATE(3475), + [sym_struct_field_declaration] = STATE(3475), + [sym__struct_field_definition] = STATE(3476), + [sym_embedded_definition] = STATE(3480), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_element_list] = STATE(4575), + [sym_short_element_list] = STATE(4571), + [sym_element] = STATE(1965), + [sym_keyed_element] = STATE(3481), + [sym_field_name] = STATE(4548), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1159), [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_spread_expression] = STATE(3481), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(3462), - [sym_function_type] = STATE(2424), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(617), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(3452), + [sym_function_type] = STATE(2417), + [aux_sym__struct_body_repeat1] = STATE(3368), + [aux_sym_element_list_repeat1] = STATE(3477), + [aux_sym_short_element_list_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(623), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym___global] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_pub] = ACTIONS(639), - [anon_sym_mut] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym___global] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_pub] = ACTIONS(645), + [anon_sym_mut] = ACTIONS(647), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [77] = { - [sym_struct_field_scope] = STATE(3479), - [sym_struct_field_declaration] = STATE(3479), - [sym__struct_field_definition] = STATE(3478), - [sym_embedded_definition] = STATE(3477), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4664), - [sym_short_element_list] = STATE(4614), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1155), + [sym_struct_field_scope] = STATE(3475), + [sym_struct_field_declaration] = STATE(3475), + [sym__struct_field_definition] = STATE(3476), + [sym_embedded_definition] = STATE(3480), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_element_list] = STATE(4737), + [sym_short_element_list] = STATE(4736), + [sym_element] = STATE(1965), + [sym_keyed_element] = STATE(3481), + [sym_field_name] = STATE(4548), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1159), [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_spread_expression] = STATE(3481), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(3462), - [sym_function_type] = STATE(2424), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(617), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(3452), + [sym_function_type] = STATE(2417), + [aux_sym__struct_body_repeat1] = STATE(3368), + [aux_sym_element_list_repeat1] = STATE(3477), + [aux_sym_short_element_list_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(623), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym___global] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_pub] = ACTIONS(639), - [anon_sym_mut] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym___global] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_pub] = ACTIONS(645), + [anon_sym_mut] = ACTIONS(647), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [78] = { - [sym_struct_field_scope] = STATE(3479), - [sym_struct_field_declaration] = STATE(3479), - [sym__struct_field_definition] = STATE(3478), - [sym_embedded_definition] = STATE(3477), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4616), - [sym_short_element_list] = STATE(4617), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1155), + [sym_struct_field_scope] = STATE(3475), + [sym_struct_field_declaration] = STATE(3475), + [sym__struct_field_definition] = STATE(3476), + [sym_embedded_definition] = STATE(3480), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_element_list] = STATE(4694), + [sym_short_element_list] = STATE(4695), + [sym_element] = STATE(1965), + [sym_keyed_element] = STATE(3481), + [sym_field_name] = STATE(4548), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1159), [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_spread_expression] = STATE(3481), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(3462), - [sym_function_type] = STATE(2424), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(617), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(3452), + [sym_function_type] = STATE(2417), + [aux_sym__struct_body_repeat1] = STATE(3368), + [aux_sym_element_list_repeat1] = STATE(3477), + [aux_sym_short_element_list_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(623), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym___global] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_pub] = ACTIONS(639), - [anon_sym_mut] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym___global] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_pub] = ACTIONS(645), + [anon_sym_mut] = ACTIONS(647), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [79] = { - [sym_struct_field_scope] = STATE(3479), - [sym_struct_field_declaration] = STATE(3479), - [sym__struct_field_definition] = STATE(3478), - [sym_embedded_definition] = STATE(3477), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4563), - [sym_short_element_list] = STATE(4561), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1155), + [sym_struct_field_scope] = STATE(3475), + [sym_struct_field_declaration] = STATE(3475), + [sym__struct_field_definition] = STATE(3476), + [sym_embedded_definition] = STATE(3480), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_element_list] = STATE(4640), + [sym_short_element_list] = STATE(4637), + [sym_element] = STATE(1965), + [sym_keyed_element] = STATE(3481), + [sym_field_name] = STATE(4548), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1159), [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_spread_expression] = STATE(3481), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(3462), - [sym_function_type] = STATE(2424), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(617), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(3452), + [sym_function_type] = STATE(2417), + [aux_sym__struct_body_repeat1] = STATE(3368), + [aux_sym_element_list_repeat1] = STATE(3477), + [aux_sym_short_element_list_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(623), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym___global] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_pub] = ACTIONS(639), - [anon_sym_mut] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym___global] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_pub] = ACTIONS(645), + [anon_sym_mut] = ACTIONS(647), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [80] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(117), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4611), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(689), + [sym_struct_field_scope] = STATE(3475), + [sym_struct_field_declaration] = STATE(3475), + [sym__struct_field_definition] = STATE(3476), + [sym_embedded_definition] = STATE(3480), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_element_list] = STATE(4602), + [sym_short_element_list] = STATE(4601), + [sym_element] = STATE(1965), + [sym_keyed_element] = STATE(3481), + [sym_field_name] = STATE(4548), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1159), + [sym_type_reference_expression] = STATE(3424), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_spread_expression] = STATE(3481), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3424), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(3452), + [sym_function_type] = STATE(2417), + [aux_sym__struct_body_repeat1] = STATE(3368), + [aux_sym_element_list_repeat1] = STATE(3477), + [aux_sym_short_element_list_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(623), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(695), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym___global] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_pub] = ACTIONS(645), + [anon_sym_mut] = ACTIONS(647), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [81] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(109), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4643), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(109), - [sym_identifier] = ACTIONS(689), + [sym_struct_field_scope] = STATE(3475), + [sym_struct_field_declaration] = STATE(3475), + [sym__struct_field_definition] = STATE(3476), + [sym_embedded_definition] = STATE(3480), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_element_list] = STATE(4673), + [sym_short_element_list] = STATE(4672), + [sym_element] = STATE(1965), + [sym_keyed_element] = STATE(3481), + [sym_field_name] = STATE(4548), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1159), + [sym_type_reference_expression] = STATE(3424), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_spread_expression] = STATE(3481), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3424), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(3452), + [sym_function_type] = STATE(2417), + [aux_sym__struct_body_repeat1] = STATE(3368), + [aux_sym_element_list_repeat1] = STATE(3477), + [aux_sym_short_element_list_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(623), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(755), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym___global] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_pub] = ACTIONS(645), + [anon_sym_mut] = ACTIONS(647), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [82] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(140), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4571), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(689), + [sym_struct_field_scope] = STATE(3475), + [sym_struct_field_declaration] = STATE(3475), + [sym__struct_field_definition] = STATE(3476), + [sym_embedded_definition] = STATE(3480), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_element_list] = STATE(4546), + [sym_short_element_list] = STATE(4547), + [sym_element] = STATE(1965), + [sym_keyed_element] = STATE(3481), + [sym_field_name] = STATE(4548), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1159), + [sym_type_reference_expression] = STATE(3424), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_spread_expression] = STATE(3481), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3424), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(3452), + [sym_function_type] = STATE(2417), + [aux_sym__struct_body_repeat1] = STATE(3368), + [aux_sym_element_list_repeat1] = STATE(3477), + [aux_sym_short_element_list_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(623), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym___global] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_pub] = ACTIONS(645), + [anon_sym_mut] = ACTIONS(647), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [83] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(115), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4559), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(115), - [sym_identifier] = ACTIONS(689), + [sym_struct_field_scope] = STATE(3475), + [sym_struct_field_declaration] = STATE(3475), + [sym__struct_field_definition] = STATE(3476), + [sym_embedded_definition] = STATE(3480), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_element_list] = STATE(4541), + [sym_short_element_list] = STATE(4540), + [sym_element] = STATE(1965), + [sym_keyed_element] = STATE(3481), + [sym_field_name] = STATE(4548), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1159), + [sym_type_reference_expression] = STATE(3424), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_spread_expression] = STATE(3481), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3424), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(3452), + [sym_function_type] = STATE(2417), + [aux_sym__struct_body_repeat1] = STATE(3368), + [aux_sym_element_list_repeat1] = STATE(3477), + [aux_sym_short_element_list_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(623), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(759), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym___global] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_pub] = ACTIONS(645), + [anon_sym_mut] = ACTIONS(647), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [84] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(133), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4676), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2631), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(127), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4538), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [aux_sym_select_expression_repeat1] = STATE(127), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(701), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [85] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(115), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4559), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(115), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2631), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(134), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4634), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [aux_sym_select_expression_repeat1] = STATE(134), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(761), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [86] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(111), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4692), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(111), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2631), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(110), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4735), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [aux_sym_select_expression_repeat1] = STATE(110), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [87] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(111), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), + [sym__expression] = STATE(2631), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(133), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), [sym_select_else_arn_clause] = STATE(4692), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(111), - [sym_identifier] = ACTIONS(689), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [aux_sym_select_expression_repeat1] = STATE(133), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(767), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [88] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(135), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4495), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2631), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(118), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4600), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [aux_sym_select_expression_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(769), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(767), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [89] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(139), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4652), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(139), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2631), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(127), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4538), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [aux_sym_select_expression_repeat1] = STATE(127), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [90] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(119), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4493), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(119), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2631), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(133), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4692), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [aux_sym_select_expression_repeat1] = STATE(133), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(773), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(771), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [91] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(138), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4412), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(138), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2631), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(110), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4735), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [aux_sym_select_expression_repeat1] = STATE(110), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(773), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [92] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(139), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4652), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(139), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2631), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(119), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4651), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [aux_sym_select_expression_repeat1] = STATE(119), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(777), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [93] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(125), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4733), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(125), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2631), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(120), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4512), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [aux_sym_select_expression_repeat1] = STATE(120), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(779), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(777), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [94] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(140), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4571), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2631), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(142), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4568), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [aux_sym_select_expression_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(781), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [95] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(106), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4667), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(106), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2631), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(129), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4609), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [aux_sym_select_expression_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(781), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [96] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(138), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4412), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(138), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2631), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(129), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4609), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [aux_sym_select_expression_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [97] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(139), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4652), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(139), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2631), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(129), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4609), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [aux_sym_select_expression_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(759), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [98] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(115), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4559), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(115), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2631), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(124), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4722), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [aux_sym_select_expression_repeat1] = STATE(124), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(787), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [99] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(115), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4559), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(115), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2631), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(142), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4568), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [aux_sym_select_expression_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(777), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(787), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [100] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(135), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4495), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2631), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(129), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4609), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [aux_sym_select_expression_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), [anon_sym_RBRACE] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [101] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(130), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4473), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(130), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2631), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(127), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4538), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [aux_sym_select_expression_repeat1] = STATE(127), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(791), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [102] = { - [sym__expression] = STATE(1670), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_strictly_expression_list] = STATE(4132), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(771), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3366), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_simple_statement] = STATE(4541), - [sym_var_declaration] = STATE(4132), - [sym_var_definition_list] = STATE(4548), - [sym_var_definition] = STATE(3984), - [sym_assignment_statement] = STATE(4132), - [sym_block] = STATE(3718), - [sym_range_clause] = STATE(4197), - [sym_for_clause] = STATE(4197), - [sym_identifier] = ACTIONS(793), + [sym__expression] = STATE(2631), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(124), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4722), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [aux_sym_select_expression_repeat1] = STATE(124), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(795), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(791), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [103] = { - [sym__expression] = STATE(1662), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_strictly_expression_list] = STATE(4132), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(771), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3366), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_simple_statement] = STATE(4541), - [sym_var_declaration] = STATE(4132), - [sym_var_definition_list] = STATE(4548), - [sym_var_definition] = STATE(3984), - [sym_assignment_statement] = STATE(4132), - [sym_block] = STATE(1498), - [sym_range_clause] = STATE(4231), - [sym_for_clause] = STATE(4231), - [sym_identifier] = ACTIONS(793), + [sym__expression] = STATE(2631), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(132), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4549), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [aux_sym_select_expression_repeat1] = STATE(132), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(795), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(793), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [104] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4526), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2631), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(112), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4670), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [aux_sym_select_expression_repeat1] = STATE(112), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(795), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [105] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4640), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2631), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(140), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4526), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [aux_sym_select_expression_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(863), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [106] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4719), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(1642), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_strictly_expression_list] = STATE(4170), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(656), + [sym_mutable_expression] = STATE(3354), + [sym_expression_list] = STATE(3413), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_simple_statement] = STATE(4633), + [sym_var_declaration] = STATE(4170), + [sym_var_definition_list] = STATE(4636), + [sym_var_definition] = STATE(3973), + [sym_assignment_statement] = STATE(4170), + [sym_block] = STATE(1520), + [sym_range_clause] = STATE(4226), + [sym_for_clause] = STATE(4226), + [sym_identifier] = ACTIONS(799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(865), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(805), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(817), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_go] = ACTIONS(821), + [anon_sym_spawn] = ACTIONS(823), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(827), + [anon_sym_TILDE] = ACTIONS(811), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_LT_DASH] = ACTIONS(831), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(841), + [anon_sym_lock] = ACTIONS(843), + [anon_sym_rlock] = ACTIONS(843), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [107] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4601), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(1643), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_strictly_expression_list] = STATE(4170), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(656), + [sym_mutable_expression] = STATE(3354), + [sym_expression_list] = STATE(3413), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_simple_statement] = STATE(4633), + [sym_var_declaration] = STATE(4170), + [sym_var_definition_list] = STATE(4636), + [sym_var_definition] = STATE(3973), + [sym_assignment_statement] = STATE(4170), + [sym_block] = STATE(3769), + [sym_range_clause] = STATE(4186), + [sym_for_clause] = STATE(4186), + [sym_identifier] = ACTIONS(799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(867), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(817), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_go] = ACTIONS(821), + [anon_sym_spawn] = ACTIONS(823), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(827), + [anon_sym_TILDE] = ACTIONS(811), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_LT_DASH] = ACTIONS(831), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(841), + [anon_sym_lock] = ACTIONS(843), + [anon_sym_rlock] = ACTIONS(843), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [108] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(110), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4681), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(110), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(135), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4671), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [109] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4628), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(158), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4683), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(869), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [110] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4690), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(158), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4724), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [111] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4678), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(158), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4449), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(873), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [112] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(127), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4627), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(127), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(158), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4659), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [113] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4592), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(116), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4658), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(116), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [114] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(104), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4530), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(104), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(143), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4525), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [115] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4536), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(158), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4551), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(881), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [116] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4630), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(158), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4654), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(883), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [117] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4604), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(144), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4622), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [118] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(134), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4716), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(158), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4593), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(887), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [119] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4710), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(158), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4669), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [120] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4456), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(158), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4505), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [121] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4451), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(126), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4592), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(126), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [122] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(120), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4453), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(120), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(158), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4719), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(897), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(895), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [123] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(107), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4603), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(107), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(146), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4504), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(146), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [124] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4674), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(158), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4708), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(901), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [125] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4726), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(158), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4624), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [126] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(124), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4677), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(124), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(158), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4590), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [127] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4622), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(158), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4412), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(907), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(905), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [128] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(129), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4725), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(138), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4711), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(138), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [129] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4723), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(158), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4621), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [130] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4454), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(122), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4723), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(122), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [131] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(113), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4589), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(113), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(125), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4626), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(125), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [132] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(105), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4634), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(105), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(158), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4576), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(915), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [133] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4633), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(158), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4685), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [134] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4516), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(158), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4627), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(921), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [135] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4509), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(158), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4674), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [136] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(121), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4442), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(121), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(137), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4580), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [137] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(141), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4513), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(141), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(158), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4533), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [138] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4441), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(158), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4715), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [139] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4635), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(115), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4559), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(115), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [140] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4588), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(158), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4436), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [141] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4517), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(111), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4435), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(111), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [142] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(116), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4408), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(116), - [sym_identifier] = ACTIONS(689), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(158), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4560), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [143] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4673), - [sym_short_element_list] = STATE(4675), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1147), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(939), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(158), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4521), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [144] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4637), - [sym_short_element_list] = STATE(4636), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1147), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(939), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(158), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4623), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(939), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [145] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4625), - [sym_short_element_list] = STATE(4629), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1147), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(939), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(109), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4684), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(109), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [146] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [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(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [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(1922), - [sym_map_init_expression] = STATE(2902), - [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(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(947), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(158), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_select_else_arn_clause] = STATE(4503), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(958), - [anon_sym_fn] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_struct] = ACTIONS(970), - [anon_sym_mut] = ACTIONS(973), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_go] = ACTIONS(982), - [anon_sym_spawn] = ACTIONS(985), - [anon_sym_json_DOTdecode] = ACTIONS(988), - [anon_sym_LBRACK2] = ACTIONS(991), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_CARET] = ACTIONS(964), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_LT_DASH] = ACTIONS(997), - [sym_none] = ACTIONS(1000), - [sym_true] = ACTIONS(1000), - [sym_false] = ACTIONS(1000), - [sym_nil] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1003), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_DOLLARif] = ACTIONS(1008), - [anon_sym_match] = ACTIONS(1011), - [anon_sym_select] = ACTIONS(1014), - [anon_sym_lock] = ACTIONS(1017), - [anon_sym_rlock] = ACTIONS(1017), - [anon_sym_unsafe] = ACTIONS(1020), - [anon_sym_sql] = ACTIONS(1023), - [sym_int_literal] = ACTIONS(1000), - [sym_float_literal] = ACTIONS(1026), - [sym_rune_literal] = ACTIONS(1026), - [anon_sym_AT] = ACTIONS(1029), - [anon_sym_shared] = ACTIONS(1032), - [anon_sym_map_LBRACK] = ACTIONS(1035), - [anon_sym_chan] = ACTIONS(1038), - [anon_sym_thread] = ACTIONS(1041), - [anon_sym_atomic] = ACTIONS(1044), - [sym___double_quote] = ACTIONS(1047), - [sym___single_quote] = ACTIONS(1050), - [sym___c_double_quote] = ACTIONS(1053), - [sym___c_single_quote] = ACTIONS(1056), - [sym___r_double_quote] = ACTIONS(1059), - [sym___r_single_quote] = ACTIONS(1062), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(711), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(731), + [anon_sym_DOLLARif] = ACTIONS(733), + [anon_sym_match] = ACTIONS(735), + [anon_sym_select] = ACTIONS(737), + [anon_sym_lock] = ACTIONS(739), + [anon_sym_rlock] = ACTIONS(739), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_sql] = ACTIONS(743), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [147] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4647), - [sym_short_element_list] = STATE(4644), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1147), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(939), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_element_list] = STATE(4703), + [sym_short_element_list] = STATE(4704), + [sym_element] = STATE(1965), + [sym_keyed_element] = STATE(3481), + [sym_field_name] = STATE(4548), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1149), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_spread_expression] = STATE(3481), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_element_list_repeat1] = STATE(3477), + [aux_sym_short_element_list_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(945), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(947), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [148] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4463), - [sym_short_element_list] = STATE(4462), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1147), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(939), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_element_list] = STATE(4616), + [sym_short_element_list] = STATE(4613), + [sym_element] = STATE(1965), + [sym_keyed_element] = STATE(3481), + [sym_field_name] = STATE(4548), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1149), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_spread_expression] = STATE(3481), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_element_list_repeat1] = STATE(3477), + [aux_sym_short_element_list_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(945), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(1067), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [149] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4546), - [sym_short_element_list] = STATE(4551), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1147), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(939), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_element_list] = STATE(4484), + [sym_short_element_list] = STATE(4450), + [sym_element] = STATE(1965), + [sym_keyed_element] = STATE(3481), + [sym_field_name] = STATE(4548), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1149), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_spread_expression] = STATE(3481), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_element_list_repeat1] = STATE(3477), + [aux_sym_short_element_list_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(945), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(951), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [150] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4501), - [sym_short_element_list] = STATE(4503), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1147), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(939), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_element_list] = STATE(4530), + [sym_short_element_list] = STATE(4529), + [sym_element] = STATE(1965), + [sym_keyed_element] = STATE(3481), + [sym_field_name] = STATE(4548), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1149), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_spread_expression] = STATE(3481), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_element_list_repeat1] = STATE(3477), + [aux_sym_short_element_list_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(945), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(953), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [151] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4683), - [sym_short_element_list] = STATE(4682), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1147), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(939), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_element_list] = STATE(4563), + [sym_short_element_list] = STATE(4562), + [sym_element] = STATE(1965), + [sym_keyed_element] = STATE(3481), + [sym_field_name] = STATE(4548), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1149), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_spread_expression] = STATE(3481), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_element_list_repeat1] = STATE(3477), + [aux_sym_short_element_list_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(945), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(1073), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(955), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [152] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4579), - [sym_short_element_list] = STATE(4584), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1147), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(939), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_element_list] = STATE(4630), + [sym_short_element_list] = STATE(4629), + [sym_element] = STATE(1965), + [sym_keyed_element] = STATE(3481), + [sym_field_name] = STATE(4548), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1149), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_spread_expression] = STATE(3481), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_element_list_repeat1] = STATE(3477), + [aux_sym_short_element_list_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(945), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(957), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [153] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4527), - [sym_short_element_list] = STATE(4606), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1147), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(939), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_element_list] = STATE(4656), + [sym_short_element_list] = STATE(4657), + [sym_element] = STATE(1965), + [sym_keyed_element] = STATE(3481), + [sym_field_name] = STATE(4548), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1149), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_spread_expression] = STATE(3481), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_element_list_repeat1] = STATE(3477), + [aux_sym_short_element_list_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(945), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(1077), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(959), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [154] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4436), - [sym_short_element_list] = STATE(4437), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1147), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(939), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_element_list] = STATE(4597), + [sym_short_element_list] = STATE(4596), + [sym_element] = STATE(1965), + [sym_keyed_element] = STATE(3481), + [sym_field_name] = STATE(4548), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1149), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_spread_expression] = STATE(3481), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_element_list_repeat1] = STATE(3477), + [aux_sym_short_element_list_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(945), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(961), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [155] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4479), - [sym_short_element_list] = STATE(4547), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1147), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(939), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_element_list] = STATE(4729), + [sym_short_element_list] = STATE(4727), + [sym_element] = STATE(1965), + [sym_keyed_element] = STATE(3481), + [sym_field_name] = STATE(4548), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1149), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_spread_expression] = STATE(3481), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_element_list_repeat1] = STATE(3477), + [aux_sym_short_element_list_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(945), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [156] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4729), - [sym_short_element_list] = STATE(4728), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1147), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(939), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_element_list] = STATE(4664), + [sym_short_element_list] = STATE(4663), + [sym_element] = STATE(1965), + [sym_keyed_element] = STATE(3481), + [sym_field_name] = STATE(4548), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1149), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_spread_expression] = STATE(3481), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_element_list_repeat1] = STATE(3477), + [aux_sym_short_element_list_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(945), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(965), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [157] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arms] = STATE(4727), - [sym_match_arm] = STATE(173), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(173), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(1085), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_element_list] = STATE(4589), + [sym_short_element_list] = STATE(4565), + [sym_element] = STATE(1965), + [sym_keyed_element] = STATE(3481), + [sym_field_name] = STATE(4548), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1149), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_spread_expression] = STATE(3481), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_element_list_repeat1] = STATE(3477), + [aux_sym_short_element_list_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(945), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1091), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [158] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arms] = STATE(4537), - [sym_match_arm] = STATE(173), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(173), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(1085), + [sym__expression] = STATE(2795), + [sym__expression_without_blocks] = STATE(1927), + [sym__expression_with_blocks] = STATE(2891), + [sym_inc_expression] = STATE(1927), + [sym_dec_expression] = STATE(1927), + [sym_or_block_expression] = STATE(1927), + [sym_option_propagation_expression] = STATE(1927), + [sym_result_propagation_expression] = STATE(1927), + [sym_anon_struct_value_expression] = STATE(2890), + [sym_go_expression] = STATE(1927), + [sym_spawn_expression] = STATE(1927), + [sym_parenthesized_expression] = STATE(1927), + [sym_call_expression] = STATE(1927), + [sym_type_initializer] = STATE(2890), + [sym_function_literal] = STATE(1927), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1927), + [sym_receive_expression] = STATE(1927), + [sym_binary_expression] = STATE(1927), + [sym_as_type_cast_expression] = STATE(1927), + [sym__max_group] = STATE(1927), + [sym_literal] = STATE(1927), + [sym_map_init_expression] = STATE(2890), + [sym_array_creation] = STATE(1927), + [sym_fixed_array_creation] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym_index_expression] = STATE(1927), + [sym_slice_expression] = STATE(1927), + [sym_if_expression] = STATE(2890), + [sym_compile_time_if_expression] = STATE(2890), + [sym_is_expression] = STATE(1927), + [sym_not_is_expression] = STATE(1927), + [sym_in_expression] = STATE(1927), + [sym_not_in_expression] = STATE(1927), + [sym_enum_fetch] = STATE(1927), + [sym_match_expression] = STATE(2890), + [sym_select_expression] = STATE(2890), + [sym_select_arm] = STATE(158), + [sym_select_arm_statement] = STATE(4135), + [sym_select_var_declaration] = STATE(4527), + [sym_lock_expression] = STATE(2890), + [sym_unsafe_expression] = STATE(2890), + [sym_sql_expression] = STATE(2890), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1927), + [sym_mutability_modifiers] = STATE(448), + [sym_mutable_identifier] = STATE(4076), + [sym_identifier_list] = STATE(4524), + [sym_expression_without_blocks_list] = STATE(3364), + [sym_plain_type] = STATE(4395), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_send_statement] = STATE(4527), + [aux_sym_select_expression_repeat1] = STATE(158), + [sym_identifier] = ACTIONS(969), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(975), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_fn] = ACTIONS(983), + [anon_sym_PLUS] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_mut] = ACTIONS(995), + [anon_sym_QMARK] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_go] = ACTIONS(1004), + [anon_sym_spawn] = ACTIONS(1007), + [anon_sym_json_DOTdecode] = ACTIONS(1010), + [anon_sym_LBRACK2] = ACTIONS(1013), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(1016), + [anon_sym_LT_DASH] = ACTIONS(1019), + [sym_none] = ACTIONS(1022), + [sym_true] = ACTIONS(1022), + [sym_false] = ACTIONS(1022), + [sym_nil] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1025), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_DOLLARif] = ACTIONS(1030), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_select] = ACTIONS(1036), + [anon_sym_lock] = ACTIONS(1039), + [anon_sym_rlock] = ACTIONS(1039), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_sql] = ACTIONS(1045), + [sym_int_literal] = ACTIONS(1022), + [sym_float_literal] = ACTIONS(1048), + [sym_rune_literal] = ACTIONS(1048), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_shared] = ACTIONS(1054), + [anon_sym_map_LBRACK] = ACTIONS(1057), + [anon_sym_chan] = ACTIONS(1060), + [anon_sym_thread] = ACTIONS(1063), + [anon_sym_atomic] = ACTIONS(1066), + [sym___double_quote] = ACTIONS(1069), + [sym___single_quote] = ACTIONS(1072), + [sym___c_double_quote] = ACTIONS(1075), + [sym___c_single_quote] = ACTIONS(1078), + [sym___r_double_quote] = ACTIONS(1081), + [sym___r_single_quote] = ACTIONS(1084), }, [159] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arms] = STATE(4632), - [sym_match_arm] = STATE(173), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(173), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(1085), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_element_list] = STATE(4509), + [sym_short_element_list] = STATE(4508), + [sym_element] = STATE(1965), + [sym_keyed_element] = STATE(3481), + [sym_field_name] = STATE(4548), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1149), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_spread_expression] = STATE(3481), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_element_list_repeat1] = STATE(3477), + [aux_sym_short_element_list_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(945), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [160] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arms] = STATE(4680), - [sym_match_arm] = STATE(173), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(173), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(1085), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_element_list] = STATE(4652), + [sym_short_element_list] = STATE(4687), + [sym_element] = STATE(1965), + [sym_keyed_element] = STATE(3481), + [sym_field_name] = STATE(4548), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1149), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_spread_expression] = STATE(3481), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_element_list_repeat1] = STATE(3477), + [aux_sym_short_element_list_repeat1] = STATE(264), + [sym_identifier] = ACTIONS(945), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [161] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arms] = STATE(4605), - [sym_match_arm] = STATE(173), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(173), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(1085), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2633), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2633), + [sym_dec_expression] = STATE(2633), + [sym_or_block_expression] = STATE(2633), + [sym_option_propagation_expression] = STATE(2633), + [sym_result_propagation_expression] = STATE(2633), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2633), + [sym_spawn_expression] = STATE(2633), + [sym_parenthesized_expression] = STATE(2633), + [sym_call_expression] = STATE(2633), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2633), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2633), + [sym_receive_expression] = STATE(2633), + [sym_binary_expression] = STATE(2633), + [sym_as_type_cast_expression] = STATE(2633), + [sym__max_group] = STATE(2633), + [sym_literal] = STATE(2633), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2633), + [sym_fixed_array_creation] = STATE(2633), + [sym_selector_expression] = STATE(2633), + [sym_index_expression] = STATE(2633), + [sym_slice_expression] = STATE(2633), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2633), + [sym_not_is_expression] = STATE(2633), + [sym_in_expression] = STATE(2633), + [sym_not_in_expression] = STATE(2633), + [sym_enum_fetch] = STATE(2633), + [sym_match_expression] = STATE(2757), + [sym_match_arms] = STATE(4417), + [sym_match_arm] = STATE(177), + [sym_match_expression_list] = STATE(4372), + [sym_match_arm_type] = STATE(3893), + [sym_match_else_arm_clause] = STATE(177), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2633), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(3896), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(3897), + [aux_sym_match_arms_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(1091), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_RBRACE] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1109), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_else] = ACTIONS(1127), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(1133), + [anon_sym_lock] = ACTIONS(1135), + [anon_sym_rlock] = ACTIONS(1135), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [162] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arms] = STATE(4455), - [sym_match_arm] = STATE(173), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(173), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(1085), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2633), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2633), + [sym_dec_expression] = STATE(2633), + [sym_or_block_expression] = STATE(2633), + [sym_option_propagation_expression] = STATE(2633), + [sym_result_propagation_expression] = STATE(2633), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2633), + [sym_spawn_expression] = STATE(2633), + [sym_parenthesized_expression] = STATE(2633), + [sym_call_expression] = STATE(2633), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2633), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2633), + [sym_receive_expression] = STATE(2633), + [sym_binary_expression] = STATE(2633), + [sym_as_type_cast_expression] = STATE(2633), + [sym__max_group] = STATE(2633), + [sym_literal] = STATE(2633), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2633), + [sym_fixed_array_creation] = STATE(2633), + [sym_selector_expression] = STATE(2633), + [sym_index_expression] = STATE(2633), + [sym_slice_expression] = STATE(2633), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2633), + [sym_not_is_expression] = STATE(2633), + [sym_in_expression] = STATE(2633), + [sym_not_in_expression] = STATE(2633), + [sym_enum_fetch] = STATE(2633), + [sym_match_expression] = STATE(2757), + [sym_match_arms] = STATE(4528), + [sym_match_arm] = STATE(177), + [sym_match_expression_list] = STATE(4372), + [sym_match_arm_type] = STATE(3893), + [sym_match_else_arm_clause] = STATE(177), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2633), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(3896), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(3897), + [aux_sym_match_arms_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(1091), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_RBRACE] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1109), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_else] = ACTIONS(1127), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(1133), + [anon_sym_lock] = ACTIONS(1135), + [anon_sym_rlock] = ACTIONS(1135), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [163] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arms] = STATE(4679), - [sym_match_arm] = STATE(173), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(173), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(1085), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2633), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2633), + [sym_dec_expression] = STATE(2633), + [sym_or_block_expression] = STATE(2633), + [sym_option_propagation_expression] = STATE(2633), + [sym_result_propagation_expression] = STATE(2633), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2633), + [sym_spawn_expression] = STATE(2633), + [sym_parenthesized_expression] = STATE(2633), + [sym_call_expression] = STATE(2633), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2633), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2633), + [sym_receive_expression] = STATE(2633), + [sym_binary_expression] = STATE(2633), + [sym_as_type_cast_expression] = STATE(2633), + [sym__max_group] = STATE(2633), + [sym_literal] = STATE(2633), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2633), + [sym_fixed_array_creation] = STATE(2633), + [sym_selector_expression] = STATE(2633), + [sym_index_expression] = STATE(2633), + [sym_slice_expression] = STATE(2633), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2633), + [sym_not_is_expression] = STATE(2633), + [sym_in_expression] = STATE(2633), + [sym_not_in_expression] = STATE(2633), + [sym_enum_fetch] = STATE(2633), + [sym_match_expression] = STATE(2757), + [sym_match_arms] = STATE(4661), + [sym_match_arm] = STATE(177), + [sym_match_expression_list] = STATE(4372), + [sym_match_arm_type] = STATE(3893), + [sym_match_else_arm_clause] = STATE(177), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2633), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(3896), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(3897), + [aux_sym_match_arms_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(1091), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1109), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_else] = ACTIONS(1127), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(1133), + [anon_sym_lock] = ACTIONS(1135), + [anon_sym_rlock] = ACTIONS(1135), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [164] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arms] = STATE(4732), - [sym_match_arm] = STATE(173), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(173), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(1085), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2633), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2633), + [sym_dec_expression] = STATE(2633), + [sym_or_block_expression] = STATE(2633), + [sym_option_propagation_expression] = STATE(2633), + [sym_result_propagation_expression] = STATE(2633), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2633), + [sym_spawn_expression] = STATE(2633), + [sym_parenthesized_expression] = STATE(2633), + [sym_call_expression] = STATE(2633), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2633), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2633), + [sym_receive_expression] = STATE(2633), + [sym_binary_expression] = STATE(2633), + [sym_as_type_cast_expression] = STATE(2633), + [sym__max_group] = STATE(2633), + [sym_literal] = STATE(2633), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2633), + [sym_fixed_array_creation] = STATE(2633), + [sym_selector_expression] = STATE(2633), + [sym_index_expression] = STATE(2633), + [sym_slice_expression] = STATE(2633), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2633), + [sym_not_is_expression] = STATE(2633), + [sym_in_expression] = STATE(2633), + [sym_not_in_expression] = STATE(2633), + [sym_enum_fetch] = STATE(2633), + [sym_match_expression] = STATE(2757), + [sym_match_arms] = STATE(4594), + [sym_match_arm] = STATE(177), + [sym_match_expression_list] = STATE(4372), + [sym_match_arm_type] = STATE(3893), + [sym_match_else_arm_clause] = STATE(177), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2633), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(3896), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(3897), + [aux_sym_match_arms_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(1091), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_RBRACE] = ACTIONS(1161), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1109), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_else] = ACTIONS(1127), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(1133), + [anon_sym_lock] = ACTIONS(1135), + [anon_sym_rlock] = ACTIONS(1135), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [165] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arms] = STATE(4587), - [sym_match_arm] = STATE(173), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(173), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(1085), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2633), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2633), + [sym_dec_expression] = STATE(2633), + [sym_or_block_expression] = STATE(2633), + [sym_option_propagation_expression] = STATE(2633), + [sym_result_propagation_expression] = STATE(2633), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2633), + [sym_spawn_expression] = STATE(2633), + [sym_parenthesized_expression] = STATE(2633), + [sym_call_expression] = STATE(2633), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2633), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2633), + [sym_receive_expression] = STATE(2633), + [sym_binary_expression] = STATE(2633), + [sym_as_type_cast_expression] = STATE(2633), + [sym__max_group] = STATE(2633), + [sym_literal] = STATE(2633), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2633), + [sym_fixed_array_creation] = STATE(2633), + [sym_selector_expression] = STATE(2633), + [sym_index_expression] = STATE(2633), + [sym_slice_expression] = STATE(2633), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2633), + [sym_not_is_expression] = STATE(2633), + [sym_in_expression] = STATE(2633), + [sym_not_in_expression] = STATE(2633), + [sym_enum_fetch] = STATE(2633), + [sym_match_expression] = STATE(2757), + [sym_match_arms] = STATE(4507), + [sym_match_arm] = STATE(177), + [sym_match_expression_list] = STATE(4372), + [sym_match_arm_type] = STATE(3893), + [sym_match_else_arm_clause] = STATE(177), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2633), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(3896), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(3897), + [aux_sym_match_arms_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(1091), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1165), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_RBRACE] = ACTIONS(1163), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1109), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_else] = ACTIONS(1127), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(1133), + [anon_sym_lock] = ACTIONS(1135), + [anon_sym_rlock] = ACTIONS(1135), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [166] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arms] = STATE(4631), - [sym_match_arm] = STATE(173), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(173), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(1085), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2633), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2633), + [sym_dec_expression] = STATE(2633), + [sym_or_block_expression] = STATE(2633), + [sym_option_propagation_expression] = STATE(2633), + [sym_result_propagation_expression] = STATE(2633), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2633), + [sym_spawn_expression] = STATE(2633), + [sym_parenthesized_expression] = STATE(2633), + [sym_call_expression] = STATE(2633), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2633), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2633), + [sym_receive_expression] = STATE(2633), + [sym_binary_expression] = STATE(2633), + [sym_as_type_cast_expression] = STATE(2633), + [sym__max_group] = STATE(2633), + [sym_literal] = STATE(2633), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2633), + [sym_fixed_array_creation] = STATE(2633), + [sym_selector_expression] = STATE(2633), + [sym_index_expression] = STATE(2633), + [sym_slice_expression] = STATE(2633), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2633), + [sym_not_is_expression] = STATE(2633), + [sym_in_expression] = STATE(2633), + [sym_not_in_expression] = STATE(2633), + [sym_enum_fetch] = STATE(2633), + [sym_match_expression] = STATE(2757), + [sym_match_arms] = STATE(4707), + [sym_match_arm] = STATE(177), + [sym_match_expression_list] = STATE(4372), + [sym_match_arm_type] = STATE(3893), + [sym_match_else_arm_clause] = STATE(177), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2633), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(3896), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(3897), + [aux_sym_match_arms_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(1091), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1167), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_RBRACE] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1109), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_else] = ACTIONS(1127), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(1133), + [anon_sym_lock] = ACTIONS(1135), + [anon_sym_rlock] = ACTIONS(1135), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [167] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arms] = STATE(4639), - [sym_match_arm] = STATE(173), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(173), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(1085), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2633), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2633), + [sym_dec_expression] = STATE(2633), + [sym_or_block_expression] = STATE(2633), + [sym_option_propagation_expression] = STATE(2633), + [sym_result_propagation_expression] = STATE(2633), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2633), + [sym_spawn_expression] = STATE(2633), + [sym_parenthesized_expression] = STATE(2633), + [sym_call_expression] = STATE(2633), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2633), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2633), + [sym_receive_expression] = STATE(2633), + [sym_binary_expression] = STATE(2633), + [sym_as_type_cast_expression] = STATE(2633), + [sym__max_group] = STATE(2633), + [sym_literal] = STATE(2633), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2633), + [sym_fixed_array_creation] = STATE(2633), + [sym_selector_expression] = STATE(2633), + [sym_index_expression] = STATE(2633), + [sym_slice_expression] = STATE(2633), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2633), + [sym_not_is_expression] = STATE(2633), + [sym_in_expression] = STATE(2633), + [sym_not_in_expression] = STATE(2633), + [sym_enum_fetch] = STATE(2633), + [sym_match_expression] = STATE(2757), + [sym_match_arms] = STATE(4726), + [sym_match_arm] = STATE(177), + [sym_match_expression_list] = STATE(4372), + [sym_match_arm_type] = STATE(3893), + [sym_match_else_arm_clause] = STATE(177), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2633), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(3896), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(3897), + [aux_sym_match_arms_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(1091), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1169), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_RBRACE] = ACTIONS(1167), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1109), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_else] = ACTIONS(1127), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(1133), + [anon_sym_lock] = ACTIONS(1135), + [anon_sym_rlock] = ACTIONS(1135), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [168] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arms] = STATE(4506), - [sym_match_arm] = STATE(173), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(173), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(1085), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2633), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2633), + [sym_dec_expression] = STATE(2633), + [sym_or_block_expression] = STATE(2633), + [sym_option_propagation_expression] = STATE(2633), + [sym_result_propagation_expression] = STATE(2633), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2633), + [sym_spawn_expression] = STATE(2633), + [sym_parenthesized_expression] = STATE(2633), + [sym_call_expression] = STATE(2633), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2633), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2633), + [sym_receive_expression] = STATE(2633), + [sym_binary_expression] = STATE(2633), + [sym_as_type_cast_expression] = STATE(2633), + [sym__max_group] = STATE(2633), + [sym_literal] = STATE(2633), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2633), + [sym_fixed_array_creation] = STATE(2633), + [sym_selector_expression] = STATE(2633), + [sym_index_expression] = STATE(2633), + [sym_slice_expression] = STATE(2633), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2633), + [sym_not_is_expression] = STATE(2633), + [sym_in_expression] = STATE(2633), + [sym_not_in_expression] = STATE(2633), + [sym_enum_fetch] = STATE(2633), + [sym_match_expression] = STATE(2757), + [sym_match_arms] = STATE(4686), + [sym_match_arm] = STATE(177), + [sym_match_expression_list] = STATE(4372), + [sym_match_arm_type] = STATE(3893), + [sym_match_else_arm_clause] = STATE(177), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2633), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(3896), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(3897), + [aux_sym_match_arms_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(1091), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_RBRACE] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1109), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_else] = ACTIONS(1127), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(1133), + [anon_sym_lock] = ACTIONS(1135), + [anon_sym_rlock] = ACTIONS(1135), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [169] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arms] = STATE(4439), - [sym_match_arm] = STATE(173), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(173), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(1085), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2633), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2633), + [sym_dec_expression] = STATE(2633), + [sym_or_block_expression] = STATE(2633), + [sym_option_propagation_expression] = STATE(2633), + [sym_result_propagation_expression] = STATE(2633), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2633), + [sym_spawn_expression] = STATE(2633), + [sym_parenthesized_expression] = STATE(2633), + [sym_call_expression] = STATE(2633), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2633), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2633), + [sym_receive_expression] = STATE(2633), + [sym_binary_expression] = STATE(2633), + [sym_as_type_cast_expression] = STATE(2633), + [sym__max_group] = STATE(2633), + [sym_literal] = STATE(2633), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2633), + [sym_fixed_array_creation] = STATE(2633), + [sym_selector_expression] = STATE(2633), + [sym_index_expression] = STATE(2633), + [sym_slice_expression] = STATE(2633), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2633), + [sym_not_is_expression] = STATE(2633), + [sym_in_expression] = STATE(2633), + [sym_not_in_expression] = STATE(2633), + [sym_enum_fetch] = STATE(2633), + [sym_match_expression] = STATE(2757), + [sym_match_arms] = STATE(4668), + [sym_match_arm] = STATE(177), + [sym_match_expression_list] = STATE(4372), + [sym_match_arm_type] = STATE(3893), + [sym_match_else_arm_clause] = STATE(177), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2633), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(3896), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(3897), + [aux_sym_match_arms_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(1091), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1173), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1109), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_else] = ACTIONS(1127), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(1133), + [anon_sym_lock] = ACTIONS(1135), + [anon_sym_rlock] = ACTIONS(1135), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [170] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1285), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1293), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_attribute_expression] = STATE(4027), - [sym_if_attribute] = STATE(4184), - [sym__plain_attribute] = STATE(4184), - [sym_literal_attribute] = STATE(4184), - [sym_value_attribute] = STATE(4013), - [sym_key_value_attribute] = STATE(4184), - [aux_sym__array_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2633), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2633), + [sym_dec_expression] = STATE(2633), + [sym_or_block_expression] = STATE(2633), + [sym_option_propagation_expression] = STATE(2633), + [sym_result_propagation_expression] = STATE(2633), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2633), + [sym_spawn_expression] = STATE(2633), + [sym_parenthesized_expression] = STATE(2633), + [sym_call_expression] = STATE(2633), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2633), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2633), + [sym_receive_expression] = STATE(2633), + [sym_binary_expression] = STATE(2633), + [sym_as_type_cast_expression] = STATE(2633), + [sym__max_group] = STATE(2633), + [sym_literal] = STATE(2633), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2633), + [sym_fixed_array_creation] = STATE(2633), + [sym_selector_expression] = STATE(2633), + [sym_index_expression] = STATE(2633), + [sym_slice_expression] = STATE(2633), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2633), + [sym_not_is_expression] = STATE(2633), + [sym_in_expression] = STATE(2633), + [sym_not_in_expression] = STATE(2633), + [sym_enum_fetch] = STATE(2633), + [sym_match_expression] = STATE(2757), + [sym_match_arms] = STATE(4569), + [sym_match_arm] = STATE(177), + [sym_match_expression_list] = STATE(4372), + [sym_match_arm_type] = STATE(3893), + [sym_match_else_arm_clause] = STATE(177), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2633), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(3896), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(3897), + [aux_sym_match_arms_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(1091), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(1189), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(1209), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(1219), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1109), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_else] = ACTIONS(1127), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(1133), + [anon_sym_lock] = ACTIONS(1135), + [anon_sym_rlock] = ACTIONS(1135), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [171] = { - [sym__expression] = STATE(2656), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2777), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2864), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4687), - [sym_attribute_expression] = STATE(4027), - [sym_if_attribute] = STATE(4184), - [sym__plain_attribute] = STATE(4184), - [sym_literal_attribute] = STATE(4184), - [sym_value_attribute] = STATE(4013), - [sym_key_value_attribute] = STATE(4184), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2633), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2633), + [sym_dec_expression] = STATE(2633), + [sym_or_block_expression] = STATE(2633), + [sym_option_propagation_expression] = STATE(2633), + [sym_result_propagation_expression] = STATE(2633), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2633), + [sym_spawn_expression] = STATE(2633), + [sym_parenthesized_expression] = STATE(2633), + [sym_call_expression] = STATE(2633), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2633), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2633), + [sym_receive_expression] = STATE(2633), + [sym_binary_expression] = STATE(2633), + [sym_as_type_cast_expression] = STATE(2633), + [sym__max_group] = STATE(2633), + [sym_literal] = STATE(2633), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2633), + [sym_fixed_array_creation] = STATE(2633), + [sym_selector_expression] = STATE(2633), + [sym_index_expression] = STATE(2633), + [sym_slice_expression] = STATE(2633), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2633), + [sym_not_is_expression] = STATE(2633), + [sym_in_expression] = STATE(2633), + [sym_not_in_expression] = STATE(2633), + [sym_enum_fetch] = STATE(2633), + [sym_match_expression] = STATE(2757), + [sym_match_arms] = STATE(4620), + [sym_match_arm] = STATE(177), + [sym_match_expression_list] = STATE(4372), + [sym_match_arm_type] = STATE(3893), + [sym_match_else_arm_clause] = STATE(177), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2633), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(3896), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(3897), + [aux_sym_match_arms_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(1091), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1273), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1283), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_RBRACE] = ACTIONS(1175), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1109), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_else] = ACTIONS(1127), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(1133), + [anon_sym_lock] = ACTIONS(1135), + [anon_sym_rlock] = ACTIONS(1135), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [172] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arm] = STATE(172), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(172), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1305), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2633), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2633), + [sym_dec_expression] = STATE(2633), + [sym_or_block_expression] = STATE(2633), + [sym_option_propagation_expression] = STATE(2633), + [sym_result_propagation_expression] = STATE(2633), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2633), + [sym_spawn_expression] = STATE(2633), + [sym_parenthesized_expression] = STATE(2633), + [sym_call_expression] = STATE(2633), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2633), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2633), + [sym_receive_expression] = STATE(2633), + [sym_binary_expression] = STATE(2633), + [sym_as_type_cast_expression] = STATE(2633), + [sym__max_group] = STATE(2633), + [sym_literal] = STATE(2633), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2633), + [sym_fixed_array_creation] = STATE(2633), + [sym_selector_expression] = STATE(2633), + [sym_index_expression] = STATE(2633), + [sym_slice_expression] = STATE(2633), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2633), + [sym_not_is_expression] = STATE(2633), + [sym_in_expression] = STATE(2633), + [sym_not_in_expression] = STATE(2633), + [sym_enum_fetch] = STATE(2633), + [sym_match_expression] = STATE(2757), + [sym_match_arms] = STATE(4561), + [sym_match_arm] = STATE(177), + [sym_match_expression_list] = STATE(4372), + [sym_match_arm_type] = STATE(3893), + [sym_match_else_arm_clause] = STATE(177), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2633), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(3896), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(3897), + [aux_sym_match_arms_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(1091), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1311), - [anon_sym_RBRACE] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_fn] = ACTIONS(1319), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_mut] = ACTIONS(1331), - [anon_sym_QMARK] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1337), - [anon_sym_go] = ACTIONS(1340), - [anon_sym_spawn] = ACTIONS(1343), - [anon_sym_json_DOTdecode] = ACTIONS(1346), - [anon_sym_LBRACK2] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_CARET] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_LT_DASH] = ACTIONS(1355), - [sym_none] = ACTIONS(1358), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [sym_nil] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1361), - [anon_sym_else] = ACTIONS(1364), - [anon_sym_DOLLARif] = ACTIONS(1367), - [anon_sym_match] = ACTIONS(1370), - [anon_sym_select] = ACTIONS(1373), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1379), - [anon_sym_sql] = ACTIONS(1382), - [sym_int_literal] = ACTIONS(1358), - [sym_float_literal] = ACTIONS(1385), - [sym_rune_literal] = ACTIONS(1385), - [anon_sym_AT] = ACTIONS(1388), - [anon_sym_shared] = ACTIONS(1391), - [anon_sym_map_LBRACK] = ACTIONS(1394), - [anon_sym_chan] = ACTIONS(1397), - [anon_sym_thread] = ACTIONS(1400), - [anon_sym_atomic] = ACTIONS(1403), - [sym___double_quote] = ACTIONS(1406), - [sym___single_quote] = ACTIONS(1409), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1415), - [sym___r_double_quote] = ACTIONS(1418), - [sym___r_single_quote] = ACTIONS(1421), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_RBRACE] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1109), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_else] = ACTIONS(1127), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(1133), + [anon_sym_lock] = ACTIONS(1135), + [anon_sym_rlock] = ACTIONS(1135), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [173] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arm] = STATE(172), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(172), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1085), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2633), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2633), + [sym_dec_expression] = STATE(2633), + [sym_or_block_expression] = STATE(2633), + [sym_option_propagation_expression] = STATE(2633), + [sym_result_propagation_expression] = STATE(2633), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2633), + [sym_spawn_expression] = STATE(2633), + [sym_parenthesized_expression] = STATE(2633), + [sym_call_expression] = STATE(2633), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2633), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2633), + [sym_receive_expression] = STATE(2633), + [sym_binary_expression] = STATE(2633), + [sym_as_type_cast_expression] = STATE(2633), + [sym__max_group] = STATE(2633), + [sym_literal] = STATE(2633), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2633), + [sym_fixed_array_creation] = STATE(2633), + [sym_selector_expression] = STATE(2633), + [sym_index_expression] = STATE(2633), + [sym_slice_expression] = STATE(2633), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2633), + [sym_not_is_expression] = STATE(2633), + [sym_in_expression] = STATE(2633), + [sym_not_in_expression] = STATE(2633), + [sym_enum_fetch] = STATE(2633), + [sym_match_expression] = STATE(2757), + [sym_match_arms] = STATE(4628), + [sym_match_arm] = STATE(177), + [sym_match_expression_list] = STATE(4372), + [sym_match_arm_type] = STATE(3893), + [sym_match_else_arm_clause] = STATE(177), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2633), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(3896), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(3897), + [aux_sym_match_arms_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(1091), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1424), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1109), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_else] = ACTIONS(1127), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(1133), + [anon_sym_lock] = ACTIONS(1135), + [anon_sym_rlock] = ACTIONS(1135), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [174] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2633), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2633), + [sym_dec_expression] = STATE(2633), + [sym_or_block_expression] = STATE(2633), + [sym_option_propagation_expression] = STATE(2633), + [sym_result_propagation_expression] = STATE(2633), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2633), + [sym_spawn_expression] = STATE(2633), + [sym_parenthesized_expression] = STATE(2633), + [sym_call_expression] = STATE(2633), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2633), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2633), + [sym_receive_expression] = STATE(2633), + [sym_binary_expression] = STATE(2633), + [sym_as_type_cast_expression] = STATE(2633), + [sym__max_group] = STATE(2633), + [sym_literal] = STATE(2633), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2633), + [sym_fixed_array_creation] = STATE(2633), + [sym_selector_expression] = STATE(2633), + [sym_index_expression] = STATE(2633), + [sym_slice_expression] = STATE(2633), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2633), + [sym_not_is_expression] = STATE(2633), + [sym_in_expression] = STATE(2633), + [sym_not_in_expression] = STATE(2633), + [sym_enum_fetch] = STATE(2633), + [sym_match_expression] = STATE(2757), + [sym_match_arm] = STATE(174), + [sym_match_expression_list] = STATE(4372), + [sym_match_arm_type] = STATE(3893), + [sym_match_else_arm_clause] = STATE(174), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2633), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(3896), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(3897), + [aux_sym_match_arms_repeat1] = STATE(174), + [sym_identifier] = ACTIONS(1181), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1184), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_RBRACE] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_struct] = ACTIONS(1204), + [anon_sym_mut] = ACTIONS(1207), + [anon_sym_QMARK] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_go] = ACTIONS(1216), + [anon_sym_spawn] = ACTIONS(1219), + [anon_sym_json_DOTdecode] = ACTIONS(1222), + [anon_sym_LBRACK2] = ACTIONS(1225), + [anon_sym_TILDE] = ACTIONS(1198), + [anon_sym_CARET] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1228), + [anon_sym_LT_DASH] = ACTIONS(1231), + [sym_none] = ACTIONS(1234), + [sym_true] = ACTIONS(1234), + [sym_false] = ACTIONS(1234), + [sym_nil] = ACTIONS(1234), + [anon_sym_if] = ACTIONS(1237), + [anon_sym_else] = ACTIONS(1240), + [anon_sym_DOLLARif] = ACTIONS(1243), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_select] = ACTIONS(1249), + [anon_sym_lock] = ACTIONS(1252), + [anon_sym_rlock] = ACTIONS(1252), + [anon_sym_unsafe] = ACTIONS(1255), + [anon_sym_sql] = ACTIONS(1258), + [sym_int_literal] = ACTIONS(1234), + [sym_float_literal] = ACTIONS(1261), + [sym_rune_literal] = ACTIONS(1261), + [anon_sym_AT] = ACTIONS(1264), + [anon_sym_shared] = ACTIONS(1267), + [anon_sym_map_LBRACK] = ACTIONS(1270), + [anon_sym_chan] = ACTIONS(1273), + [anon_sym_thread] = ACTIONS(1276), + [anon_sym_atomic] = ACTIONS(1279), + [sym___double_quote] = ACTIONS(1282), + [sym___single_quote] = ACTIONS(1285), + [sym___c_double_quote] = ACTIONS(1288), + [sym___c_single_quote] = ACTIONS(1291), + [sym___r_double_quote] = ACTIONS(1294), + [sym___r_single_quote] = ACTIONS(1297), }, [175] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1289), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1290), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1320), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_attribute_expression] = STATE(3868), + [sym_if_attribute] = STATE(4334), + [sym__plain_attribute] = STATE(4334), + [sym_literal_attribute] = STATE(4334), + [sym_value_attribute] = STATE(3929), + [sym_key_value_attribute] = STATE(4334), + [aux_sym__array_repeat1] = STATE(362), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1492), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1344), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1348), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [176] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2639), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2853), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2883), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4566), + [sym_attribute_expression] = STATE(3868), + [sym_if_attribute] = STATE(4334), + [sym__plain_attribute] = STATE(4334), + [sym_literal_attribute] = STATE(4334), + [sym_value_attribute] = STATE(3929), + [sym_key_value_attribute] = STATE(4334), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1494), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1408), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [177] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3527), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2633), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2633), + [sym_dec_expression] = STATE(2633), + [sym_or_block_expression] = STATE(2633), + [sym_option_propagation_expression] = STATE(2633), + [sym_result_propagation_expression] = STATE(2633), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2633), + [sym_spawn_expression] = STATE(2633), + [sym_parenthesized_expression] = STATE(2633), + [sym_call_expression] = STATE(2633), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2633), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2633), + [sym_receive_expression] = STATE(2633), + [sym_binary_expression] = STATE(2633), + [sym_as_type_cast_expression] = STATE(2633), + [sym__max_group] = STATE(2633), + [sym_literal] = STATE(2633), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2633), + [sym_fixed_array_creation] = STATE(2633), + [sym_selector_expression] = STATE(2633), + [sym_index_expression] = STATE(2633), + [sym_slice_expression] = STATE(2633), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2633), + [sym_not_is_expression] = STATE(2633), + [sym_in_expression] = STATE(2633), + [sym_not_in_expression] = STATE(2633), + [sym_enum_fetch] = STATE(2633), + [sym_match_expression] = STATE(2757), + [sym_match_arm] = STATE(174), + [sym_match_expression_list] = STATE(4372), + [sym_match_arm_type] = STATE(3893), + [sym_match_else_arm_clause] = STATE(174), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2633), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(3896), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(3897), + [aux_sym_match_arms_repeat1] = STATE(174), + [sym_identifier] = ACTIONS(1091), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1496), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_RBRACE] = ACTIONS(1430), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1109), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_else] = ACTIONS(1127), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(1133), + [anon_sym_lock] = ACTIONS(1135), + [anon_sym_rlock] = ACTIONS(1135), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [178] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3605), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1498), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1440), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [179] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3605), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1500), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1498), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [180] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3527), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1502), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1500), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [181] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3605), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1504), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1502), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [182] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3489), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3605), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1504), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [183] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3516), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3605), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1508), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1506), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [184] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3498), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3605), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1510), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1508), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [185] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3605), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1512), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1510), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [186] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3605), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1514), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1512), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [187] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3520), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3605), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1516), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1514), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [188] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3512), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3530), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1516), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [189] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3500), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1518), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [190] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3539), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1522), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1520), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [191] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3518), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3605), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1524), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1522), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [192] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3519), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3605), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1526), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1524), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [193] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3605), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1526), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [194] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3491), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1530), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1528), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [195] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3523), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1532), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1530), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [196] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3605), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1534), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1532), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [197] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3497), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1536), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1534), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [198] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3525), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1536), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [199] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3605), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1540), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [200] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3485), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3605), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1542), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1540), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [201] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3494), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3605), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1544), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1542), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [202] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3605), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1546), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [203] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3605), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1548), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1546), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [204] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3605), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1550), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1548), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [205] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3512), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1552), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1550), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [206] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3520), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1554), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1552), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [207] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3526), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1554), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [208] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3531), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3605), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1558), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1556), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [209] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3486), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3605), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1560), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1558), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [210] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3605), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1560), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [211] = { - [sym__expression] = STATE(1789), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_strictly_expression_list] = STATE(4132), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(771), - [sym_mutable_expression] = STATE(3357), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_simple_statement] = STATE(4418), - [sym_var_declaration] = STATE(4132), - [sym_assignment_statement] = STATE(4132), - [sym_identifier] = ACTIONS(1562), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3605), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1562), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [212] = { - [sym__expression] = STATE(1789), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_strictly_expression_list] = STATE(4132), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(771), - [sym_mutable_expression] = STATE(3357), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_simple_statement] = STATE(4722), - [sym_var_declaration] = STATE(4132), - [sym_assignment_statement] = STATE(4132), - [sym_identifier] = ACTIONS(1562), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3537), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1564), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [213] = { - [sym__expression] = STATE(2365), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3566), - [sym_expression_list] = STATE(3712), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [anon_sym_LF] = ACTIONS(485), - [anon_sym_CR] = ACTIONS(485), - [anon_sym_CR_LF] = ACTIONS(485), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_RBRACE] = ACTIONS(485), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1572), - [anon_sym_DASH] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(1574), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(1576), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1578), - [anon_sym_LBRACK2] = ACTIONS(1580), - [anon_sym_TILDE] = ACTIONS(1572), - [anon_sym_CARET] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1582), - [anon_sym_LT_DASH] = ACTIONS(1584), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1460), - [sym_rune_literal] = ACTIONS(1460), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(537), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1586), - [sym___single_quote] = ACTIONS(1588), - [sym___c_double_quote] = ACTIONS(1590), - [sym___c_single_quote] = ACTIONS(1592), - [sym___r_double_quote] = ACTIONS(1594), - [sym___r_single_quote] = ACTIONS(1596), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3605), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1566), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [214] = { - [sym__expression] = STATE(1789), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_strictly_expression_list] = STATE(4132), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(771), - [sym_mutable_expression] = STATE(3357), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_simple_statement] = STATE(4483), - [sym_var_declaration] = STATE(4132), - [sym_assignment_statement] = STATE(4132), - [sym_identifier] = ACTIONS(1562), + [sym__expression] = STATE(1769), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_strictly_expression_list] = STATE(4170), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(656), + [sym_mutable_expression] = STATE(3358), + [sym_expression_list] = STATE(3410), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_simple_statement] = STATE(4458), + [sym_var_declaration] = STATE(4170), + [sym_assignment_statement] = STATE(4170), + [sym_identifier] = ACTIONS(1568), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(1570), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_go] = ACTIONS(821), + [anon_sym_spawn] = ACTIONS(823), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(827), + [anon_sym_TILDE] = ACTIONS(811), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_LT_DASH] = ACTIONS(831), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(841), + [anon_sym_lock] = ACTIONS(843), + [anon_sym_rlock] = ACTIONS(843), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [215] = { - [sym__expression] = STATE(1789), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_strictly_expression_list] = STATE(4132), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(771), - [sym_mutable_expression] = STATE(3357), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_simple_statement] = STATE(4524), - [sym_var_declaration] = STATE(4132), - [sym_assignment_statement] = STATE(4132), - [sym_identifier] = ACTIONS(1562), + [sym__expression] = STATE(1769), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_strictly_expression_list] = STATE(4170), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(656), + [sym_mutable_expression] = STATE(3358), + [sym_expression_list] = STATE(3410), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_simple_statement] = STATE(4454), + [sym_var_declaration] = STATE(4170), + [sym_assignment_statement] = STATE(4170), + [sym_identifier] = ACTIONS(1568), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_go] = ACTIONS(821), + [anon_sym_spawn] = ACTIONS(823), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(827), + [anon_sym_TILDE] = ACTIONS(811), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_LT_DASH] = ACTIONS(831), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(841), + [anon_sym_lock] = ACTIONS(843), + [anon_sym_rlock] = ACTIONS(843), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [216] = { - [sym_reference_expression] = STATE(4444), - [sym_type_reference_expression] = STATE(994), - [sym_plain_type] = STATE(1091), - [sym__plain_type_without_special] = STATE(1059), - [sym_anon_struct_type] = STATE(1060), - [sym_multi_return_type] = STATE(1059), - [sym_result_type] = STATE(1059), - [sym_option_type] = STATE(1059), - [sym_qualified_type] = STATE(994), - [sym_fixed_array_type] = STATE(1060), - [sym_array_type] = STATE(1060), - [sym_pointer_type] = STATE(1060), - [sym_wrong_pointer_type] = STATE(1060), - [sym_map_type] = STATE(1060), - [sym_channel_type] = STATE(1060), - [sym_shared_type] = STATE(1060), - [sym_thread_type] = STATE(1060), - [sym_atomic_type] = STATE(1060), - [sym_generic_type] = STATE(1060), - [sym_function_type] = STATE(1060), - [ts_builtin_sym_end] = ACTIONS(613), - [sym_identifier] = ACTIONS(1602), - [anon_sym_LF] = ACTIONS(615), - [anon_sym_CR] = ACTIONS(615), - [anon_sym_CR_LF] = ACTIONS(615), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_const] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(1604), - [anon_sym___global] = ACTIONS(615), - [anon_sym_type] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(1606), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(1608), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(1610), - [anon_sym_union] = ACTIONS(615), - [anon_sym_pub] = ACTIONS(615), - [anon_sym_mut] = ACTIONS(615), - [anon_sym_enum] = ACTIONS(615), - [anon_sym_interface] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(1612), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_go] = ACTIONS(615), - [anon_sym_spawn] = ACTIONS(615), - [anon_sym_json_DOTdecode] = ACTIONS(615), - [anon_sym_LBRACK2] = ACTIONS(1616), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(1618), - [anon_sym_LT_DASH] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_or] = ACTIONS(615), - [sym_none] = ACTIONS(615), - [sym_true] = ACTIONS(615), - [sym_false] = ACTIONS(615), - [sym_nil] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(615), - [anon_sym_POUND_LBRACK] = ACTIONS(615), - [anon_sym_if] = ACTIONS(615), - [anon_sym_DOLLARif] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(615), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(615), - [anon_sym_match] = ACTIONS(615), - [anon_sym_select] = ACTIONS(615), - [anon_sym_lock] = ACTIONS(615), - [anon_sym_rlock] = ACTIONS(615), - [anon_sym_unsafe] = ACTIONS(615), - [anon_sym_sql] = ACTIONS(615), - [sym_int_literal] = ACTIONS(615), - [sym_float_literal] = ACTIONS(615), - [sym_rune_literal] = ACTIONS(615), - [anon_sym_AT] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(1620), - [anon_sym_map_LBRACK] = ACTIONS(1622), - [anon_sym_chan] = ACTIONS(1624), - [anon_sym_thread] = ACTIONS(1626), - [anon_sym_atomic] = ACTIONS(1628), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_defer] = ACTIONS(615), - [anon_sym_goto] = ACTIONS(615), - [anon_sym_break] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(615), - [anon_sym_return] = ACTIONS(615), - [anon_sym_DOLLARfor] = ACTIONS(615), - [anon_sym_for] = ACTIONS(615), - [anon_sym_POUND] = ACTIONS(615), - [anon_sym_asm] = ACTIONS(615), - [anon_sym_AT_LBRACK] = ACTIONS(615), - [sym___double_quote] = ACTIONS(615), - [sym___single_quote] = ACTIONS(615), - [sym___c_double_quote] = ACTIONS(615), - [sym___c_single_quote] = ACTIONS(615), - [sym___r_double_quote] = ACTIONS(615), - [sym___r_single_quote] = ACTIONS(615), + [sym__expression] = STATE(2401), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_argument] = STATE(3605), + [sym_type_initializer] = STATE(2584), + [sym_keyed_element] = STATE(3546), + [sym_field_name] = STATE(4445), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2525), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_spread_expression] = STATE(3546), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3546), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [217] = { - [sym_reference_expression] = STATE(4444), - [sym_type_reference_expression] = STATE(994), - [sym_plain_type] = STATE(1066), - [sym__plain_type_without_special] = STATE(1059), - [sym_anon_struct_type] = STATE(1060), - [sym_multi_return_type] = STATE(1059), - [sym_result_type] = STATE(1059), - [sym_option_type] = STATE(1059), - [sym_qualified_type] = STATE(994), - [sym_fixed_array_type] = STATE(1060), - [sym_array_type] = STATE(1060), - [sym_pointer_type] = STATE(1060), - [sym_wrong_pointer_type] = STATE(1060), - [sym_map_type] = STATE(1060), - [sym_channel_type] = STATE(1060), - [sym_shared_type] = STATE(1060), - [sym_thread_type] = STATE(1060), - [sym_atomic_type] = STATE(1060), - [sym_generic_type] = STATE(1060), - [sym_function_type] = STATE(1060), - [ts_builtin_sym_end] = ACTIONS(551), - [sym_identifier] = ACTIONS(1602), - [anon_sym_LF] = ACTIONS(555), - [anon_sym_CR] = ACTIONS(555), - [anon_sym_CR_LF] = ACTIONS(555), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_as] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(555), - [anon_sym_const] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(1604), - [anon_sym___global] = ACTIONS(555), - [anon_sym_type] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_fn] = ACTIONS(1606), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(1608), - [anon_sym_SLASH] = ACTIONS(555), - [anon_sym_PERCENT] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(555), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_EQ_EQ] = ACTIONS(555), - [anon_sym_BANG_EQ] = ACTIONS(555), - [anon_sym_LT_EQ] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(1610), - [anon_sym_union] = ACTIONS(555), - [anon_sym_pub] = ACTIONS(555), - [anon_sym_mut] = ACTIONS(555), - [anon_sym_enum] = ACTIONS(555), - [anon_sym_interface] = ACTIONS(555), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_QMARK] = ACTIONS(1612), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_go] = ACTIONS(555), - [anon_sym_spawn] = ACTIONS(555), - [anon_sym_json_DOTdecode] = ACTIONS(555), - [anon_sym_LBRACK2] = ACTIONS(1616), - [anon_sym_TILDE] = ACTIONS(555), - [anon_sym_CARET] = ACTIONS(555), - [anon_sym_AMP] = ACTIONS(1618), - [anon_sym_LT_DASH] = ACTIONS(555), - [anon_sym_LT_LT] = ACTIONS(555), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_GT_GT_GT] = ACTIONS(555), - [anon_sym_AMP_CARET] = ACTIONS(555), - [anon_sym_AMP_AMP] = ACTIONS(555), - [anon_sym_PIPE_PIPE] = ACTIONS(555), - [anon_sym_or] = ACTIONS(555), - [sym_none] = ACTIONS(555), - [sym_true] = ACTIONS(555), - [sym_false] = ACTIONS(555), - [sym_nil] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(555), - [anon_sym_POUND_LBRACK] = ACTIONS(555), - [anon_sym_if] = ACTIONS(555), - [anon_sym_DOLLARif] = ACTIONS(555), - [anon_sym_is] = ACTIONS(555), - [anon_sym_BANGis] = ACTIONS(555), - [anon_sym_in] = ACTIONS(555), - [anon_sym_BANGin] = ACTIONS(555), - [anon_sym_match] = ACTIONS(555), - [anon_sym_select] = ACTIONS(555), - [anon_sym_lock] = ACTIONS(555), - [anon_sym_rlock] = ACTIONS(555), - [anon_sym_unsafe] = ACTIONS(555), - [anon_sym_sql] = ACTIONS(555), - [sym_int_literal] = ACTIONS(555), - [sym_float_literal] = ACTIONS(555), - [sym_rune_literal] = ACTIONS(555), - [anon_sym_AT] = ACTIONS(555), - [anon_sym_shared] = ACTIONS(1620), - [anon_sym_map_LBRACK] = ACTIONS(1622), - [anon_sym_chan] = ACTIONS(1624), - [anon_sym_thread] = ACTIONS(1626), - [anon_sym_atomic] = ACTIONS(1628), - [anon_sym_assert] = ACTIONS(555), - [anon_sym_defer] = ACTIONS(555), - [anon_sym_goto] = ACTIONS(555), - [anon_sym_break] = ACTIONS(555), - [anon_sym_continue] = ACTIONS(555), - [anon_sym_return] = ACTIONS(555), - [anon_sym_DOLLARfor] = ACTIONS(555), - [anon_sym_for] = ACTIONS(555), - [anon_sym_POUND] = ACTIONS(555), - [anon_sym_asm] = ACTIONS(555), - [anon_sym_AT_LBRACK] = ACTIONS(555), - [sym___double_quote] = ACTIONS(555), - [sym___single_quote] = ACTIONS(555), - [sym___c_double_quote] = ACTIONS(555), - [sym___c_single_quote] = ACTIONS(555), - [sym___r_double_quote] = ACTIONS(555), - [sym___r_single_quote] = ACTIONS(555), + [sym__expression] = STATE(2324), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3616), + [sym_expression_list] = STATE(3768), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), + [anon_sym_LF] = ACTIONS(491), + [anon_sym_CR] = ACTIONS(491), + [anon_sym_CR_LF] = ACTIONS(491), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1574), + [anon_sym_RBRACE] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(1576), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1578), + [anon_sym_DASH] = ACTIONS(1578), + [anon_sym_STAR] = ACTIONS(1580), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(1582), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1584), + [anon_sym_LBRACK2] = ACTIONS(1586), + [anon_sym_TILDE] = ACTIONS(1578), + [anon_sym_CARET] = ACTIONS(1578), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_LT_DASH] = ACTIONS(1590), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1466), + [sym_rune_literal] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(543), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1592), + [sym___single_quote] = ACTIONS(1594), + [sym___c_double_quote] = ACTIONS(1596), + [sym___c_single_quote] = ACTIONS(1598), + [sym___r_double_quote] = ACTIONS(1600), + [sym___r_single_quote] = ACTIONS(1602), }, [218] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [ts_builtin_sym_end] = ACTIONS(591), - [sym_identifier] = ACTIONS(593), - [anon_sym_LF] = ACTIONS(595), - [anon_sym_CR] = ACTIONS(595), - [anon_sym_CR_LF] = ACTIONS(595), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_as] = ACTIONS(595), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_const] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(597), - [anon_sym___global] = ACTIONS(595), - [anon_sym_type] = ACTIONS(595), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [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(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_union] = ACTIONS(595), - [anon_sym_pub] = ACTIONS(595), - [anon_sym_mut] = ACTIONS(595), - [anon_sym_enum] = ACTIONS(595), - [anon_sym_interface] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(1630), - [anon_sym_go] = ACTIONS(595), - [anon_sym_spawn] = ACTIONS(595), - [anon_sym_json_DOTdecode] = ACTIONS(595), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_TILDE] = ACTIONS(595), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_DASH] = ACTIONS(595), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [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(595), - [sym_none] = ACTIONS(595), - [sym_true] = ACTIONS(595), - [sym_false] = ACTIONS(595), - [sym_nil] = ACTIONS(595), - [anon_sym_QMARK_DOT] = ACTIONS(595), - [anon_sym_POUND_LBRACK] = ACTIONS(595), - [anon_sym_if] = ACTIONS(595), - [anon_sym_DOLLARif] = ACTIONS(595), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(595), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(595), - [anon_sym_match] = ACTIONS(595), - [anon_sym_select] = ACTIONS(595), - [anon_sym_lock] = ACTIONS(595), - [anon_sym_rlock] = ACTIONS(595), - [anon_sym_unsafe] = ACTIONS(595), - [anon_sym_sql] = ACTIONS(595), - [sym_int_literal] = ACTIONS(595), - [sym_float_literal] = ACTIONS(595), - [sym_rune_literal] = ACTIONS(595), - [anon_sym_AT] = ACTIONS(595), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(537), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(595), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_goto] = ACTIONS(595), - [anon_sym_break] = ACTIONS(595), - [anon_sym_continue] = ACTIONS(595), - [anon_sym_return] = ACTIONS(595), - [anon_sym_DOLLARfor] = ACTIONS(595), - [anon_sym_for] = ACTIONS(595), - [anon_sym_POUND] = ACTIONS(595), - [anon_sym_asm] = ACTIONS(595), - [anon_sym_AT_LBRACK] = ACTIONS(595), - [sym___double_quote] = ACTIONS(595), - [sym___single_quote] = ACTIONS(595), - [sym___c_double_quote] = ACTIONS(595), - [sym___c_single_quote] = ACTIONS(595), - [sym___r_double_quote] = ACTIONS(595), - [sym___r_single_quote] = ACTIONS(595), + [sym__expression] = STATE(1769), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_strictly_expression_list] = STATE(4170), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(656), + [sym_mutable_expression] = STATE(3358), + [sym_expression_list] = STATE(3410), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_simple_statement] = STATE(4415), + [sym_var_declaration] = STATE(4170), + [sym_assignment_statement] = STATE(4170), + [sym_identifier] = ACTIONS(1568), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_go] = ACTIONS(821), + [anon_sym_spawn] = ACTIONS(823), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(827), + [anon_sym_TILDE] = ACTIONS(811), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_LT_DASH] = ACTIONS(831), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(841), + [anon_sym_lock] = ACTIONS(843), + [anon_sym_rlock] = ACTIONS(843), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [219] = { - [sym_reference_expression] = STATE(4444), - [sym_type_reference_expression] = STATE(994), - [sym_plain_type] = STATE(1084), - [sym__plain_type_without_special] = STATE(1059), - [sym_anon_struct_type] = STATE(1060), - [sym_multi_return_type] = STATE(1059), - [sym_result_type] = STATE(1059), - [sym_option_type] = STATE(1059), - [sym_qualified_type] = STATE(994), - [sym_fixed_array_type] = STATE(1060), - [sym_array_type] = STATE(1060), - [sym_pointer_type] = STATE(1060), - [sym_wrong_pointer_type] = STATE(1060), - [sym_map_type] = STATE(1060), - [sym_channel_type] = STATE(1060), - [sym_shared_type] = STATE(1060), - [sym_thread_type] = STATE(1060), - [sym_atomic_type] = STATE(1060), - [sym_generic_type] = STATE(1060), - [sym_function_type] = STATE(1060), - [ts_builtin_sym_end] = ACTIONS(587), - [sym_identifier] = ACTIONS(1602), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_const] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(1604), - [anon_sym___global] = ACTIONS(589), - [anon_sym_type] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(1606), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(1608), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_struct] = ACTIONS(1610), - [anon_sym_union] = ACTIONS(589), - [anon_sym_pub] = ACTIONS(589), - [anon_sym_mut] = ACTIONS(589), - [anon_sym_enum] = ACTIONS(589), - [anon_sym_interface] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(1612), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_go] = ACTIONS(589), - [anon_sym_spawn] = ACTIONS(589), - [anon_sym_json_DOTdecode] = ACTIONS(589), - [anon_sym_LBRACK2] = ACTIONS(1616), - [anon_sym_TILDE] = ACTIONS(589), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(1618), - [anon_sym_LT_DASH] = ACTIONS(589), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(589), - [sym_none] = ACTIONS(589), - [sym_true] = ACTIONS(589), - [sym_false] = ACTIONS(589), - [sym_nil] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_if] = ACTIONS(589), - [anon_sym_DOLLARif] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_match] = ACTIONS(589), - [anon_sym_select] = ACTIONS(589), - [anon_sym_lock] = ACTIONS(589), - [anon_sym_rlock] = ACTIONS(589), - [anon_sym_unsafe] = ACTIONS(589), - [anon_sym_sql] = ACTIONS(589), - [sym_int_literal] = ACTIONS(589), - [sym_float_literal] = ACTIONS(589), - [sym_rune_literal] = ACTIONS(589), - [anon_sym_AT] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(1620), - [anon_sym_map_LBRACK] = ACTIONS(1622), - [anon_sym_chan] = ACTIONS(1624), - [anon_sym_thread] = ACTIONS(1626), - [anon_sym_atomic] = ACTIONS(1628), - [anon_sym_assert] = ACTIONS(589), - [anon_sym_defer] = ACTIONS(589), - [anon_sym_goto] = ACTIONS(589), - [anon_sym_break] = ACTIONS(589), - [anon_sym_continue] = ACTIONS(589), - [anon_sym_return] = ACTIONS(589), - [anon_sym_DOLLARfor] = ACTIONS(589), - [anon_sym_for] = ACTIONS(589), - [anon_sym_POUND] = ACTIONS(589), - [anon_sym_asm] = ACTIONS(589), - [anon_sym_AT_LBRACK] = ACTIONS(589), - [sym___double_quote] = ACTIONS(589), - [sym___single_quote] = ACTIONS(589), - [sym___c_double_quote] = ACTIONS(589), - [sym___c_single_quote] = ACTIONS(589), - [sym___r_double_quote] = ACTIONS(589), - [sym___r_single_quote] = ACTIONS(589), + [sym__expression] = STATE(1769), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_strictly_expression_list] = STATE(4170), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(656), + [sym_mutable_expression] = STATE(3358), + [sym_expression_list] = STATE(3410), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_simple_statement] = STATE(4475), + [sym_var_declaration] = STATE(4170), + [sym_assignment_statement] = STATE(4170), + [sym_identifier] = ACTIONS(1568), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_go] = ACTIONS(821), + [anon_sym_spawn] = ACTIONS(823), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(827), + [anon_sym_TILDE] = ACTIONS(811), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_LT_DASH] = ACTIONS(831), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(841), + [anon_sym_lock] = ACTIONS(843), + [anon_sym_rlock] = ACTIONS(843), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [220] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [ts_builtin_sym_end] = ACTIONS(583), - [sym_identifier] = ACTIONS(585), - [anon_sym_LF] = ACTIONS(585), - [anon_sym_CR] = ACTIONS(585), - [anon_sym_CR_LF] = ACTIONS(585), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_const] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym___global] = ACTIONS(585), - [anon_sym_type] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(585), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(585), - [anon_sym_union] = ACTIONS(585), - [anon_sym_pub] = ACTIONS(585), - [anon_sym_mut] = ACTIONS(585), - [anon_sym_enum] = ACTIONS(585), - [anon_sym_interface] = ACTIONS(585), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_go] = ACTIONS(585), - [anon_sym_spawn] = ACTIONS(585), - [anon_sym_json_DOTdecode] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_LT_DASH] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_AMP_CARET] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_or] = ACTIONS(585), - [sym_none] = ACTIONS(585), - [sym_true] = ACTIONS(585), - [sym_false] = ACTIONS(585), - [sym_nil] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_if] = ACTIONS(585), - [anon_sym_DOLLARif] = ACTIONS(585), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(585), - [anon_sym_match] = ACTIONS(585), - [anon_sym_select] = ACTIONS(585), - [anon_sym_lock] = ACTIONS(585), - [anon_sym_rlock] = ACTIONS(585), - [anon_sym_unsafe] = ACTIONS(585), - [anon_sym_sql] = ACTIONS(585), - [sym_int_literal] = ACTIONS(585), - [sym_float_literal] = ACTIONS(585), - [sym_rune_literal] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(585), - [anon_sym_shared] = ACTIONS(585), - [anon_sym_map_LBRACK] = ACTIONS(585), - [anon_sym_chan] = ACTIONS(585), - [anon_sym_thread] = ACTIONS(585), - [anon_sym_atomic] = ACTIONS(585), - [anon_sym_assert] = ACTIONS(585), - [anon_sym_defer] = ACTIONS(585), - [anon_sym_goto] = ACTIONS(585), - [anon_sym_break] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(585), - [anon_sym_return] = ACTIONS(585), - [anon_sym_DOLLARfor] = ACTIONS(585), - [anon_sym_for] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_asm] = ACTIONS(585), - [anon_sym_AT_LBRACK] = ACTIONS(585), - [sym___double_quote] = ACTIONS(585), - [sym___single_quote] = ACTIONS(585), - [sym___c_double_quote] = ACTIONS(585), - [sym___c_single_quote] = ACTIONS(585), - [sym___r_double_quote] = ACTIONS(585), - [sym___r_single_quote] = ACTIONS(585), + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2393), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [ts_builtin_sym_end] = ACTIONS(589), + [sym_identifier] = ACTIONS(591), + [anon_sym_LF] = ACTIONS(593), + [anon_sym_CR] = ACTIONS(593), + [anon_sym_CR_LF] = ACTIONS(593), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(593), + [anon_sym_as] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(593), + [anon_sym_COMMA] = ACTIONS(593), + [anon_sym_const] = ACTIONS(593), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym___global] = ACTIONS(593), + [anon_sym_type] = ACTIONS(593), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_STAR] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(593), + [anon_sym_PERCENT] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(593), + [anon_sym_GT_EQ] = ACTIONS(593), + [anon_sym_LBRACK] = ACTIONS(589), + [anon_sym_struct] = ACTIONS(601), + [anon_sym_union] = ACTIONS(593), + [anon_sym_pub] = ACTIONS(593), + [anon_sym_mut] = ACTIONS(593), + [anon_sym_enum] = ACTIONS(593), + [anon_sym_interface] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(593), + [anon_sym_DASH_DASH] = ACTIONS(593), + [anon_sym_QMARK] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(1608), + [anon_sym_go] = ACTIONS(593), + [anon_sym_spawn] = ACTIONS(593), + [anon_sym_json_DOTdecode] = ACTIONS(593), + [anon_sym_LBRACK2] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_CARET] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(593), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_GT_GT_GT] = ACTIONS(593), + [anon_sym_AMP_CARET] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(593), + [anon_sym_PIPE_PIPE] = ACTIONS(593), + [anon_sym_or] = ACTIONS(593), + [sym_none] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [sym_nil] = ACTIONS(593), + [anon_sym_QMARK_DOT] = ACTIONS(593), + [anon_sym_POUND_LBRACK] = ACTIONS(593), + [anon_sym_if] = ACTIONS(593), + [anon_sym_DOLLARif] = ACTIONS(593), + [anon_sym_is] = ACTIONS(593), + [anon_sym_BANGis] = ACTIONS(593), + [anon_sym_in] = ACTIONS(593), + [anon_sym_BANGin] = ACTIONS(593), + [anon_sym_match] = ACTIONS(593), + [anon_sym_select] = ACTIONS(593), + [anon_sym_lock] = ACTIONS(593), + [anon_sym_rlock] = ACTIONS(593), + [anon_sym_unsafe] = ACTIONS(593), + [anon_sym_sql] = ACTIONS(593), + [sym_int_literal] = ACTIONS(593), + [sym_float_literal] = ACTIONS(593), + [sym_rune_literal] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(593), + [anon_sym_shared] = ACTIONS(609), + [anon_sym_map_LBRACK] = ACTIONS(543), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(593), + [anon_sym_defer] = ACTIONS(593), + [anon_sym_goto] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_return] = ACTIONS(593), + [anon_sym_DOLLARfor] = ACTIONS(593), + [anon_sym_for] = ACTIONS(593), + [anon_sym_POUND] = ACTIONS(593), + [anon_sym_asm] = ACTIONS(593), + [anon_sym_AT_LBRACK] = ACTIONS(593), + [sym___double_quote] = ACTIONS(593), + [sym___single_quote] = ACTIONS(593), + [sym___c_double_quote] = ACTIONS(593), + [sym___c_single_quote] = ACTIONS(593), + [sym___r_double_quote] = ACTIONS(593), + [sym___r_single_quote] = ACTIONS(593), }, [221] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1632), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [sym_reference_expression] = STATE(4448), + [sym_type_reference_expression] = STATE(1002), + [sym_plain_type] = STATE(1098), + [sym__plain_type_without_special] = STATE(1084), + [sym_anon_struct_type] = STATE(1085), + [sym_multi_return_type] = STATE(1084), + [sym_result_type] = STATE(1084), + [sym_option_type] = STATE(1084), + [sym_qualified_type] = STATE(1002), + [sym_fixed_array_type] = STATE(1085), + [sym_array_type] = STATE(1085), + [sym_pointer_type] = STATE(1085), + [sym_wrong_pointer_type] = STATE(1085), + [sym_map_type] = STATE(1085), + [sym_channel_type] = STATE(1085), + [sym_shared_type] = STATE(1085), + [sym_thread_type] = STATE(1085), + [sym_atomic_type] = STATE(1085), + [sym_generic_type] = STATE(1085), + [sym_function_type] = STATE(1085), + [ts_builtin_sym_end] = ACTIONS(611), + [sym_identifier] = ACTIONS(1610), + [anon_sym_LF] = ACTIONS(613), + [anon_sym_CR] = ACTIONS(613), + [anon_sym_CR_LF] = ACTIONS(613), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(613), + [anon_sym_as] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_COMMA] = ACTIONS(613), + [anon_sym_const] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym___global] = ACTIONS(613), + [anon_sym_type] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(613), + [anon_sym_fn] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(613), + [anon_sym_DASH] = ACTIONS(613), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_SLASH] = ACTIONS(613), + [anon_sym_PERCENT] = ACTIONS(613), + [anon_sym_LT] = ACTIONS(613), + [anon_sym_GT] = ACTIONS(613), + [anon_sym_EQ_EQ] = ACTIONS(613), + [anon_sym_BANG_EQ] = ACTIONS(613), + [anon_sym_LT_EQ] = ACTIONS(613), + [anon_sym_GT_EQ] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(611), + [anon_sym_struct] = ACTIONS(1618), + [anon_sym_union] = ACTIONS(613), + [anon_sym_pub] = ACTIONS(613), + [anon_sym_mut] = ACTIONS(613), + [anon_sym_enum] = ACTIONS(613), + [anon_sym_interface] = ACTIONS(613), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_QMARK] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1622), + [anon_sym_go] = ACTIONS(613), + [anon_sym_spawn] = ACTIONS(613), + [anon_sym_json_DOTdecode] = ACTIONS(613), + [anon_sym_LBRACK2] = ACTIONS(1624), + [anon_sym_TILDE] = ACTIONS(613), + [anon_sym_CARET] = ACTIONS(613), + [anon_sym_AMP] = ACTIONS(1626), + [anon_sym_LT_DASH] = ACTIONS(613), + [anon_sym_LT_LT] = ACTIONS(613), + [anon_sym_GT_GT] = ACTIONS(613), + [anon_sym_GT_GT_GT] = ACTIONS(613), + [anon_sym_AMP_CARET] = ACTIONS(613), + [anon_sym_AMP_AMP] = ACTIONS(613), + [anon_sym_PIPE_PIPE] = ACTIONS(613), + [anon_sym_or] = ACTIONS(613), + [sym_none] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_nil] = ACTIONS(613), + [anon_sym_QMARK_DOT] = ACTIONS(613), + [anon_sym_POUND_LBRACK] = ACTIONS(613), + [anon_sym_if] = ACTIONS(613), + [anon_sym_DOLLARif] = ACTIONS(613), + [anon_sym_is] = ACTIONS(613), + [anon_sym_BANGis] = ACTIONS(613), + [anon_sym_in] = ACTIONS(613), + [anon_sym_BANGin] = ACTIONS(613), + [anon_sym_match] = ACTIONS(613), + [anon_sym_select] = ACTIONS(613), + [anon_sym_lock] = ACTIONS(613), + [anon_sym_rlock] = ACTIONS(613), + [anon_sym_unsafe] = ACTIONS(613), + [anon_sym_sql] = ACTIONS(613), + [sym_int_literal] = ACTIONS(613), + [sym_float_literal] = ACTIONS(613), + [sym_rune_literal] = ACTIONS(613), + [anon_sym_AT] = ACTIONS(613), + [anon_sym_shared] = ACTIONS(1628), + [anon_sym_map_LBRACK] = ACTIONS(1630), + [anon_sym_chan] = ACTIONS(1632), + [anon_sym_thread] = ACTIONS(1634), + [anon_sym_atomic] = ACTIONS(1636), + [anon_sym_assert] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(613), + [anon_sym_goto] = ACTIONS(613), + [anon_sym_break] = ACTIONS(613), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_return] = ACTIONS(613), + [anon_sym_DOLLARfor] = ACTIONS(613), + [anon_sym_for] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(613), + [anon_sym_asm] = ACTIONS(613), + [anon_sym_AT_LBRACK] = ACTIONS(613), + [sym___double_quote] = ACTIONS(613), + [sym___single_quote] = ACTIONS(613), + [sym___c_double_quote] = ACTIONS(613), + [sym___c_single_quote] = ACTIONS(613), + [sym___r_double_quote] = ACTIONS(613), + [sym___r_single_quote] = ACTIONS(613), }, [222] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2359), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [ts_builtin_sym_end] = ACTIONS(615), + [sym_identifier] = ACTIONS(617), + [anon_sym_LF] = ACTIONS(617), + [anon_sym_CR] = ACTIONS(617), + [anon_sym_CR_LF] = ACTIONS(617), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(617), + [anon_sym_as] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_const] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym___global] = ACTIONS(617), + [anon_sym_type] = ACTIONS(617), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_fn] = ACTIONS(617), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(617), + [anon_sym_PERCENT] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(617), + [anon_sym_GT] = ACTIONS(617), + [anon_sym_EQ_EQ] = ACTIONS(617), + [anon_sym_BANG_EQ] = ACTIONS(617), + [anon_sym_LT_EQ] = ACTIONS(617), + [anon_sym_GT_EQ] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_struct] = ACTIONS(617), + [anon_sym_union] = ACTIONS(617), + [anon_sym_pub] = ACTIONS(617), + [anon_sym_mut] = ACTIONS(617), + [anon_sym_enum] = ACTIONS(617), + [anon_sym_interface] = ACTIONS(617), + [anon_sym_PLUS_PLUS] = ACTIONS(617), + [anon_sym_DASH_DASH] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_go] = ACTIONS(617), + [anon_sym_spawn] = ACTIONS(617), + [anon_sym_json_DOTdecode] = ACTIONS(617), + [anon_sym_LBRACK2] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_CARET] = ACTIONS(617), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_LT_DASH] = ACTIONS(617), + [anon_sym_LT_LT] = ACTIONS(617), + [anon_sym_GT_GT] = ACTIONS(617), + [anon_sym_GT_GT_GT] = ACTIONS(617), + [anon_sym_AMP_CARET] = ACTIONS(617), + [anon_sym_AMP_AMP] = ACTIONS(617), + [anon_sym_PIPE_PIPE] = ACTIONS(617), + [anon_sym_or] = ACTIONS(617), + [sym_none] = ACTIONS(617), + [sym_true] = ACTIONS(617), + [sym_false] = ACTIONS(617), + [sym_nil] = ACTIONS(617), + [anon_sym_QMARK_DOT] = ACTIONS(617), + [anon_sym_POUND_LBRACK] = ACTIONS(617), + [anon_sym_if] = ACTIONS(617), + [anon_sym_DOLLARif] = ACTIONS(617), + [anon_sym_is] = ACTIONS(617), + [anon_sym_BANGis] = ACTIONS(617), + [anon_sym_in] = ACTIONS(617), + [anon_sym_BANGin] = ACTIONS(617), + [anon_sym_match] = ACTIONS(617), + [anon_sym_select] = ACTIONS(617), + [anon_sym_lock] = ACTIONS(617), + [anon_sym_rlock] = ACTIONS(617), + [anon_sym_unsafe] = ACTIONS(617), + [anon_sym_sql] = ACTIONS(617), + [sym_int_literal] = ACTIONS(617), + [sym_float_literal] = ACTIONS(617), + [sym_rune_literal] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(617), + [anon_sym_shared] = ACTIONS(617), + [anon_sym_map_LBRACK] = ACTIONS(617), + [anon_sym_chan] = ACTIONS(617), + [anon_sym_thread] = ACTIONS(617), + [anon_sym_atomic] = ACTIONS(617), + [anon_sym_assert] = ACTIONS(617), + [anon_sym_defer] = ACTIONS(617), + [anon_sym_goto] = ACTIONS(617), + [anon_sym_break] = ACTIONS(617), + [anon_sym_continue] = ACTIONS(617), + [anon_sym_return] = ACTIONS(617), + [anon_sym_DOLLARfor] = ACTIONS(617), + [anon_sym_for] = ACTIONS(617), + [anon_sym_POUND] = ACTIONS(617), + [anon_sym_asm] = ACTIONS(617), + [anon_sym_AT_LBRACK] = ACTIONS(617), + [sym___double_quote] = ACTIONS(617), + [sym___single_quote] = ACTIONS(617), + [sym___c_double_quote] = ACTIONS(617), + [sym___c_single_quote] = ACTIONS(617), + [sym___r_double_quote] = ACTIONS(617), + [sym___r_single_quote] = ACTIONS(617), }, [223] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4278), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(1323), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1642), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [sym_reference_expression] = STATE(4448), + [sym_type_reference_expression] = STATE(1002), + [sym_plain_type] = STATE(1088), + [sym__plain_type_without_special] = STATE(1084), + [sym_anon_struct_type] = STATE(1085), + [sym_multi_return_type] = STATE(1084), + [sym_result_type] = STATE(1084), + [sym_option_type] = STATE(1084), + [sym_qualified_type] = STATE(1002), + [sym_fixed_array_type] = STATE(1085), + [sym_array_type] = STATE(1085), + [sym_pointer_type] = STATE(1085), + [sym_wrong_pointer_type] = STATE(1085), + [sym_map_type] = STATE(1085), + [sym_channel_type] = STATE(1085), + [sym_shared_type] = STATE(1085), + [sym_thread_type] = STATE(1085), + [sym_atomic_type] = STATE(1085), + [sym_generic_type] = STATE(1085), + [sym_function_type] = STATE(1085), + [ts_builtin_sym_end] = ACTIONS(557), + [sym_identifier] = ACTIONS(1610), + [anon_sym_LF] = ACTIONS(561), + [anon_sym_CR] = ACTIONS(561), + [anon_sym_CR_LF] = ACTIONS(561), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(561), + [anon_sym_as] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_COMMA] = ACTIONS(561), + [anon_sym_const] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym___global] = ACTIONS(561), + [anon_sym_type] = ACTIONS(561), + [anon_sym_PIPE] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_SLASH] = ACTIONS(561), + [anon_sym_PERCENT] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(561), + [anon_sym_GT] = ACTIONS(561), + [anon_sym_EQ_EQ] = ACTIONS(561), + [anon_sym_BANG_EQ] = ACTIONS(561), + [anon_sym_LT_EQ] = ACTIONS(561), + [anon_sym_GT_EQ] = ACTIONS(561), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_struct] = ACTIONS(1618), + [anon_sym_union] = ACTIONS(561), + [anon_sym_pub] = ACTIONS(561), + [anon_sym_mut] = ACTIONS(561), + [anon_sym_enum] = ACTIONS(561), + [anon_sym_interface] = ACTIONS(561), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [anon_sym_QMARK] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1622), + [anon_sym_go] = ACTIONS(561), + [anon_sym_spawn] = ACTIONS(561), + [anon_sym_json_DOTdecode] = ACTIONS(561), + [anon_sym_LBRACK2] = ACTIONS(1624), + [anon_sym_TILDE] = ACTIONS(561), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(1626), + [anon_sym_LT_DASH] = ACTIONS(561), + [anon_sym_LT_LT] = ACTIONS(561), + [anon_sym_GT_GT] = ACTIONS(561), + [anon_sym_GT_GT_GT] = ACTIONS(561), + [anon_sym_AMP_CARET] = ACTIONS(561), + [anon_sym_AMP_AMP] = ACTIONS(561), + [anon_sym_PIPE_PIPE] = ACTIONS(561), + [anon_sym_or] = ACTIONS(561), + [sym_none] = ACTIONS(561), + [sym_true] = ACTIONS(561), + [sym_false] = ACTIONS(561), + [sym_nil] = ACTIONS(561), + [anon_sym_QMARK_DOT] = ACTIONS(561), + [anon_sym_POUND_LBRACK] = ACTIONS(561), + [anon_sym_if] = ACTIONS(561), + [anon_sym_DOLLARif] = ACTIONS(561), + [anon_sym_is] = ACTIONS(561), + [anon_sym_BANGis] = ACTIONS(561), + [anon_sym_in] = ACTIONS(561), + [anon_sym_BANGin] = ACTIONS(561), + [anon_sym_match] = ACTIONS(561), + [anon_sym_select] = ACTIONS(561), + [anon_sym_lock] = ACTIONS(561), + [anon_sym_rlock] = ACTIONS(561), + [anon_sym_unsafe] = ACTIONS(561), + [anon_sym_sql] = ACTIONS(561), + [sym_int_literal] = ACTIONS(561), + [sym_float_literal] = ACTIONS(561), + [sym_rune_literal] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_shared] = ACTIONS(1628), + [anon_sym_map_LBRACK] = ACTIONS(1630), + [anon_sym_chan] = ACTIONS(1632), + [anon_sym_thread] = ACTIONS(1634), + [anon_sym_atomic] = ACTIONS(1636), + [anon_sym_assert] = ACTIONS(561), + [anon_sym_defer] = ACTIONS(561), + [anon_sym_goto] = ACTIONS(561), + [anon_sym_break] = ACTIONS(561), + [anon_sym_continue] = ACTIONS(561), + [anon_sym_return] = ACTIONS(561), + [anon_sym_DOLLARfor] = ACTIONS(561), + [anon_sym_for] = ACTIONS(561), + [anon_sym_POUND] = ACTIONS(561), + [anon_sym_asm] = ACTIONS(561), + [anon_sym_AT_LBRACK] = ACTIONS(561), + [sym___double_quote] = ACTIONS(561), + [sym___single_quote] = ACTIONS(561), + [sym___c_double_quote] = ACTIONS(561), + [sym___c_single_quote] = ACTIONS(561), + [sym___r_double_quote] = ACTIONS(561), + [sym___r_single_quote] = ACTIONS(561), }, [224] = { - [sym__expression] = STATE(2462), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4307), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [sym_reference_expression] = STATE(4448), + [sym_type_reference_expression] = STATE(1002), + [sym_plain_type] = STATE(1105), + [sym__plain_type_without_special] = STATE(1084), + [sym_anon_struct_type] = STATE(1085), + [sym_multi_return_type] = STATE(1084), + [sym_result_type] = STATE(1084), + [sym_option_type] = STATE(1084), + [sym_qualified_type] = STATE(1002), + [sym_fixed_array_type] = STATE(1085), + [sym_array_type] = STATE(1085), + [sym_pointer_type] = STATE(1085), + [sym_wrong_pointer_type] = STATE(1085), + [sym_map_type] = STATE(1085), + [sym_channel_type] = STATE(1085), + [sym_shared_type] = STATE(1085), + [sym_thread_type] = STATE(1085), + [sym_atomic_type] = STATE(1085), + [sym_generic_type] = STATE(1085), + [sym_function_type] = STATE(1085), + [ts_builtin_sym_end] = ACTIONS(619), + [sym_identifier] = ACTIONS(1610), + [anon_sym_LF] = ACTIONS(621), + [anon_sym_CR] = ACTIONS(621), + [anon_sym_CR_LF] = ACTIONS(621), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_as] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_const] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym___global] = ACTIONS(621), + [anon_sym_type] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_fn] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(621), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_EQ_EQ] = ACTIONS(621), + [anon_sym_BANG_EQ] = ACTIONS(621), + [anon_sym_LT_EQ] = ACTIONS(621), + [anon_sym_GT_EQ] = ACTIONS(621), + [anon_sym_LBRACK] = ACTIONS(619), + [anon_sym_struct] = ACTIONS(1618), + [anon_sym_union] = ACTIONS(621), + [anon_sym_pub] = ACTIONS(621), + [anon_sym_mut] = ACTIONS(621), + [anon_sym_enum] = ACTIONS(621), + [anon_sym_interface] = ACTIONS(621), + [anon_sym_PLUS_PLUS] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1622), + [anon_sym_go] = ACTIONS(621), + [anon_sym_spawn] = ACTIONS(621), + [anon_sym_json_DOTdecode] = ACTIONS(621), + [anon_sym_LBRACK2] = ACTIONS(1624), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(1626), + [anon_sym_LT_DASH] = ACTIONS(621), + [anon_sym_LT_LT] = ACTIONS(621), + [anon_sym_GT_GT] = ACTIONS(621), + [anon_sym_GT_GT_GT] = ACTIONS(621), + [anon_sym_AMP_CARET] = ACTIONS(621), + [anon_sym_AMP_AMP] = ACTIONS(621), + [anon_sym_PIPE_PIPE] = ACTIONS(621), + [anon_sym_or] = ACTIONS(621), + [sym_none] = ACTIONS(621), + [sym_true] = ACTIONS(621), + [sym_false] = ACTIONS(621), + [sym_nil] = ACTIONS(621), + [anon_sym_QMARK_DOT] = ACTIONS(621), + [anon_sym_POUND_LBRACK] = ACTIONS(621), + [anon_sym_if] = ACTIONS(621), + [anon_sym_DOLLARif] = ACTIONS(621), + [anon_sym_is] = ACTIONS(621), + [anon_sym_BANGis] = ACTIONS(621), + [anon_sym_in] = ACTIONS(621), + [anon_sym_BANGin] = ACTIONS(621), + [anon_sym_match] = ACTIONS(621), + [anon_sym_select] = ACTIONS(621), + [anon_sym_lock] = ACTIONS(621), + [anon_sym_rlock] = ACTIONS(621), + [anon_sym_unsafe] = ACTIONS(621), + [anon_sym_sql] = ACTIONS(621), + [sym_int_literal] = ACTIONS(621), + [sym_float_literal] = ACTIONS(621), + [sym_rune_literal] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_shared] = ACTIONS(1628), + [anon_sym_map_LBRACK] = ACTIONS(1630), + [anon_sym_chan] = ACTIONS(1632), + [anon_sym_thread] = ACTIONS(1634), + [anon_sym_atomic] = ACTIONS(1636), + [anon_sym_assert] = ACTIONS(621), + [anon_sym_defer] = ACTIONS(621), + [anon_sym_goto] = ACTIONS(621), + [anon_sym_break] = ACTIONS(621), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_return] = ACTIONS(621), + [anon_sym_DOLLARfor] = ACTIONS(621), + [anon_sym_for] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_asm] = ACTIONS(621), + [anon_sym_AT_LBRACK] = ACTIONS(621), + [sym___double_quote] = ACTIONS(621), + [sym___single_quote] = ACTIONS(621), + [sym___c_double_quote] = ACTIONS(621), + [sym___c_single_quote] = ACTIONS(621), + [sym___r_double_quote] = ACTIONS(621), + [sym___r_single_quote] = ACTIONS(621), }, [225] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4163), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(2353), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2726), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(287), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [226] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4204), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(915), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2726), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1644), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [227] = { - [sym__expression] = STATE(2431), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4193), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2726), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(259), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [228] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(282), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4327), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(876), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [229] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2726), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(292), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [230] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(221), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2459), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(449), + [sym_mutable_expression] = STATE(3864), + [sym_expression_list] = STATE(4646), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_var_declaration] = STATE(4382), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [231] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4192), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(2527), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [232] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4356), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(1884), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4374), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(2362), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), + [anon_sym_DOT] = ACTIONS(1368), [anon_sym_LBRACE] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [233] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2471), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(449), + [sym_mutable_expression] = STATE(3864), + [sym_expression_list] = STATE(4646), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_var_declaration] = STATE(4114), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [234] = { - [sym__expression] = STATE(2440), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2631), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4277), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2726), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(236), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [235] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(231), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4290), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(1337), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [236] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [aux_sym_strictly_expression_list_repeat1] = STATE(1424), - [ts_builtin_sym_end] = ACTIONS(1682), - [sym_identifier] = ACTIONS(1684), - [anon_sym_LF] = ACTIONS(1684), - [anon_sym_CR] = ACTIONS(1684), - [anon_sym_CR_LF] = ACTIONS(1684), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(1688), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_COMMA] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1690), - [anon_sym___global] = ACTIONS(1684), - [anon_sym_type] = ACTIONS(1684), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_fn] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(1684), - [anon_sym_union] = ACTIONS(1684), - [anon_sym_pub] = ACTIONS(1684), - [anon_sym_mut] = ACTIONS(1684), - [anon_sym_enum] = ACTIONS(1684), - [anon_sym_interface] = ACTIONS(1684), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DASH_DASH] = ACTIONS(1704), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(1684), - [anon_sym_spawn] = ACTIONS(1684), - [anon_sym_json_DOTdecode] = ACTIONS(1684), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(1684), - [anon_sym_CARET] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1696), - [anon_sym_LT_DASH] = ACTIONS(1684), - [anon_sym_LT_LT] = ACTIONS(1696), - [anon_sym_GT_GT] = ACTIONS(1696), - [anon_sym_GT_GT_GT] = ACTIONS(1696), - [anon_sym_AMP_CARET] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1712), - [anon_sym_PIPE_PIPE] = ACTIONS(1714), - [anon_sym_or] = ACTIONS(1716), - [sym_none] = ACTIONS(1684), - [sym_true] = ACTIONS(1684), - [sym_false] = ACTIONS(1684), - [sym_nil] = ACTIONS(1684), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_DOLLARif] = ACTIONS(1684), - [anon_sym_is] = ACTIONS(1718), - [anon_sym_BANGis] = ACTIONS(1720), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_BANGin] = ACTIONS(1724), - [anon_sym_match] = ACTIONS(1684), - [anon_sym_select] = ACTIONS(1684), - [anon_sym_STAR_EQ] = ACTIONS(1690), - [anon_sym_SLASH_EQ] = ACTIONS(1690), - [anon_sym_PERCENT_EQ] = ACTIONS(1690), - [anon_sym_LT_LT_EQ] = ACTIONS(1690), - [anon_sym_GT_GT_EQ] = ACTIONS(1690), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1690), - [anon_sym_AMP_EQ] = ACTIONS(1690), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1690), - [anon_sym_PLUS_EQ] = ACTIONS(1690), - [anon_sym_DASH_EQ] = ACTIONS(1690), - [anon_sym_PIPE_EQ] = ACTIONS(1690), - [anon_sym_CARET_EQ] = ACTIONS(1690), - [anon_sym_COLON_EQ] = ACTIONS(1690), - [anon_sym_lock] = ACTIONS(1684), - [anon_sym_rlock] = ACTIONS(1684), - [anon_sym_unsafe] = ACTIONS(1684), - [anon_sym_sql] = ACTIONS(1684), - [sym_int_literal] = ACTIONS(1684), - [sym_float_literal] = ACTIONS(1684), - [sym_rune_literal] = ACTIONS(1684), - [anon_sym_AT] = ACTIONS(1684), - [anon_sym_shared] = ACTIONS(1684), - [anon_sym_map_LBRACK] = ACTIONS(1684), - [anon_sym_chan] = ACTIONS(1684), - [anon_sym_thread] = ACTIONS(1684), - [anon_sym_atomic] = ACTIONS(1684), - [anon_sym_assert] = ACTIONS(1684), - [anon_sym_defer] = ACTIONS(1684), - [anon_sym_goto] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_DOLLARfor] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_POUND] = ACTIONS(1684), - [anon_sym_asm] = ACTIONS(1684), - [anon_sym_AT_LBRACK] = ACTIONS(1684), - [sym___double_quote] = ACTIONS(1684), - [sym___single_quote] = ACTIONS(1684), - [sym___c_double_quote] = ACTIONS(1684), - [sym___c_single_quote] = ACTIONS(1684), - [sym___r_double_quote] = ACTIONS(1684), - [sym___r_single_quote] = ACTIONS(1684), + [sym__expression] = STATE(2726), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(292), + [sym_identifier] = ACTIONS(1366), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [237] = { - [sym__expression] = STATE(2459), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4186), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2726), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(292), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [238] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4232), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(2544), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4182), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(2712), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [239] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2462), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(449), + [sym_mutable_expression] = STATE(3864), + [sym_expression_list] = STATE(4646), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_var_declaration] = STATE(4211), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [240] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4391), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(1960), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [241] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(268), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4313), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(2220), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1732), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1690), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [242] = { - [sym__expression] = STATE(2429), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4224), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4374), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(2362), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [243] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2444), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(449), + [sym_mutable_expression] = STATE(3864), + [sym_expression_list] = STATE(4646), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_var_declaration] = STATE(4407), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [244] = { - [sym__expression] = STATE(2464), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4346), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4309), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(1268), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [245] = { - [sym__expression] = STATE(2463), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2631), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4161), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4182), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(2712), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [246] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(240), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2726), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(292), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [247] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4313), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(2220), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1738), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [248] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2435), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(449), + [sym_mutable_expression] = STATE(3864), + [sym_expression_list] = STATE(4646), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_var_declaration] = STATE(4176), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1740), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [249] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4178), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(2773), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2726), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(291), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1742), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [250] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4172), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(1682), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [251] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4163), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(2353), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2726), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(292), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [252] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4163), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(2353), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [sym_type_parameters] = STATE(4151), + [sym_argument_list] = STATE(943), + [sym_or_block] = STATE(946), + [aux_sym_strictly_expression_list_repeat1] = STATE(1418), + [ts_builtin_sym_end] = ACTIONS(1708), + [sym_identifier] = ACTIONS(1710), + [anon_sym_LF] = ACTIONS(1710), + [anon_sym_CR] = ACTIONS(1710), + [anon_sym_CR_LF] = ACTIONS(1710), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(1712), + [anon_sym_as] = ACTIONS(1714), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1710), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_EQ] = ACTIONS(1716), + [anon_sym___global] = ACTIONS(1710), + [anon_sym_type] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1720), + [anon_sym_fn] = ACTIONS(1710), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_STAR] = ACTIONS(1722), + [anon_sym_SLASH] = ACTIONS(1722), + [anon_sym_PERCENT] = ACTIONS(1722), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_EQ_EQ] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1724), + [anon_sym_LT_EQ] = ACTIONS(1724), + [anon_sym_GT_EQ] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_struct] = ACTIONS(1710), + [anon_sym_union] = ACTIONS(1710), + [anon_sym_pub] = ACTIONS(1710), + [anon_sym_mut] = ACTIONS(1710), + [anon_sym_enum] = ACTIONS(1710), + [anon_sym_interface] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1728), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_QMARK] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_go] = ACTIONS(1710), + [anon_sym_spawn] = ACTIONS(1710), + [anon_sym_json_DOTdecode] = ACTIONS(1710), + [anon_sym_LBRACK2] = ACTIONS(1736), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_CARET] = ACTIONS(1720), + [anon_sym_AMP] = ACTIONS(1722), + [anon_sym_LT_DASH] = ACTIONS(1710), + [anon_sym_LT_LT] = ACTIONS(1722), + [anon_sym_GT_GT] = ACTIONS(1722), + [anon_sym_GT_GT_GT] = ACTIONS(1722), + [anon_sym_AMP_CARET] = ACTIONS(1722), + [anon_sym_AMP_AMP] = ACTIONS(1738), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_or] = ACTIONS(1742), + [sym_none] = ACTIONS(1710), + [sym_true] = ACTIONS(1710), + [sym_false] = ACTIONS(1710), + [sym_nil] = ACTIONS(1710), + [anon_sym_QMARK_DOT] = ACTIONS(1712), + [anon_sym_POUND_LBRACK] = ACTIONS(1736), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_DOLLARif] = ACTIONS(1710), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1748), + [anon_sym_BANGin] = ACTIONS(1750), + [anon_sym_match] = ACTIONS(1710), + [anon_sym_select] = ACTIONS(1710), + [anon_sym_STAR_EQ] = ACTIONS(1716), + [anon_sym_SLASH_EQ] = ACTIONS(1716), + [anon_sym_PERCENT_EQ] = ACTIONS(1716), + [anon_sym_LT_LT_EQ] = ACTIONS(1716), + [anon_sym_GT_GT_EQ] = ACTIONS(1716), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1716), + [anon_sym_AMP_EQ] = ACTIONS(1716), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1716), + [anon_sym_PLUS_EQ] = ACTIONS(1716), + [anon_sym_DASH_EQ] = ACTIONS(1716), + [anon_sym_PIPE_EQ] = ACTIONS(1716), + [anon_sym_CARET_EQ] = ACTIONS(1716), + [anon_sym_COLON_EQ] = ACTIONS(1716), + [anon_sym_lock] = ACTIONS(1710), + [anon_sym_rlock] = ACTIONS(1710), + [anon_sym_unsafe] = ACTIONS(1710), + [anon_sym_sql] = ACTIONS(1710), + [sym_int_literal] = ACTIONS(1710), + [sym_float_literal] = ACTIONS(1710), + [sym_rune_literal] = ACTIONS(1710), + [anon_sym_AT] = ACTIONS(1710), + [anon_sym_shared] = ACTIONS(1710), + [anon_sym_map_LBRACK] = ACTIONS(1710), + [anon_sym_chan] = ACTIONS(1710), + [anon_sym_thread] = ACTIONS(1710), + [anon_sym_atomic] = ACTIONS(1710), + [anon_sym_assert] = ACTIONS(1710), + [anon_sym_defer] = ACTIONS(1710), + [anon_sym_goto] = ACTIONS(1710), + [anon_sym_break] = ACTIONS(1710), + [anon_sym_continue] = ACTIONS(1710), + [anon_sym_return] = ACTIONS(1710), + [anon_sym_DOLLARfor] = ACTIONS(1710), + [anon_sym_for] = ACTIONS(1710), + [anon_sym_POUND] = ACTIONS(1710), + [anon_sym_asm] = ACTIONS(1710), + [anon_sym_AT_LBRACK] = ACTIONS(1710), + [sym___double_quote] = ACTIONS(1710), + [sym___single_quote] = ACTIONS(1710), + [sym___c_double_quote] = ACTIONS(1710), + [sym___c_single_quote] = ACTIONS(1710), + [sym___r_double_quote] = ACTIONS(1710), + [sym___r_single_quote] = ACTIONS(1710), }, [253] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4320), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(1985), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2726), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(246), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1750), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [254] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4303), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(2172), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2461), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(449), + [sym_mutable_expression] = STATE(3864), + [sym_expression_list] = STATE(4646), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_var_declaration] = STATE(4125), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [255] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4396), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(1071), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2726), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(292), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [256] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4174), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(1017), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [257] = { - [sym__expression] = STATE(2454), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4177), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2726), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(269), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1758), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [258] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4320), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(1985), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4374), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(2362), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [259] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4232), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(2544), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2726), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(292), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1760), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [260] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4133), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(1825), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1762), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [261] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [aux_sym_strictly_expression_list_repeat1] = STATE(3349), - [ts_builtin_sym_end] = ACTIONS(1764), - [sym_identifier] = ACTIONS(1766), - [anon_sym_LF] = ACTIONS(1766), - [anon_sym_CR] = ACTIONS(1766), - [anon_sym_CR_LF] = ACTIONS(1766), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(1688), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1768), - [anon_sym_const] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym___global] = ACTIONS(1766), - [anon_sym_type] = ACTIONS(1766), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_fn] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(1766), - [anon_sym_union] = ACTIONS(1766), - [anon_sym_pub] = ACTIONS(1766), - [anon_sym_mut] = ACTIONS(1766), - [anon_sym_enum] = ACTIONS(1766), - [anon_sym_interface] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DASH_DASH] = ACTIONS(1704), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(1766), - [anon_sym_spawn] = ACTIONS(1766), - [anon_sym_json_DOTdecode] = ACTIONS(1766), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(1766), - [anon_sym_CARET] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1696), - [anon_sym_LT_DASH] = ACTIONS(1772), - [anon_sym_LT_LT] = ACTIONS(1774), - [anon_sym_GT_GT] = ACTIONS(1696), - [anon_sym_GT_GT_GT] = ACTIONS(1696), - [anon_sym_AMP_CARET] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1712), - [anon_sym_PIPE_PIPE] = ACTIONS(1714), - [anon_sym_or] = ACTIONS(1716), - [sym_none] = ACTIONS(1766), - [sym_true] = ACTIONS(1766), - [sym_false] = ACTIONS(1766), - [sym_nil] = ACTIONS(1766), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_DOLLARif] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1718), - [anon_sym_BANGis] = ACTIONS(1720), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_BANGin] = ACTIONS(1724), - [anon_sym_match] = ACTIONS(1766), - [anon_sym_select] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1770), - [anon_sym_SLASH_EQ] = ACTIONS(1770), - [anon_sym_PERCENT_EQ] = ACTIONS(1770), - [anon_sym_LT_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_GT_EQ] = ACTIONS(1770), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1770), - [anon_sym_AMP_EQ] = ACTIONS(1770), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1770), - [anon_sym_PLUS_EQ] = ACTIONS(1770), - [anon_sym_DASH_EQ] = ACTIONS(1770), - [anon_sym_PIPE_EQ] = ACTIONS(1770), - [anon_sym_CARET_EQ] = ACTIONS(1770), - [anon_sym_COLON_EQ] = ACTIONS(1770), - [anon_sym_lock] = ACTIONS(1766), - [anon_sym_rlock] = ACTIONS(1766), - [anon_sym_unsafe] = ACTIONS(1766), - [anon_sym_sql] = ACTIONS(1766), - [sym_int_literal] = ACTIONS(1766), - [sym_float_literal] = ACTIONS(1766), - [sym_rune_literal] = ACTIONS(1766), - [anon_sym_AT] = ACTIONS(1766), - [anon_sym_shared] = ACTIONS(1766), - [anon_sym_map_LBRACK] = ACTIONS(1766), - [anon_sym_chan] = ACTIONS(1766), - [anon_sym_thread] = ACTIONS(1766), - [anon_sym_atomic] = ACTIONS(1766), - [anon_sym_assert] = ACTIONS(1766), - [anon_sym_defer] = ACTIONS(1766), - [anon_sym_goto] = ACTIONS(1766), - [anon_sym_break] = ACTIONS(1766), - [anon_sym_continue] = ACTIONS(1766), - [anon_sym_return] = ACTIONS(1766), - [anon_sym_DOLLARfor] = ACTIONS(1766), - [anon_sym_for] = ACTIONS(1766), - [anon_sym_POUND] = ACTIONS(1766), - [anon_sym_asm] = ACTIONS(1766), - [anon_sym_AT_LBRACK] = ACTIONS(1766), - [sym___double_quote] = ACTIONS(1766), - [sym___single_quote] = ACTIONS(1766), - [sym___c_double_quote] = ACTIONS(1766), - [sym___c_single_quote] = ACTIONS(1766), - [sym___r_double_quote] = ACTIONS(1766), - [sym___r_single_quote] = ACTIONS(1766), + [sym__expression] = STATE(2444), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2655), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(449), + [sym_mutable_expression] = STATE(3864), + [sym_expression_list] = STATE(4646), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_var_declaration] = STATE(4407), + [sym_identifier] = ACTIONS(1648), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [262] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4179), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(2915), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2460), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(449), + [sym_mutable_expression] = STATE(3864), + [sym_expression_list] = STATE(4646), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_var_declaration] = STATE(4187), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [263] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4303), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(2172), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2452), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(449), + [sym_mutable_expression] = STATE(3864), + [sym_expression_list] = STATE(4646), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_var_declaration] = STATE(4298), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [264] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element] = STATE(1939), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(1780), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_element] = STATE(1965), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1242), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_short_element_list_repeat1] = STATE(277), + [sym_identifier] = ACTIONS(945), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1789), - [anon_sym_LPAREN] = ACTIONS(1791), - [anon_sym_fn] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_struct] = ACTIONS(1803), - [anon_sym_mut] = ACTIONS(1806), - [anon_sym_QMARK] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1812), - [anon_sym_go] = ACTIONS(1815), - [anon_sym_spawn] = ACTIONS(1818), - [anon_sym_json_DOTdecode] = ACTIONS(1821), - [anon_sym_LBRACK2] = ACTIONS(1824), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_LT_DASH] = ACTIONS(1830), - [sym_none] = ACTIONS(1833), - [sym_true] = ACTIONS(1833), - [sym_false] = ACTIONS(1833), - [sym_nil] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1836), - [anon_sym_DOLLARif] = ACTIONS(1839), - [anon_sym_match] = ACTIONS(1842), - [anon_sym_select] = ACTIONS(1845), - [anon_sym_lock] = ACTIONS(1848), - [anon_sym_rlock] = ACTIONS(1848), - [anon_sym_unsafe] = ACTIONS(1851), - [anon_sym_sql] = ACTIONS(1854), - [sym_int_literal] = ACTIONS(1833), - [sym_float_literal] = ACTIONS(1857), - [sym_rune_literal] = ACTIONS(1857), - [anon_sym_AT] = ACTIONS(1860), - [anon_sym_shared] = ACTIONS(1863), - [anon_sym_map_LBRACK] = ACTIONS(1866), - [anon_sym_chan] = ACTIONS(1869), - [anon_sym_thread] = ACTIONS(1872), - [anon_sym_atomic] = ACTIONS(1875), - [sym___double_quote] = ACTIONS(1878), - [sym___single_quote] = ACTIONS(1881), - [sym___c_double_quote] = ACTIONS(1884), - [sym___c_single_quote] = ACTIONS(1887), - [sym___r_double_quote] = ACTIONS(1890), - [sym___r_single_quote] = ACTIONS(1893), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [265] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element] = STATE(1939), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(939), + [sym__expression] = STATE(2457), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(449), + [sym_mutable_expression] = STATE(3864), + [sym_expression_list] = STATE(4646), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_var_declaration] = STATE(4169), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(1896), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [266] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4178), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(2773), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2458), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2655), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(449), + [sym_mutable_expression] = STATE(3864), + [sym_expression_list] = STATE(4646), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_var_declaration] = STATE(4287), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [267] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(248), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2456), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(449), + [sym_mutable_expression] = STATE(3864), + [sym_expression_list] = STATE(4646), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_var_declaration] = STATE(4317), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [268] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2726), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(237), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1902), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [269] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2726), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(292), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1904), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [270] = { - [sym__expression] = STATE(2463), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4161), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2726), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [271] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [sym_type_parameters] = STATE(4151), + [sym_argument_list] = STATE(943), + [sym_or_block] = STATE(946), + [aux_sym_strictly_expression_list_repeat1] = STATE(3357), + [ts_builtin_sym_end] = ACTIONS(1774), + [sym_identifier] = ACTIONS(1776), + [anon_sym_LF] = ACTIONS(1776), + [anon_sym_CR] = ACTIONS(1776), + [anon_sym_CR_LF] = ACTIONS(1776), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(1712), + [anon_sym_as] = ACTIONS(1714), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_const] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym___global] = ACTIONS(1776), + [anon_sym_type] = ACTIONS(1776), + [anon_sym_PIPE] = ACTIONS(1720), + [anon_sym_fn] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_STAR] = ACTIONS(1722), + [anon_sym_SLASH] = ACTIONS(1722), + [anon_sym_PERCENT] = ACTIONS(1722), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_EQ_EQ] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1724), + [anon_sym_LT_EQ] = ACTIONS(1724), + [anon_sym_GT_EQ] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_struct] = ACTIONS(1776), + [anon_sym_union] = ACTIONS(1776), + [anon_sym_pub] = ACTIONS(1776), + [anon_sym_mut] = ACTIONS(1776), + [anon_sym_enum] = ACTIONS(1776), + [anon_sym_interface] = ACTIONS(1776), + [anon_sym_PLUS_PLUS] = ACTIONS(1728), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_QMARK] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_go] = ACTIONS(1776), + [anon_sym_spawn] = ACTIONS(1776), + [anon_sym_json_DOTdecode] = ACTIONS(1776), + [anon_sym_LBRACK2] = ACTIONS(1736), + [anon_sym_TILDE] = ACTIONS(1776), + [anon_sym_CARET] = ACTIONS(1720), + [anon_sym_AMP] = ACTIONS(1722), + [anon_sym_LT_DASH] = ACTIONS(1782), + [anon_sym_LT_LT] = ACTIONS(1784), + [anon_sym_GT_GT] = ACTIONS(1722), + [anon_sym_GT_GT_GT] = ACTIONS(1722), + [anon_sym_AMP_CARET] = ACTIONS(1722), + [anon_sym_AMP_AMP] = ACTIONS(1738), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_or] = ACTIONS(1742), + [sym_none] = ACTIONS(1776), + [sym_true] = ACTIONS(1776), + [sym_false] = ACTIONS(1776), + [sym_nil] = ACTIONS(1776), + [anon_sym_QMARK_DOT] = ACTIONS(1712), + [anon_sym_POUND_LBRACK] = ACTIONS(1736), + [anon_sym_if] = ACTIONS(1776), + [anon_sym_DOLLARif] = ACTIONS(1776), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1748), + [anon_sym_BANGin] = ACTIONS(1750), + [anon_sym_match] = ACTIONS(1776), + [anon_sym_select] = ACTIONS(1776), + [anon_sym_STAR_EQ] = ACTIONS(1780), + [anon_sym_SLASH_EQ] = ACTIONS(1780), + [anon_sym_PERCENT_EQ] = ACTIONS(1780), + [anon_sym_LT_LT_EQ] = ACTIONS(1780), + [anon_sym_GT_GT_EQ] = ACTIONS(1780), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1780), + [anon_sym_AMP_EQ] = ACTIONS(1780), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1780), + [anon_sym_PLUS_EQ] = ACTIONS(1780), + [anon_sym_DASH_EQ] = ACTIONS(1780), + [anon_sym_PIPE_EQ] = ACTIONS(1780), + [anon_sym_CARET_EQ] = ACTIONS(1780), + [anon_sym_COLON_EQ] = ACTIONS(1780), + [anon_sym_lock] = ACTIONS(1776), + [anon_sym_rlock] = ACTIONS(1776), + [anon_sym_unsafe] = ACTIONS(1776), + [anon_sym_sql] = ACTIONS(1776), + [sym_int_literal] = ACTIONS(1776), + [sym_float_literal] = ACTIONS(1776), + [sym_rune_literal] = ACTIONS(1776), + [anon_sym_AT] = ACTIONS(1776), + [anon_sym_shared] = ACTIONS(1776), + [anon_sym_map_LBRACK] = ACTIONS(1776), + [anon_sym_chan] = ACTIONS(1776), + [anon_sym_thread] = ACTIONS(1776), + [anon_sym_atomic] = ACTIONS(1776), + [anon_sym_assert] = ACTIONS(1776), + [anon_sym_defer] = ACTIONS(1776), + [anon_sym_goto] = ACTIONS(1776), + [anon_sym_break] = ACTIONS(1776), + [anon_sym_continue] = ACTIONS(1776), + [anon_sym_return] = ACTIONS(1776), + [anon_sym_DOLLARfor] = ACTIONS(1776), + [anon_sym_for] = ACTIONS(1776), + [anon_sym_POUND] = ACTIONS(1776), + [anon_sym_asm] = ACTIONS(1776), + [anon_sym_AT_LBRACK] = ACTIONS(1776), + [sym___double_quote] = ACTIONS(1776), + [sym___single_quote] = ACTIONS(1776), + [sym___c_double_quote] = ACTIONS(1776), + [sym___c_single_quote] = ACTIONS(1776), + [sym___r_double_quote] = ACTIONS(1776), + [sym___r_single_quote] = ACTIONS(1776), }, [272] = { - [sym__expression] = STATE(2449), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4145), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4330), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(2932), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [273] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4374), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(2362), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1908), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [274] = { - [sym__expression] = STATE(2440), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4277), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2439), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(449), + [sym_mutable_expression] = STATE(3864), + [sym_expression_list] = STATE(4646), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_var_declaration] = STATE(4393), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [275] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2726), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(281), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [276] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4139), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(1183), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2726), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(279), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1912), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [277] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4109), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(2139), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_element] = STATE(1965), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1242), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_short_element_list_repeat1] = STATE(277), + [sym_identifier] = ACTIONS(1794), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1797), + [anon_sym_LBRACE] = ACTIONS(1800), + [anon_sym_RBRACE] = ACTIONS(1803), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_fn] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1814), + [anon_sym_struct] = ACTIONS(1817), + [anon_sym_mut] = ACTIONS(1820), + [anon_sym_QMARK] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_go] = ACTIONS(1829), + [anon_sym_spawn] = ACTIONS(1832), + [anon_sym_json_DOTdecode] = ACTIONS(1835), + [anon_sym_LBRACK2] = ACTIONS(1838), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1841), + [anon_sym_LT_DASH] = ACTIONS(1844), + [sym_none] = ACTIONS(1847), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_nil] = ACTIONS(1847), + [anon_sym_if] = ACTIONS(1850), + [anon_sym_DOLLARif] = ACTIONS(1853), + [anon_sym_match] = ACTIONS(1856), + [anon_sym_select] = ACTIONS(1859), + [anon_sym_lock] = ACTIONS(1862), + [anon_sym_rlock] = ACTIONS(1862), + [anon_sym_unsafe] = ACTIONS(1865), + [anon_sym_sql] = ACTIONS(1868), + [sym_int_literal] = ACTIONS(1847), + [sym_float_literal] = ACTIONS(1871), + [sym_rune_literal] = ACTIONS(1871), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_shared] = ACTIONS(1877), + [anon_sym_map_LBRACK] = ACTIONS(1880), + [anon_sym_chan] = ACTIONS(1883), + [anon_sym_thread] = ACTIONS(1886), + [anon_sym_atomic] = ACTIONS(1889), + [sym___double_quote] = ACTIONS(1892), + [sym___single_quote] = ACTIONS(1895), + [sym___c_double_quote] = ACTIONS(1898), + [sym___c_single_quote] = ACTIONS(1901), + [sym___r_double_quote] = ACTIONS(1904), + [sym___r_single_quote] = ACTIONS(1907), }, [278] = { - [sym__expression] = STATE(2453), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4106), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2455), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(449), + [sym_mutable_expression] = STATE(3864), + [sym_expression_list] = STATE(4646), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_var_declaration] = STATE(4340), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [279] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4216), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(1718), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2726), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(292), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1916), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1910), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [280] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1918), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4192), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(2527), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1924), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1929), - [anon_sym_fn] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_struct] = ACTIONS(1941), - [anon_sym_mut] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1947), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_go] = ACTIONS(1953), - [anon_sym_spawn] = ACTIONS(1956), - [anon_sym_json_DOTdecode] = ACTIONS(1959), - [anon_sym_LBRACK2] = ACTIONS(1962), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_CARET] = ACTIONS(1935), - [anon_sym_AMP] = ACTIONS(1965), - [anon_sym_LT_DASH] = ACTIONS(1968), - [sym_none] = ACTIONS(1971), - [sym_true] = ACTIONS(1971), - [sym_false] = ACTIONS(1971), - [sym_nil] = ACTIONS(1971), - [anon_sym_if] = ACTIONS(1974), - [anon_sym_DOLLARif] = ACTIONS(1977), - [anon_sym_match] = ACTIONS(1980), - [anon_sym_select] = ACTIONS(1983), - [anon_sym_lock] = ACTIONS(1986), - [anon_sym_rlock] = ACTIONS(1986), - [anon_sym_unsafe] = ACTIONS(1989), - [anon_sym_sql] = ACTIONS(1992), - [sym_int_literal] = ACTIONS(1971), - [sym_float_literal] = ACTIONS(1995), - [sym_rune_literal] = ACTIONS(1995), - [anon_sym_AT] = ACTIONS(1998), - [anon_sym_shared] = ACTIONS(2001), - [anon_sym_map_LBRACK] = ACTIONS(2004), - [anon_sym_chan] = ACTIONS(2007), - [anon_sym_thread] = ACTIONS(2010), - [anon_sym_atomic] = ACTIONS(2013), - [sym___double_quote] = ACTIONS(2016), - [sym___single_quote] = ACTIONS(2019), - [sym___c_double_quote] = ACTIONS(2022), - [sym___c_single_quote] = ACTIONS(2025), - [sym___r_double_quote] = ACTIONS(2028), - [sym___r_single_quote] = ACTIONS(2031), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1912), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [281] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2726), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(292), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [282] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2726), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(292), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1916), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [283] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4178), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(2773), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2726), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(282), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2038), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [284] = { - [sym__expression] = STATE(2446), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4235), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4174), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(1017), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1920), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [285] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4396), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(1071), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4115), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(1955), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1922), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [286] = { - [sym__expression] = STATE(2441), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4398), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2726), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(255), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1924), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [287] = { - [sym__expression] = STATE(2442), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4321), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2726), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(292), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1926), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [288] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4163), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(2353), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4182), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(2712), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [289] = { - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(573), - [sym_mutable_expression] = STATE(3878), - [sym_expression_list] = STATE(4383), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4391), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_block] = STATE(1960), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [290] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(349), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(2458), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(449), + [sym_mutable_expression] = STATE(3864), + [sym_expression_list] = STATE(4646), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_var_declaration] = STATE(4287), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2066), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [291] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(364), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(2726), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(292), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2072), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [292] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(2076), - [anon_sym___global] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2076), - [anon_sym_STAR] = ACTIONS(2076), - [anon_sym_SLASH] = ACTIONS(2076), - [anon_sym_PERCENT] = ACTIONS(2076), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(2076), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(2076), - [anon_sym_GT_GT] = ACTIONS(2076), - [anon_sym_GT_GT_GT] = ACTIONS(2076), - [anon_sym_AMP_CARET] = ACTIONS(2076), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_STAR_EQ] = ACTIONS(2076), - [anon_sym_SLASH_EQ] = ACTIONS(2076), - [anon_sym_PERCENT_EQ] = ACTIONS(2076), - [anon_sym_LT_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_GT_EQ] = ACTIONS(2076), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2076), - [anon_sym_AMP_EQ] = ACTIONS(2076), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2076), - [anon_sym_PLUS_EQ] = ACTIONS(2076), - [anon_sym_DASH_EQ] = ACTIONS(2076), - [anon_sym_PIPE_EQ] = ACTIONS(2076), - [anon_sym_CARET_EQ] = ACTIONS(2076), - [anon_sym_COLON_EQ] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [anon_sym_assert] = ACTIONS(2076), - [anon_sym_defer] = ACTIONS(2076), - [anon_sym_goto] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_DOLLARfor] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_asm] = ACTIONS(2076), - [anon_sym_AT_LBRACK] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), + [sym__expression] = STATE(2726), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_map_keyed_element] = STATE(2125), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym_map_init_expression_repeat1] = STATE(292), + [sym_identifier] = ACTIONS(1934), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1937), + [anon_sym_LBRACE] = ACTIONS(1940), + [anon_sym_RBRACE] = ACTIONS(1943), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_fn] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1951), + [anon_sym_DASH] = ACTIONS(1951), + [anon_sym_STAR] = ACTIONS(1954), + [anon_sym_struct] = ACTIONS(1957), + [anon_sym_mut] = ACTIONS(1960), + [anon_sym_QMARK] = ACTIONS(1963), + [anon_sym_BANG] = ACTIONS(1966), + [anon_sym_go] = ACTIONS(1969), + [anon_sym_spawn] = ACTIONS(1972), + [anon_sym_json_DOTdecode] = ACTIONS(1975), + [anon_sym_LBRACK2] = ACTIONS(1978), + [anon_sym_TILDE] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_LT_DASH] = ACTIONS(1984), + [sym_none] = ACTIONS(1987), + [sym_true] = ACTIONS(1987), + [sym_false] = ACTIONS(1987), + [sym_nil] = ACTIONS(1987), + [anon_sym_if] = ACTIONS(1990), + [anon_sym_DOLLARif] = ACTIONS(1993), + [anon_sym_match] = ACTIONS(1996), + [anon_sym_select] = ACTIONS(1999), + [anon_sym_lock] = ACTIONS(2002), + [anon_sym_rlock] = ACTIONS(2002), + [anon_sym_unsafe] = ACTIONS(2005), + [anon_sym_sql] = ACTIONS(2008), + [sym_int_literal] = ACTIONS(1987), + [sym_float_literal] = ACTIONS(2011), + [sym_rune_literal] = ACTIONS(2011), + [anon_sym_AT] = ACTIONS(2014), + [anon_sym_shared] = ACTIONS(2017), + [anon_sym_map_LBRACK] = ACTIONS(2020), + [anon_sym_chan] = ACTIONS(2023), + [anon_sym_thread] = ACTIONS(2026), + [anon_sym_atomic] = ACTIONS(2029), + [sym___double_quote] = ACTIONS(2032), + [sym___single_quote] = ACTIONS(2035), + [sym___c_double_quote] = ACTIONS(2038), + [sym___c_single_quote] = ACTIONS(2041), + [sym___r_double_quote] = ACTIONS(2044), + [sym___r_single_quote] = ACTIONS(2047), }, [293] = { - [sym__expression] = STATE(2640), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4576), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2324), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3616), + [sym_expression_list] = STATE(3784), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [294] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [sym_type_parameters] = STATE(4151), + [sym_argument_list] = STATE(943), + [sym_or_block] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(2050), + [sym_identifier] = ACTIONS(2052), + [anon_sym_LF] = ACTIONS(2052), + [anon_sym_CR] = ACTIONS(2052), + [anon_sym_CR_LF] = ACTIONS(2052), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(1712), + [anon_sym_as] = ACTIONS(1714), + [anon_sym_LBRACE] = ACTIONS(2052), + [anon_sym_COMMA] = ACTIONS(2052), + [anon_sym_const] = ACTIONS(2052), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_EQ] = ACTIONS(2052), + [anon_sym___global] = ACTIONS(2052), + [anon_sym_type] = ACTIONS(2052), + [anon_sym_PIPE] = ACTIONS(1720), + [anon_sym_fn] = ACTIONS(2052), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_STAR] = ACTIONS(1722), + [anon_sym_SLASH] = ACTIONS(1722), + [anon_sym_PERCENT] = ACTIONS(1722), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_EQ_EQ] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1724), + [anon_sym_LT_EQ] = ACTIONS(1724), + [anon_sym_GT_EQ] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_struct] = ACTIONS(2052), + [anon_sym_union] = ACTIONS(2052), + [anon_sym_pub] = ACTIONS(2052), + [anon_sym_mut] = ACTIONS(2052), + [anon_sym_enum] = ACTIONS(2052), + [anon_sym_interface] = ACTIONS(2052), + [anon_sym_PLUS_PLUS] = ACTIONS(1728), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_QMARK] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_go] = ACTIONS(2052), + [anon_sym_spawn] = ACTIONS(2052), + [anon_sym_json_DOTdecode] = ACTIONS(2052), + [anon_sym_LBRACK2] = ACTIONS(1736), + [anon_sym_TILDE] = ACTIONS(2052), + [anon_sym_CARET] = ACTIONS(1720), + [anon_sym_AMP] = ACTIONS(1722), + [anon_sym_LT_DASH] = ACTIONS(2052), + [anon_sym_LT_LT] = ACTIONS(1722), + [anon_sym_GT_GT] = ACTIONS(1722), + [anon_sym_GT_GT_GT] = ACTIONS(1722), + [anon_sym_AMP_CARET] = ACTIONS(1722), + [anon_sym_AMP_AMP] = ACTIONS(1738), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_or] = ACTIONS(1742), + [sym_none] = ACTIONS(2052), + [sym_true] = ACTIONS(2052), + [sym_false] = ACTIONS(2052), + [sym_nil] = ACTIONS(2052), + [anon_sym_QMARK_DOT] = ACTIONS(1712), + [anon_sym_POUND_LBRACK] = ACTIONS(1736), + [anon_sym_if] = ACTIONS(2052), + [anon_sym_DOLLARif] = ACTIONS(2052), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1748), + [anon_sym_BANGin] = ACTIONS(1750), + [anon_sym_match] = ACTIONS(2052), + [anon_sym_select] = ACTIONS(2052), + [anon_sym_STAR_EQ] = ACTIONS(2052), + [anon_sym_SLASH_EQ] = ACTIONS(2052), + [anon_sym_PERCENT_EQ] = ACTIONS(2052), + [anon_sym_LT_LT_EQ] = ACTIONS(2052), + [anon_sym_GT_GT_EQ] = ACTIONS(2052), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2052), + [anon_sym_AMP_EQ] = ACTIONS(2052), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2052), + [anon_sym_PLUS_EQ] = ACTIONS(2052), + [anon_sym_DASH_EQ] = ACTIONS(2052), + [anon_sym_PIPE_EQ] = ACTIONS(2052), + [anon_sym_CARET_EQ] = ACTIONS(2052), + [anon_sym_COLON_EQ] = ACTIONS(2052), + [anon_sym_lock] = ACTIONS(2052), + [anon_sym_rlock] = ACTIONS(2052), + [anon_sym_unsafe] = ACTIONS(2052), + [anon_sym_sql] = ACTIONS(2052), + [sym_int_literal] = ACTIONS(2052), + [sym_float_literal] = ACTIONS(2052), + [sym_rune_literal] = ACTIONS(2052), + [anon_sym_AT] = ACTIONS(2052), + [anon_sym_shared] = ACTIONS(2052), + [anon_sym_map_LBRACK] = ACTIONS(2052), + [anon_sym_chan] = ACTIONS(2052), + [anon_sym_thread] = ACTIONS(2052), + [anon_sym_atomic] = ACTIONS(2052), + [anon_sym_assert] = ACTIONS(2052), + [anon_sym_defer] = ACTIONS(2052), + [anon_sym_goto] = ACTIONS(2052), + [anon_sym_break] = ACTIONS(2052), + [anon_sym_continue] = ACTIONS(2052), + [anon_sym_return] = ACTIONS(2052), + [anon_sym_DOLLARfor] = ACTIONS(2052), + [anon_sym_for] = ACTIONS(2052), + [anon_sym_POUND] = ACTIONS(2052), + [anon_sym_asm] = ACTIONS(2052), + [anon_sym_AT_LBRACK] = ACTIONS(2052), + [sym___double_quote] = ACTIONS(2052), + [sym___single_quote] = ACTIONS(2052), + [sym___c_double_quote] = ACTIONS(2052), + [sym___c_single_quote] = ACTIONS(2052), + [sym___r_double_quote] = ACTIONS(2052), + [sym___r_single_quote] = ACTIONS(2052), }, [295] = { - [sym__expression] = STATE(2640), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3656), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4576), - [sym_identifier] = ACTIONS(2080), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1365), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1320), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(386), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(2054), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1348), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [296] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4421), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2629), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(718), + [sym_mutable_expression] = STATE(3916), + [sym_expression_list] = STATE(4155), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_go] = ACTIONS(2068), + [anon_sym_spawn] = ACTIONS(2070), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_CARET] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_LT_DASH] = ACTIONS(2076), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2078), + [anon_sym_lock] = ACTIONS(2080), + [anon_sym_rlock] = ACTIONS(2080), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [297] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(2076), - [anon_sym___global] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2076), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(1696), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(1696), - [anon_sym_GT_GT] = ACTIONS(1696), - [anon_sym_GT_GT_GT] = ACTIONS(1696), - [anon_sym_AMP_CARET] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_STAR_EQ] = ACTIONS(2076), - [anon_sym_SLASH_EQ] = ACTIONS(2076), - [anon_sym_PERCENT_EQ] = ACTIONS(2076), - [anon_sym_LT_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_GT_EQ] = ACTIONS(2076), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2076), - [anon_sym_AMP_EQ] = ACTIONS(2076), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2076), - [anon_sym_PLUS_EQ] = ACTIONS(2076), - [anon_sym_DASH_EQ] = ACTIONS(2076), - [anon_sym_PIPE_EQ] = ACTIONS(2076), - [anon_sym_CARET_EQ] = ACTIONS(2076), - [anon_sym_COLON_EQ] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [anon_sym_assert] = ACTIONS(2076), - [anon_sym_defer] = ACTIONS(2076), - [anon_sym_goto] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_DOLLARfor] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_asm] = ACTIONS(2076), - [anon_sym_AT_LBRACK] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4418), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [298] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(2090), - [sym_identifier] = ACTIONS(2092), - [anon_sym_LF] = ACTIONS(2092), - [anon_sym_CR] = ACTIONS(2092), - [anon_sym_CR_LF] = ACTIONS(2092), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2092), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2092), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(2076), - [anon_sym___global] = ACTIONS(2092), - [anon_sym_type] = ACTIONS(2092), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_fn] = ACTIONS(2092), - [anon_sym_PLUS] = ACTIONS(2092), - [anon_sym_DASH] = ACTIONS(2092), - [anon_sym_STAR] = ACTIONS(2092), - [anon_sym_SLASH] = ACTIONS(2076), - [anon_sym_PERCENT] = ACTIONS(2076), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(2092), - [anon_sym_union] = ACTIONS(2092), - [anon_sym_pub] = ACTIONS(2092), - [anon_sym_mut] = ACTIONS(2092), - [anon_sym_enum] = ACTIONS(2092), - [anon_sym_interface] = ACTIONS(2092), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(2092), - [anon_sym_spawn] = ACTIONS(2092), - [anon_sym_json_DOTdecode] = ACTIONS(2092), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(2092), - [anon_sym_CARET] = ACTIONS(2092), - [anon_sym_AMP] = ACTIONS(2092), - [anon_sym_LT_DASH] = ACTIONS(2092), - [anon_sym_LT_LT] = ACTIONS(2076), - [anon_sym_GT_GT] = ACTIONS(2076), - [anon_sym_GT_GT_GT] = ACTIONS(2076), - [anon_sym_AMP_CARET] = ACTIONS(2076), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2092), - [sym_true] = ACTIONS(2092), - [sym_false] = ACTIONS(2092), - [sym_nil] = ACTIONS(2092), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(2092), - [anon_sym_DOLLARif] = ACTIONS(2092), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2092), - [anon_sym_select] = ACTIONS(2092), - [anon_sym_STAR_EQ] = ACTIONS(2076), - [anon_sym_SLASH_EQ] = ACTIONS(2076), - [anon_sym_PERCENT_EQ] = ACTIONS(2076), - [anon_sym_LT_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_GT_EQ] = ACTIONS(2076), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2076), - [anon_sym_AMP_EQ] = ACTIONS(2076), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2076), - [anon_sym_PLUS_EQ] = ACTIONS(2076), - [anon_sym_DASH_EQ] = ACTIONS(2076), - [anon_sym_PIPE_EQ] = ACTIONS(2076), - [anon_sym_CARET_EQ] = ACTIONS(2076), - [anon_sym_COLON_EQ] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2092), - [anon_sym_rlock] = ACTIONS(2092), - [anon_sym_unsafe] = ACTIONS(2092), - [anon_sym_sql] = ACTIONS(2092), - [sym_int_literal] = ACTIONS(2092), - [sym_float_literal] = ACTIONS(2092), - [sym_rune_literal] = ACTIONS(2092), - [anon_sym_AT] = ACTIONS(2092), - [anon_sym_shared] = ACTIONS(2092), - [anon_sym_map_LBRACK] = ACTIONS(2092), - [anon_sym_chan] = ACTIONS(2092), - [anon_sym_thread] = ACTIONS(2092), - [anon_sym_atomic] = ACTIONS(2092), - [anon_sym_assert] = ACTIONS(2092), - [anon_sym_defer] = ACTIONS(2092), - [anon_sym_goto] = ACTIONS(2092), - [anon_sym_break] = ACTIONS(2092), - [anon_sym_continue] = ACTIONS(2092), - [anon_sym_return] = ACTIONS(2092), - [anon_sym_DOLLARfor] = ACTIONS(2092), - [anon_sym_for] = ACTIONS(2092), - [anon_sym_POUND] = ACTIONS(2092), - [anon_sym_asm] = ACTIONS(2092), - [anon_sym_AT_LBRACK] = ACTIONS(2092), - [sym___double_quote] = ACTIONS(2092), - [sym___single_quote] = ACTIONS(2092), - [sym___c_double_quote] = ACTIONS(2092), - [sym___c_single_quote] = ACTIONS(2092), - [sym___r_double_quote] = ACTIONS(2092), - [sym___r_single_quote] = ACTIONS(2092), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1328), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1322), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [299] = { - [sym__expression] = STATE(2638), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3656), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4535), - [sym_identifier] = ACTIONS(2080), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1328), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1322), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(2086), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [300] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4448), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4418), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2094), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(2088), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [301] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(2076), - [anon_sym___global] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1696), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(1696), - [anon_sym_GT_GT] = ACTIONS(1696), - [anon_sym_GT_GT_GT] = ACTIONS(1696), - [anon_sym_AMP_CARET] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1712), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_BANGin] = ACTIONS(1724), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_STAR_EQ] = ACTIONS(2076), - [anon_sym_SLASH_EQ] = ACTIONS(2076), - [anon_sym_PERCENT_EQ] = ACTIONS(2076), - [anon_sym_LT_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_GT_EQ] = ACTIONS(2076), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2076), - [anon_sym_AMP_EQ] = ACTIONS(2076), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2076), - [anon_sym_PLUS_EQ] = ACTIONS(2076), - [anon_sym_DASH_EQ] = ACTIONS(2076), - [anon_sym_PIPE_EQ] = ACTIONS(2076), - [anon_sym_CARET_EQ] = ACTIONS(2076), - [anon_sym_COLON_EQ] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [anon_sym_assert] = ACTIONS(2076), - [anon_sym_defer] = ACTIONS(2076), - [anon_sym_goto] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_DOLLARfor] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_asm] = ACTIONS(2076), - [anon_sym_AT_LBRACK] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4154), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [302] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(294), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4431), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2096), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [303] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(2076), - [anon_sym___global] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1696), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(1696), - [anon_sym_GT_GT] = ACTIONS(1696), - [anon_sym_GT_GT_GT] = ACTIONS(1696), - [anon_sym_AMP_CARET] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_BANGin] = ACTIONS(1724), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_STAR_EQ] = ACTIONS(2076), - [anon_sym_SLASH_EQ] = ACTIONS(2076), - [anon_sym_PERCENT_EQ] = ACTIONS(2076), - [anon_sym_LT_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_GT_EQ] = ACTIONS(2076), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2076), - [anon_sym_AMP_EQ] = ACTIONS(2076), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2076), - [anon_sym_PLUS_EQ] = ACTIONS(2076), - [anon_sym_DASH_EQ] = ACTIONS(2076), - [anon_sym_PIPE_EQ] = ACTIONS(2076), - [anon_sym_CARET_EQ] = ACTIONS(2076), - [anon_sym_COLON_EQ] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [anon_sym_assert] = ACTIONS(2076), - [anon_sym_defer] = ACTIONS(2076), - [anon_sym_goto] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_DOLLARfor] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_asm] = ACTIONS(2076), - [anon_sym_AT_LBRACK] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), + [sym__expression] = STATE(2651), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4702), + [sym_identifier] = ACTIONS(2092), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(2094), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2096), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [304] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(2665), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4653), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2098), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [305] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4498), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2225), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3670), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(2094), + [anon_sym_RBRACK] = ACTIONS(619), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2096), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [306] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4505), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2668), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4731), + [sym_identifier] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(2094), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2096), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [307] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3656), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4498), - [sym_identifier] = ACTIONS(2080), + [sym__expression] = STATE(962), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(478), + [sym_mutable_expression] = STATE(1430), + [sym_expression_list] = STATE(1563), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2108), + [anon_sym_go] = ACTIONS(513), + [anon_sym_spawn] = ACTIONS(515), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_LT_DASH] = ACTIONS(2116), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(533), + [anon_sym_lock] = ACTIONS(535), + [anon_sym_rlock] = ACTIONS(535), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [308] = { - [sym__expression] = STATE(2638), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4535), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(962), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(478), + [sym_mutable_expression] = STATE(1430), + [sym_expression_list] = STATE(1572), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2108), + [anon_sym_go] = ACTIONS(513), + [anon_sym_spawn] = ACTIONS(515), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_LT_DASH] = ACTIONS(2116), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(533), + [anon_sym_lock] = ACTIONS(535), + [anon_sym_rlock] = ACTIONS(535), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [309] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4446), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4536), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2102), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(2132), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [310] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4578), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2668), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4731), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2104), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [311] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(2106), - [sym_identifier] = ACTIONS(2108), - [anon_sym_LF] = ACTIONS(2108), - [anon_sym_CR] = ACTIONS(2108), - [anon_sym_CR_LF] = ACTIONS(2108), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(2108), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_COMMA] = ACTIONS(2108), - [anon_sym_const] = ACTIONS(2108), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(2108), - [anon_sym___global] = ACTIONS(2108), - [anon_sym_type] = ACTIONS(2108), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_fn] = ACTIONS(2108), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(2108), - [anon_sym_GT] = ACTIONS(2108), - [anon_sym_EQ_EQ] = ACTIONS(2108), - [anon_sym_BANG_EQ] = ACTIONS(2108), - [anon_sym_LT_EQ] = ACTIONS(2108), - [anon_sym_GT_EQ] = ACTIONS(2108), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(2108), - [anon_sym_union] = ACTIONS(2108), - [anon_sym_pub] = ACTIONS(2108), - [anon_sym_mut] = ACTIONS(2108), - [anon_sym_enum] = ACTIONS(2108), - [anon_sym_interface] = ACTIONS(2108), - [anon_sym_PLUS_PLUS] = ACTIONS(2108), - [anon_sym_DASH_DASH] = ACTIONS(2108), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(2108), - [anon_sym_spawn] = ACTIONS(2108), - [anon_sym_json_DOTdecode] = ACTIONS(2108), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(2108), - [anon_sym_CARET] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1696), - [anon_sym_LT_DASH] = ACTIONS(2108), - [anon_sym_LT_LT] = ACTIONS(1696), - [anon_sym_GT_GT] = ACTIONS(1696), - [anon_sym_GT_GT_GT] = ACTIONS(1696), - [anon_sym_AMP_CARET] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(2108), - [anon_sym_PIPE_PIPE] = ACTIONS(2108), - [anon_sym_or] = ACTIONS(2108), - [sym_none] = ACTIONS(2108), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_nil] = ACTIONS(2108), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(2108), - [anon_sym_DOLLARif] = ACTIONS(2108), - [anon_sym_is] = ACTIONS(2108), - [anon_sym_BANGis] = ACTIONS(2108), - [anon_sym_in] = ACTIONS(2108), - [anon_sym_BANGin] = ACTIONS(2108), - [anon_sym_match] = ACTIONS(2108), - [anon_sym_select] = ACTIONS(2108), - [anon_sym_STAR_EQ] = ACTIONS(2108), - [anon_sym_SLASH_EQ] = ACTIONS(2108), - [anon_sym_PERCENT_EQ] = ACTIONS(2108), - [anon_sym_LT_LT_EQ] = ACTIONS(2108), - [anon_sym_GT_GT_EQ] = ACTIONS(2108), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2108), - [anon_sym_AMP_EQ] = ACTIONS(2108), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2108), - [anon_sym_PLUS_EQ] = ACTIONS(2108), - [anon_sym_DASH_EQ] = ACTIONS(2108), - [anon_sym_PIPE_EQ] = ACTIONS(2108), - [anon_sym_CARET_EQ] = ACTIONS(2108), - [anon_sym_COLON_EQ] = ACTIONS(2108), - [anon_sym_lock] = ACTIONS(2108), - [anon_sym_rlock] = ACTIONS(2108), - [anon_sym_unsafe] = ACTIONS(2108), - [anon_sym_sql] = ACTIONS(2108), - [sym_int_literal] = ACTIONS(2108), - [sym_float_literal] = ACTIONS(2108), - [sym_rune_literal] = ACTIONS(2108), - [anon_sym_AT] = ACTIONS(2108), - [anon_sym_shared] = ACTIONS(2108), - [anon_sym_map_LBRACK] = ACTIONS(2108), - [anon_sym_chan] = ACTIONS(2108), - [anon_sym_thread] = ACTIONS(2108), - [anon_sym_atomic] = ACTIONS(2108), - [anon_sym_assert] = ACTIONS(2108), - [anon_sym_defer] = ACTIONS(2108), - [anon_sym_goto] = ACTIONS(2108), - [anon_sym_break] = ACTIONS(2108), - [anon_sym_continue] = ACTIONS(2108), - [anon_sym_return] = ACTIONS(2108), - [anon_sym_DOLLARfor] = ACTIONS(2108), - [anon_sym_for] = ACTIONS(2108), - [anon_sym_POUND] = ACTIONS(2108), - [anon_sym_asm] = ACTIONS(2108), - [anon_sym_AT_LBRACK] = ACTIONS(2108), - [sym___double_quote] = ACTIONS(2108), - [sym___single_quote] = ACTIONS(2108), - [sym___c_double_quote] = ACTIONS(2108), - [sym___c_single_quote] = ACTIONS(2108), - [sym___r_double_quote] = ACTIONS(2108), - [sym___r_single_quote] = ACTIONS(2108), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4557), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [312] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(2110), - [sym_identifier] = ACTIONS(2112), - [anon_sym_LF] = ACTIONS(2112), - [anon_sym_CR] = ACTIONS(2112), - [anon_sym_CR_LF] = ACTIONS(2112), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(2112), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_COMMA] = ACTIONS(2112), - [anon_sym_const] = ACTIONS(2112), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(2112), - [anon_sym___global] = ACTIONS(2112), - [anon_sym_type] = ACTIONS(2112), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_fn] = ACTIONS(2112), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(2112), - [anon_sym_GT] = ACTIONS(2112), - [anon_sym_EQ_EQ] = ACTIONS(2112), - [anon_sym_BANG_EQ] = ACTIONS(2112), - [anon_sym_LT_EQ] = ACTIONS(2112), - [anon_sym_GT_EQ] = ACTIONS(2112), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(2112), - [anon_sym_union] = ACTIONS(2112), - [anon_sym_pub] = ACTIONS(2112), - [anon_sym_mut] = ACTIONS(2112), - [anon_sym_enum] = ACTIONS(2112), - [anon_sym_interface] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(2112), - [anon_sym_spawn] = ACTIONS(2112), - [anon_sym_json_DOTdecode] = ACTIONS(2112), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(2112), - [anon_sym_CARET] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1696), - [anon_sym_LT_DASH] = ACTIONS(2112), - [anon_sym_LT_LT] = ACTIONS(1696), - [anon_sym_GT_GT] = ACTIONS(1696), - [anon_sym_GT_GT_GT] = ACTIONS(1696), - [anon_sym_AMP_CARET] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(2112), - [anon_sym_PIPE_PIPE] = ACTIONS(2112), - [anon_sym_or] = ACTIONS(2112), - [sym_none] = ACTIONS(2112), - [sym_true] = ACTIONS(2112), - [sym_false] = ACTIONS(2112), - [sym_nil] = ACTIONS(2112), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(2112), - [anon_sym_DOLLARif] = ACTIONS(2112), - [anon_sym_is] = ACTIONS(2112), - [anon_sym_BANGis] = ACTIONS(2112), - [anon_sym_in] = ACTIONS(2112), - [anon_sym_BANGin] = ACTIONS(2112), - [anon_sym_match] = ACTIONS(2112), - [anon_sym_select] = ACTIONS(2112), - [anon_sym_STAR_EQ] = ACTIONS(2112), - [anon_sym_SLASH_EQ] = ACTIONS(2112), - [anon_sym_PERCENT_EQ] = ACTIONS(2112), - [anon_sym_LT_LT_EQ] = ACTIONS(2112), - [anon_sym_GT_GT_EQ] = ACTIONS(2112), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2112), - [anon_sym_AMP_EQ] = ACTIONS(2112), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2112), - [anon_sym_PLUS_EQ] = ACTIONS(2112), - [anon_sym_DASH_EQ] = ACTIONS(2112), - [anon_sym_PIPE_EQ] = ACTIONS(2112), - [anon_sym_CARET_EQ] = ACTIONS(2112), - [anon_sym_COLON_EQ] = ACTIONS(2112), - [anon_sym_lock] = ACTIONS(2112), - [anon_sym_rlock] = ACTIONS(2112), - [anon_sym_unsafe] = ACTIONS(2112), - [anon_sym_sql] = ACTIONS(2112), - [sym_int_literal] = ACTIONS(2112), - [sym_float_literal] = ACTIONS(2112), - [sym_rune_literal] = ACTIONS(2112), - [anon_sym_AT] = ACTIONS(2112), - [anon_sym_shared] = ACTIONS(2112), - [anon_sym_map_LBRACK] = ACTIONS(2112), - [anon_sym_chan] = ACTIONS(2112), - [anon_sym_thread] = ACTIONS(2112), - [anon_sym_atomic] = ACTIONS(2112), - [anon_sym_assert] = ACTIONS(2112), - [anon_sym_defer] = ACTIONS(2112), - [anon_sym_goto] = ACTIONS(2112), - [anon_sym_break] = ACTIONS(2112), - [anon_sym_continue] = ACTIONS(2112), - [anon_sym_return] = ACTIONS(2112), - [anon_sym_DOLLARfor] = ACTIONS(2112), - [anon_sym_for] = ACTIONS(2112), - [anon_sym_POUND] = ACTIONS(2112), - [anon_sym_asm] = ACTIONS(2112), - [anon_sym_AT_LBRACK] = ACTIONS(2112), - [sym___double_quote] = ACTIONS(2112), - [sym___single_quote] = ACTIONS(2112), - [sym___c_double_quote] = ACTIONS(2112), - [sym___c_single_quote] = ACTIONS(2112), - [sym___r_double_quote] = ACTIONS(2112), - [sym___r_single_quote] = ACTIONS(2112), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4557), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [313] = { - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(573), - [sym_mutable_expression] = STATE(3878), - [sym_expression_list] = STATE(4385), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(2634), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4631), + [sym_identifier] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(2094), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2096), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [314] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4383), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2634), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4631), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [315] = { - [sym__expression] = STATE(2658), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3656), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4730), - [sym_identifier] = ACTIONS(2080), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1328), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1322), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [316] = { - [sym__expression] = STATE(2662), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3656), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4641), - [sym_identifier] = ACTIONS(2080), + [sym__expression] = STATE(2665), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4653), + [sym_identifier] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(2094), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2096), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [317] = { - [sym__expression] = STATE(2662), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4641), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4573), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(2140), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [318] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4469), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2114), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [sym_type_parameters] = STATE(4151), + [sym_argument_list] = STATE(943), + [sym_or_block] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(2142), + [sym_identifier] = ACTIONS(2144), + [anon_sym_LF] = ACTIONS(2144), + [anon_sym_CR] = ACTIONS(2144), + [anon_sym_CR_LF] = ACTIONS(2144), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(1712), + [anon_sym_as] = ACTIONS(2144), + [anon_sym_LBRACE] = ACTIONS(2144), + [anon_sym_COMMA] = ACTIONS(2144), + [anon_sym_const] = ACTIONS(2144), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_EQ] = ACTIONS(2144), + [anon_sym___global] = ACTIONS(2144), + [anon_sym_type] = ACTIONS(2144), + [anon_sym_PIPE] = ACTIONS(1720), + [anon_sym_fn] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_STAR] = ACTIONS(1722), + [anon_sym_SLASH] = ACTIONS(1722), + [anon_sym_PERCENT] = ACTIONS(1722), + [anon_sym_LT] = ACTIONS(2144), + [anon_sym_GT] = ACTIONS(2144), + [anon_sym_EQ_EQ] = ACTIONS(2144), + [anon_sym_BANG_EQ] = ACTIONS(2144), + [anon_sym_LT_EQ] = ACTIONS(2144), + [anon_sym_GT_EQ] = ACTIONS(2144), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_struct] = ACTIONS(2144), + [anon_sym_union] = ACTIONS(2144), + [anon_sym_pub] = ACTIONS(2144), + [anon_sym_mut] = ACTIONS(2144), + [anon_sym_enum] = ACTIONS(2144), + [anon_sym_interface] = ACTIONS(2144), + [anon_sym_PLUS_PLUS] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2144), + [anon_sym_QMARK] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_go] = ACTIONS(2144), + [anon_sym_spawn] = ACTIONS(2144), + [anon_sym_json_DOTdecode] = ACTIONS(2144), + [anon_sym_LBRACK2] = ACTIONS(1736), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_CARET] = ACTIONS(1720), + [anon_sym_AMP] = ACTIONS(1722), + [anon_sym_LT_DASH] = ACTIONS(2144), + [anon_sym_LT_LT] = ACTIONS(1722), + [anon_sym_GT_GT] = ACTIONS(1722), + [anon_sym_GT_GT_GT] = ACTIONS(1722), + [anon_sym_AMP_CARET] = ACTIONS(1722), + [anon_sym_AMP_AMP] = ACTIONS(2144), + [anon_sym_PIPE_PIPE] = ACTIONS(2144), + [anon_sym_or] = ACTIONS(2144), + [sym_none] = ACTIONS(2144), + [sym_true] = ACTIONS(2144), + [sym_false] = ACTIONS(2144), + [sym_nil] = ACTIONS(2144), + [anon_sym_QMARK_DOT] = ACTIONS(1712), + [anon_sym_POUND_LBRACK] = ACTIONS(1736), + [anon_sym_if] = ACTIONS(2144), + [anon_sym_DOLLARif] = ACTIONS(2144), + [anon_sym_is] = ACTIONS(2144), + [anon_sym_BANGis] = ACTIONS(2144), + [anon_sym_in] = ACTIONS(2144), + [anon_sym_BANGin] = ACTIONS(2144), + [anon_sym_match] = ACTIONS(2144), + [anon_sym_select] = ACTIONS(2144), + [anon_sym_STAR_EQ] = ACTIONS(2144), + [anon_sym_SLASH_EQ] = ACTIONS(2144), + [anon_sym_PERCENT_EQ] = ACTIONS(2144), + [anon_sym_LT_LT_EQ] = ACTIONS(2144), + [anon_sym_GT_GT_EQ] = ACTIONS(2144), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2144), + [anon_sym_AMP_EQ] = ACTIONS(2144), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2144), + [anon_sym_PLUS_EQ] = ACTIONS(2144), + [anon_sym_DASH_EQ] = ACTIONS(2144), + [anon_sym_PIPE_EQ] = ACTIONS(2144), + [anon_sym_CARET_EQ] = ACTIONS(2144), + [anon_sym_COLON_EQ] = ACTIONS(2144), + [anon_sym_lock] = ACTIONS(2144), + [anon_sym_rlock] = ACTIONS(2144), + [anon_sym_unsafe] = ACTIONS(2144), + [anon_sym_sql] = ACTIONS(2144), + [sym_int_literal] = ACTIONS(2144), + [sym_float_literal] = ACTIONS(2144), + [sym_rune_literal] = ACTIONS(2144), + [anon_sym_AT] = ACTIONS(2144), + [anon_sym_shared] = ACTIONS(2144), + [anon_sym_map_LBRACK] = ACTIONS(2144), + [anon_sym_chan] = ACTIONS(2144), + [anon_sym_thread] = ACTIONS(2144), + [anon_sym_atomic] = ACTIONS(2144), + [anon_sym_assert] = ACTIONS(2144), + [anon_sym_defer] = ACTIONS(2144), + [anon_sym_goto] = ACTIONS(2144), + [anon_sym_break] = ACTIONS(2144), + [anon_sym_continue] = ACTIONS(2144), + [anon_sym_return] = ACTIONS(2144), + [anon_sym_DOLLARfor] = ACTIONS(2144), + [anon_sym_for] = ACTIONS(2144), + [anon_sym_POUND] = ACTIONS(2144), + [anon_sym_asm] = ACTIONS(2144), + [anon_sym_AT_LBRACK] = ACTIONS(2144), + [sym___double_quote] = ACTIONS(2144), + [sym___single_quote] = ACTIONS(2144), + [sym___c_double_quote] = ACTIONS(2144), + [sym___c_single_quote] = ACTIONS(2144), + [sym___r_double_quote] = ACTIONS(2144), + [sym___r_single_quote] = ACTIONS(2144), }, [319] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1365), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1320), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(362), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2116), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1348), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [320] = { - [sym__expression] = STATE(2637), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4435), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4421), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(2146), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [321] = { - [sym__expression] = STATE(2637), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3656), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4435), - [sym_identifier] = ACTIONS(2080), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4557), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [322] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4446), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4536), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2118), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [323] = { - [sym__expression] = STATE(2656), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3656), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4687), - [sym_identifier] = ACTIONS(2080), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1365), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1320), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(299), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(2152), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1348), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [324] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(304), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2120), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [sym_type_parameters] = STATE(4151), + [sym_argument_list] = STATE(943), + [sym_or_block] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(2154), + [sym_identifier] = ACTIONS(2156), + [anon_sym_LF] = ACTIONS(2156), + [anon_sym_CR] = ACTIONS(2156), + [anon_sym_CR_LF] = ACTIONS(2156), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(1712), + [anon_sym_as] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_COMMA] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_EQ] = ACTIONS(2156), + [anon_sym___global] = ACTIONS(2156), + [anon_sym_type] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(1720), + [anon_sym_fn] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_STAR] = ACTIONS(1722), + [anon_sym_SLASH] = ACTIONS(1722), + [anon_sym_PERCENT] = ACTIONS(1722), + [anon_sym_LT] = ACTIONS(2156), + [anon_sym_GT] = ACTIONS(2156), + [anon_sym_EQ_EQ] = ACTIONS(2156), + [anon_sym_BANG_EQ] = ACTIONS(2156), + [anon_sym_LT_EQ] = ACTIONS(2156), + [anon_sym_GT_EQ] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_struct] = ACTIONS(2156), + [anon_sym_union] = ACTIONS(2156), + [anon_sym_pub] = ACTIONS(2156), + [anon_sym_mut] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [anon_sym_interface] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_QMARK] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_go] = ACTIONS(2156), + [anon_sym_spawn] = ACTIONS(2156), + [anon_sym_json_DOTdecode] = ACTIONS(2156), + [anon_sym_LBRACK2] = ACTIONS(1736), + [anon_sym_TILDE] = ACTIONS(2156), + [anon_sym_CARET] = ACTIONS(1720), + [anon_sym_AMP] = ACTIONS(1722), + [anon_sym_LT_DASH] = ACTIONS(2156), + [anon_sym_LT_LT] = ACTIONS(1722), + [anon_sym_GT_GT] = ACTIONS(1722), + [anon_sym_GT_GT_GT] = ACTIONS(1722), + [anon_sym_AMP_CARET] = ACTIONS(1722), + [anon_sym_AMP_AMP] = ACTIONS(2156), + [anon_sym_PIPE_PIPE] = ACTIONS(2156), + [anon_sym_or] = ACTIONS(2156), + [sym_none] = ACTIONS(2156), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [sym_nil] = ACTIONS(2156), + [anon_sym_QMARK_DOT] = ACTIONS(1712), + [anon_sym_POUND_LBRACK] = ACTIONS(1736), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_DOLLARif] = ACTIONS(2156), + [anon_sym_is] = ACTIONS(2156), + [anon_sym_BANGis] = ACTIONS(2156), + [anon_sym_in] = ACTIONS(2156), + [anon_sym_BANGin] = ACTIONS(2156), + [anon_sym_match] = ACTIONS(2156), + [anon_sym_select] = ACTIONS(2156), + [anon_sym_STAR_EQ] = ACTIONS(2156), + [anon_sym_SLASH_EQ] = ACTIONS(2156), + [anon_sym_PERCENT_EQ] = ACTIONS(2156), + [anon_sym_LT_LT_EQ] = ACTIONS(2156), + [anon_sym_GT_GT_EQ] = ACTIONS(2156), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2156), + [anon_sym_AMP_EQ] = ACTIONS(2156), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2156), + [anon_sym_PLUS_EQ] = ACTIONS(2156), + [anon_sym_DASH_EQ] = ACTIONS(2156), + [anon_sym_PIPE_EQ] = ACTIONS(2156), + [anon_sym_CARET_EQ] = ACTIONS(2156), + [anon_sym_COLON_EQ] = ACTIONS(2156), + [anon_sym_lock] = ACTIONS(2156), + [anon_sym_rlock] = ACTIONS(2156), + [anon_sym_unsafe] = ACTIONS(2156), + [anon_sym_sql] = ACTIONS(2156), + [sym_int_literal] = ACTIONS(2156), + [sym_float_literal] = ACTIONS(2156), + [sym_rune_literal] = ACTIONS(2156), + [anon_sym_AT] = ACTIONS(2156), + [anon_sym_shared] = ACTIONS(2156), + [anon_sym_map_LBRACK] = ACTIONS(2156), + [anon_sym_chan] = ACTIONS(2156), + [anon_sym_thread] = ACTIONS(2156), + [anon_sym_atomic] = ACTIONS(2156), + [anon_sym_assert] = ACTIONS(2156), + [anon_sym_defer] = ACTIONS(2156), + [anon_sym_goto] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_DOLLARfor] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_POUND] = ACTIONS(2156), + [anon_sym_asm] = ACTIONS(2156), + [anon_sym_AT_LBRACK] = ACTIONS(2156), + [sym___double_quote] = ACTIONS(2156), + [sym___single_quote] = ACTIONS(2156), + [sym___c_double_quote] = ACTIONS(2156), + [sym___c_single_quote] = ACTIONS(2156), + [sym___r_double_quote] = ACTIONS(2156), + [sym___r_single_quote] = ACTIONS(2156), }, [325] = { - [sym__expression] = STATE(2656), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4687), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4452), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(2158), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [326] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(2122), - [sym_identifier] = ACTIONS(2124), - [anon_sym_LF] = ACTIONS(2124), - [anon_sym_CR] = ACTIONS(2124), - [anon_sym_CR_LF] = ACTIONS(2124), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(1688), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_COMMA] = ACTIONS(2124), - [anon_sym_const] = ACTIONS(2124), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(2124), - [anon_sym___global] = ACTIONS(2124), - [anon_sym_type] = ACTIONS(2124), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_fn] = ACTIONS(2124), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(2124), - [anon_sym_union] = ACTIONS(2124), - [anon_sym_pub] = ACTIONS(2124), - [anon_sym_mut] = ACTIONS(2124), - [anon_sym_enum] = ACTIONS(2124), - [anon_sym_interface] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DASH_DASH] = ACTIONS(1704), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(2124), - [anon_sym_spawn] = ACTIONS(2124), - [anon_sym_json_DOTdecode] = ACTIONS(2124), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1696), - [anon_sym_LT_DASH] = ACTIONS(2124), - [anon_sym_LT_LT] = ACTIONS(1696), - [anon_sym_GT_GT] = ACTIONS(1696), - [anon_sym_GT_GT_GT] = ACTIONS(1696), - [anon_sym_AMP_CARET] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1712), - [anon_sym_PIPE_PIPE] = ACTIONS(1714), - [anon_sym_or] = ACTIONS(1716), - [sym_none] = ACTIONS(2124), - [sym_true] = ACTIONS(2124), - [sym_false] = ACTIONS(2124), - [sym_nil] = ACTIONS(2124), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(2124), - [anon_sym_DOLLARif] = ACTIONS(2124), - [anon_sym_is] = ACTIONS(2126), - [anon_sym_BANGis] = ACTIONS(2128), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_BANGin] = ACTIONS(1724), - [anon_sym_match] = ACTIONS(2124), - [anon_sym_select] = ACTIONS(2124), - [anon_sym_STAR_EQ] = ACTIONS(2124), - [anon_sym_SLASH_EQ] = ACTIONS(2124), - [anon_sym_PERCENT_EQ] = ACTIONS(2124), - [anon_sym_LT_LT_EQ] = ACTIONS(2124), - [anon_sym_GT_GT_EQ] = ACTIONS(2124), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2124), - [anon_sym_AMP_EQ] = ACTIONS(2124), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2124), - [anon_sym_PLUS_EQ] = ACTIONS(2124), - [anon_sym_DASH_EQ] = ACTIONS(2124), - [anon_sym_PIPE_EQ] = ACTIONS(2124), - [anon_sym_CARET_EQ] = ACTIONS(2124), - [anon_sym_COLON_EQ] = ACTIONS(2124), - [anon_sym_lock] = ACTIONS(2124), - [anon_sym_rlock] = ACTIONS(2124), - [anon_sym_unsafe] = ACTIONS(2124), - [anon_sym_sql] = ACTIONS(2124), - [sym_int_literal] = ACTIONS(2124), - [sym_float_literal] = ACTIONS(2124), - [sym_rune_literal] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2124), - [anon_sym_shared] = ACTIONS(2124), - [anon_sym_map_LBRACK] = ACTIONS(2124), - [anon_sym_chan] = ACTIONS(2124), - [anon_sym_thread] = ACTIONS(2124), - [anon_sym_atomic] = ACTIONS(2124), - [anon_sym_assert] = ACTIONS(2124), - [anon_sym_defer] = ACTIONS(2124), - [anon_sym_goto] = ACTIONS(2124), - [anon_sym_break] = ACTIONS(2124), - [anon_sym_continue] = ACTIONS(2124), - [anon_sym_return] = ACTIONS(2124), - [anon_sym_DOLLARfor] = ACTIONS(2124), - [anon_sym_for] = ACTIONS(2124), - [anon_sym_POUND] = ACTIONS(2124), - [anon_sym_asm] = ACTIONS(2124), - [anon_sym_AT_LBRACK] = ACTIONS(2124), - [sym___double_quote] = ACTIONS(2124), - [sym___single_quote] = ACTIONS(2124), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2124), - [sym___r_double_quote] = ACTIONS(2124), - [sym___r_single_quote] = ACTIONS(2124), + [sym_type_parameters] = STATE(4151), + [sym_argument_list] = STATE(943), + [sym_or_block] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(2160), + [sym_identifier] = ACTIONS(2162), + [anon_sym_LF] = ACTIONS(2162), + [anon_sym_CR] = ACTIONS(2162), + [anon_sym_CR_LF] = ACTIONS(2162), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(1712), + [anon_sym_as] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_COMMA] = ACTIONS(2162), + [anon_sym_const] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_EQ] = ACTIONS(2162), + [anon_sym___global] = ACTIONS(2162), + [anon_sym_type] = ACTIONS(2162), + [anon_sym_PIPE] = ACTIONS(1720), + [anon_sym_fn] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_STAR] = ACTIONS(1722), + [anon_sym_SLASH] = ACTIONS(1722), + [anon_sym_PERCENT] = ACTIONS(1722), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_EQ_EQ] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1724), + [anon_sym_LT_EQ] = ACTIONS(1724), + [anon_sym_GT_EQ] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_union] = ACTIONS(2162), + [anon_sym_pub] = ACTIONS(2162), + [anon_sym_mut] = ACTIONS(2162), + [anon_sym_enum] = ACTIONS(2162), + [anon_sym_interface] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2162), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_QMARK] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_go] = ACTIONS(2162), + [anon_sym_spawn] = ACTIONS(2162), + [anon_sym_json_DOTdecode] = ACTIONS(2162), + [anon_sym_LBRACK2] = ACTIONS(1736), + [anon_sym_TILDE] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(1720), + [anon_sym_AMP] = ACTIONS(1722), + [anon_sym_LT_DASH] = ACTIONS(2162), + [anon_sym_LT_LT] = ACTIONS(1722), + [anon_sym_GT_GT] = ACTIONS(1722), + [anon_sym_GT_GT_GT] = ACTIONS(1722), + [anon_sym_AMP_CARET] = ACTIONS(1722), + [anon_sym_AMP_AMP] = ACTIONS(1738), + [anon_sym_PIPE_PIPE] = ACTIONS(2162), + [anon_sym_or] = ACTIONS(2162), + [sym_none] = ACTIONS(2162), + [sym_true] = ACTIONS(2162), + [sym_false] = ACTIONS(2162), + [sym_nil] = ACTIONS(2162), + [anon_sym_QMARK_DOT] = ACTIONS(1712), + [anon_sym_POUND_LBRACK] = ACTIONS(1736), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_DOLLARif] = ACTIONS(2162), + [anon_sym_is] = ACTIONS(2162), + [anon_sym_BANGis] = ACTIONS(2162), + [anon_sym_in] = ACTIONS(1748), + [anon_sym_BANGin] = ACTIONS(1750), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_select] = ACTIONS(2162), + [anon_sym_STAR_EQ] = ACTIONS(2162), + [anon_sym_SLASH_EQ] = ACTIONS(2162), + [anon_sym_PERCENT_EQ] = ACTIONS(2162), + [anon_sym_LT_LT_EQ] = ACTIONS(2162), + [anon_sym_GT_GT_EQ] = ACTIONS(2162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2162), + [anon_sym_AMP_EQ] = ACTIONS(2162), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2162), + [anon_sym_PLUS_EQ] = ACTIONS(2162), + [anon_sym_DASH_EQ] = ACTIONS(2162), + [anon_sym_PIPE_EQ] = ACTIONS(2162), + [anon_sym_CARET_EQ] = ACTIONS(2162), + [anon_sym_COLON_EQ] = ACTIONS(2162), + [anon_sym_lock] = ACTIONS(2162), + [anon_sym_rlock] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_sql] = ACTIONS(2162), + [sym_int_literal] = ACTIONS(2162), + [sym_float_literal] = ACTIONS(2162), + [sym_rune_literal] = ACTIONS(2162), + [anon_sym_AT] = ACTIONS(2162), + [anon_sym_shared] = ACTIONS(2162), + [anon_sym_map_LBRACK] = ACTIONS(2162), + [anon_sym_chan] = ACTIONS(2162), + [anon_sym_thread] = ACTIONS(2162), + [anon_sym_atomic] = ACTIONS(2162), + [anon_sym_assert] = ACTIONS(2162), + [anon_sym_defer] = ACTIONS(2162), + [anon_sym_goto] = ACTIONS(2162), + [anon_sym_break] = ACTIONS(2162), + [anon_sym_continue] = ACTIONS(2162), + [anon_sym_return] = ACTIONS(2162), + [anon_sym_DOLLARfor] = ACTIONS(2162), + [anon_sym_for] = ACTIONS(2162), + [anon_sym_POUND] = ACTIONS(2162), + [anon_sym_asm] = ACTIONS(2162), + [anon_sym_AT_LBRACK] = ACTIONS(2162), + [sym___double_quote] = ACTIONS(2162), + [sym___single_quote] = ACTIONS(2162), + [sym___c_double_quote] = ACTIONS(2162), + [sym___c_single_quote] = ACTIONS(2162), + [sym___r_double_quote] = ACTIONS(2162), + [sym___r_single_quote] = ACTIONS(2162), }, [327] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4515), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2130), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [328] = { - [sym__expression] = STATE(2652), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4466), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2636), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4502), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [329] = { - [sym__expression] = STATE(2652), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3656), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4466), - [sym_identifier] = ACTIONS(2080), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4433), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [330] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4415), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1365), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1320), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(299), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2132), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(2168), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1348), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [331] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2850), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2850), - [sym_dec_expression] = STATE(2850), - [sym_or_block_expression] = STATE(2850), - [sym_option_propagation_expression] = STATE(2850), - [sym_result_propagation_expression] = STATE(2850), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2850), - [sym_spawn_expression] = STATE(2850), - [sym_parenthesized_expression] = STATE(2850), - [sym_call_expression] = STATE(2850), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2850), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2850), - [sym_receive_expression] = STATE(2850), - [sym_binary_expression] = STATE(2850), - [sym_as_type_cast_expression] = STATE(2850), - [sym__max_group] = STATE(2850), - [sym_literal] = STATE(2850), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2850), - [sym_fixed_array_creation] = STATE(2850), - [sym_selector_expression] = STATE(2850), - [sym_index_expression] = STATE(2850), - [sym_slice_expression] = STATE(2850), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2850), - [sym_not_is_expression] = STATE(2850), - [sym_in_expression] = STATE(2850), - [sym_not_in_expression] = STATE(2850), - [sym_enum_fetch] = STATE(2850), - [sym_match_expression] = STATE(2795), - [sym_match_arm_type] = STATE(4391), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2850), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(4395), - [sym_identifier] = ACTIONS(1085), + [sym__expression] = STATE(2636), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4502), + [sym_identifier] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(2094), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2096), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [332] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(319), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2134), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [sym_type_parameters] = STATE(4151), + [sym_argument_list] = STATE(943), + [sym_or_block] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2172), + [anon_sym_LF] = ACTIONS(2172), + [anon_sym_CR] = ACTIONS(2172), + [anon_sym_CR_LF] = ACTIONS(2172), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(1712), + [anon_sym_as] = ACTIONS(1714), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_COMMA] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_EQ] = ACTIONS(2172), + [anon_sym___global] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(1720), + [anon_sym_fn] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_STAR] = ACTIONS(1722), + [anon_sym_SLASH] = ACTIONS(1722), + [anon_sym_PERCENT] = ACTIONS(1722), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_EQ_EQ] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1724), + [anon_sym_LT_EQ] = ACTIONS(1724), + [anon_sym_GT_EQ] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_struct] = ACTIONS(2172), + [anon_sym_union] = ACTIONS(2172), + [anon_sym_pub] = ACTIONS(2172), + [anon_sym_mut] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(1728), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_QMARK] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_go] = ACTIONS(2172), + [anon_sym_spawn] = ACTIONS(2172), + [anon_sym_json_DOTdecode] = ACTIONS(2172), + [anon_sym_LBRACK2] = ACTIONS(1736), + [anon_sym_TILDE] = ACTIONS(2172), + [anon_sym_CARET] = ACTIONS(1720), + [anon_sym_AMP] = ACTIONS(1722), + [anon_sym_LT_DASH] = ACTIONS(2172), + [anon_sym_LT_LT] = ACTIONS(1722), + [anon_sym_GT_GT] = ACTIONS(1722), + [anon_sym_GT_GT_GT] = ACTIONS(1722), + [anon_sym_AMP_CARET] = ACTIONS(1722), + [anon_sym_AMP_AMP] = ACTIONS(1738), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_or] = ACTIONS(1742), + [sym_none] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_nil] = ACTIONS(2172), + [anon_sym_QMARK_DOT] = ACTIONS(1712), + [anon_sym_POUND_LBRACK] = ACTIONS(1736), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_DOLLARif] = ACTIONS(2172), + [anon_sym_is] = ACTIONS(2174), + [anon_sym_BANGis] = ACTIONS(2176), + [anon_sym_in] = ACTIONS(1748), + [anon_sym_BANGin] = ACTIONS(1750), + [anon_sym_match] = ACTIONS(2172), + [anon_sym_select] = ACTIONS(2172), + [anon_sym_STAR_EQ] = ACTIONS(2172), + [anon_sym_SLASH_EQ] = ACTIONS(2172), + [anon_sym_PERCENT_EQ] = ACTIONS(2172), + [anon_sym_LT_LT_EQ] = ACTIONS(2172), + [anon_sym_GT_GT_EQ] = ACTIONS(2172), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2172), + [anon_sym_AMP_EQ] = ACTIONS(2172), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2172), + [anon_sym_PLUS_EQ] = ACTIONS(2172), + [anon_sym_DASH_EQ] = ACTIONS(2172), + [anon_sym_PIPE_EQ] = ACTIONS(2172), + [anon_sym_CARET_EQ] = ACTIONS(2172), + [anon_sym_COLON_EQ] = ACTIONS(2172), + [anon_sym_lock] = ACTIONS(2172), + [anon_sym_rlock] = ACTIONS(2172), + [anon_sym_unsafe] = ACTIONS(2172), + [anon_sym_sql] = ACTIONS(2172), + [sym_int_literal] = ACTIONS(2172), + [sym_float_literal] = ACTIONS(2172), + [sym_rune_literal] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2172), + [anon_sym_shared] = ACTIONS(2172), + [anon_sym_map_LBRACK] = ACTIONS(2172), + [anon_sym_chan] = ACTIONS(2172), + [anon_sym_thread] = ACTIONS(2172), + [anon_sym_atomic] = ACTIONS(2172), + [anon_sym_assert] = ACTIONS(2172), + [anon_sym_defer] = ACTIONS(2172), + [anon_sym_goto] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_DOLLARfor] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(2172), + [anon_sym_asm] = ACTIONS(2172), + [anon_sym_AT_LBRACK] = ACTIONS(2172), + [sym___double_quote] = ACTIONS(2172), + [sym___single_quote] = ACTIONS(2172), + [sym___c_double_quote] = ACTIONS(2172), + [sym___c_single_quote] = ACTIONS(2172), + [sym___r_double_quote] = ACTIONS(2172), + [sym___r_single_quote] = ACTIONS(2172), }, [333] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(304), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2136), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [sym_type_parameters] = STATE(4151), + [sym_argument_list] = STATE(943), + [sym_or_block] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(2160), + [sym_identifier] = ACTIONS(2162), + [anon_sym_LF] = ACTIONS(2162), + [anon_sym_CR] = ACTIONS(2162), + [anon_sym_CR_LF] = ACTIONS(2162), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(1712), + [anon_sym_as] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_COMMA] = ACTIONS(2162), + [anon_sym_const] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_EQ] = ACTIONS(2162), + [anon_sym___global] = ACTIONS(2162), + [anon_sym_type] = ACTIONS(2162), + [anon_sym_PIPE] = ACTIONS(1720), + [anon_sym_fn] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_STAR] = ACTIONS(1722), + [anon_sym_SLASH] = ACTIONS(1722), + [anon_sym_PERCENT] = ACTIONS(1722), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_EQ_EQ] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1724), + [anon_sym_LT_EQ] = ACTIONS(1724), + [anon_sym_GT_EQ] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_union] = ACTIONS(2162), + [anon_sym_pub] = ACTIONS(2162), + [anon_sym_mut] = ACTIONS(2162), + [anon_sym_enum] = ACTIONS(2162), + [anon_sym_interface] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2162), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_QMARK] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_go] = ACTIONS(2162), + [anon_sym_spawn] = ACTIONS(2162), + [anon_sym_json_DOTdecode] = ACTIONS(2162), + [anon_sym_LBRACK2] = ACTIONS(1736), + [anon_sym_TILDE] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(1720), + [anon_sym_AMP] = ACTIONS(1722), + [anon_sym_LT_DASH] = ACTIONS(2162), + [anon_sym_LT_LT] = ACTIONS(1722), + [anon_sym_GT_GT] = ACTIONS(1722), + [anon_sym_GT_GT_GT] = ACTIONS(1722), + [anon_sym_AMP_CARET] = ACTIONS(1722), + [anon_sym_AMP_AMP] = ACTIONS(2162), + [anon_sym_PIPE_PIPE] = ACTIONS(2162), + [anon_sym_or] = ACTIONS(2162), + [sym_none] = ACTIONS(2162), + [sym_true] = ACTIONS(2162), + [sym_false] = ACTIONS(2162), + [sym_nil] = ACTIONS(2162), + [anon_sym_QMARK_DOT] = ACTIONS(1712), + [anon_sym_POUND_LBRACK] = ACTIONS(1736), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_DOLLARif] = ACTIONS(2162), + [anon_sym_is] = ACTIONS(2162), + [anon_sym_BANGis] = ACTIONS(2162), + [anon_sym_in] = ACTIONS(1748), + [anon_sym_BANGin] = ACTIONS(1750), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_select] = ACTIONS(2162), + [anon_sym_STAR_EQ] = ACTIONS(2162), + [anon_sym_SLASH_EQ] = ACTIONS(2162), + [anon_sym_PERCENT_EQ] = ACTIONS(2162), + [anon_sym_LT_LT_EQ] = ACTIONS(2162), + [anon_sym_GT_GT_EQ] = ACTIONS(2162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2162), + [anon_sym_AMP_EQ] = ACTIONS(2162), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2162), + [anon_sym_PLUS_EQ] = ACTIONS(2162), + [anon_sym_DASH_EQ] = ACTIONS(2162), + [anon_sym_PIPE_EQ] = ACTIONS(2162), + [anon_sym_CARET_EQ] = ACTIONS(2162), + [anon_sym_COLON_EQ] = ACTIONS(2162), + [anon_sym_lock] = ACTIONS(2162), + [anon_sym_rlock] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_sql] = ACTIONS(2162), + [sym_int_literal] = ACTIONS(2162), + [sym_float_literal] = ACTIONS(2162), + [sym_rune_literal] = ACTIONS(2162), + [anon_sym_AT] = ACTIONS(2162), + [anon_sym_shared] = ACTIONS(2162), + [anon_sym_map_LBRACK] = ACTIONS(2162), + [anon_sym_chan] = ACTIONS(2162), + [anon_sym_thread] = ACTIONS(2162), + [anon_sym_atomic] = ACTIONS(2162), + [anon_sym_assert] = ACTIONS(2162), + [anon_sym_defer] = ACTIONS(2162), + [anon_sym_goto] = ACTIONS(2162), + [anon_sym_break] = ACTIONS(2162), + [anon_sym_continue] = ACTIONS(2162), + [anon_sym_return] = ACTIONS(2162), + [anon_sym_DOLLARfor] = ACTIONS(2162), + [anon_sym_for] = ACTIONS(2162), + [anon_sym_POUND] = ACTIONS(2162), + [anon_sym_asm] = ACTIONS(2162), + [anon_sym_AT_LBRACK] = ACTIONS(2162), + [sym___double_quote] = ACTIONS(2162), + [sym___single_quote] = ACTIONS(2162), + [sym___c_double_quote] = ACTIONS(2162), + [sym___c_single_quote] = ACTIONS(2162), + [sym___r_double_quote] = ACTIONS(2162), + [sym___r_single_quote] = ACTIONS(2162), }, [334] = { - [sym__expression] = STATE(2365), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3566), - [sym_expression_list] = STATE(3767), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1365), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1320), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(298), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(2178), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1348), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [335] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(2640), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4615), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2138), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [336] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(380), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4494), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(2180), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [337] = { - [sym__expression] = STATE(2661), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4557), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2640), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4615), + [sym_identifier] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(2094), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2096), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [338] = { - [sym__expression] = STATE(2661), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3656), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4557), - [sym_identifier] = ACTIONS(2080), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [sym_type_parameters] = STATE(4151), + [sym_argument_list] = STATE(943), + [sym_or_block] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(2182), + [sym_identifier] = ACTIONS(2184), + [anon_sym_LF] = ACTIONS(2184), + [anon_sym_CR] = ACTIONS(2184), + [anon_sym_CR_LF] = ACTIONS(2184), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(1712), + [anon_sym_as] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_COMMA] = ACTIONS(2162), + [anon_sym_const] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_EQ] = ACTIONS(2162), + [anon_sym___global] = ACTIONS(2184), + [anon_sym_type] = ACTIONS(2184), + [anon_sym_PIPE] = ACTIONS(2162), + [anon_sym_fn] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2184), + [anon_sym_DASH] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_SLASH] = ACTIONS(2162), + [anon_sym_PERCENT] = ACTIONS(2162), + [anon_sym_LT] = ACTIONS(2162), + [anon_sym_GT] = ACTIONS(2162), + [anon_sym_EQ_EQ] = ACTIONS(2162), + [anon_sym_BANG_EQ] = ACTIONS(2162), + [anon_sym_LT_EQ] = ACTIONS(2162), + [anon_sym_GT_EQ] = ACTIONS(2162), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_struct] = ACTIONS(2184), + [anon_sym_union] = ACTIONS(2184), + [anon_sym_pub] = ACTIONS(2184), + [anon_sym_mut] = ACTIONS(2184), + [anon_sym_enum] = ACTIONS(2184), + [anon_sym_interface] = ACTIONS(2184), + [anon_sym_PLUS_PLUS] = ACTIONS(2162), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_QMARK] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_go] = ACTIONS(2184), + [anon_sym_spawn] = ACTIONS(2184), + [anon_sym_json_DOTdecode] = ACTIONS(2184), + [anon_sym_LBRACK2] = ACTIONS(1736), + [anon_sym_TILDE] = ACTIONS(2184), + [anon_sym_CARET] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2184), + [anon_sym_LT_DASH] = ACTIONS(2184), + [anon_sym_LT_LT] = ACTIONS(2162), + [anon_sym_GT_GT] = ACTIONS(2162), + [anon_sym_GT_GT_GT] = ACTIONS(2162), + [anon_sym_AMP_CARET] = ACTIONS(2162), + [anon_sym_AMP_AMP] = ACTIONS(2162), + [anon_sym_PIPE_PIPE] = ACTIONS(2162), + [anon_sym_or] = ACTIONS(2162), + [sym_none] = ACTIONS(2184), + [sym_true] = ACTIONS(2184), + [sym_false] = ACTIONS(2184), + [sym_nil] = ACTIONS(2184), + [anon_sym_QMARK_DOT] = ACTIONS(1712), + [anon_sym_POUND_LBRACK] = ACTIONS(1736), + [anon_sym_if] = ACTIONS(2184), + [anon_sym_DOLLARif] = ACTIONS(2184), + [anon_sym_is] = ACTIONS(2162), + [anon_sym_BANGis] = ACTIONS(2162), + [anon_sym_in] = ACTIONS(2162), + [anon_sym_BANGin] = ACTIONS(2162), + [anon_sym_match] = ACTIONS(2184), + [anon_sym_select] = ACTIONS(2184), + [anon_sym_STAR_EQ] = ACTIONS(2162), + [anon_sym_SLASH_EQ] = ACTIONS(2162), + [anon_sym_PERCENT_EQ] = ACTIONS(2162), + [anon_sym_LT_LT_EQ] = ACTIONS(2162), + [anon_sym_GT_GT_EQ] = ACTIONS(2162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2162), + [anon_sym_AMP_EQ] = ACTIONS(2162), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2162), + [anon_sym_PLUS_EQ] = ACTIONS(2162), + [anon_sym_DASH_EQ] = ACTIONS(2162), + [anon_sym_PIPE_EQ] = ACTIONS(2162), + [anon_sym_CARET_EQ] = ACTIONS(2162), + [anon_sym_COLON_EQ] = ACTIONS(2162), + [anon_sym_lock] = ACTIONS(2184), + [anon_sym_rlock] = ACTIONS(2184), + [anon_sym_unsafe] = ACTIONS(2184), + [anon_sym_sql] = ACTIONS(2184), + [sym_int_literal] = ACTIONS(2184), + [sym_float_literal] = ACTIONS(2184), + [sym_rune_literal] = ACTIONS(2184), + [anon_sym_AT] = ACTIONS(2184), + [anon_sym_shared] = ACTIONS(2184), + [anon_sym_map_LBRACK] = ACTIONS(2184), + [anon_sym_chan] = ACTIONS(2184), + [anon_sym_thread] = ACTIONS(2184), + [anon_sym_atomic] = ACTIONS(2184), + [anon_sym_assert] = ACTIONS(2184), + [anon_sym_defer] = ACTIONS(2184), + [anon_sym_goto] = ACTIONS(2184), + [anon_sym_break] = ACTIONS(2184), + [anon_sym_continue] = ACTIONS(2184), + [anon_sym_return] = ACTIONS(2184), + [anon_sym_DOLLARfor] = ACTIONS(2184), + [anon_sym_for] = ACTIONS(2184), + [anon_sym_POUND] = ACTIONS(2184), + [anon_sym_asm] = ACTIONS(2184), + [anon_sym_AT_LBRACK] = ACTIONS(2184), + [sym___double_quote] = ACTIONS(2184), + [sym___single_quote] = ACTIONS(2184), + [sym___c_double_quote] = ACTIONS(2184), + [sym___c_single_quote] = ACTIONS(2184), + [sym___r_double_quote] = ACTIONS(2184), + [sym___r_single_quote] = ACTIONS(2184), }, [339] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(361), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1328), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1322), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [340] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(327), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [sym_type_parameters] = STATE(4151), + [sym_argument_list] = STATE(943), + [sym_or_block] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(2160), + [sym_identifier] = ACTIONS(2162), + [anon_sym_LF] = ACTIONS(2162), + [anon_sym_CR] = ACTIONS(2162), + [anon_sym_CR_LF] = ACTIONS(2162), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(1712), + [anon_sym_as] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_COMMA] = ACTIONS(2162), + [anon_sym_const] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_EQ] = ACTIONS(2162), + [anon_sym___global] = ACTIONS(2162), + [anon_sym_type] = ACTIONS(2162), + [anon_sym_PIPE] = ACTIONS(1720), + [anon_sym_fn] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_STAR] = ACTIONS(1722), + [anon_sym_SLASH] = ACTIONS(1722), + [anon_sym_PERCENT] = ACTIONS(1722), + [anon_sym_LT] = ACTIONS(2162), + [anon_sym_GT] = ACTIONS(2162), + [anon_sym_EQ_EQ] = ACTIONS(2162), + [anon_sym_BANG_EQ] = ACTIONS(2162), + [anon_sym_LT_EQ] = ACTIONS(2162), + [anon_sym_GT_EQ] = ACTIONS(2162), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_union] = ACTIONS(2162), + [anon_sym_pub] = ACTIONS(2162), + [anon_sym_mut] = ACTIONS(2162), + [anon_sym_enum] = ACTIONS(2162), + [anon_sym_interface] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2162), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_QMARK] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_go] = ACTIONS(2162), + [anon_sym_spawn] = ACTIONS(2162), + [anon_sym_json_DOTdecode] = ACTIONS(2162), + [anon_sym_LBRACK2] = ACTIONS(1736), + [anon_sym_TILDE] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(1720), + [anon_sym_AMP] = ACTIONS(1722), + [anon_sym_LT_DASH] = ACTIONS(2162), + [anon_sym_LT_LT] = ACTIONS(1722), + [anon_sym_GT_GT] = ACTIONS(1722), + [anon_sym_GT_GT_GT] = ACTIONS(1722), + [anon_sym_AMP_CARET] = ACTIONS(1722), + [anon_sym_AMP_AMP] = ACTIONS(2162), + [anon_sym_PIPE_PIPE] = ACTIONS(2162), + [anon_sym_or] = ACTIONS(2162), + [sym_none] = ACTIONS(2162), + [sym_true] = ACTIONS(2162), + [sym_false] = ACTIONS(2162), + [sym_nil] = ACTIONS(2162), + [anon_sym_QMARK_DOT] = ACTIONS(1712), + [anon_sym_POUND_LBRACK] = ACTIONS(1736), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_DOLLARif] = ACTIONS(2162), + [anon_sym_is] = ACTIONS(2162), + [anon_sym_BANGis] = ACTIONS(2162), + [anon_sym_in] = ACTIONS(2162), + [anon_sym_BANGin] = ACTIONS(2162), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_select] = ACTIONS(2162), + [anon_sym_STAR_EQ] = ACTIONS(2162), + [anon_sym_SLASH_EQ] = ACTIONS(2162), + [anon_sym_PERCENT_EQ] = ACTIONS(2162), + [anon_sym_LT_LT_EQ] = ACTIONS(2162), + [anon_sym_GT_GT_EQ] = ACTIONS(2162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2162), + [anon_sym_AMP_EQ] = ACTIONS(2162), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2162), + [anon_sym_PLUS_EQ] = ACTIONS(2162), + [anon_sym_DASH_EQ] = ACTIONS(2162), + [anon_sym_PIPE_EQ] = ACTIONS(2162), + [anon_sym_CARET_EQ] = ACTIONS(2162), + [anon_sym_COLON_EQ] = ACTIONS(2162), + [anon_sym_lock] = ACTIONS(2162), + [anon_sym_rlock] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_sql] = ACTIONS(2162), + [sym_int_literal] = ACTIONS(2162), + [sym_float_literal] = ACTIONS(2162), + [sym_rune_literal] = ACTIONS(2162), + [anon_sym_AT] = ACTIONS(2162), + [anon_sym_shared] = ACTIONS(2162), + [anon_sym_map_LBRACK] = ACTIONS(2162), + [anon_sym_chan] = ACTIONS(2162), + [anon_sym_thread] = ACTIONS(2162), + [anon_sym_atomic] = ACTIONS(2162), + [anon_sym_assert] = ACTIONS(2162), + [anon_sym_defer] = ACTIONS(2162), + [anon_sym_goto] = ACTIONS(2162), + [anon_sym_break] = ACTIONS(2162), + [anon_sym_continue] = ACTIONS(2162), + [anon_sym_return] = ACTIONS(2162), + [anon_sym_DOLLARfor] = ACTIONS(2162), + [anon_sym_for] = ACTIONS(2162), + [anon_sym_POUND] = ACTIONS(2162), + [anon_sym_asm] = ACTIONS(2162), + [anon_sym_AT_LBRACK] = ACTIONS(2162), + [sym___double_quote] = ACTIONS(2162), + [sym___single_quote] = ACTIONS(2162), + [sym___c_double_quote] = ACTIONS(2162), + [sym___c_single_quote] = ACTIONS(2162), + [sym___r_double_quote] = ACTIONS(2162), + [sym___r_single_quote] = ACTIONS(2162), }, [341] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4446), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4433), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2146), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [342] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3675), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2080), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_RBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [sym_type_parameters] = STATE(4151), + [sym_argument_list] = STATE(943), + [sym_or_block] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(2160), + [sym_identifier] = ACTIONS(2162), + [anon_sym_LF] = ACTIONS(2162), + [anon_sym_CR] = ACTIONS(2162), + [anon_sym_CR_LF] = ACTIONS(2162), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(1712), + [anon_sym_as] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_COMMA] = ACTIONS(2162), + [anon_sym_const] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_EQ] = ACTIONS(2162), + [anon_sym___global] = ACTIONS(2162), + [anon_sym_type] = ACTIONS(2162), + [anon_sym_PIPE] = ACTIONS(2162), + [anon_sym_fn] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(2162), + [anon_sym_DASH] = ACTIONS(2162), + [anon_sym_STAR] = ACTIONS(2162), + [anon_sym_SLASH] = ACTIONS(2162), + [anon_sym_PERCENT] = ACTIONS(2162), + [anon_sym_LT] = ACTIONS(2162), + [anon_sym_GT] = ACTIONS(2162), + [anon_sym_EQ_EQ] = ACTIONS(2162), + [anon_sym_BANG_EQ] = ACTIONS(2162), + [anon_sym_LT_EQ] = ACTIONS(2162), + [anon_sym_GT_EQ] = ACTIONS(2162), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_union] = ACTIONS(2162), + [anon_sym_pub] = ACTIONS(2162), + [anon_sym_mut] = ACTIONS(2162), + [anon_sym_enum] = ACTIONS(2162), + [anon_sym_interface] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2162), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_QMARK] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_go] = ACTIONS(2162), + [anon_sym_spawn] = ACTIONS(2162), + [anon_sym_json_DOTdecode] = ACTIONS(2162), + [anon_sym_LBRACK2] = ACTIONS(1736), + [anon_sym_TILDE] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(2162), + [anon_sym_AMP] = ACTIONS(2162), + [anon_sym_LT_DASH] = ACTIONS(2162), + [anon_sym_LT_LT] = ACTIONS(2162), + [anon_sym_GT_GT] = ACTIONS(2162), + [anon_sym_GT_GT_GT] = ACTIONS(2162), + [anon_sym_AMP_CARET] = ACTIONS(2162), + [anon_sym_AMP_AMP] = ACTIONS(2162), + [anon_sym_PIPE_PIPE] = ACTIONS(2162), + [anon_sym_or] = ACTIONS(2162), + [sym_none] = ACTIONS(2162), + [sym_true] = ACTIONS(2162), + [sym_false] = ACTIONS(2162), + [sym_nil] = ACTIONS(2162), + [anon_sym_QMARK_DOT] = ACTIONS(1712), + [anon_sym_POUND_LBRACK] = ACTIONS(1736), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_DOLLARif] = ACTIONS(2162), + [anon_sym_is] = ACTIONS(2162), + [anon_sym_BANGis] = ACTIONS(2162), + [anon_sym_in] = ACTIONS(2162), + [anon_sym_BANGin] = ACTIONS(2162), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_select] = ACTIONS(2162), + [anon_sym_STAR_EQ] = ACTIONS(2162), + [anon_sym_SLASH_EQ] = ACTIONS(2162), + [anon_sym_PERCENT_EQ] = ACTIONS(2162), + [anon_sym_LT_LT_EQ] = ACTIONS(2162), + [anon_sym_GT_GT_EQ] = ACTIONS(2162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2162), + [anon_sym_AMP_EQ] = ACTIONS(2162), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2162), + [anon_sym_PLUS_EQ] = ACTIONS(2162), + [anon_sym_DASH_EQ] = ACTIONS(2162), + [anon_sym_PIPE_EQ] = ACTIONS(2162), + [anon_sym_CARET_EQ] = ACTIONS(2162), + [anon_sym_COLON_EQ] = ACTIONS(2162), + [anon_sym_lock] = ACTIONS(2162), + [anon_sym_rlock] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_sql] = ACTIONS(2162), + [sym_int_literal] = ACTIONS(2162), + [sym_float_literal] = ACTIONS(2162), + [sym_rune_literal] = ACTIONS(2162), + [anon_sym_AT] = ACTIONS(2162), + [anon_sym_shared] = ACTIONS(2162), + [anon_sym_map_LBRACK] = ACTIONS(2162), + [anon_sym_chan] = ACTIONS(2162), + [anon_sym_thread] = ACTIONS(2162), + [anon_sym_atomic] = ACTIONS(2162), + [anon_sym_assert] = ACTIONS(2162), + [anon_sym_defer] = ACTIONS(2162), + [anon_sym_goto] = ACTIONS(2162), + [anon_sym_break] = ACTIONS(2162), + [anon_sym_continue] = ACTIONS(2162), + [anon_sym_return] = ACTIONS(2162), + [anon_sym_DOLLARfor] = ACTIONS(2162), + [anon_sym_for] = ACTIONS(2162), + [anon_sym_POUND] = ACTIONS(2162), + [anon_sym_asm] = ACTIONS(2162), + [anon_sym_AT_LBRACK] = ACTIONS(2162), + [sym___double_quote] = ACTIONS(2162), + [sym___single_quote] = ACTIONS(2162), + [sym___c_double_quote] = ACTIONS(2162), + [sym___c_single_quote] = ACTIONS(2162), + [sym___r_double_quote] = ACTIONS(2162), + [sym___r_single_quote] = ACTIONS(2162), }, [343] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(364), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2148), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [sym_type_parameters] = STATE(4151), + [sym_argument_list] = STATE(943), + [sym_or_block] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(2160), + [sym_identifier] = ACTIONS(2162), + [anon_sym_LF] = ACTIONS(2162), + [anon_sym_CR] = ACTIONS(2162), + [anon_sym_CR_LF] = ACTIONS(2162), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(1712), + [anon_sym_as] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_COMMA] = ACTIONS(2162), + [anon_sym_const] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_EQ] = ACTIONS(2162), + [anon_sym___global] = ACTIONS(2162), + [anon_sym_type] = ACTIONS(2162), + [anon_sym_PIPE] = ACTIONS(2162), + [anon_sym_fn] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(2162), + [anon_sym_DASH] = ACTIONS(2162), + [anon_sym_STAR] = ACTIONS(1722), + [anon_sym_SLASH] = ACTIONS(1722), + [anon_sym_PERCENT] = ACTIONS(1722), + [anon_sym_LT] = ACTIONS(2162), + [anon_sym_GT] = ACTIONS(2162), + [anon_sym_EQ_EQ] = ACTIONS(2162), + [anon_sym_BANG_EQ] = ACTIONS(2162), + [anon_sym_LT_EQ] = ACTIONS(2162), + [anon_sym_GT_EQ] = ACTIONS(2162), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_union] = ACTIONS(2162), + [anon_sym_pub] = ACTIONS(2162), + [anon_sym_mut] = ACTIONS(2162), + [anon_sym_enum] = ACTIONS(2162), + [anon_sym_interface] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2162), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_QMARK] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_go] = ACTIONS(2162), + [anon_sym_spawn] = ACTIONS(2162), + [anon_sym_json_DOTdecode] = ACTIONS(2162), + [anon_sym_LBRACK2] = ACTIONS(1736), + [anon_sym_TILDE] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(2162), + [anon_sym_AMP] = ACTIONS(1722), + [anon_sym_LT_DASH] = ACTIONS(2162), + [anon_sym_LT_LT] = ACTIONS(1722), + [anon_sym_GT_GT] = ACTIONS(1722), + [anon_sym_GT_GT_GT] = ACTIONS(1722), + [anon_sym_AMP_CARET] = ACTIONS(1722), + [anon_sym_AMP_AMP] = ACTIONS(2162), + [anon_sym_PIPE_PIPE] = ACTIONS(2162), + [anon_sym_or] = ACTIONS(2162), + [sym_none] = ACTIONS(2162), + [sym_true] = ACTIONS(2162), + [sym_false] = ACTIONS(2162), + [sym_nil] = ACTIONS(2162), + [anon_sym_QMARK_DOT] = ACTIONS(1712), + [anon_sym_POUND_LBRACK] = ACTIONS(1736), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_DOLLARif] = ACTIONS(2162), + [anon_sym_is] = ACTIONS(2162), + [anon_sym_BANGis] = ACTIONS(2162), + [anon_sym_in] = ACTIONS(2162), + [anon_sym_BANGin] = ACTIONS(2162), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_select] = ACTIONS(2162), + [anon_sym_STAR_EQ] = ACTIONS(2162), + [anon_sym_SLASH_EQ] = ACTIONS(2162), + [anon_sym_PERCENT_EQ] = ACTIONS(2162), + [anon_sym_LT_LT_EQ] = ACTIONS(2162), + [anon_sym_GT_GT_EQ] = ACTIONS(2162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2162), + [anon_sym_AMP_EQ] = ACTIONS(2162), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2162), + [anon_sym_PLUS_EQ] = ACTIONS(2162), + [anon_sym_DASH_EQ] = ACTIONS(2162), + [anon_sym_PIPE_EQ] = ACTIONS(2162), + [anon_sym_CARET_EQ] = ACTIONS(2162), + [anon_sym_COLON_EQ] = ACTIONS(2162), + [anon_sym_lock] = ACTIONS(2162), + [anon_sym_rlock] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_sql] = ACTIONS(2162), + [sym_int_literal] = ACTIONS(2162), + [sym_float_literal] = ACTIONS(2162), + [sym_rune_literal] = ACTIONS(2162), + [anon_sym_AT] = ACTIONS(2162), + [anon_sym_shared] = ACTIONS(2162), + [anon_sym_map_LBRACK] = ACTIONS(2162), + [anon_sym_chan] = ACTIONS(2162), + [anon_sym_thread] = ACTIONS(2162), + [anon_sym_atomic] = ACTIONS(2162), + [anon_sym_assert] = ACTIONS(2162), + [anon_sym_defer] = ACTIONS(2162), + [anon_sym_goto] = ACTIONS(2162), + [anon_sym_break] = ACTIONS(2162), + [anon_sym_continue] = ACTIONS(2162), + [anon_sym_return] = ACTIONS(2162), + [anon_sym_DOLLARfor] = ACTIONS(2162), + [anon_sym_for] = ACTIONS(2162), + [anon_sym_POUND] = ACTIONS(2162), + [anon_sym_asm] = ACTIONS(2162), + [anon_sym_AT_LBRACK] = ACTIONS(2162), + [sym___double_quote] = ACTIONS(2162), + [sym___single_quote] = ACTIONS(2162), + [sym___c_double_quote] = ACTIONS(2162), + [sym___c_single_quote] = ACTIONS(2162), + [sym___r_double_quote] = ACTIONS(2162), + [sym___r_single_quote] = ACTIONS(2162), }, [344] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(2225), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3670), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2150), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_RPAREN] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [345] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4418), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2152), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [346] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1328), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1322), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2154), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(2206), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [347] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4427), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1328), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1322), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(2208), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [348] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4446), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2660), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4531), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2158), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [349] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(2660), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4531), + [sym_identifier] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(2094), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2096), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [350] = { - [sym__expression] = STATE(2643), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3656), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4623), - [sym_identifier] = ACTIONS(2080), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1365), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1320), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(299), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(2210), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1348), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [351] = { - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3656), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4649), - [sym_identifier] = ACTIONS(2080), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4452), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [352] = { - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4649), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2832), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2832), + [sym_dec_expression] = STATE(2832), + [sym_or_block_expression] = STATE(2832), + [sym_option_propagation_expression] = STATE(2832), + [sym_result_propagation_expression] = STATE(2832), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2832), + [sym_spawn_expression] = STATE(2832), + [sym_parenthesized_expression] = STATE(2832), + [sym_call_expression] = STATE(2832), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2832), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2832), + [sym_receive_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_as_type_cast_expression] = STATE(2832), + [sym__max_group] = STATE(2832), + [sym_literal] = STATE(2832), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2832), + [sym_fixed_array_creation] = STATE(2832), + [sym_selector_expression] = STATE(2832), + [sym_index_expression] = STATE(2832), + [sym_slice_expression] = STATE(2832), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2832), + [sym_not_is_expression] = STATE(2832), + [sym_in_expression] = STATE(2832), + [sym_not_in_expression] = STATE(2832), + [sym_enum_fetch] = STATE(2832), + [sym_match_expression] = STATE(2757), + [sym_match_arm_type] = STATE(4239), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2832), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(3896), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(4237), + [sym_identifier] = ACTIONS(1091), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1109), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(1133), + [anon_sym_lock] = ACTIONS(1135), + [anon_sym_rlock] = ACTIONS(1135), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [353] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(2076), - [anon_sym___global] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1696), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(1696), - [anon_sym_GT_GT] = ACTIONS(1696), - [anon_sym_GT_GT_GT] = ACTIONS(1696), - [anon_sym_AMP_CARET] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_STAR_EQ] = ACTIONS(2076), - [anon_sym_SLASH_EQ] = ACTIONS(2076), - [anon_sym_PERCENT_EQ] = ACTIONS(2076), - [anon_sym_LT_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_GT_EQ] = ACTIONS(2076), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2076), - [anon_sym_AMP_EQ] = ACTIONS(2076), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2076), - [anon_sym_PLUS_EQ] = ACTIONS(2076), - [anon_sym_DASH_EQ] = ACTIONS(2076), - [anon_sym_PIPE_EQ] = ACTIONS(2076), - [anon_sym_CARET_EQ] = ACTIONS(2076), - [anon_sym_COLON_EQ] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [anon_sym_assert] = ACTIONS(2076), - [anon_sym_defer] = ACTIONS(2076), - [anon_sym_goto] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_DOLLARfor] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_asm] = ACTIONS(2076), - [anon_sym_AT_LBRACK] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4643), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(2214), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [354] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(2162), - [sym_identifier] = ACTIONS(2164), - [anon_sym_LF] = ACTIONS(2164), - [anon_sym_CR] = ACTIONS(2164), - [anon_sym_CR_LF] = ACTIONS(2164), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(2164), - [anon_sym_LBRACE] = ACTIONS(2164), - [anon_sym_COMMA] = ACTIONS(2164), - [anon_sym_const] = ACTIONS(2164), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(2164), - [anon_sym___global] = ACTIONS(2164), - [anon_sym_type] = ACTIONS(2164), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_fn] = ACTIONS(2164), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_STAR] = ACTIONS(2164), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_PERCENT] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_EQ_EQ] = ACTIONS(2164), - [anon_sym_BANG_EQ] = ACTIONS(2164), - [anon_sym_LT_EQ] = ACTIONS(2164), - [anon_sym_GT_EQ] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(2164), - [anon_sym_union] = ACTIONS(2164), - [anon_sym_pub] = ACTIONS(2164), - [anon_sym_mut] = ACTIONS(2164), - [anon_sym_enum] = ACTIONS(2164), - [anon_sym_interface] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(2164), - [anon_sym_DASH_DASH] = ACTIONS(2164), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(2164), - [anon_sym_spawn] = ACTIONS(2164), - [anon_sym_json_DOTdecode] = ACTIONS(2164), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(2164), - [anon_sym_CARET] = ACTIONS(2164), - [anon_sym_AMP] = ACTIONS(2164), - [anon_sym_LT_DASH] = ACTIONS(2164), - [anon_sym_LT_LT] = ACTIONS(2164), - [anon_sym_GT_GT] = ACTIONS(2164), - [anon_sym_GT_GT_GT] = ACTIONS(2164), - [anon_sym_AMP_CARET] = ACTIONS(2164), - [anon_sym_AMP_AMP] = ACTIONS(2164), - [anon_sym_PIPE_PIPE] = ACTIONS(2164), - [anon_sym_or] = ACTIONS(2164), - [sym_none] = ACTIONS(2164), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), - [sym_nil] = ACTIONS(2164), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(2164), - [anon_sym_DOLLARif] = ACTIONS(2164), - [anon_sym_is] = ACTIONS(2164), - [anon_sym_BANGis] = ACTIONS(2164), - [anon_sym_in] = ACTIONS(2164), - [anon_sym_BANGin] = ACTIONS(2164), - [anon_sym_match] = ACTIONS(2164), - [anon_sym_select] = ACTIONS(2164), - [anon_sym_STAR_EQ] = ACTIONS(2164), - [anon_sym_SLASH_EQ] = ACTIONS(2164), - [anon_sym_PERCENT_EQ] = ACTIONS(2164), - [anon_sym_LT_LT_EQ] = ACTIONS(2164), - [anon_sym_GT_GT_EQ] = ACTIONS(2164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2164), - [anon_sym_AMP_EQ] = ACTIONS(2164), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2164), - [anon_sym_PLUS_EQ] = ACTIONS(2164), - [anon_sym_DASH_EQ] = ACTIONS(2164), - [anon_sym_PIPE_EQ] = ACTIONS(2164), - [anon_sym_CARET_EQ] = ACTIONS(2164), - [anon_sym_COLON_EQ] = ACTIONS(2164), - [anon_sym_lock] = ACTIONS(2164), - [anon_sym_rlock] = ACTIONS(2164), - [anon_sym_unsafe] = ACTIONS(2164), - [anon_sym_sql] = ACTIONS(2164), - [sym_int_literal] = ACTIONS(2164), - [sym_float_literal] = ACTIONS(2164), - [sym_rune_literal] = ACTIONS(2164), - [anon_sym_AT] = ACTIONS(2164), - [anon_sym_shared] = ACTIONS(2164), - [anon_sym_map_LBRACK] = ACTIONS(2164), - [anon_sym_chan] = ACTIONS(2164), - [anon_sym_thread] = ACTIONS(2164), - [anon_sym_atomic] = ACTIONS(2164), - [anon_sym_assert] = ACTIONS(2164), - [anon_sym_defer] = ACTIONS(2164), - [anon_sym_goto] = ACTIONS(2164), - [anon_sym_break] = ACTIONS(2164), - [anon_sym_continue] = ACTIONS(2164), - [anon_sym_return] = ACTIONS(2164), - [anon_sym_DOLLARfor] = ACTIONS(2164), - [anon_sym_for] = ACTIONS(2164), - [anon_sym_POUND] = ACTIONS(2164), - [anon_sym_asm] = ACTIONS(2164), - [anon_sym_AT_LBRACK] = ACTIONS(2164), - [sym___double_quote] = ACTIONS(2164), - [sym___single_quote] = ACTIONS(2164), - [sym___c_double_quote] = ACTIONS(2164), - [sym___c_single_quote] = ACTIONS(2164), - [sym___r_double_quote] = ACTIONS(2164), - [sym___r_single_quote] = ACTIONS(2164), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1365), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1320), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(315), + [sym_identifier] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(2216), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1348), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [355] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4385), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2638), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4552), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [356] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4490), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4418), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [357] = { - [sym__expression] = STATE(2643), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4623), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2657), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4690), + [sym_identifier] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(2094), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2096), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [358] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(364), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(2638), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4552), + [sym_identifier] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2168), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(2094), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2096), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [359] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4421), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1365), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1320), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2170), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(2220), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1348), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [360] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4511), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2657), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4690), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [361] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [sym_type_parameters] = STATE(4151), + [sym_argument_list] = STATE(943), + [sym_or_block] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(2222), + [sym_identifier] = ACTIONS(2224), + [anon_sym_LF] = ACTIONS(2224), + [anon_sym_CR] = ACTIONS(2224), + [anon_sym_CR_LF] = ACTIONS(2224), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(1712), + [anon_sym_as] = ACTIONS(2224), + [anon_sym_LBRACE] = ACTIONS(2224), + [anon_sym_COMMA] = ACTIONS(2224), + [anon_sym_const] = ACTIONS(2224), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_EQ] = ACTIONS(2224), + [anon_sym___global] = ACTIONS(2224), + [anon_sym_type] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_fn] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_SLASH] = ACTIONS(2224), + [anon_sym_PERCENT] = ACTIONS(2224), + [anon_sym_LT] = ACTIONS(2224), + [anon_sym_GT] = ACTIONS(2224), + [anon_sym_EQ_EQ] = ACTIONS(2224), + [anon_sym_BANG_EQ] = ACTIONS(2224), + [anon_sym_LT_EQ] = ACTIONS(2224), + [anon_sym_GT_EQ] = ACTIONS(2224), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_struct] = ACTIONS(2224), + [anon_sym_union] = ACTIONS(2224), + [anon_sym_pub] = ACTIONS(2224), + [anon_sym_mut] = ACTIONS(2224), + [anon_sym_enum] = ACTIONS(2224), + [anon_sym_interface] = ACTIONS(2224), + [anon_sym_PLUS_PLUS] = ACTIONS(2224), + [anon_sym_DASH_DASH] = ACTIONS(2224), + [anon_sym_QMARK] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_go] = ACTIONS(2224), + [anon_sym_spawn] = ACTIONS(2224), + [anon_sym_json_DOTdecode] = ACTIONS(2224), + [anon_sym_LBRACK2] = ACTIONS(1736), + [anon_sym_TILDE] = ACTIONS(2224), + [anon_sym_CARET] = ACTIONS(2224), + [anon_sym_AMP] = ACTIONS(2224), + [anon_sym_LT_DASH] = ACTIONS(2224), + [anon_sym_LT_LT] = ACTIONS(2224), + [anon_sym_GT_GT] = ACTIONS(2224), + [anon_sym_GT_GT_GT] = ACTIONS(2224), + [anon_sym_AMP_CARET] = ACTIONS(2224), + [anon_sym_AMP_AMP] = ACTIONS(2224), + [anon_sym_PIPE_PIPE] = ACTIONS(2224), + [anon_sym_or] = ACTIONS(2224), + [sym_none] = ACTIONS(2224), + [sym_true] = ACTIONS(2224), + [sym_false] = ACTIONS(2224), + [sym_nil] = ACTIONS(2224), + [anon_sym_QMARK_DOT] = ACTIONS(1712), + [anon_sym_POUND_LBRACK] = ACTIONS(1736), + [anon_sym_if] = ACTIONS(2224), + [anon_sym_DOLLARif] = ACTIONS(2224), + [anon_sym_is] = ACTIONS(2224), + [anon_sym_BANGis] = ACTIONS(2224), + [anon_sym_in] = ACTIONS(2224), + [anon_sym_BANGin] = ACTIONS(2224), + [anon_sym_match] = ACTIONS(2224), + [anon_sym_select] = ACTIONS(2224), + [anon_sym_STAR_EQ] = ACTIONS(2224), + [anon_sym_SLASH_EQ] = ACTIONS(2224), + [anon_sym_PERCENT_EQ] = ACTIONS(2224), + [anon_sym_LT_LT_EQ] = ACTIONS(2224), + [anon_sym_GT_GT_EQ] = ACTIONS(2224), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2224), + [anon_sym_AMP_EQ] = ACTIONS(2224), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2224), + [anon_sym_PLUS_EQ] = ACTIONS(2224), + [anon_sym_DASH_EQ] = ACTIONS(2224), + [anon_sym_PIPE_EQ] = ACTIONS(2224), + [anon_sym_CARET_EQ] = ACTIONS(2224), + [anon_sym_COLON_EQ] = ACTIONS(2224), + [anon_sym_lock] = ACTIONS(2224), + [anon_sym_rlock] = ACTIONS(2224), + [anon_sym_unsafe] = ACTIONS(2224), + [anon_sym_sql] = ACTIONS(2224), + [sym_int_literal] = ACTIONS(2224), + [sym_float_literal] = ACTIONS(2224), + [sym_rune_literal] = ACTIONS(2224), + [anon_sym_AT] = ACTIONS(2224), + [anon_sym_shared] = ACTIONS(2224), + [anon_sym_map_LBRACK] = ACTIONS(2224), + [anon_sym_chan] = ACTIONS(2224), + [anon_sym_thread] = ACTIONS(2224), + [anon_sym_atomic] = ACTIONS(2224), + [anon_sym_assert] = ACTIONS(2224), + [anon_sym_defer] = ACTIONS(2224), + [anon_sym_goto] = ACTIONS(2224), + [anon_sym_break] = ACTIONS(2224), + [anon_sym_continue] = ACTIONS(2224), + [anon_sym_return] = ACTIONS(2224), + [anon_sym_DOLLARfor] = ACTIONS(2224), + [anon_sym_for] = ACTIONS(2224), + [anon_sym_POUND] = ACTIONS(2224), + [anon_sym_asm] = ACTIONS(2224), + [anon_sym_AT_LBRACK] = ACTIONS(2224), + [sym___double_quote] = ACTIONS(2224), + [sym___single_quote] = ACTIONS(2224), + [sym___c_double_quote] = ACTIONS(2224), + [sym___c_single_quote] = ACTIONS(2224), + [sym___r_double_quote] = ACTIONS(2224), + [sym___r_single_quote] = ACTIONS(2224), }, [362] = { - [sym__expression] = STATE(958), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(749), - [sym_mutable_expression] = STATE(1422), - [sym_expression_list] = STATE(1519), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1328), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1322), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(2226), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [363] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(2208), - [sym_identifier] = ACTIONS(2210), - [anon_sym_LF] = ACTIONS(2210), - [anon_sym_CR] = ACTIONS(2210), - [anon_sym_CR_LF] = ACTIONS(2210), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(1688), - [anon_sym_LBRACE] = ACTIONS(2210), - [anon_sym_COMMA] = ACTIONS(2210), - [anon_sym_const] = ACTIONS(2210), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(2210), - [anon_sym___global] = ACTIONS(2210), - [anon_sym_type] = ACTIONS(2210), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_fn] = ACTIONS(2210), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(2210), - [anon_sym_union] = ACTIONS(2210), - [anon_sym_pub] = ACTIONS(2210), - [anon_sym_mut] = ACTIONS(2210), - [anon_sym_enum] = ACTIONS(2210), - [anon_sym_interface] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DASH_DASH] = ACTIONS(1704), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(2210), - [anon_sym_spawn] = ACTIONS(2210), - [anon_sym_json_DOTdecode] = ACTIONS(2210), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(2210), - [anon_sym_CARET] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1696), - [anon_sym_LT_DASH] = ACTIONS(2210), - [anon_sym_LT_LT] = ACTIONS(1696), - [anon_sym_GT_GT] = ACTIONS(1696), - [anon_sym_GT_GT_GT] = ACTIONS(1696), - [anon_sym_AMP_CARET] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1712), - [anon_sym_PIPE_PIPE] = ACTIONS(1714), - [anon_sym_or] = ACTIONS(1716), - [sym_none] = ACTIONS(2210), - [sym_true] = ACTIONS(2210), - [sym_false] = ACTIONS(2210), - [sym_nil] = ACTIONS(2210), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(2210), - [anon_sym_DOLLARif] = ACTIONS(2210), - [anon_sym_is] = ACTIONS(1718), - [anon_sym_BANGis] = ACTIONS(1720), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_BANGin] = ACTIONS(1724), - [anon_sym_match] = ACTIONS(2210), - [anon_sym_select] = ACTIONS(2210), - [anon_sym_STAR_EQ] = ACTIONS(2210), - [anon_sym_SLASH_EQ] = ACTIONS(2210), - [anon_sym_PERCENT_EQ] = ACTIONS(2210), - [anon_sym_LT_LT_EQ] = ACTIONS(2210), - [anon_sym_GT_GT_EQ] = ACTIONS(2210), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2210), - [anon_sym_AMP_EQ] = ACTIONS(2210), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2210), - [anon_sym_PLUS_EQ] = ACTIONS(2210), - [anon_sym_DASH_EQ] = ACTIONS(2210), - [anon_sym_PIPE_EQ] = ACTIONS(2210), - [anon_sym_CARET_EQ] = ACTIONS(2210), - [anon_sym_COLON_EQ] = ACTIONS(2210), - [anon_sym_lock] = ACTIONS(2210), - [anon_sym_rlock] = ACTIONS(2210), - [anon_sym_unsafe] = ACTIONS(2210), - [anon_sym_sql] = ACTIONS(2210), - [sym_int_literal] = ACTIONS(2210), - [sym_float_literal] = ACTIONS(2210), - [sym_rune_literal] = ACTIONS(2210), - [anon_sym_AT] = ACTIONS(2210), - [anon_sym_shared] = ACTIONS(2210), - [anon_sym_map_LBRACK] = ACTIONS(2210), - [anon_sym_chan] = ACTIONS(2210), - [anon_sym_thread] = ACTIONS(2210), - [anon_sym_atomic] = ACTIONS(2210), - [anon_sym_assert] = ACTIONS(2210), - [anon_sym_defer] = ACTIONS(2210), - [anon_sym_goto] = ACTIONS(2210), - [anon_sym_break] = ACTIONS(2210), - [anon_sym_continue] = ACTIONS(2210), - [anon_sym_return] = ACTIONS(2210), - [anon_sym_DOLLARfor] = ACTIONS(2210), - [anon_sym_for] = ACTIONS(2210), - [anon_sym_POUND] = ACTIONS(2210), - [anon_sym_asm] = ACTIONS(2210), - [anon_sym_AT_LBRACK] = ACTIONS(2210), - [sym___double_quote] = ACTIONS(2210), - [sym___single_quote] = ACTIONS(2210), - [sym___c_double_quote] = ACTIONS(2210), - [sym___c_single_quote] = ACTIONS(2210), - [sym___r_double_quote] = ACTIONS(2210), - [sym___r_single_quote] = ACTIONS(2210), - }, - [364] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4457), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2212), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, - [365] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4448), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [364] = { + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4431), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), + }, + [365] = { + [sym_type_parameters] = STATE(4151), + [sym_argument_list] = STATE(943), + [sym_or_block] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(2232), + [sym_identifier] = ACTIONS(2234), + [anon_sym_LF] = ACTIONS(2234), + [anon_sym_CR] = ACTIONS(2234), + [anon_sym_CR_LF] = ACTIONS(2234), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(1712), + [anon_sym_as] = ACTIONS(1714), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_COMMA] = ACTIONS(2234), + [anon_sym_const] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_EQ] = ACTIONS(2234), + [anon_sym___global] = ACTIONS(2234), + [anon_sym_type] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(1720), + [anon_sym_fn] = ACTIONS(2234), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_STAR] = ACTIONS(1722), + [anon_sym_SLASH] = ACTIONS(1722), + [anon_sym_PERCENT] = ACTIONS(1722), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_EQ_EQ] = ACTIONS(1724), + [anon_sym_BANG_EQ] = ACTIONS(1724), + [anon_sym_LT_EQ] = ACTIONS(1724), + [anon_sym_GT_EQ] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_struct] = ACTIONS(2234), + [anon_sym_union] = ACTIONS(2234), + [anon_sym_pub] = ACTIONS(2234), + [anon_sym_mut] = ACTIONS(2234), + [anon_sym_enum] = ACTIONS(2234), + [anon_sym_interface] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(1728), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_QMARK] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_go] = ACTIONS(2234), + [anon_sym_spawn] = ACTIONS(2234), + [anon_sym_json_DOTdecode] = ACTIONS(2234), + [anon_sym_LBRACK2] = ACTIONS(1736), + [anon_sym_TILDE] = ACTIONS(2234), + [anon_sym_CARET] = ACTIONS(1720), + [anon_sym_AMP] = ACTIONS(1722), + [anon_sym_LT_DASH] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(1722), + [anon_sym_GT_GT] = ACTIONS(1722), + [anon_sym_GT_GT_GT] = ACTIONS(1722), + [anon_sym_AMP_CARET] = ACTIONS(1722), + [anon_sym_AMP_AMP] = ACTIONS(1738), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_or] = ACTIONS(1742), + [sym_none] = ACTIONS(2234), + [sym_true] = ACTIONS(2234), + [sym_false] = ACTIONS(2234), + [sym_nil] = ACTIONS(2234), + [anon_sym_QMARK_DOT] = ACTIONS(1712), + [anon_sym_POUND_LBRACK] = ACTIONS(1736), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_DOLLARif] = ACTIONS(2234), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1748), + [anon_sym_BANGin] = ACTIONS(1750), + [anon_sym_match] = ACTIONS(2234), + [anon_sym_select] = ACTIONS(2234), + [anon_sym_STAR_EQ] = ACTIONS(2234), + [anon_sym_SLASH_EQ] = ACTIONS(2234), + [anon_sym_PERCENT_EQ] = ACTIONS(2234), + [anon_sym_LT_LT_EQ] = ACTIONS(2234), + [anon_sym_GT_GT_EQ] = ACTIONS(2234), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2234), + [anon_sym_AMP_EQ] = ACTIONS(2234), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2234), + [anon_sym_PLUS_EQ] = ACTIONS(2234), + [anon_sym_DASH_EQ] = ACTIONS(2234), + [anon_sym_PIPE_EQ] = ACTIONS(2234), + [anon_sym_CARET_EQ] = ACTIONS(2234), + [anon_sym_COLON_EQ] = ACTIONS(2234), + [anon_sym_lock] = ACTIONS(2234), + [anon_sym_rlock] = ACTIONS(2234), + [anon_sym_unsafe] = ACTIONS(2234), + [anon_sym_sql] = ACTIONS(2234), + [sym_int_literal] = ACTIONS(2234), + [sym_float_literal] = ACTIONS(2234), + [sym_rune_literal] = ACTIONS(2234), + [anon_sym_AT] = ACTIONS(2234), + [anon_sym_shared] = ACTIONS(2234), + [anon_sym_map_LBRACK] = ACTIONS(2234), + [anon_sym_chan] = ACTIONS(2234), + [anon_sym_thread] = ACTIONS(2234), + [anon_sym_atomic] = ACTIONS(2234), + [anon_sym_assert] = ACTIONS(2234), + [anon_sym_defer] = ACTIONS(2234), + [anon_sym_goto] = ACTIONS(2234), + [anon_sym_break] = ACTIONS(2234), + [anon_sym_continue] = ACTIONS(2234), + [anon_sym_return] = ACTIONS(2234), + [anon_sym_DOLLARfor] = ACTIONS(2234), + [anon_sym_for] = ACTIONS(2234), + [anon_sym_POUND] = ACTIONS(2234), + [anon_sym_asm] = ACTIONS(2234), + [anon_sym_AT_LBRACK] = ACTIONS(2234), + [sym___double_quote] = ACTIONS(2234), + [sym___single_quote] = ACTIONS(2234), + [sym___c_double_quote] = ACTIONS(2234), + [sym___c_single_quote] = ACTIONS(2234), + [sym___r_double_quote] = ACTIONS(2234), + [sym___r_single_quote] = ACTIONS(2234), }, [366] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(2651), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4702), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2216), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [367] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(2218), - [sym_identifier] = ACTIONS(2220), - [anon_sym_LF] = ACTIONS(2220), - [anon_sym_CR] = ACTIONS(2220), - [anon_sym_CR_LF] = ACTIONS(2220), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(1688), - [anon_sym_LBRACE] = ACTIONS(2220), - [anon_sym_COMMA] = ACTIONS(2220), - [anon_sym_const] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(2220), - [anon_sym___global] = ACTIONS(2220), - [anon_sym_type] = ACTIONS(2220), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_fn] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(2220), - [anon_sym_union] = ACTIONS(2220), - [anon_sym_pub] = ACTIONS(2220), - [anon_sym_mut] = ACTIONS(2220), - [anon_sym_enum] = ACTIONS(2220), - [anon_sym_interface] = ACTIONS(2220), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DASH_DASH] = ACTIONS(1704), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(2220), - [anon_sym_spawn] = ACTIONS(2220), - [anon_sym_json_DOTdecode] = ACTIONS(2220), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(2220), - [anon_sym_CARET] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1696), - [anon_sym_LT_DASH] = ACTIONS(2220), - [anon_sym_LT_LT] = ACTIONS(1696), - [anon_sym_GT_GT] = ACTIONS(1696), - [anon_sym_GT_GT_GT] = ACTIONS(1696), - [anon_sym_AMP_CARET] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1712), - [anon_sym_PIPE_PIPE] = ACTIONS(1714), - [anon_sym_or] = ACTIONS(1716), - [sym_none] = ACTIONS(2220), - [sym_true] = ACTIONS(2220), - [sym_false] = ACTIONS(2220), - [sym_nil] = ACTIONS(2220), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(2220), - [anon_sym_DOLLARif] = ACTIONS(2220), - [anon_sym_is] = ACTIONS(1718), - [anon_sym_BANGis] = ACTIONS(1720), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_BANGin] = ACTIONS(1724), - [anon_sym_match] = ACTIONS(2220), - [anon_sym_select] = ACTIONS(2220), - [anon_sym_STAR_EQ] = ACTIONS(2220), - [anon_sym_SLASH_EQ] = ACTIONS(2220), - [anon_sym_PERCENT_EQ] = ACTIONS(2220), - [anon_sym_LT_LT_EQ] = ACTIONS(2220), - [anon_sym_GT_GT_EQ] = ACTIONS(2220), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2220), - [anon_sym_AMP_EQ] = ACTIONS(2220), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2220), - [anon_sym_PLUS_EQ] = ACTIONS(2220), - [anon_sym_DASH_EQ] = ACTIONS(2220), - [anon_sym_PIPE_EQ] = ACTIONS(2220), - [anon_sym_CARET_EQ] = ACTIONS(2220), - [anon_sym_COLON_EQ] = ACTIONS(2220), - [anon_sym_lock] = ACTIONS(2220), - [anon_sym_rlock] = ACTIONS(2220), - [anon_sym_unsafe] = ACTIONS(2220), - [anon_sym_sql] = ACTIONS(2220), - [sym_int_literal] = ACTIONS(2220), - [sym_float_literal] = ACTIONS(2220), - [sym_rune_literal] = ACTIONS(2220), - [anon_sym_AT] = ACTIONS(2220), - [anon_sym_shared] = ACTIONS(2220), - [anon_sym_map_LBRACK] = ACTIONS(2220), - [anon_sym_chan] = ACTIONS(2220), - [anon_sym_thread] = ACTIONS(2220), - [anon_sym_atomic] = ACTIONS(2220), - [anon_sym_assert] = ACTIONS(2220), - [anon_sym_defer] = ACTIONS(2220), - [anon_sym_goto] = ACTIONS(2220), - [anon_sym_break] = ACTIONS(2220), - [anon_sym_continue] = ACTIONS(2220), - [anon_sym_return] = ACTIONS(2220), - [anon_sym_DOLLARfor] = ACTIONS(2220), - [anon_sym_for] = ACTIONS(2220), - [anon_sym_POUND] = ACTIONS(2220), - [anon_sym_asm] = ACTIONS(2220), - [anon_sym_AT_LBRACK] = ACTIONS(2220), - [sym___double_quote] = ACTIONS(2220), - [sym___single_quote] = ACTIONS(2220), - [sym___c_double_quote] = ACTIONS(2220), - [sym___c_single_quote] = ACTIONS(2220), - [sym___r_double_quote] = ACTIONS(2220), - [sym___r_single_quote] = ACTIONS(2220), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1328), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1322), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(2236), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [368] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4532), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2654), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4665), + [sym_identifier] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(2094), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2096), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [369] = { - [sym__expression] = STATE(958), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(749), - [sym_mutable_expression] = STATE(1422), - [sym_expression_list] = STATE(1522), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [sym__expression] = STATE(2664), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4598), + [sym_identifier] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(2094), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2096), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [370] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4553), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2654), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4665), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2224), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [371] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1328), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1322), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2226), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(2238), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [372] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(2639), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4566), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(1189), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [373] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(2228), - [sym_identifier] = ACTIONS(2230), - [anon_sym_LF] = ACTIONS(2230), - [anon_sym_CR] = ACTIONS(2230), - [anon_sym_CR_LF] = ACTIONS(2230), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_COMMA] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(2230), - [anon_sym___global] = ACTIONS(2230), - [anon_sym_type] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_fn] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2230), - [anon_sym_EQ_EQ] = ACTIONS(2230), - [anon_sym_BANG_EQ] = ACTIONS(2230), - [anon_sym_LT_EQ] = ACTIONS(2230), - [anon_sym_GT_EQ] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(2230), - [anon_sym_union] = ACTIONS(2230), - [anon_sym_pub] = ACTIONS(2230), - [anon_sym_mut] = ACTIONS(2230), - [anon_sym_enum] = ACTIONS(2230), - [anon_sym_interface] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(2230), - [anon_sym_spawn] = ACTIONS(2230), - [anon_sym_json_DOTdecode] = ACTIONS(2230), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_CARET] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_LT_DASH] = ACTIONS(2230), - [anon_sym_LT_LT] = ACTIONS(2230), - [anon_sym_GT_GT] = ACTIONS(2230), - [anon_sym_GT_GT_GT] = ACTIONS(2230), - [anon_sym_AMP_CARET] = ACTIONS(2230), - [anon_sym_AMP_AMP] = ACTIONS(2230), - [anon_sym_PIPE_PIPE] = ACTIONS(2230), - [anon_sym_or] = ACTIONS(2230), - [sym_none] = ACTIONS(2230), - [sym_true] = ACTIONS(2230), - [sym_false] = ACTIONS(2230), - [sym_nil] = ACTIONS(2230), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_DOLLARif] = ACTIONS(2230), - [anon_sym_is] = ACTIONS(2230), - [anon_sym_BANGis] = ACTIONS(2230), - [anon_sym_in] = ACTIONS(2230), - [anon_sym_BANGin] = ACTIONS(2230), - [anon_sym_match] = ACTIONS(2230), - [anon_sym_select] = ACTIONS(2230), - [anon_sym_STAR_EQ] = ACTIONS(2230), - [anon_sym_SLASH_EQ] = ACTIONS(2230), - [anon_sym_PERCENT_EQ] = ACTIONS(2230), - [anon_sym_LT_LT_EQ] = ACTIONS(2230), - [anon_sym_GT_GT_EQ] = ACTIONS(2230), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2230), - [anon_sym_AMP_EQ] = ACTIONS(2230), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2230), - [anon_sym_PLUS_EQ] = ACTIONS(2230), - [anon_sym_DASH_EQ] = ACTIONS(2230), - [anon_sym_PIPE_EQ] = ACTIONS(2230), - [anon_sym_CARET_EQ] = ACTIONS(2230), - [anon_sym_COLON_EQ] = ACTIONS(2230), - [anon_sym_lock] = ACTIONS(2230), - [anon_sym_rlock] = ACTIONS(2230), - [anon_sym_unsafe] = ACTIONS(2230), - [anon_sym_sql] = ACTIONS(2230), - [sym_int_literal] = ACTIONS(2230), - [sym_float_literal] = ACTIONS(2230), - [sym_rune_literal] = ACTIONS(2230), - [anon_sym_AT] = ACTIONS(2230), - [anon_sym_shared] = ACTIONS(2230), - [anon_sym_map_LBRACK] = ACTIONS(2230), - [anon_sym_chan] = ACTIONS(2230), - [anon_sym_thread] = ACTIONS(2230), - [anon_sym_atomic] = ACTIONS(2230), - [anon_sym_assert] = ACTIONS(2230), - [anon_sym_defer] = ACTIONS(2230), - [anon_sym_goto] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_DOLLARfor] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_POUND] = ACTIONS(2230), - [anon_sym_asm] = ACTIONS(2230), - [anon_sym_AT_LBRACK] = ACTIONS(2230), - [sym___double_quote] = ACTIONS(2230), - [sym___single_quote] = ACTIONS(2230), - [sym___c_double_quote] = ACTIONS(2230), - [sym___c_single_quote] = ACTIONS(2230), - [sym___r_double_quote] = ACTIONS(2230), - [sym___r_single_quote] = ACTIONS(2230), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1365), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1320), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(298), + [sym_identifier] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(2240), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1348), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [374] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(2639), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4566), + [sym_identifier] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2232), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(2094), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2096), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [375] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(2234), + [sym__expression] = STATE(2629), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(718), + [sym_mutable_expression] = STATE(3916), + [sym_expression_list] = STATE(4154), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_fn] = ACTIONS(2246), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2252), - [anon_sym_RBRACK] = ACTIONS(2255), - [anon_sym_struct] = ACTIONS(2257), - [anon_sym_mut] = ACTIONS(2260), - [anon_sym_QMARK] = ACTIONS(2263), - [anon_sym_BANG] = ACTIONS(2266), - [anon_sym_go] = ACTIONS(2269), - [anon_sym_spawn] = ACTIONS(2272), - [anon_sym_json_DOTdecode] = ACTIONS(2275), - [anon_sym_LBRACK2] = ACTIONS(2278), - [anon_sym_TILDE] = ACTIONS(2249), - [anon_sym_CARET] = ACTIONS(2249), - [anon_sym_AMP] = ACTIONS(2281), - [anon_sym_LT_DASH] = ACTIONS(2284), - [sym_none] = ACTIONS(2287), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_nil] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2290), - [anon_sym_DOLLARif] = ACTIONS(2293), - [anon_sym_match] = ACTIONS(2296), - [anon_sym_select] = ACTIONS(2299), - [anon_sym_lock] = ACTIONS(2302), - [anon_sym_rlock] = ACTIONS(2302), - [anon_sym_unsafe] = ACTIONS(2305), - [anon_sym_sql] = ACTIONS(2308), - [sym_int_literal] = ACTIONS(2287), - [sym_float_literal] = ACTIONS(2311), - [sym_rune_literal] = ACTIONS(2311), - [anon_sym_AT] = ACTIONS(2314), - [anon_sym_shared] = ACTIONS(2317), - [anon_sym_map_LBRACK] = ACTIONS(2320), - [anon_sym_chan] = ACTIONS(2323), - [anon_sym_thread] = ACTIONS(2326), - [anon_sym_atomic] = ACTIONS(2329), - [sym___double_quote] = ACTIONS(2332), - [sym___single_quote] = ACTIONS(2335), - [sym___c_double_quote] = ACTIONS(2338), - [sym___c_single_quote] = ACTIONS(2341), - [sym___r_double_quote] = ACTIONS(2344), - [sym___r_single_quote] = ACTIONS(2347), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_go] = ACTIONS(2068), + [anon_sym_spawn] = ACTIONS(2070), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_CARET] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_LT_DASH] = ACTIONS(2076), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2078), + [anon_sym_lock] = ACTIONS(2080), + [anon_sym_rlock] = ACTIONS(2080), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [376] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4532), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4155), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [377] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4553), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1365), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1320), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(367), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2352), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(2242), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1348), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [378] = { - [sym__expression] = STATE(2658), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4730), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [sym_type_parameters] = STATE(4151), + [sym_argument_list] = STATE(943), + [sym_or_block] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(2244), + [sym_identifier] = ACTIONS(2246), + [anon_sym_LF] = ACTIONS(2246), + [anon_sym_CR] = ACTIONS(2246), + [anon_sym_CR_LF] = ACTIONS(2246), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(1712), + [anon_sym_as] = ACTIONS(2246), + [anon_sym_LBRACE] = ACTIONS(2246), + [anon_sym_COMMA] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2246), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_EQ] = ACTIONS(2246), + [anon_sym___global] = ACTIONS(2246), + [anon_sym_type] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2246), + [anon_sym_fn] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2246), + [anon_sym_SLASH] = ACTIONS(2246), + [anon_sym_PERCENT] = ACTIONS(2246), + [anon_sym_LT] = ACTIONS(2246), + [anon_sym_GT] = ACTIONS(2246), + [anon_sym_EQ_EQ] = ACTIONS(2246), + [anon_sym_BANG_EQ] = ACTIONS(2246), + [anon_sym_LT_EQ] = ACTIONS(2246), + [anon_sym_GT_EQ] = ACTIONS(2246), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_struct] = ACTIONS(2246), + [anon_sym_union] = ACTIONS(2246), + [anon_sym_pub] = ACTIONS(2246), + [anon_sym_mut] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_interface] = ACTIONS(2246), + [anon_sym_PLUS_PLUS] = ACTIONS(2246), + [anon_sym_DASH_DASH] = ACTIONS(2246), + [anon_sym_QMARK] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_go] = ACTIONS(2246), + [anon_sym_spawn] = ACTIONS(2246), + [anon_sym_json_DOTdecode] = ACTIONS(2246), + [anon_sym_LBRACK2] = ACTIONS(1736), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(2246), + [anon_sym_LT_LT] = ACTIONS(2246), + [anon_sym_GT_GT] = ACTIONS(2246), + [anon_sym_GT_GT_GT] = ACTIONS(2246), + [anon_sym_AMP_CARET] = ACTIONS(2246), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE_PIPE] = ACTIONS(2246), + [anon_sym_or] = ACTIONS(2246), + [sym_none] = ACTIONS(2246), + [sym_true] = ACTIONS(2246), + [sym_false] = ACTIONS(2246), + [sym_nil] = ACTIONS(2246), + [anon_sym_QMARK_DOT] = ACTIONS(1712), + [anon_sym_POUND_LBRACK] = ACTIONS(1736), + [anon_sym_if] = ACTIONS(2246), + [anon_sym_DOLLARif] = ACTIONS(2246), + [anon_sym_is] = ACTIONS(2246), + [anon_sym_BANGis] = ACTIONS(2246), + [anon_sym_in] = ACTIONS(2246), + [anon_sym_BANGin] = ACTIONS(2246), + [anon_sym_match] = ACTIONS(2246), + [anon_sym_select] = ACTIONS(2246), + [anon_sym_STAR_EQ] = ACTIONS(2246), + [anon_sym_SLASH_EQ] = ACTIONS(2246), + [anon_sym_PERCENT_EQ] = ACTIONS(2246), + [anon_sym_LT_LT_EQ] = ACTIONS(2246), + [anon_sym_GT_GT_EQ] = ACTIONS(2246), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2246), + [anon_sym_AMP_EQ] = ACTIONS(2246), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2246), + [anon_sym_PLUS_EQ] = ACTIONS(2246), + [anon_sym_DASH_EQ] = ACTIONS(2246), + [anon_sym_PIPE_EQ] = ACTIONS(2246), + [anon_sym_CARET_EQ] = ACTIONS(2246), + [anon_sym_COLON_EQ] = ACTIONS(2246), + [anon_sym_lock] = ACTIONS(2246), + [anon_sym_rlock] = ACTIONS(2246), + [anon_sym_unsafe] = ACTIONS(2246), + [anon_sym_sql] = ACTIONS(2246), + [sym_int_literal] = ACTIONS(2246), + [sym_float_literal] = ACTIONS(2246), + [sym_rune_literal] = ACTIONS(2246), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_shared] = ACTIONS(2246), + [anon_sym_map_LBRACK] = ACTIONS(2246), + [anon_sym_chan] = ACTIONS(2246), + [anon_sym_thread] = ACTIONS(2246), + [anon_sym_atomic] = ACTIONS(2246), + [anon_sym_assert] = ACTIONS(2246), + [anon_sym_defer] = ACTIONS(2246), + [anon_sym_goto] = ACTIONS(2246), + [anon_sym_break] = ACTIONS(2246), + [anon_sym_continue] = ACTIONS(2246), + [anon_sym_return] = ACTIONS(2246), + [anon_sym_DOLLARfor] = ACTIONS(2246), + [anon_sym_for] = ACTIONS(2246), + [anon_sym_POUND] = ACTIONS(2246), + [anon_sym_asm] = ACTIONS(2246), + [anon_sym_AT_LBRACK] = ACTIONS(2246), + [sym___double_quote] = ACTIONS(2246), + [sym___single_quote] = ACTIONS(2246), + [sym___c_double_quote] = ACTIONS(2246), + [sym___c_single_quote] = ACTIONS(2246), + [sym___r_double_quote] = ACTIONS(2246), + [sym___r_single_quote] = ACTIONS(2246), }, [379] = { - [sym__expression] = STATE(2365), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3566), - [sym_expression_list] = STATE(3766), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2664), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_range] = STATE(4598), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [380] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(2324), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3616), + [sym_expression_list] = STATE(3786), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2354), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [381] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4553), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1365), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1320), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(389), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2356), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1348), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [382] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4427), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2612), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3957), + [sym_expression_list] = STATE(4473), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [383] = { - [sym__expression] = STATE(2650), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3656), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4672), - [sym_identifier] = ACTIONS(2080), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1328), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1322), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(2252), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [384] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4569), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1365), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1320), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(371), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2360), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(2254), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1348), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [385] = { - [sym__expression] = STATE(2650), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4672), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1365), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1320), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(346), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(2256), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1348), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [386] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3675), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1328), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1322), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_RPAREN] = ACTIONS(613), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(2258), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [387] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2982), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(3004), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1365), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1320), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(383), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2376), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2378), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(2260), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1348), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [388] = { - [sym__expression] = STATE(2695), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(583), - [sym_mutable_expression] = STATE(4508), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1328), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1322), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(2262), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2271), + [anon_sym_fn] = ACTIONS(2274), + [anon_sym_PLUS] = ACTIONS(2277), + [anon_sym_DASH] = ACTIONS(2277), + [anon_sym_STAR] = ACTIONS(2280), + [anon_sym_RBRACK] = ACTIONS(2283), + [anon_sym_struct] = ACTIONS(2285), + [anon_sym_mut] = ACTIONS(2288), + [anon_sym_QMARK] = ACTIONS(2291), + [anon_sym_BANG] = ACTIONS(2294), + [anon_sym_go] = ACTIONS(2297), + [anon_sym_spawn] = ACTIONS(2300), + [anon_sym_json_DOTdecode] = ACTIONS(2303), + [anon_sym_LBRACK2] = ACTIONS(2306), + [anon_sym_TILDE] = ACTIONS(2277), + [anon_sym_CARET] = ACTIONS(2277), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_LT_DASH] = ACTIONS(2312), + [sym_none] = ACTIONS(2315), + [sym_true] = ACTIONS(2315), + [sym_false] = ACTIONS(2315), + [sym_nil] = ACTIONS(2315), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_DOLLARif] = ACTIONS(2321), + [anon_sym_match] = ACTIONS(2324), + [anon_sym_select] = ACTIONS(2327), + [anon_sym_lock] = ACTIONS(2330), + [anon_sym_rlock] = ACTIONS(2330), + [anon_sym_unsafe] = ACTIONS(2333), + [anon_sym_sql] = ACTIONS(2336), + [sym_int_literal] = ACTIONS(2315), + [sym_float_literal] = ACTIONS(2339), + [sym_rune_literal] = ACTIONS(2339), + [anon_sym_AT] = ACTIONS(2342), + [anon_sym_shared] = ACTIONS(2345), + [anon_sym_map_LBRACK] = ACTIONS(2348), + [anon_sym_chan] = ACTIONS(2351), + [anon_sym_thread] = ACTIONS(2354), + [anon_sym_atomic] = ACTIONS(2357), + [sym___double_quote] = ACTIONS(2360), + [sym___single_quote] = ACTIONS(2363), + [sym___c_double_quote] = ACTIONS(2366), + [sym___c_single_quote] = ACTIONS(2369), + [sym___r_double_quote] = ACTIONS(2372), + [sym___r_single_quote] = ACTIONS(2375), }, [389] = { - [sym__expression] = STATE(2615), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(3343), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1328), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1322), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(2378), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [390] = { - [sym_else_branch] = STATE(901), - [ts_builtin_sym_end] = ACTIONS(2398), - [sym_identifier] = ACTIONS(2400), - [anon_sym_LF] = ACTIONS(2400), - [anon_sym_CR] = ACTIONS(2400), - [anon_sym_CR_LF] = ACTIONS(2400), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2400), - [anon_sym_as] = ACTIONS(2400), - [anon_sym_LBRACE] = ACTIONS(2400), - [anon_sym_COMMA] = ACTIONS(2400), - [anon_sym_const] = ACTIONS(2400), - [anon_sym_LPAREN] = ACTIONS(2400), - [anon_sym_EQ] = ACTIONS(2400), - [anon_sym___global] = ACTIONS(2400), - [anon_sym_type] = ACTIONS(2400), - [anon_sym_PIPE] = ACTIONS(2400), - [anon_sym_fn] = ACTIONS(2400), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2400), - [anon_sym_SLASH] = ACTIONS(2400), - [anon_sym_PERCENT] = ACTIONS(2400), - [anon_sym_LT] = ACTIONS(2400), - [anon_sym_GT] = ACTIONS(2400), - [anon_sym_EQ_EQ] = ACTIONS(2400), - [anon_sym_BANG_EQ] = ACTIONS(2400), - [anon_sym_LT_EQ] = ACTIONS(2400), - [anon_sym_GT_EQ] = ACTIONS(2400), - [anon_sym_LBRACK] = ACTIONS(2398), - [anon_sym_struct] = ACTIONS(2400), - [anon_sym_union] = ACTIONS(2400), - [anon_sym_pub] = ACTIONS(2400), - [anon_sym_mut] = ACTIONS(2400), - [anon_sym_enum] = ACTIONS(2400), - [anon_sym_interface] = ACTIONS(2400), - [anon_sym_PLUS_PLUS] = ACTIONS(2400), - [anon_sym_DASH_DASH] = ACTIONS(2400), - [anon_sym_QMARK] = ACTIONS(2400), - [anon_sym_BANG] = ACTIONS(2400), - [anon_sym_go] = ACTIONS(2400), - [anon_sym_spawn] = ACTIONS(2400), - [anon_sym_json_DOTdecode] = ACTIONS(2400), - [anon_sym_LBRACK2] = ACTIONS(2400), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2400), - [anon_sym_LT_DASH] = ACTIONS(2400), - [anon_sym_LT_LT] = ACTIONS(2400), - [anon_sym_GT_GT] = ACTIONS(2400), - [anon_sym_GT_GT_GT] = ACTIONS(2400), - [anon_sym_AMP_CARET] = ACTIONS(2400), - [anon_sym_AMP_AMP] = ACTIONS(2400), - [anon_sym_PIPE_PIPE] = ACTIONS(2400), - [anon_sym_or] = ACTIONS(2400), - [sym_none] = ACTIONS(2400), - [sym_true] = ACTIONS(2400), - [sym_false] = ACTIONS(2400), - [sym_nil] = ACTIONS(2400), - [anon_sym_QMARK_DOT] = ACTIONS(2400), - [anon_sym_POUND_LBRACK] = ACTIONS(2400), - [anon_sym_if] = ACTIONS(2400), - [anon_sym_else] = ACTIONS(2402), - [anon_sym_DOLLARif] = ACTIONS(2400), - [anon_sym_is] = ACTIONS(2400), - [anon_sym_BANGis] = ACTIONS(2400), - [anon_sym_in] = ACTIONS(2400), - [anon_sym_BANGin] = ACTIONS(2400), - [anon_sym_match] = ACTIONS(2400), - [anon_sym_select] = ACTIONS(2400), - [anon_sym_STAR_EQ] = ACTIONS(2400), - [anon_sym_SLASH_EQ] = ACTIONS(2400), - [anon_sym_PERCENT_EQ] = ACTIONS(2400), - [anon_sym_LT_LT_EQ] = ACTIONS(2400), - [anon_sym_GT_GT_EQ] = ACTIONS(2400), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2400), - [anon_sym_AMP_EQ] = ACTIONS(2400), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2400), - [anon_sym_PLUS_EQ] = ACTIONS(2400), - [anon_sym_DASH_EQ] = ACTIONS(2400), - [anon_sym_PIPE_EQ] = ACTIONS(2400), - [anon_sym_CARET_EQ] = ACTIONS(2400), - [anon_sym_COLON_EQ] = ACTIONS(2400), - [anon_sym_lock] = ACTIONS(2400), - [anon_sym_rlock] = ACTIONS(2400), - [anon_sym_unsafe] = ACTIONS(2400), - [anon_sym_sql] = ACTIONS(2400), - [sym_int_literal] = ACTIONS(2400), - [sym_float_literal] = ACTIONS(2400), - [sym_rune_literal] = ACTIONS(2400), - [anon_sym_AT] = ACTIONS(2400), - [anon_sym_shared] = ACTIONS(2400), - [anon_sym_map_LBRACK] = ACTIONS(2400), - [anon_sym_chan] = ACTIONS(2400), - [anon_sym_thread] = ACTIONS(2400), - [anon_sym_atomic] = ACTIONS(2400), - [anon_sym_assert] = ACTIONS(2400), - [anon_sym_defer] = ACTIONS(2400), - [anon_sym_goto] = ACTIONS(2400), - [anon_sym_break] = ACTIONS(2400), - [anon_sym_continue] = ACTIONS(2400), - [anon_sym_return] = ACTIONS(2400), - [anon_sym_DOLLARfor] = ACTIONS(2400), - [anon_sym_for] = ACTIONS(2400), - [anon_sym_POUND] = ACTIONS(2400), - [anon_sym_asm] = ACTIONS(2400), - [anon_sym_AT_LBRACK] = ACTIONS(2400), - [sym___double_quote] = ACTIONS(2400), - [sym___single_quote] = ACTIONS(2400), - [sym___c_double_quote] = ACTIONS(2400), - [sym___c_single_quote] = ACTIONS(2400), - [sym___r_double_quote] = ACTIONS(2400), - [sym___r_single_quote] = ACTIONS(2400), + [sym__expression] = STATE(1274), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1365), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1320), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [aux_sym__array_repeat1] = STATE(339), + [sym_identifier] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(2380), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1348), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [391] = { - [sym_else_branch] = STATE(922), - [ts_builtin_sym_end] = ACTIONS(2404), - [sym_identifier] = ACTIONS(2406), - [anon_sym_LF] = ACTIONS(2406), - [anon_sym_CR] = ACTIONS(2406), - [anon_sym_CR_LF] = ACTIONS(2406), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2406), - [anon_sym_as] = ACTIONS(2406), - [anon_sym_LBRACE] = ACTIONS(2406), - [anon_sym_COMMA] = ACTIONS(2406), - [anon_sym_const] = ACTIONS(2406), - [anon_sym_LPAREN] = ACTIONS(2406), - [anon_sym_EQ] = ACTIONS(2406), - [anon_sym___global] = ACTIONS(2406), - [anon_sym_type] = ACTIONS(2406), - [anon_sym_PIPE] = ACTIONS(2406), - [anon_sym_fn] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2406), - [anon_sym_DASH] = ACTIONS(2406), - [anon_sym_STAR] = ACTIONS(2406), - [anon_sym_SLASH] = ACTIONS(2406), - [anon_sym_PERCENT] = ACTIONS(2406), - [anon_sym_LT] = ACTIONS(2406), - [anon_sym_GT] = ACTIONS(2406), - [anon_sym_EQ_EQ] = ACTIONS(2406), - [anon_sym_BANG_EQ] = ACTIONS(2406), - [anon_sym_LT_EQ] = ACTIONS(2406), - [anon_sym_GT_EQ] = ACTIONS(2406), - [anon_sym_LBRACK] = ACTIONS(2404), - [anon_sym_struct] = ACTIONS(2406), - [anon_sym_union] = ACTIONS(2406), - [anon_sym_pub] = ACTIONS(2406), - [anon_sym_mut] = ACTIONS(2406), - [anon_sym_enum] = ACTIONS(2406), - [anon_sym_interface] = ACTIONS(2406), - [anon_sym_PLUS_PLUS] = ACTIONS(2406), - [anon_sym_DASH_DASH] = ACTIONS(2406), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_BANG] = ACTIONS(2406), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2406), - [anon_sym_json_DOTdecode] = ACTIONS(2406), - [anon_sym_LBRACK2] = ACTIONS(2406), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_CARET] = ACTIONS(2406), - [anon_sym_AMP] = ACTIONS(2406), - [anon_sym_LT_DASH] = ACTIONS(2406), - [anon_sym_LT_LT] = ACTIONS(2406), - [anon_sym_GT_GT] = ACTIONS(2406), - [anon_sym_GT_GT_GT] = ACTIONS(2406), - [anon_sym_AMP_CARET] = ACTIONS(2406), - [anon_sym_AMP_AMP] = ACTIONS(2406), - [anon_sym_PIPE_PIPE] = ACTIONS(2406), - [anon_sym_or] = ACTIONS(2406), - [sym_none] = ACTIONS(2406), - [sym_true] = ACTIONS(2406), - [sym_false] = ACTIONS(2406), - [sym_nil] = ACTIONS(2406), - [anon_sym_QMARK_DOT] = ACTIONS(2406), - [anon_sym_POUND_LBRACK] = ACTIONS(2406), - [anon_sym_if] = ACTIONS(2406), - [anon_sym_else] = ACTIONS(2402), - [anon_sym_DOLLARif] = ACTIONS(2406), - [anon_sym_is] = ACTIONS(2406), - [anon_sym_BANGis] = ACTIONS(2406), - [anon_sym_in] = ACTIONS(2406), - [anon_sym_BANGin] = ACTIONS(2406), - [anon_sym_match] = ACTIONS(2406), - [anon_sym_select] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2406), - [anon_sym_SLASH_EQ] = ACTIONS(2406), - [anon_sym_PERCENT_EQ] = ACTIONS(2406), - [anon_sym_LT_LT_EQ] = ACTIONS(2406), - [anon_sym_GT_GT_EQ] = ACTIONS(2406), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2406), - [anon_sym_AMP_EQ] = ACTIONS(2406), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2406), - [anon_sym_PLUS_EQ] = ACTIONS(2406), - [anon_sym_DASH_EQ] = ACTIONS(2406), - [anon_sym_PIPE_EQ] = ACTIONS(2406), - [anon_sym_CARET_EQ] = ACTIONS(2406), - [anon_sym_COLON_EQ] = ACTIONS(2406), - [anon_sym_lock] = ACTIONS(2406), - [anon_sym_rlock] = ACTIONS(2406), - [anon_sym_unsafe] = ACTIONS(2406), - [anon_sym_sql] = ACTIONS(2406), - [sym_int_literal] = ACTIONS(2406), - [sym_float_literal] = ACTIONS(2406), - [sym_rune_literal] = ACTIONS(2406), - [anon_sym_AT] = ACTIONS(2406), - [anon_sym_shared] = ACTIONS(2406), - [anon_sym_map_LBRACK] = ACTIONS(2406), - [anon_sym_chan] = ACTIONS(2406), - [anon_sym_thread] = ACTIONS(2406), - [anon_sym_atomic] = ACTIONS(2406), - [anon_sym_assert] = ACTIONS(2406), - [anon_sym_defer] = ACTIONS(2406), - [anon_sym_goto] = ACTIONS(2406), - [anon_sym_break] = ACTIONS(2406), - [anon_sym_continue] = ACTIONS(2406), - [anon_sym_return] = ACTIONS(2406), - [anon_sym_DOLLARfor] = ACTIONS(2406), - [anon_sym_for] = ACTIONS(2406), - [anon_sym_POUND] = ACTIONS(2406), - [anon_sym_asm] = ACTIONS(2406), - [anon_sym_AT_LBRACK] = ACTIONS(2406), - [sym___double_quote] = ACTIONS(2406), - [sym___single_quote] = ACTIONS(2406), - [sym___c_double_quote] = ACTIONS(2406), - [sym___c_single_quote] = ACTIONS(2406), - [sym___r_double_quote] = ACTIONS(2406), - [sym___r_single_quote] = ACTIONS(2406), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2990), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2966), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_RBRACK] = ACTIONS(2382), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(2384), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [392] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2998), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2996), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2986), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2971), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2408), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2410), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_RBRACK] = ACTIONS(2386), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(2388), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [393] = { - [sym__expression] = STATE(2615), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(573), - [sym_mutable_expression] = STATE(3343), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(2627), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(449), + [sym_mutable_expression] = STATE(3352), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_go] = ACTIONS(2068), + [anon_sym_spawn] = ACTIONS(2070), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_CARET] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_LT_DASH] = ACTIONS(2076), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2078), + [anon_sym_lock] = ACTIONS(2080), + [anon_sym_rlock] = ACTIONS(2080), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [394] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2946), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2999), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2412), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2414), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [sym_else_branch] = STATE(949), + [ts_builtin_sym_end] = ACTIONS(2390), + [sym_identifier] = ACTIONS(2392), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_CR] = ACTIONS(2392), + [anon_sym_CR_LF] = ACTIONS(2392), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2392), + [anon_sym_as] = ACTIONS(2392), + [anon_sym_LBRACE] = ACTIONS(2392), + [anon_sym_COMMA] = ACTIONS(2392), + [anon_sym_const] = ACTIONS(2392), + [anon_sym_LPAREN] = ACTIONS(2392), + [anon_sym_EQ] = ACTIONS(2392), + [anon_sym___global] = ACTIONS(2392), + [anon_sym_type] = ACTIONS(2392), + [anon_sym_PIPE] = ACTIONS(2392), + [anon_sym_fn] = ACTIONS(2392), + [anon_sym_PLUS] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2392), + [anon_sym_STAR] = ACTIONS(2392), + [anon_sym_SLASH] = ACTIONS(2392), + [anon_sym_PERCENT] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2392), + [anon_sym_GT] = ACTIONS(2392), + [anon_sym_EQ_EQ] = ACTIONS(2392), + [anon_sym_BANG_EQ] = ACTIONS(2392), + [anon_sym_LT_EQ] = ACTIONS(2392), + [anon_sym_GT_EQ] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(2390), + [anon_sym_struct] = ACTIONS(2392), + [anon_sym_union] = ACTIONS(2392), + [anon_sym_pub] = ACTIONS(2392), + [anon_sym_mut] = ACTIONS(2392), + [anon_sym_enum] = ACTIONS(2392), + [anon_sym_interface] = ACTIONS(2392), + [anon_sym_PLUS_PLUS] = ACTIONS(2392), + [anon_sym_DASH_DASH] = ACTIONS(2392), + [anon_sym_QMARK] = ACTIONS(2392), + [anon_sym_BANG] = ACTIONS(2392), + [anon_sym_go] = ACTIONS(2392), + [anon_sym_spawn] = ACTIONS(2392), + [anon_sym_json_DOTdecode] = ACTIONS(2392), + [anon_sym_LBRACK2] = ACTIONS(2392), + [anon_sym_TILDE] = ACTIONS(2392), + [anon_sym_CARET] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2392), + [anon_sym_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2392), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_GT_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_CARET] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_or] = ACTIONS(2392), + [sym_none] = ACTIONS(2392), + [sym_true] = ACTIONS(2392), + [sym_false] = ACTIONS(2392), + [sym_nil] = ACTIONS(2392), + [anon_sym_QMARK_DOT] = ACTIONS(2392), + [anon_sym_POUND_LBRACK] = ACTIONS(2392), + [anon_sym_if] = ACTIONS(2392), + [anon_sym_else] = ACTIONS(2394), + [anon_sym_DOLLARif] = ACTIONS(2392), + [anon_sym_is] = ACTIONS(2392), + [anon_sym_BANGis] = ACTIONS(2392), + [anon_sym_in] = ACTIONS(2392), + [anon_sym_BANGin] = ACTIONS(2392), + [anon_sym_match] = ACTIONS(2392), + [anon_sym_select] = ACTIONS(2392), + [anon_sym_STAR_EQ] = ACTIONS(2392), + [anon_sym_SLASH_EQ] = ACTIONS(2392), + [anon_sym_PERCENT_EQ] = ACTIONS(2392), + [anon_sym_LT_LT_EQ] = ACTIONS(2392), + [anon_sym_GT_GT_EQ] = ACTIONS(2392), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2392), + [anon_sym_AMP_EQ] = ACTIONS(2392), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2392), + [anon_sym_PLUS_EQ] = ACTIONS(2392), + [anon_sym_DASH_EQ] = ACTIONS(2392), + [anon_sym_PIPE_EQ] = ACTIONS(2392), + [anon_sym_CARET_EQ] = ACTIONS(2392), + [anon_sym_COLON_EQ] = ACTIONS(2392), + [anon_sym_lock] = ACTIONS(2392), + [anon_sym_rlock] = ACTIONS(2392), + [anon_sym_unsafe] = ACTIONS(2392), + [anon_sym_sql] = ACTIONS(2392), + [sym_int_literal] = ACTIONS(2392), + [sym_float_literal] = ACTIONS(2392), + [sym_rune_literal] = ACTIONS(2392), + [anon_sym_AT] = ACTIONS(2392), + [anon_sym_shared] = ACTIONS(2392), + [anon_sym_map_LBRACK] = ACTIONS(2392), + [anon_sym_chan] = ACTIONS(2392), + [anon_sym_thread] = ACTIONS(2392), + [anon_sym_atomic] = ACTIONS(2392), + [anon_sym_assert] = ACTIONS(2392), + [anon_sym_defer] = ACTIONS(2392), + [anon_sym_goto] = ACTIONS(2392), + [anon_sym_break] = ACTIONS(2392), + [anon_sym_continue] = ACTIONS(2392), + [anon_sym_return] = ACTIONS(2392), + [anon_sym_DOLLARfor] = ACTIONS(2392), + [anon_sym_for] = ACTIONS(2392), + [anon_sym_POUND] = ACTIONS(2392), + [anon_sym_asm] = ACTIONS(2392), + [anon_sym_AT_LBRACK] = ACTIONS(2392), + [sym___double_quote] = ACTIONS(2392), + [sym___single_quote] = ACTIONS(2392), + [sym___c_double_quote] = ACTIONS(2392), + [sym___c_single_quote] = ACTIONS(2392), + [sym___r_double_quote] = ACTIONS(2392), + [sym___r_single_quote] = ACTIONS(2392), }, [395] = { - [sym__expression] = STATE(2859), - [sym__expression_without_blocks] = STATE(2869), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2869), - [sym_dec_expression] = STATE(2869), - [sym_or_block_expression] = STATE(2869), - [sym_option_propagation_expression] = STATE(2869), - [sym_result_propagation_expression] = STATE(2869), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2869), - [sym_spawn_expression] = STATE(2869), - [sym_parenthesized_expression] = STATE(2869), - [sym_call_expression] = STATE(2869), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2869), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2869), - [sym_receive_expression] = STATE(2869), - [sym_binary_expression] = STATE(2869), - [sym_as_type_cast_expression] = STATE(2869), - [sym__max_group] = STATE(2869), - [sym_literal] = STATE(2869), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2869), - [sym_fixed_array_creation] = STATE(2869), - [sym_selector_expression] = STATE(2869), - [sym_index_expression] = STATE(2869), - [sym_slice_expression] = STATE(2869), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2869), - [sym_not_is_expression] = STATE(2869), - [sym_in_expression] = STATE(2869), - [sym_not_in_expression] = STATE(2869), - [sym_enum_fetch] = STATE(2869), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2869), - [sym_mutability_modifiers] = STATE(817), - [sym_expression_without_blocks_list] = STATE(4538), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [sym_else_branch] = STATE(948), + [ts_builtin_sym_end] = ACTIONS(2396), + [sym_identifier] = ACTIONS(2398), + [anon_sym_LF] = ACTIONS(2398), + [anon_sym_CR] = ACTIONS(2398), + [anon_sym_CR_LF] = ACTIONS(2398), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2398), + [anon_sym_as] = ACTIONS(2398), + [anon_sym_LBRACE] = ACTIONS(2398), + [anon_sym_COMMA] = ACTIONS(2398), + [anon_sym_const] = ACTIONS(2398), + [anon_sym_LPAREN] = ACTIONS(2398), + [anon_sym_EQ] = ACTIONS(2398), + [anon_sym___global] = ACTIONS(2398), + [anon_sym_type] = ACTIONS(2398), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_fn] = ACTIONS(2398), + [anon_sym_PLUS] = ACTIONS(2398), + [anon_sym_DASH] = ACTIONS(2398), + [anon_sym_STAR] = ACTIONS(2398), + [anon_sym_SLASH] = ACTIONS(2398), + [anon_sym_PERCENT] = ACTIONS(2398), + [anon_sym_LT] = ACTIONS(2398), + [anon_sym_GT] = ACTIONS(2398), + [anon_sym_EQ_EQ] = ACTIONS(2398), + [anon_sym_BANG_EQ] = ACTIONS(2398), + [anon_sym_LT_EQ] = ACTIONS(2398), + [anon_sym_GT_EQ] = ACTIONS(2398), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_struct] = ACTIONS(2398), + [anon_sym_union] = ACTIONS(2398), + [anon_sym_pub] = ACTIONS(2398), + [anon_sym_mut] = ACTIONS(2398), + [anon_sym_enum] = ACTIONS(2398), + [anon_sym_interface] = ACTIONS(2398), + [anon_sym_PLUS_PLUS] = ACTIONS(2398), + [anon_sym_DASH_DASH] = ACTIONS(2398), + [anon_sym_QMARK] = ACTIONS(2398), + [anon_sym_BANG] = ACTIONS(2398), + [anon_sym_go] = ACTIONS(2398), + [anon_sym_spawn] = ACTIONS(2398), + [anon_sym_json_DOTdecode] = ACTIONS(2398), + [anon_sym_LBRACK2] = ACTIONS(2398), + [anon_sym_TILDE] = ACTIONS(2398), + [anon_sym_CARET] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), + [anon_sym_LT_DASH] = ACTIONS(2398), + [anon_sym_LT_LT] = ACTIONS(2398), + [anon_sym_GT_GT] = ACTIONS(2398), + [anon_sym_GT_GT_GT] = ACTIONS(2398), + [anon_sym_AMP_CARET] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [anon_sym_or] = ACTIONS(2398), + [sym_none] = ACTIONS(2398), + [sym_true] = ACTIONS(2398), + [sym_false] = ACTIONS(2398), + [sym_nil] = ACTIONS(2398), + [anon_sym_QMARK_DOT] = ACTIONS(2398), + [anon_sym_POUND_LBRACK] = ACTIONS(2398), + [anon_sym_if] = ACTIONS(2398), + [anon_sym_else] = ACTIONS(2394), + [anon_sym_DOLLARif] = ACTIONS(2398), + [anon_sym_is] = ACTIONS(2398), + [anon_sym_BANGis] = ACTIONS(2398), + [anon_sym_in] = ACTIONS(2398), + [anon_sym_BANGin] = ACTIONS(2398), + [anon_sym_match] = ACTIONS(2398), + [anon_sym_select] = ACTIONS(2398), + [anon_sym_STAR_EQ] = ACTIONS(2398), + [anon_sym_SLASH_EQ] = ACTIONS(2398), + [anon_sym_PERCENT_EQ] = ACTIONS(2398), + [anon_sym_LT_LT_EQ] = ACTIONS(2398), + [anon_sym_GT_GT_EQ] = ACTIONS(2398), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2398), + [anon_sym_AMP_EQ] = ACTIONS(2398), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2398), + [anon_sym_PLUS_EQ] = ACTIONS(2398), + [anon_sym_DASH_EQ] = ACTIONS(2398), + [anon_sym_PIPE_EQ] = ACTIONS(2398), + [anon_sym_CARET_EQ] = ACTIONS(2398), + [anon_sym_COLON_EQ] = ACTIONS(2398), + [anon_sym_lock] = ACTIONS(2398), + [anon_sym_rlock] = ACTIONS(2398), + [anon_sym_unsafe] = ACTIONS(2398), + [anon_sym_sql] = ACTIONS(2398), + [sym_int_literal] = ACTIONS(2398), + [sym_float_literal] = ACTIONS(2398), + [sym_rune_literal] = ACTIONS(2398), + [anon_sym_AT] = ACTIONS(2398), + [anon_sym_shared] = ACTIONS(2398), + [anon_sym_map_LBRACK] = ACTIONS(2398), + [anon_sym_chan] = ACTIONS(2398), + [anon_sym_thread] = ACTIONS(2398), + [anon_sym_atomic] = ACTIONS(2398), + [anon_sym_assert] = ACTIONS(2398), + [anon_sym_defer] = ACTIONS(2398), + [anon_sym_goto] = ACTIONS(2398), + [anon_sym_break] = ACTIONS(2398), + [anon_sym_continue] = ACTIONS(2398), + [anon_sym_return] = ACTIONS(2398), + [anon_sym_DOLLARfor] = ACTIONS(2398), + [anon_sym_for] = ACTIONS(2398), + [anon_sym_POUND] = ACTIONS(2398), + [anon_sym_asm] = ACTIONS(2398), + [anon_sym_AT_LBRACK] = ACTIONS(2398), + [sym___double_quote] = ACTIONS(2398), + [sym___single_quote] = ACTIONS(2398), + [sym___c_double_quote] = ACTIONS(2398), + [sym___c_single_quote] = ACTIONS(2398), + [sym___r_double_quote] = ACTIONS(2398), + [sym___r_single_quote] = ACTIONS(2398), }, [396] = { - [sym__expression] = STATE(2859), - [sym__expression_without_blocks] = STATE(2869), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2869), - [sym_dec_expression] = STATE(2869), - [sym_or_block_expression] = STATE(2869), - [sym_option_propagation_expression] = STATE(2869), - [sym_result_propagation_expression] = STATE(2869), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2869), - [sym_spawn_expression] = STATE(2869), - [sym_parenthesized_expression] = STATE(2869), - [sym_call_expression] = STATE(2869), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2869), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2869), - [sym_receive_expression] = STATE(2869), - [sym_binary_expression] = STATE(2869), - [sym_as_type_cast_expression] = STATE(2869), - [sym__max_group] = STATE(2869), - [sym_literal] = STATE(2869), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2869), - [sym_fixed_array_creation] = STATE(2869), - [sym_selector_expression] = STATE(2869), - [sym_index_expression] = STATE(2869), - [sym_slice_expression] = STATE(2869), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2869), - [sym_not_is_expression] = STATE(2869), - [sym_in_expression] = STATE(2869), - [sym_not_in_expression] = STATE(2869), - [sym_enum_fetch] = STATE(2869), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2869), - [sym_mutability_modifiers] = STATE(817), - [sym_expression_without_blocks_list] = STATE(4534), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2674), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(616), + [sym_mutable_expression] = STATE(4426), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [397] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2968), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2978), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2951), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2952), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2416), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2418), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_RBRACK] = ACTIONS(2418), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(2420), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [398] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2983), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2967), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2682), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(616), + [sym_mutable_expression] = STATE(4420), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2420), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2422), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [399] = { - [sym__expression] = STATE(973), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(749), - [sym_mutable_expression] = STATE(1428), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2963), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2968), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_RBRACK] = ACTIONS(2422), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(2424), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [400] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2947), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2942), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2695), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(616), + [sym_mutable_expression] = STATE(4429), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2424), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2426), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [401] = { - [sym__expression] = STATE(2691), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2499), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4019), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1091), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2428), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1109), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2426), + [anon_sym_lock] = ACTIONS(2428), + [anon_sym_rlock] = ACTIONS(2428), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [402] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2977), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2937), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2719), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(616), + [sym_mutable_expression] = STATE(4430), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2430), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2432), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [403] = { - [sym__expression] = STATE(1628), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(815), - [sym_mutable_expression] = STATE(3333), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2962), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2996), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_RBRACK] = ACTIONS(2430), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(2432), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [404] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2959), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2960), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2799), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(616), + [sym_mutable_expression] = STATE(4451), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2496), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2498), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [405] = { - [sym__expression] = STATE(2706), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2815), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(616), + [sym_mutable_expression] = STATE(4472), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2500), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [406] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2951), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2993), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2604), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4108), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym__definite_range] = STATE(4428), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2502), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2504), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_STAR] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_go] = ACTIONS(2440), + [anon_sym_spawn] = ACTIONS(2442), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_LT_DASH] = ACTIONS(2446), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2448), + [anon_sym_lock] = ACTIONS(2450), + [anon_sym_rlock] = ACTIONS(2450), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [407] = { - [sym__expression] = STATE(1763), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(770), - [sym_mutable_expression] = STATE(3347), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), + [sym__expression] = STATE(2822), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(616), + [sym_mutable_expression] = STATE(4493), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [408] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2954), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2957), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2643), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(826), + [sym_mutable_expression] = STATE(3352), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2508), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2510), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [409] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(3001), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(3003), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2959), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2970), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2512), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2514), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_RBRACK] = ACTIONS(2452), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(2454), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [410] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2938), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2939), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2846), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(616), + [sym_mutable_expression] = STATE(4514), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2516), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2518), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [411] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2984), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2935), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2814), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2520), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2522), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [412] = { - [sym__expression] = STATE(2794), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(583), - [sym_mutable_expression] = STATE(4450), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2988), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2994), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_RBRACK] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(2460), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [413] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2972), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2952), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(3006), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2954), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2524), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2526), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_RBRACK] = ACTIONS(2462), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(2464), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [414] = { - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(583), - [sym_mutable_expression] = STATE(4414), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2448), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(606), + [sym_mutable_expression] = STATE(3687), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [415] = { - [sym__expression] = STATE(2851), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(583), - [sym_mutable_expression] = STATE(4420), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2786), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(616), + [sym_mutable_expression] = STATE(4535), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [416] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(4720), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2852), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(616), + [sym_mutable_expression] = STATE(4556), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [417] = { - [sym__expression] = STATE(2839), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(583), - [sym_mutable_expression] = STATE(4426), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(1772), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(629), + [sym_mutable_expression] = STATE(3347), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2466), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_go] = ACTIONS(2476), + [anon_sym_spawn] = ACTIONS(2478), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_LT_DASH] = ACTIONS(2484), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(2486), + [anon_sym_lock] = ACTIONS(2488), + [anon_sym_rlock] = ACTIONS(2488), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [418] = { - [sym__expression] = STATE(1777), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(781), - [sym_mutable_expression] = STATE(3345), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), + [sym__expression] = STATE(2854), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_SEMI] = ACTIONS(2490), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [419] = { - [sym__expression] = STATE(2489), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4015), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1085), + [sym__expression] = STATE(2696), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(616), + [sym_mutable_expression] = STATE(4644), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [420] = { - [sym__expression] = STATE(2806), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(583), - [sym_mutable_expression] = STATE(4447), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(1921), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(656), + [sym_mutable_expression] = STATE(3352), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2466), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_go] = ACTIONS(2476), + [anon_sym_spawn] = ACTIONS(2478), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_LT_DASH] = ACTIONS(2484), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(2486), + [anon_sym_lock] = ACTIONS(2488), + [anon_sym_rlock] = ACTIONS(2488), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [421] = { - [sym__expression] = STATE(2792), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(583), - [sym_mutable_expression] = STATE(4468), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2992), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_RBRACK] = ACTIONS(2492), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(2494), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [422] = { - [sym__expression] = STATE(1918), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(771), - [sym_mutable_expression] = STATE(3343), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), + [sym__expression] = STATE(2792), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_RBRACK] = ACTIONS(2496), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [423] = { - [sym__expression] = STATE(2854), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2943), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2964), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2572), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_RBRACK] = ACTIONS(2498), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(2500), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [424] = { - [sym__expression] = STATE(2677), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(583), - [sym_mutable_expression] = STATE(4581), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2858), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_RBRACK] = ACTIONS(2502), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [425] = { - [sym__expression] = STATE(2812), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2989), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2987), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2574), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_RBRACK] = ACTIONS(2504), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(2506), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [426] = { - [sym__expression] = STATE(2788), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(583), - [sym_mutable_expression] = STATE(4489), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(252), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_mutability_modifiers] = STATE(630), + [sym_mutable_expression] = STATE(1122), + [sym_plain_type] = STATE(4117), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2508), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(481), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(483), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(485), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [427] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2985), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2971), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2880), + [sym__expression_without_blocks] = STATE(2872), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2872), + [sym_dec_expression] = STATE(2872), + [sym_or_block_expression] = STATE(2872), + [sym_option_propagation_expression] = STATE(2872), + [sym_result_propagation_expression] = STATE(2872), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2872), + [sym_spawn_expression] = STATE(2872), + [sym_parenthesized_expression] = STATE(2872), + [sym_call_expression] = STATE(2872), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2872), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2872), + [sym_receive_expression] = STATE(2872), + [sym_binary_expression] = STATE(2872), + [sym_as_type_cast_expression] = STATE(2872), + [sym__max_group] = STATE(2872), + [sym_literal] = STATE(2872), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2872), + [sym_fixed_array_creation] = STATE(2872), + [sym_selector_expression] = STATE(2872), + [sym_index_expression] = STATE(2872), + [sym_slice_expression] = STATE(2872), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2872), + [sym_not_is_expression] = STATE(2872), + [sym_in_expression] = STATE(2872), + [sym_not_in_expression] = STATE(2872), + [sym_enum_fetch] = STATE(2872), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2872), + [sym_mutability_modifiers] = STATE(587), + [sym_expression_without_blocks_list] = STATE(4481), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2576), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2578), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [428] = { - [sym__expression] = STATE(2743), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(583), - [sym_mutable_expression] = STATE(4510), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2880), + [sym__expression_without_blocks] = STATE(2872), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2872), + [sym_dec_expression] = STATE(2872), + [sym_or_block_expression] = STATE(2872), + [sym_option_propagation_expression] = STATE(2872), + [sym_result_propagation_expression] = STATE(2872), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2872), + [sym_spawn_expression] = STATE(2872), + [sym_parenthesized_expression] = STATE(2872), + [sym_call_expression] = STATE(2872), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2872), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2872), + [sym_receive_expression] = STATE(2872), + [sym_binary_expression] = STATE(2872), + [sym_as_type_cast_expression] = STATE(2872), + [sym__max_group] = STATE(2872), + [sym_literal] = STATE(2872), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2872), + [sym_fixed_array_creation] = STATE(2872), + [sym_selector_expression] = STATE(2872), + [sym_index_expression] = STATE(2872), + [sym_slice_expression] = STATE(2872), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2872), + [sym_not_is_expression] = STATE(2872), + [sym_in_expression] = STATE(2872), + [sym_not_in_expression] = STATE(2872), + [sym_enum_fetch] = STATE(2872), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2872), + [sym_mutability_modifiers] = STATE(587), + [sym_expression_without_blocks_list] = STATE(4447), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [429] = { - [sym__expression] = STATE(236), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(757), - [sym_mutable_expression] = STATE(1122), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2999), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2958), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_RBRACK] = ACTIONS(2512), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(2514), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [430] = { - [sym__expression] = STATE(2702), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(583), - [sym_mutable_expression] = STATE(4531), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(3002), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(3001), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_RBRACK] = ACTIONS(2516), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(2518), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [431] = { - [sym__expression] = STATE(2633), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3343), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(980), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(478), + [sym_mutable_expression] = STATE(1433), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2108), + [anon_sym_go] = ACTIONS(513), + [anon_sym_spawn] = ACTIONS(515), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_LT_DASH] = ACTIONS(2116), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(533), + [anon_sym_lock] = ACTIONS(535), + [anon_sym_rlock] = ACTIONS(535), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [432] = { - [sym__expression] = STATE(2685), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(583), - [sym_mutable_expression] = STATE(4552), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2979), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2967), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_RBRACK] = ACTIONS(2520), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(2522), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [433] = { - [sym__expression] = STATE(2466), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3665), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(1767), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(817), + [sym_mutable_expression] = STATE(3349), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1568), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_go] = ACTIONS(821), + [anon_sym_spawn] = ACTIONS(823), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(827), + [anon_sym_TILDE] = ACTIONS(811), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_LT_DASH] = ACTIONS(831), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(841), + [anon_sym_lock] = ACTIONS(843), + [anon_sym_rlock] = ACTIONS(843), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [434] = { - [sym__expression] = STATE(2681), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(583), - [sym_mutable_expression] = STATE(4568), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(1633), + [sym__expression_without_blocks] = STATE(1820), + [sym__expression_with_blocks] = STATE(1820), + [sym_inc_expression] = STATE(1820), + [sym_dec_expression] = STATE(1820), + [sym_or_block_expression] = STATE(1820), + [sym_option_propagation_expression] = STATE(1820), + [sym_result_propagation_expression] = STATE(1820), + [sym_anon_struct_value_expression] = STATE(1814), + [sym_go_expression] = STATE(1820), + [sym_spawn_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1820), + [sym_call_expression] = STATE(1820), + [sym_type_initializer] = STATE(1814), + [sym_function_literal] = STATE(1820), + [sym_reference_expression] = STATE(1813), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1820), + [sym_receive_expression] = STATE(1820), + [sym_binary_expression] = STATE(1820), + [sym_as_type_cast_expression] = STATE(1820), + [sym__max_group] = STATE(1820), + [sym_literal] = STATE(1820), + [sym_map_init_expression] = STATE(1814), + [sym_array_creation] = STATE(1820), + [sym_fixed_array_creation] = STATE(1820), + [sym_selector_expression] = STATE(1820), + [sym_index_expression] = STATE(1820), + [sym_slice_expression] = STATE(1820), + [sym_if_expression] = STATE(1814), + [sym_compile_time_if_expression] = STATE(1814), + [sym_is_expression] = STATE(1820), + [sym_not_is_expression] = STATE(1820), + [sym_in_expression] = STATE(1820), + [sym_not_in_expression] = STATE(1820), + [sym_enum_fetch] = STATE(1820), + [sym_match_expression] = STATE(1814), + [sym_select_expression] = STATE(1814), + [sym_lock_expression] = STATE(1814), + [sym_unsafe_expression] = STATE(1814), + [sym_sql_expression] = STATE(1814), + [sym_c_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_interpreted_string_literal] = STATE(1819), + [sym_pseudo_compile_time_identifier] = STATE(1820), + [sym_mutability_modifiers] = STATE(552), + [sym_mutable_expression] = STATE(3337), + [sym_plain_type] = STATE(4130), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2524), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_fn] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2534), + [anon_sym_STAR] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2538), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_go] = ACTIONS(2542), + [anon_sym_spawn] = ACTIONS(2544), + [anon_sym_json_DOTdecode] = ACTIONS(2546), + [anon_sym_LBRACK2] = ACTIONS(2548), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2550), + [anon_sym_LT_DASH] = ACTIONS(2552), + [sym_none] = ACTIONS(2554), + [sym_true] = ACTIONS(2554), + [sym_false] = ACTIONS(2554), + [sym_nil] = ACTIONS(2554), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_DOLLARif] = ACTIONS(2558), + [anon_sym_match] = ACTIONS(2560), + [anon_sym_select] = ACTIONS(2562), + [anon_sym_lock] = ACTIONS(2564), + [anon_sym_rlock] = ACTIONS(2564), + [anon_sym_unsafe] = ACTIONS(2566), + [anon_sym_sql] = ACTIONS(2568), + [sym_int_literal] = ACTIONS(2554), + [sym_float_literal] = ACTIONS(2570), + [sym_rune_literal] = ACTIONS(2570), + [anon_sym_AT] = ACTIONS(2572), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2574), + [sym___single_quote] = ACTIONS(2576), + [sym___c_double_quote] = ACTIONS(2578), + [sym___c_single_quote] = ACTIONS(2580), + [sym___r_double_quote] = ACTIONS(2582), + [sym___r_single_quote] = ACTIONS(2584), }, [435] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2964), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2948), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2759), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(616), + [sym_mutable_expression] = STATE(4572), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2584), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2586), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [436] = { - [sym__expression] = STATE(2660), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2782), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(616), + [sym_mutable_expression] = STATE(4459), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [437] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2973), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2979), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(3003), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2978), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_RBRACK] = ACTIONS(2586), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(2588), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [438] = { - [sym__expression] = STATE(2762), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3667), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(3009), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2983), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_RBRACK] = ACTIONS(2590), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(2592), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [439] = { - [sym__expression] = STATE(2834), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(2627), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(718), + [sym_mutable_expression] = STATE(3352), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_go] = ACTIONS(2068), + [anon_sym_spawn] = ACTIONS(2070), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_CARET] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_LT_DASH] = ACTIONS(2076), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2078), + [anon_sym_lock] = ACTIONS(2080), + [anon_sym_rlock] = ACTIONS(2080), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [440] = { - [sym__expression] = STATE(2630), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2434), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2598), + [anon_sym_go] = ACTIONS(2600), + [anon_sym_spawn] = ACTIONS(2602), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(2594), + [anon_sym_CARET] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2604), + [anon_sym_LT_DASH] = ACTIONS(2606), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(2608), + [anon_sym_lock] = ACTIONS(2610), + [anon_sym_rlock] = ACTIONS(2610), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [441] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2987), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2988), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(1278), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1328), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1322), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [442] = { - [sym__expression] = STATE(2328), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(1799), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1568), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_go] = ACTIONS(821), + [anon_sym_spawn] = ACTIONS(823), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(827), + [anon_sym_TILDE] = ACTIONS(811), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_LT_DASH] = ACTIONS(831), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(841), + [anon_sym_lock] = ACTIONS(843), + [anon_sym_rlock] = ACTIONS(843), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [443] = { - [sym__expression] = STATE(2842), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3667), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(378), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_mutability_modifiers] = STATE(560), + [sym_plain_type] = STATE(4117), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2508), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(481), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(483), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(485), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [444] = { - [sym__expression] = STATE(301), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), + [sym__expression] = STATE(1277), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1328), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1322), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [445] = { - [sym__expression] = STATE(303), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), + [sym__expression] = STATE(2641), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [446] = { - [sym__expression] = STATE(298), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), + [sym__expression] = STATE(2661), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [447] = { - [sym__expression] = STATE(981), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [sym__expression] = STATE(1276), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1328), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1322), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4158), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [448] = { - [sym__expression] = STATE(2484), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2863), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2612), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [449] = { - [sym__expression] = STATE(964), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [sym__expression] = STATE(2659), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_go] = ACTIONS(2068), + [anon_sym_spawn] = ACTIONS(2070), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_CARET] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_LT_DASH] = ACTIONS(2076), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2078), + [anon_sym_lock] = ACTIONS(2080), + [anon_sym_rlock] = ACTIONS(2080), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [450] = { - [sym__expression] = STATE(2491), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(1791), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1568), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_go] = ACTIONS(821), + [anon_sym_spawn] = ACTIONS(823), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(827), + [anon_sym_TILDE] = ACTIONS(811), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_LT_DASH] = ACTIONS(831), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(841), + [anon_sym_lock] = ACTIONS(843), + [anon_sym_rlock] = ACTIONS(843), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [451] = { - [sym__expression] = STATE(965), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [sym__expression] = STATE(2746), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3659), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [452] = { - [sym__expression] = STATE(966), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [sym__expression] = STATE(1284), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1328), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1322), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [453] = { - [sym__expression] = STATE(353), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), + [sym__expression] = STATE(2787), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3659), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [454] = { - [sym__expression] = STATE(292), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2957), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2956), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [455] = { - [sym__expression] = STATE(297), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), + [sym__expression] = STATE(378), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_mutability_modifiers] = STATE(560), + [sym_plain_type] = STATE(4178), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2508), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(481), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(483), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(485), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [456] = { - [sym__expression] = STATE(2329), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(1790), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1568), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_go] = ACTIONS(821), + [anon_sym_spawn] = ACTIONS(823), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(827), + [anon_sym_TILDE] = ACTIONS(811), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_LT_DASH] = ACTIONS(831), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(841), + [anon_sym_lock] = ACTIONS(843), + [anon_sym_rlock] = ACTIONS(843), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [457] = { - [sym__expression] = STATE(2859), - [sym__expression_without_blocks] = STATE(2900), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2900), - [sym_dec_expression] = STATE(2900), - [sym_or_block_expression] = STATE(2900), - [sym_option_propagation_expression] = STATE(2900), - [sym_result_propagation_expression] = STATE(2900), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2900), - [sym_spawn_expression] = STATE(2900), - [sym_parenthesized_expression] = STATE(2900), - [sym_call_expression] = STATE(2900), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2900), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2900), - [sym_receive_expression] = STATE(2900), - [sym_binary_expression] = STATE(2900), - [sym_as_type_cast_expression] = STATE(2900), - [sym__max_group] = STATE(2900), - [sym_literal] = STATE(2900), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2900), - [sym_fixed_array_creation] = STATE(2900), - [sym_selector_expression] = STATE(2900), - [sym_index_expression] = STATE(2900), - [sym_slice_expression] = STATE(2900), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2900), - [sym_not_is_expression] = STATE(2900), - [sym_in_expression] = STATE(2900), - [sym_not_in_expression] = STATE(2900), - [sym_enum_fetch] = STATE(2900), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2900), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(1793), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1568), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_go] = ACTIONS(821), + [anon_sym_spawn] = ACTIONS(823), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(827), + [anon_sym_TILDE] = ACTIONS(811), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_LT_DASH] = ACTIONS(831), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(841), + [anon_sym_lock] = ACTIONS(843), + [anon_sym_rlock] = ACTIONS(843), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [458] = { - [sym__expression] = STATE(959), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [ts_builtin_sym_end] = ACTIONS(2614), + [sym_identifier] = ACTIONS(2616), + [anon_sym_LF] = ACTIONS(2616), + [anon_sym_CR] = ACTIONS(2616), + [anon_sym_CR_LF] = ACTIONS(2616), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2616), + [anon_sym_as] = ACTIONS(2616), + [anon_sym_LBRACE] = ACTIONS(2616), + [anon_sym_COMMA] = ACTIONS(2616), + [anon_sym_const] = ACTIONS(2616), + [anon_sym_LPAREN] = ACTIONS(2616), + [anon_sym_EQ] = ACTIONS(2616), + [anon_sym___global] = ACTIONS(2616), + [anon_sym_type] = ACTIONS(2616), + [anon_sym_PIPE] = ACTIONS(2616), + [anon_sym_fn] = ACTIONS(2616), + [anon_sym_PLUS] = ACTIONS(2616), + [anon_sym_DASH] = ACTIONS(2616), + [anon_sym_STAR] = ACTIONS(2616), + [anon_sym_SLASH] = ACTIONS(2616), + [anon_sym_PERCENT] = ACTIONS(2616), + [anon_sym_LT] = ACTIONS(2616), + [anon_sym_GT] = ACTIONS(2616), + [anon_sym_EQ_EQ] = ACTIONS(2616), + [anon_sym_BANG_EQ] = ACTIONS(2616), + [anon_sym_LT_EQ] = ACTIONS(2616), + [anon_sym_GT_EQ] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(2614), + [anon_sym_struct] = ACTIONS(2616), + [anon_sym_union] = ACTIONS(2616), + [anon_sym_pub] = ACTIONS(2616), + [anon_sym_mut] = ACTIONS(2616), + [anon_sym_enum] = ACTIONS(2616), + [anon_sym_interface] = ACTIONS(2616), + [anon_sym_PLUS_PLUS] = ACTIONS(2616), + [anon_sym_DASH_DASH] = ACTIONS(2616), + [anon_sym_QMARK] = ACTIONS(2616), + [anon_sym_BANG] = ACTIONS(2616), + [anon_sym_go] = ACTIONS(2616), + [anon_sym_spawn] = ACTIONS(2616), + [anon_sym_json_DOTdecode] = ACTIONS(2616), + [anon_sym_LBRACK2] = ACTIONS(2616), + [anon_sym_TILDE] = ACTIONS(2616), + [anon_sym_CARET] = ACTIONS(2616), + [anon_sym_AMP] = ACTIONS(2616), + [anon_sym_LT_DASH] = ACTIONS(2616), + [anon_sym_LT_LT] = ACTIONS(2616), + [anon_sym_GT_GT] = ACTIONS(2616), + [anon_sym_GT_GT_GT] = ACTIONS(2616), + [anon_sym_AMP_CARET] = ACTIONS(2616), + [anon_sym_AMP_AMP] = ACTIONS(2616), + [anon_sym_PIPE_PIPE] = ACTIONS(2616), + [anon_sym_or] = ACTIONS(2616), + [sym_none] = ACTIONS(2616), + [sym_true] = ACTIONS(2616), + [sym_false] = ACTIONS(2616), + [sym_nil] = ACTIONS(2616), + [anon_sym_QMARK_DOT] = ACTIONS(2616), + [anon_sym_POUND_LBRACK] = ACTIONS(2616), + [anon_sym_if] = ACTIONS(2616), + [anon_sym_DOLLARif] = ACTIONS(2616), + [anon_sym_DOLLARelse] = ACTIONS(2618), + [anon_sym_is] = ACTIONS(2616), + [anon_sym_BANGis] = ACTIONS(2616), + [anon_sym_in] = ACTIONS(2616), + [anon_sym_BANGin] = ACTIONS(2616), + [anon_sym_match] = ACTIONS(2616), + [anon_sym_select] = ACTIONS(2616), + [anon_sym_STAR_EQ] = ACTIONS(2616), + [anon_sym_SLASH_EQ] = ACTIONS(2616), + [anon_sym_PERCENT_EQ] = ACTIONS(2616), + [anon_sym_LT_LT_EQ] = ACTIONS(2616), + [anon_sym_GT_GT_EQ] = ACTIONS(2616), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2616), + [anon_sym_AMP_EQ] = ACTIONS(2616), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2616), + [anon_sym_PLUS_EQ] = ACTIONS(2616), + [anon_sym_DASH_EQ] = ACTIONS(2616), + [anon_sym_PIPE_EQ] = ACTIONS(2616), + [anon_sym_CARET_EQ] = ACTIONS(2616), + [anon_sym_COLON_EQ] = ACTIONS(2616), + [anon_sym_lock] = ACTIONS(2616), + [anon_sym_rlock] = ACTIONS(2616), + [anon_sym_unsafe] = ACTIONS(2616), + [anon_sym_sql] = ACTIONS(2616), + [sym_int_literal] = ACTIONS(2616), + [sym_float_literal] = ACTIONS(2616), + [sym_rune_literal] = ACTIONS(2616), + [anon_sym_AT] = ACTIONS(2616), + [anon_sym_shared] = ACTIONS(2616), + [anon_sym_map_LBRACK] = ACTIONS(2616), + [anon_sym_chan] = ACTIONS(2616), + [anon_sym_thread] = ACTIONS(2616), + [anon_sym_atomic] = ACTIONS(2616), + [anon_sym_assert] = ACTIONS(2616), + [anon_sym_defer] = ACTIONS(2616), + [anon_sym_goto] = ACTIONS(2616), + [anon_sym_break] = ACTIONS(2616), + [anon_sym_continue] = ACTIONS(2616), + [anon_sym_return] = ACTIONS(2616), + [anon_sym_DOLLARfor] = ACTIONS(2616), + [anon_sym_for] = ACTIONS(2616), + [anon_sym_POUND] = ACTIONS(2616), + [anon_sym_asm] = ACTIONS(2616), + [anon_sym_AT_LBRACK] = ACTIONS(2616), + [sym___double_quote] = ACTIONS(2616), + [sym___single_quote] = ACTIONS(2616), + [sym___c_double_quote] = ACTIONS(2616), + [sym___c_single_quote] = ACTIONS(2616), + [sym___r_double_quote] = ACTIONS(2616), + [sym___r_single_quote] = ACTIONS(2616), }, [459] = { - [sym__expression] = STATE(2487), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2454), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [460] = { - [sym__expression] = STATE(2833), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(2225), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3669), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(2094), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2096), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [461] = { - [sym__expression] = STATE(311), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), + [sym__expression] = STATE(2148), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2636), + [anon_sym_go] = ACTIONS(2638), + [anon_sym_spawn] = ACTIONS(2640), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_CARET] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2646), + [anon_sym_LT_DASH] = ACTIONS(2648), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2658), + [anon_sym_lock] = ACTIONS(2660), + [anon_sym_rlock] = ACTIONS(2660), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [462] = { - [sym__expression] = STATE(1921), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), + [sym__expression] = STATE(1796), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1568), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_go] = ACTIONS(821), + [anon_sym_spawn] = ACTIONS(823), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(827), + [anon_sym_TILDE] = ACTIONS(811), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_LT_DASH] = ACTIONS(831), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(841), + [anon_sym_lock] = ACTIONS(843), + [anon_sym_rlock] = ACTIONS(843), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [463] = { - [sym__expression] = STATE(2856), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(1766), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1568), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_go] = ACTIONS(821), + [anon_sym_spawn] = ACTIONS(823), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(827), + [anon_sym_TILDE] = ACTIONS(811), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_LT_DASH] = ACTIONS(831), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(841), + [anon_sym_lock] = ACTIONS(843), + [anon_sym_rlock] = ACTIONS(843), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [464] = { - [sym__expression] = STATE(968), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [sym__expression] = STATE(2877), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [465] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2963), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2981), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(1283), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1328), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1322), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [466] = { - [sym__expression] = STATE(2489), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4017), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(1276), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1328), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1322), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4274), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [467] = { - [sym__expression] = STATE(2489), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4015), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(1276), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1328), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1322), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4251), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [468] = { - [sym__expression] = STATE(2489), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4010), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2828), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [469] = { - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3667), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(1276), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1328), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1322), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [470] = { - [sym__expression] = STATE(970), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [sym__expression] = STATE(1618), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(602), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2688), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [471] = { - [sym__expression] = STATE(2659), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(1620), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(602), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2688), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [472] = { - [sym__expression] = STATE(2489), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4017), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [ts_builtin_sym_end] = ACTIONS(2692), + [sym_identifier] = ACTIONS(2694), + [anon_sym_LF] = ACTIONS(2694), + [anon_sym_CR] = ACTIONS(2694), + [anon_sym_CR_LF] = ACTIONS(2694), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2694), + [anon_sym_as] = ACTIONS(2694), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_COMMA] = ACTIONS(2694), + [anon_sym_const] = ACTIONS(2694), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym_EQ] = ACTIONS(2694), + [anon_sym___global] = ACTIONS(2694), + [anon_sym_type] = ACTIONS(2694), + [anon_sym_PIPE] = ACTIONS(2694), + [anon_sym_fn] = ACTIONS(2694), + [anon_sym_PLUS] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(2694), + [anon_sym_SLASH] = ACTIONS(2694), + [anon_sym_PERCENT] = ACTIONS(2694), + [anon_sym_LT] = ACTIONS(2694), + [anon_sym_GT] = ACTIONS(2694), + [anon_sym_EQ_EQ] = ACTIONS(2694), + [anon_sym_BANG_EQ] = ACTIONS(2694), + [anon_sym_LT_EQ] = ACTIONS(2694), + [anon_sym_GT_EQ] = ACTIONS(2694), + [anon_sym_LBRACK] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2694), + [anon_sym_union] = ACTIONS(2694), + [anon_sym_pub] = ACTIONS(2694), + [anon_sym_mut] = ACTIONS(2694), + [anon_sym_enum] = ACTIONS(2694), + [anon_sym_interface] = ACTIONS(2694), + [anon_sym_PLUS_PLUS] = ACTIONS(2694), + [anon_sym_DASH_DASH] = ACTIONS(2694), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_BANG] = ACTIONS(2694), + [anon_sym_go] = ACTIONS(2694), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2694), + [anon_sym_LBRACK2] = ACTIONS(2694), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_CARET] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2694), + [anon_sym_LT_DASH] = ACTIONS(2694), + [anon_sym_LT_LT] = ACTIONS(2694), + [anon_sym_GT_GT] = ACTIONS(2694), + [anon_sym_GT_GT_GT] = ACTIONS(2694), + [anon_sym_AMP_CARET] = ACTIONS(2694), + [anon_sym_AMP_AMP] = ACTIONS(2694), + [anon_sym_PIPE_PIPE] = ACTIONS(2694), + [anon_sym_or] = ACTIONS(2694), + [sym_none] = ACTIONS(2694), + [sym_true] = ACTIONS(2694), + [sym_false] = ACTIONS(2694), + [sym_nil] = ACTIONS(2694), + [anon_sym_QMARK_DOT] = ACTIONS(2694), + [anon_sym_POUND_LBRACK] = ACTIONS(2694), + [anon_sym_if] = ACTIONS(2694), + [anon_sym_else] = ACTIONS(2694), + [anon_sym_DOLLARif] = ACTIONS(2694), + [anon_sym_is] = ACTIONS(2694), + [anon_sym_BANGis] = ACTIONS(2694), + [anon_sym_in] = ACTIONS(2694), + [anon_sym_BANGin] = ACTIONS(2694), + [anon_sym_match] = ACTIONS(2694), + [anon_sym_select] = ACTIONS(2694), + [anon_sym_STAR_EQ] = ACTIONS(2694), + [anon_sym_SLASH_EQ] = ACTIONS(2694), + [anon_sym_PERCENT_EQ] = ACTIONS(2694), + [anon_sym_LT_LT_EQ] = ACTIONS(2694), + [anon_sym_GT_GT_EQ] = ACTIONS(2694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2694), + [anon_sym_AMP_EQ] = ACTIONS(2694), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2694), + [anon_sym_PLUS_EQ] = ACTIONS(2694), + [anon_sym_DASH_EQ] = ACTIONS(2694), + [anon_sym_PIPE_EQ] = ACTIONS(2694), + [anon_sym_CARET_EQ] = ACTIONS(2694), + [anon_sym_COLON_EQ] = ACTIONS(2694), + [anon_sym_lock] = ACTIONS(2694), + [anon_sym_rlock] = ACTIONS(2694), + [anon_sym_unsafe] = ACTIONS(2694), + [anon_sym_sql] = ACTIONS(2694), + [sym_int_literal] = ACTIONS(2694), + [sym_float_literal] = ACTIONS(2694), + [sym_rune_literal] = ACTIONS(2694), + [anon_sym_AT] = ACTIONS(2694), + [anon_sym_shared] = ACTIONS(2694), + [anon_sym_map_LBRACK] = ACTIONS(2694), + [anon_sym_chan] = ACTIONS(2694), + [anon_sym_thread] = ACTIONS(2694), + [anon_sym_atomic] = ACTIONS(2694), + [anon_sym_assert] = ACTIONS(2694), + [anon_sym_defer] = ACTIONS(2694), + [anon_sym_goto] = ACTIONS(2694), + [anon_sym_break] = ACTIONS(2694), + [anon_sym_continue] = ACTIONS(2694), + [anon_sym_return] = ACTIONS(2694), + [anon_sym_DOLLARfor] = ACTIONS(2694), + [anon_sym_for] = ACTIONS(2694), + [anon_sym_POUND] = ACTIONS(2694), + [anon_sym_asm] = ACTIONS(2694), + [anon_sym_AT_LBRACK] = ACTIONS(2694), + [sym___double_quote] = ACTIONS(2694), + [sym___single_quote] = ACTIONS(2694), + [sym___c_double_quote] = ACTIONS(2694), + [sym___c_single_quote] = ACTIONS(2694), + [sym___r_double_quote] = ACTIONS(2694), + [sym___r_single_quote] = ACTIONS(2694), }, [473] = { - [sym__expression] = STATE(312), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), + [sym__expression] = STATE(2225), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(3669), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_go] = ACTIONS(2068), + [anon_sym_spawn] = ACTIONS(2070), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_CARET] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_LT_DASH] = ACTIONS(2076), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2078), + [anon_sym_lock] = ACTIONS(2080), + [anon_sym_rlock] = ACTIONS(2080), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [474] = { - [sym__expression] = STATE(2489), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4010), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1085), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(3008), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2977), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [475] = { - [sym__expression] = STATE(971), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [sym__expression] = STATE(1629), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(602), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2688), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [476] = { - [sym__expression] = STATE(2525), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(1626), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(602), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2688), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [477] = { - [sym__expression] = STATE(960), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [sym__expression] = STATE(1625), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(602), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2688), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [478] = { - [sym__expression] = STATE(2593), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(966), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2108), + [anon_sym_go] = ACTIONS(513), + [anon_sym_spawn] = ACTIONS(515), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_LT_DASH] = ACTIONS(2116), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(533), + [anon_sym_lock] = ACTIONS(535), + [anon_sym_rlock] = ACTIONS(535), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [479] = { - [sym__expression] = STATE(2187), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(984), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2700), + [anon_sym_go] = ACTIONS(2702), + [anon_sym_spawn] = ACTIONS(2704), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2696), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_LT_DASH] = ACTIONS(2708), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(2710), + [anon_sym_lock] = ACTIONS(2712), + [anon_sym_rlock] = ACTIONS(2712), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [480] = { - [sym__expression] = STATE(2552), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(1792), + [sym__expression_without_blocks] = STATE(1940), + [sym__expression_with_blocks] = STATE(1940), + [sym_inc_expression] = STATE(1940), + [sym_dec_expression] = STATE(1940), + [sym_or_block_expression] = STATE(1940), + [sym_option_propagation_expression] = STATE(1940), + [sym_result_propagation_expression] = STATE(1940), + [sym_anon_struct_value_expression] = STATE(1944), + [sym_go_expression] = STATE(1940), + [sym_spawn_expression] = STATE(1940), + [sym_parenthesized_expression] = STATE(1940), + [sym_call_expression] = STATE(1940), + [sym_type_initializer] = STATE(1944), + [sym_function_literal] = STATE(1940), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1940), + [sym_receive_expression] = STATE(1940), + [sym_binary_expression] = STATE(1940), + [sym_as_type_cast_expression] = STATE(1940), + [sym__max_group] = STATE(1940), + [sym_literal] = STATE(1940), + [sym_map_init_expression] = STATE(1944), + [sym_array_creation] = STATE(1940), + [sym_fixed_array_creation] = STATE(1940), + [sym_selector_expression] = STATE(1940), + [sym_index_expression] = STATE(1940), + [sym_slice_expression] = STATE(1940), + [sym_if_expression] = STATE(1944), + [sym_compile_time_if_expression] = STATE(1944), + [sym_is_expression] = STATE(1940), + [sym_not_is_expression] = STATE(1940), + [sym_in_expression] = STATE(1940), + [sym_not_in_expression] = STATE(1940), + [sym_enum_fetch] = STATE(1940), + [sym_match_expression] = STATE(1944), + [sym_select_expression] = STATE(1944), + [sym_lock_expression] = STATE(1944), + [sym_unsafe_expression] = STATE(1944), + [sym_sql_expression] = STATE(1944), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1940), + [sym_mutability_modifiers] = STATE(494), + [sym_plain_type] = STATE(4204), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2714), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(2718), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(2720), + [anon_sym_DOLLARif] = ACTIONS(2722), + [anon_sym_match] = ACTIONS(2724), + [anon_sym_select] = ACTIONS(2726), + [anon_sym_lock] = ACTIONS(2728), + [anon_sym_rlock] = ACTIONS(2728), + [anon_sym_unsafe] = ACTIONS(2730), + [anon_sym_sql] = ACTIONS(2732), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [481] = { - [sym__expression] = STATE(2146), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4309), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(378), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_mutability_modifiers] = STATE(560), + [sym_plain_type] = STATE(4205), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2508), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(481), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(483), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(485), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [482] = { - [sym__expression] = STATE(2617), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(294), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_mutability_modifiers] = STATE(560), + [sym_plain_type] = STATE(4117), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2508), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(481), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(483), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(485), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [483] = { - [sym__expression] = STATE(2146), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4315), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(2647), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [484] = { - [sym__expression] = STATE(978), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [sym__expression] = STATE(365), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_mutability_modifiers] = STATE(560), + [sym_plain_type] = STATE(4117), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2508), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(481), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(483), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(485), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [485] = { - [sym__expression] = STATE(2146), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4338), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(1628), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(602), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2688), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [486] = { - [sym__expression] = STATE(2616), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2767), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3659), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [487] = { - [sym__expression] = STATE(2485), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(1800), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1568), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_go] = ACTIONS(821), + [anon_sym_spawn] = ACTIONS(823), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(827), + [anon_sym_TILDE] = ACTIONS(811), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_LT_DASH] = ACTIONS(831), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(841), + [anon_sym_lock] = ACTIONS(843), + [anon_sym_rlock] = ACTIONS(843), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [488] = { - [sym__expression] = STATE(2757), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2997), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2941), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [489] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2991), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2992), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(1623), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(602), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2688), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [490] = { - [sym__expression] = STATE(2735), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(2796), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [491] = { - [sym__expression] = STATE(2498), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2225), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [492] = { - [sym__expression] = STATE(1671), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4340), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), + [sym__expression] = STATE(2225), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3671), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [493] = { - [sym__expression] = STATE(2494), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(1627), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(602), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2688), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [494] = { - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2863), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [495] = { - [sym__expression] = STATE(1671), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4335), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), + [sym__expression] = STATE(2225), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3670), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [496] = { - [sym__expression] = STATE(1671), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4312), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), + [sym__expression] = STATE(2811), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [497] = { - [sym__expression] = STATE(2489), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2321), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [498] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2944), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2936), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(2314), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [499] = { - [sym__expression] = STATE(2501), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2467), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [500] = { - [sym__expression] = STATE(2678), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3667), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [ts_builtin_sym_end] = ACTIONS(2734), + [sym_identifier] = ACTIONS(2736), + [anon_sym_LF] = ACTIONS(2736), + [anon_sym_CR] = ACTIONS(2736), + [anon_sym_CR_LF] = ACTIONS(2736), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2736), + [anon_sym_as] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2736), + [anon_sym_COMMA] = ACTIONS(2736), + [anon_sym_const] = ACTIONS(2736), + [anon_sym_LPAREN] = ACTIONS(2736), + [anon_sym_EQ] = ACTIONS(2736), + [anon_sym___global] = ACTIONS(2736), + [anon_sym_type] = ACTIONS(2736), + [anon_sym_PIPE] = ACTIONS(2736), + [anon_sym_fn] = ACTIONS(2736), + [anon_sym_PLUS] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2736), + [anon_sym_STAR] = ACTIONS(2736), + [anon_sym_SLASH] = ACTIONS(2736), + [anon_sym_PERCENT] = ACTIONS(2736), + [anon_sym_LT] = ACTIONS(2736), + [anon_sym_GT] = ACTIONS(2736), + [anon_sym_EQ_EQ] = ACTIONS(2736), + [anon_sym_BANG_EQ] = ACTIONS(2736), + [anon_sym_LT_EQ] = ACTIONS(2736), + [anon_sym_GT_EQ] = ACTIONS(2736), + [anon_sym_LBRACK] = ACTIONS(2734), + [anon_sym_struct] = ACTIONS(2736), + [anon_sym_union] = ACTIONS(2736), + [anon_sym_pub] = ACTIONS(2736), + [anon_sym_mut] = ACTIONS(2736), + [anon_sym_enum] = ACTIONS(2736), + [anon_sym_interface] = ACTIONS(2736), + [anon_sym_PLUS_PLUS] = ACTIONS(2736), + [anon_sym_DASH_DASH] = ACTIONS(2736), + [anon_sym_QMARK] = ACTIONS(2736), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_go] = ACTIONS(2736), + [anon_sym_spawn] = ACTIONS(2736), + [anon_sym_json_DOTdecode] = ACTIONS(2736), + [anon_sym_LBRACK2] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_CARET] = ACTIONS(2736), + [anon_sym_AMP] = ACTIONS(2736), + [anon_sym_LT_DASH] = ACTIONS(2736), + [anon_sym_LT_LT] = ACTIONS(2736), + [anon_sym_GT_GT] = ACTIONS(2736), + [anon_sym_GT_GT_GT] = ACTIONS(2736), + [anon_sym_AMP_CARET] = ACTIONS(2736), + [anon_sym_AMP_AMP] = ACTIONS(2736), + [anon_sym_PIPE_PIPE] = ACTIONS(2736), + [anon_sym_or] = ACTIONS(2736), + [sym_none] = ACTIONS(2736), + [sym_true] = ACTIONS(2736), + [sym_false] = ACTIONS(2736), + [sym_nil] = ACTIONS(2736), + [anon_sym_QMARK_DOT] = ACTIONS(2736), + [anon_sym_POUND_LBRACK] = ACTIONS(2736), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_DOLLARif] = ACTIONS(2736), + [anon_sym_DOLLARelse] = ACTIONS(2736), + [anon_sym_is] = ACTIONS(2736), + [anon_sym_BANGis] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2736), + [anon_sym_BANGin] = ACTIONS(2736), + [anon_sym_match] = ACTIONS(2736), + [anon_sym_select] = ACTIONS(2736), + [anon_sym_STAR_EQ] = ACTIONS(2736), + [anon_sym_SLASH_EQ] = ACTIONS(2736), + [anon_sym_PERCENT_EQ] = ACTIONS(2736), + [anon_sym_LT_LT_EQ] = ACTIONS(2736), + [anon_sym_GT_GT_EQ] = ACTIONS(2736), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2736), + [anon_sym_AMP_EQ] = ACTIONS(2736), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2736), + [anon_sym_PLUS_EQ] = ACTIONS(2736), + [anon_sym_DASH_EQ] = ACTIONS(2736), + [anon_sym_PIPE_EQ] = ACTIONS(2736), + [anon_sym_CARET_EQ] = ACTIONS(2736), + [anon_sym_COLON_EQ] = ACTIONS(2736), + [anon_sym_lock] = ACTIONS(2736), + [anon_sym_rlock] = ACTIONS(2736), + [anon_sym_unsafe] = ACTIONS(2736), + [anon_sym_sql] = ACTIONS(2736), + [sym_int_literal] = ACTIONS(2736), + [sym_float_literal] = ACTIONS(2736), + [sym_rune_literal] = ACTIONS(2736), + [anon_sym_AT] = ACTIONS(2736), + [anon_sym_shared] = ACTIONS(2736), + [anon_sym_map_LBRACK] = ACTIONS(2736), + [anon_sym_chan] = ACTIONS(2736), + [anon_sym_thread] = ACTIONS(2736), + [anon_sym_atomic] = ACTIONS(2736), + [anon_sym_assert] = ACTIONS(2736), + [anon_sym_defer] = ACTIONS(2736), + [anon_sym_goto] = ACTIONS(2736), + [anon_sym_break] = ACTIONS(2736), + [anon_sym_continue] = ACTIONS(2736), + [anon_sym_return] = ACTIONS(2736), + [anon_sym_DOLLARfor] = ACTIONS(2736), + [anon_sym_for] = ACTIONS(2736), + [anon_sym_POUND] = ACTIONS(2736), + [anon_sym_asm] = ACTIONS(2736), + [anon_sym_AT_LBRACK] = ACTIONS(2736), + [sym___double_quote] = ACTIONS(2736), + [sym___single_quote] = ACTIONS(2736), + [sym___c_double_quote] = ACTIONS(2736), + [sym___c_single_quote] = ACTIONS(2736), + [sym___r_double_quote] = ACTIONS(2736), + [sym___r_single_quote] = ACTIONS(2736), }, [501] = { - [ts_builtin_sym_end] = ACTIONS(2698), - [sym_identifier] = ACTIONS(2700), - [anon_sym_LF] = ACTIONS(2700), - [anon_sym_CR] = ACTIONS(2700), - [anon_sym_CR_LF] = ACTIONS(2700), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_COMMA] = ACTIONS(2700), - [anon_sym_const] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_EQ] = ACTIONS(2700), - [anon_sym___global] = ACTIONS(2700), - [anon_sym_type] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_union] = ACTIONS(2700), - [anon_sym_pub] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_enum] = ACTIONS(2700), - [anon_sym_interface] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2700), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2700), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2700), - [anon_sym_AMP_CARET] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2700), - [anon_sym_POUND_LBRACK] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_else] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2700), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2700), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_STAR_EQ] = ACTIONS(2700), - [anon_sym_SLASH_EQ] = ACTIONS(2700), - [anon_sym_PERCENT_EQ] = ACTIONS(2700), - [anon_sym_LT_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_GT_EQ] = ACTIONS(2700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2700), - [anon_sym_AMP_EQ] = ACTIONS(2700), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2700), - [anon_sym_PLUS_EQ] = ACTIONS(2700), - [anon_sym_DASH_EQ] = ACTIONS(2700), - [anon_sym_PIPE_EQ] = ACTIONS(2700), - [anon_sym_CARET_EQ] = ACTIONS(2700), - [anon_sym_COLON_EQ] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), - [sym_rune_literal] = ACTIONS(2700), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2700), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [anon_sym_assert] = ACTIONS(2700), - [anon_sym_defer] = ACTIONS(2700), - [anon_sym_goto] = ACTIONS(2700), - [anon_sym_break] = ACTIONS(2700), - [anon_sym_continue] = ACTIONS(2700), - [anon_sym_return] = ACTIONS(2700), - [anon_sym_DOLLARfor] = ACTIONS(2700), - [anon_sym_for] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(2700), - [anon_sym_asm] = ACTIONS(2700), - [anon_sym_AT_LBRACK] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2700), - [sym___single_quote] = ACTIONS(2700), - [sym___c_double_quote] = ACTIONS(2700), - [sym___c_single_quote] = ACTIONS(2700), - [sym___r_double_quote] = ACTIONS(2700), - [sym___r_single_quote] = ACTIONS(2700), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2942), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2940), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [502] = { - [sym__expression] = STATE(2554), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2650), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [503] = { - [sym__expression] = STATE(2147), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [504] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3684), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2080), + [sym__expression] = STATE(2824), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3659), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [505] = { - [sym__expression] = STATE(2614), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(3005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(3007), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [506] = { - [sym__expression] = STATE(2286), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(2679), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [507] = { - [sym__expression] = STATE(2291), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(2465), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [508] = { - [sym__expression] = STATE(2516), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2225), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3669), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [509] = { - [sym__expression] = STATE(2521), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(378), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_mutability_modifiers] = STATE(560), + [sym_plain_type] = STATE(4307), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2508), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(481), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(483), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(485), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [510] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2080), + [sym__expression] = STATE(2219), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [511] = { - [sym__expression] = STATE(2610), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2820), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3659), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [512] = { - [sym__expression] = STATE(2146), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(2323), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [513] = { - [sym__expression] = STATE(2559), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2635), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [514] = { - [sym__expression] = STATE(2517), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(1794), + [sym__expression_without_blocks] = STATE(1940), + [sym__expression_with_blocks] = STATE(1940), + [sym_inc_expression] = STATE(1940), + [sym_dec_expression] = STATE(1940), + [sym_or_block_expression] = STATE(1940), + [sym_option_propagation_expression] = STATE(1940), + [sym_result_propagation_expression] = STATE(1940), + [sym_anon_struct_value_expression] = STATE(1944), + [sym_go_expression] = STATE(1940), + [sym_spawn_expression] = STATE(1940), + [sym_parenthesized_expression] = STATE(1940), + [sym_call_expression] = STATE(1940), + [sym_type_initializer] = STATE(1944), + [sym_function_literal] = STATE(1940), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1940), + [sym_receive_expression] = STATE(1940), + [sym_binary_expression] = STATE(1940), + [sym_as_type_cast_expression] = STATE(1940), + [sym__max_group] = STATE(1940), + [sym_literal] = STATE(1940), + [sym_map_init_expression] = STATE(1944), + [sym_array_creation] = STATE(1940), + [sym_fixed_array_creation] = STATE(1940), + [sym_selector_expression] = STATE(1940), + [sym_index_expression] = STATE(1940), + [sym_slice_expression] = STATE(1940), + [sym_if_expression] = STATE(1944), + [sym_compile_time_if_expression] = STATE(1944), + [sym_is_expression] = STATE(1940), + [sym_not_is_expression] = STATE(1940), + [sym_in_expression] = STATE(1940), + [sym_not_in_expression] = STATE(1940), + [sym_enum_fetch] = STATE(1940), + [sym_match_expression] = STATE(1944), + [sym_select_expression] = STATE(1944), + [sym_lock_expression] = STATE(1944), + [sym_unsafe_expression] = STATE(1944), + [sym_sql_expression] = STATE(1944), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1940), + [sym_mutability_modifiers] = STATE(494), + [sym_plain_type] = STATE(4204), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2714), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(2718), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(2720), + [anon_sym_DOLLARif] = ACTIONS(2722), + [anon_sym_match] = ACTIONS(2724), + [anon_sym_select] = ACTIONS(2726), + [anon_sym_lock] = ACTIONS(2728), + [anon_sym_rlock] = ACTIONS(2728), + [anon_sym_unsafe] = ACTIONS(2730), + [anon_sym_sql] = ACTIONS(2732), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [515] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2965), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2966), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2636), + [anon_sym_go] = ACTIONS(2638), + [anon_sym_spawn] = ACTIONS(2640), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_CARET] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2646), + [anon_sym_LT_DASH] = ACTIONS(2648), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2658), + [anon_sym_lock] = ACTIONS(2660), + [anon_sym_rlock] = ACTIONS(2660), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [516] = { - [sym__expression] = STATE(2628), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2314), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4222), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [517] = { - [sym__expression] = STATE(2626), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(2294), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2636), + [anon_sym_go] = ACTIONS(2638), + [anon_sym_spawn] = ACTIONS(2640), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_CARET] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2646), + [anon_sym_LT_DASH] = ACTIONS(2648), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2658), + [anon_sym_lock] = ACTIONS(2660), + [anon_sym_rlock] = ACTIONS(2660), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [518] = { - [sym__expression] = STATE(2187), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(2314), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4229), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [519] = { - [sym__expression] = STATE(2609), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2314), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [520] = { - [sym__expression] = STATE(1674), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), + [sym__expression] = STATE(361), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_mutability_modifiers] = STATE(560), + [sym_plain_type] = STATE(4117), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2508), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(481), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(483), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(485), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [521] = { - [sym_type_parameters] = STATE(945), - [ts_builtin_sym_end] = ACTIONS(2702), - [sym_identifier] = ACTIONS(2704), - [anon_sym_LF] = ACTIONS(2704), - [anon_sym_CR] = ACTIONS(2704), - [anon_sym_CR_LF] = ACTIONS(2704), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_as] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_COMMA] = ACTIONS(2704), - [anon_sym_const] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_EQ] = ACTIONS(2704), - [anon_sym___global] = ACTIONS(2704), - [anon_sym_type] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_SLASH] = ACTIONS(2704), - [anon_sym_PERCENT] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_EQ_EQ] = ACTIONS(2704), - [anon_sym_BANG_EQ] = ACTIONS(2704), - [anon_sym_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_EQ] = ACTIONS(2704), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_union] = ACTIONS(2704), - [anon_sym_pub] = ACTIONS(2704), - [anon_sym_mut] = ACTIONS(2704), - [anon_sym_enum] = ACTIONS(2704), - [anon_sym_interface] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_go] = ACTIONS(2704), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2704), - [anon_sym_LBRACK2] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_CARET] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_LT_DASH] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2704), - [anon_sym_GT_GT] = ACTIONS(2704), - [anon_sym_GT_GT_GT] = ACTIONS(2704), - [anon_sym_AMP_CARET] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_PIPE_PIPE] = ACTIONS(2704), - [anon_sym_or] = ACTIONS(2704), - [sym_none] = ACTIONS(2704), - [sym_true] = ACTIONS(2704), - [sym_false] = ACTIONS(2704), - [sym_nil] = ACTIONS(2704), - [anon_sym_QMARK_DOT] = ACTIONS(2704), - [anon_sym_POUND_LBRACK] = ACTIONS(2704), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_DOLLARif] = ACTIONS(2704), - [anon_sym_is] = ACTIONS(2704), - [anon_sym_BANGis] = ACTIONS(2704), - [anon_sym_in] = ACTIONS(2704), - [anon_sym_BANGin] = ACTIONS(2704), - [anon_sym_match] = ACTIONS(2704), - [anon_sym_select] = ACTIONS(2704), - [anon_sym_STAR_EQ] = ACTIONS(2704), - [anon_sym_SLASH_EQ] = ACTIONS(2704), - [anon_sym_PERCENT_EQ] = ACTIONS(2704), - [anon_sym_LT_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_GT_EQ] = ACTIONS(2704), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2704), - [anon_sym_AMP_EQ] = ACTIONS(2704), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2704), - [anon_sym_PLUS_EQ] = ACTIONS(2704), - [anon_sym_DASH_EQ] = ACTIONS(2704), - [anon_sym_PIPE_EQ] = ACTIONS(2704), - [anon_sym_CARET_EQ] = ACTIONS(2704), - [anon_sym_COLON_EQ] = ACTIONS(2704), - [anon_sym_lock] = ACTIONS(2704), - [anon_sym_rlock] = ACTIONS(2704), - [anon_sym_unsafe] = ACTIONS(2704), - [anon_sym_sql] = ACTIONS(2704), - [sym_int_literal] = ACTIONS(2704), - [sym_float_literal] = ACTIONS(2704), - [sym_rune_literal] = ACTIONS(2704), - [anon_sym_AT] = ACTIONS(2704), - [anon_sym_shared] = ACTIONS(2704), - [anon_sym_map_LBRACK] = ACTIONS(2704), - [anon_sym_chan] = ACTIONS(2704), - [anon_sym_thread] = ACTIONS(2704), - [anon_sym_atomic] = ACTIONS(2704), - [anon_sym_assert] = ACTIONS(2704), - [anon_sym_defer] = ACTIONS(2704), - [anon_sym_goto] = ACTIONS(2704), - [anon_sym_break] = ACTIONS(2704), - [anon_sym_continue] = ACTIONS(2704), - [anon_sym_return] = ACTIONS(2704), - [anon_sym_DOLLARfor] = ACTIONS(2704), - [anon_sym_for] = ACTIONS(2704), - [anon_sym_POUND] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2704), - [anon_sym_AT_LBRACK] = ACTIONS(2704), - [sym___double_quote] = ACTIONS(2704), - [sym___single_quote] = ACTIONS(2704), - [sym___c_double_quote] = ACTIONS(2704), - [sym___c_single_quote] = ACTIONS(2704), - [sym___r_double_quote] = ACTIONS(2704), - [sym___r_single_quote] = ACTIONS(2704), + [sym__expression] = STATE(2293), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2636), + [anon_sym_go] = ACTIONS(2638), + [anon_sym_spawn] = ACTIONS(2640), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_CARET] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2646), + [anon_sym_LT_DASH] = ACTIONS(2648), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2658), + [anon_sym_lock] = ACTIONS(2660), + [anon_sym_rlock] = ACTIONS(2660), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [522] = { - [sym__expression] = STATE(1816), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), + [sym__expression] = STATE(2856), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [523] = { - [sym__expression] = STATE(1764), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), + [sym__expression] = STATE(2653), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [524] = { - [sym__expression] = STATE(1771), - [sym__expression_without_blocks] = STATE(2104), - [sym__expression_with_blocks] = STATE(2104), - [sym_inc_expression] = STATE(2104), - [sym_dec_expression] = STATE(2104), - [sym_or_block_expression] = STATE(2104), - [sym_option_propagation_expression] = STATE(2104), - [sym_result_propagation_expression] = STATE(2104), - [sym_anon_struct_value_expression] = STATE(2119), - [sym_go_expression] = STATE(2104), - [sym_spawn_expression] = STATE(2104), - [sym_parenthesized_expression] = STATE(2104), - [sym_call_expression] = STATE(2104), - [sym_type_initializer] = STATE(2119), - [sym_function_literal] = STATE(2104), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2104), - [sym_receive_expression] = STATE(2104), - [sym_binary_expression] = STATE(2104), - [sym_as_type_cast_expression] = STATE(2104), - [sym__max_group] = STATE(2104), - [sym_literal] = STATE(2104), - [sym_map_init_expression] = STATE(2119), - [sym_array_creation] = STATE(2104), - [sym_fixed_array_creation] = STATE(2104), - [sym_selector_expression] = STATE(2104), - [sym_index_expression] = STATE(2104), - [sym_slice_expression] = STATE(2104), - [sym_if_expression] = STATE(2119), - [sym_compile_time_if_expression] = STATE(2119), - [sym_is_expression] = STATE(2104), - [sym_not_is_expression] = STATE(2104), - [sym_in_expression] = STATE(2104), - [sym_not_in_expression] = STATE(2104), - [sym_enum_fetch] = STATE(2104), - [sym_match_expression] = STATE(2119), - [sym_select_expression] = STATE(2119), - [sym_lock_expression] = STATE(2119), - [sym_unsafe_expression] = STATE(2119), - [sym_sql_expression] = STATE(2119), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(2104), - [sym_mutability_modifiers] = STATE(835), - [sym_plain_type] = STATE(4174), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2706), + [sym__expression] = STATE(2642), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2720), - [anon_sym_rlock] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [525] = { - [sym__expression] = STATE(1673), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), + [sym__expression] = STATE(2864), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [526] = { - [sym__expression] = STATE(1672), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), + [ts_builtin_sym_end] = ACTIONS(2738), + [sym_identifier] = ACTIONS(2740), + [anon_sym_LF] = ACTIONS(2740), + [anon_sym_CR] = ACTIONS(2740), + [anon_sym_CR_LF] = ACTIONS(2740), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2740), + [anon_sym_as] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_COMMA] = ACTIONS(2740), + [anon_sym_const] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(2740), + [anon_sym_EQ] = ACTIONS(2740), + [anon_sym___global] = ACTIONS(2740), + [anon_sym_type] = ACTIONS(2740), + [anon_sym_PIPE] = ACTIONS(2740), + [anon_sym_fn] = ACTIONS(2740), + [anon_sym_PLUS] = ACTIONS(2740), + [anon_sym_DASH] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_SLASH] = ACTIONS(2740), + [anon_sym_PERCENT] = ACTIONS(2740), + [anon_sym_LT] = ACTIONS(2740), + [anon_sym_GT] = ACTIONS(2740), + [anon_sym_EQ_EQ] = ACTIONS(2740), + [anon_sym_BANG_EQ] = ACTIONS(2740), + [anon_sym_LT_EQ] = ACTIONS(2740), + [anon_sym_GT_EQ] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(2745), + [anon_sym_struct] = ACTIONS(2740), + [anon_sym_union] = ACTIONS(2740), + [anon_sym_pub] = ACTIONS(2740), + [anon_sym_mut] = ACTIONS(2740), + [anon_sym_COLON] = ACTIONS(2748), + [anon_sym_enum] = ACTIONS(2740), + [anon_sym_interface] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2740), + [anon_sym_DASH_DASH] = ACTIONS(2740), + [anon_sym_QMARK] = ACTIONS(2740), + [anon_sym_BANG] = ACTIONS(2740), + [anon_sym_go] = ACTIONS(2740), + [anon_sym_spawn] = ACTIONS(2740), + [anon_sym_json_DOTdecode] = ACTIONS(2740), + [anon_sym_LBRACK2] = ACTIONS(2740), + [anon_sym_TILDE] = ACTIONS(2740), + [anon_sym_CARET] = ACTIONS(2740), + [anon_sym_AMP] = ACTIONS(2740), + [anon_sym_LT_DASH] = ACTIONS(2740), + [anon_sym_LT_LT] = ACTIONS(2740), + [anon_sym_GT_GT] = ACTIONS(2740), + [anon_sym_GT_GT_GT] = ACTIONS(2740), + [anon_sym_AMP_CARET] = ACTIONS(2740), + [anon_sym_AMP_AMP] = ACTIONS(2740), + [anon_sym_PIPE_PIPE] = ACTIONS(2740), + [anon_sym_or] = ACTIONS(2740), + [sym_none] = ACTIONS(2740), + [sym_true] = ACTIONS(2740), + [sym_false] = ACTIONS(2740), + [sym_nil] = ACTIONS(2740), + [anon_sym_QMARK_DOT] = ACTIONS(2740), + [anon_sym_POUND_LBRACK] = ACTIONS(2740), + [anon_sym_if] = ACTIONS(2740), + [anon_sym_DOLLARif] = ACTIONS(2740), + [anon_sym_is] = ACTIONS(2740), + [anon_sym_BANGis] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2740), + [anon_sym_BANGin] = ACTIONS(2740), + [anon_sym_match] = ACTIONS(2740), + [anon_sym_select] = ACTIONS(2740), + [anon_sym_STAR_EQ] = ACTIONS(2740), + [anon_sym_SLASH_EQ] = ACTIONS(2740), + [anon_sym_PERCENT_EQ] = ACTIONS(2740), + [anon_sym_LT_LT_EQ] = ACTIONS(2740), + [anon_sym_GT_GT_EQ] = ACTIONS(2740), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2740), + [anon_sym_AMP_EQ] = ACTIONS(2740), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2740), + [anon_sym_PLUS_EQ] = ACTIONS(2740), + [anon_sym_DASH_EQ] = ACTIONS(2740), + [anon_sym_PIPE_EQ] = ACTIONS(2740), + [anon_sym_CARET_EQ] = ACTIONS(2740), + [anon_sym_COLON_EQ] = ACTIONS(2740), + [anon_sym_lock] = ACTIONS(2740), + [anon_sym_rlock] = ACTIONS(2740), + [anon_sym_unsafe] = ACTIONS(2740), + [anon_sym_sql] = ACTIONS(2740), + [sym_int_literal] = ACTIONS(2740), + [sym_float_literal] = ACTIONS(2740), + [sym_rune_literal] = ACTIONS(2740), + [anon_sym_AT] = ACTIONS(2740), + [anon_sym_shared] = ACTIONS(2740), + [anon_sym_map_LBRACK] = ACTIONS(2740), + [anon_sym_chan] = ACTIONS(2740), + [anon_sym_thread] = ACTIONS(2740), + [anon_sym_atomic] = ACTIONS(2740), + [anon_sym_assert] = ACTIONS(2740), + [anon_sym_defer] = ACTIONS(2740), + [anon_sym_goto] = ACTIONS(2740), + [anon_sym_break] = ACTIONS(2740), + [anon_sym_continue] = ACTIONS(2740), + [anon_sym_return] = ACTIONS(2740), + [anon_sym_DOLLARfor] = ACTIONS(2740), + [anon_sym_for] = ACTIONS(2740), + [anon_sym_POUND] = ACTIONS(2740), + [anon_sym_asm] = ACTIONS(2740), + [anon_sym_AT_LBRACK] = ACTIONS(2740), + [sym___double_quote] = ACTIONS(2740), + [sym___single_quote] = ACTIONS(2740), + [sym___c_double_quote] = ACTIONS(2740), + [sym___c_single_quote] = ACTIONS(2740), + [sym___r_double_quote] = ACTIONS(2740), + [sym___r_single_quote] = ACTIONS(2740), }, [527] = { - [sym__expression] = STATE(1771), - [sym__expression_without_blocks] = STATE(2104), - [sym__expression_with_blocks] = STATE(2104), - [sym_inc_expression] = STATE(2104), - [sym_dec_expression] = STATE(2104), - [sym_or_block_expression] = STATE(2104), - [sym_option_propagation_expression] = STATE(2104), - [sym_result_propagation_expression] = STATE(2104), - [sym_anon_struct_value_expression] = STATE(2119), - [sym_go_expression] = STATE(2104), - [sym_spawn_expression] = STATE(2104), - [sym_parenthesized_expression] = STATE(2104), - [sym_call_expression] = STATE(2104), - [sym_type_initializer] = STATE(2119), - [sym_function_literal] = STATE(2104), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2104), - [sym_receive_expression] = STATE(2104), - [sym_binary_expression] = STATE(2104), - [sym_as_type_cast_expression] = STATE(2104), - [sym__max_group] = STATE(2104), - [sym_literal] = STATE(2104), - [sym_map_init_expression] = STATE(2119), - [sym_array_creation] = STATE(2104), - [sym_fixed_array_creation] = STATE(2104), - [sym_selector_expression] = STATE(2104), - [sym_index_expression] = STATE(2104), - [sym_slice_expression] = STATE(2104), - [sym_if_expression] = STATE(2119), - [sym_compile_time_if_expression] = STATE(2119), - [sym_is_expression] = STATE(2104), - [sym_not_is_expression] = STATE(2104), - [sym_in_expression] = STATE(2104), - [sym_not_in_expression] = STATE(2104), - [sym_enum_fetch] = STATE(2104), - [sym_match_expression] = STATE(2119), - [sym_select_expression] = STATE(2119), - [sym_lock_expression] = STATE(2119), - [sym_unsafe_expression] = STATE(2119), - [sym_sql_expression] = STATE(2119), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(2104), - [sym_mutability_modifiers] = STATE(835), - [sym_plain_type] = STATE(4172), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2706), + [sym__expression] = STATE(2499), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4108), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2720), - [anon_sym_rlock] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(2754), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2426), + [anon_sym_lock] = ACTIONS(2428), + [anon_sym_rlock] = ACTIONS(2428), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [528] = { - [sym__expression] = STATE(1771), - [sym__expression_without_blocks] = STATE(2104), - [sym__expression_with_blocks] = STATE(2104), - [sym_inc_expression] = STATE(2104), - [sym_dec_expression] = STATE(2104), - [sym_or_block_expression] = STATE(2104), - [sym_option_propagation_expression] = STATE(2104), - [sym_result_propagation_expression] = STATE(2104), - [sym_anon_struct_value_expression] = STATE(2119), - [sym_go_expression] = STATE(2104), - [sym_spawn_expression] = STATE(2104), - [sym_parenthesized_expression] = STATE(2104), - [sym_call_expression] = STATE(2104), - [sym_type_initializer] = STATE(2119), - [sym_function_literal] = STATE(2104), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2104), - [sym_receive_expression] = STATE(2104), - [sym_binary_expression] = STATE(2104), - [sym_as_type_cast_expression] = STATE(2104), - [sym__max_group] = STATE(2104), - [sym_literal] = STATE(2104), - [sym_map_init_expression] = STATE(2119), - [sym_array_creation] = STATE(2104), - [sym_fixed_array_creation] = STATE(2104), - [sym_selector_expression] = STATE(2104), - [sym_index_expression] = STATE(2104), - [sym_slice_expression] = STATE(2104), - [sym_if_expression] = STATE(2119), - [sym_compile_time_if_expression] = STATE(2119), - [sym_is_expression] = STATE(2104), - [sym_not_is_expression] = STATE(2104), - [sym_in_expression] = STATE(2104), - [sym_not_in_expression] = STATE(2104), - [sym_enum_fetch] = STATE(2104), - [sym_match_expression] = STATE(2119), - [sym_select_expression] = STATE(2119), - [sym_lock_expression] = STATE(2119), - [sym_unsafe_expression] = STATE(2119), - [sym_sql_expression] = STATE(2119), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(2104), - [sym_mutability_modifiers] = STATE(835), - [sym_plain_type] = STATE(4170), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2706), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2985), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2984), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2720), - [anon_sym_rlock] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [529] = { - [sym__expression] = STATE(1671), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), + [sym__expression] = STATE(2663), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [530] = { - [sym__expression] = STATE(2868), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2726), + [sym__expression] = STATE(1658), + [sym__expression_without_blocks] = STATE(1820), + [sym__expression_with_blocks] = STATE(1820), + [sym_inc_expression] = STATE(1820), + [sym_dec_expression] = STATE(1820), + [sym_or_block_expression] = STATE(1820), + [sym_option_propagation_expression] = STATE(1820), + [sym_result_propagation_expression] = STATE(1820), + [sym_anon_struct_value_expression] = STATE(1814), + [sym_go_expression] = STATE(1820), + [sym_spawn_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1820), + [sym_call_expression] = STATE(1820), + [sym_type_initializer] = STATE(1814), + [sym_function_literal] = STATE(1820), + [sym_reference_expression] = STATE(1813), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1820), + [sym_receive_expression] = STATE(1820), + [sym_binary_expression] = STATE(1820), + [sym_as_type_cast_expression] = STATE(1820), + [sym__max_group] = STATE(1820), + [sym_literal] = STATE(1820), + [sym_map_init_expression] = STATE(1814), + [sym_array_creation] = STATE(1820), + [sym_fixed_array_creation] = STATE(1820), + [sym_selector_expression] = STATE(1820), + [sym_index_expression] = STATE(1820), + [sym_slice_expression] = STATE(1820), + [sym_if_expression] = STATE(1814), + [sym_compile_time_if_expression] = STATE(1814), + [sym_is_expression] = STATE(1820), + [sym_not_is_expression] = STATE(1820), + [sym_in_expression] = STATE(1820), + [sym_not_in_expression] = STATE(1820), + [sym_enum_fetch] = STATE(1820), + [sym_match_expression] = STATE(1814), + [sym_select_expression] = STATE(1814), + [sym_lock_expression] = STATE(1814), + [sym_unsafe_expression] = STATE(1814), + [sym_sql_expression] = STATE(1814), + [sym_c_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_interpreted_string_literal] = STATE(1819), + [sym_pseudo_compile_time_identifier] = STATE(1820), + [sym_mutability_modifiers] = STATE(464), + [sym_plain_type] = STATE(4111), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2524), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_fn] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2534), + [anon_sym_STAR] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2538), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_go] = ACTIONS(2542), + [anon_sym_spawn] = ACTIONS(2544), + [anon_sym_json_DOTdecode] = ACTIONS(2546), + [anon_sym_LBRACK2] = ACTIONS(2548), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2550), + [anon_sym_LT_DASH] = ACTIONS(2552), + [sym_none] = ACTIONS(2554), + [sym_true] = ACTIONS(2554), + [sym_false] = ACTIONS(2554), + [sym_nil] = ACTIONS(2554), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_DOLLARif] = ACTIONS(2558), + [anon_sym_match] = ACTIONS(2560), + [anon_sym_select] = ACTIONS(2562), + [anon_sym_lock] = ACTIONS(2564), + [anon_sym_rlock] = ACTIONS(2564), + [anon_sym_unsafe] = ACTIONS(2566), + [anon_sym_sql] = ACTIONS(2568), + [sym_int_literal] = ACTIONS(2554), + [sym_float_literal] = ACTIONS(2570), + [sym_rune_literal] = ACTIONS(2570), + [anon_sym_AT] = ACTIONS(2572), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2574), + [sym___single_quote] = ACTIONS(2576), + [sym___c_double_quote] = ACTIONS(2578), + [sym___c_single_quote] = ACTIONS(2580), + [sym___r_double_quote] = ACTIONS(2582), + [sym___r_single_quote] = ACTIONS(2584), }, [531] = { - [sym__expression] = STATE(2625), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(2797), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3659), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [532] = { - [sym__expression] = STATE(1786), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(3004), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2955), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [533] = { - [sym__expression] = STATE(1764), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), + [sym__expression] = STATE(2681), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [534] = { - [sym__expression] = STATE(1765), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), + [sym__expression] = STATE(1777), + [sym__expression_without_blocks] = STATE(1940), + [sym__expression_with_blocks] = STATE(1940), + [sym_inc_expression] = STATE(1940), + [sym_dec_expression] = STATE(1940), + [sym_or_block_expression] = STATE(1940), + [sym_option_propagation_expression] = STATE(1940), + [sym_result_propagation_expression] = STATE(1940), + [sym_anon_struct_value_expression] = STATE(1944), + [sym_go_expression] = STATE(1940), + [sym_spawn_expression] = STATE(1940), + [sym_parenthesized_expression] = STATE(1940), + [sym_call_expression] = STATE(1940), + [sym_type_initializer] = STATE(1944), + [sym_function_literal] = STATE(1940), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1940), + [sym_receive_expression] = STATE(1940), + [sym_binary_expression] = STATE(1940), + [sym_as_type_cast_expression] = STATE(1940), + [sym__max_group] = STATE(1940), + [sym_literal] = STATE(1940), + [sym_map_init_expression] = STATE(1944), + [sym_array_creation] = STATE(1940), + [sym_fixed_array_creation] = STATE(1940), + [sym_selector_expression] = STATE(1940), + [sym_index_expression] = STATE(1940), + [sym_slice_expression] = STATE(1940), + [sym_if_expression] = STATE(1944), + [sym_compile_time_if_expression] = STATE(1944), + [sym_is_expression] = STATE(1940), + [sym_not_is_expression] = STATE(1940), + [sym_in_expression] = STATE(1940), + [sym_not_in_expression] = STATE(1940), + [sym_enum_fetch] = STATE(1940), + [sym_match_expression] = STATE(1944), + [sym_select_expression] = STATE(1944), + [sym_lock_expression] = STATE(1944), + [sym_unsafe_expression] = STATE(1944), + [sym_sql_expression] = STATE(1944), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1940), + [sym_mutability_modifiers] = STATE(494), + [sym_plain_type] = STATE(4204), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2714), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(2718), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(2720), + [anon_sym_DOLLARif] = ACTIONS(2722), + [anon_sym_match] = ACTIONS(2724), + [anon_sym_select] = ACTIONS(2726), + [anon_sym_lock] = ACTIONS(2728), + [anon_sym_rlock] = ACTIONS(2728), + [anon_sym_unsafe] = ACTIONS(2730), + [anon_sym_sql] = ACTIONS(2732), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [535] = { - [sym__expression] = STATE(1766), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), + [sym__expression] = STATE(2225), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [536] = { - [sym__expression] = STATE(1768), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), + [sym__expression] = STATE(1779), + [sym__expression_without_blocks] = STATE(1940), + [sym__expression_with_blocks] = STATE(1940), + [sym_inc_expression] = STATE(1940), + [sym_dec_expression] = STATE(1940), + [sym_or_block_expression] = STATE(1940), + [sym_option_propagation_expression] = STATE(1940), + [sym_result_propagation_expression] = STATE(1940), + [sym_anon_struct_value_expression] = STATE(1944), + [sym_go_expression] = STATE(1940), + [sym_spawn_expression] = STATE(1940), + [sym_parenthesized_expression] = STATE(1940), + [sym_call_expression] = STATE(1940), + [sym_type_initializer] = STATE(1944), + [sym_function_literal] = STATE(1940), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1940), + [sym_receive_expression] = STATE(1940), + [sym_binary_expression] = STATE(1940), + [sym_as_type_cast_expression] = STATE(1940), + [sym__max_group] = STATE(1940), + [sym_literal] = STATE(1940), + [sym_map_init_expression] = STATE(1944), + [sym_array_creation] = STATE(1940), + [sym_fixed_array_creation] = STATE(1940), + [sym_selector_expression] = STATE(1940), + [sym_index_expression] = STATE(1940), + [sym_slice_expression] = STATE(1940), + [sym_if_expression] = STATE(1944), + [sym_compile_time_if_expression] = STATE(1944), + [sym_is_expression] = STATE(1940), + [sym_not_is_expression] = STATE(1940), + [sym_in_expression] = STATE(1940), + [sym_not_in_expression] = STATE(1940), + [sym_enum_fetch] = STATE(1940), + [sym_match_expression] = STATE(1944), + [sym_select_expression] = STATE(1944), + [sym_lock_expression] = STATE(1944), + [sym_unsafe_expression] = STATE(1944), + [sym_sql_expression] = STATE(1944), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1940), + [sym_mutability_modifiers] = STATE(494), + [sym_plain_type] = STATE(4204), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2714), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(2718), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(2720), + [anon_sym_DOLLARif] = ACTIONS(2722), + [anon_sym_match] = ACTIONS(2724), + [anon_sym_select] = ACTIONS(2726), + [anon_sym_lock] = ACTIONS(2728), + [anon_sym_rlock] = ACTIONS(2728), + [anon_sym_unsafe] = ACTIONS(2730), + [anon_sym_sql] = ACTIONS(2732), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [537] = { - [sym__expression] = STATE(1773), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [ts_builtin_sym_end] = ACTIONS(2692), + [sym_identifier] = ACTIONS(2694), + [anon_sym_LF] = ACTIONS(2694), + [anon_sym_CR] = ACTIONS(2694), + [anon_sym_CR_LF] = ACTIONS(2694), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2694), + [anon_sym_as] = ACTIONS(2694), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_COMMA] = ACTIONS(2694), + [anon_sym_const] = ACTIONS(2694), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym_EQ] = ACTIONS(2694), + [anon_sym___global] = ACTIONS(2694), + [anon_sym_type] = ACTIONS(2694), + [anon_sym_PIPE] = ACTIONS(2694), + [anon_sym_fn] = ACTIONS(2694), + [anon_sym_PLUS] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(2694), + [anon_sym_SLASH] = ACTIONS(2694), + [anon_sym_PERCENT] = ACTIONS(2694), + [anon_sym_LT] = ACTIONS(2694), + [anon_sym_GT] = ACTIONS(2694), + [anon_sym_EQ_EQ] = ACTIONS(2694), + [anon_sym_BANG_EQ] = ACTIONS(2694), + [anon_sym_LT_EQ] = ACTIONS(2694), + [anon_sym_GT_EQ] = ACTIONS(2694), + [anon_sym_LBRACK] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2694), + [anon_sym_union] = ACTIONS(2694), + [anon_sym_pub] = ACTIONS(2694), + [anon_sym_mut] = ACTIONS(2694), + [anon_sym_enum] = ACTIONS(2694), + [anon_sym_interface] = ACTIONS(2694), + [anon_sym_PLUS_PLUS] = ACTIONS(2694), + [anon_sym_DASH_DASH] = ACTIONS(2694), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_BANG] = ACTIONS(2694), + [anon_sym_go] = ACTIONS(2694), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2694), + [anon_sym_LBRACK2] = ACTIONS(2694), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_CARET] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2694), + [anon_sym_LT_DASH] = ACTIONS(2694), + [anon_sym_LT_LT] = ACTIONS(2694), + [anon_sym_GT_GT] = ACTIONS(2694), + [anon_sym_GT_GT_GT] = ACTIONS(2694), + [anon_sym_AMP_CARET] = ACTIONS(2694), + [anon_sym_AMP_AMP] = ACTIONS(2694), + [anon_sym_PIPE_PIPE] = ACTIONS(2694), + [anon_sym_or] = ACTIONS(2694), + [sym_none] = ACTIONS(2694), + [sym_true] = ACTIONS(2694), + [sym_false] = ACTIONS(2694), + [sym_nil] = ACTIONS(2694), + [anon_sym_QMARK_DOT] = ACTIONS(2694), + [anon_sym_POUND_LBRACK] = ACTIONS(2694), + [anon_sym_if] = ACTIONS(2694), + [anon_sym_DOLLARif] = ACTIONS(2694), + [anon_sym_DOLLARelse] = ACTIONS(2694), + [anon_sym_is] = ACTIONS(2694), + [anon_sym_BANGis] = ACTIONS(2694), + [anon_sym_in] = ACTIONS(2694), + [anon_sym_BANGin] = ACTIONS(2694), + [anon_sym_match] = ACTIONS(2694), + [anon_sym_select] = ACTIONS(2694), + [anon_sym_STAR_EQ] = ACTIONS(2694), + [anon_sym_SLASH_EQ] = ACTIONS(2694), + [anon_sym_PERCENT_EQ] = ACTIONS(2694), + [anon_sym_LT_LT_EQ] = ACTIONS(2694), + [anon_sym_GT_GT_EQ] = ACTIONS(2694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2694), + [anon_sym_AMP_EQ] = ACTIONS(2694), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2694), + [anon_sym_PLUS_EQ] = ACTIONS(2694), + [anon_sym_DASH_EQ] = ACTIONS(2694), + [anon_sym_PIPE_EQ] = ACTIONS(2694), + [anon_sym_CARET_EQ] = ACTIONS(2694), + [anon_sym_COLON_EQ] = ACTIONS(2694), + [anon_sym_lock] = ACTIONS(2694), + [anon_sym_rlock] = ACTIONS(2694), + [anon_sym_unsafe] = ACTIONS(2694), + [anon_sym_sql] = ACTIONS(2694), + [sym_int_literal] = ACTIONS(2694), + [sym_float_literal] = ACTIONS(2694), + [sym_rune_literal] = ACTIONS(2694), + [anon_sym_AT] = ACTIONS(2694), + [anon_sym_shared] = ACTIONS(2694), + [anon_sym_map_LBRACK] = ACTIONS(2694), + [anon_sym_chan] = ACTIONS(2694), + [anon_sym_thread] = ACTIONS(2694), + [anon_sym_atomic] = ACTIONS(2694), + [anon_sym_assert] = ACTIONS(2694), + [anon_sym_defer] = ACTIONS(2694), + [anon_sym_goto] = ACTIONS(2694), + [anon_sym_break] = ACTIONS(2694), + [anon_sym_continue] = ACTIONS(2694), + [anon_sym_return] = ACTIONS(2694), + [anon_sym_DOLLARfor] = ACTIONS(2694), + [anon_sym_for] = ACTIONS(2694), + [anon_sym_POUND] = ACTIONS(2694), + [anon_sym_asm] = ACTIONS(2694), + [anon_sym_AT_LBRACK] = ACTIONS(2694), + [sym___double_quote] = ACTIONS(2694), + [sym___single_quote] = ACTIONS(2694), + [sym___c_double_quote] = ACTIONS(2694), + [sym___c_single_quote] = ACTIONS(2694), + [sym___r_double_quote] = ACTIONS(2694), + [sym___r_single_quote] = ACTIONS(2694), }, [538] = { - [sym__expression] = STATE(2624), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(988), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2700), + [anon_sym_go] = ACTIONS(2702), + [anon_sym_spawn] = ACTIONS(2704), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2696), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_LT_DASH] = ACTIONS(2708), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(2710), + [anon_sym_lock] = ACTIONS(2712), + [anon_sym_rlock] = ACTIONS(2712), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [539] = { - [sym__expression] = STATE(1774), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), + [sym__expression] = STATE(1781), + [sym__expression_without_blocks] = STATE(1940), + [sym__expression_with_blocks] = STATE(1940), + [sym_inc_expression] = STATE(1940), + [sym_dec_expression] = STATE(1940), + [sym_or_block_expression] = STATE(1940), + [sym_option_propagation_expression] = STATE(1940), + [sym_result_propagation_expression] = STATE(1940), + [sym_anon_struct_value_expression] = STATE(1944), + [sym_go_expression] = STATE(1940), + [sym_spawn_expression] = STATE(1940), + [sym_parenthesized_expression] = STATE(1940), + [sym_call_expression] = STATE(1940), + [sym_type_initializer] = STATE(1944), + [sym_function_literal] = STATE(1940), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1940), + [sym_receive_expression] = STATE(1940), + [sym_binary_expression] = STATE(1940), + [sym_as_type_cast_expression] = STATE(1940), + [sym__max_group] = STATE(1940), + [sym_literal] = STATE(1940), + [sym_map_init_expression] = STATE(1944), + [sym_array_creation] = STATE(1940), + [sym_fixed_array_creation] = STATE(1940), + [sym_selector_expression] = STATE(1940), + [sym_index_expression] = STATE(1940), + [sym_slice_expression] = STATE(1940), + [sym_if_expression] = STATE(1944), + [sym_compile_time_if_expression] = STATE(1944), + [sym_is_expression] = STATE(1940), + [sym_not_is_expression] = STATE(1940), + [sym_in_expression] = STATE(1940), + [sym_not_in_expression] = STATE(1940), + [sym_enum_fetch] = STATE(1940), + [sym_match_expression] = STATE(1944), + [sym_select_expression] = STATE(1944), + [sym_lock_expression] = STATE(1944), + [sym_unsafe_expression] = STATE(1944), + [sym_sql_expression] = STATE(1944), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1940), + [sym_mutability_modifiers] = STATE(494), + [sym_plain_type] = STATE(4204), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2714), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(2718), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(2720), + [anon_sym_DOLLARif] = ACTIONS(2722), + [anon_sym_match] = ACTIONS(2724), + [anon_sym_select] = ACTIONS(2726), + [anon_sym_lock] = ACTIONS(2728), + [anon_sym_rlock] = ACTIONS(2728), + [anon_sym_unsafe] = ACTIONS(2730), + [anon_sym_sql] = ACTIONS(2732), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [540] = { - [sym__expression] = STATE(2623), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(2225), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(3671), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [541] = { - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(2225), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(3670), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [542] = { - [sym__expression] = STATE(2769), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(2628), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [543] = { - [sym__expression] = STATE(1767), - [sym__expression_without_blocks] = STATE(2104), - [sym__expression_with_blocks] = STATE(2104), - [sym_inc_expression] = STATE(2104), - [sym_dec_expression] = STATE(2104), - [sym_or_block_expression] = STATE(2104), - [sym_option_propagation_expression] = STATE(2104), - [sym_result_propagation_expression] = STATE(2104), - [sym_anon_struct_value_expression] = STATE(2119), - [sym_go_expression] = STATE(2104), - [sym_spawn_expression] = STATE(2104), - [sym_parenthesized_expression] = STATE(2104), - [sym_call_expression] = STATE(2104), - [sym_type_initializer] = STATE(2119), - [sym_function_literal] = STATE(2104), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2104), - [sym_receive_expression] = STATE(2104), - [sym_binary_expression] = STATE(2104), - [sym_as_type_cast_expression] = STATE(2104), - [sym__max_group] = STATE(2104), - [sym_literal] = STATE(2104), - [sym_map_init_expression] = STATE(2119), - [sym_array_creation] = STATE(2104), - [sym_fixed_array_creation] = STATE(2104), - [sym_selector_expression] = STATE(2104), - [sym_index_expression] = STATE(2104), - [sym_slice_expression] = STATE(2104), - [sym_if_expression] = STATE(2119), - [sym_compile_time_if_expression] = STATE(2119), - [sym_is_expression] = STATE(2104), - [sym_not_is_expression] = STATE(2104), - [sym_in_expression] = STATE(2104), - [sym_not_in_expression] = STATE(2104), - [sym_enum_fetch] = STATE(2104), - [sym_match_expression] = STATE(2119), - [sym_select_expression] = STATE(2119), - [sym_lock_expression] = STATE(2119), - [sym_unsafe_expression] = STATE(2119), - [sym_sql_expression] = STATE(2119), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(2104), - [sym_mutability_modifiers] = STATE(835), - [sym_plain_type] = STATE(4201), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2706), + [sym__expression] = STATE(1658), + [sym__expression_without_blocks] = STATE(1820), + [sym__expression_with_blocks] = STATE(1820), + [sym_inc_expression] = STATE(1820), + [sym_dec_expression] = STATE(1820), + [sym_or_block_expression] = STATE(1820), + [sym_option_propagation_expression] = STATE(1820), + [sym_result_propagation_expression] = STATE(1820), + [sym_anon_struct_value_expression] = STATE(1814), + [sym_go_expression] = STATE(1820), + [sym_spawn_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1820), + [sym_call_expression] = STATE(1820), + [sym_type_initializer] = STATE(1814), + [sym_function_literal] = STATE(1820), + [sym_reference_expression] = STATE(1813), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1820), + [sym_receive_expression] = STATE(1820), + [sym_binary_expression] = STATE(1820), + [sym_as_type_cast_expression] = STATE(1820), + [sym__max_group] = STATE(1820), + [sym_literal] = STATE(1820), + [sym_map_init_expression] = STATE(1814), + [sym_array_creation] = STATE(1820), + [sym_fixed_array_creation] = STATE(1820), + [sym_selector_expression] = STATE(1820), + [sym_index_expression] = STATE(1820), + [sym_slice_expression] = STATE(1820), + [sym_if_expression] = STATE(1814), + [sym_compile_time_if_expression] = STATE(1814), + [sym_is_expression] = STATE(1820), + [sym_not_is_expression] = STATE(1820), + [sym_in_expression] = STATE(1820), + [sym_not_in_expression] = STATE(1820), + [sym_enum_fetch] = STATE(1820), + [sym_match_expression] = STATE(1814), + [sym_select_expression] = STATE(1814), + [sym_lock_expression] = STATE(1814), + [sym_unsafe_expression] = STATE(1814), + [sym_sql_expression] = STATE(1814), + [sym_c_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_interpreted_string_literal] = STATE(1819), + [sym_pseudo_compile_time_identifier] = STATE(1820), + [sym_mutability_modifiers] = STATE(464), + [sym_plain_type] = STATE(4100), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2524), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2720), - [anon_sym_rlock] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_fn] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2534), + [anon_sym_STAR] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2538), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_go] = ACTIONS(2542), + [anon_sym_spawn] = ACTIONS(2544), + [anon_sym_json_DOTdecode] = ACTIONS(2546), + [anon_sym_LBRACK2] = ACTIONS(2548), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2550), + [anon_sym_LT_DASH] = ACTIONS(2552), + [sym_none] = ACTIONS(2554), + [sym_true] = ACTIONS(2554), + [sym_false] = ACTIONS(2554), + [sym_nil] = ACTIONS(2554), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_DOLLARif] = ACTIONS(2558), + [anon_sym_match] = ACTIONS(2560), + [anon_sym_select] = ACTIONS(2562), + [anon_sym_lock] = ACTIONS(2564), + [anon_sym_rlock] = ACTIONS(2564), + [anon_sym_unsafe] = ACTIONS(2566), + [anon_sym_sql] = ACTIONS(2568), + [sym_int_literal] = ACTIONS(2554), + [sym_float_literal] = ACTIONS(2570), + [sym_rune_literal] = ACTIONS(2570), + [anon_sym_AT] = ACTIONS(2572), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2574), + [sym___single_quote] = ACTIONS(2576), + [sym___c_double_quote] = ACTIONS(2578), + [sym___c_single_quote] = ACTIONS(2580), + [sym___r_double_quote] = ACTIONS(2582), + [sym___r_single_quote] = ACTIONS(2584), }, [544] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(3684), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(2626), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [545] = { - [sym__expression] = STATE(1769), - [sym__expression_without_blocks] = STATE(2104), - [sym__expression_with_blocks] = STATE(2104), - [sym_inc_expression] = STATE(2104), - [sym_dec_expression] = STATE(2104), - [sym_or_block_expression] = STATE(2104), - [sym_option_propagation_expression] = STATE(2104), - [sym_result_propagation_expression] = STATE(2104), - [sym_anon_struct_value_expression] = STATE(2119), - [sym_go_expression] = STATE(2104), - [sym_spawn_expression] = STATE(2104), - [sym_parenthesized_expression] = STATE(2104), - [sym_call_expression] = STATE(2104), - [sym_type_initializer] = STATE(2119), - [sym_function_literal] = STATE(2104), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2104), - [sym_receive_expression] = STATE(2104), - [sym_binary_expression] = STATE(2104), - [sym_as_type_cast_expression] = STATE(2104), - [sym__max_group] = STATE(2104), - [sym_literal] = STATE(2104), - [sym_map_init_expression] = STATE(2119), - [sym_array_creation] = STATE(2104), - [sym_fixed_array_creation] = STATE(2104), - [sym_selector_expression] = STATE(2104), - [sym_index_expression] = STATE(2104), - [sym_slice_expression] = STATE(2104), - [sym_if_expression] = STATE(2119), - [sym_compile_time_if_expression] = STATE(2119), - [sym_is_expression] = STATE(2104), - [sym_not_is_expression] = STATE(2104), - [sym_in_expression] = STATE(2104), - [sym_not_in_expression] = STATE(2104), - [sym_enum_fetch] = STATE(2104), - [sym_match_expression] = STATE(2119), - [sym_select_expression] = STATE(2119), - [sym_lock_expression] = STATE(2119), - [sym_unsafe_expression] = STATE(2119), - [sym_sql_expression] = STATE(2119), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(2104), - [sym_mutability_modifiers] = STATE(835), - [sym_plain_type] = STATE(4201), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2706), + [sym__expression] = STATE(986), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2720), - [anon_sym_rlock] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2700), + [anon_sym_go] = ACTIONS(2702), + [anon_sym_spawn] = ACTIONS(2704), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2696), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_LT_DASH] = ACTIONS(2708), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(2710), + [anon_sym_lock] = ACTIONS(2712), + [anon_sym_rlock] = ACTIONS(2712), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [546] = { - [sym__expression] = STATE(1891), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), + [sym__expression] = STATE(1920), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2466), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_go] = ACTIONS(2476), + [anon_sym_spawn] = ACTIONS(2478), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_LT_DASH] = ACTIONS(2484), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(2486), + [anon_sym_lock] = ACTIONS(2488), + [anon_sym_rlock] = ACTIONS(2488), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [547] = { - [sym__expression] = STATE(1899), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), + [sym__expression] = STATE(2658), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [548] = { - [sym__expression] = STATE(1900), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), + [sym__expression] = STATE(1782), + [sym__expression_without_blocks] = STATE(1940), + [sym__expression_with_blocks] = STATE(1940), + [sym_inc_expression] = STATE(1940), + [sym_dec_expression] = STATE(1940), + [sym_or_block_expression] = STATE(1940), + [sym_option_propagation_expression] = STATE(1940), + [sym_result_propagation_expression] = STATE(1940), + [sym_anon_struct_value_expression] = STATE(1944), + [sym_go_expression] = STATE(1940), + [sym_spawn_expression] = STATE(1940), + [sym_parenthesized_expression] = STATE(1940), + [sym_call_expression] = STATE(1940), + [sym_type_initializer] = STATE(1944), + [sym_function_literal] = STATE(1940), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1940), + [sym_receive_expression] = STATE(1940), + [sym_binary_expression] = STATE(1940), + [sym_as_type_cast_expression] = STATE(1940), + [sym__max_group] = STATE(1940), + [sym_literal] = STATE(1940), + [sym_map_init_expression] = STATE(1944), + [sym_array_creation] = STATE(1940), + [sym_fixed_array_creation] = STATE(1940), + [sym_selector_expression] = STATE(1940), + [sym_index_expression] = STATE(1940), + [sym_slice_expression] = STATE(1940), + [sym_if_expression] = STATE(1944), + [sym_compile_time_if_expression] = STATE(1944), + [sym_is_expression] = STATE(1940), + [sym_not_is_expression] = STATE(1940), + [sym_in_expression] = STATE(1940), + [sym_not_in_expression] = STATE(1940), + [sym_enum_fetch] = STATE(1940), + [sym_match_expression] = STATE(1944), + [sym_select_expression] = STATE(1944), + [sym_lock_expression] = STATE(1944), + [sym_unsafe_expression] = STATE(1944), + [sym_sql_expression] = STATE(1944), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1940), + [sym_mutability_modifiers] = STATE(494), + [sym_plain_type] = STATE(4204), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2714), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(2718), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(2720), + [anon_sym_DOLLARif] = ACTIONS(2722), + [anon_sym_match] = ACTIONS(2724), + [anon_sym_select] = ACTIONS(2726), + [anon_sym_lock] = ACTIONS(2728), + [anon_sym_rlock] = ACTIONS(2728), + [anon_sym_unsafe] = ACTIONS(2730), + [anon_sym_sql] = ACTIONS(2732), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [549] = { - [sym__expression] = STATE(1770), - [sym__expression_without_blocks] = STATE(2104), - [sym__expression_with_blocks] = STATE(2104), - [sym_inc_expression] = STATE(2104), - [sym_dec_expression] = STATE(2104), - [sym_or_block_expression] = STATE(2104), - [sym_option_propagation_expression] = STATE(2104), - [sym_result_propagation_expression] = STATE(2104), - [sym_anon_struct_value_expression] = STATE(2119), - [sym_go_expression] = STATE(2104), - [sym_spawn_expression] = STATE(2104), - [sym_parenthesized_expression] = STATE(2104), - [sym_call_expression] = STATE(2104), - [sym_type_initializer] = STATE(2119), - [sym_function_literal] = STATE(2104), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2104), - [sym_receive_expression] = STATE(2104), - [sym_binary_expression] = STATE(2104), - [sym_as_type_cast_expression] = STATE(2104), - [sym__max_group] = STATE(2104), - [sym_literal] = STATE(2104), - [sym_map_init_expression] = STATE(2119), - [sym_array_creation] = STATE(2104), - [sym_fixed_array_creation] = STATE(2104), - [sym_selector_expression] = STATE(2104), - [sym_index_expression] = STATE(2104), - [sym_slice_expression] = STATE(2104), - [sym_if_expression] = STATE(2119), - [sym_compile_time_if_expression] = STATE(2119), - [sym_is_expression] = STATE(2104), - [sym_not_is_expression] = STATE(2104), - [sym_in_expression] = STATE(2104), - [sym_not_in_expression] = STATE(2104), - [sym_enum_fetch] = STATE(2104), - [sym_match_expression] = STATE(2119), - [sym_select_expression] = STATE(2119), - [sym_lock_expression] = STATE(2119), - [sym_unsafe_expression] = STATE(2119), - [sym_sql_expression] = STATE(2119), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(2104), - [sym_mutability_modifiers] = STATE(835), - [sym_plain_type] = STATE(4201), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2706), + [sym__expression] = STATE(2683), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3659), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2720), - [anon_sym_rlock] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [550] = { - [sym__expression] = STATE(1906), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), + [sym__expression] = STATE(2503), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4108), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(2754), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2426), + [anon_sym_lock] = ACTIONS(2428), + [anon_sym_rlock] = ACTIONS(2428), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [551] = { - [sym__expression] = STATE(1903), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), + [sym__expression] = STATE(2446), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [552] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(3675), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(1644), + [sym__expression_without_blocks] = STATE(1820), + [sym__expression_with_blocks] = STATE(1820), + [sym_inc_expression] = STATE(1820), + [sym_dec_expression] = STATE(1820), + [sym_or_block_expression] = STATE(1820), + [sym_option_propagation_expression] = STATE(1820), + [sym_result_propagation_expression] = STATE(1820), + [sym_anon_struct_value_expression] = STATE(1814), + [sym_go_expression] = STATE(1820), + [sym_spawn_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1820), + [sym_call_expression] = STATE(1820), + [sym_type_initializer] = STATE(1814), + [sym_function_literal] = STATE(1820), + [sym_reference_expression] = STATE(1813), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1820), + [sym_receive_expression] = STATE(1820), + [sym_binary_expression] = STATE(1820), + [sym_as_type_cast_expression] = STATE(1820), + [sym__max_group] = STATE(1820), + [sym_literal] = STATE(1820), + [sym_map_init_expression] = STATE(1814), + [sym_array_creation] = STATE(1820), + [sym_fixed_array_creation] = STATE(1820), + [sym_selector_expression] = STATE(1820), + [sym_index_expression] = STATE(1820), + [sym_slice_expression] = STATE(1820), + [sym_if_expression] = STATE(1814), + [sym_compile_time_if_expression] = STATE(1814), + [sym_is_expression] = STATE(1820), + [sym_not_is_expression] = STATE(1820), + [sym_in_expression] = STATE(1820), + [sym_not_in_expression] = STATE(1820), + [sym_enum_fetch] = STATE(1820), + [sym_match_expression] = STATE(1814), + [sym_select_expression] = STATE(1814), + [sym_lock_expression] = STATE(1814), + [sym_unsafe_expression] = STATE(1814), + [sym_sql_expression] = STATE(1814), + [sym_c_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_interpreted_string_literal] = STATE(1819), + [sym_pseudo_compile_time_identifier] = STATE(1820), + [sym_mutability_modifiers] = STATE(464), + [sym_plain_type] = STATE(4130), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2524), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_fn] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2534), + [anon_sym_STAR] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2538), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_go] = ACTIONS(2542), + [anon_sym_spawn] = ACTIONS(2544), + [anon_sym_json_DOTdecode] = ACTIONS(2546), + [anon_sym_LBRACK2] = ACTIONS(2548), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2550), + [anon_sym_LT_DASH] = ACTIONS(2552), + [sym_none] = ACTIONS(2554), + [sym_true] = ACTIONS(2554), + [sym_false] = ACTIONS(2554), + [sym_nil] = ACTIONS(2554), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_DOLLARif] = ACTIONS(2558), + [anon_sym_match] = ACTIONS(2560), + [anon_sym_select] = ACTIONS(2562), + [anon_sym_lock] = ACTIONS(2564), + [anon_sym_rlock] = ACTIONS(2564), + [anon_sym_unsafe] = ACTIONS(2566), + [anon_sym_sql] = ACTIONS(2568), + [sym_int_literal] = ACTIONS(2554), + [sym_float_literal] = ACTIONS(2570), + [sym_rune_literal] = ACTIONS(2570), + [anon_sym_AT] = ACTIONS(2572), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2574), + [sym___single_quote] = ACTIONS(2576), + [sym___c_double_quote] = ACTIONS(2578), + [sym___c_single_quote] = ACTIONS(2580), + [sym___r_double_quote] = ACTIONS(2582), + [sym___r_single_quote] = ACTIONS(2584), }, [553] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2995), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2949), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [554] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2945), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2943), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(1621), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(602), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2688), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [555] = { - [sym__expression] = STATE(1771), - [sym__expression_without_blocks] = STATE(2104), - [sym__expression_with_blocks] = STATE(2104), - [sym_inc_expression] = STATE(2104), - [sym_dec_expression] = STATE(2104), - [sym_or_block_expression] = STATE(2104), - [sym_option_propagation_expression] = STATE(2104), - [sym_result_propagation_expression] = STATE(2104), - [sym_anon_struct_value_expression] = STATE(2119), - [sym_go_expression] = STATE(2104), - [sym_spawn_expression] = STATE(2104), - [sym_parenthesized_expression] = STATE(2104), - [sym_call_expression] = STATE(2104), - [sym_type_initializer] = STATE(2119), - [sym_function_literal] = STATE(2104), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2104), - [sym_receive_expression] = STATE(2104), - [sym_binary_expression] = STATE(2104), - [sym_as_type_cast_expression] = STATE(2104), - [sym__max_group] = STATE(2104), - [sym_literal] = STATE(2104), - [sym_map_init_expression] = STATE(2119), - [sym_array_creation] = STATE(2104), - [sym_fixed_array_creation] = STATE(2104), - [sym_selector_expression] = STATE(2104), - [sym_index_expression] = STATE(2104), - [sym_slice_expression] = STATE(2104), - [sym_if_expression] = STATE(2119), - [sym_compile_time_if_expression] = STATE(2119), - [sym_is_expression] = STATE(2104), - [sym_not_is_expression] = STATE(2104), - [sym_in_expression] = STATE(2104), - [sym_not_in_expression] = STATE(2104), - [sym_enum_fetch] = STATE(2104), - [sym_match_expression] = STATE(2119), - [sym_select_expression] = STATE(2119), - [sym_lock_expression] = STATE(2119), - [sym_unsafe_expression] = STATE(2119), - [sym_sql_expression] = STATE(2119), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(2104), - [sym_mutability_modifiers] = STATE(835), - [sym_plain_type] = STATE(4201), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2706), + [sym__expression] = STATE(2225), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3671), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2092), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2720), - [anon_sym_rlock] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(2094), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2096), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [556] = { - [sym__expression] = STATE(2642), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2843), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [557] = { - [ts_builtin_sym_end] = ACTIONS(2728), - [sym_identifier] = ACTIONS(2730), - [anon_sym_LF] = ACTIONS(2730), - [anon_sym_CR] = ACTIONS(2730), - [anon_sym_CR_LF] = ACTIONS(2730), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2730), - [anon_sym_as] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_COMMA] = ACTIONS(2730), - [anon_sym_const] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym_EQ] = ACTIONS(2730), - [anon_sym___global] = ACTIONS(2730), - [anon_sym_type] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_fn] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2730), - [anon_sym_SLASH] = ACTIONS(2730), - [anon_sym_PERCENT] = ACTIONS(2730), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_GT] = ACTIONS(2730), - [anon_sym_EQ_EQ] = ACTIONS(2730), - [anon_sym_BANG_EQ] = ACTIONS(2730), - [anon_sym_LT_EQ] = ACTIONS(2730), - [anon_sym_GT_EQ] = ACTIONS(2730), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_struct] = ACTIONS(2730), - [anon_sym_union] = ACTIONS(2730), - [anon_sym_pub] = ACTIONS(2730), - [anon_sym_mut] = ACTIONS(2730), - [anon_sym_enum] = ACTIONS(2730), - [anon_sym_interface] = ACTIONS(2730), - [anon_sym_PLUS_PLUS] = ACTIONS(2730), - [anon_sym_DASH_DASH] = ACTIONS(2730), - [anon_sym_QMARK] = ACTIONS(2730), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_go] = ACTIONS(2730), - [anon_sym_spawn] = ACTIONS(2730), - [anon_sym_json_DOTdecode] = ACTIONS(2730), - [anon_sym_LBRACK2] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2730), - [anon_sym_CARET] = ACTIONS(2730), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_LT_DASH] = ACTIONS(2730), - [anon_sym_LT_LT] = ACTIONS(2730), - [anon_sym_GT_GT] = ACTIONS(2730), - [anon_sym_GT_GT_GT] = ACTIONS(2730), - [anon_sym_AMP_CARET] = ACTIONS(2730), - [anon_sym_AMP_AMP] = ACTIONS(2730), - [anon_sym_PIPE_PIPE] = ACTIONS(2730), - [anon_sym_or] = ACTIONS(2730), - [sym_none] = ACTIONS(2730), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_nil] = ACTIONS(2730), - [anon_sym_QMARK_DOT] = ACTIONS(2730), - [anon_sym_POUND_LBRACK] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_DOLLARif] = ACTIONS(2730), - [anon_sym_DOLLARelse] = ACTIONS(2730), - [anon_sym_is] = ACTIONS(2730), - [anon_sym_BANGis] = ACTIONS(2730), - [anon_sym_in] = ACTIONS(2730), - [anon_sym_BANGin] = ACTIONS(2730), - [anon_sym_match] = ACTIONS(2730), - [anon_sym_select] = ACTIONS(2730), - [anon_sym_STAR_EQ] = ACTIONS(2730), - [anon_sym_SLASH_EQ] = ACTIONS(2730), - [anon_sym_PERCENT_EQ] = ACTIONS(2730), - [anon_sym_LT_LT_EQ] = ACTIONS(2730), - [anon_sym_GT_GT_EQ] = ACTIONS(2730), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2730), - [anon_sym_AMP_EQ] = ACTIONS(2730), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2730), - [anon_sym_PLUS_EQ] = ACTIONS(2730), - [anon_sym_DASH_EQ] = ACTIONS(2730), - [anon_sym_PIPE_EQ] = ACTIONS(2730), - [anon_sym_CARET_EQ] = ACTIONS(2730), - [anon_sym_COLON_EQ] = ACTIONS(2730), - [anon_sym_lock] = ACTIONS(2730), - [anon_sym_rlock] = ACTIONS(2730), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2730), - [sym_int_literal] = ACTIONS(2730), - [sym_float_literal] = ACTIONS(2730), - [sym_rune_literal] = ACTIONS(2730), - [anon_sym_AT] = ACTIONS(2730), - [anon_sym_shared] = ACTIONS(2730), - [anon_sym_map_LBRACK] = ACTIONS(2730), - [anon_sym_chan] = ACTIONS(2730), - [anon_sym_thread] = ACTIONS(2730), - [anon_sym_atomic] = ACTIONS(2730), - [anon_sym_assert] = ACTIONS(2730), - [anon_sym_defer] = ACTIONS(2730), - [anon_sym_goto] = ACTIONS(2730), - [anon_sym_break] = ACTIONS(2730), - [anon_sym_continue] = ACTIONS(2730), - [anon_sym_return] = ACTIONS(2730), - [anon_sym_DOLLARfor] = ACTIONS(2730), - [anon_sym_for] = ACTIONS(2730), - [anon_sym_POUND] = ACTIONS(2730), - [anon_sym_asm] = ACTIONS(2730), - [anon_sym_AT_LBRACK] = ACTIONS(2730), - [sym___double_quote] = ACTIONS(2730), - [sym___single_quote] = ACTIONS(2730), - [sym___c_double_quote] = ACTIONS(2730), - [sym___c_single_quote] = ACTIONS(2730), - [sym___r_double_quote] = ACTIONS(2730), - [sym___r_single_quote] = ACTIONS(2730), + [sym__expression] = STATE(2149), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2636), + [anon_sym_go] = ACTIONS(2638), + [anon_sym_spawn] = ACTIONS(2640), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_CARET] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2646), + [anon_sym_LT_DASH] = ACTIONS(2648), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2658), + [anon_sym_lock] = ACTIONS(2660), + [anon_sym_rlock] = ACTIONS(2660), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [558] = { - [ts_builtin_sym_end] = ACTIONS(2698), - [sym_identifier] = ACTIONS(2700), - [anon_sym_LF] = ACTIONS(2700), - [anon_sym_CR] = ACTIONS(2700), - [anon_sym_CR_LF] = ACTIONS(2700), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_COMMA] = ACTIONS(2700), - [anon_sym_const] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_EQ] = ACTIONS(2700), - [anon_sym___global] = ACTIONS(2700), - [anon_sym_type] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_union] = ACTIONS(2700), - [anon_sym_pub] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_enum] = ACTIONS(2700), - [anon_sym_interface] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2700), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2700), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2700), - [anon_sym_AMP_CARET] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2700), - [anon_sym_POUND_LBRACK] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_DOLLARelse] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2700), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2700), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_STAR_EQ] = ACTIONS(2700), - [anon_sym_SLASH_EQ] = ACTIONS(2700), - [anon_sym_PERCENT_EQ] = ACTIONS(2700), - [anon_sym_LT_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_GT_EQ] = ACTIONS(2700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2700), - [anon_sym_AMP_EQ] = ACTIONS(2700), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2700), - [anon_sym_PLUS_EQ] = ACTIONS(2700), - [anon_sym_DASH_EQ] = ACTIONS(2700), - [anon_sym_PIPE_EQ] = ACTIONS(2700), - [anon_sym_CARET_EQ] = ACTIONS(2700), - [anon_sym_COLON_EQ] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), - [sym_rune_literal] = ACTIONS(2700), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2700), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [anon_sym_assert] = ACTIONS(2700), - [anon_sym_defer] = ACTIONS(2700), - [anon_sym_goto] = ACTIONS(2700), - [anon_sym_break] = ACTIONS(2700), - [anon_sym_continue] = ACTIONS(2700), - [anon_sym_return] = ACTIONS(2700), - [anon_sym_DOLLARfor] = ACTIONS(2700), - [anon_sym_for] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(2700), - [anon_sym_asm] = ACTIONS(2700), - [anon_sym_AT_LBRACK] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2700), - [sym___single_quote] = ACTIONS(2700), - [sym___c_double_quote] = ACTIONS(2700), - [sym___c_single_quote] = ACTIONS(2700), - [sym___r_double_quote] = ACTIONS(2700), - [sym___r_single_quote] = ACTIONS(2700), + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [559] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(1630), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(602), + [sym_plain_type] = STATE(4164), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2688), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [560] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2879), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [561] = { - [sym__expression] = STATE(2622), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(1785), + [sym__expression_without_blocks] = STATE(1940), + [sym__expression_with_blocks] = STATE(1940), + [sym_inc_expression] = STATE(1940), + [sym_dec_expression] = STATE(1940), + [sym_or_block_expression] = STATE(1940), + [sym_option_propagation_expression] = STATE(1940), + [sym_result_propagation_expression] = STATE(1940), + [sym_anon_struct_value_expression] = STATE(1944), + [sym_go_expression] = STATE(1940), + [sym_spawn_expression] = STATE(1940), + [sym_parenthesized_expression] = STATE(1940), + [sym_call_expression] = STATE(1940), + [sym_type_initializer] = STATE(1944), + [sym_function_literal] = STATE(1940), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1940), + [sym_receive_expression] = STATE(1940), + [sym_binary_expression] = STATE(1940), + [sym_as_type_cast_expression] = STATE(1940), + [sym__max_group] = STATE(1940), + [sym_literal] = STATE(1940), + [sym_map_init_expression] = STATE(1944), + [sym_array_creation] = STATE(1940), + [sym_fixed_array_creation] = STATE(1940), + [sym_selector_expression] = STATE(1940), + [sym_index_expression] = STATE(1940), + [sym_slice_expression] = STATE(1940), + [sym_if_expression] = STATE(1944), + [sym_compile_time_if_expression] = STATE(1944), + [sym_is_expression] = STATE(1940), + [sym_not_is_expression] = STATE(1940), + [sym_in_expression] = STATE(1940), + [sym_not_in_expression] = STATE(1940), + [sym_enum_fetch] = STATE(1940), + [sym_match_expression] = STATE(1944), + [sym_select_expression] = STATE(1944), + [sym_lock_expression] = STATE(1944), + [sym_unsafe_expression] = STATE(1944), + [sym_sql_expression] = STATE(1944), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1940), + [sym_mutability_modifiers] = STATE(494), + [sym_plain_type] = STATE(4204), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2714), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(2718), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(2720), + [anon_sym_DOLLARif] = ACTIONS(2722), + [anon_sym_match] = ACTIONS(2724), + [anon_sym_select] = ACTIONS(2726), + [anon_sym_lock] = ACTIONS(2728), + [anon_sym_rlock] = ACTIONS(2728), + [anon_sym_unsafe] = ACTIONS(2730), + [anon_sym_sql] = ACTIONS(2732), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [562] = { - [sym__expression] = STATE(2298), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(981), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2108), + [anon_sym_go] = ACTIONS(513), + [anon_sym_spawn] = ACTIONS(515), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_LT_DASH] = ACTIONS(2116), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(533), + [anon_sym_lock] = ACTIONS(535), + [anon_sym_rlock] = ACTIONS(535), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [563] = { - [sym__expression] = STATE(2309), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(1622), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(602), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2688), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [564] = { - [sym__expression] = STATE(2313), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2225), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(3669), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [565] = { - [sym__expression] = STATE(2829), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(1139), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1242), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(945), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [566] = { - [sym__expression] = STATE(2621), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(2290), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2636), + [anon_sym_go] = ACTIONS(2638), + [anon_sym_spawn] = ACTIONS(2640), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_CARET] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2646), + [anon_sym_LT_DASH] = ACTIONS(2648), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2658), + [anon_sym_lock] = ACTIONS(2660), + [anon_sym_rlock] = ACTIONS(2660), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [567] = { - [sym__expression] = STATE(2821), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(1774), + [sym__expression_without_blocks] = STATE(1940), + [sym__expression_with_blocks] = STATE(1940), + [sym_inc_expression] = STATE(1940), + [sym_dec_expression] = STATE(1940), + [sym_or_block_expression] = STATE(1940), + [sym_option_propagation_expression] = STATE(1940), + [sym_result_propagation_expression] = STATE(1940), + [sym_anon_struct_value_expression] = STATE(1944), + [sym_go_expression] = STATE(1940), + [sym_spawn_expression] = STATE(1940), + [sym_parenthesized_expression] = STATE(1940), + [sym_call_expression] = STATE(1940), + [sym_type_initializer] = STATE(1944), + [sym_function_literal] = STATE(1940), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1940), + [sym_receive_expression] = STATE(1940), + [sym_binary_expression] = STATE(1940), + [sym_as_type_cast_expression] = STATE(1940), + [sym__max_group] = STATE(1940), + [sym_literal] = STATE(1940), + [sym_map_init_expression] = STATE(1944), + [sym_array_creation] = STATE(1940), + [sym_fixed_array_creation] = STATE(1940), + [sym_selector_expression] = STATE(1940), + [sym_index_expression] = STATE(1940), + [sym_slice_expression] = STATE(1940), + [sym_if_expression] = STATE(1944), + [sym_compile_time_if_expression] = STATE(1944), + [sym_is_expression] = STATE(1940), + [sym_not_is_expression] = STATE(1940), + [sym_in_expression] = STATE(1940), + [sym_not_in_expression] = STATE(1940), + [sym_enum_fetch] = STATE(1940), + [sym_match_expression] = STATE(1944), + [sym_select_expression] = STATE(1944), + [sym_lock_expression] = STATE(1944), + [sym_unsafe_expression] = STATE(1944), + [sym_sql_expression] = STATE(1944), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1940), + [sym_mutability_modifiers] = STATE(494), + [sym_plain_type] = STATE(4204), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2714), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(2718), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(2720), + [anon_sym_DOLLARif] = ACTIONS(2722), + [anon_sym_match] = ACTIONS(2724), + [anon_sym_select] = ACTIONS(2726), + [anon_sym_lock] = ACTIONS(2728), + [anon_sym_rlock] = ACTIONS(2728), + [anon_sym_unsafe] = ACTIONS(2730), + [anon_sym_sql] = ACTIONS(2732), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [568] = { - [sym__expression] = STATE(2680), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(2219), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [569] = { - [ts_builtin_sym_end] = ACTIONS(2732), - [sym_identifier] = ACTIONS(2734), - [anon_sym_LF] = ACTIONS(2734), - [anon_sym_CR] = ACTIONS(2734), - [anon_sym_CR_LF] = ACTIONS(2734), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2734), - [anon_sym_as] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_COMMA] = ACTIONS(2734), - [anon_sym_const] = ACTIONS(2734), - [anon_sym_LPAREN] = ACTIONS(2734), - [anon_sym_EQ] = ACTIONS(2734), - [anon_sym___global] = ACTIONS(2734), - [anon_sym_type] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_fn] = ACTIONS(2734), - [anon_sym_PLUS] = ACTIONS(2734), - [anon_sym_DASH] = ACTIONS(2734), - [anon_sym_STAR] = ACTIONS(2734), - [anon_sym_SLASH] = ACTIONS(2734), - [anon_sym_PERCENT] = ACTIONS(2734), - [anon_sym_LT] = ACTIONS(2734), - [anon_sym_GT] = ACTIONS(2734), - [anon_sym_EQ_EQ] = ACTIONS(2734), - [anon_sym_BANG_EQ] = ACTIONS(2734), - [anon_sym_LT_EQ] = ACTIONS(2734), - [anon_sym_GT_EQ] = ACTIONS(2734), - [anon_sym_LBRACK] = ACTIONS(2732), - [anon_sym_struct] = ACTIONS(2734), - [anon_sym_union] = ACTIONS(2734), - [anon_sym_pub] = ACTIONS(2734), - [anon_sym_mut] = ACTIONS(2734), - [anon_sym_enum] = ACTIONS(2734), - [anon_sym_interface] = ACTIONS(2734), - [anon_sym_PLUS_PLUS] = ACTIONS(2734), - [anon_sym_DASH_DASH] = ACTIONS(2734), - [anon_sym_QMARK] = ACTIONS(2734), - [anon_sym_BANG] = ACTIONS(2734), - [anon_sym_go] = ACTIONS(2734), - [anon_sym_spawn] = ACTIONS(2734), - [anon_sym_json_DOTdecode] = ACTIONS(2734), - [anon_sym_LBRACK2] = ACTIONS(2734), - [anon_sym_TILDE] = ACTIONS(2734), - [anon_sym_CARET] = ACTIONS(2734), - [anon_sym_AMP] = ACTIONS(2734), - [anon_sym_LT_DASH] = ACTIONS(2734), - [anon_sym_LT_LT] = ACTIONS(2734), - [anon_sym_GT_GT] = ACTIONS(2734), - [anon_sym_GT_GT_GT] = ACTIONS(2734), - [anon_sym_AMP_CARET] = ACTIONS(2734), - [anon_sym_AMP_AMP] = ACTIONS(2734), - [anon_sym_PIPE_PIPE] = ACTIONS(2734), - [anon_sym_or] = ACTIONS(2734), - [sym_none] = ACTIONS(2734), - [sym_true] = ACTIONS(2734), - [sym_false] = ACTIONS(2734), - [sym_nil] = ACTIONS(2734), - [anon_sym_QMARK_DOT] = ACTIONS(2734), - [anon_sym_POUND_LBRACK] = ACTIONS(2734), - [anon_sym_if] = ACTIONS(2734), - [anon_sym_DOLLARif] = ACTIONS(2734), - [anon_sym_DOLLARelse] = ACTIONS(2736), - [anon_sym_is] = ACTIONS(2734), - [anon_sym_BANGis] = ACTIONS(2734), - [anon_sym_in] = ACTIONS(2734), - [anon_sym_BANGin] = ACTIONS(2734), - [anon_sym_match] = ACTIONS(2734), - [anon_sym_select] = ACTIONS(2734), - [anon_sym_STAR_EQ] = ACTIONS(2734), - [anon_sym_SLASH_EQ] = ACTIONS(2734), - [anon_sym_PERCENT_EQ] = ACTIONS(2734), - [anon_sym_LT_LT_EQ] = ACTIONS(2734), - [anon_sym_GT_GT_EQ] = ACTIONS(2734), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2734), - [anon_sym_AMP_EQ] = ACTIONS(2734), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2734), - [anon_sym_PLUS_EQ] = ACTIONS(2734), - [anon_sym_DASH_EQ] = ACTIONS(2734), - [anon_sym_PIPE_EQ] = ACTIONS(2734), - [anon_sym_CARET_EQ] = ACTIONS(2734), - [anon_sym_COLON_EQ] = ACTIONS(2734), - [anon_sym_lock] = ACTIONS(2734), - [anon_sym_rlock] = ACTIONS(2734), - [anon_sym_unsafe] = ACTIONS(2734), - [anon_sym_sql] = ACTIONS(2734), - [sym_int_literal] = ACTIONS(2734), - [sym_float_literal] = ACTIONS(2734), - [sym_rune_literal] = ACTIONS(2734), - [anon_sym_AT] = ACTIONS(2734), - [anon_sym_shared] = ACTIONS(2734), - [anon_sym_map_LBRACK] = ACTIONS(2734), - [anon_sym_chan] = ACTIONS(2734), - [anon_sym_thread] = ACTIONS(2734), - [anon_sym_atomic] = ACTIONS(2734), - [anon_sym_assert] = ACTIONS(2734), - [anon_sym_defer] = ACTIONS(2734), - [anon_sym_goto] = ACTIONS(2734), - [anon_sym_break] = ACTIONS(2734), - [anon_sym_continue] = ACTIONS(2734), - [anon_sym_return] = ACTIONS(2734), - [anon_sym_DOLLARfor] = ACTIONS(2734), - [anon_sym_for] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(2734), - [anon_sym_asm] = ACTIONS(2734), - [anon_sym_AT_LBRACK] = ACTIONS(2734), - [sym___double_quote] = ACTIONS(2734), - [sym___single_quote] = ACTIONS(2734), - [sym___c_double_quote] = ACTIONS(2734), - [sym___c_single_quote] = ACTIONS(2734), - [sym___r_double_quote] = ACTIONS(2734), - [sym___r_single_quote] = ACTIONS(2734), + [sym__expression] = STATE(2735), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [570] = { - [sym__expression] = STATE(2815), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(991), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2700), + [anon_sym_go] = ACTIONS(2702), + [anon_sym_spawn] = ACTIONS(2704), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2696), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_LT_DASH] = ACTIONS(2708), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(2710), + [anon_sym_lock] = ACTIONS(2712), + [anon_sym_rlock] = ACTIONS(2712), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [571] = { - [sym__expression] = STATE(2481), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(969), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2700), + [anon_sym_go] = ACTIONS(2702), + [anon_sym_spawn] = ACTIONS(2704), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2696), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_LT_DASH] = ACTIONS(2708), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(2710), + [anon_sym_lock] = ACTIONS(2712), + [anon_sym_rlock] = ACTIONS(2712), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [572] = { - [sym__expression] = STATE(2728), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(1786), + [sym__expression_without_blocks] = STATE(1940), + [sym__expression_with_blocks] = STATE(1940), + [sym_inc_expression] = STATE(1940), + [sym_dec_expression] = STATE(1940), + [sym_or_block_expression] = STATE(1940), + [sym_option_propagation_expression] = STATE(1940), + [sym_result_propagation_expression] = STATE(1940), + [sym_anon_struct_value_expression] = STATE(1944), + [sym_go_expression] = STATE(1940), + [sym_spawn_expression] = STATE(1940), + [sym_parenthesized_expression] = STATE(1940), + [sym_call_expression] = STATE(1940), + [sym_type_initializer] = STATE(1944), + [sym_function_literal] = STATE(1940), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1940), + [sym_receive_expression] = STATE(1940), + [sym_binary_expression] = STATE(1940), + [sym_as_type_cast_expression] = STATE(1940), + [sym__max_group] = STATE(1940), + [sym_literal] = STATE(1940), + [sym_map_init_expression] = STATE(1944), + [sym_array_creation] = STATE(1940), + [sym_fixed_array_creation] = STATE(1940), + [sym_selector_expression] = STATE(1940), + [sym_index_expression] = STATE(1940), + [sym_slice_expression] = STATE(1940), + [sym_if_expression] = STATE(1944), + [sym_compile_time_if_expression] = STATE(1944), + [sym_is_expression] = STATE(1940), + [sym_not_is_expression] = STATE(1940), + [sym_in_expression] = STATE(1940), + [sym_not_in_expression] = STATE(1940), + [sym_enum_fetch] = STATE(1940), + [sym_match_expression] = STATE(1944), + [sym_select_expression] = STATE(1944), + [sym_lock_expression] = STATE(1944), + [sym_unsafe_expression] = STATE(1944), + [sym_sql_expression] = STATE(1944), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1940), + [sym_mutability_modifiers] = STATE(494), + [sym_plain_type] = STATE(4204), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2714), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(2718), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(2720), + [anon_sym_DOLLARif] = ACTIONS(2722), + [anon_sym_match] = ACTIONS(2724), + [anon_sym_select] = ACTIONS(2726), + [anon_sym_lock] = ACTIONS(2728), + [anon_sym_rlock] = ACTIONS(2728), + [anon_sym_unsafe] = ACTIONS(2730), + [anon_sym_sql] = ACTIONS(2732), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [573] = { - [sym__expression] = STATE(2636), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(990), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2700), + [anon_sym_go] = ACTIONS(2702), + [anon_sym_spawn] = ACTIONS(2704), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2696), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_LT_DASH] = ACTIONS(2708), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(2710), + [anon_sym_lock] = ACTIONS(2712), + [anon_sym_rlock] = ACTIONS(2712), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [574] = { - [sym__expression] = STATE(2645), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(1624), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(602), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2688), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), }, [575] = { - [sym__expression] = STATE(963), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [sym__expression] = STATE(2646), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [576] = { - [sym__expression] = STATE(2730), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(1795), + [sym__expression_without_blocks] = STATE(1940), + [sym__expression_with_blocks] = STATE(1940), + [sym_inc_expression] = STATE(1940), + [sym_dec_expression] = STATE(1940), + [sym_or_block_expression] = STATE(1940), + [sym_option_propagation_expression] = STATE(1940), + [sym_result_propagation_expression] = STATE(1940), + [sym_anon_struct_value_expression] = STATE(1944), + [sym_go_expression] = STATE(1940), + [sym_spawn_expression] = STATE(1940), + [sym_parenthesized_expression] = STATE(1940), + [sym_call_expression] = STATE(1940), + [sym_type_initializer] = STATE(1944), + [sym_function_literal] = STATE(1940), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1940), + [sym_receive_expression] = STATE(1940), + [sym_binary_expression] = STATE(1940), + [sym_as_type_cast_expression] = STATE(1940), + [sym__max_group] = STATE(1940), + [sym_literal] = STATE(1940), + [sym_map_init_expression] = STATE(1944), + [sym_array_creation] = STATE(1940), + [sym_fixed_array_creation] = STATE(1940), + [sym_selector_expression] = STATE(1940), + [sym_index_expression] = STATE(1940), + [sym_slice_expression] = STATE(1940), + [sym_if_expression] = STATE(1944), + [sym_compile_time_if_expression] = STATE(1944), + [sym_is_expression] = STATE(1940), + [sym_not_is_expression] = STATE(1940), + [sym_in_expression] = STATE(1940), + [sym_not_in_expression] = STATE(1940), + [sym_enum_fetch] = STATE(1940), + [sym_match_expression] = STATE(1944), + [sym_select_expression] = STATE(1944), + [sym_lock_expression] = STATE(1944), + [sym_unsafe_expression] = STATE(1944), + [sym_sql_expression] = STATE(1944), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1940), + [sym_mutability_modifiers] = STATE(494), + [sym_plain_type] = STATE(4204), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2714), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(2718), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(2720), + [anon_sym_DOLLARif] = ACTIONS(2722), + [anon_sym_match] = ACTIONS(2724), + [anon_sym_select] = ACTIONS(2726), + [anon_sym_lock] = ACTIONS(2728), + [anon_sym_rlock] = ACTIONS(2728), + [anon_sym_unsafe] = ACTIONS(2730), + [anon_sym_sql] = ACTIONS(2732), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [577] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3684), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(989), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2700), + [anon_sym_go] = ACTIONS(2702), + [anon_sym_spawn] = ACTIONS(2704), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2696), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_LT_DASH] = ACTIONS(2708), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(2710), + [anon_sym_lock] = ACTIONS(2712), + [anon_sym_rlock] = ACTIONS(2712), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [578] = { - [sym__expression] = STATE(2204), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(2730), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3659), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [579] = { - [sym__expression] = STATE(963), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4404), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [sym__expression] = STATE(982), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2700), + [anon_sym_go] = ACTIONS(2702), + [anon_sym_spawn] = ACTIONS(2704), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2696), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_LT_DASH] = ACTIONS(2708), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(2710), + [anon_sym_lock] = ACTIONS(2712), + [anon_sym_rlock] = ACTIONS(2712), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), + }, + [580] = { + [sym__expression] = STATE(987), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2700), + [anon_sym_go] = ACTIONS(2702), + [anon_sym_spawn] = ACTIONS(2704), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2696), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_LT_DASH] = ACTIONS(2708), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(2710), + [anon_sym_lock] = ACTIONS(2712), + [anon_sym_rlock] = ACTIONS(2712), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), + }, + [581] = { + [sym__expression] = STATE(983), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2700), + [anon_sym_go] = ACTIONS(2702), + [anon_sym_spawn] = ACTIONS(2704), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2696), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_LT_DASH] = ACTIONS(2708), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(2710), + [anon_sym_lock] = ACTIONS(2712), + [anon_sym_rlock] = ACTIONS(2712), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), + }, + [582] = { + [sym__expression] = STATE(2873), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), + }, + [583] = { + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2980), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2981), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), + }, + [584] = { + [sym__expression] = STATE(2186), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), + }, + [585] = { + [sym__expression] = STATE(2449), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), + }, + [586] = { + [sym__expression] = STATE(2739), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), + }, + [587] = { + [sym__expression] = STATE(2865), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), + }, + [588] = { + [sym__expression] = STATE(2736), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), + }, + [589] = { + [sym__expression] = STATE(1630), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(602), + [sym_plain_type] = STATE(4159), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2688), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), + }, + [590] = { + [sym__expression] = STATE(1142), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1242), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(945), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), + }, + [591] = { + [sym__expression] = STATE(2464), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), [anon_sym_PLUS] = ACTIONS(2594), [anon_sym_DASH] = ACTIONS(2594), [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), [anon_sym_BANG] = ACTIONS(2598), [anon_sym_go] = ACTIONS(2600), [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), [anon_sym_TILDE] = ACTIONS(2594), [anon_sym_CARET] = ACTIONS(2594), [anon_sym_AMP] = ACTIONS(2604), [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), [anon_sym_select] = ACTIONS(2608), [anon_sym_lock] = ACTIONS(2610), [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, - [580] = { - [sym__expression] = STATE(963), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4402), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [592] = { + [sym__expression] = STATE(1140), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1242), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(945), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), + }, + [593] = { + [sym__expression] = STATE(1630), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(602), + [sym_plain_type] = STATE(4143), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2688), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), + }, + [594] = { + [sym__expression] = STATE(1630), + [sym__expression_without_blocks] = STATE(1712), + [sym__expression_with_blocks] = STATE(1712), + [sym_inc_expression] = STATE(1712), + [sym_dec_expression] = STATE(1712), + [sym_or_block_expression] = STATE(1712), + [sym_option_propagation_expression] = STATE(1712), + [sym_result_propagation_expression] = STATE(1712), + [sym_anon_struct_value_expression] = STATE(1713), + [sym_go_expression] = STATE(1712), + [sym_spawn_expression] = STATE(1712), + [sym_parenthesized_expression] = STATE(1712), + [sym_call_expression] = STATE(1712), + [sym_type_initializer] = STATE(1713), + [sym_function_literal] = STATE(1712), + [sym_reference_expression] = STATE(1715), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1712), + [sym_receive_expression] = STATE(1712), + [sym_binary_expression] = STATE(1712), + [sym_as_type_cast_expression] = STATE(1712), + [sym__max_group] = STATE(1712), + [sym_literal] = STATE(1712), + [sym_map_init_expression] = STATE(1713), + [sym_array_creation] = STATE(1712), + [sym_fixed_array_creation] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym_index_expression] = STATE(1712), + [sym_slice_expression] = STATE(1712), + [sym_if_expression] = STATE(1713), + [sym_compile_time_if_expression] = STATE(1713), + [sym_is_expression] = STATE(1712), + [sym_not_is_expression] = STATE(1712), + [sym_in_expression] = STATE(1712), + [sym_not_in_expression] = STATE(1712), + [sym_enum_fetch] = STATE(1712), + [sym_match_expression] = STATE(1713), + [sym_select_expression] = STATE(1713), + [sym_lock_expression] = STATE(1713), + [sym_unsafe_expression] = STATE(1713), + [sym_sql_expression] = STATE(1713), + [sym_c_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_interpreted_string_literal] = STATE(1705), + [sym_pseudo_compile_time_identifier] = STATE(1712), + [sym_mutability_modifiers] = STATE(602), + [sym_plain_type] = STATE(4136), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2688), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), + }, + [595] = { + [sym__expression] = STATE(2869), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), + }, + [596] = { + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1242), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(945), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), + }, + [597] = { + [sym__expression] = STATE(2470), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), [anon_sym_PLUS] = ACTIONS(2594), [anon_sym_DASH] = ACTIONS(2594), [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), [anon_sym_BANG] = ACTIONS(2598), [anon_sym_go] = ACTIONS(2600), [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), [anon_sym_TILDE] = ACTIONS(2594), [anon_sym_CARET] = ACTIONS(2594), [anon_sym_AMP] = ACTIONS(2604), [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), [anon_sym_select] = ACTIONS(2608), [anon_sym_lock] = ACTIONS(2610), [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, - [581] = { - [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [598] = { + [sym__expression] = STATE(1798), + [sym__expression_without_blocks] = STATE(1940), + [sym__expression_with_blocks] = STATE(1940), + [sym_inc_expression] = STATE(1940), + [sym_dec_expression] = STATE(1940), + [sym_or_block_expression] = STATE(1940), + [sym_option_propagation_expression] = STATE(1940), + [sym_result_propagation_expression] = STATE(1940), + [sym_anon_struct_value_expression] = STATE(1944), + [sym_go_expression] = STATE(1940), + [sym_spawn_expression] = STATE(1940), + [sym_parenthesized_expression] = STATE(1940), + [sym_call_expression] = STATE(1940), + [sym_type_initializer] = STATE(1944), + [sym_function_literal] = STATE(1940), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1940), + [sym_receive_expression] = STATE(1940), + [sym_binary_expression] = STATE(1940), + [sym_as_type_cast_expression] = STATE(1940), + [sym__max_group] = STATE(1940), + [sym_literal] = STATE(1940), + [sym_map_init_expression] = STATE(1944), + [sym_array_creation] = STATE(1940), + [sym_fixed_array_creation] = STATE(1940), + [sym_selector_expression] = STATE(1940), + [sym_index_expression] = STATE(1940), + [sym_slice_expression] = STATE(1940), + [sym_if_expression] = STATE(1944), + [sym_compile_time_if_expression] = STATE(1944), + [sym_is_expression] = STATE(1940), + [sym_not_is_expression] = STATE(1940), + [sym_in_expression] = STATE(1940), + [sym_not_in_expression] = STATE(1940), + [sym_enum_fetch] = STATE(1940), + [sym_match_expression] = STATE(1944), + [sym_select_expression] = STATE(1944), + [sym_lock_expression] = STATE(1944), + [sym_unsafe_expression] = STATE(1944), + [sym_sql_expression] = STATE(1944), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1940), + [sym_mutability_modifiers] = STATE(494), + [sym_plain_type] = STATE(4204), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2714), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(2718), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(2720), + [anon_sym_DOLLARif] = ACTIONS(2722), + [anon_sym_match] = ACTIONS(2724), + [anon_sym_select] = ACTIONS(2726), + [anon_sym_lock] = ACTIONS(2728), + [anon_sym_rlock] = ACTIONS(2728), + [anon_sym_unsafe] = ACTIONS(2730), + [anon_sym_sql] = ACTIONS(2732), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), + }, + [599] = { + [sym__expression] = STATE(2861), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), + }, + [600] = { + [ts_builtin_sym_end] = ACTIONS(2756), + [sym_identifier] = ACTIONS(2758), + [anon_sym_LF] = ACTIONS(2758), + [anon_sym_CR] = ACTIONS(2758), + [anon_sym_CR_LF] = ACTIONS(2758), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2758), + [anon_sym_as] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2758), + [anon_sym_const] = ACTIONS(2758), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_EQ] = ACTIONS(2758), + [anon_sym___global] = ACTIONS(2758), + [anon_sym_type] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_fn] = ACTIONS(2758), + [anon_sym_PLUS] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_STAR] = ACTIONS(2758), + [anon_sym_SLASH] = ACTIONS(2758), + [anon_sym_PERCENT] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2758), + [anon_sym_GT] = ACTIONS(2758), + [anon_sym_EQ_EQ] = ACTIONS(2758), + [anon_sym_BANG_EQ] = ACTIONS(2758), + [anon_sym_LT_EQ] = ACTIONS(2758), + [anon_sym_GT_EQ] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(2758), + [anon_sym_union] = ACTIONS(2758), + [anon_sym_pub] = ACTIONS(2758), + [anon_sym_mut] = ACTIONS(2758), + [anon_sym_enum] = ACTIONS(2758), + [anon_sym_interface] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_QMARK] = ACTIONS(2758), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_go] = ACTIONS(2758), + [anon_sym_spawn] = ACTIONS(2758), + [anon_sym_json_DOTdecode] = ACTIONS(2758), + [anon_sym_LBRACK2] = ACTIONS(2758), + [anon_sym_TILDE] = ACTIONS(2758), + [anon_sym_CARET] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_LT_DASH] = ACTIONS(2758), + [anon_sym_LT_LT] = ACTIONS(2758), + [anon_sym_GT_GT] = ACTIONS(2758), + [anon_sym_GT_GT_GT] = ACTIONS(2758), + [anon_sym_AMP_CARET] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_or] = ACTIONS(2758), + [sym_none] = ACTIONS(2758), + [sym_true] = ACTIONS(2758), + [sym_false] = ACTIONS(2758), + [sym_nil] = ACTIONS(2758), + [anon_sym_QMARK_DOT] = ACTIONS(2758), + [anon_sym_POUND_LBRACK] = ACTIONS(2758), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_DOLLARif] = ACTIONS(2758), + [anon_sym_DOLLARelse] = ACTIONS(2760), + [anon_sym_is] = ACTIONS(2758), + [anon_sym_BANGis] = ACTIONS(2758), + [anon_sym_in] = ACTIONS(2758), + [anon_sym_BANGin] = ACTIONS(2758), + [anon_sym_match] = ACTIONS(2758), + [anon_sym_select] = ACTIONS(2758), + [anon_sym_STAR_EQ] = ACTIONS(2758), + [anon_sym_SLASH_EQ] = ACTIONS(2758), + [anon_sym_PERCENT_EQ] = ACTIONS(2758), + [anon_sym_LT_LT_EQ] = ACTIONS(2758), + [anon_sym_GT_GT_EQ] = ACTIONS(2758), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2758), + [anon_sym_AMP_EQ] = ACTIONS(2758), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2758), + [anon_sym_PLUS_EQ] = ACTIONS(2758), + [anon_sym_DASH_EQ] = ACTIONS(2758), + [anon_sym_PIPE_EQ] = ACTIONS(2758), + [anon_sym_CARET_EQ] = ACTIONS(2758), + [anon_sym_COLON_EQ] = ACTIONS(2758), + [anon_sym_lock] = ACTIONS(2758), + [anon_sym_rlock] = ACTIONS(2758), + [anon_sym_unsafe] = ACTIONS(2758), + [anon_sym_sql] = ACTIONS(2758), + [sym_int_literal] = ACTIONS(2758), + [sym_float_literal] = ACTIONS(2758), + [sym_rune_literal] = ACTIONS(2758), + [anon_sym_AT] = ACTIONS(2758), + [anon_sym_shared] = ACTIONS(2758), + [anon_sym_map_LBRACK] = ACTIONS(2758), + [anon_sym_chan] = ACTIONS(2758), + [anon_sym_thread] = ACTIONS(2758), + [anon_sym_atomic] = ACTIONS(2758), + [anon_sym_assert] = ACTIONS(2758), + [anon_sym_defer] = ACTIONS(2758), + [anon_sym_goto] = ACTIONS(2758), + [anon_sym_break] = ACTIONS(2758), + [anon_sym_continue] = ACTIONS(2758), + [anon_sym_return] = ACTIONS(2758), + [anon_sym_DOLLARfor] = ACTIONS(2758), + [anon_sym_for] = ACTIONS(2758), + [anon_sym_POUND] = ACTIONS(2758), + [anon_sym_asm] = ACTIONS(2758), + [anon_sym_AT_LBRACK] = ACTIONS(2758), + [sym___double_quote] = ACTIONS(2758), + [sym___single_quote] = ACTIONS(2758), + [sym___c_double_quote] = ACTIONS(2758), + [sym___c_single_quote] = ACTIONS(2758), + [sym___r_double_quote] = ACTIONS(2758), + [sym___r_single_quote] = ACTIONS(2758), + }, + [601] = { + [sym__expression] = STATE(2225), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3671), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), + }, + [602] = { + [sym__expression] = STATE(2876), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), + }, + [603] = { + [sym__expression] = STATE(2317), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), [anon_sym_PLUS] = ACTIONS(2594), [anon_sym_DASH] = ACTIONS(2594), [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), [anon_sym_BANG] = ACTIONS(2598), [anon_sym_go] = ACTIONS(2600), [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), [anon_sym_TILDE] = ACTIONS(2594), [anon_sym_CARET] = ACTIONS(2594), [anon_sym_AMP] = ACTIONS(2604), [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), [anon_sym_select] = ACTIONS(2608), [anon_sym_lock] = ACTIONS(2610), [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [582] = { - [sym__expression] = STATE(2785), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [583] = { - [sym__expression] = STATE(2719), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, - [584] = { - [sym__expression] = STATE(985), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [604] = { + [sym__expression] = STATE(2468), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), [anon_sym_PLUS] = ACTIONS(2594), [anon_sym_DASH] = ACTIONS(2594), [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), [anon_sym_BANG] = ACTIONS(2598), [anon_sym_go] = ACTIONS(2600), [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), [anon_sym_TILDE] = ACTIONS(2594), [anon_sym_CARET] = ACTIONS(2594), [anon_sym_AMP] = ACTIONS(2604), [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), [anon_sym_select] = ACTIONS(2608), [anon_sym_lock] = ACTIONS(2610), [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, - [585] = { - [sym__expression] = STATE(963), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4400), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [605] = { + [sym__expression] = STATE(2225), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3670), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), + }, + [606] = { + [sym__expression] = STATE(2309), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), + }, + [607] = { + [sym__expression] = STATE(2433), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), [anon_sym_PLUS] = ACTIONS(2594), [anon_sym_DASH] = ACTIONS(2594), [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), [anon_sym_BANG] = ACTIONS(2598), [anon_sym_go] = ACTIONS(2600), [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), [anon_sym_TILDE] = ACTIONS(2594), [anon_sym_CARET] = ACTIONS(2594), [anon_sym_AMP] = ACTIONS(2604), [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), [anon_sym_select] = ACTIONS(2608), [anon_sym_lock] = ACTIONS(2610), [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, - [586] = { - [sym__expression] = STATE(2204), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [608] = { + [sym__expression] = STATE(1144), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1242), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(945), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, - [587] = { - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4148), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), + [609] = { + [sym__expression] = STATE(2882), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, - [588] = { - [sym__expression] = STATE(2594), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [610] = { + [sym__expression] = STATE(2645), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [589] = { - [sym__expression] = STATE(2597), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [590] = { - [sym__expression] = STATE(2703), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3667), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [591] = { - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4152), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [592] = { - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4155), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [593] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [594] = { - [sym__expression] = STATE(2467), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [595] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2956), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [596] = { - [ts_builtin_sym_end] = ACTIONS(2738), - [sym_identifier] = ACTIONS(2740), - [anon_sym_LF] = ACTIONS(2740), - [anon_sym_CR] = ACTIONS(2740), - [anon_sym_CR_LF] = ACTIONS(2740), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2740), - [anon_sym_as] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_COMMA] = ACTIONS(2740), - [anon_sym_const] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_EQ] = ACTIONS(2740), - [anon_sym___global] = ACTIONS(2740), - [anon_sym_type] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_fn] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_STAR] = ACTIONS(2740), - [anon_sym_SLASH] = ACTIONS(2740), - [anon_sym_PERCENT] = ACTIONS(2740), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_GT] = ACTIONS(2740), - [anon_sym_EQ_EQ] = ACTIONS(2740), - [anon_sym_BANG_EQ] = ACTIONS(2740), - [anon_sym_LT_EQ] = ACTIONS(2740), - [anon_sym_GT_EQ] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_struct] = ACTIONS(2740), - [anon_sym_union] = ACTIONS(2740), - [anon_sym_pub] = ACTIONS(2740), - [anon_sym_mut] = ACTIONS(2740), - [anon_sym_enum] = ACTIONS(2740), - [anon_sym_interface] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2740), - [anon_sym_DASH_DASH] = ACTIONS(2740), - [anon_sym_QMARK] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2740), - [anon_sym_go] = ACTIONS(2740), - [anon_sym_spawn] = ACTIONS(2740), - [anon_sym_json_DOTdecode] = ACTIONS(2740), - [anon_sym_LBRACK2] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2740), - [anon_sym_CARET] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), - [anon_sym_LT_DASH] = ACTIONS(2740), - [anon_sym_LT_LT] = ACTIONS(2740), - [anon_sym_GT_GT] = ACTIONS(2740), - [anon_sym_GT_GT_GT] = ACTIONS(2740), - [anon_sym_AMP_CARET] = ACTIONS(2740), - [anon_sym_AMP_AMP] = ACTIONS(2740), - [anon_sym_PIPE_PIPE] = ACTIONS(2740), - [anon_sym_or] = ACTIONS(2740), - [sym_none] = ACTIONS(2740), - [sym_true] = ACTIONS(2740), - [sym_false] = ACTIONS(2740), - [sym_nil] = ACTIONS(2740), - [anon_sym_QMARK_DOT] = ACTIONS(2740), - [anon_sym_POUND_LBRACK] = ACTIONS(2740), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_DOLLARif] = ACTIONS(2740), - [anon_sym_DOLLARelse] = ACTIONS(2742), - [anon_sym_is] = ACTIONS(2740), - [anon_sym_BANGis] = ACTIONS(2740), - [anon_sym_in] = ACTIONS(2740), - [anon_sym_BANGin] = ACTIONS(2740), - [anon_sym_match] = ACTIONS(2740), - [anon_sym_select] = ACTIONS(2740), - [anon_sym_STAR_EQ] = ACTIONS(2740), - [anon_sym_SLASH_EQ] = ACTIONS(2740), - [anon_sym_PERCENT_EQ] = ACTIONS(2740), - [anon_sym_LT_LT_EQ] = ACTIONS(2740), - [anon_sym_GT_GT_EQ] = ACTIONS(2740), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2740), - [anon_sym_AMP_EQ] = ACTIONS(2740), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2740), - [anon_sym_PLUS_EQ] = ACTIONS(2740), - [anon_sym_DASH_EQ] = ACTIONS(2740), - [anon_sym_PIPE_EQ] = ACTIONS(2740), - [anon_sym_CARET_EQ] = ACTIONS(2740), - [anon_sym_COLON_EQ] = ACTIONS(2740), - [anon_sym_lock] = ACTIONS(2740), - [anon_sym_rlock] = ACTIONS(2740), - [anon_sym_unsafe] = ACTIONS(2740), - [anon_sym_sql] = ACTIONS(2740), - [sym_int_literal] = ACTIONS(2740), - [sym_float_literal] = ACTIONS(2740), - [sym_rune_literal] = ACTIONS(2740), - [anon_sym_AT] = ACTIONS(2740), - [anon_sym_shared] = ACTIONS(2740), - [anon_sym_map_LBRACK] = ACTIONS(2740), - [anon_sym_chan] = ACTIONS(2740), - [anon_sym_thread] = ACTIONS(2740), - [anon_sym_atomic] = ACTIONS(2740), - [anon_sym_assert] = ACTIONS(2740), - [anon_sym_defer] = ACTIONS(2740), - [anon_sym_goto] = ACTIONS(2740), - [anon_sym_break] = ACTIONS(2740), - [anon_sym_continue] = ACTIONS(2740), - [anon_sym_return] = ACTIONS(2740), - [anon_sym_DOLLARfor] = ACTIONS(2740), - [anon_sym_for] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(2740), - [anon_sym_asm] = ACTIONS(2740), - [anon_sym_AT_LBRACK] = ACTIONS(2740), - [sym___double_quote] = ACTIONS(2740), - [sym___single_quote] = ACTIONS(2740), - [sym___c_double_quote] = ACTIONS(2740), - [sym___c_single_quote] = ACTIONS(2740), - [sym___r_double_quote] = ACTIONS(2740), - [sym___r_single_quote] = ACTIONS(2740), - }, - [597] = { - [sym__expression] = STATE(2863), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [598] = { - [sym__expression] = STATE(2668), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [599] = { - [sym__expression] = STATE(2316), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [600] = { - [sym__expression] = STATE(2808), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [601] = { - [sym__expression] = STATE(2314), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [602] = { - [sym__expression] = STATE(2315), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [603] = { - [sym__expression] = STATE(2304), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [604] = { - [sym__expression] = STATE(2319), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [605] = { - [sym__expression] = STATE(2305), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [606] = { - [sym__expression] = STATE(990), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [607] = { - [sym__expression] = STATE(2294), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [608] = { - [sym__expression] = STATE(965), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [609] = { - [sym__expression] = STATE(2316), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4242), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [610] = { - [sym__expression] = STATE(2316), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4239), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [611] = { - [sym__expression] = STATE(2882), - [sym__expression_without_blocks] = STATE(2145), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2145), - [sym_dec_expression] = STATE(2145), - [sym_or_block_expression] = STATE(2145), - [sym_option_propagation_expression] = STATE(2145), - [sym_result_propagation_expression] = STATE(2145), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2145), - [sym_spawn_expression] = STATE(2145), - [sym_parenthesized_expression] = STATE(2145), - [sym_call_expression] = STATE(2145), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2145), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2145), - [sym_receive_expression] = STATE(2145), - [sym_binary_expression] = STATE(2145), - [sym_as_type_cast_expression] = STATE(2145), - [sym__max_group] = STATE(2145), - [sym_literal] = STATE(2145), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2145), - [sym_fixed_array_creation] = STATE(2145), - [sym_selector_expression] = STATE(2145), - [sym_index_expression] = STATE(2145), - [sym_slice_expression] = STATE(2145), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2145), - [sym_not_is_expression] = STATE(2145), - [sym_in_expression] = STATE(2145), - [sym_not_in_expression] = STATE(2145), - [sym_enum_fetch] = STATE(2145), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2145), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), + [sym__expression] = STATE(2445), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [612] = { - [ts_builtin_sym_end] = ACTIONS(2728), - [sym_identifier] = ACTIONS(2730), - [anon_sym_LF] = ACTIONS(2730), - [anon_sym_CR] = ACTIONS(2730), - [anon_sym_CR_LF] = ACTIONS(2730), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2730), - [anon_sym_as] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_COMMA] = ACTIONS(2730), - [anon_sym_const] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym_EQ] = ACTIONS(2730), - [anon_sym___global] = ACTIONS(2730), - [anon_sym_type] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_fn] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2730), - [anon_sym_SLASH] = ACTIONS(2730), - [anon_sym_PERCENT] = ACTIONS(2730), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_GT] = ACTIONS(2730), - [anon_sym_EQ_EQ] = ACTIONS(2730), - [anon_sym_BANG_EQ] = ACTIONS(2730), - [anon_sym_LT_EQ] = ACTIONS(2730), - [anon_sym_GT_EQ] = ACTIONS(2730), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_struct] = ACTIONS(2730), - [anon_sym_union] = ACTIONS(2730), - [anon_sym_pub] = ACTIONS(2730), - [anon_sym_mut] = ACTIONS(2730), - [anon_sym_enum] = ACTIONS(2730), - [anon_sym_interface] = ACTIONS(2730), - [anon_sym_PLUS_PLUS] = ACTIONS(2730), - [anon_sym_DASH_DASH] = ACTIONS(2730), - [anon_sym_QMARK] = ACTIONS(2730), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_go] = ACTIONS(2730), - [anon_sym_spawn] = ACTIONS(2730), - [anon_sym_json_DOTdecode] = ACTIONS(2730), - [anon_sym_LBRACK2] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2730), - [anon_sym_CARET] = ACTIONS(2730), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_LT_DASH] = ACTIONS(2730), - [anon_sym_LT_LT] = ACTIONS(2730), - [anon_sym_GT_GT] = ACTIONS(2730), - [anon_sym_GT_GT_GT] = ACTIONS(2730), - [anon_sym_AMP_CARET] = ACTIONS(2730), - [anon_sym_AMP_AMP] = ACTIONS(2730), - [anon_sym_PIPE_PIPE] = ACTIONS(2730), - [anon_sym_or] = ACTIONS(2730), - [sym_none] = ACTIONS(2730), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_nil] = ACTIONS(2730), - [anon_sym_QMARK_DOT] = ACTIONS(2730), - [anon_sym_POUND_LBRACK] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_else] = ACTIONS(2730), - [anon_sym_DOLLARif] = ACTIONS(2730), - [anon_sym_is] = ACTIONS(2730), - [anon_sym_BANGis] = ACTIONS(2730), - [anon_sym_in] = ACTIONS(2730), - [anon_sym_BANGin] = ACTIONS(2730), - [anon_sym_match] = ACTIONS(2730), - [anon_sym_select] = ACTIONS(2730), - [anon_sym_STAR_EQ] = ACTIONS(2730), - [anon_sym_SLASH_EQ] = ACTIONS(2730), - [anon_sym_PERCENT_EQ] = ACTIONS(2730), - [anon_sym_LT_LT_EQ] = ACTIONS(2730), - [anon_sym_GT_GT_EQ] = ACTIONS(2730), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2730), - [anon_sym_AMP_EQ] = ACTIONS(2730), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2730), - [anon_sym_PLUS_EQ] = ACTIONS(2730), - [anon_sym_DASH_EQ] = ACTIONS(2730), - [anon_sym_PIPE_EQ] = ACTIONS(2730), - [anon_sym_CARET_EQ] = ACTIONS(2730), - [anon_sym_COLON_EQ] = ACTIONS(2730), - [anon_sym_lock] = ACTIONS(2730), - [anon_sym_rlock] = ACTIONS(2730), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2730), - [sym_int_literal] = ACTIONS(2730), - [sym_float_literal] = ACTIONS(2730), - [sym_rune_literal] = ACTIONS(2730), - [anon_sym_AT] = ACTIONS(2730), - [anon_sym_shared] = ACTIONS(2730), - [anon_sym_map_LBRACK] = ACTIONS(2730), - [anon_sym_chan] = ACTIONS(2730), - [anon_sym_thread] = ACTIONS(2730), - [anon_sym_atomic] = ACTIONS(2730), - [anon_sym_assert] = ACTIONS(2730), - [anon_sym_defer] = ACTIONS(2730), - [anon_sym_goto] = ACTIONS(2730), - [anon_sym_break] = ACTIONS(2730), - [anon_sym_continue] = ACTIONS(2730), - [anon_sym_return] = ACTIONS(2730), - [anon_sym_DOLLARfor] = ACTIONS(2730), - [anon_sym_for] = ACTIONS(2730), - [anon_sym_POUND] = ACTIONS(2730), - [anon_sym_asm] = ACTIONS(2730), - [anon_sym_AT_LBRACK] = ACTIONS(2730), - [sym___double_quote] = ACTIONS(2730), - [sym___single_quote] = ACTIONS(2730), - [sym___c_double_quote] = ACTIONS(2730), - [sym___c_single_quote] = ACTIONS(2730), - [sym___r_double_quote] = ACTIONS(2730), - [sym___r_single_quote] = ACTIONS(2730), + [sym__expression] = STATE(318), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_mutability_modifiers] = STATE(560), + [sym_plain_type] = STATE(4117), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2508), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(481), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(483), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(485), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [613] = { - [sym__expression] = STATE(2461), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2860), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3659), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [614] = { - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(324), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_mutability_modifiers] = STATE(560), + [sym_plain_type] = STATE(4117), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2508), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(481), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(483), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(485), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [615] = { - [sym__expression] = STATE(989), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [sym__expression] = STATE(2868), + [sym__expression_without_blocks] = STATE(2150), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2150), + [sym_dec_expression] = STATE(2150), + [sym_or_block_expression] = STATE(2150), + [sym_option_propagation_expression] = STATE(2150), + [sym_result_propagation_expression] = STATE(2150), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2150), + [sym_spawn_expression] = STATE(2150), + [sym_parenthesized_expression] = STATE(2150), + [sym_call_expression] = STATE(2150), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2150), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2150), + [sym_receive_expression] = STATE(2150), + [sym_binary_expression] = STATE(2150), + [sym_as_type_cast_expression] = STATE(2150), + [sym__max_group] = STATE(2150), + [sym_literal] = STATE(2150), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2150), + [sym_fixed_array_creation] = STATE(2150), + [sym_selector_expression] = STATE(2150), + [sym_index_expression] = STATE(2150), + [sym_slice_expression] = STATE(2150), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2150), + [sym_not_is_expression] = STATE(2150), + [sym_in_expression] = STATE(2150), + [sym_not_in_expression] = STATE(2150), + [sym_enum_fetch] = STATE(2150), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(2150), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1568), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_go] = ACTIONS(821), + [anon_sym_spawn] = ACTIONS(823), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(827), + [anon_sym_TILDE] = ACTIONS(811), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_LT_DASH] = ACTIONS(831), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [616] = { - [sym__expression] = STATE(2316), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4237), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2734), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [617] = { - [sym__expression] = STATE(2310), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(1143), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1242), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(945), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [618] = { - [sym__expression] = STATE(988), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [sym_type_parameters] = STATE(893), + [ts_builtin_sym_end] = ACTIONS(2762), + [sym_identifier] = ACTIONS(2764), + [anon_sym_LF] = ACTIONS(2764), + [anon_sym_CR] = ACTIONS(2764), + [anon_sym_CR_LF] = ACTIONS(2764), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2764), + [anon_sym_as] = ACTIONS(2764), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_COMMA] = ACTIONS(2764), + [anon_sym_const] = ACTIONS(2764), + [anon_sym_LPAREN] = ACTIONS(2764), + [anon_sym_EQ] = ACTIONS(2764), + [anon_sym___global] = ACTIONS(2764), + [anon_sym_type] = ACTIONS(2764), + [anon_sym_PIPE] = ACTIONS(2764), + [anon_sym_fn] = ACTIONS(2764), + [anon_sym_PLUS] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2764), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_SLASH] = ACTIONS(2764), + [anon_sym_PERCENT] = ACTIONS(2764), + [anon_sym_LT] = ACTIONS(2764), + [anon_sym_GT] = ACTIONS(2764), + [anon_sym_EQ_EQ] = ACTIONS(2764), + [anon_sym_BANG_EQ] = ACTIONS(2764), + [anon_sym_LT_EQ] = ACTIONS(2764), + [anon_sym_GT_EQ] = ACTIONS(2764), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2764), + [anon_sym_union] = ACTIONS(2764), + [anon_sym_pub] = ACTIONS(2764), + [anon_sym_mut] = ACTIONS(2764), + [anon_sym_enum] = ACTIONS(2764), + [anon_sym_interface] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_QMARK] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_go] = ACTIONS(2764), + [anon_sym_spawn] = ACTIONS(2764), + [anon_sym_json_DOTdecode] = ACTIONS(2764), + [anon_sym_LBRACK2] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_CARET] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_LT_DASH] = ACTIONS(2764), + [anon_sym_LT_LT] = ACTIONS(2764), + [anon_sym_GT_GT] = ACTIONS(2764), + [anon_sym_GT_GT_GT] = ACTIONS(2764), + [anon_sym_AMP_CARET] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_PIPE_PIPE] = ACTIONS(2764), + [anon_sym_or] = ACTIONS(2764), + [sym_none] = ACTIONS(2764), + [sym_true] = ACTIONS(2764), + [sym_false] = ACTIONS(2764), + [sym_nil] = ACTIONS(2764), + [anon_sym_QMARK_DOT] = ACTIONS(2764), + [anon_sym_POUND_LBRACK] = ACTIONS(2764), + [anon_sym_if] = ACTIONS(2764), + [anon_sym_DOLLARif] = ACTIONS(2764), + [anon_sym_is] = ACTIONS(2764), + [anon_sym_BANGis] = ACTIONS(2764), + [anon_sym_in] = ACTIONS(2764), + [anon_sym_BANGin] = ACTIONS(2764), + [anon_sym_match] = ACTIONS(2764), + [anon_sym_select] = ACTIONS(2764), + [anon_sym_STAR_EQ] = ACTIONS(2764), + [anon_sym_SLASH_EQ] = ACTIONS(2764), + [anon_sym_PERCENT_EQ] = ACTIONS(2764), + [anon_sym_LT_LT_EQ] = ACTIONS(2764), + [anon_sym_GT_GT_EQ] = ACTIONS(2764), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2764), + [anon_sym_AMP_EQ] = ACTIONS(2764), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2764), + [anon_sym_PLUS_EQ] = ACTIONS(2764), + [anon_sym_DASH_EQ] = ACTIONS(2764), + [anon_sym_PIPE_EQ] = ACTIONS(2764), + [anon_sym_CARET_EQ] = ACTIONS(2764), + [anon_sym_COLON_EQ] = ACTIONS(2764), + [anon_sym_lock] = ACTIONS(2764), + [anon_sym_rlock] = ACTIONS(2764), + [anon_sym_unsafe] = ACTIONS(2764), + [anon_sym_sql] = ACTIONS(2764), + [sym_int_literal] = ACTIONS(2764), + [sym_float_literal] = ACTIONS(2764), + [sym_rune_literal] = ACTIONS(2764), + [anon_sym_AT] = ACTIONS(2764), + [anon_sym_shared] = ACTIONS(2764), + [anon_sym_map_LBRACK] = ACTIONS(2764), + [anon_sym_chan] = ACTIONS(2764), + [anon_sym_thread] = ACTIONS(2764), + [anon_sym_atomic] = ACTIONS(2764), + [anon_sym_assert] = ACTIONS(2764), + [anon_sym_defer] = ACTIONS(2764), + [anon_sym_goto] = ACTIONS(2764), + [anon_sym_break] = ACTIONS(2764), + [anon_sym_continue] = ACTIONS(2764), + [anon_sym_return] = ACTIONS(2764), + [anon_sym_DOLLARfor] = ACTIONS(2764), + [anon_sym_for] = ACTIONS(2764), + [anon_sym_POUND] = ACTIONS(2764), + [anon_sym_asm] = ACTIONS(2764), + [anon_sym_AT_LBRACK] = ACTIONS(2764), + [sym___double_quote] = ACTIONS(2764), + [sym___single_quote] = ACTIONS(2764), + [sym___c_double_quote] = ACTIONS(2764), + [sym___c_single_quote] = ACTIONS(2764), + [sym___r_double_quote] = ACTIONS(2764), + [sym___r_single_quote] = ACTIONS(2764), }, [619] = { - [sym__expression] = STATE(1280), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(2225), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3669), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [620] = { - [sym__expression] = STATE(983), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1242), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(945), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [621] = { - [sym__expression] = STATE(982), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [sym__expression] = STATE(326), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_mutability_modifiers] = STATE(560), + [sym_plain_type] = STATE(4117), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2508), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(481), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(483), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(485), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [622] = { - [sym__expression] = STATE(991), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [sym__expression] = STATE(333), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_mutability_modifiers] = STATE(560), + [sym_plain_type] = STATE(4117), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2508), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(481), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(483), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(485), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [623] = { - [sym__expression] = STATE(1137), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), + [sym__expression] = STATE(1141), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1242), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(945), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [624] = { - [sym__expression] = STATE(1279), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(338), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_mutability_modifiers] = STATE(560), + [sym_plain_type] = STATE(4117), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2508), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(481), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(483), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(485), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [625] = { - [sym__expression] = STATE(2289), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(995), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2700), + [anon_sym_go] = ACTIONS(2702), + [anon_sym_spawn] = ACTIONS(2704), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2696), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_LT_DASH] = ACTIONS(2708), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(2710), + [anon_sym_lock] = ACTIONS(2712), + [anon_sym_rlock] = ACTIONS(2712), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [626] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3684), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(2887), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [627] = { - [sym__expression] = STATE(2832), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2975), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2948), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [628] = { - [sym__expression] = STATE(1136), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), + [sym__expression] = STATE(2504), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4108), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(2754), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2426), + [anon_sym_lock] = ACTIONS(2428), + [anon_sym_rlock] = ACTIONS(2428), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [629] = { - [sym__expression] = STATE(1135), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), + [sym__expression] = STATE(1899), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2466), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_go] = ACTIONS(2476), + [anon_sym_spawn] = ACTIONS(2478), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_LT_DASH] = ACTIONS(2484), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(2486), + [anon_sym_lock] = ACTIONS(2488), + [anon_sym_rlock] = ACTIONS(2488), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [630] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3675), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(332), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_mutability_modifiers] = STATE(560), + [sym_plain_type] = STATE(4117), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2508), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(481), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(483), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(485), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [631] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(1926), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2466), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_go] = ACTIONS(2476), + [anon_sym_spawn] = ACTIONS(2478), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_LT_DASH] = ACTIONS(2484), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(2486), + [anon_sym_lock] = ACTIONS(2488), + [anon_sym_rlock] = ACTIONS(2488), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [632] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(3684), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(1780), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1568), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_go] = ACTIONS(821), + [anon_sym_spawn] = ACTIONS(823), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(827), + [anon_sym_TILDE] = ACTIONS(811), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_LT_DASH] = ACTIONS(831), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(841), + [anon_sym_lock] = ACTIONS(843), + [anon_sym_rlock] = ACTIONS(843), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [633] = { - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), + [sym__expression] = STATE(2818), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [634] = { - [sym__expression] = STATE(2290), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(1658), + [sym__expression_without_blocks] = STATE(1820), + [sym__expression_with_blocks] = STATE(1820), + [sym_inc_expression] = STATE(1820), + [sym_dec_expression] = STATE(1820), + [sym_or_block_expression] = STATE(1820), + [sym_option_propagation_expression] = STATE(1820), + [sym_result_propagation_expression] = STATE(1820), + [sym_anon_struct_value_expression] = STATE(1814), + [sym_go_expression] = STATE(1820), + [sym_spawn_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1820), + [sym_call_expression] = STATE(1820), + [sym_type_initializer] = STATE(1814), + [sym_function_literal] = STATE(1820), + [sym_reference_expression] = STATE(1813), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1820), + [sym_receive_expression] = STATE(1820), + [sym_binary_expression] = STATE(1820), + [sym_as_type_cast_expression] = STATE(1820), + [sym__max_group] = STATE(1820), + [sym_literal] = STATE(1820), + [sym_map_init_expression] = STATE(1814), + [sym_array_creation] = STATE(1820), + [sym_fixed_array_creation] = STATE(1820), + [sym_selector_expression] = STATE(1820), + [sym_index_expression] = STATE(1820), + [sym_slice_expression] = STATE(1820), + [sym_if_expression] = STATE(1814), + [sym_compile_time_if_expression] = STATE(1814), + [sym_is_expression] = STATE(1820), + [sym_not_is_expression] = STATE(1820), + [sym_in_expression] = STATE(1820), + [sym_not_in_expression] = STATE(1820), + [sym_enum_fetch] = STATE(1820), + [sym_match_expression] = STATE(1814), + [sym_select_expression] = STATE(1814), + [sym_lock_expression] = STATE(1814), + [sym_unsafe_expression] = STATE(1814), + [sym_sql_expression] = STATE(1814), + [sym_c_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_interpreted_string_literal] = STATE(1819), + [sym_pseudo_compile_time_identifier] = STATE(1820), + [sym_mutability_modifiers] = STATE(464), + [sym_plain_type] = STATE(4123), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2524), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_fn] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2534), + [anon_sym_STAR] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2538), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_go] = ACTIONS(2542), + [anon_sym_spawn] = ACTIONS(2544), + [anon_sym_json_DOTdecode] = ACTIONS(2546), + [anon_sym_LBRACK2] = ACTIONS(2548), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2550), + [anon_sym_LT_DASH] = ACTIONS(2552), + [sym_none] = ACTIONS(2554), + [sym_true] = ACTIONS(2554), + [sym_false] = ACTIONS(2554), + [sym_nil] = ACTIONS(2554), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_DOLLARif] = ACTIONS(2558), + [anon_sym_match] = ACTIONS(2560), + [anon_sym_select] = ACTIONS(2562), + [anon_sym_lock] = ACTIONS(2564), + [anon_sym_rlock] = ACTIONS(2564), + [anon_sym_unsafe] = ACTIONS(2566), + [anon_sym_sql] = ACTIONS(2568), + [sym_int_literal] = ACTIONS(2554), + [sym_float_literal] = ACTIONS(2570), + [sym_rune_literal] = ACTIONS(2570), + [anon_sym_AT] = ACTIONS(2572), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2574), + [sym___single_quote] = ACTIONS(2576), + [sym___c_double_quote] = ACTIONS(2578), + [sym___c_single_quote] = ACTIONS(2580), + [sym___r_double_quote] = ACTIONS(2582), + [sym___r_single_quote] = ACTIONS(2584), }, [635] = { - [sym__expression] = STATE(2293), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(340), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_mutability_modifiers] = STATE(560), + [sym_plain_type] = STATE(4117), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2508), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(481), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(483), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(485), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [636] = { - [sym__expression] = STATE(2295), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(963), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2108), + [anon_sym_go] = ACTIONS(513), + [anon_sym_spawn] = ACTIONS(515), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_LT_DASH] = ACTIONS(2116), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(533), + [anon_sym_lock] = ACTIONS(535), + [anon_sym_rlock] = ACTIONS(535), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [637] = { - [sym__expression] = STATE(2144), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(342), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_mutability_modifiers] = STATE(560), + [sym_plain_type] = STATE(4117), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2508), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(481), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(483), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(485), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [638] = { - [sym__expression] = STATE(2296), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(343), + [sym__expression_without_blocks] = STATE(852), + [sym__expression_with_blocks] = STATE(852), + [sym_inc_expression] = STATE(852), + [sym_dec_expression] = STATE(852), + [sym_or_block_expression] = STATE(852), + [sym_option_propagation_expression] = STATE(852), + [sym_result_propagation_expression] = STATE(852), + [sym_anon_struct_value_expression] = STATE(937), + [sym_go_expression] = STATE(852), + [sym_spawn_expression] = STATE(852), + [sym_parenthesized_expression] = STATE(852), + [sym_call_expression] = STATE(852), + [sym_type_initializer] = STATE(937), + [sym_function_literal] = STATE(852), + [sym_reference_expression] = STATE(936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(852), + [sym_receive_expression] = STATE(852), + [sym_binary_expression] = STATE(852), + [sym_as_type_cast_expression] = STATE(852), + [sym__max_group] = STATE(852), + [sym_literal] = STATE(852), + [sym_map_init_expression] = STATE(937), + [sym_array_creation] = STATE(852), + [sym_fixed_array_creation] = STATE(852), + [sym_selector_expression] = STATE(852), + [sym_index_expression] = STATE(852), + [sym_slice_expression] = STATE(852), + [sym_if_expression] = STATE(937), + [sym_compile_time_if_expression] = STATE(937), + [sym_is_expression] = STATE(852), + [sym_not_is_expression] = STATE(852), + [sym_in_expression] = STATE(852), + [sym_not_in_expression] = STATE(852), + [sym_enum_fetch] = STATE(852), + [sym_match_expression] = STATE(937), + [sym_select_expression] = STATE(937), + [sym_lock_expression] = STATE(937), + [sym_unsafe_expression] = STATE(937), + [sym_sql_expression] = STATE(937), + [sym_c_string_literal] = STATE(952), + [sym_raw_string_literal] = STATE(952), + [sym_interpreted_string_literal] = STATE(952), + [sym_pseudo_compile_time_identifier] = STATE(852), + [sym_mutability_modifiers] = STATE(560), + [sym_plain_type] = STATE(4117), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2508), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(481), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(483), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(485), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [639] = { - [sym__expression] = STATE(2646), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2463), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2598), + [anon_sym_go] = ACTIONS(2600), + [anon_sym_spawn] = ACTIONS(2602), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(2594), + [anon_sym_CARET] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2604), + [anon_sym_LT_DASH] = ACTIONS(2606), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(2608), + [anon_sym_lock] = ACTIONS(2610), + [anon_sym_rlock] = ACTIONS(2610), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [640] = { - [sym__expression] = STATE(2313), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2219), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [641] = { - [sym__expression] = STATE(2187), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(1132), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1242), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(945), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [642] = { - [sym__expression] = STATE(2146), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(1780), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4403), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1568), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_go] = ACTIONS(821), + [anon_sym_spawn] = ACTIONS(823), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(827), + [anon_sym_TILDE] = ACTIONS(811), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_LT_DASH] = ACTIONS(831), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(841), + [anon_sym_lock] = ACTIONS(843), + [anon_sym_rlock] = ACTIONS(843), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [643] = { - [sym__expression] = STATE(2458), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2225), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3669), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [644] = { - [sym__expression] = STATE(2456), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(1765), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2466), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_go] = ACTIONS(2476), + [anon_sym_spawn] = ACTIONS(2478), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_LT_DASH] = ACTIONS(2484), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(2486), + [anon_sym_lock] = ACTIONS(2488), + [anon_sym_rlock] = ACTIONS(2488), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [645] = { - [sym__expression] = STATE(2227), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2947), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2946), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [646] = { - [sym__expression] = STATE(2452), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(979), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2108), + [anon_sym_go] = ACTIONS(513), + [anon_sym_spawn] = ACTIONS(515), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_LT_DASH] = ACTIONS(2116), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(533), + [anon_sym_lock] = ACTIONS(535), + [anon_sym_rlock] = ACTIONS(535), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [647] = { - [sym__expression] = STATE(2195), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(1780), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4394), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2466), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_go] = ACTIONS(2476), + [anon_sym_spawn] = ACTIONS(2478), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_LT_DASH] = ACTIONS(2484), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(2486), + [anon_sym_lock] = ACTIONS(2488), + [anon_sym_rlock] = ACTIONS(2488), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [648] = { - [sym__expression] = STATE(2147), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(2508), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4108), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2426), + [anon_sym_lock] = ACTIONS(2428), + [anon_sym_rlock] = ACTIONS(2428), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [649] = { - [sym__expression] = STATE(2451), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2443), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [650] = { - [sym__expression] = STATE(2450), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [651] = { - [sym__expression] = STATE(2247), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(2874), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [652] = { - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), + [sym__expression] = STATE(2218), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2766), + [anon_sym_DASH] = ACTIONS(2766), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2770), + [anon_sym_go] = ACTIONS(2772), + [anon_sym_spawn] = ACTIONS(2774), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2766), + [anon_sym_CARET] = ACTIONS(2766), + [anon_sym_AMP] = ACTIONS(2776), + [anon_sym_LT_DASH] = ACTIONS(2778), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2780), + [anon_sym_lock] = ACTIONS(2782), + [anon_sym_rlock] = ACTIONS(2782), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [653] = { - [sym__expression] = STATE(2144), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(2791), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [654] = { - [sym__expression] = STATE(2146), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4338), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(1780), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1568), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_go] = ACTIONS(821), + [anon_sym_spawn] = ACTIONS(823), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(827), + [anon_sym_TILDE] = ACTIONS(811), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_LT_DASH] = ACTIONS(831), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(841), + [anon_sym_lock] = ACTIONS(843), + [anon_sym_rlock] = ACTIONS(843), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [655] = { - [sym__expression] = STATE(2146), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4315), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(2225), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3671), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [656] = { - [sym__expression] = STATE(2239), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(1922), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2466), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_go] = ACTIONS(2476), + [anon_sym_spawn] = ACTIONS(2478), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_LT_DASH] = ACTIONS(2484), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(2486), + [anon_sym_lock] = ACTIONS(2488), + [anon_sym_rlock] = ACTIONS(2488), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [657] = { - [sym__expression] = STATE(2238), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(2225), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [658] = { - [sym__expression] = STATE(2146), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4309), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(2529), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [659] = { - [sym__expression] = STATE(1618), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), + [sym__expression] = STATE(2151), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2766), + [anon_sym_DASH] = ACTIONS(2766), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2770), + [anon_sym_go] = ACTIONS(2772), + [anon_sym_spawn] = ACTIONS(2774), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2766), + [anon_sym_CARET] = ACTIONS(2766), + [anon_sym_AMP] = ACTIONS(2776), + [anon_sym_LT_DASH] = ACTIONS(2778), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2780), + [anon_sym_lock] = ACTIONS(2782), + [anon_sym_rlock] = ACTIONS(2782), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [660] = { - [sym__expression] = STATE(2236), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(2189), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2766), + [anon_sym_DASH] = ACTIONS(2766), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2770), + [anon_sym_go] = ACTIONS(2772), + [anon_sym_spawn] = ACTIONS(2774), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2766), + [anon_sym_CARET] = ACTIONS(2766), + [anon_sym_AMP] = ACTIONS(2776), + [anon_sym_LT_DASH] = ACTIONS(2778), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2780), + [anon_sym_lock] = ACTIONS(2782), + [anon_sym_rlock] = ACTIONS(2782), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [661] = { - [sym__expression] = STATE(2204), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2666), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [662] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3684), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(975), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2108), + [anon_sym_go] = ACTIONS(513), + [anon_sym_spawn] = ACTIONS(515), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_LT_DASH] = ACTIONS(2116), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(533), + [anon_sym_lock] = ACTIONS(535), + [anon_sym_rlock] = ACTIONS(535), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [663] = { - [sym__expression] = STATE(1616), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), + [sym__expression] = STATE(973), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2108), + [anon_sym_go] = ACTIONS(513), + [anon_sym_spawn] = ACTIONS(515), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_LT_DASH] = ACTIONS(2116), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(533), + [anon_sym_lock] = ACTIONS(535), + [anon_sym_rlock] = ACTIONS(535), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [664] = { - [sym__expression] = STATE(2448), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2190), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2766), + [anon_sym_DASH] = ACTIONS(2766), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2770), + [anon_sym_go] = ACTIONS(2772), + [anon_sym_spawn] = ACTIONS(2774), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2766), + [anon_sym_CARET] = ACTIONS(2766), + [anon_sym_AMP] = ACTIONS(2776), + [anon_sym_LT_DASH] = ACTIONS(2778), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2780), + [anon_sym_lock] = ACTIONS(2782), + [anon_sym_rlock] = ACTIONS(2782), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [665] = { - [sym__expression] = STATE(1615), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), + [sym__expression] = STATE(2688), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3659), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [666] = { - [sym__expression] = STATE(2447), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2149), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4328), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2766), + [anon_sym_DASH] = ACTIONS(2766), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2770), + [anon_sym_go] = ACTIONS(2772), + [anon_sym_spawn] = ACTIONS(2774), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2766), + [anon_sym_CARET] = ACTIONS(2766), + [anon_sym_AMP] = ACTIONS(2776), + [anon_sym_LT_DASH] = ACTIONS(2778), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2780), + [anon_sym_lock] = ACTIONS(2782), + [anon_sym_rlock] = ACTIONS(2782), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [667] = { - [sym__expression] = STATE(1621), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), + [sym__expression] = STATE(972), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2108), + [anon_sym_go] = ACTIONS(513), + [anon_sym_spawn] = ACTIONS(515), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_LT_DASH] = ACTIONS(2116), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(533), + [anon_sym_lock] = ACTIONS(535), + [anon_sym_rlock] = ACTIONS(535), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [668] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), + [sym__expression] = STATE(2149), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2766), + [anon_sym_DASH] = ACTIONS(2766), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2770), + [anon_sym_go] = ACTIONS(2772), + [anon_sym_spawn] = ACTIONS(2774), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2766), + [anon_sym_CARET] = ACTIONS(2766), + [anon_sym_AMP] = ACTIONS(2776), + [anon_sym_LT_DASH] = ACTIONS(2778), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2780), + [anon_sym_lock] = ACTIONS(2782), + [anon_sym_rlock] = ACTIONS(2782), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [669] = { - [sym__expression] = STATE(1626), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), + [sym__expression] = STATE(969), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2108), + [anon_sym_go] = ACTIONS(513), + [anon_sym_spawn] = ACTIONS(515), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_LT_DASH] = ACTIONS(2116), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(533), + [anon_sym_lock] = ACTIONS(535), + [anon_sym_rlock] = ACTIONS(535), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [670] = { - [sym__expression] = STATE(1620), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), + [sym__expression] = STATE(2149), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4345), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2766), + [anon_sym_DASH] = ACTIONS(2766), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2770), + [anon_sym_go] = ACTIONS(2772), + [anon_sym_spawn] = ACTIONS(2774), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2766), + [anon_sym_CARET] = ACTIONS(2766), + [anon_sym_AMP] = ACTIONS(2776), + [anon_sym_LT_DASH] = ACTIONS(2778), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2780), + [anon_sym_lock] = ACTIONS(2782), + [anon_sym_rlock] = ACTIONS(2782), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [671] = { - [sym__expression] = STATE(2673), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3667), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(968), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2108), + [anon_sym_go] = ACTIONS(513), + [anon_sym_spawn] = ACTIONS(515), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_LT_DASH] = ACTIONS(2116), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(533), + [anon_sym_lock] = ACTIONS(535), + [anon_sym_rlock] = ACTIONS(535), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [672] = { - [sym__expression] = STATE(2235), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(2442), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [673] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3675), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(978), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2108), + [anon_sym_go] = ACTIONS(513), + [anon_sym_spawn] = ACTIONS(515), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_LT_DASH] = ACTIONS(2116), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(533), + [anon_sym_lock] = ACTIONS(535), + [anon_sym_rlock] = ACTIONS(535), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [674] = { - [sym__expression] = STATE(2234), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(970), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4177), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2108), + [anon_sym_go] = ACTIONS(513), + [anon_sym_spawn] = ACTIONS(515), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_LT_DASH] = ACTIONS(2116), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(533), + [anon_sym_lock] = ACTIONS(535), + [anon_sym_rlock] = ACTIONS(535), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [675] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [676] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2186), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [677] = { - [sym__expression] = STATE(2434), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2148), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2766), + [anon_sym_DASH] = ACTIONS(2766), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2770), + [anon_sym_go] = ACTIONS(2772), + [anon_sym_spawn] = ACTIONS(2774), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2766), + [anon_sym_CARET] = ACTIONS(2766), + [anon_sym_AMP] = ACTIONS(2776), + [anon_sym_LT_DASH] = ACTIONS(2778), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2780), + [anon_sym_lock] = ACTIONS(2782), + [anon_sym_rlock] = ACTIONS(2782), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [678] = { - [sym__expression] = STATE(2187), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2193), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2766), + [anon_sym_DASH] = ACTIONS(2766), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2770), + [anon_sym_go] = ACTIONS(2772), + [anon_sym_spawn] = ACTIONS(2774), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2766), + [anon_sym_CARET] = ACTIONS(2766), + [anon_sym_AMP] = ACTIONS(2776), + [anon_sym_LT_DASH] = ACTIONS(2778), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2780), + [anon_sym_lock] = ACTIONS(2782), + [anon_sym_rlock] = ACTIONS(2782), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [679] = { - [sym__expression] = STATE(2435), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2268), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2766), + [anon_sym_DASH] = ACTIONS(2766), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2770), + [anon_sym_go] = ACTIONS(2772), + [anon_sym_spawn] = ACTIONS(2774), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2766), + [anon_sym_CARET] = ACTIONS(2766), + [anon_sym_AMP] = ACTIONS(2776), + [anon_sym_LT_DASH] = ACTIONS(2778), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2780), + [anon_sym_lock] = ACTIONS(2782), + [anon_sym_rlock] = ACTIONS(2782), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [680] = { - [sym__expression] = STATE(2436), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2703), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [681] = { - [sym__expression] = STATE(2437), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [ts_builtin_sym_end] = ACTIONS(2692), + [sym_identifier] = ACTIONS(2694), + [anon_sym_LF] = ACTIONS(2694), + [anon_sym_CR] = ACTIONS(2694), + [anon_sym_CR_LF] = ACTIONS(2694), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2784), + [anon_sym_DOT] = ACTIONS(2694), + [anon_sym_as] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_COMMA] = ACTIONS(2784), + [anon_sym_const] = ACTIONS(2694), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym_EQ] = ACTIONS(2784), + [anon_sym___global] = ACTIONS(2694), + [anon_sym_type] = ACTIONS(2694), + [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_fn] = ACTIONS(2694), + [anon_sym_PLUS] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(2694), + [anon_sym_SLASH] = ACTIONS(2784), + [anon_sym_PERCENT] = ACTIONS(2784), + [anon_sym_LT] = ACTIONS(2784), + [anon_sym_GT] = ACTIONS(2784), + [anon_sym_EQ_EQ] = ACTIONS(2784), + [anon_sym_BANG_EQ] = ACTIONS(2784), + [anon_sym_LT_EQ] = ACTIONS(2784), + [anon_sym_GT_EQ] = ACTIONS(2784), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym_struct] = ACTIONS(2694), + [anon_sym_union] = ACTIONS(2694), + [anon_sym_pub] = ACTIONS(2694), + [anon_sym_mut] = ACTIONS(2694), + [anon_sym_enum] = ACTIONS(2694), + [anon_sym_interface] = ACTIONS(2694), + [anon_sym_PLUS_PLUS] = ACTIONS(2784), + [anon_sym_DASH_DASH] = ACTIONS(2784), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_BANG] = ACTIONS(2694), + [anon_sym_go] = ACTIONS(2694), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2694), + [anon_sym_LBRACK2] = ACTIONS(2694), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_CARET] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2694), + [anon_sym_LT_DASH] = ACTIONS(2694), + [anon_sym_LT_LT] = ACTIONS(2784), + [anon_sym_GT_GT] = ACTIONS(2784), + [anon_sym_GT_GT_GT] = ACTIONS(2784), + [anon_sym_AMP_CARET] = ACTIONS(2784), + [anon_sym_AMP_AMP] = ACTIONS(2784), + [anon_sym_PIPE_PIPE] = ACTIONS(2784), + [anon_sym_or] = ACTIONS(2784), + [sym_none] = ACTIONS(2694), + [sym_true] = ACTIONS(2694), + [sym_false] = ACTIONS(2694), + [sym_nil] = ACTIONS(2694), + [anon_sym_QMARK_DOT] = ACTIONS(2784), + [anon_sym_POUND_LBRACK] = ACTIONS(2784), + [anon_sym_if] = ACTIONS(2694), + [anon_sym_DOLLARif] = ACTIONS(2694), + [anon_sym_is] = ACTIONS(2784), + [anon_sym_BANGis] = ACTIONS(2784), + [anon_sym_in] = ACTIONS(2784), + [anon_sym_BANGin] = ACTIONS(2784), + [anon_sym_match] = ACTIONS(2694), + [anon_sym_select] = ACTIONS(2694), + [anon_sym_STAR_EQ] = ACTIONS(2784), + [anon_sym_SLASH_EQ] = ACTIONS(2784), + [anon_sym_PERCENT_EQ] = ACTIONS(2784), + [anon_sym_LT_LT_EQ] = ACTIONS(2784), + [anon_sym_GT_GT_EQ] = ACTIONS(2784), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2784), + [anon_sym_AMP_EQ] = ACTIONS(2784), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2784), + [anon_sym_PLUS_EQ] = ACTIONS(2784), + [anon_sym_DASH_EQ] = ACTIONS(2784), + [anon_sym_PIPE_EQ] = ACTIONS(2784), + [anon_sym_CARET_EQ] = ACTIONS(2784), + [anon_sym_COLON_EQ] = ACTIONS(2784), + [anon_sym_lock] = ACTIONS(2694), + [anon_sym_rlock] = ACTIONS(2694), + [anon_sym_unsafe] = ACTIONS(2694), + [anon_sym_sql] = ACTIONS(2694), + [sym_int_literal] = ACTIONS(2694), + [sym_float_literal] = ACTIONS(2694), + [sym_rune_literal] = ACTIONS(2694), + [anon_sym_AT] = ACTIONS(2694), + [anon_sym_shared] = ACTIONS(2694), + [anon_sym_map_LBRACK] = ACTIONS(2694), + [anon_sym_chan] = ACTIONS(2694), + [anon_sym_thread] = ACTIONS(2694), + [anon_sym_atomic] = ACTIONS(2694), + [anon_sym_assert] = ACTIONS(2694), + [anon_sym_defer] = ACTIONS(2694), + [anon_sym_goto] = ACTIONS(2694), + [anon_sym_break] = ACTIONS(2694), + [anon_sym_continue] = ACTIONS(2694), + [anon_sym_return] = ACTIONS(2694), + [anon_sym_DOLLARfor] = ACTIONS(2694), + [anon_sym_for] = ACTIONS(2694), + [anon_sym_POUND] = ACTIONS(2694), + [anon_sym_asm] = ACTIONS(2694), + [anon_sym_AT_LBRACK] = ACTIONS(2694), + [sym___double_quote] = ACTIONS(2694), + [sym___single_quote] = ACTIONS(2694), + [sym___c_double_quote] = ACTIONS(2694), + [sym___c_single_quote] = ACTIONS(2694), + [sym___r_double_quote] = ACTIONS(2694), + [sym___r_single_quote] = ACTIONS(2694), }, [682] = { - [sym__expression] = STATE(2438), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2289), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2766), + [anon_sym_DASH] = ACTIONS(2766), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2770), + [anon_sym_go] = ACTIONS(2772), + [anon_sym_spawn] = ACTIONS(2774), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2766), + [anon_sym_CARET] = ACTIONS(2766), + [anon_sym_AMP] = ACTIONS(2776), + [anon_sym_LT_DASH] = ACTIONS(2778), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2780), + [anon_sym_lock] = ACTIONS(2782), + [anon_sym_rlock] = ACTIONS(2782), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [683] = { - [sym__expression] = STATE(2608), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2149), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2766), + [anon_sym_DASH] = ACTIONS(2766), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2770), + [anon_sym_go] = ACTIONS(2772), + [anon_sym_spawn] = ACTIONS(2774), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2766), + [anon_sym_CARET] = ACTIONS(2766), + [anon_sym_AMP] = ACTIONS(2776), + [anon_sym_LT_DASH] = ACTIONS(2778), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2780), + [anon_sym_lock] = ACTIONS(2782), + [anon_sym_rlock] = ACTIONS(2782), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [684] = { - [sym__expression] = STATE(2873), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2199), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2766), + [anon_sym_DASH] = ACTIONS(2766), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2770), + [anon_sym_go] = ACTIONS(2772), + [anon_sym_spawn] = ACTIONS(2774), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2766), + [anon_sym_CARET] = ACTIONS(2766), + [anon_sym_AMP] = ACTIONS(2776), + [anon_sym_LT_DASH] = ACTIONS(2778), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2780), + [anon_sym_lock] = ACTIONS(2782), + [anon_sym_rlock] = ACTIONS(2782), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [685] = { - [sym__expression] = STATE(2559), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(1136), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1242), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(945), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [686] = { - [sym__expression] = STATE(2607), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2200), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2766), + [anon_sym_DASH] = ACTIONS(2766), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2770), + [anon_sym_go] = ACTIONS(2772), + [anon_sym_spawn] = ACTIONS(2774), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2766), + [anon_sym_CARET] = ACTIONS(2766), + [anon_sym_AMP] = ACTIONS(2776), + [anon_sym_LT_DASH] = ACTIONS(2778), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2780), + [anon_sym_lock] = ACTIONS(2782), + [anon_sym_rlock] = ACTIONS(2782), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [687] = { - [sym__expression] = STATE(2439), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(1135), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1242), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(945), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [688] = { - [sym__expression] = STATE(2601), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2321), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2598), + [anon_sym_go] = ACTIONS(2600), + [anon_sym_spawn] = ACTIONS(2602), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(2594), + [anon_sym_CARET] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2604), + [anon_sym_LT_DASH] = ACTIONS(2606), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(2608), + [anon_sym_lock] = ACTIONS(2610), + [anon_sym_rlock] = ACTIONS(2610), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [689] = { - [sym__expression] = STATE(2598), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2556), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2598), + [anon_sym_go] = ACTIONS(2600), + [anon_sym_spawn] = ACTIONS(2602), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(2594), + [anon_sym_CARET] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2604), + [anon_sym_LT_DASH] = ACTIONS(2606), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(2608), + [anon_sym_lock] = ACTIONS(2610), + [anon_sym_rlock] = ACTIONS(2610), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [690] = { - [sym__expression] = STATE(2596), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2314), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4215), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2598), + [anon_sym_go] = ACTIONS(2600), + [anon_sym_spawn] = ACTIONS(2602), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(2594), + [anon_sym_CARET] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2604), + [anon_sym_LT_DASH] = ACTIONS(2606), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(2608), + [anon_sym_lock] = ACTIONS(2610), + [anon_sym_rlock] = ACTIONS(2610), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [691] = { - [sym__expression] = STATE(2595), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2447), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2598), + [anon_sym_go] = ACTIONS(2600), + [anon_sym_spawn] = ACTIONS(2602), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(2594), + [anon_sym_CARET] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2604), + [anon_sym_LT_DASH] = ACTIONS(2606), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(2608), + [anon_sym_lock] = ACTIONS(2610), + [anon_sym_rlock] = ACTIONS(2610), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [692] = { - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2451), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2598), + [anon_sym_go] = ACTIONS(2600), + [anon_sym_spawn] = ACTIONS(2602), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(2594), + [anon_sym_CARET] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2604), + [anon_sym_LT_DASH] = ACTIONS(2606), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(2608), + [anon_sym_lock] = ACTIONS(2610), + [anon_sym_rlock] = ACTIONS(2610), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [693] = { - [sym__expression] = STATE(2665), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(1836), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2466), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_go] = ACTIONS(2476), + [anon_sym_spawn] = ACTIONS(2478), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_LT_DASH] = ACTIONS(2484), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(2486), + [anon_sym_lock] = ACTIONS(2488), + [anon_sym_rlock] = ACTIONS(2488), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [694] = { - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), + [sym__expression] = STATE(2314), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4222), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2598), + [anon_sym_go] = ACTIONS(2600), + [anon_sym_spawn] = ACTIONS(2602), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(2594), + [anon_sym_CARET] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2604), + [anon_sym_LT_DASH] = ACTIONS(2606), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(2608), + [anon_sym_lock] = ACTIONS(2610), + [anon_sym_rlock] = ACTIONS(2610), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [695] = { - [sym__expression] = STATE(1139), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), + [sym__expression] = STATE(2314), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4229), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2598), + [anon_sym_go] = ACTIONS(2600), + [anon_sym_spawn] = ACTIONS(2602), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(2594), + [anon_sym_CARET] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2604), + [anon_sym_LT_DASH] = ACTIONS(2606), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(2608), + [anon_sym_lock] = ACTIONS(2610), + [anon_sym_rlock] = ACTIONS(2610), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [696] = { - [sym__expression] = STATE(2663), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(2314), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2598), + [anon_sym_go] = ACTIONS(2600), + [anon_sym_spawn] = ACTIONS(2602), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(2594), + [anon_sym_CARET] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2604), + [anon_sym_LT_DASH] = ACTIONS(2606), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(2608), + [anon_sym_lock] = ACTIONS(2610), + [anon_sym_rlock] = ACTIONS(2610), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [697] = { - [sym__expression] = STATE(2288), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(1137), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1242), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(945), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [698] = { - [sym__expression] = STATE(2805), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(1823), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2466), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_go] = ACTIONS(2476), + [anon_sym_spawn] = ACTIONS(2478), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_LT_DASH] = ACTIONS(2484), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(2486), + [anon_sym_lock] = ACTIONS(2488), + [anon_sym_rlock] = ACTIONS(2488), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [699] = { - [sym__expression] = STATE(2310), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(978), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2700), + [anon_sym_go] = ACTIONS(2702), + [anon_sym_spawn] = ACTIONS(2704), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2696), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_LT_DASH] = ACTIONS(2708), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(2710), + [anon_sym_lock] = ACTIONS(2712), + [anon_sym_rlock] = ACTIONS(2712), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [700] = { - [sym__expression] = STATE(2316), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4237), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2837), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [701] = { - [sym__expression] = STATE(2311), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(970), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4177), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2700), + [anon_sym_go] = ACTIONS(2702), + [anon_sym_spawn] = ACTIONS(2704), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2696), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_LT_DASH] = ACTIONS(2708), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(2710), + [anon_sym_lock] = ACTIONS(2712), + [anon_sym_rlock] = ACTIONS(2712), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [702] = { - [sym__expression] = STATE(2855), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3667), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(1780), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4399), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2466), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_go] = ACTIONS(2476), + [anon_sym_spawn] = ACTIONS(2478), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_LT_DASH] = ACTIONS(2484), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(2486), + [anon_sym_lock] = ACTIONS(2488), + [anon_sym_rlock] = ACTIONS(2488), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [703] = { - [sym__expression] = STATE(2187), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [704] = { - [sym__expression] = STATE(2312), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(994), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2700), + [anon_sym_go] = ACTIONS(2702), + [anon_sym_spawn] = ACTIONS(2704), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2696), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_LT_DASH] = ACTIONS(2708), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(2710), + [anon_sym_lock] = ACTIONS(2712), + [anon_sym_rlock] = ACTIONS(2712), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [705] = { - [sym__expression] = STATE(2316), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4239), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2809), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [706] = { - [sym__expression] = STATE(2316), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4242), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2499), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4021), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(2754), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2426), + [anon_sym_lock] = ACTIONS(2428), + [anon_sym_rlock] = ACTIONS(2428), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [707] = { - [sym__expression] = STATE(2316), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2783), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [708] = { - [ts_builtin_sym_end] = ACTIONS(2698), - [sym_identifier] = ACTIONS(2700), - [anon_sym_LF] = ACTIONS(2700), - [anon_sym_CR] = ACTIONS(2700), - [anon_sym_CR_LF] = ACTIONS(2700), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2766), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2766), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_COMMA] = ACTIONS(2766), - [anon_sym_const] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_EQ] = ACTIONS(2766), - [anon_sym___global] = ACTIONS(2700), - [anon_sym_type] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2766), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_SLASH] = ACTIONS(2766), - [anon_sym_PERCENT] = ACTIONS(2766), - [anon_sym_LT] = ACTIONS(2766), - [anon_sym_GT] = ACTIONS(2766), - [anon_sym_EQ_EQ] = ACTIONS(2766), - [anon_sym_BANG_EQ] = ACTIONS(2766), - [anon_sym_LT_EQ] = ACTIONS(2766), - [anon_sym_GT_EQ] = ACTIONS(2766), - [anon_sym_LBRACK] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_union] = ACTIONS(2700), - [anon_sym_pub] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_enum] = ACTIONS(2700), - [anon_sym_interface] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2766), - [anon_sym_DASH_DASH] = ACTIONS(2766), - [anon_sym_QMARK] = ACTIONS(2700), + [sym__expression] = STATE(993), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2700), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2766), - [anon_sym_GT_GT] = ACTIONS(2766), - [anon_sym_GT_GT_GT] = ACTIONS(2766), - [anon_sym_AMP_CARET] = ACTIONS(2766), - [anon_sym_AMP_AMP] = ACTIONS(2766), - [anon_sym_PIPE_PIPE] = ACTIONS(2766), - [anon_sym_or] = ACTIONS(2766), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2766), - [anon_sym_POUND_LBRACK] = ACTIONS(2766), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2766), - [anon_sym_BANGis] = ACTIONS(2766), - [anon_sym_in] = ACTIONS(2766), - [anon_sym_BANGin] = ACTIONS(2766), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_STAR_EQ] = ACTIONS(2766), - [anon_sym_SLASH_EQ] = ACTIONS(2766), - [anon_sym_PERCENT_EQ] = ACTIONS(2766), - [anon_sym_LT_LT_EQ] = ACTIONS(2766), - [anon_sym_GT_GT_EQ] = ACTIONS(2766), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2766), - [anon_sym_AMP_EQ] = ACTIONS(2766), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2766), - [anon_sym_PLUS_EQ] = ACTIONS(2766), - [anon_sym_DASH_EQ] = ACTIONS(2766), - [anon_sym_PIPE_EQ] = ACTIONS(2766), - [anon_sym_CARET_EQ] = ACTIONS(2766), - [anon_sym_COLON_EQ] = ACTIONS(2766), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), - [sym_rune_literal] = ACTIONS(2700), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2700), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [anon_sym_assert] = ACTIONS(2700), - [anon_sym_defer] = ACTIONS(2700), - [anon_sym_goto] = ACTIONS(2700), - [anon_sym_break] = ACTIONS(2700), - [anon_sym_continue] = ACTIONS(2700), - [anon_sym_return] = ACTIONS(2700), - [anon_sym_DOLLARfor] = ACTIONS(2700), - [anon_sym_for] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(2700), - [anon_sym_asm] = ACTIONS(2700), - [anon_sym_AT_LBRACK] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2700), - [sym___single_quote] = ACTIONS(2700), - [sym___c_double_quote] = ACTIONS(2700), - [sym___c_single_quote] = ACTIONS(2700), - [sym___r_double_quote] = ACTIONS(2700), - [sym___r_single_quote] = ACTIONS(2700), + [anon_sym_go] = ACTIONS(2702), + [anon_sym_spawn] = ACTIONS(2704), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2696), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_LT_DASH] = ACTIONS(2708), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(2710), + [anon_sym_lock] = ACTIONS(2712), + [anon_sym_rlock] = ACTIONS(2712), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [709] = { - [sym__expression] = STATE(1129), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), + [sym__expression] = STATE(970), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4190), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2700), + [anon_sym_go] = ACTIONS(2702), + [anon_sym_spawn] = ACTIONS(2704), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2696), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_LT_DASH] = ACTIONS(2708), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(2710), + [anon_sym_lock] = ACTIONS(2712), + [anon_sym_rlock] = ACTIONS(2712), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [710] = { - [sym__expression] = STATE(1132), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), + [sym__expression] = STATE(1667), + [sym__expression_without_blocks] = STATE(1820), + [sym__expression_with_blocks] = STATE(1820), + [sym_inc_expression] = STATE(1820), + [sym_dec_expression] = STATE(1820), + [sym_or_block_expression] = STATE(1820), + [sym_option_propagation_expression] = STATE(1820), + [sym_result_propagation_expression] = STATE(1820), + [sym_anon_struct_value_expression] = STATE(1814), + [sym_go_expression] = STATE(1820), + [sym_spawn_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1820), + [sym_call_expression] = STATE(1820), + [sym_type_initializer] = STATE(1814), + [sym_function_literal] = STATE(1820), + [sym_reference_expression] = STATE(1813), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1820), + [sym_receive_expression] = STATE(1820), + [sym_binary_expression] = STATE(1820), + [sym_as_type_cast_expression] = STATE(1820), + [sym__max_group] = STATE(1820), + [sym_literal] = STATE(1820), + [sym_map_init_expression] = STATE(1814), + [sym_array_creation] = STATE(1820), + [sym_fixed_array_creation] = STATE(1820), + [sym_selector_expression] = STATE(1820), + [sym_index_expression] = STATE(1820), + [sym_slice_expression] = STATE(1820), + [sym_if_expression] = STATE(1814), + [sym_compile_time_if_expression] = STATE(1814), + [sym_is_expression] = STATE(1820), + [sym_not_is_expression] = STATE(1820), + [sym_in_expression] = STATE(1820), + [sym_not_in_expression] = STATE(1820), + [sym_enum_fetch] = STATE(1820), + [sym_match_expression] = STATE(1814), + [sym_select_expression] = STATE(1814), + [sym_lock_expression] = STATE(1814), + [sym_unsafe_expression] = STATE(1814), + [sym_sql_expression] = STATE(1814), + [sym_c_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_interpreted_string_literal] = STATE(1819), + [sym_pseudo_compile_time_identifier] = STATE(1820), + [sym_mutability_modifiers] = STATE(464), + [sym_plain_type] = STATE(4130), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2524), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_fn] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2534), + [anon_sym_STAR] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2538), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_go] = ACTIONS(2542), + [anon_sym_spawn] = ACTIONS(2544), + [anon_sym_json_DOTdecode] = ACTIONS(2546), + [anon_sym_LBRACK2] = ACTIONS(2548), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2550), + [anon_sym_LT_DASH] = ACTIONS(2552), + [sym_none] = ACTIONS(2554), + [sym_true] = ACTIONS(2554), + [sym_false] = ACTIONS(2554), + [sym_nil] = ACTIONS(2554), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_DOLLARif] = ACTIONS(2558), + [anon_sym_match] = ACTIONS(2560), + [anon_sym_select] = ACTIONS(2562), + [anon_sym_lock] = ACTIONS(2564), + [anon_sym_rlock] = ACTIONS(2564), + [anon_sym_unsafe] = ACTIONS(2566), + [anon_sym_sql] = ACTIONS(2568), + [sym_int_literal] = ACTIONS(2554), + [sym_float_literal] = ACTIONS(2570), + [sym_rune_literal] = ACTIONS(2570), + [anon_sym_AT] = ACTIONS(2572), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2574), + [sym___single_quote] = ACTIONS(2576), + [sym___c_double_quote] = ACTIONS(2578), + [sym___c_single_quote] = ACTIONS(2580), + [sym___r_double_quote] = ACTIONS(2582), + [sym___r_single_quote] = ACTIONS(2584), }, [711] = { - [sym__expression] = STATE(2810), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(970), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4138), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2700), + [anon_sym_go] = ACTIONS(2702), + [anon_sym_spawn] = ACTIONS(2704), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2696), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_LT_DASH] = ACTIONS(2708), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(2710), + [anon_sym_lock] = ACTIONS(2712), + [anon_sym_rlock] = ACTIONS(2712), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [712] = { - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(970), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2700), + [anon_sym_go] = ACTIONS(2702), + [anon_sym_spawn] = ACTIONS(2704), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2696), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_LT_DASH] = ACTIONS(2708), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(2710), + [anon_sym_lock] = ACTIONS(2712), + [anon_sym_rlock] = ACTIONS(2712), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [713] = { - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2499), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4019), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(2754), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2426), + [anon_sym_lock] = ACTIONS(2428), + [anon_sym_rlock] = ACTIONS(2428), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [714] = { - [sym__expression] = STATE(2819), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(1780), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4403), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2466), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_go] = ACTIONS(2476), + [anon_sym_spawn] = ACTIONS(2478), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_LT_DASH] = ACTIONS(2484), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(2486), + [anon_sym_lock] = ACTIONS(2488), + [anon_sym_rlock] = ACTIONS(2488), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [715] = { - [sym__expression] = STATE(1131), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), + [sym__expression] = STATE(1780), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2466), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_go] = ACTIONS(2476), + [anon_sym_spawn] = ACTIONS(2478), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_LT_DASH] = ACTIONS(2484), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(2486), + [anon_sym_lock] = ACTIONS(2488), + [anon_sym_rlock] = ACTIONS(2488), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [716] = { - [sym__expression] = STATE(2820), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [ts_builtin_sym_end] = ACTIONS(2734), + [sym_identifier] = ACTIONS(2736), + [anon_sym_LF] = ACTIONS(2736), + [anon_sym_CR] = ACTIONS(2736), + [anon_sym_CR_LF] = ACTIONS(2736), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2736), + [anon_sym_as] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2736), + [anon_sym_COMMA] = ACTIONS(2736), + [anon_sym_const] = ACTIONS(2736), + [anon_sym_LPAREN] = ACTIONS(2736), + [anon_sym_EQ] = ACTIONS(2736), + [anon_sym___global] = ACTIONS(2736), + [anon_sym_type] = ACTIONS(2736), + [anon_sym_PIPE] = ACTIONS(2736), + [anon_sym_fn] = ACTIONS(2736), + [anon_sym_PLUS] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2736), + [anon_sym_STAR] = ACTIONS(2736), + [anon_sym_SLASH] = ACTIONS(2736), + [anon_sym_PERCENT] = ACTIONS(2736), + [anon_sym_LT] = ACTIONS(2736), + [anon_sym_GT] = ACTIONS(2736), + [anon_sym_EQ_EQ] = ACTIONS(2736), + [anon_sym_BANG_EQ] = ACTIONS(2736), + [anon_sym_LT_EQ] = ACTIONS(2736), + [anon_sym_GT_EQ] = ACTIONS(2736), + [anon_sym_LBRACK] = ACTIONS(2734), + [anon_sym_struct] = ACTIONS(2736), + [anon_sym_union] = ACTIONS(2736), + [anon_sym_pub] = ACTIONS(2736), + [anon_sym_mut] = ACTIONS(2736), + [anon_sym_enum] = ACTIONS(2736), + [anon_sym_interface] = ACTIONS(2736), + [anon_sym_PLUS_PLUS] = ACTIONS(2736), + [anon_sym_DASH_DASH] = ACTIONS(2736), + [anon_sym_QMARK] = ACTIONS(2736), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_go] = ACTIONS(2736), + [anon_sym_spawn] = ACTIONS(2736), + [anon_sym_json_DOTdecode] = ACTIONS(2736), + [anon_sym_LBRACK2] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_CARET] = ACTIONS(2736), + [anon_sym_AMP] = ACTIONS(2736), + [anon_sym_LT_DASH] = ACTIONS(2736), + [anon_sym_LT_LT] = ACTIONS(2736), + [anon_sym_GT_GT] = ACTIONS(2736), + [anon_sym_GT_GT_GT] = ACTIONS(2736), + [anon_sym_AMP_CARET] = ACTIONS(2736), + [anon_sym_AMP_AMP] = ACTIONS(2736), + [anon_sym_PIPE_PIPE] = ACTIONS(2736), + [anon_sym_or] = ACTIONS(2736), + [sym_none] = ACTIONS(2736), + [sym_true] = ACTIONS(2736), + [sym_false] = ACTIONS(2736), + [sym_nil] = ACTIONS(2736), + [anon_sym_QMARK_DOT] = ACTIONS(2736), + [anon_sym_POUND_LBRACK] = ACTIONS(2736), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_else] = ACTIONS(2736), + [anon_sym_DOLLARif] = ACTIONS(2736), + [anon_sym_is] = ACTIONS(2736), + [anon_sym_BANGis] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2736), + [anon_sym_BANGin] = ACTIONS(2736), + [anon_sym_match] = ACTIONS(2736), + [anon_sym_select] = ACTIONS(2736), + [anon_sym_STAR_EQ] = ACTIONS(2736), + [anon_sym_SLASH_EQ] = ACTIONS(2736), + [anon_sym_PERCENT_EQ] = ACTIONS(2736), + [anon_sym_LT_LT_EQ] = ACTIONS(2736), + [anon_sym_GT_GT_EQ] = ACTIONS(2736), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2736), + [anon_sym_AMP_EQ] = ACTIONS(2736), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2736), + [anon_sym_PLUS_EQ] = ACTIONS(2736), + [anon_sym_DASH_EQ] = ACTIONS(2736), + [anon_sym_PIPE_EQ] = ACTIONS(2736), + [anon_sym_CARET_EQ] = ACTIONS(2736), + [anon_sym_COLON_EQ] = ACTIONS(2736), + [anon_sym_lock] = ACTIONS(2736), + [anon_sym_rlock] = ACTIONS(2736), + [anon_sym_unsafe] = ACTIONS(2736), + [anon_sym_sql] = ACTIONS(2736), + [sym_int_literal] = ACTIONS(2736), + [sym_float_literal] = ACTIONS(2736), + [sym_rune_literal] = ACTIONS(2736), + [anon_sym_AT] = ACTIONS(2736), + [anon_sym_shared] = ACTIONS(2736), + [anon_sym_map_LBRACK] = ACTIONS(2736), + [anon_sym_chan] = ACTIONS(2736), + [anon_sym_thread] = ACTIONS(2736), + [anon_sym_atomic] = ACTIONS(2736), + [anon_sym_assert] = ACTIONS(2736), + [anon_sym_defer] = ACTIONS(2736), + [anon_sym_goto] = ACTIONS(2736), + [anon_sym_break] = ACTIONS(2736), + [anon_sym_continue] = ACTIONS(2736), + [anon_sym_return] = ACTIONS(2736), + [anon_sym_DOLLARfor] = ACTIONS(2736), + [anon_sym_for] = ACTIONS(2736), + [anon_sym_POUND] = ACTIONS(2736), + [anon_sym_asm] = ACTIONS(2736), + [anon_sym_AT_LBRACK] = ACTIONS(2736), + [sym___double_quote] = ACTIONS(2736), + [sym___single_quote] = ACTIONS(2736), + [sym___c_double_quote] = ACTIONS(2736), + [sym___c_single_quote] = ACTIONS(2736), + [sym___r_double_quote] = ACTIONS(2736), + [sym___r_single_quote] = ACTIONS(2736), }, [717] = { - [sym__expression] = STATE(1140), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), + [sym__expression] = STATE(2490), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4108), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(2754), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2426), + [anon_sym_lock] = ACTIONS(2428), + [anon_sym_rlock] = ACTIONS(2428), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [718] = { - [sym__expression] = STATE(1794), - [sym__expression_without_blocks] = STATE(2104), - [sym__expression_with_blocks] = STATE(2104), - [sym_inc_expression] = STATE(2104), - [sym_dec_expression] = STATE(2104), - [sym_or_block_expression] = STATE(2104), - [sym_option_propagation_expression] = STATE(2104), - [sym_result_propagation_expression] = STATE(2104), - [sym_anon_struct_value_expression] = STATE(2119), - [sym_go_expression] = STATE(2104), - [sym_spawn_expression] = STATE(2104), - [sym_parenthesized_expression] = STATE(2104), - [sym_call_expression] = STATE(2104), - [sym_type_initializer] = STATE(2119), - [sym_function_literal] = STATE(2104), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2104), - [sym_receive_expression] = STATE(2104), - [sym_binary_expression] = STATE(2104), - [sym_as_type_cast_expression] = STATE(2104), - [sym__max_group] = STATE(2104), - [sym_literal] = STATE(2104), - [sym_map_init_expression] = STATE(2119), - [sym_array_creation] = STATE(2104), - [sym_fixed_array_creation] = STATE(2104), - [sym_selector_expression] = STATE(2104), - [sym_index_expression] = STATE(2104), - [sym_slice_expression] = STATE(2104), - [sym_if_expression] = STATE(2119), - [sym_compile_time_if_expression] = STATE(2119), - [sym_is_expression] = STATE(2104), - [sym_not_is_expression] = STATE(2104), - [sym_in_expression] = STATE(2104), - [sym_not_in_expression] = STATE(2104), - [sym_enum_fetch] = STATE(2104), - [sym_match_expression] = STATE(2119), - [sym_select_expression] = STATE(2119), - [sym_lock_expression] = STATE(2119), - [sym_unsafe_expression] = STATE(2119), - [sym_sql_expression] = STATE(2119), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(2104), - [sym_mutability_modifiers] = STATE(835), - [sym_plain_type] = STATE(4201), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2706), + [sym__expression] = STATE(2652), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2720), - [anon_sym_rlock] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_go] = ACTIONS(2068), + [anon_sym_spawn] = ACTIONS(2070), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_CARET] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_LT_DASH] = ACTIONS(2076), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2078), + [anon_sym_lock] = ACTIONS(2080), + [anon_sym_rlock] = ACTIONS(2080), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [719] = { - [sym__expression] = STATE(2797), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(2492), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4108), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(2754), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2426), + [anon_sym_lock] = ACTIONS(2428), + [anon_sym_rlock] = ACTIONS(2428), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [720] = { - [sym__expression] = STATE(2707), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(1900), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2466), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_go] = ACTIONS(2476), + [anon_sym_spawn] = ACTIONS(2478), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_LT_DASH] = ACTIONS(2484), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(2486), + [anon_sym_lock] = ACTIONS(2488), + [anon_sym_rlock] = ACTIONS(2488), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [721] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2676), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [722] = { - [sym__expression] = STATE(1130), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), + [sym__expression] = STATE(1890), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2466), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_go] = ACTIONS(2476), + [anon_sym_spawn] = ACTIONS(2478), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_LT_DASH] = ACTIONS(2484), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(2486), + [anon_sym_lock] = ACTIONS(2488), + [anon_sym_rlock] = ACTIONS(2488), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [723] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2990), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2989), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(1884), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2466), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_go] = ACTIONS(2476), + [anon_sym_spawn] = ACTIONS(2478), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_LT_DASH] = ACTIONS(2484), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(2486), + [anon_sym_lock] = ACTIONS(2488), + [anon_sym_rlock] = ACTIONS(2488), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [724] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(1883), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2466), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_go] = ACTIONS(2476), + [anon_sym_spawn] = ACTIONS(2478), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_LT_DASH] = ACTIONS(2484), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(2486), + [anon_sym_lock] = ACTIONS(2488), + [anon_sym_rlock] = ACTIONS(2488), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [725] = { - [sym__expression] = STATE(1781), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), + [sym__expression] = STATE(1866), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2466), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_go] = ACTIONS(2476), + [anon_sym_spawn] = ACTIONS(2478), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_LT_DASH] = ACTIONS(2484), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(2486), + [anon_sym_lock] = ACTIONS(2488), + [anon_sym_rlock] = ACTIONS(2488), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [726] = { - [sym__expression] = STATE(1778), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4322), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), + [sym__expression] = STATE(1796), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2466), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_go] = ACTIONS(2476), + [anon_sym_spawn] = ACTIONS(2478), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_LT_DASH] = ACTIONS(2484), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(2486), + [anon_sym_lock] = ACTIONS(2488), + [anon_sym_rlock] = ACTIONS(2488), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [727] = { - [sym__expression] = STATE(1270), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(1848), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2466), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_go] = ACTIONS(2476), + [anon_sym_spawn] = ACTIONS(2478), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_LT_DASH] = ACTIONS(2484), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(2486), + [anon_sym_lock] = ACTIONS(2488), + [anon_sym_rlock] = ACTIONS(2488), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [728] = { - [sym__expression] = STATE(1820), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), + [sym__expression] = STATE(1279), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1328), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1322), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [729] = { - [sym__expression] = STATE(1270), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4271), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1328), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1322), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [730] = { - [sym__expression] = STATE(1270), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(2600), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_go] = ACTIONS(2068), + [anon_sym_spawn] = ACTIONS(2070), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_CARET] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_LT_DASH] = ACTIONS(2076), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2078), + [anon_sym_lock] = ACTIONS(2080), + [anon_sym_rlock] = ACTIONS(2080), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [731] = { - [sym__expression] = STATE(1271), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(1281), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1328), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1322), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [732] = { - [sym__expression] = STATE(1272), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(2601), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_go] = ACTIONS(2068), + [anon_sym_spawn] = ACTIONS(2070), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_CARET] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_LT_DASH] = ACTIONS(2076), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2078), + [anon_sym_lock] = ACTIONS(2080), + [anon_sym_rlock] = ACTIONS(2080), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [733] = { - [sym__expression] = STATE(1887), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), + [sym__expression] = STATE(1280), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1328), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1322), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [734] = { - [sym__expression] = STATE(2154), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(1275), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1328), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1322), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [735] = { - [sym__expression] = STATE(1778), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4323), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), + [sym__expression] = STATE(1285), + [sym__expression_without_blocks] = STATE(1322), + [sym__expression_with_blocks] = STATE(1322), + [sym_inc_expression] = STATE(1322), + [sym_dec_expression] = STATE(1322), + [sym_or_block_expression] = STATE(1322), + [sym_option_propagation_expression] = STATE(1322), + [sym_result_propagation_expression] = STATE(1322), + [sym_anon_struct_value_expression] = STATE(1323), + [sym_go_expression] = STATE(1322), + [sym_spawn_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_type_initializer] = STATE(1323), + [sym_function_literal] = STATE(1322), + [sym_reference_expression] = STATE(1328), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1322), + [sym_receive_expression] = STATE(1322), + [sym_binary_expression] = STATE(1322), + [sym_as_type_cast_expression] = STATE(1322), + [sym__max_group] = STATE(1322), + [sym_literal] = STATE(1322), + [sym_map_init_expression] = STATE(1323), + [sym_array_creation] = STATE(1322), + [sym_fixed_array_creation] = STATE(1322), + [sym_selector_expression] = STATE(1322), + [sym_index_expression] = STATE(1322), + [sym_slice_expression] = STATE(1322), + [sym_if_expression] = STATE(1323), + [sym_compile_time_if_expression] = STATE(1323), + [sym_is_expression] = STATE(1322), + [sym_not_is_expression] = STATE(1322), + [sym_in_expression] = STATE(1322), + [sym_not_in_expression] = STATE(1322), + [sym_enum_fetch] = STATE(1322), + [sym_match_expression] = STATE(1323), + [sym_select_expression] = STATE(1323), + [sym_lock_expression] = STATE(1323), + [sym_unsafe_expression] = STATE(1323), + [sym_sql_expression] = STATE(1323), + [sym_c_string_literal] = STATE(1294), + [sym_raw_string_literal] = STATE(1294), + [sym_interpreted_string_literal] = STATE(1294), + [sym_pseudo_compile_time_identifier] = STATE(1322), + [sym_mutability_modifiers] = STATE(651), + [sym_plain_type] = STATE(4368), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1300), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_go] = ACTIONS(1320), + [anon_sym_spawn] = ACTIONS(1322), + [anon_sym_json_DOTdecode] = ACTIONS(1324), + [anon_sym_LBRACK2] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_LT_DASH] = ACTIONS(1330), + [sym_none] = ACTIONS(1332), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [sym_nil] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_DOLLARif] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1338), + [anon_sym_select] = ACTIONS(1340), + [anon_sym_lock] = ACTIONS(1342), + [anon_sym_rlock] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_sql] = ACTIONS(1346), + [sym_int_literal] = ACTIONS(1332), + [sym_float_literal] = ACTIONS(1350), + [sym_rune_literal] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1352), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1354), + [sym___single_quote] = ACTIONS(1356), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1360), + [sym___r_double_quote] = ACTIONS(1362), + [sym___r_single_quote] = ACTIONS(1364), }, [736] = { - [sym__expression] = STATE(1270), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4276), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(1783), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1568), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_go] = ACTIONS(821), + [anon_sym_spawn] = ACTIONS(823), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(827), + [anon_sym_TILDE] = ACTIONS(811), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_LT_DASH] = ACTIONS(831), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(841), + [anon_sym_lock] = ACTIONS(843), + [anon_sym_rlock] = ACTIONS(843), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [737] = { - [sym__expression] = STATE(2317), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_go] = ACTIONS(2068), + [anon_sym_spawn] = ACTIONS(2070), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_CARET] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_LT_DASH] = ACTIONS(2076), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2078), + [anon_sym_lock] = ACTIONS(2080), + [anon_sym_rlock] = ACTIONS(2080), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [738] = { - [sym__expression] = STATE(1778), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4327), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), + [sym__expression] = STATE(2168), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2766), + [anon_sym_DASH] = ACTIONS(2766), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2770), + [anon_sym_go] = ACTIONS(2772), + [anon_sym_spawn] = ACTIONS(2774), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2766), + [anon_sym_CARET] = ACTIONS(2766), + [anon_sym_AMP] = ACTIONS(2776), + [anon_sym_LT_DASH] = ACTIONS(2778), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2780), + [anon_sym_lock] = ACTIONS(2782), + [anon_sym_rlock] = ACTIONS(2782), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [739] = { - [sym__expression] = STATE(1778), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), + [sym__expression] = STATE(2607), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_go] = ACTIONS(2068), + [anon_sym_spawn] = ACTIONS(2070), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_CARET] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_LT_DASH] = ACTIONS(2076), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2078), + [anon_sym_lock] = ACTIONS(2080), + [anon_sym_rlock] = ACTIONS(2080), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [740] = { - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(2614), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [741] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3675), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2318), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2766), + [anon_sym_DASH] = ACTIONS(2766), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2770), + [anon_sym_go] = ACTIONS(2772), + [anon_sym_spawn] = ACTIONS(2774), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2766), + [anon_sym_CARET] = ACTIONS(2766), + [anon_sym_AMP] = ACTIONS(2776), + [anon_sym_LT_DASH] = ACTIONS(2778), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2780), + [anon_sym_lock] = ACTIONS(2782), + [anon_sym_rlock] = ACTIONS(2782), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [742] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2608), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_go] = ACTIONS(2068), + [anon_sym_spawn] = ACTIONS(2070), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_CARET] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_LT_DASH] = ACTIONS(2076), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2078), + [anon_sym_lock] = ACTIONS(2080), + [anon_sym_rlock] = ACTIONS(2080), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [743] = { - [sym__expression] = STATE(2848), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2186), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_go] = ACTIONS(2068), + [anon_sym_spawn] = ACTIONS(2070), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_CARET] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_LT_DASH] = ACTIONS(2076), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2078), + [anon_sym_lock] = ACTIONS(2080), + [anon_sym_rlock] = ACTIONS(2080), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [744] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3684), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(1645), + [sym__expression_without_blocks] = STATE(1820), + [sym__expression_with_blocks] = STATE(1820), + [sym_inc_expression] = STATE(1820), + [sym_dec_expression] = STATE(1820), + [sym_or_block_expression] = STATE(1820), + [sym_option_propagation_expression] = STATE(1820), + [sym_result_propagation_expression] = STATE(1820), + [sym_anon_struct_value_expression] = STATE(1814), + [sym_go_expression] = STATE(1820), + [sym_spawn_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1820), + [sym_call_expression] = STATE(1820), + [sym_type_initializer] = STATE(1814), + [sym_function_literal] = STATE(1820), + [sym_reference_expression] = STATE(1813), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1820), + [sym_receive_expression] = STATE(1820), + [sym_binary_expression] = STATE(1820), + [sym_as_type_cast_expression] = STATE(1820), + [sym__max_group] = STATE(1820), + [sym_literal] = STATE(1820), + [sym_map_init_expression] = STATE(1814), + [sym_array_creation] = STATE(1820), + [sym_fixed_array_creation] = STATE(1820), + [sym_selector_expression] = STATE(1820), + [sym_index_expression] = STATE(1820), + [sym_slice_expression] = STATE(1820), + [sym_if_expression] = STATE(1814), + [sym_compile_time_if_expression] = STATE(1814), + [sym_is_expression] = STATE(1820), + [sym_not_is_expression] = STATE(1820), + [sym_in_expression] = STATE(1820), + [sym_not_in_expression] = STATE(1820), + [sym_enum_fetch] = STATE(1820), + [sym_match_expression] = STATE(1814), + [sym_select_expression] = STATE(1814), + [sym_lock_expression] = STATE(1814), + [sym_unsafe_expression] = STATE(1814), + [sym_sql_expression] = STATE(1814), + [sym_c_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_interpreted_string_literal] = STATE(1819), + [sym_pseudo_compile_time_identifier] = STATE(1820), + [sym_mutability_modifiers] = STATE(464), + [sym_plain_type] = STATE(4130), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2524), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_fn] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2534), + [anon_sym_STAR] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2538), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_go] = ACTIONS(2542), + [anon_sym_spawn] = ACTIONS(2544), + [anon_sym_json_DOTdecode] = ACTIONS(2546), + [anon_sym_LBRACK2] = ACTIONS(2548), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2550), + [anon_sym_LT_DASH] = ACTIONS(2552), + [sym_none] = ACTIONS(2554), + [sym_true] = ACTIONS(2554), + [sym_false] = ACTIONS(2554), + [sym_nil] = ACTIONS(2554), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_DOLLARif] = ACTIONS(2558), + [anon_sym_match] = ACTIONS(2560), + [anon_sym_select] = ACTIONS(2562), + [anon_sym_lock] = ACTIONS(2564), + [anon_sym_rlock] = ACTIONS(2564), + [anon_sym_unsafe] = ACTIONS(2566), + [anon_sym_sql] = ACTIONS(2568), + [sym_int_literal] = ACTIONS(2554), + [sym_float_literal] = ACTIONS(2570), + [sym_rune_literal] = ACTIONS(2570), + [anon_sym_AT] = ACTIONS(2572), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2574), + [sym___single_quote] = ACTIONS(2576), + [sym___c_double_quote] = ACTIONS(2578), + [sym___c_single_quote] = ACTIONS(2580), + [sym___r_double_quote] = ACTIONS(2582), + [sym___r_single_quote] = ACTIONS(2584), }, [745] = { - [sym__expression] = STATE(1917), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), + [sym__expression] = STATE(2611), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_go] = ACTIONS(2068), + [anon_sym_spawn] = ACTIONS(2070), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_CARET] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_LT_DASH] = ACTIONS(2076), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2078), + [anon_sym_lock] = ACTIONS(2080), + [anon_sym_rlock] = ACTIONS(2080), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [746] = { - [sym__expression] = STATE(2204), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2615), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [747] = { - [sym__expression] = STATE(2489), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2598), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [748] = { - [sym__expression] = STATE(1652), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), + [sym__expression] = STATE(2620), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [749] = { - [sym__expression] = STATE(977), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [750] = { - [sym__expression] = STATE(2433), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(1671), + [sym__expression_without_blocks] = STATE(1820), + [sym__expression_with_blocks] = STATE(1820), + [sym_inc_expression] = STATE(1820), + [sym_dec_expression] = STATE(1820), + [sym_or_block_expression] = STATE(1820), + [sym_option_propagation_expression] = STATE(1820), + [sym_result_propagation_expression] = STATE(1820), + [sym_anon_struct_value_expression] = STATE(1814), + [sym_go_expression] = STATE(1820), + [sym_spawn_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1820), + [sym_call_expression] = STATE(1820), + [sym_type_initializer] = STATE(1814), + [sym_function_literal] = STATE(1820), + [sym_reference_expression] = STATE(1813), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1820), + [sym_receive_expression] = STATE(1820), + [sym_binary_expression] = STATE(1820), + [sym_as_type_cast_expression] = STATE(1820), + [sym__max_group] = STATE(1820), + [sym_literal] = STATE(1820), + [sym_map_init_expression] = STATE(1814), + [sym_array_creation] = STATE(1820), + [sym_fixed_array_creation] = STATE(1820), + [sym_selector_expression] = STATE(1820), + [sym_index_expression] = STATE(1820), + [sym_slice_expression] = STATE(1820), + [sym_if_expression] = STATE(1814), + [sym_compile_time_if_expression] = STATE(1814), + [sym_is_expression] = STATE(1820), + [sym_not_is_expression] = STATE(1820), + [sym_in_expression] = STATE(1820), + [sym_not_in_expression] = STATE(1820), + [sym_enum_fetch] = STATE(1820), + [sym_match_expression] = STATE(1814), + [sym_select_expression] = STATE(1814), + [sym_lock_expression] = STATE(1814), + [sym_unsafe_expression] = STATE(1814), + [sym_sql_expression] = STATE(1814), + [sym_c_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_interpreted_string_literal] = STATE(1819), + [sym_pseudo_compile_time_identifier] = STATE(1820), + [sym_mutability_modifiers] = STATE(464), + [sym_plain_type] = STATE(4130), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2524), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_fn] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2534), + [anon_sym_STAR] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2538), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_go] = ACTIONS(2542), + [anon_sym_spawn] = ACTIONS(2544), + [anon_sym_json_DOTdecode] = ACTIONS(2546), + [anon_sym_LBRACK2] = ACTIONS(2548), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2550), + [anon_sym_LT_DASH] = ACTIONS(2552), + [sym_none] = ACTIONS(2554), + [sym_true] = ACTIONS(2554), + [sym_false] = ACTIONS(2554), + [sym_nil] = ACTIONS(2554), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_DOLLARif] = ACTIONS(2558), + [anon_sym_match] = ACTIONS(2560), + [anon_sym_select] = ACTIONS(2562), + [anon_sym_lock] = ACTIONS(2564), + [anon_sym_rlock] = ACTIONS(2564), + [anon_sym_unsafe] = ACTIONS(2566), + [anon_sym_sql] = ACTIONS(2568), + [sym_int_literal] = ACTIONS(2554), + [sym_float_literal] = ACTIONS(2570), + [sym_rune_literal] = ACTIONS(2570), + [anon_sym_AT] = ACTIONS(2572), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2574), + [sym___single_quote] = ACTIONS(2576), + [sym___c_double_quote] = ACTIONS(2578), + [sym___c_single_quote] = ACTIONS(2580), + [sym___r_double_quote] = ACTIONS(2582), + [sym___r_single_quote] = ACTIONS(2584), }, [751] = { - [sym__expression] = STATE(1651), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), + [sym__expression] = STATE(2186), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [752] = { - [sym__expression] = STATE(1650), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), + [sym__expression] = STATE(2625), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [753] = { - [sym__expression] = STATE(1649), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), + [sym__expression] = STATE(2149), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4345), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2636), + [anon_sym_go] = ACTIONS(2638), + [anon_sym_spawn] = ACTIONS(2640), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_CARET] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2646), + [anon_sym_LT_DASH] = ACTIONS(2648), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2658), + [anon_sym_lock] = ACTIONS(2660), + [anon_sym_rlock] = ACTIONS(2660), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [754] = { - [sym__expression] = STATE(2653), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2149), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4338), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2636), + [anon_sym_go] = ACTIONS(2638), + [anon_sym_spawn] = ACTIONS(2640), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_CARET] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2646), + [anon_sym_LT_DASH] = ACTIONS(2648), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2658), + [anon_sym_lock] = ACTIONS(2660), + [anon_sym_rlock] = ACTIONS(2660), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [755] = { - [sym__expression] = STATE(2736), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3667), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2960), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2961), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [756] = { - [sym__expression] = STATE(1648), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), + [sym__expression] = STATE(2149), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4328), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2636), + [anon_sym_go] = ACTIONS(2638), + [anon_sym_spawn] = ACTIONS(2640), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_CARET] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2646), + [anon_sym_LT_DASH] = ACTIONS(2648), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2658), + [anon_sym_lock] = ACTIONS(2660), + [anon_sym_rlock] = ACTIONS(2660), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [757] = { - [sym__expression] = STATE(326), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), + [sym__expression] = STATE(1649), + [sym__expression_without_blocks] = STATE(1820), + [sym__expression_with_blocks] = STATE(1820), + [sym_inc_expression] = STATE(1820), + [sym_dec_expression] = STATE(1820), + [sym_or_block_expression] = STATE(1820), + [sym_option_propagation_expression] = STATE(1820), + [sym_result_propagation_expression] = STATE(1820), + [sym_anon_struct_value_expression] = STATE(1814), + [sym_go_expression] = STATE(1820), + [sym_spawn_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1820), + [sym_call_expression] = STATE(1820), + [sym_type_initializer] = STATE(1814), + [sym_function_literal] = STATE(1820), + [sym_reference_expression] = STATE(1813), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1820), + [sym_receive_expression] = STATE(1820), + [sym_binary_expression] = STATE(1820), + [sym_as_type_cast_expression] = STATE(1820), + [sym__max_group] = STATE(1820), + [sym_literal] = STATE(1820), + [sym_map_init_expression] = STATE(1814), + [sym_array_creation] = STATE(1820), + [sym_fixed_array_creation] = STATE(1820), + [sym_selector_expression] = STATE(1820), + [sym_index_expression] = STATE(1820), + [sym_slice_expression] = STATE(1820), + [sym_if_expression] = STATE(1814), + [sym_compile_time_if_expression] = STATE(1814), + [sym_is_expression] = STATE(1820), + [sym_not_is_expression] = STATE(1820), + [sym_in_expression] = STATE(1820), + [sym_not_in_expression] = STATE(1820), + [sym_enum_fetch] = STATE(1820), + [sym_match_expression] = STATE(1814), + [sym_select_expression] = STATE(1814), + [sym_lock_expression] = STATE(1814), + [sym_unsafe_expression] = STATE(1814), + [sym_sql_expression] = STATE(1814), + [sym_c_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_interpreted_string_literal] = STATE(1819), + [sym_pseudo_compile_time_identifier] = STATE(1820), + [sym_mutability_modifiers] = STATE(464), + [sym_plain_type] = STATE(4130), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2524), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_fn] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2534), + [anon_sym_STAR] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2538), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_go] = ACTIONS(2542), + [anon_sym_spawn] = ACTIONS(2544), + [anon_sym_json_DOTdecode] = ACTIONS(2546), + [anon_sym_LBRACK2] = ACTIONS(2548), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2550), + [anon_sym_LT_DASH] = ACTIONS(2552), + [sym_none] = ACTIONS(2554), + [sym_true] = ACTIONS(2554), + [sym_false] = ACTIONS(2554), + [sym_nil] = ACTIONS(2554), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_DOLLARif] = ACTIONS(2558), + [anon_sym_match] = ACTIONS(2560), + [anon_sym_select] = ACTIONS(2562), + [anon_sym_lock] = ACTIONS(2564), + [anon_sym_rlock] = ACTIONS(2564), + [anon_sym_unsafe] = ACTIONS(2566), + [anon_sym_sql] = ACTIONS(2568), + [sym_int_literal] = ACTIONS(2554), + [sym_float_literal] = ACTIONS(2570), + [sym_rune_literal] = ACTIONS(2570), + [anon_sym_AT] = ACTIONS(2572), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2574), + [sym___single_quote] = ACTIONS(2576), + [sym___c_double_quote] = ACTIONS(2578), + [sym___c_single_quote] = ACTIONS(2580), + [sym___r_double_quote] = ACTIONS(2582), + [sym___r_single_quote] = ACTIONS(2584), }, [758] = { - [sym__expression] = STATE(2600), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2637), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [759] = { - [sym__expression] = STATE(2599), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2823), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [760] = { - [sym__expression] = STATE(2498), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2310), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [761] = { - [sym__expression] = STATE(2489), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4010), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2499), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4014), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(2754), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2426), + [anon_sym_lock] = ACTIONS(2428), + [anon_sym_rlock] = ACTIONS(2428), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [762] = { - [sym__expression] = STATE(2654), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2317), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [763] = { - [sym__expression] = STATE(1622), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), + [sym__expression] = STATE(2749), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [764] = { - [sym__expression] = STATE(2489), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4015), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2311), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [765] = { - [sym__expression] = STATE(2489), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4017), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2312), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [766] = { - [sym__expression] = STATE(2811), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(1638), + [sym__expression_without_blocks] = STATE(1820), + [sym__expression_with_blocks] = STATE(1820), + [sym_inc_expression] = STATE(1820), + [sym_dec_expression] = STATE(1820), + [sym_or_block_expression] = STATE(1820), + [sym_option_propagation_expression] = STATE(1820), + [sym_result_propagation_expression] = STATE(1820), + [sym_anon_struct_value_expression] = STATE(1814), + [sym_go_expression] = STATE(1820), + [sym_spawn_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1820), + [sym_call_expression] = STATE(1820), + [sym_type_initializer] = STATE(1814), + [sym_function_literal] = STATE(1820), + [sym_reference_expression] = STATE(1813), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1820), + [sym_receive_expression] = STATE(1820), + [sym_binary_expression] = STATE(1820), + [sym_as_type_cast_expression] = STATE(1820), + [sym__max_group] = STATE(1820), + [sym_literal] = STATE(1820), + [sym_map_init_expression] = STATE(1814), + [sym_array_creation] = STATE(1820), + [sym_fixed_array_creation] = STATE(1820), + [sym_selector_expression] = STATE(1820), + [sym_index_expression] = STATE(1820), + [sym_slice_expression] = STATE(1820), + [sym_if_expression] = STATE(1814), + [sym_compile_time_if_expression] = STATE(1814), + [sym_is_expression] = STATE(1820), + [sym_not_is_expression] = STATE(1820), + [sym_in_expression] = STATE(1820), + [sym_not_in_expression] = STATE(1820), + [sym_enum_fetch] = STATE(1820), + [sym_match_expression] = STATE(1814), + [sym_select_expression] = STATE(1814), + [sym_lock_expression] = STATE(1814), + [sym_unsafe_expression] = STATE(1814), + [sym_sql_expression] = STATE(1814), + [sym_c_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_interpreted_string_literal] = STATE(1819), + [sym_pseudo_compile_time_identifier] = STATE(1820), + [sym_mutability_modifiers] = STATE(464), + [sym_plain_type] = STATE(4130), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2524), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_fn] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2534), + [anon_sym_STAR] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2538), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_go] = ACTIONS(2542), + [anon_sym_spawn] = ACTIONS(2544), + [anon_sym_json_DOTdecode] = ACTIONS(2546), + [anon_sym_LBRACK2] = ACTIONS(2548), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2550), + [anon_sym_LT_DASH] = ACTIONS(2552), + [sym_none] = ACTIONS(2554), + [sym_true] = ACTIONS(2554), + [sym_false] = ACTIONS(2554), + [sym_nil] = ACTIONS(2554), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_DOLLARif] = ACTIONS(2558), + [anon_sym_match] = ACTIONS(2560), + [anon_sym_select] = ACTIONS(2562), + [anon_sym_lock] = ACTIONS(2564), + [anon_sym_rlock] = ACTIONS(2564), + [anon_sym_unsafe] = ACTIONS(2566), + [anon_sym_sql] = ACTIONS(2568), + [sym_int_literal] = ACTIONS(2554), + [sym_float_literal] = ACTIONS(2570), + [sym_rune_literal] = ACTIONS(2570), + [anon_sym_AT] = ACTIONS(2572), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2574), + [sym___single_quote] = ACTIONS(2576), + [sym___c_double_quote] = ACTIONS(2578), + [sym___c_single_quote] = ACTIONS(2580), + [sym___r_double_quote] = ACTIONS(2582), + [sym___r_single_quote] = ACTIONS(2584), }, [767] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(3002), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(3005), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(2316), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [768] = { - [sym__expression] = STATE(2840), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3667), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2508), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4108), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_STAR] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_go] = ACTIONS(2440), + [anon_sym_spawn] = ACTIONS(2442), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_LT_DASH] = ACTIONS(2446), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2448), + [anon_sym_lock] = ACTIONS(2450), + [anon_sym_rlock] = ACTIONS(2450), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [769] = { - [sym__expression] = STATE(2648), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2610), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4108), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_STAR] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_go] = ACTIONS(2440), + [anon_sym_spawn] = ACTIONS(2442), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_LT_DASH] = ACTIONS(2446), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2448), + [anon_sym_lock] = ACTIONS(2450), + [anon_sym_rlock] = ACTIONS(2450), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [770] = { - [sym__expression] = STATE(1811), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), + [sym__expression] = STATE(2319), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [771] = { - [sym__expression] = STATE(1926), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), + [sym__expression] = STATE(2803), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3659), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [772] = { - [sym__expression] = STATE(1781), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), + [sym__expression] = STATE(2495), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4108), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(2754), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2426), + [anon_sym_lock] = ACTIONS(2428), + [anon_sym_rlock] = ACTIONS(2428), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [773] = { - [sym__expression] = STATE(2875), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2219), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_go] = ACTIONS(2068), + [anon_sym_spawn] = ACTIONS(2070), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_CARET] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_LT_DASH] = ACTIONS(2076), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2078), + [anon_sym_lock] = ACTIONS(2080), + [anon_sym_rlock] = ACTIONS(2080), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [774] = { - [sym__expression] = STATE(1778), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4322), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), + [sym__expression] = STATE(2520), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [775] = { - [sym__expression] = STATE(1780), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), + [sym__expression] = STATE(1798), + [sym__expression_without_blocks] = STATE(1940), + [sym__expression_with_blocks] = STATE(1940), + [sym_inc_expression] = STATE(1940), + [sym_dec_expression] = STATE(1940), + [sym_or_block_expression] = STATE(1940), + [sym_option_propagation_expression] = STATE(1940), + [sym_result_propagation_expression] = STATE(1940), + [sym_anon_struct_value_expression] = STATE(1944), + [sym_go_expression] = STATE(1940), + [sym_spawn_expression] = STATE(1940), + [sym_parenthesized_expression] = STATE(1940), + [sym_call_expression] = STATE(1940), + [sym_type_initializer] = STATE(1944), + [sym_function_literal] = STATE(1940), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1940), + [sym_receive_expression] = STATE(1940), + [sym_binary_expression] = STATE(1940), + [sym_as_type_cast_expression] = STATE(1940), + [sym__max_group] = STATE(1940), + [sym_literal] = STATE(1940), + [sym_map_init_expression] = STATE(1944), + [sym_array_creation] = STATE(1940), + [sym_fixed_array_creation] = STATE(1940), + [sym_selector_expression] = STATE(1940), + [sym_index_expression] = STATE(1940), + [sym_slice_expression] = STATE(1940), + [sym_if_expression] = STATE(1944), + [sym_compile_time_if_expression] = STATE(1944), + [sym_is_expression] = STATE(1940), + [sym_not_is_expression] = STATE(1940), + [sym_in_expression] = STATE(1940), + [sym_not_in_expression] = STATE(1940), + [sym_enum_fetch] = STATE(1940), + [sym_match_expression] = STATE(1944), + [sym_select_expression] = STATE(1944), + [sym_lock_expression] = STATE(1944), + [sym_unsafe_expression] = STATE(1944), + [sym_sql_expression] = STATE(1944), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1940), + [sym_mutability_modifiers] = STATE(494), + [sym_plain_type] = STATE(4346), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2714), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(2718), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(2720), + [anon_sym_DOLLARif] = ACTIONS(2722), + [anon_sym_match] = ACTIONS(2724), + [anon_sym_select] = ACTIONS(2726), + [anon_sym_lock] = ACTIONS(2728), + [anon_sym_rlock] = ACTIONS(2728), + [anon_sym_unsafe] = ACTIONS(2730), + [anon_sym_sql] = ACTIONS(2732), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [776] = { - [sym__expression] = STATE(1779), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), + [sym__expression] = STATE(2563), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4108), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_STAR] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_go] = ACTIONS(2440), + [anon_sym_spawn] = ACTIONS(2442), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_LT_DASH] = ACTIONS(2446), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2448), + [anon_sym_lock] = ACTIONS(2450), + [anon_sym_rlock] = ACTIONS(2450), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [777] = { - [sym__expression] = STATE(1778), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4323), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), + [sym__expression] = STATE(2609), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4108), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_STAR] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_go] = ACTIONS(2440), + [anon_sym_spawn] = ACTIONS(2442), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_LT_DASH] = ACTIONS(2446), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2448), + [anon_sym_lock] = ACTIONS(2450), + [anon_sym_rlock] = ACTIONS(2450), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [778] = { - [sym__expression] = STATE(1778), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4327), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), + [sym__expression] = STATE(1664), + [sym__expression_without_blocks] = STATE(1820), + [sym__expression_with_blocks] = STATE(1820), + [sym_inc_expression] = STATE(1820), + [sym_dec_expression] = STATE(1820), + [sym_or_block_expression] = STATE(1820), + [sym_option_propagation_expression] = STATE(1820), + [sym_result_propagation_expression] = STATE(1820), + [sym_anon_struct_value_expression] = STATE(1814), + [sym_go_expression] = STATE(1820), + [sym_spawn_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1820), + [sym_call_expression] = STATE(1820), + [sym_type_initializer] = STATE(1814), + [sym_function_literal] = STATE(1820), + [sym_reference_expression] = STATE(1813), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1820), + [sym_receive_expression] = STATE(1820), + [sym_binary_expression] = STATE(1820), + [sym_as_type_cast_expression] = STATE(1820), + [sym__max_group] = STATE(1820), + [sym_literal] = STATE(1820), + [sym_map_init_expression] = STATE(1814), + [sym_array_creation] = STATE(1820), + [sym_fixed_array_creation] = STATE(1820), + [sym_selector_expression] = STATE(1820), + [sym_index_expression] = STATE(1820), + [sym_slice_expression] = STATE(1820), + [sym_if_expression] = STATE(1814), + [sym_compile_time_if_expression] = STATE(1814), + [sym_is_expression] = STATE(1820), + [sym_not_is_expression] = STATE(1820), + [sym_in_expression] = STATE(1820), + [sym_not_in_expression] = STATE(1820), + [sym_enum_fetch] = STATE(1820), + [sym_match_expression] = STATE(1814), + [sym_select_expression] = STATE(1814), + [sym_lock_expression] = STATE(1814), + [sym_unsafe_expression] = STATE(1814), + [sym_sql_expression] = STATE(1814), + [sym_c_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_interpreted_string_literal] = STATE(1819), + [sym_pseudo_compile_time_identifier] = STATE(1820), + [sym_mutability_modifiers] = STATE(464), + [sym_plain_type] = STATE(4130), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2524), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_fn] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2534), + [anon_sym_STAR] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2538), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_go] = ACTIONS(2542), + [anon_sym_spawn] = ACTIONS(2544), + [anon_sym_json_DOTdecode] = ACTIONS(2546), + [anon_sym_LBRACK2] = ACTIONS(2548), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2550), + [anon_sym_LT_DASH] = ACTIONS(2552), + [sym_none] = ACTIONS(2554), + [sym_true] = ACTIONS(2554), + [sym_false] = ACTIONS(2554), + [sym_nil] = ACTIONS(2554), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_DOLLARif] = ACTIONS(2558), + [anon_sym_match] = ACTIONS(2560), + [anon_sym_select] = ACTIONS(2562), + [anon_sym_lock] = ACTIONS(2564), + [anon_sym_rlock] = ACTIONS(2564), + [anon_sym_unsafe] = ACTIONS(2566), + [anon_sym_sql] = ACTIONS(2568), + [sym_int_literal] = ACTIONS(2554), + [sym_float_literal] = ACTIONS(2570), + [sym_rune_literal] = ACTIONS(2570), + [anon_sym_AT] = ACTIONS(2572), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2574), + [sym___single_quote] = ACTIONS(2576), + [sym___c_double_quote] = ACTIONS(2578), + [sym___c_single_quote] = ACTIONS(2580), + [sym___r_double_quote] = ACTIONS(2582), + [sym___r_single_quote] = ACTIONS(2584), }, [779] = { - [sym__expression] = STATE(1778), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), + [sym__expression] = STATE(2880), + [sym__expression_without_blocks] = STATE(2926), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2926), + [sym_dec_expression] = STATE(2926), + [sym_or_block_expression] = STATE(2926), + [sym_option_propagation_expression] = STATE(2926), + [sym_result_propagation_expression] = STATE(2926), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2926), + [sym_spawn_expression] = STATE(2926), + [sym_parenthesized_expression] = STATE(2926), + [sym_call_expression] = STATE(2926), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2926), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2926), + [sym_receive_expression] = STATE(2926), + [sym_binary_expression] = STATE(2926), + [sym_as_type_cast_expression] = STATE(2926), + [sym__max_group] = STATE(2926), + [sym_literal] = STATE(2926), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2926), + [sym_fixed_array_creation] = STATE(2926), + [sym_selector_expression] = STATE(2926), + [sym_index_expression] = STATE(2926), + [sym_slice_expression] = STATE(2926), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2926), + [sym_not_is_expression] = STATE(2926), + [sym_in_expression] = STATE(2926), + [sym_not_in_expression] = STATE(2926), + [sym_enum_fetch] = STATE(2926), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2926), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [780] = { - [sym__expression] = STATE(1624), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4225), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1242), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4288), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(945), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [781] = { - [sym__expression] = STATE(1810), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), + [sym__expression] = STATE(2327), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [782] = { - [sym__expression] = STATE(1638), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), + [sym__expression] = STATE(2613), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4108), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_STAR] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_go] = ACTIONS(2440), + [anon_sym_spawn] = ACTIONS(2442), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_LT_DASH] = ACTIONS(2446), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2448), + [anon_sym_lock] = ACTIONS(2450), + [anon_sym_rlock] = ACTIONS(2450), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [783] = { - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), + [sym__expression] = STATE(2616), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4108), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_STAR] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_go] = ACTIONS(2440), + [anon_sym_spawn] = ACTIONS(2442), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_LT_DASH] = ACTIONS(2446), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2448), + [anon_sym_lock] = ACTIONS(2450), + [anon_sym_rlock] = ACTIONS(2450), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [784] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2618), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4108), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_STAR] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_go] = ACTIONS(2440), + [anon_sym_spawn] = ACTIONS(2442), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_LT_DASH] = ACTIONS(2446), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2448), + [anon_sym_lock] = ACTIONS(2450), + [anon_sym_rlock] = ACTIONS(2450), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [785] = { - [sym__expression] = STATE(1614), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), + [sym__expression] = STATE(2475), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4108), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(2754), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2426), + [anon_sym_lock] = ACTIONS(2428), + [anon_sym_rlock] = ACTIONS(2428), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [786] = { - [sym__expression] = STATE(962), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [sym__expression] = STATE(2623), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4108), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_STAR] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_go] = ACTIONS(2440), + [anon_sym_spawn] = ACTIONS(2442), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_LT_DASH] = ACTIONS(2446), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2448), + [anon_sym_lock] = ACTIONS(2450), + [anon_sym_rlock] = ACTIONS(2450), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [787] = { - [sym__expression] = STATE(2865), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2313), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [788] = { - [sym__expression] = STATE(979), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [sym__expression] = STATE(2648), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [789] = { - [sym__expression] = STATE(2880), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2602), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4108), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_STAR] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_go] = ACTIONS(2440), + [anon_sym_spawn] = ACTIONS(2442), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_LT_DASH] = ACTIONS(2446), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2448), + [anon_sym_lock] = ACTIONS(2450), + [anon_sym_rlock] = ACTIONS(2450), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [790] = { - [sym__expression] = STATE(1617), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), + [sym__expression] = STATE(2225), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(3670), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_go] = ACTIONS(2068), + [anon_sym_spawn] = ACTIONS(2070), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_CARET] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_LT_DASH] = ACTIONS(2076), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2078), + [anon_sym_lock] = ACTIONS(2080), + [anon_sym_rlock] = ACTIONS(2080), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [791] = { - [sym__expression] = STATE(1788), - [sym__expression_without_blocks] = STATE(2104), - [sym__expression_with_blocks] = STATE(2104), - [sym_inc_expression] = STATE(2104), - [sym_dec_expression] = STATE(2104), - [sym_or_block_expression] = STATE(2104), - [sym_option_propagation_expression] = STATE(2104), - [sym_result_propagation_expression] = STATE(2104), - [sym_anon_struct_value_expression] = STATE(2119), - [sym_go_expression] = STATE(2104), - [sym_spawn_expression] = STATE(2104), - [sym_parenthesized_expression] = STATE(2104), - [sym_call_expression] = STATE(2104), - [sym_type_initializer] = STATE(2119), - [sym_function_literal] = STATE(2104), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2104), - [sym_receive_expression] = STATE(2104), - [sym_binary_expression] = STATE(2104), - [sym_as_type_cast_expression] = STATE(2104), - [sym__max_group] = STATE(2104), - [sym_literal] = STATE(2104), - [sym_map_init_expression] = STATE(2119), - [sym_array_creation] = STATE(2104), - [sym_fixed_array_creation] = STATE(2104), - [sym_selector_expression] = STATE(2104), - [sym_index_expression] = STATE(2104), - [sym_slice_expression] = STATE(2104), - [sym_if_expression] = STATE(2119), - [sym_compile_time_if_expression] = STATE(2119), - [sym_is_expression] = STATE(2104), - [sym_not_is_expression] = STATE(2104), - [sym_in_expression] = STATE(2104), - [sym_not_in_expression] = STATE(2104), - [sym_enum_fetch] = STATE(2104), - [sym_match_expression] = STATE(2119), - [sym_select_expression] = STATE(2119), - [sym_lock_expression] = STATE(2119), - [sym_unsafe_expression] = STATE(2119), - [sym_sql_expression] = STATE(2119), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(2104), - [sym_mutability_modifiers] = STATE(835), - [sym_plain_type] = STATE(4201), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2706), + [sym__expression] = STATE(1647), + [sym__expression_without_blocks] = STATE(1820), + [sym__expression_with_blocks] = STATE(1820), + [sym_inc_expression] = STATE(1820), + [sym_dec_expression] = STATE(1820), + [sym_or_block_expression] = STATE(1820), + [sym_option_propagation_expression] = STATE(1820), + [sym_result_propagation_expression] = STATE(1820), + [sym_anon_struct_value_expression] = STATE(1814), + [sym_go_expression] = STATE(1820), + [sym_spawn_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1820), + [sym_call_expression] = STATE(1820), + [sym_type_initializer] = STATE(1814), + [sym_function_literal] = STATE(1820), + [sym_reference_expression] = STATE(1813), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1820), + [sym_receive_expression] = STATE(1820), + [sym_binary_expression] = STATE(1820), + [sym_as_type_cast_expression] = STATE(1820), + [sym__max_group] = STATE(1820), + [sym_literal] = STATE(1820), + [sym_map_init_expression] = STATE(1814), + [sym_array_creation] = STATE(1820), + [sym_fixed_array_creation] = STATE(1820), + [sym_selector_expression] = STATE(1820), + [sym_index_expression] = STATE(1820), + [sym_slice_expression] = STATE(1820), + [sym_if_expression] = STATE(1814), + [sym_compile_time_if_expression] = STATE(1814), + [sym_is_expression] = STATE(1820), + [sym_not_is_expression] = STATE(1820), + [sym_in_expression] = STATE(1820), + [sym_not_in_expression] = STATE(1820), + [sym_enum_fetch] = STATE(1820), + [sym_match_expression] = STATE(1814), + [sym_select_expression] = STATE(1814), + [sym_lock_expression] = STATE(1814), + [sym_unsafe_expression] = STATE(1814), + [sym_sql_expression] = STATE(1814), + [sym_c_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_interpreted_string_literal] = STATE(1819), + [sym_pseudo_compile_time_identifier] = STATE(1820), + [sym_mutability_modifiers] = STATE(464), + [sym_plain_type] = STATE(4130), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2524), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2720), - [anon_sym_rlock] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_fn] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2534), + [anon_sym_STAR] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2538), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_go] = ACTIONS(2542), + [anon_sym_spawn] = ACTIONS(2544), + [anon_sym_json_DOTdecode] = ACTIONS(2546), + [anon_sym_LBRACK2] = ACTIONS(2548), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2550), + [anon_sym_LT_DASH] = ACTIONS(2552), + [sym_none] = ACTIONS(2554), + [sym_true] = ACTIONS(2554), + [sym_false] = ACTIONS(2554), + [sym_nil] = ACTIONS(2554), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_DOLLARif] = ACTIONS(2558), + [anon_sym_match] = ACTIONS(2560), + [anon_sym_select] = ACTIONS(2562), + [anon_sym_lock] = ACTIONS(2564), + [anon_sym_rlock] = ACTIONS(2564), + [anon_sym_unsafe] = ACTIONS(2566), + [anon_sym_sql] = ACTIONS(2568), + [sym_int_literal] = ACTIONS(2554), + [sym_float_literal] = ACTIONS(2570), + [sym_rune_literal] = ACTIONS(2570), + [anon_sym_AT] = ACTIONS(2572), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2574), + [sym___single_quote] = ACTIONS(2576), + [sym___c_double_quote] = ACTIONS(2578), + [sym___c_single_quote] = ACTIONS(2580), + [sym___r_double_quote] = ACTIONS(2582), + [sym___r_single_quote] = ACTIONS(2584), }, [792] = { - [ts_builtin_sym_end] = ACTIONS(2770), - [sym_identifier] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2772), - [anon_sym_CR] = ACTIONS(2772), - [anon_sym_CR_LF] = ACTIONS(2772), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_as] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_COMMA] = ACTIONS(2772), - [anon_sym_const] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym_EQ] = ACTIONS(2772), - [anon_sym___global] = ACTIONS(2772), - [anon_sym_type] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2772), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_PERCENT] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2772), - [anon_sym_BANG_EQ] = ACTIONS(2772), - [anon_sym_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_EQ] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_union] = ACTIONS(2772), - [anon_sym_pub] = ACTIONS(2772), - [anon_sym_mut] = ACTIONS(2772), - [anon_sym_COLON] = ACTIONS(2780), - [anon_sym_enum] = ACTIONS(2772), - [anon_sym_interface] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [anon_sym_QMARK] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2772), - [anon_sym_json_DOTdecode] = ACTIONS(2772), - [anon_sym_LBRACK2] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_LT_DASH] = ACTIONS(2772), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_GT_GT_GT] = ACTIONS(2772), - [anon_sym_AMP_CARET] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_PIPE_PIPE] = ACTIONS(2772), - [anon_sym_or] = ACTIONS(2772), - [sym_none] = ACTIONS(2772), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_nil] = ACTIONS(2772), - [anon_sym_QMARK_DOT] = ACTIONS(2772), - [anon_sym_POUND_LBRACK] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_DOLLARif] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_BANGis] = ACTIONS(2772), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_BANGin] = ACTIONS(2772), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_select] = ACTIONS(2772), - [anon_sym_STAR_EQ] = ACTIONS(2772), - [anon_sym_SLASH_EQ] = ACTIONS(2772), - [anon_sym_PERCENT_EQ] = ACTIONS(2772), - [anon_sym_LT_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_GT_EQ] = ACTIONS(2772), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2772), - [anon_sym_AMP_EQ] = ACTIONS(2772), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2772), - [anon_sym_PLUS_EQ] = ACTIONS(2772), - [anon_sym_DASH_EQ] = ACTIONS(2772), - [anon_sym_PIPE_EQ] = ACTIONS(2772), - [anon_sym_CARET_EQ] = ACTIONS(2772), - [anon_sym_COLON_EQ] = ACTIONS(2772), - [anon_sym_lock] = ACTIONS(2772), - [anon_sym_rlock] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_sql] = ACTIONS(2772), - [sym_int_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2772), - [sym_rune_literal] = ACTIONS(2772), - [anon_sym_AT] = ACTIONS(2772), - [anon_sym_shared] = ACTIONS(2772), - [anon_sym_map_LBRACK] = ACTIONS(2772), - [anon_sym_chan] = ACTIONS(2772), - [anon_sym_thread] = ACTIONS(2772), - [anon_sym_atomic] = ACTIONS(2772), - [anon_sym_assert] = ACTIONS(2772), - [anon_sym_defer] = ACTIONS(2772), - [anon_sym_goto] = ACTIONS(2772), - [anon_sym_break] = ACTIONS(2772), - [anon_sym_continue] = ACTIONS(2772), - [anon_sym_return] = ACTIONS(2772), - [anon_sym_DOLLARfor] = ACTIONS(2772), - [anon_sym_for] = ACTIONS(2772), - [anon_sym_POUND] = ACTIONS(2772), - [anon_sym_asm] = ACTIONS(2772), - [anon_sym_AT_LBRACK] = ACTIONS(2772), - [sym___double_quote] = ACTIONS(2772), - [sym___single_quote] = ACTIONS(2772), - [sym___c_double_quote] = ACTIONS(2772), - [sym___c_single_quote] = ACTIONS(2772), - [sym___r_double_quote] = ACTIONS(2772), - [sym___r_single_quote] = ACTIONS(2772), + [sym__expression] = STATE(1637), + [sym__expression_without_blocks] = STATE(1820), + [sym__expression_with_blocks] = STATE(1820), + [sym_inc_expression] = STATE(1820), + [sym_dec_expression] = STATE(1820), + [sym_or_block_expression] = STATE(1820), + [sym_option_propagation_expression] = STATE(1820), + [sym_result_propagation_expression] = STATE(1820), + [sym_anon_struct_value_expression] = STATE(1814), + [sym_go_expression] = STATE(1820), + [sym_spawn_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1820), + [sym_call_expression] = STATE(1820), + [sym_type_initializer] = STATE(1814), + [sym_function_literal] = STATE(1820), + [sym_reference_expression] = STATE(1813), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1820), + [sym_receive_expression] = STATE(1820), + [sym_binary_expression] = STATE(1820), + [sym_as_type_cast_expression] = STATE(1820), + [sym__max_group] = STATE(1820), + [sym_literal] = STATE(1820), + [sym_map_init_expression] = STATE(1814), + [sym_array_creation] = STATE(1820), + [sym_fixed_array_creation] = STATE(1820), + [sym_selector_expression] = STATE(1820), + [sym_index_expression] = STATE(1820), + [sym_slice_expression] = STATE(1820), + [sym_if_expression] = STATE(1814), + [sym_compile_time_if_expression] = STATE(1814), + [sym_is_expression] = STATE(1820), + [sym_not_is_expression] = STATE(1820), + [sym_in_expression] = STATE(1820), + [sym_not_in_expression] = STATE(1820), + [sym_enum_fetch] = STATE(1820), + [sym_match_expression] = STATE(1814), + [sym_select_expression] = STATE(1814), + [sym_lock_expression] = STATE(1814), + [sym_unsafe_expression] = STATE(1814), + [sym_sql_expression] = STATE(1814), + [sym_c_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_interpreted_string_literal] = STATE(1819), + [sym_pseudo_compile_time_identifier] = STATE(1820), + [sym_mutability_modifiers] = STATE(464), + [sym_plain_type] = STATE(4130), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2524), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_fn] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2534), + [anon_sym_STAR] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2538), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_go] = ACTIONS(2542), + [anon_sym_spawn] = ACTIONS(2544), + [anon_sym_json_DOTdecode] = ACTIONS(2546), + [anon_sym_LBRACK2] = ACTIONS(2548), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2550), + [anon_sym_LT_DASH] = ACTIONS(2552), + [sym_none] = ACTIONS(2554), + [sym_true] = ACTIONS(2554), + [sym_false] = ACTIONS(2554), + [sym_nil] = ACTIONS(2554), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_DOLLARif] = ACTIONS(2558), + [anon_sym_match] = ACTIONS(2560), + [anon_sym_select] = ACTIONS(2562), + [anon_sym_lock] = ACTIONS(2564), + [anon_sym_rlock] = ACTIONS(2564), + [anon_sym_unsafe] = ACTIONS(2566), + [anon_sym_sql] = ACTIONS(2568), + [sym_int_literal] = ACTIONS(2554), + [sym_float_literal] = ACTIONS(2570), + [sym_rune_literal] = ACTIONS(2570), + [anon_sym_AT] = ACTIONS(2572), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2574), + [sym___single_quote] = ACTIONS(2576), + [sym___c_double_quote] = ACTIONS(2578), + [sym___c_single_quote] = ACTIONS(2580), + [sym___r_double_quote] = ACTIONS(2582), + [sym___r_single_quote] = ACTIONS(2584), }, [793] = { - [sym__expression] = STATE(2793), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(2560), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2598), + [anon_sym_go] = ACTIONS(2600), + [anon_sym_spawn] = ACTIONS(2602), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(2594), + [anon_sym_CARET] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2604), + [anon_sym_LT_DASH] = ACTIONS(2606), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(2608), + [anon_sym_lock] = ACTIONS(2610), + [anon_sym_rlock] = ACTIONS(2610), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [794] = { - [sym__expression] = STATE(1624), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), + [sym__expression] = STATE(2476), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4108), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(2754), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2426), + [anon_sym_lock] = ACTIONS(2428), + [anon_sym_rlock] = ACTIONS(2428), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [795] = { - [sym__expression] = STATE(2877), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2692), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [796] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2975), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2974), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(2805), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3659), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_go] = ACTIONS(2196), + [anon_sym_spawn] = ACTIONS(2198), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(2202), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [797] = { - [sym__expression] = STATE(2783), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3667), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(1648), + [sym__expression_without_blocks] = STATE(1820), + [sym__expression_with_blocks] = STATE(1820), + [sym_inc_expression] = STATE(1820), + [sym_dec_expression] = STATE(1820), + [sym_or_block_expression] = STATE(1820), + [sym_option_propagation_expression] = STATE(1820), + [sym_result_propagation_expression] = STATE(1820), + [sym_anon_struct_value_expression] = STATE(1814), + [sym_go_expression] = STATE(1820), + [sym_spawn_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1820), + [sym_call_expression] = STATE(1820), + [sym_type_initializer] = STATE(1814), + [sym_function_literal] = STATE(1820), + [sym_reference_expression] = STATE(1813), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1820), + [sym_receive_expression] = STATE(1820), + [sym_binary_expression] = STATE(1820), + [sym_as_type_cast_expression] = STATE(1820), + [sym__max_group] = STATE(1820), + [sym_literal] = STATE(1820), + [sym_map_init_expression] = STATE(1814), + [sym_array_creation] = STATE(1820), + [sym_fixed_array_creation] = STATE(1820), + [sym_selector_expression] = STATE(1820), + [sym_index_expression] = STATE(1820), + [sym_slice_expression] = STATE(1820), + [sym_if_expression] = STATE(1814), + [sym_compile_time_if_expression] = STATE(1814), + [sym_is_expression] = STATE(1820), + [sym_not_is_expression] = STATE(1820), + [sym_in_expression] = STATE(1820), + [sym_not_in_expression] = STATE(1820), + [sym_enum_fetch] = STATE(1820), + [sym_match_expression] = STATE(1814), + [sym_select_expression] = STATE(1814), + [sym_lock_expression] = STATE(1814), + [sym_unsafe_expression] = STATE(1814), + [sym_sql_expression] = STATE(1814), + [sym_c_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_interpreted_string_literal] = STATE(1819), + [sym_pseudo_compile_time_identifier] = STATE(1820), + [sym_mutability_modifiers] = STATE(464), + [sym_plain_type] = STATE(4130), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2524), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_fn] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2534), + [anon_sym_STAR] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2538), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_go] = ACTIONS(2542), + [anon_sym_spawn] = ACTIONS(2544), + [anon_sym_json_DOTdecode] = ACTIONS(2546), + [anon_sym_LBRACK2] = ACTIONS(2548), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2550), + [anon_sym_LT_DASH] = ACTIONS(2552), + [sym_none] = ACTIONS(2554), + [sym_true] = ACTIONS(2554), + [sym_false] = ACTIONS(2554), + [sym_nil] = ACTIONS(2554), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_DOLLARif] = ACTIONS(2558), + [anon_sym_match] = ACTIONS(2560), + [anon_sym_select] = ACTIONS(2562), + [anon_sym_lock] = ACTIONS(2564), + [anon_sym_rlock] = ACTIONS(2564), + [anon_sym_unsafe] = ACTIONS(2566), + [anon_sym_sql] = ACTIONS(2568), + [sym_int_literal] = ACTIONS(2554), + [sym_float_literal] = ACTIONS(2570), + [sym_rune_literal] = ACTIONS(2570), + [anon_sym_AT] = ACTIONS(2572), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2574), + [sym___single_quote] = ACTIONS(2576), + [sym___c_double_quote] = ACTIONS(2578), + [sym___c_single_quote] = ACTIONS(2580), + [sym___r_double_quote] = ACTIONS(2582), + [sym___r_single_quote] = ACTIONS(2584), }, [798] = { - [sym__expression] = STATE(2883), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2563), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4108), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(2754), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2426), + [anon_sym_lock] = ACTIONS(2428), + [anon_sym_rlock] = ACTIONS(2428), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [799] = { - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2478), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4108), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(2754), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2426), + [anon_sym_lock] = ACTIONS(2428), + [anon_sym_rlock] = ACTIONS(2428), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [800] = { - [sym__expression] = STATE(1624), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4238), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), + [sym__expression] = STATE(2499), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4014), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1091), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1109), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2426), + [anon_sym_lock] = ACTIONS(2428), + [anon_sym_rlock] = ACTIONS(2428), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [801] = { - [sym__expression] = STATE(2666), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2441), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [802] = { - [sym__expression] = STATE(1762), - [sym__expression_without_blocks] = STATE(2104), - [sym__expression_with_blocks] = STATE(2104), - [sym_inc_expression] = STATE(2104), - [sym_dec_expression] = STATE(2104), - [sym_or_block_expression] = STATE(2104), - [sym_option_propagation_expression] = STATE(2104), - [sym_result_propagation_expression] = STATE(2104), - [sym_anon_struct_value_expression] = STATE(2119), - [sym_go_expression] = STATE(2104), - [sym_spawn_expression] = STATE(2104), - [sym_parenthesized_expression] = STATE(2104), - [sym_call_expression] = STATE(2104), - [sym_type_initializer] = STATE(2119), - [sym_function_literal] = STATE(2104), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2104), - [sym_receive_expression] = STATE(2104), - [sym_binary_expression] = STATE(2104), - [sym_as_type_cast_expression] = STATE(2104), - [sym__max_group] = STATE(2104), - [sym_literal] = STATE(2104), - [sym_map_init_expression] = STATE(2119), - [sym_array_creation] = STATE(2104), - [sym_fixed_array_creation] = STATE(2104), - [sym_selector_expression] = STATE(2104), - [sym_index_expression] = STATE(2104), - [sym_slice_expression] = STATE(2104), - [sym_if_expression] = STATE(2119), - [sym_compile_time_if_expression] = STATE(2119), - [sym_is_expression] = STATE(2104), - [sym_not_is_expression] = STATE(2104), - [sym_in_expression] = STATE(2104), - [sym_not_in_expression] = STATE(2104), - [sym_enum_fetch] = STATE(2104), - [sym_match_expression] = STATE(2119), - [sym_select_expression] = STATE(2119), - [sym_lock_expression] = STATE(2119), - [sym_unsafe_expression] = STATE(2119), - [sym_sql_expression] = STATE(2119), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(2104), - [sym_mutability_modifiers] = STATE(835), - [sym_plain_type] = STATE(4201), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2706), + [sym__expression] = STATE(2186), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2720), - [anon_sym_rlock] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [803] = { - [sym__expression] = STATE(373), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), + [sym__expression] = STATE(2673), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [804] = { - [sym__expression] = STATE(354), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4188), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), + [sym__expression] = STATE(976), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2108), + [anon_sym_go] = ACTIONS(513), + [anon_sym_spawn] = ACTIONS(515), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_LT_DASH] = ACTIONS(2116), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(533), + [anon_sym_lock] = ACTIONS(535), + [anon_sym_rlock] = ACTIONS(535), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [805] = { - [sym__expression] = STATE(980), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [sym__expression] = STATE(1658), + [sym__expression_without_blocks] = STATE(1820), + [sym__expression_with_blocks] = STATE(1820), + [sym_inc_expression] = STATE(1820), + [sym_dec_expression] = STATE(1820), + [sym_or_block_expression] = STATE(1820), + [sym_option_propagation_expression] = STATE(1820), + [sym_result_propagation_expression] = STATE(1820), + [sym_anon_struct_value_expression] = STATE(1814), + [sym_go_expression] = STATE(1820), + [sym_spawn_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1820), + [sym_call_expression] = STATE(1820), + [sym_type_initializer] = STATE(1814), + [sym_function_literal] = STATE(1820), + [sym_reference_expression] = STATE(1813), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1820), + [sym_receive_expression] = STATE(1820), + [sym_binary_expression] = STATE(1820), + [sym_as_type_cast_expression] = STATE(1820), + [sym__max_group] = STATE(1820), + [sym_literal] = STATE(1820), + [sym_map_init_expression] = STATE(1814), + [sym_array_creation] = STATE(1820), + [sym_fixed_array_creation] = STATE(1820), + [sym_selector_expression] = STATE(1820), + [sym_index_expression] = STATE(1820), + [sym_slice_expression] = STATE(1820), + [sym_if_expression] = STATE(1814), + [sym_compile_time_if_expression] = STATE(1814), + [sym_is_expression] = STATE(1820), + [sym_not_is_expression] = STATE(1820), + [sym_in_expression] = STATE(1820), + [sym_not_in_expression] = STATE(1820), + [sym_enum_fetch] = STATE(1820), + [sym_match_expression] = STATE(1814), + [sym_select_expression] = STATE(1814), + [sym_lock_expression] = STATE(1814), + [sym_unsafe_expression] = STATE(1814), + [sym_sql_expression] = STATE(1814), + [sym_c_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_interpreted_string_literal] = STATE(1819), + [sym_pseudo_compile_time_identifier] = STATE(1820), + [sym_mutability_modifiers] = STATE(464), + [sym_plain_type] = STATE(4130), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2524), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_fn] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2534), + [anon_sym_STAR] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2538), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_go] = ACTIONS(2542), + [anon_sym_spawn] = ACTIONS(2544), + [anon_sym_json_DOTdecode] = ACTIONS(2546), + [anon_sym_LBRACK2] = ACTIONS(2548), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2550), + [anon_sym_LT_DASH] = ACTIONS(2552), + [sym_none] = ACTIONS(2554), + [sym_true] = ACTIONS(2554), + [sym_false] = ACTIONS(2554), + [sym_nil] = ACTIONS(2554), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_DOLLARif] = ACTIONS(2558), + [anon_sym_match] = ACTIONS(2560), + [anon_sym_select] = ACTIONS(2562), + [anon_sym_lock] = ACTIONS(2564), + [anon_sym_rlock] = ACTIONS(2564), + [anon_sym_unsafe] = ACTIONS(2566), + [anon_sym_sql] = ACTIONS(2568), + [sym_int_literal] = ACTIONS(2554), + [sym_float_literal] = ACTIONS(2570), + [sym_rune_literal] = ACTIONS(2570), + [anon_sym_AT] = ACTIONS(2572), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2574), + [sym___single_quote] = ACTIONS(2576), + [sym___c_double_quote] = ACTIONS(2578), + [sym___c_single_quote] = ACTIONS(2580), + [sym___r_double_quote] = ACTIONS(2582), + [sym___r_single_quote] = ACTIONS(2584), }, [806] = { - [sym__expression] = STATE(1624), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), + [sym__expression] = STATE(2680), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [807] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2499), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4021), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1091), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1109), + [anon_sym_go] = ACTIONS(1111), + [anon_sym_spawn] = ACTIONS(1113), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_LT_DASH] = ACTIONS(1121), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2426), + [anon_sym_lock] = ACTIONS(2428), + [anon_sym_rlock] = ACTIONS(2428), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [808] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(974), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2108), + [anon_sym_go] = ACTIONS(513), + [anon_sym_spawn] = ACTIONS(515), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_LT_DASH] = ACTIONS(2116), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(533), + [anon_sym_lock] = ACTIONS(535), + [anon_sym_rlock] = ACTIONS(535), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [809] = { - [sym__expression] = STATE(367), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), + [sym__expression] = STATE(2881), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_go] = ACTIONS(1384), + [anon_sym_spawn] = ACTIONS(1386), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_LT_DASH] = ACTIONS(1394), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1404), + [anon_sym_lock] = ACTIONS(1406), + [anon_sym_rlock] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [810] = { - [sym__expression] = STATE(2688), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(2684), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [811] = { - [sym__expression] = STATE(363), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), + [sym__expression] = STATE(2499), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4108), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_STAR] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_go] = ACTIONS(2440), + [anon_sym_spawn] = ACTIONS(2442), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_LT_DASH] = ACTIONS(2446), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2448), + [anon_sym_lock] = ACTIONS(2450), + [anon_sym_rlock] = ACTIONS(2450), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [812] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(3675), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2219), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [813] = { - [sym__expression] = STATE(354), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), + [sym__expression] = STATE(1798), + [sym__expression_without_blocks] = STATE(1940), + [sym__expression_with_blocks] = STATE(1940), + [sym_inc_expression] = STATE(1940), + [sym_dec_expression] = STATE(1940), + [sym_or_block_expression] = STATE(1940), + [sym_option_propagation_expression] = STATE(1940), + [sym_result_propagation_expression] = STATE(1940), + [sym_anon_struct_value_expression] = STATE(1944), + [sym_go_expression] = STATE(1940), + [sym_spawn_expression] = STATE(1940), + [sym_parenthesized_expression] = STATE(1940), + [sym_call_expression] = STATE(1940), + [sym_type_initializer] = STATE(1944), + [sym_function_literal] = STATE(1940), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1940), + [sym_receive_expression] = STATE(1940), + [sym_binary_expression] = STATE(1940), + [sym_as_type_cast_expression] = STATE(1940), + [sym__max_group] = STATE(1940), + [sym_literal] = STATE(1940), + [sym_map_init_expression] = STATE(1944), + [sym_array_creation] = STATE(1940), + [sym_fixed_array_creation] = STATE(1940), + [sym_selector_expression] = STATE(1940), + [sym_index_expression] = STATE(1940), + [sym_slice_expression] = STATE(1940), + [sym_if_expression] = STATE(1944), + [sym_compile_time_if_expression] = STATE(1944), + [sym_is_expression] = STATE(1940), + [sym_not_is_expression] = STATE(1940), + [sym_in_expression] = STATE(1940), + [sym_not_in_expression] = STATE(1940), + [sym_enum_fetch] = STATE(1940), + [sym_match_expression] = STATE(1944), + [sym_select_expression] = STATE(1944), + [sym_lock_expression] = STATE(1944), + [sym_unsafe_expression] = STATE(1944), + [sym_sql_expression] = STATE(1944), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1940), + [sym_mutability_modifiers] = STATE(494), + [sym_plain_type] = STATE(4362), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2714), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(2718), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(2720), + [anon_sym_DOLLARif] = ACTIONS(2722), + [anon_sym_match] = ACTIONS(2724), + [anon_sym_select] = ACTIONS(2726), + [anon_sym_lock] = ACTIONS(2728), + [anon_sym_rlock] = ACTIONS(2728), + [anon_sym_unsafe] = ACTIONS(2730), + [anon_sym_sql] = ACTIONS(2732), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [814] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(2737), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [815] = { - [sym__expression] = STATE(1640), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), + [sym__expression] = STATE(2630), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4108), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_STAR] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_go] = ACTIONS(2440), + [anon_sym_spawn] = ACTIONS(2442), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_LT_DASH] = ACTIONS(2446), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2448), + [anon_sym_lock] = ACTIONS(2450), + [anon_sym_rlock] = ACTIONS(2450), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [816] = { - [sym__expression] = STATE(2619), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(1798), + [sym__expression_without_blocks] = STATE(1940), + [sym__expression_with_blocks] = STATE(1940), + [sym_inc_expression] = STATE(1940), + [sym_dec_expression] = STATE(1940), + [sym_or_block_expression] = STATE(1940), + [sym_option_propagation_expression] = STATE(1940), + [sym_result_propagation_expression] = STATE(1940), + [sym_anon_struct_value_expression] = STATE(1944), + [sym_go_expression] = STATE(1940), + [sym_spawn_expression] = STATE(1940), + [sym_parenthesized_expression] = STATE(1940), + [sym_call_expression] = STATE(1940), + [sym_type_initializer] = STATE(1944), + [sym_function_literal] = STATE(1940), + [sym_reference_expression] = STATE(1939), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1940), + [sym_receive_expression] = STATE(1940), + [sym_binary_expression] = STATE(1940), + [sym_as_type_cast_expression] = STATE(1940), + [sym__max_group] = STATE(1940), + [sym_literal] = STATE(1940), + [sym_map_init_expression] = STATE(1944), + [sym_array_creation] = STATE(1940), + [sym_fixed_array_creation] = STATE(1940), + [sym_selector_expression] = STATE(1940), + [sym_index_expression] = STATE(1940), + [sym_slice_expression] = STATE(1940), + [sym_if_expression] = STATE(1944), + [sym_compile_time_if_expression] = STATE(1944), + [sym_is_expression] = STATE(1940), + [sym_not_is_expression] = STATE(1940), + [sym_in_expression] = STATE(1940), + [sym_not_in_expression] = STATE(1940), + [sym_enum_fetch] = STATE(1940), + [sym_match_expression] = STATE(1944), + [sym_select_expression] = STATE(1944), + [sym_lock_expression] = STATE(1944), + [sym_unsafe_expression] = STATE(1944), + [sym_sql_expression] = STATE(1944), + [sym_c_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_interpreted_string_literal] = STATE(2034), + [sym_pseudo_compile_time_identifier] = STATE(1940), + [sym_mutability_modifiers] = STATE(494), + [sym_plain_type] = STATE(4351), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2714), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(703), + [anon_sym_fn] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(709), + [anon_sym_struct] = ACTIONS(2718), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(713), + [anon_sym_go] = ACTIONS(715), + [anon_sym_spawn] = ACTIONS(717), + [anon_sym_json_DOTdecode] = ACTIONS(719), + [anon_sym_LBRACK2] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LT_DASH] = ACTIONS(725), + [sym_none] = ACTIONS(727), + [sym_true] = ACTIONS(727), + [sym_false] = ACTIONS(727), + [sym_nil] = ACTIONS(727), + [anon_sym_if] = ACTIONS(2720), + [anon_sym_DOLLARif] = ACTIONS(2722), + [anon_sym_match] = ACTIONS(2724), + [anon_sym_select] = ACTIONS(2726), + [anon_sym_lock] = ACTIONS(2728), + [anon_sym_rlock] = ACTIONS(2728), + [anon_sym_unsafe] = ACTIONS(2730), + [anon_sym_sql] = ACTIONS(2732), + [sym_int_literal] = ACTIONS(727), + [sym_float_literal] = ACTIONS(745), + [sym_rune_literal] = ACTIONS(745), + [anon_sym_AT] = ACTIONS(747), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(749), + [sym___single_quote] = ACTIONS(751), + [sym___c_double_quote] = ACTIONS(753), + [sym___c_single_quote] = ACTIONS(755), + [sym___r_double_quote] = ACTIONS(757), + [sym___r_single_quote] = ACTIONS(759), }, [817] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(1893), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1568), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_go] = ACTIONS(821), + [anon_sym_spawn] = ACTIONS(823), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(827), + [anon_sym_TILDE] = ACTIONS(811), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_LT_DASH] = ACTIONS(831), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(841), + [anon_sym_lock] = ACTIONS(843), + [anon_sym_rlock] = ACTIONS(843), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [818] = { - [sym__expression] = STATE(2620), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(1765), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1568), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_go] = ACTIONS(821), + [anon_sym_spawn] = ACTIONS(823), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(827), + [anon_sym_TILDE] = ACTIONS(811), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_LT_DASH] = ACTIONS(831), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(841), + [anon_sym_lock] = ACTIONS(843), + [anon_sym_rlock] = ACTIONS(843), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [819] = { - [sym__expression] = STATE(960), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [sym__expression] = STATE(1780), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4394), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1568), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_go] = ACTIONS(821), + [anon_sym_spawn] = ACTIONS(823), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(827), + [anon_sym_TILDE] = ACTIONS(811), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_LT_DASH] = ACTIONS(831), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(841), + [anon_sym_lock] = ACTIONS(843), + [anon_sym_rlock] = ACTIONS(843), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [820] = { - [sym__expression] = STATE(963), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4400), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [sym__expression] = STATE(2225), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(3671), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_go] = ACTIONS(2068), + [anon_sym_spawn] = ACTIONS(2070), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_CARET] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_LT_DASH] = ACTIONS(2076), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2078), + [anon_sym_lock] = ACTIONS(2080), + [anon_sym_rlock] = ACTIONS(2080), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [821] = { - [sym__expression] = STATE(976), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [sym__expression] = STATE(1784), + [sym__expression_without_blocks] = STATE(1948), + [sym__expression_with_blocks] = STATE(1948), + [sym_inc_expression] = STATE(1948), + [sym_dec_expression] = STATE(1948), + [sym_or_block_expression] = STATE(1948), + [sym_option_propagation_expression] = STATE(1948), + [sym_result_propagation_expression] = STATE(1948), + [sym_anon_struct_value_expression] = STATE(1949), + [sym_go_expression] = STATE(1948), + [sym_spawn_expression] = STATE(1948), + [sym_parenthesized_expression] = STATE(1948), + [sym_call_expression] = STATE(1948), + [sym_type_initializer] = STATE(1949), + [sym_function_literal] = STATE(1948), + [sym_reference_expression] = STATE(1936), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1948), + [sym_receive_expression] = STATE(1948), + [sym_binary_expression] = STATE(1948), + [sym_as_type_cast_expression] = STATE(1948), + [sym__max_group] = STATE(1948), + [sym_literal] = STATE(1948), + [sym_map_init_expression] = STATE(1949), + [sym_array_creation] = STATE(1948), + [sym_fixed_array_creation] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym_index_expression] = STATE(1948), + [sym_slice_expression] = STATE(1948), + [sym_if_expression] = STATE(1949), + [sym_compile_time_if_expression] = STATE(1949), + [sym_is_expression] = STATE(1948), + [sym_not_is_expression] = STATE(1948), + [sym_in_expression] = STATE(1948), + [sym_not_in_expression] = STATE(1948), + [sym_enum_fetch] = STATE(1948), + [sym_match_expression] = STATE(1949), + [sym_select_expression] = STATE(1949), + [sym_lock_expression] = STATE(1949), + [sym_unsafe_expression] = STATE(1949), + [sym_sql_expression] = STATE(1949), + [sym_c_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_interpreted_string_literal] = STATE(1945), + [sym_pseudo_compile_time_identifier] = STATE(1948), + [sym_mutability_modifiers] = STATE(609), + [sym_plain_type] = STATE(4278), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1568), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(803), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(807), + [anon_sym_fn] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_go] = ACTIONS(821), + [anon_sym_spawn] = ACTIONS(823), + [anon_sym_json_DOTdecode] = ACTIONS(825), + [anon_sym_LBRACK2] = ACTIONS(827), + [anon_sym_TILDE] = ACTIONS(811), + [anon_sym_CARET] = ACTIONS(811), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_LT_DASH] = ACTIONS(831), + [sym_none] = ACTIONS(833), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_nil] = ACTIONS(833), + [anon_sym_if] = ACTIONS(835), + [anon_sym_DOLLARif] = ACTIONS(837), + [anon_sym_match] = ACTIONS(839), + [anon_sym_select] = ACTIONS(841), + [anon_sym_lock] = ACTIONS(843), + [anon_sym_rlock] = ACTIONS(843), + [anon_sym_unsafe] = ACTIONS(845), + [anon_sym_sql] = ACTIONS(847), + [sym_int_literal] = ACTIONS(833), + [sym_float_literal] = ACTIONS(849), + [sym_rune_literal] = ACTIONS(849), + [anon_sym_AT] = ACTIONS(851), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(853), + [sym___single_quote] = ACTIONS(855), + [sym___c_double_quote] = ACTIONS(857), + [sym___c_single_quote] = ACTIONS(859), + [sym___r_double_quote] = ACTIONS(861), + [sym___r_single_quote] = ACTIONS(863), }, [822] = { - [sym__expression] = STATE(961), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [sym__expression] = STATE(1663), + [sym__expression_without_blocks] = STATE(1820), + [sym__expression_with_blocks] = STATE(1820), + [sym_inc_expression] = STATE(1820), + [sym_dec_expression] = STATE(1820), + [sym_or_block_expression] = STATE(1820), + [sym_option_propagation_expression] = STATE(1820), + [sym_result_propagation_expression] = STATE(1820), + [sym_anon_struct_value_expression] = STATE(1814), + [sym_go_expression] = STATE(1820), + [sym_spawn_expression] = STATE(1820), + [sym_parenthesized_expression] = STATE(1820), + [sym_call_expression] = STATE(1820), + [sym_type_initializer] = STATE(1814), + [sym_function_literal] = STATE(1820), + [sym_reference_expression] = STATE(1813), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1820), + [sym_receive_expression] = STATE(1820), + [sym_binary_expression] = STATE(1820), + [sym_as_type_cast_expression] = STATE(1820), + [sym__max_group] = STATE(1820), + [sym_literal] = STATE(1820), + [sym_map_init_expression] = STATE(1814), + [sym_array_creation] = STATE(1820), + [sym_fixed_array_creation] = STATE(1820), + [sym_selector_expression] = STATE(1820), + [sym_index_expression] = STATE(1820), + [sym_slice_expression] = STATE(1820), + [sym_if_expression] = STATE(1814), + [sym_compile_time_if_expression] = STATE(1814), + [sym_is_expression] = STATE(1820), + [sym_not_is_expression] = STATE(1820), + [sym_in_expression] = STATE(1820), + [sym_not_in_expression] = STATE(1820), + [sym_enum_fetch] = STATE(1820), + [sym_match_expression] = STATE(1814), + [sym_select_expression] = STATE(1814), + [sym_lock_expression] = STATE(1814), + [sym_unsafe_expression] = STATE(1814), + [sym_sql_expression] = STATE(1814), + [sym_c_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_interpreted_string_literal] = STATE(1819), + [sym_pseudo_compile_time_identifier] = STATE(1820), + [sym_mutability_modifiers] = STATE(464), + [sym_plain_type] = STATE(4130), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2524), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_fn] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2534), + [anon_sym_STAR] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2538), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_go] = ACTIONS(2542), + [anon_sym_spawn] = ACTIONS(2544), + [anon_sym_json_DOTdecode] = ACTIONS(2546), + [anon_sym_LBRACK2] = ACTIONS(2548), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_CARET] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2550), + [anon_sym_LT_DASH] = ACTIONS(2552), + [sym_none] = ACTIONS(2554), + [sym_true] = ACTIONS(2554), + [sym_false] = ACTIONS(2554), + [sym_nil] = ACTIONS(2554), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_DOLLARif] = ACTIONS(2558), + [anon_sym_match] = ACTIONS(2560), + [anon_sym_select] = ACTIONS(2562), + [anon_sym_lock] = ACTIONS(2564), + [anon_sym_rlock] = ACTIONS(2564), + [anon_sym_unsafe] = ACTIONS(2566), + [anon_sym_sql] = ACTIONS(2568), + [sym_int_literal] = ACTIONS(2554), + [sym_float_literal] = ACTIONS(2570), + [sym_rune_literal] = ACTIONS(2570), + [anon_sym_AT] = ACTIONS(2572), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2574), + [sym___single_quote] = ACTIONS(2576), + [sym___c_double_quote] = ACTIONS(2578), + [sym___c_single_quote] = ACTIONS(2580), + [sym___r_double_quote] = ACTIONS(2582), + [sym___r_single_quote] = ACTIONS(2584), }, [823] = { - [sym__expression] = STATE(963), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4402), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [sym__expression] = STATE(2306), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2636), + [anon_sym_go] = ACTIONS(2638), + [anon_sym_spawn] = ACTIONS(2640), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_CARET] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2646), + [anon_sym_LT_DASH] = ACTIONS(2648), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2658), + [anon_sym_lock] = ACTIONS(2660), + [anon_sym_rlock] = ACTIONS(2660), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [824] = { - [sym__expression] = STATE(963), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4404), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [sym__expression] = STATE(2151), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2636), + [anon_sym_go] = ACTIONS(2638), + [anon_sym_spawn] = ACTIONS(2640), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_CARET] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2646), + [anon_sym_LT_DASH] = ACTIONS(2648), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2658), + [anon_sym_lock] = ACTIONS(2660), + [anon_sym_rlock] = ACTIONS(2660), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [825] = { - [sym__expression] = STATE(963), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), + [sym__expression] = STATE(970), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2108), + [anon_sym_go] = ACTIONS(513), + [anon_sym_spawn] = ACTIONS(515), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_LT_DASH] = ACTIONS(2116), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(533), + [anon_sym_lock] = ACTIONS(535), + [anon_sym_rlock] = ACTIONS(535), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [826] = { - [sym__expression] = STATE(1275), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(2669), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_go] = ACTIONS(1658), + [anon_sym_spawn] = ACTIONS(1660), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_LT_DASH] = ACTIONS(1666), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(1668), + [anon_sym_lock] = ACTIONS(1670), + [anon_sym_rlock] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [827] = { - [sym__expression] = STATE(2861), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2225), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [828] = { - [sym__expression] = STATE(1796), - [sym__expression_without_blocks] = STATE(2104), - [sym__expression_with_blocks] = STATE(2104), - [sym_inc_expression] = STATE(2104), - [sym_dec_expression] = STATE(2104), - [sym_or_block_expression] = STATE(2104), - [sym_option_propagation_expression] = STATE(2104), - [sym_result_propagation_expression] = STATE(2104), - [sym_anon_struct_value_expression] = STATE(2119), - [sym_go_expression] = STATE(2104), - [sym_spawn_expression] = STATE(2104), - [sym_parenthesized_expression] = STATE(2104), - [sym_call_expression] = STATE(2104), - [sym_type_initializer] = STATE(2119), - [sym_function_literal] = STATE(2104), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2104), - [sym_receive_expression] = STATE(2104), - [sym_binary_expression] = STATE(2104), - [sym_as_type_cast_expression] = STATE(2104), - [sym__max_group] = STATE(2104), - [sym_literal] = STATE(2104), - [sym_map_init_expression] = STATE(2119), - [sym_array_creation] = STATE(2104), - [sym_fixed_array_creation] = STATE(2104), - [sym_selector_expression] = STATE(2104), - [sym_index_expression] = STATE(2104), - [sym_slice_expression] = STATE(2104), - [sym_if_expression] = STATE(2119), - [sym_compile_time_if_expression] = STATE(2119), - [sym_is_expression] = STATE(2104), - [sym_not_is_expression] = STATE(2104), - [sym_in_expression] = STATE(2104), - [sym_not_in_expression] = STATE(2104), - [sym_enum_fetch] = STATE(2104), - [sym_match_expression] = STATE(2119), - [sym_select_expression] = STATE(2119), - [sym_lock_expression] = STATE(2119), - [sym_unsafe_expression] = STATE(2119), - [sym_sql_expression] = STATE(2119), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(2104), - [sym_mutability_modifiers] = STATE(835), - [sym_plain_type] = STATE(4201), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2706), + [sym__expression] = STATE(2225), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3671), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2720), - [anon_sym_rlock] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [829] = { - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), + [sym__expression] = STATE(2305), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2636), + [anon_sym_go] = ACTIONS(2638), + [anon_sym_spawn] = ACTIONS(2640), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_CARET] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2646), + [anon_sym_LT_DASH] = ACTIONS(2648), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2658), + [anon_sym_lock] = ACTIONS(2660), + [anon_sym_rlock] = ACTIONS(2660), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [830] = { - [sym__expression] = STATE(2860), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2304), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2636), + [anon_sym_go] = ACTIONS(2638), + [anon_sym_spawn] = ACTIONS(2640), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_CARET] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2646), + [anon_sym_LT_DASH] = ACTIONS(2648), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2658), + [anon_sym_lock] = ACTIONS(2660), + [anon_sym_rlock] = ACTIONS(2660), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [831] = { - [sym__expression] = STATE(1276), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(2326), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_go] = ACTIONS(1454), + [anon_sym_spawn] = ACTIONS(1456), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LT_DASH] = ACTIONS(1464), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(1474), + [anon_sym_lock] = ACTIONS(1476), + [anon_sym_rlock] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [832] = { - [sym__expression] = STATE(354), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4120), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), + [sym__expression] = STATE(2225), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_go] = ACTIONS(2068), + [anon_sym_spawn] = ACTIONS(2070), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_CARET] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_LT_DASH] = ACTIONS(2076), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2078), + [anon_sym_lock] = ACTIONS(2080), + [anon_sym_rlock] = ACTIONS(2080), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [833] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2934), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2994), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1242), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4248), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(945), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [834] = { - [sym__expression] = STATE(354), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), + [sym__expression] = STATE(2225), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3670), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [835] = { - [sym__expression] = STATE(2868), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2779), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [836] = { - [sym__expression] = STATE(2675), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3667), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2777), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [837] = { - [sym__expression] = STATE(2858), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(1133), + [sym__expression_without_blocks] = STATE(1249), + [sym__expression_with_blocks] = STATE(1249), + [sym_inc_expression] = STATE(1249), + [sym_dec_expression] = STATE(1249), + [sym_or_block_expression] = STATE(1249), + [sym_option_propagation_expression] = STATE(1249), + [sym_result_propagation_expression] = STATE(1249), + [sym_anon_struct_value_expression] = STATE(1251), + [sym_go_expression] = STATE(1249), + [sym_spawn_expression] = STATE(1249), + [sym_parenthesized_expression] = STATE(1249), + [sym_call_expression] = STATE(1249), + [sym_type_initializer] = STATE(1251), + [sym_function_literal] = STATE(1249), + [sym_reference_expression] = STATE(1242), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1249), + [sym_receive_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_as_type_cast_expression] = STATE(1249), + [sym__max_group] = STATE(1249), + [sym_literal] = STATE(1249), + [sym_map_init_expression] = STATE(1251), + [sym_array_creation] = STATE(1249), + [sym_fixed_array_creation] = STATE(1249), + [sym_selector_expression] = STATE(1249), + [sym_index_expression] = STATE(1249), + [sym_slice_expression] = STATE(1249), + [sym_if_expression] = STATE(1251), + [sym_compile_time_if_expression] = STATE(1251), + [sym_is_expression] = STATE(1249), + [sym_not_is_expression] = STATE(1249), + [sym_in_expression] = STATE(1249), + [sym_not_in_expression] = STATE(1249), + [sym_enum_fetch] = STATE(1249), + [sym_match_expression] = STATE(1251), + [sym_select_expression] = STATE(1251), + [sym_lock_expression] = STATE(1251), + [sym_unsafe_expression] = STATE(1251), + [sym_sql_expression] = STATE(1251), + [sym_c_string_literal] = STATE(1243), + [sym_raw_string_literal] = STATE(1243), + [sym_interpreted_string_literal] = STATE(1243), + [sym_pseudo_compile_time_identifier] = STATE(1249), + [sym_mutability_modifiers] = STATE(595), + [sym_plain_type] = STATE(4276), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(945), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_fn] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_go] = ACTIONS(651), + [anon_sym_spawn] = ACTIONS(653), + [anon_sym_json_DOTdecode] = ACTIONS(655), + [anon_sym_LBRACK2] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_LT_DASH] = ACTIONS(661), + [sym_none] = ACTIONS(663), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_nil] = ACTIONS(663), + [anon_sym_if] = ACTIONS(665), + [anon_sym_DOLLARif] = ACTIONS(667), + [anon_sym_match] = ACTIONS(669), + [anon_sym_select] = ACTIONS(671), + [anon_sym_lock] = ACTIONS(673), + [anon_sym_rlock] = ACTIONS(673), + [anon_sym_unsafe] = ACTIONS(675), + [anon_sym_sql] = ACTIONS(677), + [sym_int_literal] = ACTIONS(663), + [sym_float_literal] = ACTIONS(679), + [sym_rune_literal] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(683), + [sym___single_quote] = ACTIONS(685), + [sym___c_double_quote] = ACTIONS(687), + [sym___c_single_quote] = ACTIONS(689), + [sym___r_double_quote] = ACTIONS(691), + [sym___r_single_quote] = ACTIONS(693), }, [838] = { - [sym__expression] = STATE(2639), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(2303), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2636), + [anon_sym_go] = ACTIONS(2638), + [anon_sym_spawn] = ACTIONS(2640), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_CARET] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2646), + [anon_sym_LT_DASH] = ACTIONS(2648), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2658), + [anon_sym_lock] = ACTIONS(2660), + [anon_sym_rlock] = ACTIONS(2660), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [839] = { - [sym__expression] = STATE(1277), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(2301), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2636), + [anon_sym_go] = ACTIONS(2638), + [anon_sym_spawn] = ACTIONS(2640), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_CARET] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2646), + [anon_sym_LT_DASH] = ACTIONS(2648), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2658), + [anon_sym_lock] = ACTIONS(2660), + [anon_sym_rlock] = ACTIONS(2660), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [840] = { - [sym__expression] = STATE(2763), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3667), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), + [sym__expression] = STATE(2299), + [sym__expression_without_blocks] = STATE(2240), + [sym__expression_with_blocks] = STATE(2240), + [sym_inc_expression] = STATE(2240), + [sym_dec_expression] = STATE(2240), + [sym_or_block_expression] = STATE(2240), + [sym_option_propagation_expression] = STATE(2240), + [sym_result_propagation_expression] = STATE(2240), + [sym_anon_struct_value_expression] = STATE(2239), + [sym_go_expression] = STATE(2240), + [sym_spawn_expression] = STATE(2240), + [sym_parenthesized_expression] = STATE(2240), + [sym_call_expression] = STATE(2240), + [sym_type_initializer] = STATE(2239), + [sym_function_literal] = STATE(2240), + [sym_reference_expression] = STATE(2237), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2240), + [sym_receive_expression] = STATE(2240), + [sym_binary_expression] = STATE(2240), + [sym_as_type_cast_expression] = STATE(2240), + [sym__max_group] = STATE(2240), + [sym_literal] = STATE(2240), + [sym_map_init_expression] = STATE(2239), + [sym_array_creation] = STATE(2240), + [sym_fixed_array_creation] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym_index_expression] = STATE(2240), + [sym_slice_expression] = STATE(2240), + [sym_if_expression] = STATE(2239), + [sym_compile_time_if_expression] = STATE(2239), + [sym_is_expression] = STATE(2240), + [sym_not_is_expression] = STATE(2240), + [sym_in_expression] = STATE(2240), + [sym_not_in_expression] = STATE(2240), + [sym_enum_fetch] = STATE(2240), + [sym_match_expression] = STATE(2239), + [sym_select_expression] = STATE(2239), + [sym_lock_expression] = STATE(2239), + [sym_unsafe_expression] = STATE(2239), + [sym_sql_expression] = STATE(2239), + [sym_c_string_literal] = STATE(2251), + [sym_raw_string_literal] = STATE(2251), + [sym_interpreted_string_literal] = STATE(2251), + [sym_pseudo_compile_time_identifier] = STATE(2240), + [sym_mutability_modifiers] = STATE(582), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2620), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2628), + [anon_sym_PLUS] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2630), + [anon_sym_STAR] = ACTIONS(2632), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2636), + [anon_sym_go] = ACTIONS(2638), + [anon_sym_spawn] = ACTIONS(2640), + [anon_sym_json_DOTdecode] = ACTIONS(2642), + [anon_sym_LBRACK2] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2630), + [anon_sym_CARET] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2646), + [anon_sym_LT_DASH] = ACTIONS(2648), + [sym_none] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_nil] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2652), + [anon_sym_DOLLARif] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2656), + [anon_sym_select] = ACTIONS(2658), + [anon_sym_lock] = ACTIONS(2660), + [anon_sym_rlock] = ACTIONS(2660), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_sql] = ACTIONS(2664), + [sym_int_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2666), + [sym_rune_literal] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2670), + [sym___single_quote] = ACTIONS(2672), + [sym___c_double_quote] = ACTIONS(2674), + [sym___c_single_quote] = ACTIONS(2676), + [sym___r_double_quote] = ACTIONS(2678), + [sym___r_single_quote] = ACTIONS(2680), }, [841] = { - [sym__expression] = STATE(1785), - [sym__expression_without_blocks] = STATE(2104), - [sym__expression_with_blocks] = STATE(2104), - [sym_inc_expression] = STATE(2104), - [sym_dec_expression] = STATE(2104), - [sym_or_block_expression] = STATE(2104), - [sym_option_propagation_expression] = STATE(2104), - [sym_result_propagation_expression] = STATE(2104), - [sym_anon_struct_value_expression] = STATE(2119), - [sym_go_expression] = STATE(2104), - [sym_spawn_expression] = STATE(2104), - [sym_parenthesized_expression] = STATE(2104), - [sym_call_expression] = STATE(2104), - [sym_type_initializer] = STATE(2119), - [sym_function_literal] = STATE(2104), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2104), - [sym_receive_expression] = STATE(2104), - [sym_binary_expression] = STATE(2104), - [sym_as_type_cast_expression] = STATE(2104), - [sym__max_group] = STATE(2104), - [sym_literal] = STATE(2104), - [sym_map_init_expression] = STATE(2119), - [sym_array_creation] = STATE(2104), - [sym_fixed_array_creation] = STATE(2104), - [sym_selector_expression] = STATE(2104), - [sym_index_expression] = STATE(2104), - [sym_slice_expression] = STATE(2104), - [sym_if_expression] = STATE(2119), - [sym_compile_time_if_expression] = STATE(2119), - [sym_is_expression] = STATE(2104), - [sym_not_is_expression] = STATE(2104), - [sym_in_expression] = STATE(2104), - [sym_not_in_expression] = STATE(2104), - [sym_enum_fetch] = STATE(2104), - [sym_match_expression] = STATE(2119), - [sym_select_expression] = STATE(2119), - [sym_lock_expression] = STATE(2119), - [sym_unsafe_expression] = STATE(2119), - [sym_sql_expression] = STATE(2119), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(2104), - [sym_mutability_modifiers] = STATE(835), - [sym_plain_type] = STATE(4201), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2706), + [sym__expression] = STATE(2622), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2720), - [anon_sym_rlock] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_go] = ACTIONS(2068), + [anon_sym_spawn] = ACTIONS(2070), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_CARET] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_LT_DASH] = ACTIONS(2076), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2078), + [anon_sym_lock] = ACTIONS(2080), + [anon_sym_rlock] = ACTIONS(2080), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [842] = { - [sym__expression] = STATE(1278), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1175), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2598), + [anon_sym_go] = ACTIONS(2600), + [anon_sym_spawn] = ACTIONS(2602), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(2594), + [anon_sym_CARET] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2604), + [anon_sym_LT_DASH] = ACTIONS(2606), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(2608), + [anon_sym_lock] = ACTIONS(2610), + [anon_sym_rlock] = ACTIONS(2610), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [843] = { - [sym__expression] = STATE(2308), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), + [sym__expression] = STATE(2621), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(587), + [sym_plain_type] = STATE(4228), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_go] = ACTIONS(2068), + [anon_sym_spawn] = ACTIONS(2070), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(2072), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_CARET] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_LT_DASH] = ACTIONS(2076), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2078), + [anon_sym_lock] = ACTIONS(2080), + [anon_sym_rlock] = ACTIONS(2080), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [844] = { - [sym__expression] = STATE(1790), - [sym__expression_without_blocks] = STATE(2104), - [sym__expression_with_blocks] = STATE(2104), - [sym_inc_expression] = STATE(2104), - [sym_dec_expression] = STATE(2104), - [sym_or_block_expression] = STATE(2104), - [sym_option_propagation_expression] = STATE(2104), - [sym_result_propagation_expression] = STATE(2104), - [sym_anon_struct_value_expression] = STATE(2119), - [sym_go_expression] = STATE(2104), - [sym_spawn_expression] = STATE(2104), - [sym_parenthesized_expression] = STATE(2104), - [sym_call_expression] = STATE(2104), - [sym_type_initializer] = STATE(2119), - [sym_function_literal] = STATE(2104), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2104), - [sym_receive_expression] = STATE(2104), - [sym_binary_expression] = STATE(2104), - [sym_as_type_cast_expression] = STATE(2104), - [sym__max_group] = STATE(2104), - [sym_literal] = STATE(2104), - [sym_map_init_expression] = STATE(2119), - [sym_array_creation] = STATE(2104), - [sym_fixed_array_creation] = STATE(2104), - [sym_selector_expression] = STATE(2104), - [sym_index_expression] = STATE(2104), - [sym_slice_expression] = STATE(2104), - [sym_if_expression] = STATE(2119), - [sym_compile_time_if_expression] = STATE(2119), - [sym_is_expression] = STATE(2104), - [sym_not_is_expression] = STATE(2104), - [sym_in_expression] = STATE(2104), - [sym_not_in_expression] = STATE(2104), - [sym_enum_fetch] = STATE(2104), - [sym_match_expression] = STATE(2119), - [sym_select_expression] = STATE(2119), - [sym_lock_expression] = STATE(2119), - [sym_unsafe_expression] = STATE(2119), - [sym_sql_expression] = STATE(2119), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(2104), - [sym_mutability_modifiers] = STATE(835), - [sym_plain_type] = STATE(4201), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2706), + [sym__expression] = STATE(970), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4138), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2720), - [anon_sym_rlock] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2108), + [anon_sym_go] = ACTIONS(513), + [anon_sym_spawn] = ACTIONS(515), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_LT_DASH] = ACTIONS(2116), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(533), + [anon_sym_lock] = ACTIONS(535), + [anon_sym_rlock] = ACTIONS(535), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [845] = { - [sym__expression] = STATE(1795), - [sym__expression_without_blocks] = STATE(2104), - [sym__expression_with_blocks] = STATE(2104), - [sym_inc_expression] = STATE(2104), - [sym_dec_expression] = STATE(2104), - [sym_or_block_expression] = STATE(2104), - [sym_option_propagation_expression] = STATE(2104), - [sym_result_propagation_expression] = STATE(2104), - [sym_anon_struct_value_expression] = STATE(2119), - [sym_go_expression] = STATE(2104), - [sym_spawn_expression] = STATE(2104), - [sym_parenthesized_expression] = STATE(2104), - [sym_call_expression] = STATE(2104), - [sym_type_initializer] = STATE(2119), - [sym_function_literal] = STATE(2104), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2104), - [sym_receive_expression] = STATE(2104), - [sym_binary_expression] = STATE(2104), - [sym_as_type_cast_expression] = STATE(2104), - [sym__max_group] = STATE(2104), - [sym_literal] = STATE(2104), - [sym_map_init_expression] = STATE(2119), - [sym_array_creation] = STATE(2104), - [sym_fixed_array_creation] = STATE(2104), - [sym_selector_expression] = STATE(2104), - [sym_index_expression] = STATE(2104), - [sym_slice_expression] = STATE(2104), - [sym_if_expression] = STATE(2119), - [sym_compile_time_if_expression] = STATE(2119), - [sym_is_expression] = STATE(2104), - [sym_not_is_expression] = STATE(2104), - [sym_in_expression] = STATE(2104), - [sym_not_in_expression] = STATE(2104), - [sym_enum_fetch] = STATE(2104), - [sym_match_expression] = STATE(2119), - [sym_select_expression] = STATE(2119), - [sym_lock_expression] = STATE(2119), - [sym_unsafe_expression] = STATE(2119), - [sym_sql_expression] = STATE(2119), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(2104), - [sym_mutability_modifiers] = STATE(835), - [sym_plain_type] = STATE(4201), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2706), + [sym__expression] = STATE(2225), + [sym__expression_without_blocks] = STATE(2335), + [sym__expression_with_blocks] = STATE(2335), + [sym_inc_expression] = STATE(2335), + [sym_dec_expression] = STATE(2335), + [sym_or_block_expression] = STATE(2335), + [sym_option_propagation_expression] = STATE(2335), + [sym_result_propagation_expression] = STATE(2335), + [sym_anon_struct_value_expression] = STATE(2339), + [sym_go_expression] = STATE(2335), + [sym_spawn_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_type_initializer] = STATE(2339), + [sym_function_literal] = STATE(2335), + [sym_reference_expression] = STATE(2340), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2335), + [sym_receive_expression] = STATE(2335), + [sym_binary_expression] = STATE(2335), + [sym_as_type_cast_expression] = STATE(2335), + [sym__max_group] = STATE(2335), + [sym_literal] = STATE(2335), + [sym_map_init_expression] = STATE(2339), + [sym_array_creation] = STATE(2335), + [sym_fixed_array_creation] = STATE(2335), + [sym_selector_expression] = STATE(2335), + [sym_index_expression] = STATE(2335), + [sym_slice_expression] = STATE(2335), + [sym_if_expression] = STATE(2339), + [sym_compile_time_if_expression] = STATE(2339), + [sym_is_expression] = STATE(2335), + [sym_not_is_expression] = STATE(2335), + [sym_in_expression] = STATE(2335), + [sym_not_in_expression] = STATE(2335), + [sym_enum_fetch] = STATE(2335), + [sym_match_expression] = STATE(2339), + [sym_select_expression] = STATE(2339), + [sym_lock_expression] = STATE(2339), + [sym_unsafe_expression] = STATE(2339), + [sym_sql_expression] = STATE(2339), + [sym_c_string_literal] = STATE(2329), + [sym_raw_string_literal] = STATE(2329), + [sym_interpreted_string_literal] = STATE(2329), + [sym_pseudo_compile_time_identifier] = STATE(2335), + [sym_mutability_modifiers] = STATE(809), + [sym_plain_type] = STATE(3669), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2720), - [anon_sym_rlock] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_go] = ACTIONS(2406), + [anon_sym_spawn] = ACTIONS(2408), + [anon_sym_json_DOTdecode] = ACTIONS(1388), + [anon_sym_LBRACK2] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(2400), + [anon_sym_CARET] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_LT_DASH] = ACTIONS(2412), + [sym_none] = ACTIONS(1396), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_nil] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1640), + [anon_sym_DOLLARif] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1402), + [anon_sym_select] = ACTIONS(2414), + [anon_sym_lock] = ACTIONS(2416), + [anon_sym_rlock] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_sql] = ACTIONS(1410), + [sym_int_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1412), + [sym_rune_literal] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1418), + [sym___single_quote] = ACTIONS(1420), + [sym___c_double_quote] = ACTIONS(1422), + [sym___c_single_quote] = ACTIONS(1424), + [sym___r_double_quote] = ACTIONS(1426), + [sym___r_single_quote] = ACTIONS(1428), }, [846] = { - [sym__expression] = STATE(2204), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), + [sym__expression] = STATE(970), + [sym__expression_without_blocks] = STATE(1014), + [sym__expression_with_blocks] = STATE(1014), + [sym_inc_expression] = STATE(1014), + [sym_dec_expression] = STATE(1014), + [sym_or_block_expression] = STATE(1014), + [sym_option_propagation_expression] = STATE(1014), + [sym_result_propagation_expression] = STATE(1014), + [sym_anon_struct_value_expression] = STATE(1003), + [sym_go_expression] = STATE(1014), + [sym_spawn_expression] = STATE(1014), + [sym_parenthesized_expression] = STATE(1014), + [sym_call_expression] = STATE(1014), + [sym_type_initializer] = STATE(1003), + [sym_function_literal] = STATE(1014), + [sym_reference_expression] = STATE(1005), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(1014), + [sym_receive_expression] = STATE(1014), + [sym_binary_expression] = STATE(1014), + [sym_as_type_cast_expression] = STATE(1014), + [sym__max_group] = STATE(1014), + [sym_literal] = STATE(1014), + [sym_map_init_expression] = STATE(1003), + [sym_array_creation] = STATE(1014), + [sym_fixed_array_creation] = STATE(1014), + [sym_selector_expression] = STATE(1014), + [sym_index_expression] = STATE(1014), + [sym_slice_expression] = STATE(1014), + [sym_if_expression] = STATE(1003), + [sym_compile_time_if_expression] = STATE(1003), + [sym_is_expression] = STATE(1014), + [sym_not_is_expression] = STATE(1014), + [sym_in_expression] = STATE(1014), + [sym_not_in_expression] = STATE(1014), + [sym_enum_fetch] = STATE(1014), + [sym_match_expression] = STATE(1003), + [sym_select_expression] = STATE(1003), + [sym_lock_expression] = STATE(1003), + [sym_unsafe_expression] = STATE(1003), + [sym_sql_expression] = STATE(1003), + [sym_c_string_literal] = STATE(1013), + [sym_raw_string_literal] = STATE(1013), + [sym_interpreted_string_literal] = STATE(1013), + [sym_pseudo_compile_time_identifier] = STATE(1014), + [sym_mutability_modifiers] = STATE(626), + [sym_plain_type] = STATE(4190), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(489), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_struct] = ACTIONS(507), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2108), + [anon_sym_go] = ACTIONS(513), + [anon_sym_spawn] = ACTIONS(515), + [anon_sym_json_DOTdecode] = ACTIONS(2110), + [anon_sym_LBRACK2] = ACTIONS(2112), + [anon_sym_TILDE] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_LT_DASH] = ACTIONS(2116), + [sym_none] = ACTIONS(525), + [sym_true] = ACTIONS(525), + [sym_false] = ACTIONS(525), + [sym_nil] = ACTIONS(525), + [anon_sym_if] = ACTIONS(527), + [anon_sym_DOLLARif] = ACTIONS(529), + [anon_sym_match] = ACTIONS(531), + [anon_sym_select] = ACTIONS(533), + [anon_sym_lock] = ACTIONS(535), + [anon_sym_rlock] = ACTIONS(535), + [anon_sym_unsafe] = ACTIONS(537), + [anon_sym_sql] = ACTIONS(539), + [sym_int_literal] = ACTIONS(525), + [sym_float_literal] = ACTIONS(2118), + [sym_rune_literal] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(541), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2120), + [sym___single_quote] = ACTIONS(2122), + [sym___c_double_quote] = ACTIONS(2124), + [sym___c_single_quote] = ACTIONS(2126), + [sym___r_double_quote] = ACTIONS(2128), + [sym___r_single_quote] = ACTIONS(2130), }, [847] = { - [ts_builtin_sym_end] = ACTIONS(2782), - [sym_identifier] = ACTIONS(2784), - [anon_sym_LF] = ACTIONS(2784), - [anon_sym_CR] = ACTIONS(2784), - [anon_sym_CR_LF] = ACTIONS(2784), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2784), - [anon_sym_as] = ACTIONS(2784), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_COMMA] = ACTIONS(2784), - [anon_sym_const] = ACTIONS(2784), - [anon_sym_LPAREN] = ACTIONS(2784), - [anon_sym_EQ] = ACTIONS(2784), - [anon_sym___global] = ACTIONS(2784), - [anon_sym_type] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_fn] = ACTIONS(2784), - [anon_sym_PLUS] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_STAR] = ACTIONS(2784), - [anon_sym_SLASH] = ACTIONS(2784), - [anon_sym_PERCENT] = ACTIONS(2784), - [anon_sym_LT] = ACTIONS(2784), - [anon_sym_GT] = ACTIONS(2784), - [anon_sym_EQ_EQ] = ACTIONS(2784), - [anon_sym_BANG_EQ] = ACTIONS(2784), - [anon_sym_LT_EQ] = ACTIONS(2784), - [anon_sym_GT_EQ] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_struct] = ACTIONS(2784), - [anon_sym_union] = ACTIONS(2784), - [anon_sym_pub] = ACTIONS(2784), - [anon_sym_mut] = ACTIONS(2784), - [anon_sym_enum] = ACTIONS(2784), - [anon_sym_interface] = ACTIONS(2784), - [anon_sym_PLUS_PLUS] = ACTIONS(2784), - [anon_sym_DASH_DASH] = ACTIONS(2784), - [anon_sym_QMARK] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_go] = ACTIONS(2784), - [anon_sym_spawn] = ACTIONS(2784), - [anon_sym_json_DOTdecode] = ACTIONS(2784), - [anon_sym_LBRACK2] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2784), - [anon_sym_CARET] = ACTIONS(2784), - [anon_sym_AMP] = ACTIONS(2784), - [anon_sym_LT_DASH] = ACTIONS(2784), - [anon_sym_LT_LT] = ACTIONS(2784), - [anon_sym_GT_GT] = ACTIONS(2784), - [anon_sym_GT_GT_GT] = ACTIONS(2784), - [anon_sym_AMP_CARET] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_PIPE_PIPE] = ACTIONS(2784), - [anon_sym_or] = ACTIONS(2784), - [sym_none] = ACTIONS(2784), - [sym_true] = ACTIONS(2784), - [sym_false] = ACTIONS(2784), - [sym_nil] = ACTIONS(2784), - [anon_sym_QMARK_DOT] = ACTIONS(2784), - [anon_sym_POUND_LBRACK] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_DOLLARif] = ACTIONS(2784), - [anon_sym_is] = ACTIONS(2784), - [anon_sym_BANGis] = ACTIONS(2784), - [anon_sym_in] = ACTIONS(2784), - [anon_sym_BANGin] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_select] = ACTIONS(2784), - [anon_sym_STAR_EQ] = ACTIONS(2784), - [anon_sym_SLASH_EQ] = ACTIONS(2784), - [anon_sym_PERCENT_EQ] = ACTIONS(2784), - [anon_sym_LT_LT_EQ] = ACTIONS(2784), - [anon_sym_GT_GT_EQ] = ACTIONS(2784), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2784), - [anon_sym_AMP_EQ] = ACTIONS(2784), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2784), - [anon_sym_PLUS_EQ] = ACTIONS(2784), - [anon_sym_DASH_EQ] = ACTIONS(2784), - [anon_sym_PIPE_EQ] = ACTIONS(2784), - [anon_sym_CARET_EQ] = ACTIONS(2784), - [anon_sym_COLON_EQ] = ACTIONS(2784), - [anon_sym_lock] = ACTIONS(2784), - [anon_sym_rlock] = ACTIONS(2784), - [anon_sym_unsafe] = ACTIONS(2784), - [anon_sym_sql] = ACTIONS(2784), - [sym_int_literal] = ACTIONS(2784), - [sym_float_literal] = ACTIONS(2784), - [sym_rune_literal] = ACTIONS(2784), - [anon_sym_AT] = ACTIONS(2784), - [anon_sym_shared] = ACTIONS(2784), - [anon_sym_map_LBRACK] = ACTIONS(2784), - [anon_sym_chan] = ACTIONS(2784), - [anon_sym_thread] = ACTIONS(2784), - [anon_sym_atomic] = ACTIONS(2784), - [anon_sym_assert] = ACTIONS(2784), - [anon_sym_defer] = ACTIONS(2784), - [anon_sym_goto] = ACTIONS(2784), - [anon_sym_break] = ACTIONS(2784), - [anon_sym_continue] = ACTIONS(2784), - [anon_sym_return] = ACTIONS(2784), - [anon_sym_DOLLARfor] = ACTIONS(2784), - [anon_sym_for] = ACTIONS(2784), - [anon_sym_POUND] = ACTIONS(2784), - [anon_sym_asm] = ACTIONS(2784), - [anon_sym_AT_LBRACK] = ACTIONS(2784), - [sym___double_quote] = ACTIONS(2784), - [sym___single_quote] = ACTIONS(2784), - [sym___c_double_quote] = ACTIONS(2784), - [sym___c_single_quote] = ACTIONS(2784), - [sym___r_double_quote] = ACTIONS(2784), - [sym___r_single_quote] = ACTIONS(2784), + [sym__expression] = STATE(2499), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4014), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_STAR] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_go] = ACTIONS(2440), + [anon_sym_spawn] = ACTIONS(2442), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_LT_DASH] = ACTIONS(2446), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2448), + [anon_sym_lock] = ACTIONS(2450), + [anon_sym_rlock] = ACTIONS(2450), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [848] = { - [ts_builtin_sym_end] = ACTIONS(2786), - [sym_identifier] = ACTIONS(2788), - [anon_sym_LF] = ACTIONS(2788), - [anon_sym_CR] = ACTIONS(2788), - [anon_sym_CR_LF] = ACTIONS(2788), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2788), - [anon_sym_as] = ACTIONS(2788), - [anon_sym_LBRACE] = ACTIONS(2788), - [anon_sym_COMMA] = ACTIONS(2788), - [anon_sym_const] = ACTIONS(2788), - [anon_sym_LPAREN] = ACTIONS(2788), - [anon_sym_EQ] = ACTIONS(2788), - [anon_sym___global] = ACTIONS(2788), - [anon_sym_type] = ACTIONS(2788), - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_fn] = ACTIONS(2788), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_STAR] = ACTIONS(2788), - [anon_sym_SLASH] = ACTIONS(2788), - [anon_sym_PERCENT] = ACTIONS(2788), - [anon_sym_LT] = ACTIONS(2788), - [anon_sym_GT] = ACTIONS(2788), - [anon_sym_EQ_EQ] = ACTIONS(2788), - [anon_sym_BANG_EQ] = ACTIONS(2788), - [anon_sym_LT_EQ] = ACTIONS(2788), - [anon_sym_GT_EQ] = ACTIONS(2788), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2788), - [anon_sym_union] = ACTIONS(2788), - [anon_sym_pub] = ACTIONS(2788), - [anon_sym_mut] = ACTIONS(2788), - [anon_sym_enum] = ACTIONS(2788), - [anon_sym_interface] = ACTIONS(2788), - [anon_sym_PLUS_PLUS] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2788), - [anon_sym_QMARK] = ACTIONS(2788), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_go] = ACTIONS(2788), - [anon_sym_spawn] = ACTIONS(2788), - [anon_sym_json_DOTdecode] = ACTIONS(2788), - [anon_sym_LBRACK2] = ACTIONS(2788), - [anon_sym_TILDE] = ACTIONS(2788), - [anon_sym_CARET] = ACTIONS(2788), - [anon_sym_AMP] = ACTIONS(2788), - [anon_sym_LT_DASH] = ACTIONS(2788), - [anon_sym_LT_LT] = ACTIONS(2788), - [anon_sym_GT_GT] = ACTIONS(2788), - [anon_sym_GT_GT_GT] = ACTIONS(2788), - [anon_sym_AMP_CARET] = ACTIONS(2788), - [anon_sym_AMP_AMP] = ACTIONS(2788), - [anon_sym_PIPE_PIPE] = ACTIONS(2788), - [anon_sym_or] = ACTIONS(2788), - [sym_none] = ACTIONS(2788), - [sym_true] = ACTIONS(2788), - [sym_false] = ACTIONS(2788), - [sym_nil] = ACTIONS(2788), - [anon_sym_QMARK_DOT] = ACTIONS(2788), - [anon_sym_POUND_LBRACK] = ACTIONS(2788), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_DOLLARif] = ACTIONS(2788), - [anon_sym_is] = ACTIONS(2788), - [anon_sym_BANGis] = ACTIONS(2788), - [anon_sym_in] = ACTIONS(2788), - [anon_sym_BANGin] = ACTIONS(2788), - [anon_sym_match] = ACTIONS(2788), - [anon_sym_select] = ACTIONS(2788), - [anon_sym_STAR_EQ] = ACTIONS(2788), - [anon_sym_SLASH_EQ] = ACTIONS(2788), - [anon_sym_PERCENT_EQ] = ACTIONS(2788), - [anon_sym_LT_LT_EQ] = ACTIONS(2788), - [anon_sym_GT_GT_EQ] = ACTIONS(2788), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2788), - [anon_sym_AMP_EQ] = ACTIONS(2788), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2788), - [anon_sym_PLUS_EQ] = ACTIONS(2788), - [anon_sym_DASH_EQ] = ACTIONS(2788), - [anon_sym_PIPE_EQ] = ACTIONS(2788), - [anon_sym_CARET_EQ] = ACTIONS(2788), - [anon_sym_COLON_EQ] = ACTIONS(2788), - [anon_sym_lock] = ACTIONS(2788), - [anon_sym_rlock] = ACTIONS(2788), - [anon_sym_unsafe] = ACTIONS(2788), - [anon_sym_sql] = ACTIONS(2788), - [sym_int_literal] = ACTIONS(2788), - [sym_float_literal] = ACTIONS(2788), - [sym_rune_literal] = ACTIONS(2788), - [anon_sym_AT] = ACTIONS(2788), - [anon_sym_shared] = ACTIONS(2788), - [anon_sym_map_LBRACK] = ACTIONS(2788), - [anon_sym_chan] = ACTIONS(2788), - [anon_sym_thread] = ACTIONS(2788), - [anon_sym_atomic] = ACTIONS(2788), - [anon_sym_assert] = ACTIONS(2788), - [anon_sym_defer] = ACTIONS(2788), - [anon_sym_goto] = ACTIONS(2788), - [anon_sym_break] = ACTIONS(2788), - [anon_sym_continue] = ACTIONS(2788), - [anon_sym_return] = ACTIONS(2788), - [anon_sym_DOLLARfor] = ACTIONS(2788), - [anon_sym_for] = ACTIONS(2788), - [anon_sym_POUND] = ACTIONS(2788), - [anon_sym_asm] = ACTIONS(2788), - [anon_sym_AT_LBRACK] = ACTIONS(2788), - [sym___double_quote] = ACTIONS(2788), - [sym___single_quote] = ACTIONS(2788), - [sym___c_double_quote] = ACTIONS(2788), - [sym___c_single_quote] = ACTIONS(2788), - [sym___r_double_quote] = ACTIONS(2788), - [sym___r_single_quote] = ACTIONS(2788), + [sym__expression] = STATE(2557), + [sym__expression_without_blocks] = STATE(2583), + [sym__expression_with_blocks] = STATE(2583), + [sym_inc_expression] = STATE(2583), + [sym_dec_expression] = STATE(2583), + [sym_or_block_expression] = STATE(2583), + [sym_option_propagation_expression] = STATE(2583), + [sym_result_propagation_expression] = STATE(2583), + [sym_anon_struct_value_expression] = STATE(2584), + [sym_go_expression] = STATE(2583), + [sym_spawn_expression] = STATE(2583), + [sym_parenthesized_expression] = STATE(2583), + [sym_call_expression] = STATE(2583), + [sym_type_initializer] = STATE(2584), + [sym_function_literal] = STATE(2583), + [sym_reference_expression] = STATE(2497), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2583), + [sym_receive_expression] = STATE(2583), + [sym_binary_expression] = STATE(2583), + [sym_as_type_cast_expression] = STATE(2583), + [sym__max_group] = STATE(2583), + [sym_literal] = STATE(2583), + [sym_map_init_expression] = STATE(2584), + [sym_array_creation] = STATE(2583), + [sym_fixed_array_creation] = STATE(2583), + [sym_selector_expression] = STATE(2583), + [sym_index_expression] = STATE(2583), + [sym_slice_expression] = STATE(2583), + [sym_if_expression] = STATE(2584), + [sym_compile_time_if_expression] = STATE(2584), + [sym_is_expression] = STATE(2583), + [sym_not_is_expression] = STATE(2583), + [sym_in_expression] = STATE(2583), + [sym_not_in_expression] = STATE(2583), + [sym_enum_fetch] = STATE(2583), + [sym_match_expression] = STATE(2584), + [sym_select_expression] = STATE(2584), + [sym_lock_expression] = STATE(2584), + [sym_unsafe_expression] = STATE(2584), + [sym_sql_expression] = STATE(2584), + [sym_c_string_literal] = STATE(2496), + [sym_raw_string_literal] = STATE(2496), + [sym_interpreted_string_literal] = STATE(2496), + [sym_pseudo_compile_time_identifier] = STATE(2583), + [sym_mutability_modifiers] = STATE(599), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1432), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(2594), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2598), + [anon_sym_go] = ACTIONS(2600), + [anon_sym_spawn] = ACTIONS(2602), + [anon_sym_json_DOTdecode] = ACTIONS(1458), + [anon_sym_LBRACK2] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(2594), + [anon_sym_CARET] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2604), + [anon_sym_LT_DASH] = ACTIONS(2606), + [sym_none] = ACTIONS(1466), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [sym_nil] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_DOLLARif] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_select] = ACTIONS(2608), + [anon_sym_lock] = ACTIONS(2610), + [anon_sym_rlock] = ACTIONS(2610), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_sql] = ACTIONS(1480), + [sym_int_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1482), + [sym_rune_literal] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1486), + [sym___single_quote] = ACTIONS(1488), + [sym___c_double_quote] = ACTIONS(1490), + [sym___c_single_quote] = ACTIONS(1492), + [sym___r_double_quote] = ACTIONS(1494), + [sym___r_single_quote] = ACTIONS(1496), }, [849] = { - [ts_builtin_sym_end] = ACTIONS(2790), - [sym_identifier] = ACTIONS(2792), - [anon_sym_LF] = ACTIONS(2792), - [anon_sym_CR] = ACTIONS(2792), - [anon_sym_CR_LF] = ACTIONS(2792), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2792), - [anon_sym_as] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_COMMA] = ACTIONS(2792), - [anon_sym_const] = ACTIONS(2792), - [anon_sym_LPAREN] = ACTIONS(2792), - [anon_sym_EQ] = ACTIONS(2792), - [anon_sym___global] = ACTIONS(2792), - [anon_sym_type] = ACTIONS(2792), - [anon_sym_PIPE] = ACTIONS(2792), - [anon_sym_fn] = ACTIONS(2792), - [anon_sym_PLUS] = ACTIONS(2792), - [anon_sym_DASH] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(2792), - [anon_sym_SLASH] = ACTIONS(2792), - [anon_sym_PERCENT] = ACTIONS(2792), - [anon_sym_LT] = ACTIONS(2792), - [anon_sym_GT] = ACTIONS(2792), - [anon_sym_EQ_EQ] = ACTIONS(2792), - [anon_sym_BANG_EQ] = ACTIONS(2792), - [anon_sym_LT_EQ] = ACTIONS(2792), - [anon_sym_GT_EQ] = ACTIONS(2792), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_struct] = ACTIONS(2792), - [anon_sym_union] = ACTIONS(2792), - [anon_sym_pub] = ACTIONS(2792), - [anon_sym_mut] = ACTIONS(2792), - [anon_sym_enum] = ACTIONS(2792), - [anon_sym_interface] = ACTIONS(2792), - [anon_sym_PLUS_PLUS] = ACTIONS(2792), - [anon_sym_DASH_DASH] = ACTIONS(2792), - [anon_sym_QMARK] = ACTIONS(2792), - [anon_sym_BANG] = ACTIONS(2792), - [anon_sym_go] = ACTIONS(2792), - [anon_sym_spawn] = ACTIONS(2792), - [anon_sym_json_DOTdecode] = ACTIONS(2792), - [anon_sym_LBRACK2] = ACTIONS(2792), - [anon_sym_TILDE] = ACTIONS(2792), - [anon_sym_CARET] = ACTIONS(2792), - [anon_sym_AMP] = ACTIONS(2792), - [anon_sym_LT_DASH] = ACTIONS(2792), - [anon_sym_LT_LT] = ACTIONS(2792), - [anon_sym_GT_GT] = ACTIONS(2792), - [anon_sym_GT_GT_GT] = ACTIONS(2792), - [anon_sym_AMP_CARET] = ACTIONS(2792), - [anon_sym_AMP_AMP] = ACTIONS(2792), - [anon_sym_PIPE_PIPE] = ACTIONS(2792), - [anon_sym_or] = ACTIONS(2792), - [sym_none] = ACTIONS(2792), - [sym_true] = ACTIONS(2792), - [sym_false] = ACTIONS(2792), - [sym_nil] = ACTIONS(2792), - [anon_sym_QMARK_DOT] = ACTIONS(2792), - [anon_sym_POUND_LBRACK] = ACTIONS(2792), - [anon_sym_if] = ACTIONS(2792), - [anon_sym_DOLLARif] = ACTIONS(2792), - [anon_sym_is] = ACTIONS(2792), - [anon_sym_BANGis] = ACTIONS(2792), - [anon_sym_in] = ACTIONS(2792), - [anon_sym_BANGin] = ACTIONS(2792), - [anon_sym_match] = ACTIONS(2792), - [anon_sym_select] = ACTIONS(2792), - [anon_sym_STAR_EQ] = ACTIONS(2792), - [anon_sym_SLASH_EQ] = ACTIONS(2792), - [anon_sym_PERCENT_EQ] = ACTIONS(2792), - [anon_sym_LT_LT_EQ] = ACTIONS(2792), - [anon_sym_GT_GT_EQ] = ACTIONS(2792), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2792), - [anon_sym_AMP_EQ] = ACTIONS(2792), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2792), - [anon_sym_PLUS_EQ] = ACTIONS(2792), - [anon_sym_DASH_EQ] = ACTIONS(2792), - [anon_sym_PIPE_EQ] = ACTIONS(2792), - [anon_sym_CARET_EQ] = ACTIONS(2792), - [anon_sym_COLON_EQ] = ACTIONS(2792), - [anon_sym_lock] = ACTIONS(2792), - [anon_sym_rlock] = ACTIONS(2792), - [anon_sym_unsafe] = ACTIONS(2792), - [anon_sym_sql] = ACTIONS(2792), - [sym_int_literal] = ACTIONS(2792), - [sym_float_literal] = ACTIONS(2792), - [sym_rune_literal] = ACTIONS(2792), - [anon_sym_AT] = ACTIONS(2792), - [anon_sym_shared] = ACTIONS(2792), - [anon_sym_map_LBRACK] = ACTIONS(2792), - [anon_sym_chan] = ACTIONS(2792), - [anon_sym_thread] = ACTIONS(2792), - [anon_sym_atomic] = ACTIONS(2792), - [anon_sym_assert] = ACTIONS(2792), - [anon_sym_defer] = ACTIONS(2792), - [anon_sym_goto] = ACTIONS(2792), - [anon_sym_break] = ACTIONS(2792), - [anon_sym_continue] = ACTIONS(2792), - [anon_sym_return] = ACTIONS(2792), - [anon_sym_DOLLARfor] = ACTIONS(2792), - [anon_sym_for] = ACTIONS(2792), - [anon_sym_POUND] = ACTIONS(2792), - [anon_sym_asm] = ACTIONS(2792), - [anon_sym_AT_LBRACK] = ACTIONS(2792), - [sym___double_quote] = ACTIONS(2792), - [sym___single_quote] = ACTIONS(2792), - [sym___c_double_quote] = ACTIONS(2792), - [sym___c_single_quote] = ACTIONS(2792), - [sym___r_double_quote] = ACTIONS(2792), - [sym___r_single_quote] = ACTIONS(2792), + [sym__expression] = STATE(2499), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4019), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_STAR] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_go] = ACTIONS(2440), + [anon_sym_spawn] = ACTIONS(2442), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_LT_DASH] = ACTIONS(2446), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2448), + [anon_sym_lock] = ACTIONS(2450), + [anon_sym_rlock] = ACTIONS(2450), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [850] = { - [ts_builtin_sym_end] = ACTIONS(2794), - [sym_identifier] = ACTIONS(2796), - [anon_sym_LF] = ACTIONS(2796), - [anon_sym_CR] = ACTIONS(2796), - [anon_sym_CR_LF] = ACTIONS(2796), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2796), - [anon_sym_as] = ACTIONS(2796), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_COMMA] = ACTIONS(2796), - [anon_sym_const] = ACTIONS(2796), - [anon_sym_LPAREN] = ACTIONS(2796), - [anon_sym_EQ] = ACTIONS(2796), - [anon_sym___global] = ACTIONS(2796), - [anon_sym_type] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(2796), - [anon_sym_fn] = ACTIONS(2796), - [anon_sym_PLUS] = ACTIONS(2796), - [anon_sym_DASH] = ACTIONS(2796), - [anon_sym_STAR] = ACTIONS(2796), - [anon_sym_SLASH] = ACTIONS(2796), - [anon_sym_PERCENT] = ACTIONS(2796), - [anon_sym_LT] = ACTIONS(2796), - [anon_sym_GT] = ACTIONS(2796), - [anon_sym_EQ_EQ] = ACTIONS(2796), - [anon_sym_BANG_EQ] = ACTIONS(2796), - [anon_sym_LT_EQ] = ACTIONS(2796), - [anon_sym_GT_EQ] = ACTIONS(2796), - [anon_sym_LBRACK] = ACTIONS(2794), - [anon_sym_struct] = ACTIONS(2796), - [anon_sym_union] = ACTIONS(2796), - [anon_sym_pub] = ACTIONS(2796), - [anon_sym_mut] = ACTIONS(2796), - [anon_sym_enum] = ACTIONS(2796), - [anon_sym_interface] = ACTIONS(2796), - [anon_sym_PLUS_PLUS] = ACTIONS(2796), - [anon_sym_DASH_DASH] = ACTIONS(2796), - [anon_sym_QMARK] = ACTIONS(2796), - [anon_sym_BANG] = ACTIONS(2796), - [anon_sym_go] = ACTIONS(2796), - [anon_sym_spawn] = ACTIONS(2796), - [anon_sym_json_DOTdecode] = ACTIONS(2796), - [anon_sym_LBRACK2] = ACTIONS(2796), - [anon_sym_TILDE] = ACTIONS(2796), - [anon_sym_CARET] = ACTIONS(2796), - [anon_sym_AMP] = ACTIONS(2796), - [anon_sym_LT_DASH] = ACTIONS(2796), - [anon_sym_LT_LT] = ACTIONS(2796), - [anon_sym_GT_GT] = ACTIONS(2796), - [anon_sym_GT_GT_GT] = ACTIONS(2796), - [anon_sym_AMP_CARET] = ACTIONS(2796), - [anon_sym_AMP_AMP] = ACTIONS(2796), - [anon_sym_PIPE_PIPE] = ACTIONS(2796), - [anon_sym_or] = ACTIONS(2796), - [sym_none] = ACTIONS(2796), - [sym_true] = ACTIONS(2796), - [sym_false] = ACTIONS(2796), - [sym_nil] = ACTIONS(2796), - [anon_sym_QMARK_DOT] = ACTIONS(2796), - [anon_sym_POUND_LBRACK] = ACTIONS(2796), - [anon_sym_if] = ACTIONS(2796), - [anon_sym_DOLLARif] = ACTIONS(2796), - [anon_sym_is] = ACTIONS(2796), - [anon_sym_BANGis] = ACTIONS(2796), - [anon_sym_in] = ACTIONS(2796), - [anon_sym_BANGin] = ACTIONS(2796), - [anon_sym_match] = ACTIONS(2796), - [anon_sym_select] = ACTIONS(2796), - [anon_sym_STAR_EQ] = ACTIONS(2796), - [anon_sym_SLASH_EQ] = ACTIONS(2796), - [anon_sym_PERCENT_EQ] = ACTIONS(2796), - [anon_sym_LT_LT_EQ] = ACTIONS(2796), - [anon_sym_GT_GT_EQ] = ACTIONS(2796), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2796), - [anon_sym_AMP_EQ] = ACTIONS(2796), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2796), - [anon_sym_PLUS_EQ] = ACTIONS(2796), - [anon_sym_DASH_EQ] = ACTIONS(2796), - [anon_sym_PIPE_EQ] = ACTIONS(2796), - [anon_sym_CARET_EQ] = ACTIONS(2796), - [anon_sym_COLON_EQ] = ACTIONS(2796), - [anon_sym_lock] = ACTIONS(2796), - [anon_sym_rlock] = ACTIONS(2796), - [anon_sym_unsafe] = ACTIONS(2796), - [anon_sym_sql] = ACTIONS(2796), - [sym_int_literal] = ACTIONS(2796), - [sym_float_literal] = ACTIONS(2796), - [sym_rune_literal] = ACTIONS(2796), - [anon_sym_AT] = ACTIONS(2796), - [anon_sym_shared] = ACTIONS(2796), - [anon_sym_map_LBRACK] = ACTIONS(2796), - [anon_sym_chan] = ACTIONS(2796), - [anon_sym_thread] = ACTIONS(2796), - [anon_sym_atomic] = ACTIONS(2796), - [anon_sym_assert] = ACTIONS(2796), - [anon_sym_defer] = ACTIONS(2796), - [anon_sym_goto] = ACTIONS(2796), - [anon_sym_break] = ACTIONS(2796), - [anon_sym_continue] = ACTIONS(2796), - [anon_sym_return] = ACTIONS(2796), - [anon_sym_DOLLARfor] = ACTIONS(2796), - [anon_sym_for] = ACTIONS(2796), - [anon_sym_POUND] = ACTIONS(2796), - [anon_sym_asm] = ACTIONS(2796), - [anon_sym_AT_LBRACK] = ACTIONS(2796), - [sym___double_quote] = ACTIONS(2796), - [sym___single_quote] = ACTIONS(2796), - [sym___c_double_quote] = ACTIONS(2796), - [sym___c_single_quote] = ACTIONS(2796), - [sym___r_double_quote] = ACTIONS(2796), - [sym___r_single_quote] = ACTIONS(2796), + [sym__expression] = STATE(2499), + [sym__expression_without_blocks] = STATE(2760), + [sym__expression_with_blocks] = STATE(2760), + [sym_inc_expression] = STATE(2760), + [sym_dec_expression] = STATE(2760), + [sym_or_block_expression] = STATE(2760), + [sym_option_propagation_expression] = STATE(2760), + [sym_result_propagation_expression] = STATE(2760), + [sym_anon_struct_value_expression] = STATE(2757), + [sym_go_expression] = STATE(2760), + [sym_spawn_expression] = STATE(2760), + [sym_parenthesized_expression] = STATE(2760), + [sym_call_expression] = STATE(2760), + [sym_type_initializer] = STATE(2757), + [sym_function_literal] = STATE(2760), + [sym_reference_expression] = STATE(2723), + [sym_type_reference_expression] = STATE(3547), + [sym_unary_expression] = STATE(2760), + [sym_receive_expression] = STATE(2760), + [sym_binary_expression] = STATE(2760), + [sym_as_type_cast_expression] = STATE(2760), + [sym__max_group] = STATE(2760), + [sym_literal] = STATE(2760), + [sym_map_init_expression] = STATE(2757), + [sym_array_creation] = STATE(2760), + [sym_fixed_array_creation] = STATE(2760), + [sym_selector_expression] = STATE(2760), + [sym_index_expression] = STATE(2760), + [sym_slice_expression] = STATE(2760), + [sym_if_expression] = STATE(2757), + [sym_compile_time_if_expression] = STATE(2757), + [sym_is_expression] = STATE(2760), + [sym_not_is_expression] = STATE(2760), + [sym_in_expression] = STATE(2760), + [sym_not_in_expression] = STATE(2760), + [sym_enum_fetch] = STATE(2760), + [sym_match_expression] = STATE(2757), + [sym_select_expression] = STATE(2757), + [sym_lock_expression] = STATE(2757), + [sym_unsafe_expression] = STATE(2757), + [sym_sql_expression] = STATE(2757), + [sym_c_string_literal] = STATE(2705), + [sym_raw_string_literal] = STATE(2705), + [sym_interpreted_string_literal] = STATE(2705), + [sym_pseudo_compile_time_identifier] = STATE(2760), + [sym_mutability_modifiers] = STATE(525), + [sym_plain_type] = STATE(4021), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(1648), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_STAR] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(1107), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_go] = ACTIONS(2440), + [anon_sym_spawn] = ACTIONS(2442), + [anon_sym_json_DOTdecode] = ACTIONS(1115), + [anon_sym_LBRACK2] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_LT_DASH] = ACTIONS(2446), + [sym_none] = ACTIONS(1123), + [sym_true] = ACTIONS(1123), + [sym_false] = ACTIONS(1123), + [sym_nil] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_DOLLARif] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_select] = ACTIONS(2448), + [anon_sym_lock] = ACTIONS(2450), + [anon_sym_rlock] = ACTIONS(2450), + [anon_sym_unsafe] = ACTIONS(1137), + [anon_sym_sql] = ACTIONS(1139), + [sym_int_literal] = ACTIONS(1123), + [sym_float_literal] = ACTIONS(1141), + [sym_rune_literal] = ACTIONS(1141), + [anon_sym_AT] = ACTIONS(1143), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1145), + [sym___single_quote] = ACTIONS(1147), + [sym___c_double_quote] = ACTIONS(1149), + [sym___c_single_quote] = ACTIONS(1151), + [sym___r_double_quote] = ACTIONS(1153), + [sym___r_single_quote] = ACTIONS(1155), }, [851] = { - [ts_builtin_sym_end] = ACTIONS(2798), - [sym_identifier] = ACTIONS(2800), - [anon_sym_LF] = ACTIONS(2800), - [anon_sym_CR] = ACTIONS(2800), - [anon_sym_CR_LF] = ACTIONS(2800), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2800), - [anon_sym_as] = ACTIONS(2800), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_COMMA] = ACTIONS(2800), - [anon_sym_const] = ACTIONS(2800), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_EQ] = ACTIONS(2800), - [anon_sym___global] = ACTIONS(2800), - [anon_sym_type] = ACTIONS(2800), - [anon_sym_PIPE] = ACTIONS(2800), - [anon_sym_fn] = ACTIONS(2800), - [anon_sym_PLUS] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(2800), - [anon_sym_STAR] = ACTIONS(2800), - [anon_sym_SLASH] = ACTIONS(2800), - [anon_sym_PERCENT] = ACTIONS(2800), - [anon_sym_LT] = ACTIONS(2800), - [anon_sym_GT] = ACTIONS(2800), - [anon_sym_EQ_EQ] = ACTIONS(2800), - [anon_sym_BANG_EQ] = ACTIONS(2800), - [anon_sym_LT_EQ] = ACTIONS(2800), - [anon_sym_GT_EQ] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2798), - [anon_sym_struct] = ACTIONS(2800), - [anon_sym_union] = ACTIONS(2800), - [anon_sym_pub] = ACTIONS(2800), - [anon_sym_mut] = ACTIONS(2800), - [anon_sym_enum] = ACTIONS(2800), - [anon_sym_interface] = ACTIONS(2800), - [anon_sym_PLUS_PLUS] = ACTIONS(2800), - [anon_sym_DASH_DASH] = ACTIONS(2800), - [anon_sym_QMARK] = ACTIONS(2800), - [anon_sym_BANG] = ACTIONS(2800), - [anon_sym_go] = ACTIONS(2800), - [anon_sym_spawn] = ACTIONS(2800), - [anon_sym_json_DOTdecode] = ACTIONS(2800), - [anon_sym_LBRACK2] = ACTIONS(2800), - [anon_sym_TILDE] = ACTIONS(2800), - [anon_sym_CARET] = ACTIONS(2800), - [anon_sym_AMP] = ACTIONS(2800), - [anon_sym_LT_DASH] = ACTIONS(2800), - [anon_sym_LT_LT] = ACTIONS(2800), - [anon_sym_GT_GT] = ACTIONS(2800), - [anon_sym_GT_GT_GT] = ACTIONS(2800), - [anon_sym_AMP_CARET] = ACTIONS(2800), - [anon_sym_AMP_AMP] = ACTIONS(2800), - [anon_sym_PIPE_PIPE] = ACTIONS(2800), - [anon_sym_or] = ACTIONS(2800), - [sym_none] = ACTIONS(2800), - [sym_true] = ACTIONS(2800), - [sym_false] = ACTIONS(2800), - [sym_nil] = ACTIONS(2800), - [anon_sym_QMARK_DOT] = ACTIONS(2800), - [anon_sym_POUND_LBRACK] = ACTIONS(2800), - [anon_sym_if] = ACTIONS(2800), - [anon_sym_DOLLARif] = ACTIONS(2800), - [anon_sym_is] = ACTIONS(2800), - [anon_sym_BANGis] = ACTIONS(2800), - [anon_sym_in] = ACTIONS(2800), - [anon_sym_BANGin] = ACTIONS(2800), - [anon_sym_match] = ACTIONS(2800), - [anon_sym_select] = ACTIONS(2800), - [anon_sym_STAR_EQ] = ACTIONS(2800), - [anon_sym_SLASH_EQ] = ACTIONS(2800), - [anon_sym_PERCENT_EQ] = ACTIONS(2800), - [anon_sym_LT_LT_EQ] = ACTIONS(2800), - [anon_sym_GT_GT_EQ] = ACTIONS(2800), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2800), - [anon_sym_AMP_EQ] = ACTIONS(2800), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2800), - [anon_sym_PLUS_EQ] = ACTIONS(2800), - [anon_sym_DASH_EQ] = ACTIONS(2800), - [anon_sym_PIPE_EQ] = ACTIONS(2800), - [anon_sym_CARET_EQ] = ACTIONS(2800), - [anon_sym_COLON_EQ] = ACTIONS(2800), - [anon_sym_lock] = ACTIONS(2800), - [anon_sym_rlock] = ACTIONS(2800), - [anon_sym_unsafe] = ACTIONS(2800), - [anon_sym_sql] = ACTIONS(2800), - [sym_int_literal] = ACTIONS(2800), - [sym_float_literal] = ACTIONS(2800), - [sym_rune_literal] = ACTIONS(2800), - [anon_sym_AT] = ACTIONS(2800), - [anon_sym_shared] = ACTIONS(2800), - [anon_sym_map_LBRACK] = ACTIONS(2800), - [anon_sym_chan] = ACTIONS(2800), - [anon_sym_thread] = ACTIONS(2800), - [anon_sym_atomic] = ACTIONS(2800), - [anon_sym_assert] = ACTIONS(2800), - [anon_sym_defer] = ACTIONS(2800), - [anon_sym_goto] = ACTIONS(2800), - [anon_sym_break] = ACTIONS(2800), - [anon_sym_continue] = ACTIONS(2800), - [anon_sym_return] = ACTIONS(2800), - [anon_sym_DOLLARfor] = ACTIONS(2800), - [anon_sym_for] = ACTIONS(2800), - [anon_sym_POUND] = ACTIONS(2800), - [anon_sym_asm] = ACTIONS(2800), - [anon_sym_AT_LBRACK] = ACTIONS(2800), - [sym___double_quote] = ACTIONS(2800), - [sym___single_quote] = ACTIONS(2800), - [sym___c_double_quote] = ACTIONS(2800), - [sym___c_single_quote] = ACTIONS(2800), - [sym___r_double_quote] = ACTIONS(2800), - [sym___r_single_quote] = ACTIONS(2800), + [ts_builtin_sym_end] = ACTIONS(2788), + [sym_identifier] = ACTIONS(2790), + [anon_sym_LF] = ACTIONS(2790), + [anon_sym_CR] = ACTIONS(2790), + [anon_sym_CR_LF] = ACTIONS(2790), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2790), + [anon_sym_as] = ACTIONS(2790), + [anon_sym_LBRACE] = ACTIONS(2790), + [anon_sym_COMMA] = ACTIONS(2790), + [anon_sym_const] = ACTIONS(2790), + [anon_sym_LPAREN] = ACTIONS(2790), + [anon_sym_EQ] = ACTIONS(2790), + [anon_sym___global] = ACTIONS(2790), + [anon_sym_type] = ACTIONS(2790), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_fn] = ACTIONS(2790), + [anon_sym_PLUS] = ACTIONS(2790), + [anon_sym_DASH] = ACTIONS(2790), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_SLASH] = ACTIONS(2790), + [anon_sym_PERCENT] = ACTIONS(2790), + [anon_sym_LT] = ACTIONS(2790), + [anon_sym_GT] = ACTIONS(2790), + [anon_sym_EQ_EQ] = ACTIONS(2790), + [anon_sym_BANG_EQ] = ACTIONS(2790), + [anon_sym_LT_EQ] = ACTIONS(2790), + [anon_sym_GT_EQ] = ACTIONS(2790), + [anon_sym_LBRACK] = ACTIONS(2788), + [anon_sym_struct] = ACTIONS(2790), + [anon_sym_union] = ACTIONS(2790), + [anon_sym_pub] = ACTIONS(2790), + [anon_sym_mut] = ACTIONS(2790), + [anon_sym_enum] = ACTIONS(2790), + [anon_sym_interface] = ACTIONS(2790), + [anon_sym_PLUS_PLUS] = ACTIONS(2790), + [anon_sym_DASH_DASH] = ACTIONS(2790), + [anon_sym_QMARK] = ACTIONS(2790), + [anon_sym_BANG] = ACTIONS(2790), + [anon_sym_go] = ACTIONS(2790), + [anon_sym_spawn] = ACTIONS(2790), + [anon_sym_json_DOTdecode] = ACTIONS(2790), + [anon_sym_LBRACK2] = ACTIONS(2790), + [anon_sym_TILDE] = ACTIONS(2790), + [anon_sym_CARET] = ACTIONS(2790), + [anon_sym_AMP] = ACTIONS(2790), + [anon_sym_LT_DASH] = ACTIONS(2790), + [anon_sym_LT_LT] = ACTIONS(2790), + [anon_sym_GT_GT] = ACTIONS(2790), + [anon_sym_GT_GT_GT] = ACTIONS(2790), + [anon_sym_AMP_CARET] = ACTIONS(2790), + [anon_sym_AMP_AMP] = ACTIONS(2790), + [anon_sym_PIPE_PIPE] = ACTIONS(2790), + [anon_sym_or] = ACTIONS(2790), + [sym_none] = ACTIONS(2790), + [sym_true] = ACTIONS(2790), + [sym_false] = ACTIONS(2790), + [sym_nil] = ACTIONS(2790), + [anon_sym_QMARK_DOT] = ACTIONS(2790), + [anon_sym_POUND_LBRACK] = ACTIONS(2790), + [anon_sym_if] = ACTIONS(2790), + [anon_sym_DOLLARif] = ACTIONS(2790), + [anon_sym_is] = ACTIONS(2790), + [anon_sym_BANGis] = ACTIONS(2790), + [anon_sym_in] = ACTIONS(2790), + [anon_sym_BANGin] = ACTIONS(2790), + [anon_sym_match] = ACTIONS(2790), + [anon_sym_select] = ACTIONS(2790), + [anon_sym_STAR_EQ] = ACTIONS(2790), + [anon_sym_SLASH_EQ] = ACTIONS(2790), + [anon_sym_PERCENT_EQ] = ACTIONS(2790), + [anon_sym_LT_LT_EQ] = ACTIONS(2790), + [anon_sym_GT_GT_EQ] = ACTIONS(2790), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2790), + [anon_sym_AMP_EQ] = ACTIONS(2790), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2790), + [anon_sym_PLUS_EQ] = ACTIONS(2790), + [anon_sym_DASH_EQ] = ACTIONS(2790), + [anon_sym_PIPE_EQ] = ACTIONS(2790), + [anon_sym_CARET_EQ] = ACTIONS(2790), + [anon_sym_COLON_EQ] = ACTIONS(2790), + [anon_sym_lock] = ACTIONS(2790), + [anon_sym_rlock] = ACTIONS(2790), + [anon_sym_unsafe] = ACTIONS(2790), + [anon_sym_sql] = ACTIONS(2790), + [sym_int_literal] = ACTIONS(2790), + [sym_float_literal] = ACTIONS(2790), + [sym_rune_literal] = ACTIONS(2790), + [anon_sym_AT] = ACTIONS(2790), + [anon_sym_shared] = ACTIONS(2790), + [anon_sym_map_LBRACK] = ACTIONS(2790), + [anon_sym_chan] = ACTIONS(2790), + [anon_sym_thread] = ACTIONS(2790), + [anon_sym_atomic] = ACTIONS(2790), + [anon_sym_assert] = ACTIONS(2790), + [anon_sym_defer] = ACTIONS(2790), + [anon_sym_goto] = ACTIONS(2790), + [anon_sym_break] = ACTIONS(2790), + [anon_sym_continue] = ACTIONS(2790), + [anon_sym_return] = ACTIONS(2790), + [anon_sym_DOLLARfor] = ACTIONS(2790), + [anon_sym_for] = ACTIONS(2790), + [anon_sym_POUND] = ACTIONS(2790), + [anon_sym_asm] = ACTIONS(2790), + [anon_sym_AT_LBRACK] = ACTIONS(2790), + [sym___double_quote] = ACTIONS(2790), + [sym___single_quote] = ACTIONS(2790), + [sym___c_double_quote] = ACTIONS(2790), + [sym___c_single_quote] = ACTIONS(2790), + [sym___r_double_quote] = ACTIONS(2790), + [sym___r_single_quote] = ACTIONS(2790), }, [852] = { - [ts_builtin_sym_end] = ACTIONS(2802), - [sym_identifier] = ACTIONS(2804), - [anon_sym_LF] = ACTIONS(2804), - [anon_sym_CR] = ACTIONS(2804), - [anon_sym_CR_LF] = ACTIONS(2804), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2804), - [anon_sym_as] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_const] = ACTIONS(2804), - [anon_sym_LPAREN] = ACTIONS(2804), - [anon_sym_EQ] = ACTIONS(2804), - [anon_sym___global] = ACTIONS(2804), - [anon_sym_type] = ACTIONS(2804), - [anon_sym_PIPE] = ACTIONS(2804), - [anon_sym_fn] = ACTIONS(2804), - [anon_sym_PLUS] = ACTIONS(2804), - [anon_sym_DASH] = ACTIONS(2804), - [anon_sym_STAR] = ACTIONS(2804), - [anon_sym_SLASH] = ACTIONS(2804), - [anon_sym_PERCENT] = ACTIONS(2804), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_GT] = ACTIONS(2804), - [anon_sym_EQ_EQ] = ACTIONS(2804), - [anon_sym_BANG_EQ] = ACTIONS(2804), - [anon_sym_LT_EQ] = ACTIONS(2804), - [anon_sym_GT_EQ] = ACTIONS(2804), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_struct] = ACTIONS(2804), - [anon_sym_union] = ACTIONS(2804), - [anon_sym_pub] = ACTIONS(2804), - [anon_sym_mut] = ACTIONS(2804), - [anon_sym_enum] = ACTIONS(2804), - [anon_sym_interface] = ACTIONS(2804), - [anon_sym_PLUS_PLUS] = ACTIONS(2804), - [anon_sym_DASH_DASH] = ACTIONS(2804), - [anon_sym_QMARK] = ACTIONS(2804), - [anon_sym_BANG] = ACTIONS(2804), - [anon_sym_go] = ACTIONS(2804), - [anon_sym_spawn] = ACTIONS(2804), - [anon_sym_json_DOTdecode] = ACTIONS(2804), - [anon_sym_LBRACK2] = ACTIONS(2804), - [anon_sym_TILDE] = ACTIONS(2804), - [anon_sym_CARET] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2804), - [anon_sym_LT_DASH] = ACTIONS(2804), - [anon_sym_LT_LT] = ACTIONS(2804), - [anon_sym_GT_GT] = ACTIONS(2804), - [anon_sym_GT_GT_GT] = ACTIONS(2804), - [anon_sym_AMP_CARET] = ACTIONS(2804), - [anon_sym_AMP_AMP] = ACTIONS(2804), - [anon_sym_PIPE_PIPE] = ACTIONS(2804), - [anon_sym_or] = ACTIONS(2804), - [sym_none] = ACTIONS(2804), - [sym_true] = ACTIONS(2804), - [sym_false] = ACTIONS(2804), - [sym_nil] = ACTIONS(2804), - [anon_sym_QMARK_DOT] = ACTIONS(2804), - [anon_sym_POUND_LBRACK] = ACTIONS(2804), - [anon_sym_if] = ACTIONS(2804), - [anon_sym_DOLLARif] = ACTIONS(2804), - [anon_sym_is] = ACTIONS(2804), - [anon_sym_BANGis] = ACTIONS(2804), - [anon_sym_in] = ACTIONS(2804), - [anon_sym_BANGin] = ACTIONS(2804), - [anon_sym_match] = ACTIONS(2804), - [anon_sym_select] = ACTIONS(2804), - [anon_sym_STAR_EQ] = ACTIONS(2804), - [anon_sym_SLASH_EQ] = ACTIONS(2804), - [anon_sym_PERCENT_EQ] = ACTIONS(2804), - [anon_sym_LT_LT_EQ] = ACTIONS(2804), - [anon_sym_GT_GT_EQ] = ACTIONS(2804), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2804), - [anon_sym_AMP_EQ] = ACTIONS(2804), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2804), - [anon_sym_PLUS_EQ] = ACTIONS(2804), - [anon_sym_DASH_EQ] = ACTIONS(2804), - [anon_sym_PIPE_EQ] = ACTIONS(2804), - [anon_sym_CARET_EQ] = ACTIONS(2804), - [anon_sym_COLON_EQ] = ACTIONS(2804), - [anon_sym_lock] = ACTIONS(2804), - [anon_sym_rlock] = ACTIONS(2804), - [anon_sym_unsafe] = ACTIONS(2804), - [anon_sym_sql] = ACTIONS(2804), - [sym_int_literal] = ACTIONS(2804), - [sym_float_literal] = ACTIONS(2804), - [sym_rune_literal] = ACTIONS(2804), - [anon_sym_AT] = ACTIONS(2804), - [anon_sym_shared] = ACTIONS(2804), - [anon_sym_map_LBRACK] = ACTIONS(2804), - [anon_sym_chan] = ACTIONS(2804), - [anon_sym_thread] = ACTIONS(2804), - [anon_sym_atomic] = ACTIONS(2804), - [anon_sym_assert] = ACTIONS(2804), - [anon_sym_defer] = ACTIONS(2804), - [anon_sym_goto] = ACTIONS(2804), - [anon_sym_break] = ACTIONS(2804), - [anon_sym_continue] = ACTIONS(2804), - [anon_sym_return] = ACTIONS(2804), - [anon_sym_DOLLARfor] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2804), - [anon_sym_POUND] = ACTIONS(2804), - [anon_sym_asm] = ACTIONS(2804), - [anon_sym_AT_LBRACK] = ACTIONS(2804), - [sym___double_quote] = ACTIONS(2804), - [sym___single_quote] = ACTIONS(2804), - [sym___c_double_quote] = ACTIONS(2804), - [sym___c_single_quote] = ACTIONS(2804), - [sym___r_double_quote] = ACTIONS(2804), - [sym___r_single_quote] = ACTIONS(2804), + [ts_builtin_sym_end] = ACTIONS(2792), + [sym_identifier] = ACTIONS(2794), + [anon_sym_LF] = ACTIONS(2794), + [anon_sym_CR] = ACTIONS(2794), + [anon_sym_CR_LF] = ACTIONS(2794), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2794), + [anon_sym_as] = ACTIONS(2794), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_COMMA] = ACTIONS(2794), + [anon_sym_const] = ACTIONS(2794), + [anon_sym_LPAREN] = ACTIONS(2794), + [anon_sym_EQ] = ACTIONS(2794), + [anon_sym___global] = ACTIONS(2794), + [anon_sym_type] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_fn] = ACTIONS(2794), + [anon_sym_PLUS] = ACTIONS(2794), + [anon_sym_DASH] = ACTIONS(2794), + [anon_sym_STAR] = ACTIONS(2794), + [anon_sym_SLASH] = ACTIONS(2794), + [anon_sym_PERCENT] = ACTIONS(2794), + [anon_sym_LT] = ACTIONS(2794), + [anon_sym_GT] = ACTIONS(2794), + [anon_sym_EQ_EQ] = ACTIONS(2794), + [anon_sym_BANG_EQ] = ACTIONS(2794), + [anon_sym_LT_EQ] = ACTIONS(2794), + [anon_sym_GT_EQ] = ACTIONS(2794), + [anon_sym_LBRACK] = ACTIONS(2792), + [anon_sym_struct] = ACTIONS(2794), + [anon_sym_union] = ACTIONS(2794), + [anon_sym_pub] = ACTIONS(2794), + [anon_sym_mut] = ACTIONS(2794), + [anon_sym_enum] = ACTIONS(2794), + [anon_sym_interface] = ACTIONS(2794), + [anon_sym_PLUS_PLUS] = ACTIONS(2794), + [anon_sym_DASH_DASH] = ACTIONS(2794), + [anon_sym_QMARK] = ACTIONS(2794), + [anon_sym_BANG] = ACTIONS(2794), + [anon_sym_go] = ACTIONS(2794), + [anon_sym_spawn] = ACTIONS(2794), + [anon_sym_json_DOTdecode] = ACTIONS(2794), + [anon_sym_LBRACK2] = ACTIONS(2794), + [anon_sym_TILDE] = ACTIONS(2794), + [anon_sym_CARET] = ACTIONS(2794), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_LT_DASH] = ACTIONS(2794), + [anon_sym_LT_LT] = ACTIONS(2794), + [anon_sym_GT_GT] = ACTIONS(2794), + [anon_sym_GT_GT_GT] = ACTIONS(2794), + [anon_sym_AMP_CARET] = ACTIONS(2794), + [anon_sym_AMP_AMP] = ACTIONS(2794), + [anon_sym_PIPE_PIPE] = ACTIONS(2794), + [anon_sym_or] = ACTIONS(2794), + [sym_none] = ACTIONS(2794), + [sym_true] = ACTIONS(2794), + [sym_false] = ACTIONS(2794), + [sym_nil] = ACTIONS(2794), + [anon_sym_QMARK_DOT] = ACTIONS(2794), + [anon_sym_POUND_LBRACK] = ACTIONS(2794), + [anon_sym_if] = ACTIONS(2794), + [anon_sym_DOLLARif] = ACTIONS(2794), + [anon_sym_is] = ACTIONS(2794), + [anon_sym_BANGis] = ACTIONS(2794), + [anon_sym_in] = ACTIONS(2794), + [anon_sym_BANGin] = ACTIONS(2794), + [anon_sym_match] = ACTIONS(2794), + [anon_sym_select] = ACTIONS(2794), + [anon_sym_STAR_EQ] = ACTIONS(2794), + [anon_sym_SLASH_EQ] = ACTIONS(2794), + [anon_sym_PERCENT_EQ] = ACTIONS(2794), + [anon_sym_LT_LT_EQ] = ACTIONS(2794), + [anon_sym_GT_GT_EQ] = ACTIONS(2794), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2794), + [anon_sym_AMP_EQ] = ACTIONS(2794), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2794), + [anon_sym_PLUS_EQ] = ACTIONS(2794), + [anon_sym_DASH_EQ] = ACTIONS(2794), + [anon_sym_PIPE_EQ] = ACTIONS(2794), + [anon_sym_CARET_EQ] = ACTIONS(2794), + [anon_sym_COLON_EQ] = ACTIONS(2794), + [anon_sym_lock] = ACTIONS(2794), + [anon_sym_rlock] = ACTIONS(2794), + [anon_sym_unsafe] = ACTIONS(2794), + [anon_sym_sql] = ACTIONS(2794), + [sym_int_literal] = ACTIONS(2794), + [sym_float_literal] = ACTIONS(2794), + [sym_rune_literal] = ACTIONS(2794), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_shared] = ACTIONS(2794), + [anon_sym_map_LBRACK] = ACTIONS(2794), + [anon_sym_chan] = ACTIONS(2794), + [anon_sym_thread] = ACTIONS(2794), + [anon_sym_atomic] = ACTIONS(2794), + [anon_sym_assert] = ACTIONS(2794), + [anon_sym_defer] = ACTIONS(2794), + [anon_sym_goto] = ACTIONS(2794), + [anon_sym_break] = ACTIONS(2794), + [anon_sym_continue] = ACTIONS(2794), + [anon_sym_return] = ACTIONS(2794), + [anon_sym_DOLLARfor] = ACTIONS(2794), + [anon_sym_for] = ACTIONS(2794), + [anon_sym_POUND] = ACTIONS(2794), + [anon_sym_asm] = ACTIONS(2794), + [anon_sym_AT_LBRACK] = ACTIONS(2794), + [sym___double_quote] = ACTIONS(2794), + [sym___single_quote] = ACTIONS(2794), + [sym___c_double_quote] = ACTIONS(2794), + [sym___c_single_quote] = ACTIONS(2794), + [sym___r_double_quote] = ACTIONS(2794), + [sym___r_single_quote] = ACTIONS(2794), }, [853] = { - [ts_builtin_sym_end] = ACTIONS(2806), - [sym_identifier] = ACTIONS(2808), - [anon_sym_LF] = ACTIONS(2808), - [anon_sym_CR] = ACTIONS(2808), - [anon_sym_CR_LF] = ACTIONS(2808), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2808), - [anon_sym_as] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_const] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2808), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym___global] = ACTIONS(2808), - [anon_sym_type] = ACTIONS(2808), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_fn] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_SLASH] = ACTIONS(2808), - [anon_sym_PERCENT] = ACTIONS(2808), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_GT] = ACTIONS(2808), - [anon_sym_EQ_EQ] = ACTIONS(2808), - [anon_sym_BANG_EQ] = ACTIONS(2808), - [anon_sym_LT_EQ] = ACTIONS(2808), - [anon_sym_GT_EQ] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_struct] = ACTIONS(2808), - [anon_sym_union] = ACTIONS(2808), - [anon_sym_pub] = ACTIONS(2808), - [anon_sym_mut] = ACTIONS(2808), - [anon_sym_enum] = ACTIONS(2808), - [anon_sym_interface] = ACTIONS(2808), - [anon_sym_PLUS_PLUS] = ACTIONS(2808), - [anon_sym_DASH_DASH] = ACTIONS(2808), - [anon_sym_QMARK] = ACTIONS(2808), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_go] = ACTIONS(2808), - [anon_sym_spawn] = ACTIONS(2808), - [anon_sym_json_DOTdecode] = ACTIONS(2808), - [anon_sym_LBRACK2] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_CARET] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2808), - [anon_sym_LT_DASH] = ACTIONS(2808), - [anon_sym_LT_LT] = ACTIONS(2808), - [anon_sym_GT_GT] = ACTIONS(2808), - [anon_sym_GT_GT_GT] = ACTIONS(2808), - [anon_sym_AMP_CARET] = ACTIONS(2808), - [anon_sym_AMP_AMP] = ACTIONS(2808), - [anon_sym_PIPE_PIPE] = ACTIONS(2808), - [anon_sym_or] = ACTIONS(2808), - [sym_none] = ACTIONS(2808), - [sym_true] = ACTIONS(2808), - [sym_false] = ACTIONS(2808), - [sym_nil] = ACTIONS(2808), - [anon_sym_QMARK_DOT] = ACTIONS(2808), - [anon_sym_POUND_LBRACK] = ACTIONS(2808), - [anon_sym_if] = ACTIONS(2808), - [anon_sym_DOLLARif] = ACTIONS(2808), - [anon_sym_is] = ACTIONS(2808), - [anon_sym_BANGis] = ACTIONS(2808), - [anon_sym_in] = ACTIONS(2808), - [anon_sym_BANGin] = ACTIONS(2808), - [anon_sym_match] = ACTIONS(2808), - [anon_sym_select] = ACTIONS(2808), - [anon_sym_STAR_EQ] = ACTIONS(2808), - [anon_sym_SLASH_EQ] = ACTIONS(2808), - [anon_sym_PERCENT_EQ] = ACTIONS(2808), - [anon_sym_LT_LT_EQ] = ACTIONS(2808), - [anon_sym_GT_GT_EQ] = ACTIONS(2808), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2808), - [anon_sym_AMP_EQ] = ACTIONS(2808), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2808), - [anon_sym_PLUS_EQ] = ACTIONS(2808), - [anon_sym_DASH_EQ] = ACTIONS(2808), - [anon_sym_PIPE_EQ] = ACTIONS(2808), - [anon_sym_CARET_EQ] = ACTIONS(2808), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_lock] = ACTIONS(2808), - [anon_sym_rlock] = ACTIONS(2808), - [anon_sym_unsafe] = ACTIONS(2808), - [anon_sym_sql] = ACTIONS(2808), - [sym_int_literal] = ACTIONS(2808), - [sym_float_literal] = ACTIONS(2808), - [sym_rune_literal] = ACTIONS(2808), - [anon_sym_AT] = ACTIONS(2808), - [anon_sym_shared] = ACTIONS(2808), - [anon_sym_map_LBRACK] = ACTIONS(2808), - [anon_sym_chan] = ACTIONS(2808), - [anon_sym_thread] = ACTIONS(2808), - [anon_sym_atomic] = ACTIONS(2808), - [anon_sym_assert] = ACTIONS(2808), - [anon_sym_defer] = ACTIONS(2808), - [anon_sym_goto] = ACTIONS(2808), - [anon_sym_break] = ACTIONS(2808), - [anon_sym_continue] = ACTIONS(2808), - [anon_sym_return] = ACTIONS(2808), - [anon_sym_DOLLARfor] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2808), - [anon_sym_POUND] = ACTIONS(2808), - [anon_sym_asm] = ACTIONS(2808), - [anon_sym_AT_LBRACK] = ACTIONS(2808), - [sym___double_quote] = ACTIONS(2808), - [sym___single_quote] = ACTIONS(2808), - [sym___c_double_quote] = ACTIONS(2808), - [sym___c_single_quote] = ACTIONS(2808), - [sym___r_double_quote] = ACTIONS(2808), - [sym___r_single_quote] = ACTIONS(2808), + [ts_builtin_sym_end] = ACTIONS(2796), + [sym_identifier] = ACTIONS(2798), + [anon_sym_LF] = ACTIONS(2798), + [anon_sym_CR] = ACTIONS(2798), + [anon_sym_CR_LF] = ACTIONS(2798), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2798), + [anon_sym_as] = ACTIONS(2798), + [anon_sym_LBRACE] = ACTIONS(2798), + [anon_sym_COMMA] = ACTIONS(2798), + [anon_sym_const] = ACTIONS(2798), + [anon_sym_LPAREN] = ACTIONS(2798), + [anon_sym_EQ] = ACTIONS(2798), + [anon_sym___global] = ACTIONS(2798), + [anon_sym_type] = ACTIONS(2798), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_fn] = ACTIONS(2798), + [anon_sym_PLUS] = ACTIONS(2798), + [anon_sym_DASH] = ACTIONS(2798), + [anon_sym_STAR] = ACTIONS(2798), + [anon_sym_SLASH] = ACTIONS(2798), + [anon_sym_PERCENT] = ACTIONS(2798), + [anon_sym_LT] = ACTIONS(2798), + [anon_sym_GT] = ACTIONS(2798), + [anon_sym_EQ_EQ] = ACTIONS(2798), + [anon_sym_BANG_EQ] = ACTIONS(2798), + [anon_sym_LT_EQ] = ACTIONS(2798), + [anon_sym_GT_EQ] = ACTIONS(2798), + [anon_sym_LBRACK] = ACTIONS(2796), + [anon_sym_struct] = ACTIONS(2798), + [anon_sym_union] = ACTIONS(2798), + [anon_sym_pub] = ACTIONS(2798), + [anon_sym_mut] = ACTIONS(2798), + [anon_sym_enum] = ACTIONS(2798), + [anon_sym_interface] = ACTIONS(2798), + [anon_sym_PLUS_PLUS] = ACTIONS(2798), + [anon_sym_DASH_DASH] = ACTIONS(2798), + [anon_sym_QMARK] = ACTIONS(2798), + [anon_sym_BANG] = ACTIONS(2798), + [anon_sym_go] = ACTIONS(2798), + [anon_sym_spawn] = ACTIONS(2798), + [anon_sym_json_DOTdecode] = ACTIONS(2798), + [anon_sym_LBRACK2] = ACTIONS(2798), + [anon_sym_TILDE] = ACTIONS(2798), + [anon_sym_CARET] = ACTIONS(2798), + [anon_sym_AMP] = ACTIONS(2798), + [anon_sym_LT_DASH] = ACTIONS(2798), + [anon_sym_LT_LT] = ACTIONS(2798), + [anon_sym_GT_GT] = ACTIONS(2798), + [anon_sym_GT_GT_GT] = ACTIONS(2798), + [anon_sym_AMP_CARET] = ACTIONS(2798), + [anon_sym_AMP_AMP] = ACTIONS(2798), + [anon_sym_PIPE_PIPE] = ACTIONS(2798), + [anon_sym_or] = ACTIONS(2798), + [sym_none] = ACTIONS(2798), + [sym_true] = ACTIONS(2798), + [sym_false] = ACTIONS(2798), + [sym_nil] = ACTIONS(2798), + [anon_sym_QMARK_DOT] = ACTIONS(2798), + [anon_sym_POUND_LBRACK] = ACTIONS(2798), + [anon_sym_if] = ACTIONS(2798), + [anon_sym_DOLLARif] = ACTIONS(2798), + [anon_sym_is] = ACTIONS(2798), + [anon_sym_BANGis] = ACTIONS(2798), + [anon_sym_in] = ACTIONS(2798), + [anon_sym_BANGin] = ACTIONS(2798), + [anon_sym_match] = ACTIONS(2798), + [anon_sym_select] = ACTIONS(2798), + [anon_sym_STAR_EQ] = ACTIONS(2798), + [anon_sym_SLASH_EQ] = ACTIONS(2798), + [anon_sym_PERCENT_EQ] = ACTIONS(2798), + [anon_sym_LT_LT_EQ] = ACTIONS(2798), + [anon_sym_GT_GT_EQ] = ACTIONS(2798), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2798), + [anon_sym_AMP_EQ] = ACTIONS(2798), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2798), + [anon_sym_PLUS_EQ] = ACTIONS(2798), + [anon_sym_DASH_EQ] = ACTIONS(2798), + [anon_sym_PIPE_EQ] = ACTIONS(2798), + [anon_sym_CARET_EQ] = ACTIONS(2798), + [anon_sym_COLON_EQ] = ACTIONS(2798), + [anon_sym_lock] = ACTIONS(2798), + [anon_sym_rlock] = ACTIONS(2798), + [anon_sym_unsafe] = ACTIONS(2798), + [anon_sym_sql] = ACTIONS(2798), + [sym_int_literal] = ACTIONS(2798), + [sym_float_literal] = ACTIONS(2798), + [sym_rune_literal] = ACTIONS(2798), + [anon_sym_AT] = ACTIONS(2798), + [anon_sym_shared] = ACTIONS(2798), + [anon_sym_map_LBRACK] = ACTIONS(2798), + [anon_sym_chan] = ACTIONS(2798), + [anon_sym_thread] = ACTIONS(2798), + [anon_sym_atomic] = ACTIONS(2798), + [anon_sym_assert] = ACTIONS(2798), + [anon_sym_defer] = ACTIONS(2798), + [anon_sym_goto] = ACTIONS(2798), + [anon_sym_break] = ACTIONS(2798), + [anon_sym_continue] = ACTIONS(2798), + [anon_sym_return] = ACTIONS(2798), + [anon_sym_DOLLARfor] = ACTIONS(2798), + [anon_sym_for] = ACTIONS(2798), + [anon_sym_POUND] = ACTIONS(2798), + [anon_sym_asm] = ACTIONS(2798), + [anon_sym_AT_LBRACK] = ACTIONS(2798), + [sym___double_quote] = ACTIONS(2798), + [sym___single_quote] = ACTIONS(2798), + [sym___c_double_quote] = ACTIONS(2798), + [sym___c_single_quote] = ACTIONS(2798), + [sym___r_double_quote] = ACTIONS(2798), + [sym___r_single_quote] = ACTIONS(2798), }, [854] = { - [ts_builtin_sym_end] = ACTIONS(2810), - [sym_identifier] = ACTIONS(2812), - [anon_sym_LF] = ACTIONS(2812), - [anon_sym_CR] = ACTIONS(2812), - [anon_sym_CR_LF] = ACTIONS(2812), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2812), - [anon_sym_as] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2812), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_const] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2812), - [anon_sym_EQ] = ACTIONS(2812), - [anon_sym___global] = ACTIONS(2812), - [anon_sym_type] = ACTIONS(2812), - [anon_sym_PIPE] = ACTIONS(2812), - [anon_sym_fn] = ACTIONS(2812), - [anon_sym_PLUS] = ACTIONS(2812), - [anon_sym_DASH] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(2812), - [anon_sym_SLASH] = ACTIONS(2812), - [anon_sym_PERCENT] = ACTIONS(2812), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_GT] = ACTIONS(2812), - [anon_sym_EQ_EQ] = ACTIONS(2812), - [anon_sym_BANG_EQ] = ACTIONS(2812), - [anon_sym_LT_EQ] = ACTIONS(2812), - [anon_sym_GT_EQ] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_struct] = ACTIONS(2812), - [anon_sym_union] = ACTIONS(2812), - [anon_sym_pub] = ACTIONS(2812), - [anon_sym_mut] = ACTIONS(2812), - [anon_sym_enum] = ACTIONS(2812), - [anon_sym_interface] = ACTIONS(2812), - [anon_sym_PLUS_PLUS] = ACTIONS(2812), - [anon_sym_DASH_DASH] = ACTIONS(2812), - [anon_sym_QMARK] = ACTIONS(2812), - [anon_sym_BANG] = ACTIONS(2812), - [anon_sym_go] = ACTIONS(2812), - [anon_sym_spawn] = ACTIONS(2812), - [anon_sym_json_DOTdecode] = ACTIONS(2812), - [anon_sym_LBRACK2] = ACTIONS(2812), - [anon_sym_TILDE] = ACTIONS(2812), - [anon_sym_CARET] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2812), - [anon_sym_LT_DASH] = ACTIONS(2812), - [anon_sym_LT_LT] = ACTIONS(2812), - [anon_sym_GT_GT] = ACTIONS(2812), - [anon_sym_GT_GT_GT] = ACTIONS(2812), - [anon_sym_AMP_CARET] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2812), - [anon_sym_PIPE_PIPE] = ACTIONS(2812), - [anon_sym_or] = ACTIONS(2812), - [sym_none] = ACTIONS(2812), - [sym_true] = ACTIONS(2812), - [sym_false] = ACTIONS(2812), - [sym_nil] = ACTIONS(2812), - [anon_sym_QMARK_DOT] = ACTIONS(2812), - [anon_sym_POUND_LBRACK] = ACTIONS(2812), - [anon_sym_if] = ACTIONS(2812), - [anon_sym_DOLLARif] = ACTIONS(2812), - [anon_sym_is] = ACTIONS(2812), - [anon_sym_BANGis] = ACTIONS(2812), - [anon_sym_in] = ACTIONS(2812), - [anon_sym_BANGin] = ACTIONS(2812), - [anon_sym_match] = ACTIONS(2812), - [anon_sym_select] = ACTIONS(2812), - [anon_sym_STAR_EQ] = ACTIONS(2812), - [anon_sym_SLASH_EQ] = ACTIONS(2812), - [anon_sym_PERCENT_EQ] = ACTIONS(2812), - [anon_sym_LT_LT_EQ] = ACTIONS(2812), - [anon_sym_GT_GT_EQ] = ACTIONS(2812), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2812), - [anon_sym_AMP_EQ] = ACTIONS(2812), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2812), - [anon_sym_PLUS_EQ] = ACTIONS(2812), - [anon_sym_DASH_EQ] = ACTIONS(2812), - [anon_sym_PIPE_EQ] = ACTIONS(2812), - [anon_sym_CARET_EQ] = ACTIONS(2812), - [anon_sym_COLON_EQ] = ACTIONS(2812), - [anon_sym_lock] = ACTIONS(2812), - [anon_sym_rlock] = ACTIONS(2812), - [anon_sym_unsafe] = ACTIONS(2812), - [anon_sym_sql] = ACTIONS(2812), - [sym_int_literal] = ACTIONS(2812), - [sym_float_literal] = ACTIONS(2812), - [sym_rune_literal] = ACTIONS(2812), - [anon_sym_AT] = ACTIONS(2812), - [anon_sym_shared] = ACTIONS(2812), - [anon_sym_map_LBRACK] = ACTIONS(2812), - [anon_sym_chan] = ACTIONS(2812), - [anon_sym_thread] = ACTIONS(2812), - [anon_sym_atomic] = ACTIONS(2812), - [anon_sym_assert] = ACTIONS(2812), - [anon_sym_defer] = ACTIONS(2812), - [anon_sym_goto] = ACTIONS(2812), - [anon_sym_break] = ACTIONS(2812), - [anon_sym_continue] = ACTIONS(2812), - [anon_sym_return] = ACTIONS(2812), - [anon_sym_DOLLARfor] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2812), - [anon_sym_POUND] = ACTIONS(2812), - [anon_sym_asm] = ACTIONS(2812), - [anon_sym_AT_LBRACK] = ACTIONS(2812), - [sym___double_quote] = ACTIONS(2812), - [sym___single_quote] = ACTIONS(2812), - [sym___c_double_quote] = ACTIONS(2812), - [sym___c_single_quote] = ACTIONS(2812), - [sym___r_double_quote] = ACTIONS(2812), - [sym___r_single_quote] = ACTIONS(2812), + [ts_builtin_sym_end] = ACTIONS(2800), + [sym_identifier] = ACTIONS(2802), + [anon_sym_LF] = ACTIONS(2802), + [anon_sym_CR] = ACTIONS(2802), + [anon_sym_CR_LF] = ACTIONS(2802), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_as] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_COMMA] = ACTIONS(2802), + [anon_sym_const] = ACTIONS(2802), + [anon_sym_LPAREN] = ACTIONS(2802), + [anon_sym_EQ] = ACTIONS(2802), + [anon_sym___global] = ACTIONS(2802), + [anon_sym_type] = ACTIONS(2802), + [anon_sym_PIPE] = ACTIONS(2802), + [anon_sym_fn] = ACTIONS(2802), + [anon_sym_PLUS] = ACTIONS(2802), + [anon_sym_DASH] = ACTIONS(2802), + [anon_sym_STAR] = ACTIONS(2802), + [anon_sym_SLASH] = ACTIONS(2802), + [anon_sym_PERCENT] = ACTIONS(2802), + [anon_sym_LT] = ACTIONS(2802), + [anon_sym_GT] = ACTIONS(2802), + [anon_sym_EQ_EQ] = ACTIONS(2802), + [anon_sym_BANG_EQ] = ACTIONS(2802), + [anon_sym_LT_EQ] = ACTIONS(2802), + [anon_sym_GT_EQ] = ACTIONS(2802), + [anon_sym_LBRACK] = ACTIONS(2800), + [anon_sym_struct] = ACTIONS(2802), + [anon_sym_union] = ACTIONS(2802), + [anon_sym_pub] = ACTIONS(2802), + [anon_sym_mut] = ACTIONS(2802), + [anon_sym_enum] = ACTIONS(2802), + [anon_sym_interface] = ACTIONS(2802), + [anon_sym_PLUS_PLUS] = ACTIONS(2802), + [anon_sym_DASH_DASH] = ACTIONS(2802), + [anon_sym_QMARK] = ACTIONS(2802), + [anon_sym_BANG] = ACTIONS(2802), + [anon_sym_go] = ACTIONS(2802), + [anon_sym_spawn] = ACTIONS(2802), + [anon_sym_json_DOTdecode] = ACTIONS(2802), + [anon_sym_LBRACK2] = ACTIONS(2802), + [anon_sym_TILDE] = ACTIONS(2802), + [anon_sym_CARET] = ACTIONS(2802), + [anon_sym_AMP] = ACTIONS(2802), + [anon_sym_LT_DASH] = ACTIONS(2802), + [anon_sym_LT_LT] = ACTIONS(2802), + [anon_sym_GT_GT] = ACTIONS(2802), + [anon_sym_GT_GT_GT] = ACTIONS(2802), + [anon_sym_AMP_CARET] = ACTIONS(2802), + [anon_sym_AMP_AMP] = ACTIONS(2802), + [anon_sym_PIPE_PIPE] = ACTIONS(2802), + [anon_sym_or] = ACTIONS(2802), + [sym_none] = ACTIONS(2802), + [sym_true] = ACTIONS(2802), + [sym_false] = ACTIONS(2802), + [sym_nil] = ACTIONS(2802), + [anon_sym_QMARK_DOT] = ACTIONS(2802), + [anon_sym_POUND_LBRACK] = ACTIONS(2802), + [anon_sym_if] = ACTIONS(2802), + [anon_sym_DOLLARif] = ACTIONS(2802), + [anon_sym_is] = ACTIONS(2802), + [anon_sym_BANGis] = ACTIONS(2802), + [anon_sym_in] = ACTIONS(2802), + [anon_sym_BANGin] = ACTIONS(2802), + [anon_sym_match] = ACTIONS(2802), + [anon_sym_select] = ACTIONS(2802), + [anon_sym_STAR_EQ] = ACTIONS(2802), + [anon_sym_SLASH_EQ] = ACTIONS(2802), + [anon_sym_PERCENT_EQ] = ACTIONS(2802), + [anon_sym_LT_LT_EQ] = ACTIONS(2802), + [anon_sym_GT_GT_EQ] = ACTIONS(2802), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2802), + [anon_sym_AMP_EQ] = ACTIONS(2802), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2802), + [anon_sym_PLUS_EQ] = ACTIONS(2802), + [anon_sym_DASH_EQ] = ACTIONS(2802), + [anon_sym_PIPE_EQ] = ACTIONS(2802), + [anon_sym_CARET_EQ] = ACTIONS(2802), + [anon_sym_COLON_EQ] = ACTIONS(2802), + [anon_sym_lock] = ACTIONS(2802), + [anon_sym_rlock] = ACTIONS(2802), + [anon_sym_unsafe] = ACTIONS(2802), + [anon_sym_sql] = ACTIONS(2802), + [sym_int_literal] = ACTIONS(2802), + [sym_float_literal] = ACTIONS(2802), + [sym_rune_literal] = ACTIONS(2802), + [anon_sym_AT] = ACTIONS(2802), + [anon_sym_shared] = ACTIONS(2802), + [anon_sym_map_LBRACK] = ACTIONS(2802), + [anon_sym_chan] = ACTIONS(2802), + [anon_sym_thread] = ACTIONS(2802), + [anon_sym_atomic] = ACTIONS(2802), + [anon_sym_assert] = ACTIONS(2802), + [anon_sym_defer] = ACTIONS(2802), + [anon_sym_goto] = ACTIONS(2802), + [anon_sym_break] = ACTIONS(2802), + [anon_sym_continue] = ACTIONS(2802), + [anon_sym_return] = ACTIONS(2802), + [anon_sym_DOLLARfor] = ACTIONS(2802), + [anon_sym_for] = ACTIONS(2802), + [anon_sym_POUND] = ACTIONS(2802), + [anon_sym_asm] = ACTIONS(2802), + [anon_sym_AT_LBRACK] = ACTIONS(2802), + [sym___double_quote] = ACTIONS(2802), + [sym___single_quote] = ACTIONS(2802), + [sym___c_double_quote] = ACTIONS(2802), + [sym___c_single_quote] = ACTIONS(2802), + [sym___r_double_quote] = ACTIONS(2802), + [sym___r_single_quote] = ACTIONS(2802), }, [855] = { - [ts_builtin_sym_end] = ACTIONS(2814), - [sym_identifier] = ACTIONS(2816), - [anon_sym_LF] = ACTIONS(2816), - [anon_sym_CR] = ACTIONS(2816), - [anon_sym_CR_LF] = ACTIONS(2816), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2816), - [anon_sym_as] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2816), - [anon_sym_COMMA] = ACTIONS(2816), - [anon_sym_const] = ACTIONS(2816), - [anon_sym_LPAREN] = ACTIONS(2816), - [anon_sym_EQ] = ACTIONS(2816), - [anon_sym___global] = ACTIONS(2816), - [anon_sym_type] = ACTIONS(2816), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_fn] = ACTIONS(2816), - [anon_sym_PLUS] = ACTIONS(2816), - [anon_sym_DASH] = ACTIONS(2816), - [anon_sym_STAR] = ACTIONS(2816), - [anon_sym_SLASH] = ACTIONS(2816), - [anon_sym_PERCENT] = ACTIONS(2816), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_EQ_EQ] = ACTIONS(2816), - [anon_sym_BANG_EQ] = ACTIONS(2816), - [anon_sym_LT_EQ] = ACTIONS(2816), - [anon_sym_GT_EQ] = ACTIONS(2816), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_struct] = ACTIONS(2816), - [anon_sym_union] = ACTIONS(2816), - [anon_sym_pub] = ACTIONS(2816), - [anon_sym_mut] = ACTIONS(2816), - [anon_sym_enum] = ACTIONS(2816), - [anon_sym_interface] = ACTIONS(2816), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_DASH_DASH] = ACTIONS(2816), - [anon_sym_QMARK] = ACTIONS(2816), - [anon_sym_BANG] = ACTIONS(2816), - [anon_sym_go] = ACTIONS(2816), - [anon_sym_spawn] = ACTIONS(2816), - [anon_sym_json_DOTdecode] = ACTIONS(2816), - [anon_sym_LBRACK2] = ACTIONS(2816), - [anon_sym_TILDE] = ACTIONS(2816), - [anon_sym_CARET] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2816), - [anon_sym_LT_DASH] = ACTIONS(2816), - [anon_sym_LT_LT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(2816), - [anon_sym_GT_GT_GT] = ACTIONS(2816), - [anon_sym_AMP_CARET] = ACTIONS(2816), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_PIPE_PIPE] = ACTIONS(2816), - [anon_sym_or] = ACTIONS(2816), - [sym_none] = ACTIONS(2816), - [sym_true] = ACTIONS(2816), - [sym_false] = ACTIONS(2816), - [sym_nil] = ACTIONS(2816), - [anon_sym_QMARK_DOT] = ACTIONS(2816), - [anon_sym_POUND_LBRACK] = ACTIONS(2816), - [anon_sym_if] = ACTIONS(2816), - [anon_sym_DOLLARif] = ACTIONS(2816), - [anon_sym_is] = ACTIONS(2816), - [anon_sym_BANGis] = ACTIONS(2816), - [anon_sym_in] = ACTIONS(2816), - [anon_sym_BANGin] = ACTIONS(2816), - [anon_sym_match] = ACTIONS(2816), - [anon_sym_select] = ACTIONS(2816), - [anon_sym_STAR_EQ] = ACTIONS(2816), - [anon_sym_SLASH_EQ] = ACTIONS(2816), - [anon_sym_PERCENT_EQ] = ACTIONS(2816), - [anon_sym_LT_LT_EQ] = ACTIONS(2816), - [anon_sym_GT_GT_EQ] = ACTIONS(2816), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2816), - [anon_sym_AMP_EQ] = ACTIONS(2816), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2816), - [anon_sym_PLUS_EQ] = ACTIONS(2816), - [anon_sym_DASH_EQ] = ACTIONS(2816), - [anon_sym_PIPE_EQ] = ACTIONS(2816), - [anon_sym_CARET_EQ] = ACTIONS(2816), - [anon_sym_COLON_EQ] = ACTIONS(2816), - [anon_sym_lock] = ACTIONS(2816), - [anon_sym_rlock] = ACTIONS(2816), - [anon_sym_unsafe] = ACTIONS(2816), - [anon_sym_sql] = ACTIONS(2816), - [sym_int_literal] = ACTIONS(2816), - [sym_float_literal] = ACTIONS(2816), - [sym_rune_literal] = ACTIONS(2816), - [anon_sym_AT] = ACTIONS(2816), - [anon_sym_shared] = ACTIONS(2816), - [anon_sym_map_LBRACK] = ACTIONS(2816), - [anon_sym_chan] = ACTIONS(2816), - [anon_sym_thread] = ACTIONS(2816), - [anon_sym_atomic] = ACTIONS(2816), - [anon_sym_assert] = ACTIONS(2816), - [anon_sym_defer] = ACTIONS(2816), - [anon_sym_goto] = ACTIONS(2816), - [anon_sym_break] = ACTIONS(2816), - [anon_sym_continue] = ACTIONS(2816), - [anon_sym_return] = ACTIONS(2816), - [anon_sym_DOLLARfor] = ACTIONS(2816), - [anon_sym_for] = ACTIONS(2816), - [anon_sym_POUND] = ACTIONS(2816), - [anon_sym_asm] = ACTIONS(2816), - [anon_sym_AT_LBRACK] = ACTIONS(2816), - [sym___double_quote] = ACTIONS(2816), - [sym___single_quote] = ACTIONS(2816), - [sym___c_double_quote] = ACTIONS(2816), - [sym___c_single_quote] = ACTIONS(2816), - [sym___r_double_quote] = ACTIONS(2816), - [sym___r_single_quote] = ACTIONS(2816), + [ts_builtin_sym_end] = ACTIONS(2804), + [sym_identifier] = ACTIONS(2806), + [anon_sym_LF] = ACTIONS(2806), + [anon_sym_CR] = ACTIONS(2806), + [anon_sym_CR_LF] = ACTIONS(2806), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2806), + [anon_sym_as] = ACTIONS(2806), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_COMMA] = ACTIONS(2806), + [anon_sym_const] = ACTIONS(2806), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_EQ] = ACTIONS(2806), + [anon_sym___global] = ACTIONS(2806), + [anon_sym_type] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2806), + [anon_sym_PLUS] = ACTIONS(2806), + [anon_sym_DASH] = ACTIONS(2806), + [anon_sym_STAR] = ACTIONS(2806), + [anon_sym_SLASH] = ACTIONS(2806), + [anon_sym_PERCENT] = ACTIONS(2806), + [anon_sym_LT] = ACTIONS(2806), + [anon_sym_GT] = ACTIONS(2806), + [anon_sym_EQ_EQ] = ACTIONS(2806), + [anon_sym_BANG_EQ] = ACTIONS(2806), + [anon_sym_LT_EQ] = ACTIONS(2806), + [anon_sym_GT_EQ] = ACTIONS(2806), + [anon_sym_LBRACK] = ACTIONS(2804), + [anon_sym_struct] = ACTIONS(2806), + [anon_sym_union] = ACTIONS(2806), + [anon_sym_pub] = ACTIONS(2806), + [anon_sym_mut] = ACTIONS(2806), + [anon_sym_enum] = ACTIONS(2806), + [anon_sym_interface] = ACTIONS(2806), + [anon_sym_PLUS_PLUS] = ACTIONS(2806), + [anon_sym_DASH_DASH] = ACTIONS(2806), + [anon_sym_QMARK] = ACTIONS(2806), + [anon_sym_BANG] = ACTIONS(2806), + [anon_sym_go] = ACTIONS(2806), + [anon_sym_spawn] = ACTIONS(2806), + [anon_sym_json_DOTdecode] = ACTIONS(2806), + [anon_sym_LBRACK2] = ACTIONS(2806), + [anon_sym_TILDE] = ACTIONS(2806), + [anon_sym_CARET] = ACTIONS(2806), + [anon_sym_AMP] = ACTIONS(2806), + [anon_sym_LT_DASH] = ACTIONS(2806), + [anon_sym_LT_LT] = ACTIONS(2806), + [anon_sym_GT_GT] = ACTIONS(2806), + [anon_sym_GT_GT_GT] = ACTIONS(2806), + [anon_sym_AMP_CARET] = ACTIONS(2806), + [anon_sym_AMP_AMP] = ACTIONS(2806), + [anon_sym_PIPE_PIPE] = ACTIONS(2806), + [anon_sym_or] = ACTIONS(2806), + [sym_none] = ACTIONS(2806), + [sym_true] = ACTIONS(2806), + [sym_false] = ACTIONS(2806), + [sym_nil] = ACTIONS(2806), + [anon_sym_QMARK_DOT] = ACTIONS(2806), + [anon_sym_POUND_LBRACK] = ACTIONS(2806), + [anon_sym_if] = ACTIONS(2806), + [anon_sym_DOLLARif] = ACTIONS(2806), + [anon_sym_is] = ACTIONS(2806), + [anon_sym_BANGis] = ACTIONS(2806), + [anon_sym_in] = ACTIONS(2806), + [anon_sym_BANGin] = ACTIONS(2806), + [anon_sym_match] = ACTIONS(2806), + [anon_sym_select] = ACTIONS(2806), + [anon_sym_STAR_EQ] = ACTIONS(2806), + [anon_sym_SLASH_EQ] = ACTIONS(2806), + [anon_sym_PERCENT_EQ] = ACTIONS(2806), + [anon_sym_LT_LT_EQ] = ACTIONS(2806), + [anon_sym_GT_GT_EQ] = ACTIONS(2806), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2806), + [anon_sym_AMP_EQ] = ACTIONS(2806), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2806), + [anon_sym_PLUS_EQ] = ACTIONS(2806), + [anon_sym_DASH_EQ] = ACTIONS(2806), + [anon_sym_PIPE_EQ] = ACTIONS(2806), + [anon_sym_CARET_EQ] = ACTIONS(2806), + [anon_sym_COLON_EQ] = ACTIONS(2806), + [anon_sym_lock] = ACTIONS(2806), + [anon_sym_rlock] = ACTIONS(2806), + [anon_sym_unsafe] = ACTIONS(2806), + [anon_sym_sql] = ACTIONS(2806), + [sym_int_literal] = ACTIONS(2806), + [sym_float_literal] = ACTIONS(2806), + [sym_rune_literal] = ACTIONS(2806), + [anon_sym_AT] = ACTIONS(2806), + [anon_sym_shared] = ACTIONS(2806), + [anon_sym_map_LBRACK] = ACTIONS(2806), + [anon_sym_chan] = ACTIONS(2806), + [anon_sym_thread] = ACTIONS(2806), + [anon_sym_atomic] = ACTIONS(2806), + [anon_sym_assert] = ACTIONS(2806), + [anon_sym_defer] = ACTIONS(2806), + [anon_sym_goto] = ACTIONS(2806), + [anon_sym_break] = ACTIONS(2806), + [anon_sym_continue] = ACTIONS(2806), + [anon_sym_return] = ACTIONS(2806), + [anon_sym_DOLLARfor] = ACTIONS(2806), + [anon_sym_for] = ACTIONS(2806), + [anon_sym_POUND] = ACTIONS(2806), + [anon_sym_asm] = ACTIONS(2806), + [anon_sym_AT_LBRACK] = ACTIONS(2806), + [sym___double_quote] = ACTIONS(2806), + [sym___single_quote] = ACTIONS(2806), + [sym___c_double_quote] = ACTIONS(2806), + [sym___c_single_quote] = ACTIONS(2806), + [sym___r_double_quote] = ACTIONS(2806), + [sym___r_single_quote] = ACTIONS(2806), }, [856] = { - [ts_builtin_sym_end] = ACTIONS(2818), - [sym_identifier] = ACTIONS(2820), - [anon_sym_LF] = ACTIONS(2820), - [anon_sym_CR] = ACTIONS(2820), - [anon_sym_CR_LF] = ACTIONS(2820), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2820), - [anon_sym_as] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2820), - [anon_sym_COMMA] = ACTIONS(2820), - [anon_sym_const] = ACTIONS(2820), - [anon_sym_LPAREN] = ACTIONS(2820), - [anon_sym_EQ] = ACTIONS(2820), - [anon_sym___global] = ACTIONS(2820), - [anon_sym_type] = ACTIONS(2820), - [anon_sym_PIPE] = ACTIONS(2820), - [anon_sym_fn] = ACTIONS(2820), - [anon_sym_PLUS] = ACTIONS(2820), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_STAR] = ACTIONS(2820), - [anon_sym_SLASH] = ACTIONS(2820), - [anon_sym_PERCENT] = ACTIONS(2820), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_GT] = ACTIONS(2820), - [anon_sym_EQ_EQ] = ACTIONS(2820), - [anon_sym_BANG_EQ] = ACTIONS(2820), - [anon_sym_LT_EQ] = ACTIONS(2820), - [anon_sym_GT_EQ] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2820), - [anon_sym_union] = ACTIONS(2820), - [anon_sym_pub] = ACTIONS(2820), - [anon_sym_mut] = ACTIONS(2820), - [anon_sym_enum] = ACTIONS(2820), - [anon_sym_interface] = ACTIONS(2820), - [anon_sym_PLUS_PLUS] = ACTIONS(2820), - [anon_sym_DASH_DASH] = ACTIONS(2820), - [anon_sym_QMARK] = ACTIONS(2820), - [anon_sym_BANG] = ACTIONS(2820), - [anon_sym_go] = ACTIONS(2820), - [anon_sym_spawn] = ACTIONS(2820), - [anon_sym_json_DOTdecode] = ACTIONS(2820), - [anon_sym_LBRACK2] = ACTIONS(2820), - [anon_sym_TILDE] = ACTIONS(2820), - [anon_sym_CARET] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2820), - [anon_sym_LT_DASH] = ACTIONS(2820), - [anon_sym_LT_LT] = ACTIONS(2820), - [anon_sym_GT_GT] = ACTIONS(2820), - [anon_sym_GT_GT_GT] = ACTIONS(2820), - [anon_sym_AMP_CARET] = ACTIONS(2820), - [anon_sym_AMP_AMP] = ACTIONS(2820), - [anon_sym_PIPE_PIPE] = ACTIONS(2820), - [anon_sym_or] = ACTIONS(2820), - [sym_none] = ACTIONS(2820), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [sym_nil] = ACTIONS(2820), - [anon_sym_QMARK_DOT] = ACTIONS(2820), - [anon_sym_POUND_LBRACK] = ACTIONS(2820), - [anon_sym_if] = ACTIONS(2820), - [anon_sym_DOLLARif] = ACTIONS(2820), - [anon_sym_is] = ACTIONS(2820), - [anon_sym_BANGis] = ACTIONS(2820), - [anon_sym_in] = ACTIONS(2820), - [anon_sym_BANGin] = ACTIONS(2820), - [anon_sym_match] = ACTIONS(2820), - [anon_sym_select] = ACTIONS(2820), - [anon_sym_STAR_EQ] = ACTIONS(2820), - [anon_sym_SLASH_EQ] = ACTIONS(2820), - [anon_sym_PERCENT_EQ] = ACTIONS(2820), - [anon_sym_LT_LT_EQ] = ACTIONS(2820), - [anon_sym_GT_GT_EQ] = ACTIONS(2820), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2820), - [anon_sym_AMP_EQ] = ACTIONS(2820), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2820), - [anon_sym_PLUS_EQ] = ACTIONS(2820), - [anon_sym_DASH_EQ] = ACTIONS(2820), - [anon_sym_PIPE_EQ] = ACTIONS(2820), - [anon_sym_CARET_EQ] = ACTIONS(2820), - [anon_sym_COLON_EQ] = ACTIONS(2820), - [anon_sym_lock] = ACTIONS(2820), - [anon_sym_rlock] = ACTIONS(2820), - [anon_sym_unsafe] = ACTIONS(2820), - [anon_sym_sql] = ACTIONS(2820), - [sym_int_literal] = ACTIONS(2820), - [sym_float_literal] = ACTIONS(2820), - [sym_rune_literal] = ACTIONS(2820), - [anon_sym_AT] = ACTIONS(2820), - [anon_sym_shared] = ACTIONS(2820), - [anon_sym_map_LBRACK] = ACTIONS(2820), - [anon_sym_chan] = ACTIONS(2820), - [anon_sym_thread] = ACTIONS(2820), - [anon_sym_atomic] = ACTIONS(2820), - [anon_sym_assert] = ACTIONS(2820), - [anon_sym_defer] = ACTIONS(2820), - [anon_sym_goto] = ACTIONS(2820), - [anon_sym_break] = ACTIONS(2820), - [anon_sym_continue] = ACTIONS(2820), - [anon_sym_return] = ACTIONS(2820), - [anon_sym_DOLLARfor] = ACTIONS(2820), - [anon_sym_for] = ACTIONS(2820), - [anon_sym_POUND] = ACTIONS(2820), - [anon_sym_asm] = ACTIONS(2820), - [anon_sym_AT_LBRACK] = ACTIONS(2820), - [sym___double_quote] = ACTIONS(2820), - [sym___single_quote] = ACTIONS(2820), - [sym___c_double_quote] = ACTIONS(2820), - [sym___c_single_quote] = ACTIONS(2820), - [sym___r_double_quote] = ACTIONS(2820), - [sym___r_single_quote] = ACTIONS(2820), + [ts_builtin_sym_end] = ACTIONS(2808), + [sym_identifier] = ACTIONS(2810), + [anon_sym_LF] = ACTIONS(2810), + [anon_sym_CR] = ACTIONS(2810), + [anon_sym_CR_LF] = ACTIONS(2810), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2810), + [anon_sym_as] = ACTIONS(2810), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_COMMA] = ACTIONS(2810), + [anon_sym_const] = ACTIONS(2810), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_EQ] = ACTIONS(2810), + [anon_sym___global] = ACTIONS(2810), + [anon_sym_type] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_fn] = ACTIONS(2810), + [anon_sym_PLUS] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_STAR] = ACTIONS(2810), + [anon_sym_SLASH] = ACTIONS(2810), + [anon_sym_PERCENT] = ACTIONS(2810), + [anon_sym_LT] = ACTIONS(2810), + [anon_sym_GT] = ACTIONS(2810), + [anon_sym_EQ_EQ] = ACTIONS(2810), + [anon_sym_BANG_EQ] = ACTIONS(2810), + [anon_sym_LT_EQ] = ACTIONS(2810), + [anon_sym_GT_EQ] = ACTIONS(2810), + [anon_sym_LBRACK] = ACTIONS(2808), + [anon_sym_struct] = ACTIONS(2810), + [anon_sym_union] = ACTIONS(2810), + [anon_sym_pub] = ACTIONS(2810), + [anon_sym_mut] = ACTIONS(2810), + [anon_sym_enum] = ACTIONS(2810), + [anon_sym_interface] = ACTIONS(2810), + [anon_sym_PLUS_PLUS] = ACTIONS(2810), + [anon_sym_DASH_DASH] = ACTIONS(2810), + [anon_sym_QMARK] = ACTIONS(2810), + [anon_sym_BANG] = ACTIONS(2810), + [anon_sym_go] = ACTIONS(2810), + [anon_sym_spawn] = ACTIONS(2810), + [anon_sym_json_DOTdecode] = ACTIONS(2810), + [anon_sym_LBRACK2] = ACTIONS(2810), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2810), + [anon_sym_LT_DASH] = ACTIONS(2810), + [anon_sym_LT_LT] = ACTIONS(2810), + [anon_sym_GT_GT] = ACTIONS(2810), + [anon_sym_GT_GT_GT] = ACTIONS(2810), + [anon_sym_AMP_CARET] = ACTIONS(2810), + [anon_sym_AMP_AMP] = ACTIONS(2810), + [anon_sym_PIPE_PIPE] = ACTIONS(2810), + [anon_sym_or] = ACTIONS(2810), + [sym_none] = ACTIONS(2810), + [sym_true] = ACTIONS(2810), + [sym_false] = ACTIONS(2810), + [sym_nil] = ACTIONS(2810), + [anon_sym_QMARK_DOT] = ACTIONS(2810), + [anon_sym_POUND_LBRACK] = ACTIONS(2810), + [anon_sym_if] = ACTIONS(2810), + [anon_sym_DOLLARif] = ACTIONS(2810), + [anon_sym_is] = ACTIONS(2810), + [anon_sym_BANGis] = ACTIONS(2810), + [anon_sym_in] = ACTIONS(2810), + [anon_sym_BANGin] = ACTIONS(2810), + [anon_sym_match] = ACTIONS(2810), + [anon_sym_select] = ACTIONS(2810), + [anon_sym_STAR_EQ] = ACTIONS(2810), + [anon_sym_SLASH_EQ] = ACTIONS(2810), + [anon_sym_PERCENT_EQ] = ACTIONS(2810), + [anon_sym_LT_LT_EQ] = ACTIONS(2810), + [anon_sym_GT_GT_EQ] = ACTIONS(2810), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2810), + [anon_sym_AMP_EQ] = ACTIONS(2810), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2810), + [anon_sym_PLUS_EQ] = ACTIONS(2810), + [anon_sym_DASH_EQ] = ACTIONS(2810), + [anon_sym_PIPE_EQ] = ACTIONS(2810), + [anon_sym_CARET_EQ] = ACTIONS(2810), + [anon_sym_COLON_EQ] = ACTIONS(2810), + [anon_sym_lock] = ACTIONS(2810), + [anon_sym_rlock] = ACTIONS(2810), + [anon_sym_unsafe] = ACTIONS(2810), + [anon_sym_sql] = ACTIONS(2810), + [sym_int_literal] = ACTIONS(2810), + [sym_float_literal] = ACTIONS(2810), + [sym_rune_literal] = ACTIONS(2810), + [anon_sym_AT] = ACTIONS(2810), + [anon_sym_shared] = ACTIONS(2810), + [anon_sym_map_LBRACK] = ACTIONS(2810), + [anon_sym_chan] = ACTIONS(2810), + [anon_sym_thread] = ACTIONS(2810), + [anon_sym_atomic] = ACTIONS(2810), + [anon_sym_assert] = ACTIONS(2810), + [anon_sym_defer] = ACTIONS(2810), + [anon_sym_goto] = ACTIONS(2810), + [anon_sym_break] = ACTIONS(2810), + [anon_sym_continue] = ACTIONS(2810), + [anon_sym_return] = ACTIONS(2810), + [anon_sym_DOLLARfor] = ACTIONS(2810), + [anon_sym_for] = ACTIONS(2810), + [anon_sym_POUND] = ACTIONS(2810), + [anon_sym_asm] = ACTIONS(2810), + [anon_sym_AT_LBRACK] = ACTIONS(2810), + [sym___double_quote] = ACTIONS(2810), + [sym___single_quote] = ACTIONS(2810), + [sym___c_double_quote] = ACTIONS(2810), + [sym___c_single_quote] = ACTIONS(2810), + [sym___r_double_quote] = ACTIONS(2810), + [sym___r_single_quote] = ACTIONS(2810), }, [857] = { - [ts_builtin_sym_end] = ACTIONS(2822), - [sym_identifier] = ACTIONS(2824), - [anon_sym_LF] = ACTIONS(2824), - [anon_sym_CR] = ACTIONS(2824), - [anon_sym_CR_LF] = ACTIONS(2824), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2824), - [anon_sym_as] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2824), - [anon_sym_COMMA] = ACTIONS(2824), - [anon_sym_const] = ACTIONS(2824), - [anon_sym_LPAREN] = ACTIONS(2824), - [anon_sym_EQ] = ACTIONS(2824), - [anon_sym___global] = ACTIONS(2824), - [anon_sym_type] = ACTIONS(2824), - [anon_sym_PIPE] = ACTIONS(2824), - [anon_sym_fn] = ACTIONS(2824), - [anon_sym_PLUS] = ACTIONS(2824), - [anon_sym_DASH] = ACTIONS(2824), - [anon_sym_STAR] = ACTIONS(2824), - [anon_sym_SLASH] = ACTIONS(2824), - [anon_sym_PERCENT] = ACTIONS(2824), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_GT] = ACTIONS(2824), - [anon_sym_EQ_EQ] = ACTIONS(2824), - [anon_sym_BANG_EQ] = ACTIONS(2824), - [anon_sym_LT_EQ] = ACTIONS(2824), - [anon_sym_GT_EQ] = ACTIONS(2824), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_struct] = ACTIONS(2824), - [anon_sym_union] = ACTIONS(2824), - [anon_sym_pub] = ACTIONS(2824), - [anon_sym_mut] = ACTIONS(2824), - [anon_sym_enum] = ACTIONS(2824), - [anon_sym_interface] = ACTIONS(2824), - [anon_sym_PLUS_PLUS] = ACTIONS(2824), - [anon_sym_DASH_DASH] = ACTIONS(2824), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_BANG] = ACTIONS(2824), - [anon_sym_go] = ACTIONS(2824), - [anon_sym_spawn] = ACTIONS(2824), - [anon_sym_json_DOTdecode] = ACTIONS(2824), - [anon_sym_LBRACK2] = ACTIONS(2824), - [anon_sym_TILDE] = ACTIONS(2824), - [anon_sym_CARET] = ACTIONS(2824), - [anon_sym_AMP] = ACTIONS(2824), - [anon_sym_LT_DASH] = ACTIONS(2824), - [anon_sym_LT_LT] = ACTIONS(2824), - [anon_sym_GT_GT] = ACTIONS(2824), - [anon_sym_GT_GT_GT] = ACTIONS(2824), - [anon_sym_AMP_CARET] = ACTIONS(2824), - [anon_sym_AMP_AMP] = ACTIONS(2824), - [anon_sym_PIPE_PIPE] = ACTIONS(2824), - [anon_sym_or] = ACTIONS(2824), - [sym_none] = ACTIONS(2824), - [sym_true] = ACTIONS(2824), - [sym_false] = ACTIONS(2824), - [sym_nil] = ACTIONS(2824), - [anon_sym_QMARK_DOT] = ACTIONS(2824), - [anon_sym_POUND_LBRACK] = ACTIONS(2824), - [anon_sym_if] = ACTIONS(2824), - [anon_sym_DOLLARif] = ACTIONS(2824), - [anon_sym_is] = ACTIONS(2824), - [anon_sym_BANGis] = ACTIONS(2824), - [anon_sym_in] = ACTIONS(2824), - [anon_sym_BANGin] = ACTIONS(2824), - [anon_sym_match] = ACTIONS(2824), - [anon_sym_select] = ACTIONS(2824), - [anon_sym_STAR_EQ] = ACTIONS(2824), - [anon_sym_SLASH_EQ] = ACTIONS(2824), - [anon_sym_PERCENT_EQ] = ACTIONS(2824), - [anon_sym_LT_LT_EQ] = ACTIONS(2824), - [anon_sym_GT_GT_EQ] = ACTIONS(2824), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2824), - [anon_sym_AMP_EQ] = ACTIONS(2824), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2824), - [anon_sym_PLUS_EQ] = ACTIONS(2824), - [anon_sym_DASH_EQ] = ACTIONS(2824), - [anon_sym_PIPE_EQ] = ACTIONS(2824), - [anon_sym_CARET_EQ] = ACTIONS(2824), - [anon_sym_COLON_EQ] = ACTIONS(2824), - [anon_sym_lock] = ACTIONS(2824), - [anon_sym_rlock] = ACTIONS(2824), - [anon_sym_unsafe] = ACTIONS(2824), - [anon_sym_sql] = ACTIONS(2824), - [sym_int_literal] = ACTIONS(2824), - [sym_float_literal] = ACTIONS(2824), - [sym_rune_literal] = ACTIONS(2824), - [anon_sym_AT] = ACTIONS(2824), - [anon_sym_shared] = ACTIONS(2824), - [anon_sym_map_LBRACK] = ACTIONS(2824), - [anon_sym_chan] = ACTIONS(2824), - [anon_sym_thread] = ACTIONS(2824), - [anon_sym_atomic] = ACTIONS(2824), - [anon_sym_assert] = ACTIONS(2824), - [anon_sym_defer] = ACTIONS(2824), - [anon_sym_goto] = ACTIONS(2824), - [anon_sym_break] = ACTIONS(2824), - [anon_sym_continue] = ACTIONS(2824), - [anon_sym_return] = ACTIONS(2824), - [anon_sym_DOLLARfor] = ACTIONS(2824), - [anon_sym_for] = ACTIONS(2824), - [anon_sym_POUND] = ACTIONS(2824), - [anon_sym_asm] = ACTIONS(2824), - [anon_sym_AT_LBRACK] = ACTIONS(2824), - [sym___double_quote] = ACTIONS(2824), - [sym___single_quote] = ACTIONS(2824), - [sym___c_double_quote] = ACTIONS(2824), - [sym___c_single_quote] = ACTIONS(2824), - [sym___r_double_quote] = ACTIONS(2824), - [sym___r_single_quote] = ACTIONS(2824), + [ts_builtin_sym_end] = ACTIONS(2812), + [sym_identifier] = ACTIONS(2814), + [anon_sym_LF] = ACTIONS(2814), + [anon_sym_CR] = ACTIONS(2814), + [anon_sym_CR_LF] = ACTIONS(2814), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2814), + [anon_sym_as] = ACTIONS(2814), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_COMMA] = ACTIONS(2814), + [anon_sym_const] = ACTIONS(2814), + [anon_sym_LPAREN] = ACTIONS(2814), + [anon_sym_EQ] = ACTIONS(2814), + [anon_sym___global] = ACTIONS(2814), + [anon_sym_type] = ACTIONS(2814), + [anon_sym_PIPE] = ACTIONS(2814), + [anon_sym_fn] = ACTIONS(2814), + [anon_sym_PLUS] = ACTIONS(2814), + [anon_sym_DASH] = ACTIONS(2814), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_SLASH] = ACTIONS(2814), + [anon_sym_PERCENT] = ACTIONS(2814), + [anon_sym_LT] = ACTIONS(2814), + [anon_sym_GT] = ACTIONS(2814), + [anon_sym_EQ_EQ] = ACTIONS(2814), + [anon_sym_BANG_EQ] = ACTIONS(2814), + [anon_sym_LT_EQ] = ACTIONS(2814), + [anon_sym_GT_EQ] = ACTIONS(2814), + [anon_sym_LBRACK] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2814), + [anon_sym_union] = ACTIONS(2814), + [anon_sym_pub] = ACTIONS(2814), + [anon_sym_mut] = ACTIONS(2814), + [anon_sym_enum] = ACTIONS(2814), + [anon_sym_interface] = ACTIONS(2814), + [anon_sym_PLUS_PLUS] = ACTIONS(2814), + [anon_sym_DASH_DASH] = ACTIONS(2814), + [anon_sym_QMARK] = ACTIONS(2814), + [anon_sym_BANG] = ACTIONS(2814), + [anon_sym_go] = ACTIONS(2814), + [anon_sym_spawn] = ACTIONS(2814), + [anon_sym_json_DOTdecode] = ACTIONS(2814), + [anon_sym_LBRACK2] = ACTIONS(2814), + [anon_sym_TILDE] = ACTIONS(2814), + [anon_sym_CARET] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2814), + [anon_sym_LT_DASH] = ACTIONS(2814), + [anon_sym_LT_LT] = ACTIONS(2814), + [anon_sym_GT_GT] = ACTIONS(2814), + [anon_sym_GT_GT_GT] = ACTIONS(2814), + [anon_sym_AMP_CARET] = ACTIONS(2814), + [anon_sym_AMP_AMP] = ACTIONS(2814), + [anon_sym_PIPE_PIPE] = ACTIONS(2814), + [anon_sym_or] = ACTIONS(2814), + [sym_none] = ACTIONS(2814), + [sym_true] = ACTIONS(2814), + [sym_false] = ACTIONS(2814), + [sym_nil] = ACTIONS(2814), + [anon_sym_QMARK_DOT] = ACTIONS(2814), + [anon_sym_POUND_LBRACK] = ACTIONS(2814), + [anon_sym_if] = ACTIONS(2814), + [anon_sym_DOLLARif] = ACTIONS(2814), + [anon_sym_is] = ACTIONS(2814), + [anon_sym_BANGis] = ACTIONS(2814), + [anon_sym_in] = ACTIONS(2814), + [anon_sym_BANGin] = ACTIONS(2814), + [anon_sym_match] = ACTIONS(2814), + [anon_sym_select] = ACTIONS(2814), + [anon_sym_STAR_EQ] = ACTIONS(2814), + [anon_sym_SLASH_EQ] = ACTIONS(2814), + [anon_sym_PERCENT_EQ] = ACTIONS(2814), + [anon_sym_LT_LT_EQ] = ACTIONS(2814), + [anon_sym_GT_GT_EQ] = ACTIONS(2814), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2814), + [anon_sym_AMP_EQ] = ACTIONS(2814), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2814), + [anon_sym_PLUS_EQ] = ACTIONS(2814), + [anon_sym_DASH_EQ] = ACTIONS(2814), + [anon_sym_PIPE_EQ] = ACTIONS(2814), + [anon_sym_CARET_EQ] = ACTIONS(2814), + [anon_sym_COLON_EQ] = ACTIONS(2814), + [anon_sym_lock] = ACTIONS(2814), + [anon_sym_rlock] = ACTIONS(2814), + [anon_sym_unsafe] = ACTIONS(2814), + [anon_sym_sql] = ACTIONS(2814), + [sym_int_literal] = ACTIONS(2814), + [sym_float_literal] = ACTIONS(2814), + [sym_rune_literal] = ACTIONS(2814), + [anon_sym_AT] = ACTIONS(2814), + [anon_sym_shared] = ACTIONS(2814), + [anon_sym_map_LBRACK] = ACTIONS(2814), + [anon_sym_chan] = ACTIONS(2814), + [anon_sym_thread] = ACTIONS(2814), + [anon_sym_atomic] = ACTIONS(2814), + [anon_sym_assert] = ACTIONS(2814), + [anon_sym_defer] = ACTIONS(2814), + [anon_sym_goto] = ACTIONS(2814), + [anon_sym_break] = ACTIONS(2814), + [anon_sym_continue] = ACTIONS(2814), + [anon_sym_return] = ACTIONS(2814), + [anon_sym_DOLLARfor] = ACTIONS(2814), + [anon_sym_for] = ACTIONS(2814), + [anon_sym_POUND] = ACTIONS(2814), + [anon_sym_asm] = ACTIONS(2814), + [anon_sym_AT_LBRACK] = ACTIONS(2814), + [sym___double_quote] = ACTIONS(2814), + [sym___single_quote] = ACTIONS(2814), + [sym___c_double_quote] = ACTIONS(2814), + [sym___c_single_quote] = ACTIONS(2814), + [sym___r_double_quote] = ACTIONS(2814), + [sym___r_single_quote] = ACTIONS(2814), }, [858] = { - [ts_builtin_sym_end] = ACTIONS(2826), - [sym_identifier] = ACTIONS(2828), - [anon_sym_LF] = ACTIONS(2828), - [anon_sym_CR] = ACTIONS(2828), - [anon_sym_CR_LF] = ACTIONS(2828), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2828), - [anon_sym_as] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2828), - [anon_sym_COMMA] = ACTIONS(2828), - [anon_sym_const] = ACTIONS(2828), - [anon_sym_LPAREN] = ACTIONS(2828), - [anon_sym_EQ] = ACTIONS(2828), - [anon_sym___global] = ACTIONS(2828), - [anon_sym_type] = ACTIONS(2828), - [anon_sym_PIPE] = ACTIONS(2828), - [anon_sym_fn] = ACTIONS(2828), - [anon_sym_PLUS] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_SLASH] = ACTIONS(2828), - [anon_sym_PERCENT] = ACTIONS(2828), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_GT] = ACTIONS(2828), - [anon_sym_EQ_EQ] = ACTIONS(2828), - [anon_sym_BANG_EQ] = ACTIONS(2828), - [anon_sym_LT_EQ] = ACTIONS(2828), - [anon_sym_GT_EQ] = ACTIONS(2828), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2828), - [anon_sym_union] = ACTIONS(2828), - [anon_sym_pub] = ACTIONS(2828), - [anon_sym_mut] = ACTIONS(2828), - [anon_sym_enum] = ACTIONS(2828), - [anon_sym_interface] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2828), - [anon_sym_DASH_DASH] = ACTIONS(2828), - [anon_sym_QMARK] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_go] = ACTIONS(2828), - [anon_sym_spawn] = ACTIONS(2828), - [anon_sym_json_DOTdecode] = ACTIONS(2828), - [anon_sym_LBRACK2] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_CARET] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2828), - [anon_sym_LT_DASH] = ACTIONS(2828), - [anon_sym_LT_LT] = ACTIONS(2828), - [anon_sym_GT_GT] = ACTIONS(2828), - [anon_sym_GT_GT_GT] = ACTIONS(2828), - [anon_sym_AMP_CARET] = ACTIONS(2828), - [anon_sym_AMP_AMP] = ACTIONS(2828), - [anon_sym_PIPE_PIPE] = ACTIONS(2828), - [anon_sym_or] = ACTIONS(2828), - [sym_none] = ACTIONS(2828), - [sym_true] = ACTIONS(2828), - [sym_false] = ACTIONS(2828), - [sym_nil] = ACTIONS(2828), - [anon_sym_QMARK_DOT] = ACTIONS(2828), - [anon_sym_POUND_LBRACK] = ACTIONS(2828), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_DOLLARif] = ACTIONS(2828), - [anon_sym_is] = ACTIONS(2828), - [anon_sym_BANGis] = ACTIONS(2828), - [anon_sym_in] = ACTIONS(2828), - [anon_sym_BANGin] = ACTIONS(2828), - [anon_sym_match] = ACTIONS(2828), - [anon_sym_select] = ACTIONS(2828), - [anon_sym_STAR_EQ] = ACTIONS(2828), - [anon_sym_SLASH_EQ] = ACTIONS(2828), - [anon_sym_PERCENT_EQ] = ACTIONS(2828), - [anon_sym_LT_LT_EQ] = ACTIONS(2828), - [anon_sym_GT_GT_EQ] = ACTIONS(2828), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2828), - [anon_sym_AMP_EQ] = ACTIONS(2828), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2828), - [anon_sym_PLUS_EQ] = ACTIONS(2828), - [anon_sym_DASH_EQ] = ACTIONS(2828), - [anon_sym_PIPE_EQ] = ACTIONS(2828), - [anon_sym_CARET_EQ] = ACTIONS(2828), - [anon_sym_COLON_EQ] = ACTIONS(2828), - [anon_sym_lock] = ACTIONS(2828), - [anon_sym_rlock] = ACTIONS(2828), - [anon_sym_unsafe] = ACTIONS(2828), - [anon_sym_sql] = ACTIONS(2828), - [sym_int_literal] = ACTIONS(2828), - [sym_float_literal] = ACTIONS(2828), - [sym_rune_literal] = ACTIONS(2828), - [anon_sym_AT] = ACTIONS(2828), - [anon_sym_shared] = ACTIONS(2828), - [anon_sym_map_LBRACK] = ACTIONS(2828), - [anon_sym_chan] = ACTIONS(2828), - [anon_sym_thread] = ACTIONS(2828), - [anon_sym_atomic] = ACTIONS(2828), - [anon_sym_assert] = ACTIONS(2828), - [anon_sym_defer] = ACTIONS(2828), - [anon_sym_goto] = ACTIONS(2828), - [anon_sym_break] = ACTIONS(2828), - [anon_sym_continue] = ACTIONS(2828), - [anon_sym_return] = ACTIONS(2828), - [anon_sym_DOLLARfor] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2828), - [anon_sym_POUND] = ACTIONS(2828), - [anon_sym_asm] = ACTIONS(2828), - [anon_sym_AT_LBRACK] = ACTIONS(2828), - [sym___double_quote] = ACTIONS(2828), - [sym___single_quote] = ACTIONS(2828), - [sym___c_double_quote] = ACTIONS(2828), - [sym___c_single_quote] = ACTIONS(2828), - [sym___r_double_quote] = ACTIONS(2828), - [sym___r_single_quote] = ACTIONS(2828), + [ts_builtin_sym_end] = ACTIONS(2816), + [sym_identifier] = ACTIONS(2818), + [anon_sym_LF] = ACTIONS(2818), + [anon_sym_CR] = ACTIONS(2818), + [anon_sym_CR_LF] = ACTIONS(2818), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2818), + [anon_sym_as] = ACTIONS(2818), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_COMMA] = ACTIONS(2818), + [anon_sym_const] = ACTIONS(2818), + [anon_sym_LPAREN] = ACTIONS(2818), + [anon_sym_EQ] = ACTIONS(2818), + [anon_sym___global] = ACTIONS(2818), + [anon_sym_type] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_fn] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2818), + [anon_sym_DASH] = ACTIONS(2818), + [anon_sym_STAR] = ACTIONS(2818), + [anon_sym_SLASH] = ACTIONS(2818), + [anon_sym_PERCENT] = ACTIONS(2818), + [anon_sym_LT] = ACTIONS(2818), + [anon_sym_GT] = ACTIONS(2818), + [anon_sym_EQ_EQ] = ACTIONS(2818), + [anon_sym_BANG_EQ] = ACTIONS(2818), + [anon_sym_LT_EQ] = ACTIONS(2818), + [anon_sym_GT_EQ] = ACTIONS(2818), + [anon_sym_LBRACK] = ACTIONS(2816), + [anon_sym_struct] = ACTIONS(2818), + [anon_sym_union] = ACTIONS(2818), + [anon_sym_pub] = ACTIONS(2818), + [anon_sym_mut] = ACTIONS(2818), + [anon_sym_enum] = ACTIONS(2818), + [anon_sym_interface] = ACTIONS(2818), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_DASH_DASH] = ACTIONS(2818), + [anon_sym_QMARK] = ACTIONS(2818), + [anon_sym_BANG] = ACTIONS(2818), + [anon_sym_go] = ACTIONS(2818), + [anon_sym_spawn] = ACTIONS(2818), + [anon_sym_json_DOTdecode] = ACTIONS(2818), + [anon_sym_LBRACK2] = ACTIONS(2818), + [anon_sym_TILDE] = ACTIONS(2818), + [anon_sym_CARET] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2818), + [anon_sym_LT_DASH] = ACTIONS(2818), + [anon_sym_LT_LT] = ACTIONS(2818), + [anon_sym_GT_GT] = ACTIONS(2818), + [anon_sym_GT_GT_GT] = ACTIONS(2818), + [anon_sym_AMP_CARET] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2818), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_or] = ACTIONS(2818), + [sym_none] = ACTIONS(2818), + [sym_true] = ACTIONS(2818), + [sym_false] = ACTIONS(2818), + [sym_nil] = ACTIONS(2818), + [anon_sym_QMARK_DOT] = ACTIONS(2818), + [anon_sym_POUND_LBRACK] = ACTIONS(2818), + [anon_sym_if] = ACTIONS(2818), + [anon_sym_DOLLARif] = ACTIONS(2818), + [anon_sym_is] = ACTIONS(2818), + [anon_sym_BANGis] = ACTIONS(2818), + [anon_sym_in] = ACTIONS(2818), + [anon_sym_BANGin] = ACTIONS(2818), + [anon_sym_match] = ACTIONS(2818), + [anon_sym_select] = ACTIONS(2818), + [anon_sym_STAR_EQ] = ACTIONS(2818), + [anon_sym_SLASH_EQ] = ACTIONS(2818), + [anon_sym_PERCENT_EQ] = ACTIONS(2818), + [anon_sym_LT_LT_EQ] = ACTIONS(2818), + [anon_sym_GT_GT_EQ] = ACTIONS(2818), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2818), + [anon_sym_AMP_EQ] = ACTIONS(2818), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2818), + [anon_sym_PLUS_EQ] = ACTIONS(2818), + [anon_sym_DASH_EQ] = ACTIONS(2818), + [anon_sym_PIPE_EQ] = ACTIONS(2818), + [anon_sym_CARET_EQ] = ACTIONS(2818), + [anon_sym_COLON_EQ] = ACTIONS(2818), + [anon_sym_lock] = ACTIONS(2818), + [anon_sym_rlock] = ACTIONS(2818), + [anon_sym_unsafe] = ACTIONS(2818), + [anon_sym_sql] = ACTIONS(2818), + [sym_int_literal] = ACTIONS(2818), + [sym_float_literal] = ACTIONS(2818), + [sym_rune_literal] = ACTIONS(2818), + [anon_sym_AT] = ACTIONS(2818), + [anon_sym_shared] = ACTIONS(2818), + [anon_sym_map_LBRACK] = ACTIONS(2818), + [anon_sym_chan] = ACTIONS(2818), + [anon_sym_thread] = ACTIONS(2818), + [anon_sym_atomic] = ACTIONS(2818), + [anon_sym_assert] = ACTIONS(2818), + [anon_sym_defer] = ACTIONS(2818), + [anon_sym_goto] = ACTIONS(2818), + [anon_sym_break] = ACTIONS(2818), + [anon_sym_continue] = ACTIONS(2818), + [anon_sym_return] = ACTIONS(2818), + [anon_sym_DOLLARfor] = ACTIONS(2818), + [anon_sym_for] = ACTIONS(2818), + [anon_sym_POUND] = ACTIONS(2818), + [anon_sym_asm] = ACTIONS(2818), + [anon_sym_AT_LBRACK] = ACTIONS(2818), + [sym___double_quote] = ACTIONS(2818), + [sym___single_quote] = ACTIONS(2818), + [sym___c_double_quote] = ACTIONS(2818), + [sym___c_single_quote] = ACTIONS(2818), + [sym___r_double_quote] = ACTIONS(2818), + [sym___r_single_quote] = ACTIONS(2818), }, [859] = { - [ts_builtin_sym_end] = ACTIONS(2830), - [sym_identifier] = ACTIONS(2832), - [anon_sym_LF] = ACTIONS(2832), - [anon_sym_CR] = ACTIONS(2832), - [anon_sym_CR_LF] = ACTIONS(2832), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2832), - [anon_sym_as] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym_const] = ACTIONS(2832), - [anon_sym_LPAREN] = ACTIONS(2832), - [anon_sym_EQ] = ACTIONS(2832), - [anon_sym___global] = ACTIONS(2832), - [anon_sym_type] = ACTIONS(2832), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_fn] = ACTIONS(2832), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2832), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_PERCENT] = ACTIONS(2832), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_EQ_EQ] = ACTIONS(2832), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_LT_EQ] = ACTIONS(2832), - [anon_sym_GT_EQ] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_struct] = ACTIONS(2832), - [anon_sym_union] = ACTIONS(2832), - [anon_sym_pub] = ACTIONS(2832), - [anon_sym_mut] = ACTIONS(2832), - [anon_sym_enum] = ACTIONS(2832), - [anon_sym_interface] = ACTIONS(2832), - [anon_sym_PLUS_PLUS] = ACTIONS(2832), - [anon_sym_DASH_DASH] = ACTIONS(2832), - [anon_sym_QMARK] = ACTIONS(2832), - [anon_sym_BANG] = ACTIONS(2832), - [anon_sym_go] = ACTIONS(2832), - [anon_sym_spawn] = ACTIONS(2832), - [anon_sym_json_DOTdecode] = ACTIONS(2832), - [anon_sym_LBRACK2] = ACTIONS(2832), - [anon_sym_TILDE] = ACTIONS(2832), - [anon_sym_CARET] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2832), - [anon_sym_LT_DASH] = ACTIONS(2832), - [anon_sym_LT_LT] = ACTIONS(2832), - [anon_sym_GT_GT] = ACTIONS(2832), - [anon_sym_GT_GT_GT] = ACTIONS(2832), - [anon_sym_AMP_CARET] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(2832), - [anon_sym_PIPE_PIPE] = ACTIONS(2832), - [anon_sym_or] = ACTIONS(2832), - [sym_none] = ACTIONS(2832), - [sym_true] = ACTIONS(2832), - [sym_false] = ACTIONS(2832), - [sym_nil] = ACTIONS(2832), - [anon_sym_QMARK_DOT] = ACTIONS(2832), - [anon_sym_POUND_LBRACK] = ACTIONS(2832), - [anon_sym_if] = ACTIONS(2832), - [anon_sym_DOLLARif] = ACTIONS(2832), - [anon_sym_is] = ACTIONS(2832), - [anon_sym_BANGis] = ACTIONS(2832), - [anon_sym_in] = ACTIONS(2832), - [anon_sym_BANGin] = ACTIONS(2832), - [anon_sym_match] = ACTIONS(2832), - [anon_sym_select] = ACTIONS(2832), - [anon_sym_STAR_EQ] = ACTIONS(2832), - [anon_sym_SLASH_EQ] = ACTIONS(2832), - [anon_sym_PERCENT_EQ] = ACTIONS(2832), - [anon_sym_LT_LT_EQ] = ACTIONS(2832), - [anon_sym_GT_GT_EQ] = ACTIONS(2832), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2832), - [anon_sym_AMP_EQ] = ACTIONS(2832), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2832), - [anon_sym_PLUS_EQ] = ACTIONS(2832), - [anon_sym_DASH_EQ] = ACTIONS(2832), - [anon_sym_PIPE_EQ] = ACTIONS(2832), - [anon_sym_CARET_EQ] = ACTIONS(2832), - [anon_sym_COLON_EQ] = ACTIONS(2832), - [anon_sym_lock] = ACTIONS(2832), - [anon_sym_rlock] = ACTIONS(2832), - [anon_sym_unsafe] = ACTIONS(2832), - [anon_sym_sql] = ACTIONS(2832), - [sym_int_literal] = ACTIONS(2832), - [sym_float_literal] = ACTIONS(2832), - [sym_rune_literal] = ACTIONS(2832), - [anon_sym_AT] = ACTIONS(2832), - [anon_sym_shared] = ACTIONS(2832), - [anon_sym_map_LBRACK] = ACTIONS(2832), - [anon_sym_chan] = ACTIONS(2832), - [anon_sym_thread] = ACTIONS(2832), - [anon_sym_atomic] = ACTIONS(2832), - [anon_sym_assert] = ACTIONS(2832), - [anon_sym_defer] = ACTIONS(2832), - [anon_sym_goto] = ACTIONS(2832), - [anon_sym_break] = ACTIONS(2832), - [anon_sym_continue] = ACTIONS(2832), - [anon_sym_return] = ACTIONS(2832), - [anon_sym_DOLLARfor] = ACTIONS(2832), - [anon_sym_for] = ACTIONS(2832), - [anon_sym_POUND] = ACTIONS(2832), - [anon_sym_asm] = ACTIONS(2832), - [anon_sym_AT_LBRACK] = ACTIONS(2832), - [sym___double_quote] = ACTIONS(2832), - [sym___single_quote] = ACTIONS(2832), - [sym___c_double_quote] = ACTIONS(2832), - [sym___c_single_quote] = ACTIONS(2832), - [sym___r_double_quote] = ACTIONS(2832), - [sym___r_single_quote] = ACTIONS(2832), + [ts_builtin_sym_end] = ACTIONS(2820), + [sym_identifier] = ACTIONS(2822), + [anon_sym_LF] = ACTIONS(2822), + [anon_sym_CR] = ACTIONS(2822), + [anon_sym_CR_LF] = ACTIONS(2822), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2822), + [anon_sym_as] = ACTIONS(2822), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_COMMA] = ACTIONS(2822), + [anon_sym_const] = ACTIONS(2822), + [anon_sym_LPAREN] = ACTIONS(2822), + [anon_sym_EQ] = ACTIONS(2822), + [anon_sym___global] = ACTIONS(2822), + [anon_sym_type] = ACTIONS(2822), + [anon_sym_PIPE] = ACTIONS(2822), + [anon_sym_fn] = ACTIONS(2822), + [anon_sym_PLUS] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2822), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_SLASH] = ACTIONS(2822), + [anon_sym_PERCENT] = ACTIONS(2822), + [anon_sym_LT] = ACTIONS(2822), + [anon_sym_GT] = ACTIONS(2822), + [anon_sym_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ] = ACTIONS(2822), + [anon_sym_LT_EQ] = ACTIONS(2822), + [anon_sym_GT_EQ] = ACTIONS(2822), + [anon_sym_LBRACK] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2822), + [anon_sym_union] = ACTIONS(2822), + [anon_sym_pub] = ACTIONS(2822), + [anon_sym_mut] = ACTIONS(2822), + [anon_sym_enum] = ACTIONS(2822), + [anon_sym_interface] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [anon_sym_QMARK] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_go] = ACTIONS(2822), + [anon_sym_spawn] = ACTIONS(2822), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_CARET] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_LT_DASH] = ACTIONS(2822), + [anon_sym_LT_LT] = ACTIONS(2822), + [anon_sym_GT_GT] = ACTIONS(2822), + [anon_sym_GT_GT_GT] = ACTIONS(2822), + [anon_sym_AMP_CARET] = ACTIONS(2822), + [anon_sym_AMP_AMP] = ACTIONS(2822), + [anon_sym_PIPE_PIPE] = ACTIONS(2822), + [anon_sym_or] = ACTIONS(2822), + [sym_none] = ACTIONS(2822), + [sym_true] = ACTIONS(2822), + [sym_false] = ACTIONS(2822), + [sym_nil] = ACTIONS(2822), + [anon_sym_QMARK_DOT] = ACTIONS(2822), + [anon_sym_POUND_LBRACK] = ACTIONS(2822), + [anon_sym_if] = ACTIONS(2822), + [anon_sym_DOLLARif] = ACTIONS(2822), + [anon_sym_is] = ACTIONS(2822), + [anon_sym_BANGis] = ACTIONS(2822), + [anon_sym_in] = ACTIONS(2822), + [anon_sym_BANGin] = ACTIONS(2822), + [anon_sym_match] = ACTIONS(2822), + [anon_sym_select] = ACTIONS(2822), + [anon_sym_STAR_EQ] = ACTIONS(2822), + [anon_sym_SLASH_EQ] = ACTIONS(2822), + [anon_sym_PERCENT_EQ] = ACTIONS(2822), + [anon_sym_LT_LT_EQ] = ACTIONS(2822), + [anon_sym_GT_GT_EQ] = ACTIONS(2822), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2822), + [anon_sym_AMP_EQ] = ACTIONS(2822), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2822), + [anon_sym_PLUS_EQ] = ACTIONS(2822), + [anon_sym_DASH_EQ] = ACTIONS(2822), + [anon_sym_PIPE_EQ] = ACTIONS(2822), + [anon_sym_CARET_EQ] = ACTIONS(2822), + [anon_sym_COLON_EQ] = ACTIONS(2822), + [anon_sym_lock] = ACTIONS(2822), + [anon_sym_rlock] = ACTIONS(2822), + [anon_sym_unsafe] = ACTIONS(2822), + [anon_sym_sql] = ACTIONS(2822), + [sym_int_literal] = ACTIONS(2822), + [sym_float_literal] = ACTIONS(2822), + [sym_rune_literal] = ACTIONS(2822), + [anon_sym_AT] = ACTIONS(2822), + [anon_sym_shared] = ACTIONS(2822), + [anon_sym_map_LBRACK] = ACTIONS(2822), + [anon_sym_chan] = ACTIONS(2822), + [anon_sym_thread] = ACTIONS(2822), + [anon_sym_atomic] = ACTIONS(2822), + [anon_sym_assert] = ACTIONS(2822), + [anon_sym_defer] = ACTIONS(2822), + [anon_sym_goto] = ACTIONS(2822), + [anon_sym_break] = ACTIONS(2822), + [anon_sym_continue] = ACTIONS(2822), + [anon_sym_return] = ACTIONS(2822), + [anon_sym_DOLLARfor] = ACTIONS(2822), + [anon_sym_for] = ACTIONS(2822), + [anon_sym_POUND] = ACTIONS(2822), + [anon_sym_asm] = ACTIONS(2822), + [anon_sym_AT_LBRACK] = ACTIONS(2822), + [sym___double_quote] = ACTIONS(2822), + [sym___single_quote] = ACTIONS(2822), + [sym___c_double_quote] = ACTIONS(2822), + [sym___c_single_quote] = ACTIONS(2822), + [sym___r_double_quote] = ACTIONS(2822), + [sym___r_single_quote] = ACTIONS(2822), }, [860] = { - [ts_builtin_sym_end] = ACTIONS(2834), - [sym_identifier] = ACTIONS(2836), - [anon_sym_LF] = ACTIONS(2836), - [anon_sym_CR] = ACTIONS(2836), - [anon_sym_CR_LF] = ACTIONS(2836), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2836), - [anon_sym_as] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2836), - [anon_sym_COMMA] = ACTIONS(2836), - [anon_sym_const] = ACTIONS(2836), - [anon_sym_LPAREN] = ACTIONS(2836), - [anon_sym_EQ] = ACTIONS(2836), - [anon_sym___global] = ACTIONS(2836), - [anon_sym_type] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_fn] = ACTIONS(2836), - [anon_sym_PLUS] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2836), - [anon_sym_STAR] = ACTIONS(2836), - [anon_sym_SLASH] = ACTIONS(2836), - [anon_sym_PERCENT] = ACTIONS(2836), - [anon_sym_LT] = ACTIONS(2836), - [anon_sym_GT] = ACTIONS(2836), - [anon_sym_EQ_EQ] = ACTIONS(2836), - [anon_sym_BANG_EQ] = ACTIONS(2836), - [anon_sym_LT_EQ] = ACTIONS(2836), - [anon_sym_GT_EQ] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_struct] = ACTIONS(2836), - [anon_sym_union] = ACTIONS(2836), - [anon_sym_pub] = ACTIONS(2836), - [anon_sym_mut] = ACTIONS(2836), - [anon_sym_enum] = ACTIONS(2836), - [anon_sym_interface] = ACTIONS(2836), - [anon_sym_PLUS_PLUS] = ACTIONS(2836), - [anon_sym_DASH_DASH] = ACTIONS(2836), - [anon_sym_QMARK] = ACTIONS(2836), - [anon_sym_BANG] = ACTIONS(2836), - [anon_sym_go] = ACTIONS(2836), - [anon_sym_spawn] = ACTIONS(2836), - [anon_sym_json_DOTdecode] = ACTIONS(2836), - [anon_sym_LBRACK2] = ACTIONS(2836), - [anon_sym_TILDE] = ACTIONS(2836), - [anon_sym_CARET] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2836), - [anon_sym_LT_DASH] = ACTIONS(2836), - [anon_sym_LT_LT] = ACTIONS(2836), - [anon_sym_GT_GT] = ACTIONS(2836), - [anon_sym_GT_GT_GT] = ACTIONS(2836), - [anon_sym_AMP_CARET] = ACTIONS(2836), - [anon_sym_AMP_AMP] = ACTIONS(2836), - [anon_sym_PIPE_PIPE] = ACTIONS(2836), - [anon_sym_or] = ACTIONS(2836), - [sym_none] = ACTIONS(2836), - [sym_true] = ACTIONS(2836), - [sym_false] = ACTIONS(2836), - [sym_nil] = ACTIONS(2836), - [anon_sym_QMARK_DOT] = ACTIONS(2836), - [anon_sym_POUND_LBRACK] = ACTIONS(2836), - [anon_sym_if] = ACTIONS(2836), - [anon_sym_DOLLARif] = ACTIONS(2836), - [anon_sym_is] = ACTIONS(2836), - [anon_sym_BANGis] = ACTIONS(2836), - [anon_sym_in] = ACTIONS(2836), - [anon_sym_BANGin] = ACTIONS(2836), - [anon_sym_match] = ACTIONS(2836), - [anon_sym_select] = ACTIONS(2836), - [anon_sym_STAR_EQ] = ACTIONS(2836), - [anon_sym_SLASH_EQ] = ACTIONS(2836), - [anon_sym_PERCENT_EQ] = ACTIONS(2836), - [anon_sym_LT_LT_EQ] = ACTIONS(2836), - [anon_sym_GT_GT_EQ] = ACTIONS(2836), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2836), - [anon_sym_AMP_EQ] = ACTIONS(2836), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2836), - [anon_sym_PLUS_EQ] = ACTIONS(2836), - [anon_sym_DASH_EQ] = ACTIONS(2836), - [anon_sym_PIPE_EQ] = ACTIONS(2836), - [anon_sym_CARET_EQ] = ACTIONS(2836), - [anon_sym_COLON_EQ] = ACTIONS(2836), - [anon_sym_lock] = ACTIONS(2836), - [anon_sym_rlock] = ACTIONS(2836), - [anon_sym_unsafe] = ACTIONS(2836), - [anon_sym_sql] = ACTIONS(2836), - [sym_int_literal] = ACTIONS(2836), - [sym_float_literal] = ACTIONS(2836), - [sym_rune_literal] = ACTIONS(2836), - [anon_sym_AT] = ACTIONS(2836), - [anon_sym_shared] = ACTIONS(2836), - [anon_sym_map_LBRACK] = ACTIONS(2836), - [anon_sym_chan] = ACTIONS(2836), - [anon_sym_thread] = ACTIONS(2836), - [anon_sym_atomic] = ACTIONS(2836), - [anon_sym_assert] = ACTIONS(2836), - [anon_sym_defer] = ACTIONS(2836), - [anon_sym_goto] = ACTIONS(2836), - [anon_sym_break] = ACTIONS(2836), - [anon_sym_continue] = ACTIONS(2836), - [anon_sym_return] = ACTIONS(2836), - [anon_sym_DOLLARfor] = ACTIONS(2836), - [anon_sym_for] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(2836), - [anon_sym_asm] = ACTIONS(2836), - [anon_sym_AT_LBRACK] = ACTIONS(2836), - [sym___double_quote] = ACTIONS(2836), - [sym___single_quote] = ACTIONS(2836), - [sym___c_double_quote] = ACTIONS(2836), - [sym___c_single_quote] = ACTIONS(2836), - [sym___r_double_quote] = ACTIONS(2836), - [sym___r_single_quote] = ACTIONS(2836), + [ts_builtin_sym_end] = ACTIONS(2824), + [sym_identifier] = ACTIONS(2826), + [anon_sym_LF] = ACTIONS(2826), + [anon_sym_CR] = ACTIONS(2826), + [anon_sym_CR_LF] = ACTIONS(2826), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2826), + [anon_sym_as] = ACTIONS(2826), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_COMMA] = ACTIONS(2826), + [anon_sym_const] = ACTIONS(2826), + [anon_sym_LPAREN] = ACTIONS(2826), + [anon_sym_EQ] = ACTIONS(2826), + [anon_sym___global] = ACTIONS(2826), + [anon_sym_type] = ACTIONS(2826), + [anon_sym_PIPE] = ACTIONS(2826), + [anon_sym_fn] = ACTIONS(2826), + [anon_sym_PLUS] = ACTIONS(2826), + [anon_sym_DASH] = ACTIONS(2826), + [anon_sym_STAR] = ACTIONS(2826), + [anon_sym_SLASH] = ACTIONS(2826), + [anon_sym_PERCENT] = ACTIONS(2826), + [anon_sym_LT] = ACTIONS(2826), + [anon_sym_GT] = ACTIONS(2826), + [anon_sym_EQ_EQ] = ACTIONS(2826), + [anon_sym_BANG_EQ] = ACTIONS(2826), + [anon_sym_LT_EQ] = ACTIONS(2826), + [anon_sym_GT_EQ] = ACTIONS(2826), + [anon_sym_LBRACK] = ACTIONS(2824), + [anon_sym_struct] = ACTIONS(2826), + [anon_sym_union] = ACTIONS(2826), + [anon_sym_pub] = ACTIONS(2826), + [anon_sym_mut] = ACTIONS(2826), + [anon_sym_enum] = ACTIONS(2826), + [anon_sym_interface] = ACTIONS(2826), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [anon_sym_QMARK] = ACTIONS(2826), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_go] = ACTIONS(2826), + [anon_sym_spawn] = ACTIONS(2826), + [anon_sym_json_DOTdecode] = ACTIONS(2826), + [anon_sym_LBRACK2] = ACTIONS(2826), + [anon_sym_TILDE] = ACTIONS(2826), + [anon_sym_CARET] = ACTIONS(2826), + [anon_sym_AMP] = ACTIONS(2826), + [anon_sym_LT_DASH] = ACTIONS(2826), + [anon_sym_LT_LT] = ACTIONS(2826), + [anon_sym_GT_GT] = ACTIONS(2826), + [anon_sym_GT_GT_GT] = ACTIONS(2826), + [anon_sym_AMP_CARET] = ACTIONS(2826), + [anon_sym_AMP_AMP] = ACTIONS(2826), + [anon_sym_PIPE_PIPE] = ACTIONS(2826), + [anon_sym_or] = ACTIONS(2826), + [sym_none] = ACTIONS(2826), + [sym_true] = ACTIONS(2826), + [sym_false] = ACTIONS(2826), + [sym_nil] = ACTIONS(2826), + [anon_sym_QMARK_DOT] = ACTIONS(2826), + [anon_sym_POUND_LBRACK] = ACTIONS(2826), + [anon_sym_if] = ACTIONS(2826), + [anon_sym_DOLLARif] = ACTIONS(2826), + [anon_sym_is] = ACTIONS(2826), + [anon_sym_BANGis] = ACTIONS(2826), + [anon_sym_in] = ACTIONS(2826), + [anon_sym_BANGin] = ACTIONS(2826), + [anon_sym_match] = ACTIONS(2826), + [anon_sym_select] = ACTIONS(2826), + [anon_sym_STAR_EQ] = ACTIONS(2826), + [anon_sym_SLASH_EQ] = ACTIONS(2826), + [anon_sym_PERCENT_EQ] = ACTIONS(2826), + [anon_sym_LT_LT_EQ] = ACTIONS(2826), + [anon_sym_GT_GT_EQ] = ACTIONS(2826), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2826), + [anon_sym_AMP_EQ] = ACTIONS(2826), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2826), + [anon_sym_PLUS_EQ] = ACTIONS(2826), + [anon_sym_DASH_EQ] = ACTIONS(2826), + [anon_sym_PIPE_EQ] = ACTIONS(2826), + [anon_sym_CARET_EQ] = ACTIONS(2826), + [anon_sym_COLON_EQ] = ACTIONS(2826), + [anon_sym_lock] = ACTIONS(2826), + [anon_sym_rlock] = ACTIONS(2826), + [anon_sym_unsafe] = ACTIONS(2826), + [anon_sym_sql] = ACTIONS(2826), + [sym_int_literal] = ACTIONS(2826), + [sym_float_literal] = ACTIONS(2826), + [sym_rune_literal] = ACTIONS(2826), + [anon_sym_AT] = ACTIONS(2826), + [anon_sym_shared] = ACTIONS(2826), + [anon_sym_map_LBRACK] = ACTIONS(2826), + [anon_sym_chan] = ACTIONS(2826), + [anon_sym_thread] = ACTIONS(2826), + [anon_sym_atomic] = ACTIONS(2826), + [anon_sym_assert] = ACTIONS(2826), + [anon_sym_defer] = ACTIONS(2826), + [anon_sym_goto] = ACTIONS(2826), + [anon_sym_break] = ACTIONS(2826), + [anon_sym_continue] = ACTIONS(2826), + [anon_sym_return] = ACTIONS(2826), + [anon_sym_DOLLARfor] = ACTIONS(2826), + [anon_sym_for] = ACTIONS(2826), + [anon_sym_POUND] = ACTIONS(2826), + [anon_sym_asm] = ACTIONS(2826), + [anon_sym_AT_LBRACK] = ACTIONS(2826), + [sym___double_quote] = ACTIONS(2826), + [sym___single_quote] = ACTIONS(2826), + [sym___c_double_quote] = ACTIONS(2826), + [sym___c_single_quote] = ACTIONS(2826), + [sym___r_double_quote] = ACTIONS(2826), + [sym___r_single_quote] = ACTIONS(2826), }, [861] = { - [ts_builtin_sym_end] = ACTIONS(2838), - [sym_identifier] = ACTIONS(2840), - [anon_sym_LF] = ACTIONS(2840), - [anon_sym_CR] = ACTIONS(2840), - [anon_sym_CR_LF] = ACTIONS(2840), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2840), - [anon_sym_as] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_COMMA] = ACTIONS(2840), - [anon_sym_const] = ACTIONS(2840), - [anon_sym_LPAREN] = ACTIONS(2840), - [anon_sym_EQ] = ACTIONS(2840), - [anon_sym___global] = ACTIONS(2840), - [anon_sym_type] = ACTIONS(2840), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_fn] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SLASH] = ACTIONS(2840), - [anon_sym_PERCENT] = ACTIONS(2840), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_GT] = ACTIONS(2840), - [anon_sym_EQ_EQ] = ACTIONS(2840), - [anon_sym_BANG_EQ] = ACTIONS(2840), - [anon_sym_LT_EQ] = ACTIONS(2840), - [anon_sym_GT_EQ] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_struct] = ACTIONS(2840), - [anon_sym_union] = ACTIONS(2840), - [anon_sym_pub] = ACTIONS(2840), - [anon_sym_mut] = ACTIONS(2840), - [anon_sym_enum] = ACTIONS(2840), - [anon_sym_interface] = ACTIONS(2840), - [anon_sym_PLUS_PLUS] = ACTIONS(2840), - [anon_sym_DASH_DASH] = ACTIONS(2840), - [anon_sym_QMARK] = ACTIONS(2840), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_go] = ACTIONS(2840), - [anon_sym_spawn] = ACTIONS(2840), - [anon_sym_json_DOTdecode] = ACTIONS(2840), - [anon_sym_LBRACK2] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2840), - [anon_sym_CARET] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2840), - [anon_sym_LT_DASH] = ACTIONS(2840), - [anon_sym_LT_LT] = ACTIONS(2840), - [anon_sym_GT_GT] = ACTIONS(2840), - [anon_sym_GT_GT_GT] = ACTIONS(2840), - [anon_sym_AMP_CARET] = ACTIONS(2840), - [anon_sym_AMP_AMP] = ACTIONS(2840), - [anon_sym_PIPE_PIPE] = ACTIONS(2840), - [anon_sym_or] = ACTIONS(2840), - [sym_none] = ACTIONS(2840), - [sym_true] = ACTIONS(2840), - [sym_false] = ACTIONS(2840), - [sym_nil] = ACTIONS(2840), - [anon_sym_QMARK_DOT] = ACTIONS(2840), - [anon_sym_POUND_LBRACK] = ACTIONS(2840), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_DOLLARif] = ACTIONS(2840), - [anon_sym_is] = ACTIONS(2840), - [anon_sym_BANGis] = ACTIONS(2840), - [anon_sym_in] = ACTIONS(2840), - [anon_sym_BANGin] = ACTIONS(2840), - [anon_sym_match] = ACTIONS(2840), - [anon_sym_select] = ACTIONS(2840), - [anon_sym_STAR_EQ] = ACTIONS(2840), - [anon_sym_SLASH_EQ] = ACTIONS(2840), - [anon_sym_PERCENT_EQ] = ACTIONS(2840), - [anon_sym_LT_LT_EQ] = ACTIONS(2840), - [anon_sym_GT_GT_EQ] = ACTIONS(2840), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2840), - [anon_sym_AMP_EQ] = ACTIONS(2840), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2840), - [anon_sym_PLUS_EQ] = ACTIONS(2840), - [anon_sym_DASH_EQ] = ACTIONS(2840), - [anon_sym_PIPE_EQ] = ACTIONS(2840), - [anon_sym_CARET_EQ] = ACTIONS(2840), - [anon_sym_COLON_EQ] = ACTIONS(2840), - [anon_sym_lock] = ACTIONS(2840), - [anon_sym_rlock] = ACTIONS(2840), - [anon_sym_unsafe] = ACTIONS(2840), - [anon_sym_sql] = ACTIONS(2840), - [sym_int_literal] = ACTIONS(2840), - [sym_float_literal] = ACTIONS(2840), - [sym_rune_literal] = ACTIONS(2840), - [anon_sym_AT] = ACTIONS(2840), - [anon_sym_shared] = ACTIONS(2840), - [anon_sym_map_LBRACK] = ACTIONS(2840), - [anon_sym_chan] = ACTIONS(2840), - [anon_sym_thread] = ACTIONS(2840), - [anon_sym_atomic] = ACTIONS(2840), - [anon_sym_assert] = ACTIONS(2840), - [anon_sym_defer] = ACTIONS(2840), - [anon_sym_goto] = ACTIONS(2840), - [anon_sym_break] = ACTIONS(2840), - [anon_sym_continue] = ACTIONS(2840), - [anon_sym_return] = ACTIONS(2840), - [anon_sym_DOLLARfor] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2840), - [anon_sym_POUND] = ACTIONS(2840), - [anon_sym_asm] = ACTIONS(2840), - [anon_sym_AT_LBRACK] = ACTIONS(2840), - [sym___double_quote] = ACTIONS(2840), - [sym___single_quote] = ACTIONS(2840), - [sym___c_double_quote] = ACTIONS(2840), - [sym___c_single_quote] = ACTIONS(2840), - [sym___r_double_quote] = ACTIONS(2840), - [sym___r_single_quote] = ACTIONS(2840), + [ts_builtin_sym_end] = ACTIONS(2828), + [sym_identifier] = ACTIONS(2830), + [anon_sym_LF] = ACTIONS(2830), + [anon_sym_CR] = ACTIONS(2830), + [anon_sym_CR_LF] = ACTIONS(2830), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2830), + [anon_sym_as] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_COMMA] = ACTIONS(2830), + [anon_sym_const] = ACTIONS(2830), + [anon_sym_LPAREN] = ACTIONS(2830), + [anon_sym_EQ] = ACTIONS(2830), + [anon_sym___global] = ACTIONS(2830), + [anon_sym_type] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_fn] = ACTIONS(2830), + [anon_sym_PLUS] = ACTIONS(2830), + [anon_sym_DASH] = ACTIONS(2830), + [anon_sym_STAR] = ACTIONS(2830), + [anon_sym_SLASH] = ACTIONS(2830), + [anon_sym_PERCENT] = ACTIONS(2830), + [anon_sym_LT] = ACTIONS(2830), + [anon_sym_GT] = ACTIONS(2830), + [anon_sym_EQ_EQ] = ACTIONS(2830), + [anon_sym_BANG_EQ] = ACTIONS(2830), + [anon_sym_LT_EQ] = ACTIONS(2830), + [anon_sym_GT_EQ] = ACTIONS(2830), + [anon_sym_LBRACK] = ACTIONS(2828), + [anon_sym_struct] = ACTIONS(2830), + [anon_sym_union] = ACTIONS(2830), + [anon_sym_pub] = ACTIONS(2830), + [anon_sym_mut] = ACTIONS(2830), + [anon_sym_enum] = ACTIONS(2830), + [anon_sym_interface] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2830), + [anon_sym_DASH_DASH] = ACTIONS(2830), + [anon_sym_QMARK] = ACTIONS(2830), + [anon_sym_BANG] = ACTIONS(2830), + [anon_sym_go] = ACTIONS(2830), + [anon_sym_spawn] = ACTIONS(2830), + [anon_sym_json_DOTdecode] = ACTIONS(2830), + [anon_sym_LBRACK2] = ACTIONS(2830), + [anon_sym_TILDE] = ACTIONS(2830), + [anon_sym_CARET] = ACTIONS(2830), + [anon_sym_AMP] = ACTIONS(2830), + [anon_sym_LT_DASH] = ACTIONS(2830), + [anon_sym_LT_LT] = ACTIONS(2830), + [anon_sym_GT_GT] = ACTIONS(2830), + [anon_sym_GT_GT_GT] = ACTIONS(2830), + [anon_sym_AMP_CARET] = ACTIONS(2830), + [anon_sym_AMP_AMP] = ACTIONS(2830), + [anon_sym_PIPE_PIPE] = ACTIONS(2830), + [anon_sym_or] = ACTIONS(2830), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_QMARK_DOT] = ACTIONS(2830), + [anon_sym_POUND_LBRACK] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2830), + [anon_sym_DOLLARif] = ACTIONS(2830), + [anon_sym_is] = ACTIONS(2830), + [anon_sym_BANGis] = ACTIONS(2830), + [anon_sym_in] = ACTIONS(2830), + [anon_sym_BANGin] = ACTIONS(2830), + [anon_sym_match] = ACTIONS(2830), + [anon_sym_select] = ACTIONS(2830), + [anon_sym_STAR_EQ] = ACTIONS(2830), + [anon_sym_SLASH_EQ] = ACTIONS(2830), + [anon_sym_PERCENT_EQ] = ACTIONS(2830), + [anon_sym_LT_LT_EQ] = ACTIONS(2830), + [anon_sym_GT_GT_EQ] = ACTIONS(2830), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2830), + [anon_sym_AMP_EQ] = ACTIONS(2830), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2830), + [anon_sym_PLUS_EQ] = ACTIONS(2830), + [anon_sym_DASH_EQ] = ACTIONS(2830), + [anon_sym_PIPE_EQ] = ACTIONS(2830), + [anon_sym_CARET_EQ] = ACTIONS(2830), + [anon_sym_COLON_EQ] = ACTIONS(2830), + [anon_sym_lock] = ACTIONS(2830), + [anon_sym_rlock] = ACTIONS(2830), + [anon_sym_unsafe] = ACTIONS(2830), + [anon_sym_sql] = ACTIONS(2830), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2830), + [sym_rune_literal] = ACTIONS(2830), + [anon_sym_AT] = ACTIONS(2830), + [anon_sym_shared] = ACTIONS(2830), + [anon_sym_map_LBRACK] = ACTIONS(2830), + [anon_sym_chan] = ACTIONS(2830), + [anon_sym_thread] = ACTIONS(2830), + [anon_sym_atomic] = ACTIONS(2830), + [anon_sym_assert] = ACTIONS(2830), + [anon_sym_defer] = ACTIONS(2830), + [anon_sym_goto] = ACTIONS(2830), + [anon_sym_break] = ACTIONS(2830), + [anon_sym_continue] = ACTIONS(2830), + [anon_sym_return] = ACTIONS(2830), + [anon_sym_DOLLARfor] = ACTIONS(2830), + [anon_sym_for] = ACTIONS(2830), + [anon_sym_POUND] = ACTIONS(2830), + [anon_sym_asm] = ACTIONS(2830), + [anon_sym_AT_LBRACK] = ACTIONS(2830), + [sym___double_quote] = ACTIONS(2830), + [sym___single_quote] = ACTIONS(2830), + [sym___c_double_quote] = ACTIONS(2830), + [sym___c_single_quote] = ACTIONS(2830), + [sym___r_double_quote] = ACTIONS(2830), + [sym___r_single_quote] = ACTIONS(2830), }, [862] = { - [ts_builtin_sym_end] = ACTIONS(2842), - [sym_identifier] = ACTIONS(2844), - [anon_sym_LF] = ACTIONS(2844), - [anon_sym_CR] = ACTIONS(2844), - [anon_sym_CR_LF] = ACTIONS(2844), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2844), - [anon_sym_as] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_COMMA] = ACTIONS(2844), - [anon_sym_const] = ACTIONS(2844), - [anon_sym_LPAREN] = ACTIONS(2844), - [anon_sym_EQ] = ACTIONS(2844), - [anon_sym___global] = ACTIONS(2844), - [anon_sym_type] = ACTIONS(2844), - [anon_sym_PIPE] = ACTIONS(2844), - [anon_sym_fn] = ACTIONS(2844), - [anon_sym_PLUS] = ACTIONS(2844), - [anon_sym_DASH] = ACTIONS(2844), - [anon_sym_STAR] = ACTIONS(2844), - [anon_sym_SLASH] = ACTIONS(2844), - [anon_sym_PERCENT] = ACTIONS(2844), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_GT] = ACTIONS(2844), - [anon_sym_EQ_EQ] = ACTIONS(2844), - [anon_sym_BANG_EQ] = ACTIONS(2844), - [anon_sym_LT_EQ] = ACTIONS(2844), - [anon_sym_GT_EQ] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_struct] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(2844), - [anon_sym_pub] = ACTIONS(2844), - [anon_sym_mut] = ACTIONS(2844), - [anon_sym_enum] = ACTIONS(2844), - [anon_sym_interface] = ACTIONS(2844), - [anon_sym_PLUS_PLUS] = ACTIONS(2844), - [anon_sym_DASH_DASH] = ACTIONS(2844), - [anon_sym_QMARK] = ACTIONS(2844), - [anon_sym_BANG] = ACTIONS(2844), - [anon_sym_go] = ACTIONS(2844), - [anon_sym_spawn] = ACTIONS(2844), - [anon_sym_json_DOTdecode] = ACTIONS(2844), - [anon_sym_LBRACK2] = ACTIONS(2844), - [anon_sym_TILDE] = ACTIONS(2844), - [anon_sym_CARET] = ACTIONS(2844), - [anon_sym_AMP] = ACTIONS(2844), - [anon_sym_LT_DASH] = ACTIONS(2844), - [anon_sym_LT_LT] = ACTIONS(2844), - [anon_sym_GT_GT] = ACTIONS(2844), - [anon_sym_GT_GT_GT] = ACTIONS(2844), - [anon_sym_AMP_CARET] = ACTIONS(2844), - [anon_sym_AMP_AMP] = ACTIONS(2844), - [anon_sym_PIPE_PIPE] = ACTIONS(2844), - [anon_sym_or] = ACTIONS(2844), - [sym_none] = ACTIONS(2844), - [sym_true] = ACTIONS(2844), - [sym_false] = ACTIONS(2844), - [sym_nil] = ACTIONS(2844), - [anon_sym_QMARK_DOT] = ACTIONS(2844), - [anon_sym_POUND_LBRACK] = ACTIONS(2844), - [anon_sym_if] = ACTIONS(2844), - [anon_sym_DOLLARif] = ACTIONS(2844), - [anon_sym_is] = ACTIONS(2844), - [anon_sym_BANGis] = ACTIONS(2844), - [anon_sym_in] = ACTIONS(2844), - [anon_sym_BANGin] = ACTIONS(2844), - [anon_sym_match] = ACTIONS(2844), - [anon_sym_select] = ACTIONS(2844), - [anon_sym_STAR_EQ] = ACTIONS(2844), - [anon_sym_SLASH_EQ] = ACTIONS(2844), - [anon_sym_PERCENT_EQ] = ACTIONS(2844), - [anon_sym_LT_LT_EQ] = ACTIONS(2844), - [anon_sym_GT_GT_EQ] = ACTIONS(2844), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2844), - [anon_sym_AMP_EQ] = ACTIONS(2844), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2844), - [anon_sym_PLUS_EQ] = ACTIONS(2844), - [anon_sym_DASH_EQ] = ACTIONS(2844), - [anon_sym_PIPE_EQ] = ACTIONS(2844), - [anon_sym_CARET_EQ] = ACTIONS(2844), - [anon_sym_COLON_EQ] = ACTIONS(2844), - [anon_sym_lock] = ACTIONS(2844), - [anon_sym_rlock] = ACTIONS(2844), - [anon_sym_unsafe] = ACTIONS(2844), - [anon_sym_sql] = ACTIONS(2844), - [sym_int_literal] = ACTIONS(2844), - [sym_float_literal] = ACTIONS(2844), - [sym_rune_literal] = ACTIONS(2844), - [anon_sym_AT] = ACTIONS(2844), - [anon_sym_shared] = ACTIONS(2844), - [anon_sym_map_LBRACK] = ACTIONS(2844), - [anon_sym_chan] = ACTIONS(2844), - [anon_sym_thread] = ACTIONS(2844), - [anon_sym_atomic] = ACTIONS(2844), - [anon_sym_assert] = ACTIONS(2844), - [anon_sym_defer] = ACTIONS(2844), - [anon_sym_goto] = ACTIONS(2844), - [anon_sym_break] = ACTIONS(2844), - [anon_sym_continue] = ACTIONS(2844), - [anon_sym_return] = ACTIONS(2844), - [anon_sym_DOLLARfor] = ACTIONS(2844), - [anon_sym_for] = ACTIONS(2844), - [anon_sym_POUND] = ACTIONS(2844), - [anon_sym_asm] = ACTIONS(2844), - [anon_sym_AT_LBRACK] = ACTIONS(2844), - [sym___double_quote] = ACTIONS(2844), - [sym___single_quote] = ACTIONS(2844), - [sym___c_double_quote] = ACTIONS(2844), - [sym___c_single_quote] = ACTIONS(2844), - [sym___r_double_quote] = ACTIONS(2844), - [sym___r_single_quote] = ACTIONS(2844), + [ts_builtin_sym_end] = ACTIONS(2832), + [sym_identifier] = ACTIONS(2834), + [anon_sym_LF] = ACTIONS(2834), + [anon_sym_CR] = ACTIONS(2834), + [anon_sym_CR_LF] = ACTIONS(2834), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2834), + [anon_sym_as] = ACTIONS(2834), + [anon_sym_LBRACE] = ACTIONS(2834), + [anon_sym_COMMA] = ACTIONS(2834), + [anon_sym_const] = ACTIONS(2834), + [anon_sym_LPAREN] = ACTIONS(2834), + [anon_sym_EQ] = ACTIONS(2834), + [anon_sym___global] = ACTIONS(2834), + [anon_sym_type] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_fn] = ACTIONS(2834), + [anon_sym_PLUS] = ACTIONS(2834), + [anon_sym_DASH] = ACTIONS(2834), + [anon_sym_STAR] = ACTIONS(2834), + [anon_sym_SLASH] = ACTIONS(2834), + [anon_sym_PERCENT] = ACTIONS(2834), + [anon_sym_LT] = ACTIONS(2834), + [anon_sym_GT] = ACTIONS(2834), + [anon_sym_EQ_EQ] = ACTIONS(2834), + [anon_sym_BANG_EQ] = ACTIONS(2834), + [anon_sym_LT_EQ] = ACTIONS(2834), + [anon_sym_GT_EQ] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2832), + [anon_sym_struct] = ACTIONS(2834), + [anon_sym_union] = ACTIONS(2834), + [anon_sym_pub] = ACTIONS(2834), + [anon_sym_mut] = ACTIONS(2834), + [anon_sym_enum] = ACTIONS(2834), + [anon_sym_interface] = ACTIONS(2834), + [anon_sym_PLUS_PLUS] = ACTIONS(2834), + [anon_sym_DASH_DASH] = ACTIONS(2834), + [anon_sym_QMARK] = ACTIONS(2834), + [anon_sym_BANG] = ACTIONS(2834), + [anon_sym_go] = ACTIONS(2834), + [anon_sym_spawn] = ACTIONS(2834), + [anon_sym_json_DOTdecode] = ACTIONS(2834), + [anon_sym_LBRACK2] = ACTIONS(2834), + [anon_sym_TILDE] = ACTIONS(2834), + [anon_sym_CARET] = ACTIONS(2834), + [anon_sym_AMP] = ACTIONS(2834), + [anon_sym_LT_DASH] = ACTIONS(2834), + [anon_sym_LT_LT] = ACTIONS(2834), + [anon_sym_GT_GT] = ACTIONS(2834), + [anon_sym_GT_GT_GT] = ACTIONS(2834), + [anon_sym_AMP_CARET] = ACTIONS(2834), + [anon_sym_AMP_AMP] = ACTIONS(2834), + [anon_sym_PIPE_PIPE] = ACTIONS(2834), + [anon_sym_or] = ACTIONS(2834), + [sym_none] = ACTIONS(2834), + [sym_true] = ACTIONS(2834), + [sym_false] = ACTIONS(2834), + [sym_nil] = ACTIONS(2834), + [anon_sym_QMARK_DOT] = ACTIONS(2834), + [anon_sym_POUND_LBRACK] = ACTIONS(2834), + [anon_sym_if] = ACTIONS(2834), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_is] = ACTIONS(2834), + [anon_sym_BANGis] = ACTIONS(2834), + [anon_sym_in] = ACTIONS(2834), + [anon_sym_BANGin] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2834), + [anon_sym_select] = ACTIONS(2834), + [anon_sym_STAR_EQ] = ACTIONS(2834), + [anon_sym_SLASH_EQ] = ACTIONS(2834), + [anon_sym_PERCENT_EQ] = ACTIONS(2834), + [anon_sym_LT_LT_EQ] = ACTIONS(2834), + [anon_sym_GT_GT_EQ] = ACTIONS(2834), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2834), + [anon_sym_AMP_EQ] = ACTIONS(2834), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2834), + [anon_sym_PLUS_EQ] = ACTIONS(2834), + [anon_sym_DASH_EQ] = ACTIONS(2834), + [anon_sym_PIPE_EQ] = ACTIONS(2834), + [anon_sym_CARET_EQ] = ACTIONS(2834), + [anon_sym_COLON_EQ] = ACTIONS(2834), + [anon_sym_lock] = ACTIONS(2834), + [anon_sym_rlock] = ACTIONS(2834), + [anon_sym_unsafe] = ACTIONS(2834), + [anon_sym_sql] = ACTIONS(2834), + [sym_int_literal] = ACTIONS(2834), + [sym_float_literal] = ACTIONS(2834), + [sym_rune_literal] = ACTIONS(2834), + [anon_sym_AT] = ACTIONS(2834), + [anon_sym_shared] = ACTIONS(2834), + [anon_sym_map_LBRACK] = ACTIONS(2834), + [anon_sym_chan] = ACTIONS(2834), + [anon_sym_thread] = ACTIONS(2834), + [anon_sym_atomic] = ACTIONS(2834), + [anon_sym_assert] = ACTIONS(2834), + [anon_sym_defer] = ACTIONS(2834), + [anon_sym_goto] = ACTIONS(2834), + [anon_sym_break] = ACTIONS(2834), + [anon_sym_continue] = ACTIONS(2834), + [anon_sym_return] = ACTIONS(2834), + [anon_sym_DOLLARfor] = ACTIONS(2834), + [anon_sym_for] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(2834), + [anon_sym_asm] = ACTIONS(2834), + [anon_sym_AT_LBRACK] = ACTIONS(2834), + [sym___double_quote] = ACTIONS(2834), + [sym___single_quote] = ACTIONS(2834), + [sym___c_double_quote] = ACTIONS(2834), + [sym___c_single_quote] = ACTIONS(2834), + [sym___r_double_quote] = ACTIONS(2834), + [sym___r_single_quote] = ACTIONS(2834), }, [863] = { - [ts_builtin_sym_end] = ACTIONS(2846), - [sym_identifier] = ACTIONS(2848), - [anon_sym_LF] = ACTIONS(2848), - [anon_sym_CR] = ACTIONS(2848), - [anon_sym_CR_LF] = ACTIONS(2848), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2848), - [anon_sym_as] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2848), - [anon_sym_COMMA] = ACTIONS(2848), - [anon_sym_const] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_EQ] = ACTIONS(2848), - [anon_sym___global] = ACTIONS(2848), - [anon_sym_type] = ACTIONS(2848), - [anon_sym_PIPE] = ACTIONS(2848), - [anon_sym_fn] = ACTIONS(2848), - [anon_sym_PLUS] = ACTIONS(2848), - [anon_sym_DASH] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2848), - [anon_sym_SLASH] = ACTIONS(2848), - [anon_sym_PERCENT] = ACTIONS(2848), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_GT] = ACTIONS(2848), - [anon_sym_EQ_EQ] = ACTIONS(2848), - [anon_sym_BANG_EQ] = ACTIONS(2848), - [anon_sym_LT_EQ] = ACTIONS(2848), - [anon_sym_GT_EQ] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2846), - [anon_sym_struct] = ACTIONS(2848), - [anon_sym_union] = ACTIONS(2848), - [anon_sym_pub] = ACTIONS(2848), - [anon_sym_mut] = ACTIONS(2848), - [anon_sym_enum] = ACTIONS(2848), - [anon_sym_interface] = ACTIONS(2848), - [anon_sym_PLUS_PLUS] = ACTIONS(2848), - [anon_sym_DASH_DASH] = ACTIONS(2848), - [anon_sym_QMARK] = ACTIONS(2848), - [anon_sym_BANG] = ACTIONS(2848), - [anon_sym_go] = ACTIONS(2848), - [anon_sym_spawn] = ACTIONS(2848), - [anon_sym_json_DOTdecode] = ACTIONS(2848), - [anon_sym_LBRACK2] = ACTIONS(2848), - [anon_sym_TILDE] = ACTIONS(2848), - [anon_sym_CARET] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2848), - [anon_sym_LT_DASH] = ACTIONS(2848), - [anon_sym_LT_LT] = ACTIONS(2848), - [anon_sym_GT_GT] = ACTIONS(2848), - [anon_sym_GT_GT_GT] = ACTIONS(2848), - [anon_sym_AMP_CARET] = ACTIONS(2848), - [anon_sym_AMP_AMP] = ACTIONS(2848), - [anon_sym_PIPE_PIPE] = ACTIONS(2848), - [anon_sym_or] = ACTIONS(2848), - [sym_none] = ACTIONS(2848), - [sym_true] = ACTIONS(2848), - [sym_false] = ACTIONS(2848), - [sym_nil] = ACTIONS(2848), - [anon_sym_QMARK_DOT] = ACTIONS(2848), - [anon_sym_POUND_LBRACK] = ACTIONS(2848), - [anon_sym_if] = ACTIONS(2848), - [anon_sym_DOLLARif] = ACTIONS(2848), - [anon_sym_is] = ACTIONS(2848), - [anon_sym_BANGis] = ACTIONS(2848), - [anon_sym_in] = ACTIONS(2848), - [anon_sym_BANGin] = ACTIONS(2848), - [anon_sym_match] = ACTIONS(2848), - [anon_sym_select] = ACTIONS(2848), - [anon_sym_STAR_EQ] = ACTIONS(2848), - [anon_sym_SLASH_EQ] = ACTIONS(2848), - [anon_sym_PERCENT_EQ] = ACTIONS(2848), - [anon_sym_LT_LT_EQ] = ACTIONS(2848), - [anon_sym_GT_GT_EQ] = ACTIONS(2848), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2848), - [anon_sym_AMP_EQ] = ACTIONS(2848), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2848), - [anon_sym_PLUS_EQ] = ACTIONS(2848), - [anon_sym_DASH_EQ] = ACTIONS(2848), - [anon_sym_PIPE_EQ] = ACTIONS(2848), - [anon_sym_CARET_EQ] = ACTIONS(2848), - [anon_sym_COLON_EQ] = ACTIONS(2848), - [anon_sym_lock] = ACTIONS(2848), - [anon_sym_rlock] = ACTIONS(2848), - [anon_sym_unsafe] = ACTIONS(2848), - [anon_sym_sql] = ACTIONS(2848), - [sym_int_literal] = ACTIONS(2848), - [sym_float_literal] = ACTIONS(2848), - [sym_rune_literal] = ACTIONS(2848), - [anon_sym_AT] = ACTIONS(2848), - [anon_sym_shared] = ACTIONS(2848), - [anon_sym_map_LBRACK] = ACTIONS(2848), - [anon_sym_chan] = ACTIONS(2848), - [anon_sym_thread] = ACTIONS(2848), - [anon_sym_atomic] = ACTIONS(2848), - [anon_sym_assert] = ACTIONS(2848), - [anon_sym_defer] = ACTIONS(2848), - [anon_sym_goto] = ACTIONS(2848), - [anon_sym_break] = ACTIONS(2848), - [anon_sym_continue] = ACTIONS(2848), - [anon_sym_return] = ACTIONS(2848), - [anon_sym_DOLLARfor] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2848), - [anon_sym_POUND] = ACTIONS(2848), - [anon_sym_asm] = ACTIONS(2848), - [anon_sym_AT_LBRACK] = ACTIONS(2848), - [sym___double_quote] = ACTIONS(2848), - [sym___single_quote] = ACTIONS(2848), - [sym___c_double_quote] = ACTIONS(2848), - [sym___c_single_quote] = ACTIONS(2848), - [sym___r_double_quote] = ACTIONS(2848), - [sym___r_single_quote] = ACTIONS(2848), + [ts_builtin_sym_end] = ACTIONS(2836), + [sym_identifier] = ACTIONS(2838), + [anon_sym_LF] = ACTIONS(2838), + [anon_sym_CR] = ACTIONS(2838), + [anon_sym_CR_LF] = ACTIONS(2838), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2838), + [anon_sym_as] = ACTIONS(2838), + [anon_sym_LBRACE] = ACTIONS(2838), + [anon_sym_COMMA] = ACTIONS(2838), + [anon_sym_const] = ACTIONS(2838), + [anon_sym_LPAREN] = ACTIONS(2838), + [anon_sym_EQ] = ACTIONS(2838), + [anon_sym___global] = ACTIONS(2838), + [anon_sym_type] = ACTIONS(2838), + [anon_sym_PIPE] = ACTIONS(2838), + [anon_sym_fn] = ACTIONS(2838), + [anon_sym_PLUS] = ACTIONS(2838), + [anon_sym_DASH] = ACTIONS(2838), + [anon_sym_STAR] = ACTIONS(2838), + [anon_sym_SLASH] = ACTIONS(2838), + [anon_sym_PERCENT] = ACTIONS(2838), + [anon_sym_LT] = ACTIONS(2838), + [anon_sym_GT] = ACTIONS(2838), + [anon_sym_EQ_EQ] = ACTIONS(2838), + [anon_sym_BANG_EQ] = ACTIONS(2838), + [anon_sym_LT_EQ] = ACTIONS(2838), + [anon_sym_GT_EQ] = ACTIONS(2838), + [anon_sym_LBRACK] = ACTIONS(2836), + [anon_sym_struct] = ACTIONS(2838), + [anon_sym_union] = ACTIONS(2838), + [anon_sym_pub] = ACTIONS(2838), + [anon_sym_mut] = ACTIONS(2838), + [anon_sym_enum] = ACTIONS(2838), + [anon_sym_interface] = ACTIONS(2838), + [anon_sym_PLUS_PLUS] = ACTIONS(2838), + [anon_sym_DASH_DASH] = ACTIONS(2838), + [anon_sym_QMARK] = ACTIONS(2838), + [anon_sym_BANG] = ACTIONS(2838), + [anon_sym_go] = ACTIONS(2838), + [anon_sym_spawn] = ACTIONS(2838), + [anon_sym_json_DOTdecode] = ACTIONS(2838), + [anon_sym_LBRACK2] = ACTIONS(2838), + [anon_sym_TILDE] = ACTIONS(2838), + [anon_sym_CARET] = ACTIONS(2838), + [anon_sym_AMP] = ACTIONS(2838), + [anon_sym_LT_DASH] = ACTIONS(2838), + [anon_sym_LT_LT] = ACTIONS(2838), + [anon_sym_GT_GT] = ACTIONS(2838), + [anon_sym_GT_GT_GT] = ACTIONS(2838), + [anon_sym_AMP_CARET] = ACTIONS(2838), + [anon_sym_AMP_AMP] = ACTIONS(2838), + [anon_sym_PIPE_PIPE] = ACTIONS(2838), + [anon_sym_or] = ACTIONS(2838), + [sym_none] = ACTIONS(2838), + [sym_true] = ACTIONS(2838), + [sym_false] = ACTIONS(2838), + [sym_nil] = ACTIONS(2838), + [anon_sym_QMARK_DOT] = ACTIONS(2838), + [anon_sym_POUND_LBRACK] = ACTIONS(2838), + [anon_sym_if] = ACTIONS(2838), + [anon_sym_DOLLARif] = ACTIONS(2838), + [anon_sym_is] = ACTIONS(2838), + [anon_sym_BANGis] = ACTIONS(2838), + [anon_sym_in] = ACTIONS(2838), + [anon_sym_BANGin] = ACTIONS(2838), + [anon_sym_match] = ACTIONS(2838), + [anon_sym_select] = ACTIONS(2838), + [anon_sym_STAR_EQ] = ACTIONS(2838), + [anon_sym_SLASH_EQ] = ACTIONS(2838), + [anon_sym_PERCENT_EQ] = ACTIONS(2838), + [anon_sym_LT_LT_EQ] = ACTIONS(2838), + [anon_sym_GT_GT_EQ] = ACTIONS(2838), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2838), + [anon_sym_AMP_EQ] = ACTIONS(2838), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2838), + [anon_sym_PLUS_EQ] = ACTIONS(2838), + [anon_sym_DASH_EQ] = ACTIONS(2838), + [anon_sym_PIPE_EQ] = ACTIONS(2838), + [anon_sym_CARET_EQ] = ACTIONS(2838), + [anon_sym_COLON_EQ] = ACTIONS(2838), + [anon_sym_lock] = ACTIONS(2838), + [anon_sym_rlock] = ACTIONS(2838), + [anon_sym_unsafe] = ACTIONS(2838), + [anon_sym_sql] = ACTIONS(2838), + [sym_int_literal] = ACTIONS(2838), + [sym_float_literal] = ACTIONS(2838), + [sym_rune_literal] = ACTIONS(2838), + [anon_sym_AT] = ACTIONS(2838), + [anon_sym_shared] = ACTIONS(2838), + [anon_sym_map_LBRACK] = ACTIONS(2838), + [anon_sym_chan] = ACTIONS(2838), + [anon_sym_thread] = ACTIONS(2838), + [anon_sym_atomic] = ACTIONS(2838), + [anon_sym_assert] = ACTIONS(2838), + [anon_sym_defer] = ACTIONS(2838), + [anon_sym_goto] = ACTIONS(2838), + [anon_sym_break] = ACTIONS(2838), + [anon_sym_continue] = ACTIONS(2838), + [anon_sym_return] = ACTIONS(2838), + [anon_sym_DOLLARfor] = ACTIONS(2838), + [anon_sym_for] = ACTIONS(2838), + [anon_sym_POUND] = ACTIONS(2838), + [anon_sym_asm] = ACTIONS(2838), + [anon_sym_AT_LBRACK] = ACTIONS(2838), + [sym___double_quote] = ACTIONS(2838), + [sym___single_quote] = ACTIONS(2838), + [sym___c_double_quote] = ACTIONS(2838), + [sym___c_single_quote] = ACTIONS(2838), + [sym___r_double_quote] = ACTIONS(2838), + [sym___r_single_quote] = ACTIONS(2838), }, [864] = { - [ts_builtin_sym_end] = ACTIONS(2768), - [sym_identifier] = ACTIONS(2766), - [anon_sym_LF] = ACTIONS(2766), - [anon_sym_CR] = ACTIONS(2766), - [anon_sym_CR_LF] = ACTIONS(2766), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2766), - [anon_sym_as] = ACTIONS(2766), - [anon_sym_LBRACE] = ACTIONS(2766), - [anon_sym_COMMA] = ACTIONS(2766), - [anon_sym_const] = ACTIONS(2766), - [anon_sym_LPAREN] = ACTIONS(2766), - [anon_sym_EQ] = ACTIONS(2766), - [anon_sym___global] = ACTIONS(2766), - [anon_sym_type] = ACTIONS(2766), - [anon_sym_PIPE] = ACTIONS(2766), - [anon_sym_fn] = ACTIONS(2766), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2766), - [anon_sym_SLASH] = ACTIONS(2766), - [anon_sym_PERCENT] = ACTIONS(2766), - [anon_sym_LT] = ACTIONS(2766), - [anon_sym_GT] = ACTIONS(2766), - [anon_sym_EQ_EQ] = ACTIONS(2766), - [anon_sym_BANG_EQ] = ACTIONS(2766), - [anon_sym_LT_EQ] = ACTIONS(2766), - [anon_sym_GT_EQ] = ACTIONS(2766), - [anon_sym_LBRACK] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2766), - [anon_sym_union] = ACTIONS(2766), - [anon_sym_pub] = ACTIONS(2766), - [anon_sym_mut] = ACTIONS(2766), - [anon_sym_enum] = ACTIONS(2766), - [anon_sym_interface] = ACTIONS(2766), - [anon_sym_PLUS_PLUS] = ACTIONS(2766), - [anon_sym_DASH_DASH] = ACTIONS(2766), - [anon_sym_QMARK] = ACTIONS(2766), - [anon_sym_BANG] = ACTIONS(2766), - [anon_sym_go] = ACTIONS(2766), - [anon_sym_spawn] = ACTIONS(2766), - [anon_sym_json_DOTdecode] = ACTIONS(2766), - [anon_sym_LBRACK2] = ACTIONS(2766), - [anon_sym_TILDE] = ACTIONS(2766), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2766), - [anon_sym_LT_DASH] = ACTIONS(2766), - [anon_sym_LT_LT] = ACTIONS(2766), - [anon_sym_GT_GT] = ACTIONS(2766), - [anon_sym_GT_GT_GT] = ACTIONS(2766), - [anon_sym_AMP_CARET] = ACTIONS(2766), - [anon_sym_AMP_AMP] = ACTIONS(2766), - [anon_sym_PIPE_PIPE] = ACTIONS(2766), - [anon_sym_or] = ACTIONS(2766), - [sym_none] = ACTIONS(2766), - [sym_true] = ACTIONS(2766), - [sym_false] = ACTIONS(2766), - [sym_nil] = ACTIONS(2766), - [anon_sym_QMARK_DOT] = ACTIONS(2766), - [anon_sym_POUND_LBRACK] = ACTIONS(2766), - [anon_sym_if] = ACTIONS(2766), - [anon_sym_DOLLARif] = ACTIONS(2766), - [anon_sym_is] = ACTIONS(2766), - [anon_sym_BANGis] = ACTIONS(2766), - [anon_sym_in] = ACTIONS(2766), - [anon_sym_BANGin] = ACTIONS(2766), - [anon_sym_match] = ACTIONS(2766), - [anon_sym_select] = ACTIONS(2766), - [anon_sym_STAR_EQ] = ACTIONS(2766), - [anon_sym_SLASH_EQ] = ACTIONS(2766), - [anon_sym_PERCENT_EQ] = ACTIONS(2766), - [anon_sym_LT_LT_EQ] = ACTIONS(2766), - [anon_sym_GT_GT_EQ] = ACTIONS(2766), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2766), - [anon_sym_AMP_EQ] = ACTIONS(2766), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2766), - [anon_sym_PLUS_EQ] = ACTIONS(2766), - [anon_sym_DASH_EQ] = ACTIONS(2766), - [anon_sym_PIPE_EQ] = ACTIONS(2766), - [anon_sym_CARET_EQ] = ACTIONS(2766), - [anon_sym_COLON_EQ] = ACTIONS(2766), - [anon_sym_lock] = ACTIONS(2766), - [anon_sym_rlock] = ACTIONS(2766), - [anon_sym_unsafe] = ACTIONS(2766), - [anon_sym_sql] = ACTIONS(2766), - [sym_int_literal] = ACTIONS(2766), - [sym_float_literal] = ACTIONS(2766), - [sym_rune_literal] = ACTIONS(2766), - [anon_sym_AT] = ACTIONS(2766), - [anon_sym_shared] = ACTIONS(2766), - [anon_sym_map_LBRACK] = ACTIONS(2766), - [anon_sym_chan] = ACTIONS(2766), - [anon_sym_thread] = ACTIONS(2766), - [anon_sym_atomic] = ACTIONS(2766), - [anon_sym_assert] = ACTIONS(2766), - [anon_sym_defer] = ACTIONS(2766), - [anon_sym_goto] = ACTIONS(2766), - [anon_sym_break] = ACTIONS(2766), - [anon_sym_continue] = ACTIONS(2766), - [anon_sym_return] = ACTIONS(2766), - [anon_sym_DOLLARfor] = ACTIONS(2766), - [anon_sym_for] = ACTIONS(2766), - [anon_sym_POUND] = ACTIONS(2766), - [anon_sym_asm] = ACTIONS(2766), - [anon_sym_AT_LBRACK] = ACTIONS(2766), - [sym___double_quote] = ACTIONS(2766), - [sym___single_quote] = ACTIONS(2766), - [sym___c_double_quote] = ACTIONS(2766), - [sym___c_single_quote] = ACTIONS(2766), - [sym___r_double_quote] = ACTIONS(2766), - [sym___r_single_quote] = ACTIONS(2766), + [ts_builtin_sym_end] = ACTIONS(2840), + [sym_identifier] = ACTIONS(2842), + [anon_sym_LF] = ACTIONS(2842), + [anon_sym_CR] = ACTIONS(2842), + [anon_sym_CR_LF] = ACTIONS(2842), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2842), + [anon_sym_as] = ACTIONS(2842), + [anon_sym_LBRACE] = ACTIONS(2842), + [anon_sym_COMMA] = ACTIONS(2842), + [anon_sym_const] = ACTIONS(2842), + [anon_sym_LPAREN] = ACTIONS(2842), + [anon_sym_EQ] = ACTIONS(2842), + [anon_sym___global] = ACTIONS(2842), + [anon_sym_type] = ACTIONS(2842), + [anon_sym_PIPE] = ACTIONS(2842), + [anon_sym_fn] = ACTIONS(2842), + [anon_sym_PLUS] = ACTIONS(2842), + [anon_sym_DASH] = ACTIONS(2842), + [anon_sym_STAR] = ACTIONS(2842), + [anon_sym_SLASH] = ACTIONS(2842), + [anon_sym_PERCENT] = ACTIONS(2842), + [anon_sym_LT] = ACTIONS(2842), + [anon_sym_GT] = ACTIONS(2842), + [anon_sym_EQ_EQ] = ACTIONS(2842), + [anon_sym_BANG_EQ] = ACTIONS(2842), + [anon_sym_LT_EQ] = ACTIONS(2842), + [anon_sym_GT_EQ] = ACTIONS(2842), + [anon_sym_LBRACK] = ACTIONS(2840), + [anon_sym_struct] = ACTIONS(2842), + [anon_sym_union] = ACTIONS(2842), + [anon_sym_pub] = ACTIONS(2842), + [anon_sym_mut] = ACTIONS(2842), + [anon_sym_enum] = ACTIONS(2842), + [anon_sym_interface] = ACTIONS(2842), + [anon_sym_PLUS_PLUS] = ACTIONS(2842), + [anon_sym_DASH_DASH] = ACTIONS(2842), + [anon_sym_QMARK] = ACTIONS(2842), + [anon_sym_BANG] = ACTIONS(2842), + [anon_sym_go] = ACTIONS(2842), + [anon_sym_spawn] = ACTIONS(2842), + [anon_sym_json_DOTdecode] = ACTIONS(2842), + [anon_sym_LBRACK2] = ACTIONS(2842), + [anon_sym_TILDE] = ACTIONS(2842), + [anon_sym_CARET] = ACTIONS(2842), + [anon_sym_AMP] = ACTIONS(2842), + [anon_sym_LT_DASH] = ACTIONS(2842), + [anon_sym_LT_LT] = ACTIONS(2842), + [anon_sym_GT_GT] = ACTIONS(2842), + [anon_sym_GT_GT_GT] = ACTIONS(2842), + [anon_sym_AMP_CARET] = ACTIONS(2842), + [anon_sym_AMP_AMP] = ACTIONS(2842), + [anon_sym_PIPE_PIPE] = ACTIONS(2842), + [anon_sym_or] = ACTIONS(2842), + [sym_none] = ACTIONS(2842), + [sym_true] = ACTIONS(2842), + [sym_false] = ACTIONS(2842), + [sym_nil] = ACTIONS(2842), + [anon_sym_QMARK_DOT] = ACTIONS(2842), + [anon_sym_POUND_LBRACK] = ACTIONS(2842), + [anon_sym_if] = ACTIONS(2842), + [anon_sym_DOLLARif] = ACTIONS(2842), + [anon_sym_is] = ACTIONS(2842), + [anon_sym_BANGis] = ACTIONS(2842), + [anon_sym_in] = ACTIONS(2842), + [anon_sym_BANGin] = ACTIONS(2842), + [anon_sym_match] = ACTIONS(2842), + [anon_sym_select] = ACTIONS(2842), + [anon_sym_STAR_EQ] = ACTIONS(2842), + [anon_sym_SLASH_EQ] = ACTIONS(2842), + [anon_sym_PERCENT_EQ] = ACTIONS(2842), + [anon_sym_LT_LT_EQ] = ACTIONS(2842), + [anon_sym_GT_GT_EQ] = ACTIONS(2842), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2842), + [anon_sym_AMP_EQ] = ACTIONS(2842), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2842), + [anon_sym_PLUS_EQ] = ACTIONS(2842), + [anon_sym_DASH_EQ] = ACTIONS(2842), + [anon_sym_PIPE_EQ] = ACTIONS(2842), + [anon_sym_CARET_EQ] = ACTIONS(2842), + [anon_sym_COLON_EQ] = ACTIONS(2842), + [anon_sym_lock] = ACTIONS(2842), + [anon_sym_rlock] = ACTIONS(2842), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2842), + [sym_int_literal] = ACTIONS(2842), + [sym_float_literal] = ACTIONS(2842), + [sym_rune_literal] = ACTIONS(2842), + [anon_sym_AT] = ACTIONS(2842), + [anon_sym_shared] = ACTIONS(2842), + [anon_sym_map_LBRACK] = ACTIONS(2842), + [anon_sym_chan] = ACTIONS(2842), + [anon_sym_thread] = ACTIONS(2842), + [anon_sym_atomic] = ACTIONS(2842), + [anon_sym_assert] = ACTIONS(2842), + [anon_sym_defer] = ACTIONS(2842), + [anon_sym_goto] = ACTIONS(2842), + [anon_sym_break] = ACTIONS(2842), + [anon_sym_continue] = ACTIONS(2842), + [anon_sym_return] = ACTIONS(2842), + [anon_sym_DOLLARfor] = ACTIONS(2842), + [anon_sym_for] = ACTIONS(2842), + [anon_sym_POUND] = ACTIONS(2842), + [anon_sym_asm] = ACTIONS(2842), + [anon_sym_AT_LBRACK] = ACTIONS(2842), + [sym___double_quote] = ACTIONS(2842), + [sym___single_quote] = ACTIONS(2842), + [sym___c_double_quote] = ACTIONS(2842), + [sym___c_single_quote] = ACTIONS(2842), + [sym___r_double_quote] = ACTIONS(2842), + [sym___r_single_quote] = ACTIONS(2842), }, [865] = { - [ts_builtin_sym_end] = ACTIONS(2850), - [sym_identifier] = ACTIONS(2852), - [anon_sym_LF] = ACTIONS(2852), - [anon_sym_CR] = ACTIONS(2852), - [anon_sym_CR_LF] = ACTIONS(2852), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2852), - [anon_sym_as] = ACTIONS(2852), - [anon_sym_LBRACE] = ACTIONS(2852), - [anon_sym_COMMA] = ACTIONS(2852), - [anon_sym_const] = ACTIONS(2852), - [anon_sym_LPAREN] = ACTIONS(2852), - [anon_sym_EQ] = ACTIONS(2852), - [anon_sym___global] = ACTIONS(2852), - [anon_sym_type] = ACTIONS(2852), - [anon_sym_PIPE] = ACTIONS(2852), - [anon_sym_fn] = ACTIONS(2852), - [anon_sym_PLUS] = ACTIONS(2852), - [anon_sym_DASH] = ACTIONS(2852), - [anon_sym_STAR] = ACTIONS(2852), - [anon_sym_SLASH] = ACTIONS(2852), - [anon_sym_PERCENT] = ACTIONS(2852), - [anon_sym_LT] = ACTIONS(2852), - [anon_sym_GT] = ACTIONS(2852), - [anon_sym_EQ_EQ] = ACTIONS(2852), - [anon_sym_BANG_EQ] = ACTIONS(2852), - [anon_sym_LT_EQ] = ACTIONS(2852), - [anon_sym_GT_EQ] = ACTIONS(2852), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_struct] = ACTIONS(2852), - [anon_sym_union] = ACTIONS(2852), - [anon_sym_pub] = ACTIONS(2852), - [anon_sym_mut] = ACTIONS(2852), - [anon_sym_enum] = ACTIONS(2852), - [anon_sym_interface] = ACTIONS(2852), - [anon_sym_PLUS_PLUS] = ACTIONS(2852), - [anon_sym_DASH_DASH] = ACTIONS(2852), - [anon_sym_QMARK] = ACTIONS(2852), - [anon_sym_BANG] = ACTIONS(2852), - [anon_sym_go] = ACTIONS(2852), - [anon_sym_spawn] = ACTIONS(2852), - [anon_sym_json_DOTdecode] = ACTIONS(2852), - [anon_sym_LBRACK2] = ACTIONS(2852), - [anon_sym_TILDE] = ACTIONS(2852), - [anon_sym_CARET] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2852), - [anon_sym_LT_DASH] = ACTIONS(2852), - [anon_sym_LT_LT] = ACTIONS(2852), - [anon_sym_GT_GT] = ACTIONS(2852), - [anon_sym_GT_GT_GT] = ACTIONS(2852), - [anon_sym_AMP_CARET] = ACTIONS(2852), - [anon_sym_AMP_AMP] = ACTIONS(2852), - [anon_sym_PIPE_PIPE] = ACTIONS(2852), - [anon_sym_or] = ACTIONS(2852), - [sym_none] = ACTIONS(2852), - [sym_true] = ACTIONS(2852), - [sym_false] = ACTIONS(2852), - [sym_nil] = ACTIONS(2852), - [anon_sym_QMARK_DOT] = ACTIONS(2852), - [anon_sym_POUND_LBRACK] = ACTIONS(2852), - [anon_sym_if] = ACTIONS(2852), - [anon_sym_DOLLARif] = ACTIONS(2852), - [anon_sym_is] = ACTIONS(2852), - [anon_sym_BANGis] = ACTIONS(2852), - [anon_sym_in] = ACTIONS(2852), - [anon_sym_BANGin] = ACTIONS(2852), - [anon_sym_match] = ACTIONS(2852), - [anon_sym_select] = ACTIONS(2852), - [anon_sym_STAR_EQ] = ACTIONS(2852), - [anon_sym_SLASH_EQ] = ACTIONS(2852), - [anon_sym_PERCENT_EQ] = ACTIONS(2852), - [anon_sym_LT_LT_EQ] = ACTIONS(2852), - [anon_sym_GT_GT_EQ] = ACTIONS(2852), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2852), - [anon_sym_AMP_EQ] = ACTIONS(2852), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2852), - [anon_sym_PLUS_EQ] = ACTIONS(2852), - [anon_sym_DASH_EQ] = ACTIONS(2852), - [anon_sym_PIPE_EQ] = ACTIONS(2852), - [anon_sym_CARET_EQ] = ACTIONS(2852), - [anon_sym_COLON_EQ] = ACTIONS(2852), - [anon_sym_lock] = ACTIONS(2852), - [anon_sym_rlock] = ACTIONS(2852), - [anon_sym_unsafe] = ACTIONS(2852), - [anon_sym_sql] = ACTIONS(2852), - [sym_int_literal] = ACTIONS(2852), - [sym_float_literal] = ACTIONS(2852), - [sym_rune_literal] = ACTIONS(2852), - [anon_sym_AT] = ACTIONS(2852), - [anon_sym_shared] = ACTIONS(2852), - [anon_sym_map_LBRACK] = ACTIONS(2852), - [anon_sym_chan] = ACTIONS(2852), - [anon_sym_thread] = ACTIONS(2852), - [anon_sym_atomic] = ACTIONS(2852), - [anon_sym_assert] = ACTIONS(2852), - [anon_sym_defer] = ACTIONS(2852), - [anon_sym_goto] = ACTIONS(2852), - [anon_sym_break] = ACTIONS(2852), - [anon_sym_continue] = ACTIONS(2852), - [anon_sym_return] = ACTIONS(2852), - [anon_sym_DOLLARfor] = ACTIONS(2852), - [anon_sym_for] = ACTIONS(2852), - [anon_sym_POUND] = ACTIONS(2852), - [anon_sym_asm] = ACTIONS(2852), - [anon_sym_AT_LBRACK] = ACTIONS(2852), - [sym___double_quote] = ACTIONS(2852), - [sym___single_quote] = ACTIONS(2852), - [sym___c_double_quote] = ACTIONS(2852), - [sym___c_single_quote] = ACTIONS(2852), - [sym___r_double_quote] = ACTIONS(2852), - [sym___r_single_quote] = ACTIONS(2852), + [ts_builtin_sym_end] = ACTIONS(2844), + [sym_identifier] = ACTIONS(2846), + [anon_sym_LF] = ACTIONS(2846), + [anon_sym_CR] = ACTIONS(2846), + [anon_sym_CR_LF] = ACTIONS(2846), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2742), + [anon_sym_as] = ACTIONS(2846), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_COMMA] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(2846), + [anon_sym_LPAREN] = ACTIONS(2846), + [anon_sym_EQ] = ACTIONS(2846), + [anon_sym___global] = ACTIONS(2846), + [anon_sym_type] = ACTIONS(2846), + [anon_sym_PIPE] = ACTIONS(2846), + [anon_sym_fn] = ACTIONS(2846), + [anon_sym_PLUS] = ACTIONS(2846), + [anon_sym_DASH] = ACTIONS(2846), + [anon_sym_STAR] = ACTIONS(2846), + [anon_sym_SLASH] = ACTIONS(2846), + [anon_sym_PERCENT] = ACTIONS(2846), + [anon_sym_LT] = ACTIONS(2846), + [anon_sym_GT] = ACTIONS(2846), + [anon_sym_EQ_EQ] = ACTIONS(2846), + [anon_sym_BANG_EQ] = ACTIONS(2846), + [anon_sym_LT_EQ] = ACTIONS(2846), + [anon_sym_GT_EQ] = ACTIONS(2846), + [anon_sym_LBRACK] = ACTIONS(2844), + [anon_sym_struct] = ACTIONS(2846), + [anon_sym_union] = ACTIONS(2846), + [anon_sym_pub] = ACTIONS(2846), + [anon_sym_mut] = ACTIONS(2846), + [anon_sym_enum] = ACTIONS(2846), + [anon_sym_interface] = ACTIONS(2846), + [anon_sym_PLUS_PLUS] = ACTIONS(2846), + [anon_sym_DASH_DASH] = ACTIONS(2846), + [anon_sym_QMARK] = ACTIONS(2846), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_go] = ACTIONS(2846), + [anon_sym_spawn] = ACTIONS(2846), + [anon_sym_json_DOTdecode] = ACTIONS(2846), + [anon_sym_LBRACK2] = ACTIONS(2846), + [anon_sym_TILDE] = ACTIONS(2846), + [anon_sym_CARET] = ACTIONS(2846), + [anon_sym_AMP] = ACTIONS(2846), + [anon_sym_LT_DASH] = ACTIONS(2846), + [anon_sym_LT_LT] = ACTIONS(2846), + [anon_sym_GT_GT] = ACTIONS(2846), + [anon_sym_GT_GT_GT] = ACTIONS(2846), + [anon_sym_AMP_CARET] = ACTIONS(2846), + [anon_sym_AMP_AMP] = ACTIONS(2846), + [anon_sym_PIPE_PIPE] = ACTIONS(2846), + [anon_sym_or] = ACTIONS(2846), + [sym_none] = ACTIONS(2846), + [sym_true] = ACTIONS(2846), + [sym_false] = ACTIONS(2846), + [sym_nil] = ACTIONS(2846), + [anon_sym_QMARK_DOT] = ACTIONS(2846), + [anon_sym_POUND_LBRACK] = ACTIONS(2846), + [anon_sym_if] = ACTIONS(2846), + [anon_sym_DOLLARif] = ACTIONS(2846), + [anon_sym_is] = ACTIONS(2846), + [anon_sym_BANGis] = ACTIONS(2846), + [anon_sym_in] = ACTIONS(2846), + [anon_sym_BANGin] = ACTIONS(2846), + [anon_sym_match] = ACTIONS(2846), + [anon_sym_select] = ACTIONS(2846), + [anon_sym_STAR_EQ] = ACTIONS(2846), + [anon_sym_SLASH_EQ] = ACTIONS(2846), + [anon_sym_PERCENT_EQ] = ACTIONS(2846), + [anon_sym_LT_LT_EQ] = ACTIONS(2846), + [anon_sym_GT_GT_EQ] = ACTIONS(2846), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2846), + [anon_sym_AMP_EQ] = ACTIONS(2846), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2846), + [anon_sym_PLUS_EQ] = ACTIONS(2846), + [anon_sym_DASH_EQ] = ACTIONS(2846), + [anon_sym_PIPE_EQ] = ACTIONS(2846), + [anon_sym_CARET_EQ] = ACTIONS(2846), + [anon_sym_COLON_EQ] = ACTIONS(2846), + [anon_sym_lock] = ACTIONS(2846), + [anon_sym_rlock] = ACTIONS(2846), + [anon_sym_unsafe] = ACTIONS(2846), + [anon_sym_sql] = ACTIONS(2846), + [sym_int_literal] = ACTIONS(2846), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2846), + [anon_sym_shared] = ACTIONS(2846), + [anon_sym_map_LBRACK] = ACTIONS(2846), + [anon_sym_chan] = ACTIONS(2846), + [anon_sym_thread] = ACTIONS(2846), + [anon_sym_atomic] = ACTIONS(2846), + [anon_sym_assert] = ACTIONS(2846), + [anon_sym_defer] = ACTIONS(2846), + [anon_sym_goto] = ACTIONS(2846), + [anon_sym_break] = ACTIONS(2846), + [anon_sym_continue] = ACTIONS(2846), + [anon_sym_return] = ACTIONS(2846), + [anon_sym_DOLLARfor] = ACTIONS(2846), + [anon_sym_for] = ACTIONS(2846), + [anon_sym_POUND] = ACTIONS(2846), + [anon_sym_asm] = ACTIONS(2846), + [anon_sym_AT_LBRACK] = ACTIONS(2846), + [sym___double_quote] = ACTIONS(2846), + [sym___single_quote] = ACTIONS(2846), + [sym___c_double_quote] = ACTIONS(2846), + [sym___c_single_quote] = ACTIONS(2846), + [sym___r_double_quote] = ACTIONS(2846), + [sym___r_single_quote] = ACTIONS(2846), }, [866] = { - [ts_builtin_sym_end] = ACTIONS(2854), - [sym_identifier] = ACTIONS(2856), - [anon_sym_LF] = ACTIONS(2856), - [anon_sym_CR] = ACTIONS(2856), - [anon_sym_CR_LF] = ACTIONS(2856), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2856), - [anon_sym_as] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2856), - [anon_sym_COMMA] = ACTIONS(2856), - [anon_sym_const] = ACTIONS(2856), - [anon_sym_LPAREN] = ACTIONS(2856), - [anon_sym_EQ] = ACTIONS(2856), - [anon_sym___global] = ACTIONS(2856), - [anon_sym_type] = ACTIONS(2856), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_fn] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2856), - [anon_sym_DASH] = ACTIONS(2856), - [anon_sym_STAR] = ACTIONS(2856), - [anon_sym_SLASH] = ACTIONS(2856), - [anon_sym_PERCENT] = ACTIONS(2856), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_GT] = ACTIONS(2856), - [anon_sym_EQ_EQ] = ACTIONS(2856), - [anon_sym_BANG_EQ] = ACTIONS(2856), - [anon_sym_LT_EQ] = ACTIONS(2856), - [anon_sym_GT_EQ] = ACTIONS(2856), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_struct] = ACTIONS(2856), - [anon_sym_union] = ACTIONS(2856), - [anon_sym_pub] = ACTIONS(2856), - [anon_sym_mut] = ACTIONS(2856), - [anon_sym_enum] = ACTIONS(2856), - [anon_sym_interface] = ACTIONS(2856), - [anon_sym_PLUS_PLUS] = ACTIONS(2856), - [anon_sym_DASH_DASH] = ACTIONS(2856), - [anon_sym_QMARK] = ACTIONS(2856), - [anon_sym_BANG] = ACTIONS(2856), - [anon_sym_go] = ACTIONS(2856), - [anon_sym_spawn] = ACTIONS(2856), - [anon_sym_json_DOTdecode] = ACTIONS(2856), - [anon_sym_LBRACK2] = ACTIONS(2856), - [anon_sym_TILDE] = ACTIONS(2856), - [anon_sym_CARET] = ACTIONS(2856), - [anon_sym_AMP] = ACTIONS(2856), - [anon_sym_LT_DASH] = ACTIONS(2856), - [anon_sym_LT_LT] = ACTIONS(2856), - [anon_sym_GT_GT] = ACTIONS(2856), - [anon_sym_GT_GT_GT] = ACTIONS(2856), - [anon_sym_AMP_CARET] = ACTIONS(2856), - [anon_sym_AMP_AMP] = ACTIONS(2856), - [anon_sym_PIPE_PIPE] = ACTIONS(2856), - [anon_sym_or] = ACTIONS(2856), - [sym_none] = ACTIONS(2856), - [sym_true] = ACTIONS(2856), - [sym_false] = ACTIONS(2856), - [sym_nil] = ACTIONS(2856), - [anon_sym_QMARK_DOT] = ACTIONS(2856), - [anon_sym_POUND_LBRACK] = ACTIONS(2856), - [anon_sym_if] = ACTIONS(2856), - [anon_sym_DOLLARif] = ACTIONS(2856), - [anon_sym_is] = ACTIONS(2856), - [anon_sym_BANGis] = ACTIONS(2856), - [anon_sym_in] = ACTIONS(2856), - [anon_sym_BANGin] = ACTIONS(2856), - [anon_sym_match] = ACTIONS(2856), - [anon_sym_select] = ACTIONS(2856), - [anon_sym_STAR_EQ] = ACTIONS(2856), - [anon_sym_SLASH_EQ] = ACTIONS(2856), - [anon_sym_PERCENT_EQ] = ACTIONS(2856), - [anon_sym_LT_LT_EQ] = ACTIONS(2856), - [anon_sym_GT_GT_EQ] = ACTIONS(2856), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2856), - [anon_sym_AMP_EQ] = ACTIONS(2856), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2856), - [anon_sym_PLUS_EQ] = ACTIONS(2856), - [anon_sym_DASH_EQ] = ACTIONS(2856), - [anon_sym_PIPE_EQ] = ACTIONS(2856), - [anon_sym_CARET_EQ] = ACTIONS(2856), - [anon_sym_COLON_EQ] = ACTIONS(2856), - [anon_sym_lock] = ACTIONS(2856), - [anon_sym_rlock] = ACTIONS(2856), - [anon_sym_unsafe] = ACTIONS(2856), - [anon_sym_sql] = ACTIONS(2856), - [sym_int_literal] = ACTIONS(2856), - [sym_float_literal] = ACTIONS(2856), - [sym_rune_literal] = ACTIONS(2856), - [anon_sym_AT] = ACTIONS(2856), - [anon_sym_shared] = ACTIONS(2856), - [anon_sym_map_LBRACK] = ACTIONS(2856), - [anon_sym_chan] = ACTIONS(2856), - [anon_sym_thread] = ACTIONS(2856), - [anon_sym_atomic] = ACTIONS(2856), - [anon_sym_assert] = ACTIONS(2856), - [anon_sym_defer] = ACTIONS(2856), - [anon_sym_goto] = ACTIONS(2856), - [anon_sym_break] = ACTIONS(2856), - [anon_sym_continue] = ACTIONS(2856), - [anon_sym_return] = ACTIONS(2856), - [anon_sym_DOLLARfor] = ACTIONS(2856), - [anon_sym_for] = ACTIONS(2856), - [anon_sym_POUND] = ACTIONS(2856), - [anon_sym_asm] = ACTIONS(2856), - [anon_sym_AT_LBRACK] = ACTIONS(2856), - [sym___double_quote] = ACTIONS(2856), - [sym___single_quote] = ACTIONS(2856), - [sym___c_double_quote] = ACTIONS(2856), - [sym___c_single_quote] = ACTIONS(2856), - [sym___r_double_quote] = ACTIONS(2856), - [sym___r_single_quote] = ACTIONS(2856), + [ts_builtin_sym_end] = ACTIONS(2848), + [sym_identifier] = ACTIONS(2850), + [anon_sym_LF] = ACTIONS(2850), + [anon_sym_CR] = ACTIONS(2850), + [anon_sym_CR_LF] = ACTIONS(2850), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2850), + [anon_sym_as] = ACTIONS(2850), + [anon_sym_LBRACE] = ACTIONS(2850), + [anon_sym_COMMA] = ACTIONS(2850), + [anon_sym_const] = ACTIONS(2850), + [anon_sym_LPAREN] = ACTIONS(2850), + [anon_sym_EQ] = ACTIONS(2850), + [anon_sym___global] = ACTIONS(2850), + [anon_sym_type] = ACTIONS(2850), + [anon_sym_PIPE] = ACTIONS(2850), + [anon_sym_fn] = ACTIONS(2850), + [anon_sym_PLUS] = ACTIONS(2850), + [anon_sym_DASH] = ACTIONS(2850), + [anon_sym_STAR] = ACTIONS(2850), + [anon_sym_SLASH] = ACTIONS(2850), + [anon_sym_PERCENT] = ACTIONS(2850), + [anon_sym_LT] = ACTIONS(2850), + [anon_sym_GT] = ACTIONS(2850), + [anon_sym_EQ_EQ] = ACTIONS(2850), + [anon_sym_BANG_EQ] = ACTIONS(2850), + [anon_sym_LT_EQ] = ACTIONS(2850), + [anon_sym_GT_EQ] = ACTIONS(2850), + [anon_sym_LBRACK] = ACTIONS(2848), + [anon_sym_struct] = ACTIONS(2850), + [anon_sym_union] = ACTIONS(2850), + [anon_sym_pub] = ACTIONS(2850), + [anon_sym_mut] = ACTIONS(2850), + [anon_sym_enum] = ACTIONS(2850), + [anon_sym_interface] = ACTIONS(2850), + [anon_sym_PLUS_PLUS] = ACTIONS(2850), + [anon_sym_DASH_DASH] = ACTIONS(2850), + [anon_sym_QMARK] = ACTIONS(2850), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_go] = ACTIONS(2850), + [anon_sym_spawn] = ACTIONS(2850), + [anon_sym_json_DOTdecode] = ACTIONS(2850), + [anon_sym_LBRACK2] = ACTIONS(2850), + [anon_sym_TILDE] = ACTIONS(2850), + [anon_sym_CARET] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2850), + [anon_sym_LT_DASH] = ACTIONS(2850), + [anon_sym_LT_LT] = ACTIONS(2850), + [anon_sym_GT_GT] = ACTIONS(2850), + [anon_sym_GT_GT_GT] = ACTIONS(2850), + [anon_sym_AMP_CARET] = ACTIONS(2850), + [anon_sym_AMP_AMP] = ACTIONS(2850), + [anon_sym_PIPE_PIPE] = ACTIONS(2850), + [anon_sym_or] = ACTIONS(2850), + [sym_none] = ACTIONS(2850), + [sym_true] = ACTIONS(2850), + [sym_false] = ACTIONS(2850), + [sym_nil] = ACTIONS(2850), + [anon_sym_QMARK_DOT] = ACTIONS(2850), + [anon_sym_POUND_LBRACK] = ACTIONS(2850), + [anon_sym_if] = ACTIONS(2850), + [anon_sym_DOLLARif] = ACTIONS(2850), + [anon_sym_is] = ACTIONS(2850), + [anon_sym_BANGis] = ACTIONS(2850), + [anon_sym_in] = ACTIONS(2850), + [anon_sym_BANGin] = ACTIONS(2850), + [anon_sym_match] = ACTIONS(2850), + [anon_sym_select] = ACTIONS(2850), + [anon_sym_STAR_EQ] = ACTIONS(2850), + [anon_sym_SLASH_EQ] = ACTIONS(2850), + [anon_sym_PERCENT_EQ] = ACTIONS(2850), + [anon_sym_LT_LT_EQ] = ACTIONS(2850), + [anon_sym_GT_GT_EQ] = ACTIONS(2850), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2850), + [anon_sym_AMP_EQ] = ACTIONS(2850), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2850), + [anon_sym_PLUS_EQ] = ACTIONS(2850), + [anon_sym_DASH_EQ] = ACTIONS(2850), + [anon_sym_PIPE_EQ] = ACTIONS(2850), + [anon_sym_CARET_EQ] = ACTIONS(2850), + [anon_sym_COLON_EQ] = ACTIONS(2850), + [anon_sym_lock] = ACTIONS(2850), + [anon_sym_rlock] = ACTIONS(2850), + [anon_sym_unsafe] = ACTIONS(2850), + [anon_sym_sql] = ACTIONS(2850), + [sym_int_literal] = ACTIONS(2850), + [sym_float_literal] = ACTIONS(2850), + [sym_rune_literal] = ACTIONS(2850), + [anon_sym_AT] = ACTIONS(2850), + [anon_sym_shared] = ACTIONS(2850), + [anon_sym_map_LBRACK] = ACTIONS(2850), + [anon_sym_chan] = ACTIONS(2850), + [anon_sym_thread] = ACTIONS(2850), + [anon_sym_atomic] = ACTIONS(2850), + [anon_sym_assert] = ACTIONS(2850), + [anon_sym_defer] = ACTIONS(2850), + [anon_sym_goto] = ACTIONS(2850), + [anon_sym_break] = ACTIONS(2850), + [anon_sym_continue] = ACTIONS(2850), + [anon_sym_return] = ACTIONS(2850), + [anon_sym_DOLLARfor] = ACTIONS(2850), + [anon_sym_for] = ACTIONS(2850), + [anon_sym_POUND] = ACTIONS(2850), + [anon_sym_asm] = ACTIONS(2850), + [anon_sym_AT_LBRACK] = ACTIONS(2850), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2850), + [sym___c_double_quote] = ACTIONS(2850), + [sym___c_single_quote] = ACTIONS(2850), + [sym___r_double_quote] = ACTIONS(2850), + [sym___r_single_quote] = ACTIONS(2850), }, [867] = { - [ts_builtin_sym_end] = ACTIONS(2858), - [sym_identifier] = ACTIONS(2860), - [anon_sym_LF] = ACTIONS(2860), - [anon_sym_CR] = ACTIONS(2860), - [anon_sym_CR_LF] = ACTIONS(2860), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2860), - [anon_sym_as] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2860), - [anon_sym_COMMA] = ACTIONS(2860), - [anon_sym_const] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(2860), - [anon_sym_EQ] = ACTIONS(2860), - [anon_sym___global] = ACTIONS(2860), - [anon_sym_type] = ACTIONS(2860), - [anon_sym_PIPE] = ACTIONS(2860), - [anon_sym_fn] = ACTIONS(2860), - [anon_sym_PLUS] = ACTIONS(2860), - [anon_sym_DASH] = ACTIONS(2860), - [anon_sym_STAR] = ACTIONS(2860), - [anon_sym_SLASH] = ACTIONS(2860), - [anon_sym_PERCENT] = ACTIONS(2860), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_GT] = ACTIONS(2860), - [anon_sym_EQ_EQ] = ACTIONS(2860), - [anon_sym_BANG_EQ] = ACTIONS(2860), - [anon_sym_LT_EQ] = ACTIONS(2860), - [anon_sym_GT_EQ] = ACTIONS(2860), - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_struct] = ACTIONS(2860), - [anon_sym_union] = ACTIONS(2860), - [anon_sym_pub] = ACTIONS(2860), - [anon_sym_mut] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2860), - [anon_sym_interface] = ACTIONS(2860), - [anon_sym_PLUS_PLUS] = ACTIONS(2860), - [anon_sym_DASH_DASH] = ACTIONS(2860), - [anon_sym_QMARK] = ACTIONS(2860), - [anon_sym_BANG] = ACTIONS(2860), - [anon_sym_go] = ACTIONS(2860), - [anon_sym_spawn] = ACTIONS(2860), - [anon_sym_json_DOTdecode] = ACTIONS(2860), - [anon_sym_LBRACK2] = ACTIONS(2860), - [anon_sym_TILDE] = ACTIONS(2860), - [anon_sym_CARET] = ACTIONS(2860), - [anon_sym_AMP] = ACTIONS(2860), - [anon_sym_LT_DASH] = ACTIONS(2860), - [anon_sym_LT_LT] = ACTIONS(2860), - [anon_sym_GT_GT] = ACTIONS(2860), - [anon_sym_GT_GT_GT] = ACTIONS(2860), - [anon_sym_AMP_CARET] = ACTIONS(2860), - [anon_sym_AMP_AMP] = ACTIONS(2860), - [anon_sym_PIPE_PIPE] = ACTIONS(2860), - [anon_sym_or] = ACTIONS(2860), - [sym_none] = ACTIONS(2860), - [sym_true] = ACTIONS(2860), - [sym_false] = ACTIONS(2860), - [sym_nil] = ACTIONS(2860), - [anon_sym_QMARK_DOT] = ACTIONS(2860), - [anon_sym_POUND_LBRACK] = ACTIONS(2860), - [anon_sym_if] = ACTIONS(2860), - [anon_sym_DOLLARif] = ACTIONS(2860), - [anon_sym_is] = ACTIONS(2860), - [anon_sym_BANGis] = ACTIONS(2860), - [anon_sym_in] = ACTIONS(2860), - [anon_sym_BANGin] = ACTIONS(2860), - [anon_sym_match] = ACTIONS(2860), - [anon_sym_select] = ACTIONS(2860), - [anon_sym_STAR_EQ] = ACTIONS(2860), - [anon_sym_SLASH_EQ] = ACTIONS(2860), - [anon_sym_PERCENT_EQ] = ACTIONS(2860), - [anon_sym_LT_LT_EQ] = ACTIONS(2860), - [anon_sym_GT_GT_EQ] = ACTIONS(2860), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2860), - [anon_sym_AMP_EQ] = ACTIONS(2860), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2860), - [anon_sym_PLUS_EQ] = ACTIONS(2860), - [anon_sym_DASH_EQ] = ACTIONS(2860), - [anon_sym_PIPE_EQ] = ACTIONS(2860), - [anon_sym_CARET_EQ] = ACTIONS(2860), - [anon_sym_COLON_EQ] = ACTIONS(2860), - [anon_sym_lock] = ACTIONS(2860), - [anon_sym_rlock] = ACTIONS(2860), - [anon_sym_unsafe] = ACTIONS(2860), - [anon_sym_sql] = ACTIONS(2860), - [sym_int_literal] = ACTIONS(2860), - [sym_float_literal] = ACTIONS(2860), - [sym_rune_literal] = ACTIONS(2860), - [anon_sym_AT] = ACTIONS(2860), - [anon_sym_shared] = ACTIONS(2860), - [anon_sym_map_LBRACK] = ACTIONS(2860), - [anon_sym_chan] = ACTIONS(2860), - [anon_sym_thread] = ACTIONS(2860), - [anon_sym_atomic] = ACTIONS(2860), - [anon_sym_assert] = ACTIONS(2860), - [anon_sym_defer] = ACTIONS(2860), - [anon_sym_goto] = ACTIONS(2860), - [anon_sym_break] = ACTIONS(2860), - [anon_sym_continue] = ACTIONS(2860), - [anon_sym_return] = ACTIONS(2860), - [anon_sym_DOLLARfor] = ACTIONS(2860), - [anon_sym_for] = ACTIONS(2860), - [anon_sym_POUND] = ACTIONS(2860), - [anon_sym_asm] = ACTIONS(2860), - [anon_sym_AT_LBRACK] = ACTIONS(2860), - [sym___double_quote] = ACTIONS(2860), - [sym___single_quote] = ACTIONS(2860), - [sym___c_double_quote] = ACTIONS(2860), - [sym___c_single_quote] = ACTIONS(2860), - [sym___r_double_quote] = ACTIONS(2860), - [sym___r_single_quote] = ACTIONS(2860), + [ts_builtin_sym_end] = ACTIONS(2852), + [sym_identifier] = ACTIONS(2854), + [anon_sym_LF] = ACTIONS(2854), + [anon_sym_CR] = ACTIONS(2854), + [anon_sym_CR_LF] = ACTIONS(2854), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2854), + [anon_sym_as] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_COMMA] = ACTIONS(2854), + [anon_sym_const] = ACTIONS(2854), + [anon_sym_LPAREN] = ACTIONS(2854), + [anon_sym_EQ] = ACTIONS(2854), + [anon_sym___global] = ACTIONS(2854), + [anon_sym_type] = ACTIONS(2854), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_fn] = ACTIONS(2854), + [anon_sym_PLUS] = ACTIONS(2854), + [anon_sym_DASH] = ACTIONS(2854), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_SLASH] = ACTIONS(2854), + [anon_sym_PERCENT] = ACTIONS(2854), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_GT] = ACTIONS(2854), + [anon_sym_EQ_EQ] = ACTIONS(2854), + [anon_sym_BANG_EQ] = ACTIONS(2854), + [anon_sym_LT_EQ] = ACTIONS(2854), + [anon_sym_GT_EQ] = ACTIONS(2854), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2854), + [anon_sym_union] = ACTIONS(2854), + [anon_sym_pub] = ACTIONS(2854), + [anon_sym_mut] = ACTIONS(2854), + [anon_sym_enum] = ACTIONS(2854), + [anon_sym_interface] = ACTIONS(2854), + [anon_sym_PLUS_PLUS] = ACTIONS(2854), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [anon_sym_QMARK] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_go] = ACTIONS(2854), + [anon_sym_spawn] = ACTIONS(2854), + [anon_sym_json_DOTdecode] = ACTIONS(2854), + [anon_sym_LBRACK2] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2854), + [anon_sym_CARET] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_LT_DASH] = ACTIONS(2854), + [anon_sym_LT_LT] = ACTIONS(2854), + [anon_sym_GT_GT] = ACTIONS(2854), + [anon_sym_GT_GT_GT] = ACTIONS(2854), + [anon_sym_AMP_CARET] = ACTIONS(2854), + [anon_sym_AMP_AMP] = ACTIONS(2854), + [anon_sym_PIPE_PIPE] = ACTIONS(2854), + [anon_sym_or] = ACTIONS(2854), + [sym_none] = ACTIONS(2854), + [sym_true] = ACTIONS(2854), + [sym_false] = ACTIONS(2854), + [sym_nil] = ACTIONS(2854), + [anon_sym_QMARK_DOT] = ACTIONS(2854), + [anon_sym_POUND_LBRACK] = ACTIONS(2854), + [anon_sym_if] = ACTIONS(2854), + [anon_sym_DOLLARif] = ACTIONS(2854), + [anon_sym_is] = ACTIONS(2854), + [anon_sym_BANGis] = ACTIONS(2854), + [anon_sym_in] = ACTIONS(2854), + [anon_sym_BANGin] = ACTIONS(2854), + [anon_sym_match] = ACTIONS(2854), + [anon_sym_select] = ACTIONS(2854), + [anon_sym_STAR_EQ] = ACTIONS(2854), + [anon_sym_SLASH_EQ] = ACTIONS(2854), + [anon_sym_PERCENT_EQ] = ACTIONS(2854), + [anon_sym_LT_LT_EQ] = ACTIONS(2854), + [anon_sym_GT_GT_EQ] = ACTIONS(2854), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2854), + [anon_sym_AMP_EQ] = ACTIONS(2854), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2854), + [anon_sym_PLUS_EQ] = ACTIONS(2854), + [anon_sym_DASH_EQ] = ACTIONS(2854), + [anon_sym_PIPE_EQ] = ACTIONS(2854), + [anon_sym_CARET_EQ] = ACTIONS(2854), + [anon_sym_COLON_EQ] = ACTIONS(2854), + [anon_sym_lock] = ACTIONS(2854), + [anon_sym_rlock] = ACTIONS(2854), + [anon_sym_unsafe] = ACTIONS(2854), + [anon_sym_sql] = ACTIONS(2854), + [sym_int_literal] = ACTIONS(2854), + [sym_float_literal] = ACTIONS(2854), + [sym_rune_literal] = ACTIONS(2854), + [anon_sym_AT] = ACTIONS(2854), + [anon_sym_shared] = ACTIONS(2854), + [anon_sym_map_LBRACK] = ACTIONS(2854), + [anon_sym_chan] = ACTIONS(2854), + [anon_sym_thread] = ACTIONS(2854), + [anon_sym_atomic] = ACTIONS(2854), + [anon_sym_assert] = ACTIONS(2854), + [anon_sym_defer] = ACTIONS(2854), + [anon_sym_goto] = ACTIONS(2854), + [anon_sym_break] = ACTIONS(2854), + [anon_sym_continue] = ACTIONS(2854), + [anon_sym_return] = ACTIONS(2854), + [anon_sym_DOLLARfor] = ACTIONS(2854), + [anon_sym_for] = ACTIONS(2854), + [anon_sym_POUND] = ACTIONS(2854), + [anon_sym_asm] = ACTIONS(2854), + [anon_sym_AT_LBRACK] = ACTIONS(2854), + [sym___double_quote] = ACTIONS(2854), + [sym___single_quote] = ACTIONS(2854), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2854), + [sym___r_double_quote] = ACTIONS(2854), + [sym___r_single_quote] = ACTIONS(2854), }, [868] = { - [ts_builtin_sym_end] = ACTIONS(2862), - [sym_identifier] = ACTIONS(2864), - [anon_sym_LF] = ACTIONS(2864), - [anon_sym_CR] = ACTIONS(2864), - [anon_sym_CR_LF] = ACTIONS(2864), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2864), - [anon_sym_as] = ACTIONS(2864), - [anon_sym_LBRACE] = ACTIONS(2864), - [anon_sym_COMMA] = ACTIONS(2864), - [anon_sym_const] = ACTIONS(2864), - [anon_sym_LPAREN] = ACTIONS(2864), - [anon_sym_EQ] = ACTIONS(2864), - [anon_sym___global] = ACTIONS(2864), - [anon_sym_type] = ACTIONS(2864), - [anon_sym_PIPE] = ACTIONS(2864), - [anon_sym_fn] = ACTIONS(2864), - [anon_sym_PLUS] = ACTIONS(2864), - [anon_sym_DASH] = ACTIONS(2864), - [anon_sym_STAR] = ACTIONS(2864), - [anon_sym_SLASH] = ACTIONS(2864), - [anon_sym_PERCENT] = ACTIONS(2864), - [anon_sym_LT] = ACTIONS(2864), - [anon_sym_GT] = ACTIONS(2864), - [anon_sym_EQ_EQ] = ACTIONS(2864), - [anon_sym_BANG_EQ] = ACTIONS(2864), - [anon_sym_LT_EQ] = ACTIONS(2864), - [anon_sym_GT_EQ] = ACTIONS(2864), - [anon_sym_LBRACK] = ACTIONS(2862), - [anon_sym_struct] = ACTIONS(2864), - [anon_sym_union] = ACTIONS(2864), - [anon_sym_pub] = ACTIONS(2864), - [anon_sym_mut] = ACTIONS(2864), - [anon_sym_enum] = ACTIONS(2864), - [anon_sym_interface] = ACTIONS(2864), - [anon_sym_PLUS_PLUS] = ACTIONS(2864), - [anon_sym_DASH_DASH] = ACTIONS(2864), - [anon_sym_QMARK] = ACTIONS(2864), - [anon_sym_BANG] = ACTIONS(2864), - [anon_sym_go] = ACTIONS(2864), - [anon_sym_spawn] = ACTIONS(2864), - [anon_sym_json_DOTdecode] = ACTIONS(2864), - [anon_sym_LBRACK2] = ACTIONS(2864), - [anon_sym_TILDE] = ACTIONS(2864), - [anon_sym_CARET] = ACTIONS(2864), - [anon_sym_AMP] = ACTIONS(2864), - [anon_sym_LT_DASH] = ACTIONS(2864), - [anon_sym_LT_LT] = ACTIONS(2864), - [anon_sym_GT_GT] = ACTIONS(2864), - [anon_sym_GT_GT_GT] = ACTIONS(2864), - [anon_sym_AMP_CARET] = ACTIONS(2864), - [anon_sym_AMP_AMP] = ACTIONS(2864), - [anon_sym_PIPE_PIPE] = ACTIONS(2864), - [anon_sym_or] = ACTIONS(2864), - [sym_none] = ACTIONS(2864), - [sym_true] = ACTIONS(2864), - [sym_false] = ACTIONS(2864), - [sym_nil] = ACTIONS(2864), - [anon_sym_QMARK_DOT] = ACTIONS(2864), - [anon_sym_POUND_LBRACK] = ACTIONS(2864), - [anon_sym_if] = ACTIONS(2864), - [anon_sym_DOLLARif] = ACTIONS(2864), - [anon_sym_is] = ACTIONS(2864), - [anon_sym_BANGis] = ACTIONS(2864), - [anon_sym_in] = ACTIONS(2864), - [anon_sym_BANGin] = ACTIONS(2864), - [anon_sym_match] = ACTIONS(2864), - [anon_sym_select] = ACTIONS(2864), - [anon_sym_STAR_EQ] = ACTIONS(2864), - [anon_sym_SLASH_EQ] = ACTIONS(2864), - [anon_sym_PERCENT_EQ] = ACTIONS(2864), - [anon_sym_LT_LT_EQ] = ACTIONS(2864), - [anon_sym_GT_GT_EQ] = ACTIONS(2864), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2864), - [anon_sym_AMP_EQ] = ACTIONS(2864), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2864), - [anon_sym_PLUS_EQ] = ACTIONS(2864), - [anon_sym_DASH_EQ] = ACTIONS(2864), - [anon_sym_PIPE_EQ] = ACTIONS(2864), - [anon_sym_CARET_EQ] = ACTIONS(2864), - [anon_sym_COLON_EQ] = ACTIONS(2864), - [anon_sym_lock] = ACTIONS(2864), - [anon_sym_rlock] = ACTIONS(2864), - [anon_sym_unsafe] = ACTIONS(2864), - [anon_sym_sql] = ACTIONS(2864), - [sym_int_literal] = ACTIONS(2864), - [sym_float_literal] = ACTIONS(2864), - [sym_rune_literal] = ACTIONS(2864), - [anon_sym_AT] = ACTIONS(2864), - [anon_sym_shared] = ACTIONS(2864), - [anon_sym_map_LBRACK] = ACTIONS(2864), - [anon_sym_chan] = ACTIONS(2864), - [anon_sym_thread] = ACTIONS(2864), - [anon_sym_atomic] = ACTIONS(2864), - [anon_sym_assert] = ACTIONS(2864), - [anon_sym_defer] = ACTIONS(2864), - [anon_sym_goto] = ACTIONS(2864), - [anon_sym_break] = ACTIONS(2864), - [anon_sym_continue] = ACTIONS(2864), - [anon_sym_return] = ACTIONS(2864), - [anon_sym_DOLLARfor] = ACTIONS(2864), - [anon_sym_for] = ACTIONS(2864), - [anon_sym_POUND] = ACTIONS(2864), - [anon_sym_asm] = ACTIONS(2864), - [anon_sym_AT_LBRACK] = ACTIONS(2864), - [sym___double_quote] = ACTIONS(2864), - [sym___single_quote] = ACTIONS(2864), - [sym___c_double_quote] = ACTIONS(2864), - [sym___c_single_quote] = ACTIONS(2864), - [sym___r_double_quote] = ACTIONS(2864), - [sym___r_single_quote] = ACTIONS(2864), + [ts_builtin_sym_end] = ACTIONS(2856), + [sym_identifier] = ACTIONS(2858), + [anon_sym_LF] = ACTIONS(2858), + [anon_sym_CR] = ACTIONS(2858), + [anon_sym_CR_LF] = ACTIONS(2858), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2858), + [anon_sym_as] = ACTIONS(2858), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_COMMA] = ACTIONS(2858), + [anon_sym_const] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2858), + [anon_sym_EQ] = ACTIONS(2858), + [anon_sym___global] = ACTIONS(2858), + [anon_sym_type] = ACTIONS(2858), + [anon_sym_PIPE] = ACTIONS(2858), + [anon_sym_fn] = ACTIONS(2858), + [anon_sym_PLUS] = ACTIONS(2858), + [anon_sym_DASH] = ACTIONS(2858), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_SLASH] = ACTIONS(2858), + [anon_sym_PERCENT] = ACTIONS(2858), + [anon_sym_LT] = ACTIONS(2858), + [anon_sym_GT] = ACTIONS(2858), + [anon_sym_EQ_EQ] = ACTIONS(2858), + [anon_sym_BANG_EQ] = ACTIONS(2858), + [anon_sym_LT_EQ] = ACTIONS(2858), + [anon_sym_GT_EQ] = ACTIONS(2858), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2858), + [anon_sym_union] = ACTIONS(2858), + [anon_sym_pub] = ACTIONS(2858), + [anon_sym_mut] = ACTIONS(2858), + [anon_sym_enum] = ACTIONS(2858), + [anon_sym_interface] = ACTIONS(2858), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [anon_sym_QMARK] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_go] = ACTIONS(2858), + [anon_sym_spawn] = ACTIONS(2858), + [anon_sym_json_DOTdecode] = ACTIONS(2858), + [anon_sym_LBRACK2] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2858), + [anon_sym_CARET] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2858), + [anon_sym_LT_DASH] = ACTIONS(2858), + [anon_sym_LT_LT] = ACTIONS(2858), + [anon_sym_GT_GT] = ACTIONS(2858), + [anon_sym_GT_GT_GT] = ACTIONS(2858), + [anon_sym_AMP_CARET] = ACTIONS(2858), + [anon_sym_AMP_AMP] = ACTIONS(2858), + [anon_sym_PIPE_PIPE] = ACTIONS(2858), + [anon_sym_or] = ACTIONS(2858), + [sym_none] = ACTIONS(2858), + [sym_true] = ACTIONS(2858), + [sym_false] = ACTIONS(2858), + [sym_nil] = ACTIONS(2858), + [anon_sym_QMARK_DOT] = ACTIONS(2858), + [anon_sym_POUND_LBRACK] = ACTIONS(2858), + [anon_sym_if] = ACTIONS(2858), + [anon_sym_DOLLARif] = ACTIONS(2858), + [anon_sym_is] = ACTIONS(2858), + [anon_sym_BANGis] = ACTIONS(2858), + [anon_sym_in] = ACTIONS(2858), + [anon_sym_BANGin] = ACTIONS(2858), + [anon_sym_match] = ACTIONS(2858), + [anon_sym_select] = ACTIONS(2858), + [anon_sym_STAR_EQ] = ACTIONS(2858), + [anon_sym_SLASH_EQ] = ACTIONS(2858), + [anon_sym_PERCENT_EQ] = ACTIONS(2858), + [anon_sym_LT_LT_EQ] = ACTIONS(2858), + [anon_sym_GT_GT_EQ] = ACTIONS(2858), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2858), + [anon_sym_AMP_EQ] = ACTIONS(2858), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2858), + [anon_sym_PLUS_EQ] = ACTIONS(2858), + [anon_sym_DASH_EQ] = ACTIONS(2858), + [anon_sym_PIPE_EQ] = ACTIONS(2858), + [anon_sym_CARET_EQ] = ACTIONS(2858), + [anon_sym_COLON_EQ] = ACTIONS(2858), + [anon_sym_lock] = ACTIONS(2858), + [anon_sym_rlock] = ACTIONS(2858), + [anon_sym_unsafe] = ACTIONS(2858), + [anon_sym_sql] = ACTIONS(2858), + [sym_int_literal] = ACTIONS(2858), + [sym_float_literal] = ACTIONS(2858), + [sym_rune_literal] = ACTIONS(2858), + [anon_sym_AT] = ACTIONS(2858), + [anon_sym_shared] = ACTIONS(2858), + [anon_sym_map_LBRACK] = ACTIONS(2858), + [anon_sym_chan] = ACTIONS(2858), + [anon_sym_thread] = ACTIONS(2858), + [anon_sym_atomic] = ACTIONS(2858), + [anon_sym_assert] = ACTIONS(2858), + [anon_sym_defer] = ACTIONS(2858), + [anon_sym_goto] = ACTIONS(2858), + [anon_sym_break] = ACTIONS(2858), + [anon_sym_continue] = ACTIONS(2858), + [anon_sym_return] = ACTIONS(2858), + [anon_sym_DOLLARfor] = ACTIONS(2858), + [anon_sym_for] = ACTIONS(2858), + [anon_sym_POUND] = ACTIONS(2858), + [anon_sym_asm] = ACTIONS(2858), + [anon_sym_AT_LBRACK] = ACTIONS(2858), + [sym___double_quote] = ACTIONS(2858), + [sym___single_quote] = ACTIONS(2858), + [sym___c_double_quote] = ACTIONS(2858), + [sym___c_single_quote] = ACTIONS(2858), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2858), }, [869] = { - [ts_builtin_sym_end] = ACTIONS(2866), - [sym_identifier] = ACTIONS(2868), - [anon_sym_LF] = ACTIONS(2868), - [anon_sym_CR] = ACTIONS(2868), - [anon_sym_CR_LF] = ACTIONS(2868), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2868), - [anon_sym_as] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2868), - [anon_sym_COMMA] = ACTIONS(2868), - [anon_sym_const] = ACTIONS(2868), - [anon_sym_LPAREN] = ACTIONS(2868), - [anon_sym_EQ] = ACTIONS(2868), - [anon_sym___global] = ACTIONS(2868), - [anon_sym_type] = ACTIONS(2868), - [anon_sym_PIPE] = ACTIONS(2868), - [anon_sym_fn] = ACTIONS(2868), - [anon_sym_PLUS] = ACTIONS(2868), - [anon_sym_DASH] = ACTIONS(2868), - [anon_sym_STAR] = ACTIONS(2868), - [anon_sym_SLASH] = ACTIONS(2868), - [anon_sym_PERCENT] = ACTIONS(2868), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_GT] = ACTIONS(2868), - [anon_sym_EQ_EQ] = ACTIONS(2868), - [anon_sym_BANG_EQ] = ACTIONS(2868), - [anon_sym_LT_EQ] = ACTIONS(2868), - [anon_sym_GT_EQ] = ACTIONS(2868), - [anon_sym_LBRACK] = ACTIONS(2866), - [anon_sym_struct] = ACTIONS(2868), - [anon_sym_union] = ACTIONS(2868), - [anon_sym_pub] = ACTIONS(2868), - [anon_sym_mut] = ACTIONS(2868), - [anon_sym_enum] = ACTIONS(2868), - [anon_sym_interface] = ACTIONS(2868), - [anon_sym_PLUS_PLUS] = ACTIONS(2868), - [anon_sym_DASH_DASH] = ACTIONS(2868), - [anon_sym_QMARK] = ACTIONS(2868), - [anon_sym_BANG] = ACTIONS(2868), - [anon_sym_go] = ACTIONS(2868), - [anon_sym_spawn] = ACTIONS(2868), - [anon_sym_json_DOTdecode] = ACTIONS(2868), - [anon_sym_LBRACK2] = ACTIONS(2868), - [anon_sym_TILDE] = ACTIONS(2868), - [anon_sym_CARET] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2868), - [anon_sym_LT_DASH] = ACTIONS(2868), - [anon_sym_LT_LT] = ACTIONS(2868), - [anon_sym_GT_GT] = ACTIONS(2868), - [anon_sym_GT_GT_GT] = ACTIONS(2868), - [anon_sym_AMP_CARET] = ACTIONS(2868), - [anon_sym_AMP_AMP] = ACTIONS(2868), - [anon_sym_PIPE_PIPE] = ACTIONS(2868), - [anon_sym_or] = ACTIONS(2868), - [sym_none] = ACTIONS(2868), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_nil] = ACTIONS(2868), - [anon_sym_QMARK_DOT] = ACTIONS(2868), - [anon_sym_POUND_LBRACK] = ACTIONS(2868), - [anon_sym_if] = ACTIONS(2868), - [anon_sym_DOLLARif] = ACTIONS(2868), - [anon_sym_is] = ACTIONS(2868), - [anon_sym_BANGis] = ACTIONS(2868), - [anon_sym_in] = ACTIONS(2868), - [anon_sym_BANGin] = ACTIONS(2868), - [anon_sym_match] = ACTIONS(2868), - [anon_sym_select] = ACTIONS(2868), - [anon_sym_STAR_EQ] = ACTIONS(2868), - [anon_sym_SLASH_EQ] = ACTIONS(2868), - [anon_sym_PERCENT_EQ] = ACTIONS(2868), - [anon_sym_LT_LT_EQ] = ACTIONS(2868), - [anon_sym_GT_GT_EQ] = ACTIONS(2868), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2868), - [anon_sym_AMP_EQ] = ACTIONS(2868), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2868), - [anon_sym_PLUS_EQ] = ACTIONS(2868), - [anon_sym_DASH_EQ] = ACTIONS(2868), - [anon_sym_PIPE_EQ] = ACTIONS(2868), - [anon_sym_CARET_EQ] = ACTIONS(2868), - [anon_sym_COLON_EQ] = ACTIONS(2868), - [anon_sym_lock] = ACTIONS(2868), - [anon_sym_rlock] = ACTIONS(2868), - [anon_sym_unsafe] = ACTIONS(2868), - [anon_sym_sql] = ACTIONS(2868), - [sym_int_literal] = ACTIONS(2868), - [sym_float_literal] = ACTIONS(2868), - [sym_rune_literal] = ACTIONS(2868), - [anon_sym_AT] = ACTIONS(2868), - [anon_sym_shared] = ACTIONS(2868), - [anon_sym_map_LBRACK] = ACTIONS(2868), - [anon_sym_chan] = ACTIONS(2868), - [anon_sym_thread] = ACTIONS(2868), - [anon_sym_atomic] = ACTIONS(2868), - [anon_sym_assert] = ACTIONS(2868), - [anon_sym_defer] = ACTIONS(2868), - [anon_sym_goto] = ACTIONS(2868), - [anon_sym_break] = ACTIONS(2868), - [anon_sym_continue] = ACTIONS(2868), - [anon_sym_return] = ACTIONS(2868), - [anon_sym_DOLLARfor] = ACTIONS(2868), - [anon_sym_for] = ACTIONS(2868), - [anon_sym_POUND] = ACTIONS(2868), - [anon_sym_asm] = ACTIONS(2868), - [anon_sym_AT_LBRACK] = ACTIONS(2868), - [sym___double_quote] = ACTIONS(2868), - [sym___single_quote] = ACTIONS(2868), - [sym___c_double_quote] = ACTIONS(2868), - [sym___c_single_quote] = ACTIONS(2868), - [sym___r_double_quote] = ACTIONS(2868), - [sym___r_single_quote] = ACTIONS(2868), + [ts_builtin_sym_end] = ACTIONS(2860), + [sym_identifier] = ACTIONS(2862), + [anon_sym_LF] = ACTIONS(2862), + [anon_sym_CR] = ACTIONS(2862), + [anon_sym_CR_LF] = ACTIONS(2862), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_as] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_COMMA] = ACTIONS(2862), + [anon_sym_const] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2862), + [anon_sym_EQ] = ACTIONS(2862), + [anon_sym___global] = ACTIONS(2862), + [anon_sym_type] = ACTIONS(2862), + [anon_sym_PIPE] = ACTIONS(2862), + [anon_sym_fn] = ACTIONS(2862), + [anon_sym_PLUS] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2862), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_SLASH] = ACTIONS(2862), + [anon_sym_PERCENT] = ACTIONS(2862), + [anon_sym_LT] = ACTIONS(2862), + [anon_sym_GT] = ACTIONS(2862), + [anon_sym_EQ_EQ] = ACTIONS(2862), + [anon_sym_BANG_EQ] = ACTIONS(2862), + [anon_sym_LT_EQ] = ACTIONS(2862), + [anon_sym_GT_EQ] = ACTIONS(2862), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2862), + [anon_sym_union] = ACTIONS(2862), + [anon_sym_pub] = ACTIONS(2862), + [anon_sym_mut] = ACTIONS(2862), + [anon_sym_enum] = ACTIONS(2862), + [anon_sym_interface] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_QMARK] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_go] = ACTIONS(2862), + [anon_sym_spawn] = ACTIONS(2862), + [anon_sym_json_DOTdecode] = ACTIONS(2862), + [anon_sym_LBRACK2] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_CARET] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_LT_DASH] = ACTIONS(2862), + [anon_sym_LT_LT] = ACTIONS(2862), + [anon_sym_GT_GT] = ACTIONS(2862), + [anon_sym_GT_GT_GT] = ACTIONS(2862), + [anon_sym_AMP_CARET] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_PIPE_PIPE] = ACTIONS(2862), + [anon_sym_or] = ACTIONS(2862), + [sym_none] = ACTIONS(2862), + [sym_true] = ACTIONS(2862), + [sym_false] = ACTIONS(2862), + [sym_nil] = ACTIONS(2862), + [anon_sym_QMARK_DOT] = ACTIONS(2862), + [anon_sym_POUND_LBRACK] = ACTIONS(2862), + [anon_sym_if] = ACTIONS(2862), + [anon_sym_DOLLARif] = ACTIONS(2862), + [anon_sym_is] = ACTIONS(2862), + [anon_sym_BANGis] = ACTIONS(2862), + [anon_sym_in] = ACTIONS(2862), + [anon_sym_BANGin] = ACTIONS(2862), + [anon_sym_match] = ACTIONS(2862), + [anon_sym_select] = ACTIONS(2862), + [anon_sym_STAR_EQ] = ACTIONS(2862), + [anon_sym_SLASH_EQ] = ACTIONS(2862), + [anon_sym_PERCENT_EQ] = ACTIONS(2862), + [anon_sym_LT_LT_EQ] = ACTIONS(2862), + [anon_sym_GT_GT_EQ] = ACTIONS(2862), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2862), + [anon_sym_AMP_EQ] = ACTIONS(2862), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2862), + [anon_sym_PLUS_EQ] = ACTIONS(2862), + [anon_sym_DASH_EQ] = ACTIONS(2862), + [anon_sym_PIPE_EQ] = ACTIONS(2862), + [anon_sym_CARET_EQ] = ACTIONS(2862), + [anon_sym_COLON_EQ] = ACTIONS(2862), + [anon_sym_lock] = ACTIONS(2862), + [anon_sym_rlock] = ACTIONS(2862), + [anon_sym_unsafe] = ACTIONS(2862), + [anon_sym_sql] = ACTIONS(2862), + [sym_int_literal] = ACTIONS(2862), + [sym_float_literal] = ACTIONS(2862), + [sym_rune_literal] = ACTIONS(2862), + [anon_sym_AT] = ACTIONS(2862), + [anon_sym_shared] = ACTIONS(2862), + [anon_sym_map_LBRACK] = ACTIONS(2862), + [anon_sym_chan] = ACTIONS(2862), + [anon_sym_thread] = ACTIONS(2862), + [anon_sym_atomic] = ACTIONS(2862), + [anon_sym_assert] = ACTIONS(2862), + [anon_sym_defer] = ACTIONS(2862), + [anon_sym_goto] = ACTIONS(2862), + [anon_sym_break] = ACTIONS(2862), + [anon_sym_continue] = ACTIONS(2862), + [anon_sym_return] = ACTIONS(2862), + [anon_sym_DOLLARfor] = ACTIONS(2862), + [anon_sym_for] = ACTIONS(2862), + [anon_sym_POUND] = ACTIONS(2862), + [anon_sym_asm] = ACTIONS(2862), + [anon_sym_AT_LBRACK] = ACTIONS(2862), + [sym___double_quote] = ACTIONS(2862), + [sym___single_quote] = ACTIONS(2862), + [sym___c_double_quote] = ACTIONS(2862), + [sym___c_single_quote] = ACTIONS(2862), + [sym___r_double_quote] = ACTIONS(2862), + [sym___r_single_quote] = ACTIONS(2862), }, [870] = { - [ts_builtin_sym_end] = ACTIONS(2870), - [sym_identifier] = ACTIONS(2872), - [anon_sym_LF] = ACTIONS(2872), - [anon_sym_CR] = ACTIONS(2872), - [anon_sym_CR_LF] = ACTIONS(2872), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2872), - [anon_sym_as] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2872), - [anon_sym_COMMA] = ACTIONS(2872), - [anon_sym_const] = ACTIONS(2872), - [anon_sym_LPAREN] = ACTIONS(2872), - [anon_sym_EQ] = ACTIONS(2872), - [anon_sym___global] = ACTIONS(2872), - [anon_sym_type] = ACTIONS(2872), - [anon_sym_PIPE] = ACTIONS(2872), - [anon_sym_fn] = ACTIONS(2872), - [anon_sym_PLUS] = ACTIONS(2872), - [anon_sym_DASH] = ACTIONS(2872), - [anon_sym_STAR] = ACTIONS(2872), - [anon_sym_SLASH] = ACTIONS(2872), - [anon_sym_PERCENT] = ACTIONS(2872), - [anon_sym_LT] = ACTIONS(2872), - [anon_sym_GT] = ACTIONS(2872), - [anon_sym_EQ_EQ] = ACTIONS(2872), - [anon_sym_BANG_EQ] = ACTIONS(2872), - [anon_sym_LT_EQ] = ACTIONS(2872), - [anon_sym_GT_EQ] = ACTIONS(2872), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_struct] = ACTIONS(2872), - [anon_sym_union] = ACTIONS(2872), - [anon_sym_pub] = ACTIONS(2872), - [anon_sym_mut] = ACTIONS(2872), - [anon_sym_enum] = ACTIONS(2872), - [anon_sym_interface] = ACTIONS(2872), - [anon_sym_PLUS_PLUS] = ACTIONS(2872), - [anon_sym_DASH_DASH] = ACTIONS(2872), - [anon_sym_QMARK] = ACTIONS(2872), - [anon_sym_BANG] = ACTIONS(2872), - [anon_sym_go] = ACTIONS(2872), - [anon_sym_spawn] = ACTIONS(2872), - [anon_sym_json_DOTdecode] = ACTIONS(2872), - [anon_sym_LBRACK2] = ACTIONS(2872), - [anon_sym_TILDE] = ACTIONS(2872), - [anon_sym_CARET] = ACTIONS(2872), - [anon_sym_AMP] = ACTIONS(2872), - [anon_sym_LT_DASH] = ACTIONS(2872), - [anon_sym_LT_LT] = ACTIONS(2872), - [anon_sym_GT_GT] = ACTIONS(2872), - [anon_sym_GT_GT_GT] = ACTIONS(2872), - [anon_sym_AMP_CARET] = ACTIONS(2872), - [anon_sym_AMP_AMP] = ACTIONS(2872), - [anon_sym_PIPE_PIPE] = ACTIONS(2872), - [anon_sym_or] = ACTIONS(2872), - [sym_none] = ACTIONS(2872), - [sym_true] = ACTIONS(2872), - [sym_false] = ACTIONS(2872), - [sym_nil] = ACTIONS(2872), - [anon_sym_QMARK_DOT] = ACTIONS(2872), - [anon_sym_POUND_LBRACK] = ACTIONS(2872), - [anon_sym_if] = ACTIONS(2872), - [anon_sym_DOLLARif] = ACTIONS(2872), - [anon_sym_is] = ACTIONS(2872), - [anon_sym_BANGis] = ACTIONS(2872), - [anon_sym_in] = ACTIONS(2872), - [anon_sym_BANGin] = ACTIONS(2872), - [anon_sym_match] = ACTIONS(2872), - [anon_sym_select] = ACTIONS(2872), - [anon_sym_STAR_EQ] = ACTIONS(2872), - [anon_sym_SLASH_EQ] = ACTIONS(2872), - [anon_sym_PERCENT_EQ] = ACTIONS(2872), - [anon_sym_LT_LT_EQ] = ACTIONS(2872), - [anon_sym_GT_GT_EQ] = ACTIONS(2872), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2872), - [anon_sym_AMP_EQ] = ACTIONS(2872), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2872), - [anon_sym_PLUS_EQ] = ACTIONS(2872), - [anon_sym_DASH_EQ] = ACTIONS(2872), - [anon_sym_PIPE_EQ] = ACTIONS(2872), - [anon_sym_CARET_EQ] = ACTIONS(2872), - [anon_sym_COLON_EQ] = ACTIONS(2872), - [anon_sym_lock] = ACTIONS(2872), - [anon_sym_rlock] = ACTIONS(2872), - [anon_sym_unsafe] = ACTIONS(2872), - [anon_sym_sql] = ACTIONS(2872), - [sym_int_literal] = ACTIONS(2872), - [sym_float_literal] = ACTIONS(2872), - [sym_rune_literal] = ACTIONS(2872), - [anon_sym_AT] = ACTIONS(2872), - [anon_sym_shared] = ACTIONS(2872), - [anon_sym_map_LBRACK] = ACTIONS(2872), - [anon_sym_chan] = ACTIONS(2872), - [anon_sym_thread] = ACTIONS(2872), - [anon_sym_atomic] = ACTIONS(2872), - [anon_sym_assert] = ACTIONS(2872), - [anon_sym_defer] = ACTIONS(2872), - [anon_sym_goto] = ACTIONS(2872), - [anon_sym_break] = ACTIONS(2872), - [anon_sym_continue] = ACTIONS(2872), - [anon_sym_return] = ACTIONS(2872), - [anon_sym_DOLLARfor] = ACTIONS(2872), - [anon_sym_for] = ACTIONS(2872), - [anon_sym_POUND] = ACTIONS(2872), - [anon_sym_asm] = ACTIONS(2872), - [anon_sym_AT_LBRACK] = ACTIONS(2872), - [sym___double_quote] = ACTIONS(2872), - [sym___single_quote] = ACTIONS(2872), - [sym___c_double_quote] = ACTIONS(2872), - [sym___c_single_quote] = ACTIONS(2872), - [sym___r_double_quote] = ACTIONS(2872), - [sym___r_single_quote] = ACTIONS(2872), + [ts_builtin_sym_end] = ACTIONS(2864), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LF] = ACTIONS(2866), + [anon_sym_CR] = ACTIONS(2866), + [anon_sym_CR_LF] = ACTIONS(2866), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2866), + [anon_sym_as] = ACTIONS(2866), + [anon_sym_LBRACE] = ACTIONS(2866), + [anon_sym_COMMA] = ACTIONS(2866), + [anon_sym_const] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2866), + [anon_sym_EQ] = ACTIONS(2866), + [anon_sym___global] = ACTIONS(2866), + [anon_sym_type] = ACTIONS(2866), + [anon_sym_PIPE] = ACTIONS(2866), + [anon_sym_fn] = ACTIONS(2866), + [anon_sym_PLUS] = ACTIONS(2866), + [anon_sym_DASH] = ACTIONS(2866), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_SLASH] = ACTIONS(2866), + [anon_sym_PERCENT] = ACTIONS(2866), + [anon_sym_LT] = ACTIONS(2866), + [anon_sym_GT] = ACTIONS(2866), + [anon_sym_EQ_EQ] = ACTIONS(2866), + [anon_sym_BANG_EQ] = ACTIONS(2866), + [anon_sym_LT_EQ] = ACTIONS(2866), + [anon_sym_GT_EQ] = ACTIONS(2866), + [anon_sym_LBRACK] = ACTIONS(2864), + [anon_sym_struct] = ACTIONS(2866), + [anon_sym_union] = ACTIONS(2866), + [anon_sym_pub] = ACTIONS(2866), + [anon_sym_mut] = ACTIONS(2866), + [anon_sym_enum] = ACTIONS(2866), + [anon_sym_interface] = ACTIONS(2866), + [anon_sym_PLUS_PLUS] = ACTIONS(2866), + [anon_sym_DASH_DASH] = ACTIONS(2866), + [anon_sym_QMARK] = ACTIONS(2866), + [anon_sym_BANG] = ACTIONS(2866), + [anon_sym_go] = ACTIONS(2866), + [anon_sym_spawn] = ACTIONS(2866), + [anon_sym_json_DOTdecode] = ACTIONS(2866), + [anon_sym_LBRACK2] = ACTIONS(2866), + [anon_sym_TILDE] = ACTIONS(2866), + [anon_sym_CARET] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_LT_DASH] = ACTIONS(2866), + [anon_sym_LT_LT] = ACTIONS(2866), + [anon_sym_GT_GT] = ACTIONS(2866), + [anon_sym_GT_GT_GT] = ACTIONS(2866), + [anon_sym_AMP_CARET] = ACTIONS(2866), + [anon_sym_AMP_AMP] = ACTIONS(2866), + [anon_sym_PIPE_PIPE] = ACTIONS(2866), + [anon_sym_or] = ACTIONS(2866), + [sym_none] = ACTIONS(2866), + [sym_true] = ACTIONS(2866), + [sym_false] = ACTIONS(2866), + [sym_nil] = ACTIONS(2866), + [anon_sym_QMARK_DOT] = ACTIONS(2866), + [anon_sym_POUND_LBRACK] = ACTIONS(2866), + [anon_sym_if] = ACTIONS(2866), + [anon_sym_DOLLARif] = ACTIONS(2866), + [anon_sym_is] = ACTIONS(2866), + [anon_sym_BANGis] = ACTIONS(2866), + [anon_sym_in] = ACTIONS(2866), + [anon_sym_BANGin] = ACTIONS(2866), + [anon_sym_match] = ACTIONS(2866), + [anon_sym_select] = ACTIONS(2866), + [anon_sym_STAR_EQ] = ACTIONS(2866), + [anon_sym_SLASH_EQ] = ACTIONS(2866), + [anon_sym_PERCENT_EQ] = ACTIONS(2866), + [anon_sym_LT_LT_EQ] = ACTIONS(2866), + [anon_sym_GT_GT_EQ] = ACTIONS(2866), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2866), + [anon_sym_AMP_EQ] = ACTIONS(2866), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2866), + [anon_sym_PLUS_EQ] = ACTIONS(2866), + [anon_sym_DASH_EQ] = ACTIONS(2866), + [anon_sym_PIPE_EQ] = ACTIONS(2866), + [anon_sym_CARET_EQ] = ACTIONS(2866), + [anon_sym_COLON_EQ] = ACTIONS(2866), + [anon_sym_lock] = ACTIONS(2866), + [anon_sym_rlock] = ACTIONS(2866), + [anon_sym_unsafe] = ACTIONS(2866), + [anon_sym_sql] = ACTIONS(2866), + [sym_int_literal] = ACTIONS(2866), + [sym_float_literal] = ACTIONS(2866), + [sym_rune_literal] = ACTIONS(2866), + [anon_sym_AT] = ACTIONS(2866), + [anon_sym_shared] = ACTIONS(2866), + [anon_sym_map_LBRACK] = ACTIONS(2866), + [anon_sym_chan] = ACTIONS(2866), + [anon_sym_thread] = ACTIONS(2866), + [anon_sym_atomic] = ACTIONS(2866), + [anon_sym_assert] = ACTIONS(2866), + [anon_sym_defer] = ACTIONS(2866), + [anon_sym_goto] = ACTIONS(2866), + [anon_sym_break] = ACTIONS(2866), + [anon_sym_continue] = ACTIONS(2866), + [anon_sym_return] = ACTIONS(2866), + [anon_sym_DOLLARfor] = ACTIONS(2866), + [anon_sym_for] = ACTIONS(2866), + [anon_sym_POUND] = ACTIONS(2866), + [anon_sym_asm] = ACTIONS(2866), + [anon_sym_AT_LBRACK] = ACTIONS(2866), + [sym___double_quote] = ACTIONS(2866), + [sym___single_quote] = ACTIONS(2866), + [sym___c_double_quote] = ACTIONS(2866), + [sym___c_single_quote] = ACTIONS(2866), + [sym___r_double_quote] = ACTIONS(2866), + [sym___r_single_quote] = ACTIONS(2866), }, [871] = { - [ts_builtin_sym_end] = ACTIONS(2874), - [sym_identifier] = ACTIONS(2876), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_CR] = ACTIONS(2876), - [anon_sym_CR_LF] = ACTIONS(2876), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2876), - [anon_sym_as] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2876), - [anon_sym_COMMA] = ACTIONS(2876), - [anon_sym_const] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2876), - [anon_sym_EQ] = ACTIONS(2876), - [anon_sym___global] = ACTIONS(2876), - [anon_sym_type] = ACTIONS(2876), - [anon_sym_PIPE] = ACTIONS(2876), - [anon_sym_fn] = ACTIONS(2876), - [anon_sym_PLUS] = ACTIONS(2876), - [anon_sym_DASH] = ACTIONS(2876), - [anon_sym_STAR] = ACTIONS(2876), - [anon_sym_SLASH] = ACTIONS(2876), - [anon_sym_PERCENT] = ACTIONS(2876), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_GT] = ACTIONS(2876), - [anon_sym_EQ_EQ] = ACTIONS(2876), - [anon_sym_BANG_EQ] = ACTIONS(2876), - [anon_sym_LT_EQ] = ACTIONS(2876), - [anon_sym_GT_EQ] = ACTIONS(2876), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_struct] = ACTIONS(2876), - [anon_sym_union] = ACTIONS(2876), - [anon_sym_pub] = ACTIONS(2876), - [anon_sym_mut] = ACTIONS(2876), - [anon_sym_enum] = ACTIONS(2876), - [anon_sym_interface] = ACTIONS(2876), - [anon_sym_PLUS_PLUS] = ACTIONS(2876), - [anon_sym_DASH_DASH] = ACTIONS(2876), - [anon_sym_QMARK] = ACTIONS(2876), - [anon_sym_BANG] = ACTIONS(2876), - [anon_sym_go] = ACTIONS(2876), - [anon_sym_spawn] = ACTIONS(2876), - [anon_sym_json_DOTdecode] = ACTIONS(2876), - [anon_sym_LBRACK2] = ACTIONS(2876), - [anon_sym_TILDE] = ACTIONS(2876), - [anon_sym_CARET] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2876), - [anon_sym_LT_DASH] = ACTIONS(2876), - [anon_sym_LT_LT] = ACTIONS(2876), - [anon_sym_GT_GT] = ACTIONS(2876), - [anon_sym_GT_GT_GT] = ACTIONS(2876), - [anon_sym_AMP_CARET] = ACTIONS(2876), - [anon_sym_AMP_AMP] = ACTIONS(2876), - [anon_sym_PIPE_PIPE] = ACTIONS(2876), - [anon_sym_or] = ACTIONS(2876), - [sym_none] = ACTIONS(2876), - [sym_true] = ACTIONS(2876), - [sym_false] = ACTIONS(2876), - [sym_nil] = ACTIONS(2876), - [anon_sym_QMARK_DOT] = ACTIONS(2876), - [anon_sym_POUND_LBRACK] = ACTIONS(2876), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_DOLLARif] = ACTIONS(2876), - [anon_sym_is] = ACTIONS(2876), - [anon_sym_BANGis] = ACTIONS(2876), - [anon_sym_in] = ACTIONS(2876), - [anon_sym_BANGin] = ACTIONS(2876), - [anon_sym_match] = ACTIONS(2876), - [anon_sym_select] = ACTIONS(2876), - [anon_sym_STAR_EQ] = ACTIONS(2876), - [anon_sym_SLASH_EQ] = ACTIONS(2876), - [anon_sym_PERCENT_EQ] = ACTIONS(2876), - [anon_sym_LT_LT_EQ] = ACTIONS(2876), - [anon_sym_GT_GT_EQ] = ACTIONS(2876), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2876), - [anon_sym_AMP_EQ] = ACTIONS(2876), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2876), - [anon_sym_PLUS_EQ] = ACTIONS(2876), - [anon_sym_DASH_EQ] = ACTIONS(2876), - [anon_sym_PIPE_EQ] = ACTIONS(2876), - [anon_sym_CARET_EQ] = ACTIONS(2876), - [anon_sym_COLON_EQ] = ACTIONS(2876), - [anon_sym_lock] = ACTIONS(2876), - [anon_sym_rlock] = ACTIONS(2876), - [anon_sym_unsafe] = ACTIONS(2876), - [anon_sym_sql] = ACTIONS(2876), - [sym_int_literal] = ACTIONS(2876), - [sym_float_literal] = ACTIONS(2876), - [sym_rune_literal] = ACTIONS(2876), - [anon_sym_AT] = ACTIONS(2876), - [anon_sym_shared] = ACTIONS(2876), - [anon_sym_map_LBRACK] = ACTIONS(2876), - [anon_sym_chan] = ACTIONS(2876), - [anon_sym_thread] = ACTIONS(2876), - [anon_sym_atomic] = ACTIONS(2876), - [anon_sym_assert] = ACTIONS(2876), - [anon_sym_defer] = ACTIONS(2876), - [anon_sym_goto] = ACTIONS(2876), - [anon_sym_break] = ACTIONS(2876), - [anon_sym_continue] = ACTIONS(2876), - [anon_sym_return] = ACTIONS(2876), - [anon_sym_DOLLARfor] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2876), - [anon_sym_POUND] = ACTIONS(2876), - [anon_sym_asm] = ACTIONS(2876), - [anon_sym_AT_LBRACK] = ACTIONS(2876), - [sym___double_quote] = ACTIONS(2876), - [sym___single_quote] = ACTIONS(2876), - [sym___c_double_quote] = ACTIONS(2876), - [sym___c_single_quote] = ACTIONS(2876), - [sym___r_double_quote] = ACTIONS(2876), - [sym___r_single_quote] = ACTIONS(2876), + [ts_builtin_sym_end] = ACTIONS(2868), + [sym_identifier] = ACTIONS(2870), + [anon_sym_LF] = ACTIONS(2870), + [anon_sym_CR] = ACTIONS(2870), + [anon_sym_CR_LF] = ACTIONS(2870), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2870), + [anon_sym_as] = ACTIONS(2870), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_COMMA] = ACTIONS(2870), + [anon_sym_const] = ACTIONS(2870), + [anon_sym_LPAREN] = ACTIONS(2870), + [anon_sym_EQ] = ACTIONS(2870), + [anon_sym___global] = ACTIONS(2870), + [anon_sym_type] = ACTIONS(2870), + [anon_sym_PIPE] = ACTIONS(2870), + [anon_sym_fn] = ACTIONS(2870), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_SLASH] = ACTIONS(2870), + [anon_sym_PERCENT] = ACTIONS(2870), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_GT] = ACTIONS(2870), + [anon_sym_EQ_EQ] = ACTIONS(2870), + [anon_sym_BANG_EQ] = ACTIONS(2870), + [anon_sym_LT_EQ] = ACTIONS(2870), + [anon_sym_GT_EQ] = ACTIONS(2870), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2870), + [anon_sym_union] = ACTIONS(2870), + [anon_sym_pub] = ACTIONS(2870), + [anon_sym_mut] = ACTIONS(2870), + [anon_sym_enum] = ACTIONS(2870), + [anon_sym_interface] = ACTIONS(2870), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_QMARK] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_go] = ACTIONS(2870), + [anon_sym_spawn] = ACTIONS(2870), + [anon_sym_json_DOTdecode] = ACTIONS(2870), + [anon_sym_LBRACK2] = ACTIONS(2870), + [anon_sym_TILDE] = ACTIONS(2870), + [anon_sym_CARET] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2870), + [anon_sym_LT_DASH] = ACTIONS(2870), + [anon_sym_LT_LT] = ACTIONS(2870), + [anon_sym_GT_GT] = ACTIONS(2870), + [anon_sym_GT_GT_GT] = ACTIONS(2870), + [anon_sym_AMP_CARET] = ACTIONS(2870), + [anon_sym_AMP_AMP] = ACTIONS(2870), + [anon_sym_PIPE_PIPE] = ACTIONS(2870), + [anon_sym_or] = ACTIONS(2870), + [sym_none] = ACTIONS(2870), + [sym_true] = ACTIONS(2870), + [sym_false] = ACTIONS(2870), + [sym_nil] = ACTIONS(2870), + [anon_sym_QMARK_DOT] = ACTIONS(2870), + [anon_sym_POUND_LBRACK] = ACTIONS(2870), + [anon_sym_if] = ACTIONS(2870), + [anon_sym_DOLLARif] = ACTIONS(2870), + [anon_sym_is] = ACTIONS(2870), + [anon_sym_BANGis] = ACTIONS(2870), + [anon_sym_in] = ACTIONS(2870), + [anon_sym_BANGin] = ACTIONS(2870), + [anon_sym_match] = ACTIONS(2870), + [anon_sym_select] = ACTIONS(2870), + [anon_sym_STAR_EQ] = ACTIONS(2870), + [anon_sym_SLASH_EQ] = ACTIONS(2870), + [anon_sym_PERCENT_EQ] = ACTIONS(2870), + [anon_sym_LT_LT_EQ] = ACTIONS(2870), + [anon_sym_GT_GT_EQ] = ACTIONS(2870), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2870), + [anon_sym_AMP_EQ] = ACTIONS(2870), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2870), + [anon_sym_PLUS_EQ] = ACTIONS(2870), + [anon_sym_DASH_EQ] = ACTIONS(2870), + [anon_sym_PIPE_EQ] = ACTIONS(2870), + [anon_sym_CARET_EQ] = ACTIONS(2870), + [anon_sym_COLON_EQ] = ACTIONS(2870), + [anon_sym_lock] = ACTIONS(2870), + [anon_sym_rlock] = ACTIONS(2870), + [anon_sym_unsafe] = ACTIONS(2870), + [anon_sym_sql] = ACTIONS(2870), + [sym_int_literal] = ACTIONS(2870), + [sym_float_literal] = ACTIONS(2870), + [sym_rune_literal] = ACTIONS(2870), + [anon_sym_AT] = ACTIONS(2870), + [anon_sym_shared] = ACTIONS(2870), + [anon_sym_map_LBRACK] = ACTIONS(2870), + [anon_sym_chan] = ACTIONS(2870), + [anon_sym_thread] = ACTIONS(2870), + [anon_sym_atomic] = ACTIONS(2870), + [anon_sym_assert] = ACTIONS(2870), + [anon_sym_defer] = ACTIONS(2870), + [anon_sym_goto] = ACTIONS(2870), + [anon_sym_break] = ACTIONS(2870), + [anon_sym_continue] = ACTIONS(2870), + [anon_sym_return] = ACTIONS(2870), + [anon_sym_DOLLARfor] = ACTIONS(2870), + [anon_sym_for] = ACTIONS(2870), + [anon_sym_POUND] = ACTIONS(2870), + [anon_sym_asm] = ACTIONS(2870), + [anon_sym_AT_LBRACK] = ACTIONS(2870), + [sym___double_quote] = ACTIONS(2870), + [sym___single_quote] = ACTIONS(2870), + [sym___c_double_quote] = ACTIONS(2870), + [sym___c_single_quote] = ACTIONS(2870), + [sym___r_double_quote] = ACTIONS(2870), + [sym___r_single_quote] = ACTIONS(2870), }, [872] = { - [ts_builtin_sym_end] = ACTIONS(2878), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LF] = ACTIONS(2880), - [anon_sym_CR] = ACTIONS(2880), - [anon_sym_CR_LF] = ACTIONS(2880), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2880), - [anon_sym_as] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_COMMA] = ACTIONS(2880), - [anon_sym_const] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2880), - [anon_sym_EQ] = ACTIONS(2880), - [anon_sym___global] = ACTIONS(2880), - [anon_sym_type] = ACTIONS(2880), - [anon_sym_PIPE] = ACTIONS(2880), - [anon_sym_fn] = ACTIONS(2880), - [anon_sym_PLUS] = ACTIONS(2880), - [anon_sym_DASH] = ACTIONS(2880), - [anon_sym_STAR] = ACTIONS(2880), - [anon_sym_SLASH] = ACTIONS(2880), - [anon_sym_PERCENT] = ACTIONS(2880), - [anon_sym_LT] = ACTIONS(2880), - [anon_sym_GT] = ACTIONS(2880), - [anon_sym_EQ_EQ] = ACTIONS(2880), - [anon_sym_BANG_EQ] = ACTIONS(2880), - [anon_sym_LT_EQ] = ACTIONS(2880), - [anon_sym_GT_EQ] = ACTIONS(2880), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_struct] = ACTIONS(2880), - [anon_sym_union] = ACTIONS(2880), - [anon_sym_pub] = ACTIONS(2880), - [anon_sym_mut] = ACTIONS(2880), - [anon_sym_enum] = ACTIONS(2880), - [anon_sym_interface] = ACTIONS(2880), - [anon_sym_PLUS_PLUS] = ACTIONS(2880), - [anon_sym_DASH_DASH] = ACTIONS(2880), - [anon_sym_QMARK] = ACTIONS(2880), - [anon_sym_BANG] = ACTIONS(2880), - [anon_sym_go] = ACTIONS(2880), - [anon_sym_spawn] = ACTIONS(2880), - [anon_sym_json_DOTdecode] = ACTIONS(2880), - [anon_sym_LBRACK2] = ACTIONS(2880), - [anon_sym_TILDE] = ACTIONS(2880), - [anon_sym_CARET] = ACTIONS(2880), - [anon_sym_AMP] = ACTIONS(2880), - [anon_sym_LT_DASH] = ACTIONS(2880), - [anon_sym_LT_LT] = ACTIONS(2880), - [anon_sym_GT_GT] = ACTIONS(2880), - [anon_sym_GT_GT_GT] = ACTIONS(2880), - [anon_sym_AMP_CARET] = ACTIONS(2880), - [anon_sym_AMP_AMP] = ACTIONS(2880), - [anon_sym_PIPE_PIPE] = ACTIONS(2880), - [anon_sym_or] = ACTIONS(2880), - [sym_none] = ACTIONS(2880), - [sym_true] = ACTIONS(2880), - [sym_false] = ACTIONS(2880), - [sym_nil] = ACTIONS(2880), - [anon_sym_QMARK_DOT] = ACTIONS(2880), - [anon_sym_POUND_LBRACK] = ACTIONS(2880), - [anon_sym_if] = ACTIONS(2880), - [anon_sym_DOLLARif] = ACTIONS(2880), - [anon_sym_is] = ACTIONS(2880), - [anon_sym_BANGis] = ACTIONS(2880), - [anon_sym_in] = ACTIONS(2880), - [anon_sym_BANGin] = ACTIONS(2880), - [anon_sym_match] = ACTIONS(2880), - [anon_sym_select] = ACTIONS(2880), - [anon_sym_STAR_EQ] = ACTIONS(2880), - [anon_sym_SLASH_EQ] = ACTIONS(2880), - [anon_sym_PERCENT_EQ] = ACTIONS(2880), - [anon_sym_LT_LT_EQ] = ACTIONS(2880), - [anon_sym_GT_GT_EQ] = ACTIONS(2880), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2880), - [anon_sym_AMP_EQ] = ACTIONS(2880), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2880), - [anon_sym_PLUS_EQ] = ACTIONS(2880), - [anon_sym_DASH_EQ] = ACTIONS(2880), - [anon_sym_PIPE_EQ] = ACTIONS(2880), - [anon_sym_CARET_EQ] = ACTIONS(2880), - [anon_sym_COLON_EQ] = ACTIONS(2880), - [anon_sym_lock] = ACTIONS(2880), - [anon_sym_rlock] = ACTIONS(2880), - [anon_sym_unsafe] = ACTIONS(2880), - [anon_sym_sql] = ACTIONS(2880), - [sym_int_literal] = ACTIONS(2880), - [sym_float_literal] = ACTIONS(2880), - [sym_rune_literal] = ACTIONS(2880), - [anon_sym_AT] = ACTIONS(2880), - [anon_sym_shared] = ACTIONS(2880), - [anon_sym_map_LBRACK] = ACTIONS(2880), - [anon_sym_chan] = ACTIONS(2880), - [anon_sym_thread] = ACTIONS(2880), - [anon_sym_atomic] = ACTIONS(2880), - [anon_sym_assert] = ACTIONS(2880), - [anon_sym_defer] = ACTIONS(2880), - [anon_sym_goto] = ACTIONS(2880), - [anon_sym_break] = ACTIONS(2880), - [anon_sym_continue] = ACTIONS(2880), - [anon_sym_return] = ACTIONS(2880), - [anon_sym_DOLLARfor] = ACTIONS(2880), - [anon_sym_for] = ACTIONS(2880), - [anon_sym_POUND] = ACTIONS(2880), - [anon_sym_asm] = ACTIONS(2880), - [anon_sym_AT_LBRACK] = ACTIONS(2880), - [sym___double_quote] = ACTIONS(2880), - [sym___single_quote] = ACTIONS(2880), - [sym___c_double_quote] = ACTIONS(2880), - [sym___c_single_quote] = ACTIONS(2880), - [sym___r_double_quote] = ACTIONS(2880), - [sym___r_single_quote] = ACTIONS(2880), + [ts_builtin_sym_end] = ACTIONS(2872), + [sym_identifier] = ACTIONS(2874), + [anon_sym_LF] = ACTIONS(2874), + [anon_sym_CR] = ACTIONS(2874), + [anon_sym_CR_LF] = ACTIONS(2874), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2874), + [anon_sym_as] = ACTIONS(2874), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_COMMA] = ACTIONS(2874), + [anon_sym_const] = ACTIONS(2874), + [anon_sym_LPAREN] = ACTIONS(2874), + [anon_sym_EQ] = ACTIONS(2874), + [anon_sym___global] = ACTIONS(2874), + [anon_sym_type] = ACTIONS(2874), + [anon_sym_PIPE] = ACTIONS(2874), + [anon_sym_fn] = ACTIONS(2874), + [anon_sym_PLUS] = ACTIONS(2874), + [anon_sym_DASH] = ACTIONS(2874), + [anon_sym_STAR] = ACTIONS(2874), + [anon_sym_SLASH] = ACTIONS(2874), + [anon_sym_PERCENT] = ACTIONS(2874), + [anon_sym_LT] = ACTIONS(2874), + [anon_sym_GT] = ACTIONS(2874), + [anon_sym_EQ_EQ] = ACTIONS(2874), + [anon_sym_BANG_EQ] = ACTIONS(2874), + [anon_sym_LT_EQ] = ACTIONS(2874), + [anon_sym_GT_EQ] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2874), + [anon_sym_union] = ACTIONS(2874), + [anon_sym_pub] = ACTIONS(2874), + [anon_sym_mut] = ACTIONS(2874), + [anon_sym_enum] = ACTIONS(2874), + [anon_sym_interface] = ACTIONS(2874), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [anon_sym_QMARK] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_go] = ACTIONS(2874), + [anon_sym_spawn] = ACTIONS(2874), + [anon_sym_json_DOTdecode] = ACTIONS(2874), + [anon_sym_LBRACK2] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_CARET] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_LT_DASH] = ACTIONS(2874), + [anon_sym_LT_LT] = ACTIONS(2874), + [anon_sym_GT_GT] = ACTIONS(2874), + [anon_sym_GT_GT_GT] = ACTIONS(2874), + [anon_sym_AMP_CARET] = ACTIONS(2874), + [anon_sym_AMP_AMP] = ACTIONS(2874), + [anon_sym_PIPE_PIPE] = ACTIONS(2874), + [anon_sym_or] = ACTIONS(2874), + [sym_none] = ACTIONS(2874), + [sym_true] = ACTIONS(2874), + [sym_false] = ACTIONS(2874), + [sym_nil] = ACTIONS(2874), + [anon_sym_QMARK_DOT] = ACTIONS(2874), + [anon_sym_POUND_LBRACK] = ACTIONS(2874), + [anon_sym_if] = ACTIONS(2874), + [anon_sym_DOLLARif] = ACTIONS(2874), + [anon_sym_is] = ACTIONS(2874), + [anon_sym_BANGis] = ACTIONS(2874), + [anon_sym_in] = ACTIONS(2874), + [anon_sym_BANGin] = ACTIONS(2874), + [anon_sym_match] = ACTIONS(2874), + [anon_sym_select] = ACTIONS(2874), + [anon_sym_STAR_EQ] = ACTIONS(2874), + [anon_sym_SLASH_EQ] = ACTIONS(2874), + [anon_sym_PERCENT_EQ] = ACTIONS(2874), + [anon_sym_LT_LT_EQ] = ACTIONS(2874), + [anon_sym_GT_GT_EQ] = ACTIONS(2874), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2874), + [anon_sym_AMP_EQ] = ACTIONS(2874), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2874), + [anon_sym_PLUS_EQ] = ACTIONS(2874), + [anon_sym_DASH_EQ] = ACTIONS(2874), + [anon_sym_PIPE_EQ] = ACTIONS(2874), + [anon_sym_CARET_EQ] = ACTIONS(2874), + [anon_sym_COLON_EQ] = ACTIONS(2874), + [anon_sym_lock] = ACTIONS(2874), + [anon_sym_rlock] = ACTIONS(2874), + [anon_sym_unsafe] = ACTIONS(2874), + [anon_sym_sql] = ACTIONS(2874), + [sym_int_literal] = ACTIONS(2874), + [sym_float_literal] = ACTIONS(2874), + [sym_rune_literal] = ACTIONS(2874), + [anon_sym_AT] = ACTIONS(2874), + [anon_sym_shared] = ACTIONS(2874), + [anon_sym_map_LBRACK] = ACTIONS(2874), + [anon_sym_chan] = ACTIONS(2874), + [anon_sym_thread] = ACTIONS(2874), + [anon_sym_atomic] = ACTIONS(2874), + [anon_sym_assert] = ACTIONS(2874), + [anon_sym_defer] = ACTIONS(2874), + [anon_sym_goto] = ACTIONS(2874), + [anon_sym_break] = ACTIONS(2874), + [anon_sym_continue] = ACTIONS(2874), + [anon_sym_return] = ACTIONS(2874), + [anon_sym_DOLLARfor] = ACTIONS(2874), + [anon_sym_for] = ACTIONS(2874), + [anon_sym_POUND] = ACTIONS(2874), + [anon_sym_asm] = ACTIONS(2874), + [anon_sym_AT_LBRACK] = ACTIONS(2874), + [sym___double_quote] = ACTIONS(2874), + [sym___single_quote] = ACTIONS(2874), + [sym___c_double_quote] = ACTIONS(2874), + [sym___c_single_quote] = ACTIONS(2874), + [sym___r_double_quote] = ACTIONS(2874), + [sym___r_single_quote] = ACTIONS(2874), }, [873] = { - [ts_builtin_sym_end] = ACTIONS(2882), - [sym_identifier] = ACTIONS(2884), - [anon_sym_LF] = ACTIONS(2884), - [anon_sym_CR] = ACTIONS(2884), - [anon_sym_CR_LF] = ACTIONS(2884), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_as] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(2884), - [anon_sym_const] = ACTIONS(2884), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_EQ] = ACTIONS(2884), - [anon_sym___global] = ACTIONS(2884), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_PIPE] = ACTIONS(2884), - [anon_sym_fn] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2884), - [anon_sym_SLASH] = ACTIONS(2884), - [anon_sym_PERCENT] = ACTIONS(2884), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_GT] = ACTIONS(2884), - [anon_sym_EQ_EQ] = ACTIONS(2884), - [anon_sym_BANG_EQ] = ACTIONS(2884), - [anon_sym_LT_EQ] = ACTIONS(2884), - [anon_sym_GT_EQ] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_union] = ACTIONS(2884), - [anon_sym_pub] = ACTIONS(2884), - [anon_sym_mut] = ACTIONS(2884), - [anon_sym_enum] = ACTIONS(2884), - [anon_sym_interface] = ACTIONS(2884), - [anon_sym_PLUS_PLUS] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2884), - [anon_sym_QMARK] = ACTIONS(2884), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_go] = ACTIONS(2884), - [anon_sym_spawn] = ACTIONS(2884), - [anon_sym_json_DOTdecode] = ACTIONS(2884), - [anon_sym_LBRACK2] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2884), - [anon_sym_CARET] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_LT_DASH] = ACTIONS(2884), - [anon_sym_LT_LT] = ACTIONS(2884), - [anon_sym_GT_GT] = ACTIONS(2884), - [anon_sym_GT_GT_GT] = ACTIONS(2884), - [anon_sym_AMP_CARET] = ACTIONS(2884), - [anon_sym_AMP_AMP] = ACTIONS(2884), - [anon_sym_PIPE_PIPE] = ACTIONS(2884), - [anon_sym_or] = ACTIONS(2884), - [sym_none] = ACTIONS(2884), - [sym_true] = ACTIONS(2884), - [sym_false] = ACTIONS(2884), - [sym_nil] = ACTIONS(2884), - [anon_sym_QMARK_DOT] = ACTIONS(2884), - [anon_sym_POUND_LBRACK] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_DOLLARif] = ACTIONS(2884), - [anon_sym_is] = ACTIONS(2884), - [anon_sym_BANGis] = ACTIONS(2884), - [anon_sym_in] = ACTIONS(2884), - [anon_sym_BANGin] = ACTIONS(2884), - [anon_sym_match] = ACTIONS(2884), - [anon_sym_select] = ACTIONS(2884), - [anon_sym_STAR_EQ] = ACTIONS(2884), - [anon_sym_SLASH_EQ] = ACTIONS(2884), - [anon_sym_PERCENT_EQ] = ACTIONS(2884), - [anon_sym_LT_LT_EQ] = ACTIONS(2884), - [anon_sym_GT_GT_EQ] = ACTIONS(2884), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2884), - [anon_sym_AMP_EQ] = ACTIONS(2884), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2884), - [anon_sym_PLUS_EQ] = ACTIONS(2884), - [anon_sym_DASH_EQ] = ACTIONS(2884), - [anon_sym_PIPE_EQ] = ACTIONS(2884), - [anon_sym_CARET_EQ] = ACTIONS(2884), - [anon_sym_COLON_EQ] = ACTIONS(2884), - [anon_sym_lock] = ACTIONS(2884), - [anon_sym_rlock] = ACTIONS(2884), - [anon_sym_unsafe] = ACTIONS(2884), - [anon_sym_sql] = ACTIONS(2884), - [sym_int_literal] = ACTIONS(2884), - [sym_float_literal] = ACTIONS(2884), - [sym_rune_literal] = ACTIONS(2884), - [anon_sym_AT] = ACTIONS(2884), - [anon_sym_shared] = ACTIONS(2884), - [anon_sym_map_LBRACK] = ACTIONS(2884), - [anon_sym_chan] = ACTIONS(2884), - [anon_sym_thread] = ACTIONS(2884), - [anon_sym_atomic] = ACTIONS(2884), - [anon_sym_assert] = ACTIONS(2884), - [anon_sym_defer] = ACTIONS(2884), - [anon_sym_goto] = ACTIONS(2884), - [anon_sym_break] = ACTIONS(2884), - [anon_sym_continue] = ACTIONS(2884), - [anon_sym_return] = ACTIONS(2884), - [anon_sym_DOLLARfor] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2884), - [anon_sym_POUND] = ACTIONS(2884), - [anon_sym_asm] = ACTIONS(2884), - [anon_sym_AT_LBRACK] = ACTIONS(2884), - [sym___double_quote] = ACTIONS(2884), - [sym___single_quote] = ACTIONS(2884), - [sym___c_double_quote] = ACTIONS(2884), - [sym___c_single_quote] = ACTIONS(2884), - [sym___r_double_quote] = ACTIONS(2884), - [sym___r_single_quote] = ACTIONS(2884), + [ts_builtin_sym_end] = ACTIONS(2876), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LF] = ACTIONS(2878), + [anon_sym_CR] = ACTIONS(2878), + [anon_sym_CR_LF] = ACTIONS(2878), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2878), + [anon_sym_as] = ACTIONS(2878), + [anon_sym_LBRACE] = ACTIONS(2878), + [anon_sym_COMMA] = ACTIONS(2878), + [anon_sym_const] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2878), + [anon_sym_EQ] = ACTIONS(2878), + [anon_sym___global] = ACTIONS(2878), + [anon_sym_type] = ACTIONS(2878), + [anon_sym_PIPE] = ACTIONS(2878), + [anon_sym_fn] = ACTIONS(2878), + [anon_sym_PLUS] = ACTIONS(2878), + [anon_sym_DASH] = ACTIONS(2878), + [anon_sym_STAR] = ACTIONS(2878), + [anon_sym_SLASH] = ACTIONS(2878), + [anon_sym_PERCENT] = ACTIONS(2878), + [anon_sym_LT] = ACTIONS(2878), + [anon_sym_GT] = ACTIONS(2878), + [anon_sym_EQ_EQ] = ACTIONS(2878), + [anon_sym_BANG_EQ] = ACTIONS(2878), + [anon_sym_LT_EQ] = ACTIONS(2878), + [anon_sym_GT_EQ] = ACTIONS(2878), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_struct] = ACTIONS(2878), + [anon_sym_union] = ACTIONS(2878), + [anon_sym_pub] = ACTIONS(2878), + [anon_sym_mut] = ACTIONS(2878), + [anon_sym_enum] = ACTIONS(2878), + [anon_sym_interface] = ACTIONS(2878), + [anon_sym_PLUS_PLUS] = ACTIONS(2878), + [anon_sym_DASH_DASH] = ACTIONS(2878), + [anon_sym_QMARK] = ACTIONS(2878), + [anon_sym_BANG] = ACTIONS(2878), + [anon_sym_go] = ACTIONS(2878), + [anon_sym_spawn] = ACTIONS(2878), + [anon_sym_json_DOTdecode] = ACTIONS(2878), + [anon_sym_LBRACK2] = ACTIONS(2878), + [anon_sym_TILDE] = ACTIONS(2878), + [anon_sym_CARET] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2878), + [anon_sym_LT_DASH] = ACTIONS(2878), + [anon_sym_LT_LT] = ACTIONS(2878), + [anon_sym_GT_GT] = ACTIONS(2878), + [anon_sym_GT_GT_GT] = ACTIONS(2878), + [anon_sym_AMP_CARET] = ACTIONS(2878), + [anon_sym_AMP_AMP] = ACTIONS(2878), + [anon_sym_PIPE_PIPE] = ACTIONS(2878), + [anon_sym_or] = ACTIONS(2878), + [sym_none] = ACTIONS(2878), + [sym_true] = ACTIONS(2878), + [sym_false] = ACTIONS(2878), + [sym_nil] = ACTIONS(2878), + [anon_sym_QMARK_DOT] = ACTIONS(2878), + [anon_sym_POUND_LBRACK] = ACTIONS(2878), + [anon_sym_if] = ACTIONS(2878), + [anon_sym_DOLLARif] = ACTIONS(2878), + [anon_sym_is] = ACTIONS(2878), + [anon_sym_BANGis] = ACTIONS(2878), + [anon_sym_in] = ACTIONS(2878), + [anon_sym_BANGin] = ACTIONS(2878), + [anon_sym_match] = ACTIONS(2878), + [anon_sym_select] = ACTIONS(2878), + [anon_sym_STAR_EQ] = ACTIONS(2878), + [anon_sym_SLASH_EQ] = ACTIONS(2878), + [anon_sym_PERCENT_EQ] = ACTIONS(2878), + [anon_sym_LT_LT_EQ] = ACTIONS(2878), + [anon_sym_GT_GT_EQ] = ACTIONS(2878), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2878), + [anon_sym_AMP_EQ] = ACTIONS(2878), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2878), + [anon_sym_PLUS_EQ] = ACTIONS(2878), + [anon_sym_DASH_EQ] = ACTIONS(2878), + [anon_sym_PIPE_EQ] = ACTIONS(2878), + [anon_sym_CARET_EQ] = ACTIONS(2878), + [anon_sym_COLON_EQ] = ACTIONS(2878), + [anon_sym_lock] = ACTIONS(2878), + [anon_sym_rlock] = ACTIONS(2878), + [anon_sym_unsafe] = ACTIONS(2878), + [anon_sym_sql] = ACTIONS(2878), + [sym_int_literal] = ACTIONS(2878), + [sym_float_literal] = ACTIONS(2878), + [sym_rune_literal] = ACTIONS(2878), + [anon_sym_AT] = ACTIONS(2878), + [anon_sym_shared] = ACTIONS(2878), + [anon_sym_map_LBRACK] = ACTIONS(2878), + [anon_sym_chan] = ACTIONS(2878), + [anon_sym_thread] = ACTIONS(2878), + [anon_sym_atomic] = ACTIONS(2878), + [anon_sym_assert] = ACTIONS(2878), + [anon_sym_defer] = ACTIONS(2878), + [anon_sym_goto] = ACTIONS(2878), + [anon_sym_break] = ACTIONS(2878), + [anon_sym_continue] = ACTIONS(2878), + [anon_sym_return] = ACTIONS(2878), + [anon_sym_DOLLARfor] = ACTIONS(2878), + [anon_sym_for] = ACTIONS(2878), + [anon_sym_POUND] = ACTIONS(2878), + [anon_sym_asm] = ACTIONS(2878), + [anon_sym_AT_LBRACK] = ACTIONS(2878), + [sym___double_quote] = ACTIONS(2878), + [sym___single_quote] = ACTIONS(2878), + [sym___c_double_quote] = ACTIONS(2878), + [sym___c_single_quote] = ACTIONS(2878), + [sym___r_double_quote] = ACTIONS(2878), + [sym___r_single_quote] = ACTIONS(2878), }, [874] = { - [ts_builtin_sym_end] = ACTIONS(2770), - [sym_identifier] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2772), - [anon_sym_CR] = ACTIONS(2772), - [anon_sym_CR_LF] = ACTIONS(2772), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_as] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_COMMA] = ACTIONS(2772), - [anon_sym_const] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym_EQ] = ACTIONS(2772), - [anon_sym___global] = ACTIONS(2772), - [anon_sym_type] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2772), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_PERCENT] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2772), - [anon_sym_BANG_EQ] = ACTIONS(2772), - [anon_sym_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_EQ] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2770), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_union] = ACTIONS(2772), - [anon_sym_pub] = ACTIONS(2772), - [anon_sym_mut] = ACTIONS(2772), - [anon_sym_enum] = ACTIONS(2772), - [anon_sym_interface] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [anon_sym_QMARK] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2772), - [anon_sym_json_DOTdecode] = ACTIONS(2772), - [anon_sym_LBRACK2] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_LT_DASH] = ACTIONS(2772), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_GT_GT_GT] = ACTIONS(2772), - [anon_sym_AMP_CARET] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_PIPE_PIPE] = ACTIONS(2772), - [anon_sym_or] = ACTIONS(2772), - [sym_none] = ACTIONS(2772), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_nil] = ACTIONS(2772), - [anon_sym_QMARK_DOT] = ACTIONS(2772), - [anon_sym_POUND_LBRACK] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_DOLLARif] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_BANGis] = ACTIONS(2772), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_BANGin] = ACTIONS(2772), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_select] = ACTIONS(2772), - [anon_sym_STAR_EQ] = ACTIONS(2772), - [anon_sym_SLASH_EQ] = ACTIONS(2772), - [anon_sym_PERCENT_EQ] = ACTIONS(2772), - [anon_sym_LT_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_GT_EQ] = ACTIONS(2772), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2772), - [anon_sym_AMP_EQ] = ACTIONS(2772), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2772), - [anon_sym_PLUS_EQ] = ACTIONS(2772), - [anon_sym_DASH_EQ] = ACTIONS(2772), - [anon_sym_PIPE_EQ] = ACTIONS(2772), - [anon_sym_CARET_EQ] = ACTIONS(2772), - [anon_sym_COLON_EQ] = ACTIONS(2772), - [anon_sym_lock] = ACTIONS(2772), - [anon_sym_rlock] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_sql] = ACTIONS(2772), - [sym_int_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2772), - [sym_rune_literal] = ACTIONS(2772), - [anon_sym_AT] = ACTIONS(2772), - [anon_sym_shared] = ACTIONS(2772), - [anon_sym_map_LBRACK] = ACTIONS(2772), - [anon_sym_chan] = ACTIONS(2772), - [anon_sym_thread] = ACTIONS(2772), - [anon_sym_atomic] = ACTIONS(2772), - [anon_sym_assert] = ACTIONS(2772), - [anon_sym_defer] = ACTIONS(2772), - [anon_sym_goto] = ACTIONS(2772), - [anon_sym_break] = ACTIONS(2772), - [anon_sym_continue] = ACTIONS(2772), - [anon_sym_return] = ACTIONS(2772), - [anon_sym_DOLLARfor] = ACTIONS(2772), - [anon_sym_for] = ACTIONS(2772), - [anon_sym_POUND] = ACTIONS(2772), - [anon_sym_asm] = ACTIONS(2772), - [anon_sym_AT_LBRACK] = ACTIONS(2772), - [sym___double_quote] = ACTIONS(2772), - [sym___single_quote] = ACTIONS(2772), - [sym___c_double_quote] = ACTIONS(2772), - [sym___c_single_quote] = ACTIONS(2772), - [sym___r_double_quote] = ACTIONS(2772), - [sym___r_single_quote] = ACTIONS(2772), + [ts_builtin_sym_end] = ACTIONS(2880), + [sym_identifier] = ACTIONS(2882), + [anon_sym_LF] = ACTIONS(2882), + [anon_sym_CR] = ACTIONS(2882), + [anon_sym_CR_LF] = ACTIONS(2882), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2882), + [anon_sym_as] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2882), + [anon_sym_COMMA] = ACTIONS(2882), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_EQ] = ACTIONS(2882), + [anon_sym___global] = ACTIONS(2882), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_PIPE] = ACTIONS(2882), + [anon_sym_fn] = ACTIONS(2882), + [anon_sym_PLUS] = ACTIONS(2882), + [anon_sym_DASH] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(2882), + [anon_sym_SLASH] = ACTIONS(2882), + [anon_sym_PERCENT] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_GT] = ACTIONS(2882), + [anon_sym_EQ_EQ] = ACTIONS(2882), + [anon_sym_BANG_EQ] = ACTIONS(2882), + [anon_sym_LT_EQ] = ACTIONS(2882), + [anon_sym_GT_EQ] = ACTIONS(2882), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_struct] = ACTIONS(2882), + [anon_sym_union] = ACTIONS(2882), + [anon_sym_pub] = ACTIONS(2882), + [anon_sym_mut] = ACTIONS(2882), + [anon_sym_enum] = ACTIONS(2882), + [anon_sym_interface] = ACTIONS(2882), + [anon_sym_PLUS_PLUS] = ACTIONS(2882), + [anon_sym_DASH_DASH] = ACTIONS(2882), + [anon_sym_QMARK] = ACTIONS(2882), + [anon_sym_BANG] = ACTIONS(2882), + [anon_sym_go] = ACTIONS(2882), + [anon_sym_spawn] = ACTIONS(2882), + [anon_sym_json_DOTdecode] = ACTIONS(2882), + [anon_sym_LBRACK2] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2882), + [anon_sym_CARET] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2882), + [anon_sym_LT_DASH] = ACTIONS(2882), + [anon_sym_LT_LT] = ACTIONS(2882), + [anon_sym_GT_GT] = ACTIONS(2882), + [anon_sym_GT_GT_GT] = ACTIONS(2882), + [anon_sym_AMP_CARET] = ACTIONS(2882), + [anon_sym_AMP_AMP] = ACTIONS(2882), + [anon_sym_PIPE_PIPE] = ACTIONS(2882), + [anon_sym_or] = ACTIONS(2882), + [sym_none] = ACTIONS(2882), + [sym_true] = ACTIONS(2882), + [sym_false] = ACTIONS(2882), + [sym_nil] = ACTIONS(2882), + [anon_sym_QMARK_DOT] = ACTIONS(2882), + [anon_sym_POUND_LBRACK] = ACTIONS(2882), + [anon_sym_if] = ACTIONS(2882), + [anon_sym_DOLLARif] = ACTIONS(2882), + [anon_sym_is] = ACTIONS(2882), + [anon_sym_BANGis] = ACTIONS(2882), + [anon_sym_in] = ACTIONS(2882), + [anon_sym_BANGin] = ACTIONS(2882), + [anon_sym_match] = ACTIONS(2882), + [anon_sym_select] = ACTIONS(2882), + [anon_sym_STAR_EQ] = ACTIONS(2882), + [anon_sym_SLASH_EQ] = ACTIONS(2882), + [anon_sym_PERCENT_EQ] = ACTIONS(2882), + [anon_sym_LT_LT_EQ] = ACTIONS(2882), + [anon_sym_GT_GT_EQ] = ACTIONS(2882), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2882), + [anon_sym_AMP_EQ] = ACTIONS(2882), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2882), + [anon_sym_PLUS_EQ] = ACTIONS(2882), + [anon_sym_DASH_EQ] = ACTIONS(2882), + [anon_sym_PIPE_EQ] = ACTIONS(2882), + [anon_sym_CARET_EQ] = ACTIONS(2882), + [anon_sym_COLON_EQ] = ACTIONS(2882), + [anon_sym_lock] = ACTIONS(2882), + [anon_sym_rlock] = ACTIONS(2882), + [anon_sym_unsafe] = ACTIONS(2882), + [anon_sym_sql] = ACTIONS(2882), + [sym_int_literal] = ACTIONS(2882), + [sym_float_literal] = ACTIONS(2882), + [sym_rune_literal] = ACTIONS(2882), + [anon_sym_AT] = ACTIONS(2882), + [anon_sym_shared] = ACTIONS(2882), + [anon_sym_map_LBRACK] = ACTIONS(2882), + [anon_sym_chan] = ACTIONS(2882), + [anon_sym_thread] = ACTIONS(2882), + [anon_sym_atomic] = ACTIONS(2882), + [anon_sym_assert] = ACTIONS(2882), + [anon_sym_defer] = ACTIONS(2882), + [anon_sym_goto] = ACTIONS(2882), + [anon_sym_break] = ACTIONS(2882), + [anon_sym_continue] = ACTIONS(2882), + [anon_sym_return] = ACTIONS(2882), + [anon_sym_DOLLARfor] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2882), + [anon_sym_POUND] = ACTIONS(2882), + [anon_sym_asm] = ACTIONS(2882), + [anon_sym_AT_LBRACK] = ACTIONS(2882), + [sym___double_quote] = ACTIONS(2882), + [sym___single_quote] = ACTIONS(2882), + [sym___c_double_quote] = ACTIONS(2882), + [sym___c_single_quote] = ACTIONS(2882), + [sym___r_double_quote] = ACTIONS(2882), + [sym___r_single_quote] = ACTIONS(2882), }, [875] = { - [ts_builtin_sym_end] = ACTIONS(2889), - [sym_identifier] = ACTIONS(2891), - [anon_sym_LF] = ACTIONS(2891), - [anon_sym_CR] = ACTIONS(2891), - [anon_sym_CR_LF] = ACTIONS(2891), - [sym_comment] = ACTIONS(487), - [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_AT] = ACTIONS(2891), - [anon_sym_shared] = ACTIONS(2891), - [anon_sym_map_LBRACK] = ACTIONS(2891), - [anon_sym_chan] = ACTIONS(2891), - [anon_sym_thread] = ACTIONS(2891), - [anon_sym_atomic] = ACTIONS(2891), - [anon_sym_assert] = ACTIONS(2891), - [anon_sym_defer] = ACTIONS(2891), - [anon_sym_goto] = ACTIONS(2891), - [anon_sym_break] = ACTIONS(2891), - [anon_sym_continue] = ACTIONS(2891), - [anon_sym_return] = ACTIONS(2891), - [anon_sym_DOLLARfor] = ACTIONS(2891), - [anon_sym_for] = ACTIONS(2891), - [anon_sym_POUND] = ACTIONS(2891), - [anon_sym_asm] = ACTIONS(2891), - [anon_sym_AT_LBRACK] = ACTIONS(2891), - [sym___double_quote] = ACTIONS(2891), - [sym___single_quote] = ACTIONS(2891), - [sym___c_double_quote] = ACTIONS(2891), - [sym___c_single_quote] = ACTIONS(2891), - [sym___r_double_quote] = ACTIONS(2891), - [sym___r_single_quote] = ACTIONS(2891), + [ts_builtin_sym_end] = ACTIONS(2884), + [sym_identifier] = ACTIONS(2886), + [anon_sym_LF] = ACTIONS(2886), + [anon_sym_CR] = ACTIONS(2886), + [anon_sym_CR_LF] = ACTIONS(2886), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2886), + [anon_sym_as] = ACTIONS(2886), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_COMMA] = ACTIONS(2886), + [anon_sym_const] = ACTIONS(2886), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_EQ] = ACTIONS(2886), + [anon_sym___global] = ACTIONS(2886), + [anon_sym_type] = ACTIONS(2886), + [anon_sym_PIPE] = ACTIONS(2886), + [anon_sym_fn] = ACTIONS(2886), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(2886), + [anon_sym_SLASH] = ACTIONS(2886), + [anon_sym_PERCENT] = ACTIONS(2886), + [anon_sym_LT] = ACTIONS(2886), + [anon_sym_GT] = ACTIONS(2886), + [anon_sym_EQ_EQ] = ACTIONS(2886), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_LT_EQ] = ACTIONS(2886), + [anon_sym_GT_EQ] = ACTIONS(2886), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_struct] = ACTIONS(2886), + [anon_sym_union] = ACTIONS(2886), + [anon_sym_pub] = ACTIONS(2886), + [anon_sym_mut] = ACTIONS(2886), + [anon_sym_enum] = ACTIONS(2886), + [anon_sym_interface] = ACTIONS(2886), + [anon_sym_PLUS_PLUS] = ACTIONS(2886), + [anon_sym_DASH_DASH] = ACTIONS(2886), + [anon_sym_QMARK] = ACTIONS(2886), + [anon_sym_BANG] = ACTIONS(2886), + [anon_sym_go] = ACTIONS(2886), + [anon_sym_spawn] = ACTIONS(2886), + [anon_sym_json_DOTdecode] = ACTIONS(2886), + [anon_sym_LBRACK2] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2886), + [anon_sym_CARET] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_LT_DASH] = ACTIONS(2886), + [anon_sym_LT_LT] = ACTIONS(2886), + [anon_sym_GT_GT] = ACTIONS(2886), + [anon_sym_GT_GT_GT] = ACTIONS(2886), + [anon_sym_AMP_CARET] = ACTIONS(2886), + [anon_sym_AMP_AMP] = ACTIONS(2886), + [anon_sym_PIPE_PIPE] = ACTIONS(2886), + [anon_sym_or] = ACTIONS(2886), + [sym_none] = ACTIONS(2886), + [sym_true] = ACTIONS(2886), + [sym_false] = ACTIONS(2886), + [sym_nil] = ACTIONS(2886), + [anon_sym_QMARK_DOT] = ACTIONS(2886), + [anon_sym_POUND_LBRACK] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_DOLLARif] = ACTIONS(2886), + [anon_sym_is] = ACTIONS(2886), + [anon_sym_BANGis] = ACTIONS(2886), + [anon_sym_in] = ACTIONS(2886), + [anon_sym_BANGin] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_select] = ACTIONS(2886), + [anon_sym_STAR_EQ] = ACTIONS(2886), + [anon_sym_SLASH_EQ] = ACTIONS(2886), + [anon_sym_PERCENT_EQ] = ACTIONS(2886), + [anon_sym_LT_LT_EQ] = ACTIONS(2886), + [anon_sym_GT_GT_EQ] = ACTIONS(2886), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2886), + [anon_sym_AMP_EQ] = ACTIONS(2886), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2886), + [anon_sym_PLUS_EQ] = ACTIONS(2886), + [anon_sym_DASH_EQ] = ACTIONS(2886), + [anon_sym_PIPE_EQ] = ACTIONS(2886), + [anon_sym_CARET_EQ] = ACTIONS(2886), + [anon_sym_COLON_EQ] = ACTIONS(2886), + [anon_sym_lock] = ACTIONS(2886), + [anon_sym_rlock] = ACTIONS(2886), + [anon_sym_unsafe] = ACTIONS(2886), + [anon_sym_sql] = ACTIONS(2886), + [sym_int_literal] = ACTIONS(2886), + [sym_float_literal] = ACTIONS(2886), + [sym_rune_literal] = ACTIONS(2886), + [anon_sym_AT] = ACTIONS(2886), + [anon_sym_shared] = ACTIONS(2886), + [anon_sym_map_LBRACK] = ACTIONS(2886), + [anon_sym_chan] = ACTIONS(2886), + [anon_sym_thread] = ACTIONS(2886), + [anon_sym_atomic] = ACTIONS(2886), + [anon_sym_assert] = ACTIONS(2886), + [anon_sym_defer] = ACTIONS(2886), + [anon_sym_goto] = ACTIONS(2886), + [anon_sym_break] = ACTIONS(2886), + [anon_sym_continue] = ACTIONS(2886), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_DOLLARfor] = ACTIONS(2886), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_POUND] = ACTIONS(2886), + [anon_sym_asm] = ACTIONS(2886), + [anon_sym_AT_LBRACK] = ACTIONS(2886), + [sym___double_quote] = ACTIONS(2886), + [sym___single_quote] = ACTIONS(2886), + [sym___c_double_quote] = ACTIONS(2886), + [sym___c_single_quote] = ACTIONS(2886), + [sym___r_double_quote] = ACTIONS(2886), + [sym___r_single_quote] = ACTIONS(2886), }, [876] = { - [ts_builtin_sym_end] = ACTIONS(2893), - [sym_identifier] = ACTIONS(2895), - [anon_sym_LF] = ACTIONS(2895), - [anon_sym_CR] = ACTIONS(2895), - [anon_sym_CR_LF] = ACTIONS(2895), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2895), - [anon_sym_as] = ACTIONS(2895), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_COMMA] = ACTIONS(2895), - [anon_sym_const] = ACTIONS(2895), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym_EQ] = ACTIONS(2895), - [anon_sym___global] = ACTIONS(2895), - [anon_sym_type] = ACTIONS(2895), - [anon_sym_PIPE] = ACTIONS(2895), - [anon_sym_fn] = ACTIONS(2895), - [anon_sym_PLUS] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2895), - [anon_sym_STAR] = ACTIONS(2895), - [anon_sym_SLASH] = ACTIONS(2895), - [anon_sym_PERCENT] = ACTIONS(2895), - [anon_sym_LT] = ACTIONS(2895), - [anon_sym_GT] = ACTIONS(2895), - [anon_sym_EQ_EQ] = ACTIONS(2895), - [anon_sym_BANG_EQ] = ACTIONS(2895), - [anon_sym_LT_EQ] = ACTIONS(2895), - [anon_sym_GT_EQ] = ACTIONS(2895), - [anon_sym_LBRACK] = ACTIONS(2893), - [anon_sym_struct] = ACTIONS(2895), - [anon_sym_union] = ACTIONS(2895), - [anon_sym_pub] = ACTIONS(2895), - [anon_sym_mut] = ACTIONS(2895), - [anon_sym_enum] = ACTIONS(2895), - [anon_sym_interface] = ACTIONS(2895), - [anon_sym_PLUS_PLUS] = ACTIONS(2895), - [anon_sym_DASH_DASH] = ACTIONS(2895), - [anon_sym_QMARK] = ACTIONS(2895), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_go] = ACTIONS(2895), - [anon_sym_spawn] = ACTIONS(2895), - [anon_sym_json_DOTdecode] = ACTIONS(2895), - [anon_sym_LBRACK2] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_CARET] = ACTIONS(2895), - [anon_sym_AMP] = ACTIONS(2895), - [anon_sym_LT_DASH] = ACTIONS(2895), - [anon_sym_LT_LT] = ACTIONS(2895), - [anon_sym_GT_GT] = ACTIONS(2895), - [anon_sym_GT_GT_GT] = ACTIONS(2895), - [anon_sym_AMP_CARET] = ACTIONS(2895), - [anon_sym_AMP_AMP] = ACTIONS(2895), - [anon_sym_PIPE_PIPE] = ACTIONS(2895), - [anon_sym_or] = ACTIONS(2895), - [sym_none] = ACTIONS(2895), - [sym_true] = ACTIONS(2895), - [sym_false] = ACTIONS(2895), - [sym_nil] = ACTIONS(2895), - [anon_sym_QMARK_DOT] = ACTIONS(2895), - [anon_sym_POUND_LBRACK] = ACTIONS(2895), - [anon_sym_if] = ACTIONS(2895), - [anon_sym_DOLLARif] = ACTIONS(2895), - [anon_sym_is] = ACTIONS(2895), - [anon_sym_BANGis] = ACTIONS(2895), - [anon_sym_in] = ACTIONS(2895), - [anon_sym_BANGin] = ACTIONS(2895), - [anon_sym_match] = ACTIONS(2895), - [anon_sym_select] = ACTIONS(2895), - [anon_sym_STAR_EQ] = ACTIONS(2895), - [anon_sym_SLASH_EQ] = ACTIONS(2895), - [anon_sym_PERCENT_EQ] = ACTIONS(2895), - [anon_sym_LT_LT_EQ] = ACTIONS(2895), - [anon_sym_GT_GT_EQ] = ACTIONS(2895), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2895), - [anon_sym_AMP_EQ] = ACTIONS(2895), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2895), - [anon_sym_PLUS_EQ] = ACTIONS(2895), - [anon_sym_DASH_EQ] = ACTIONS(2895), - [anon_sym_PIPE_EQ] = ACTIONS(2895), - [anon_sym_CARET_EQ] = ACTIONS(2895), - [anon_sym_COLON_EQ] = ACTIONS(2895), - [anon_sym_lock] = ACTIONS(2895), - [anon_sym_rlock] = ACTIONS(2895), - [anon_sym_unsafe] = ACTIONS(2895), - [anon_sym_sql] = ACTIONS(2895), - [sym_int_literal] = ACTIONS(2895), - [sym_float_literal] = ACTIONS(2895), - [sym_rune_literal] = ACTIONS(2895), - [anon_sym_AT] = ACTIONS(2895), - [anon_sym_shared] = ACTIONS(2895), - [anon_sym_map_LBRACK] = ACTIONS(2895), - [anon_sym_chan] = ACTIONS(2895), - [anon_sym_thread] = ACTIONS(2895), - [anon_sym_atomic] = ACTIONS(2895), - [anon_sym_assert] = ACTIONS(2895), - [anon_sym_defer] = ACTIONS(2895), - [anon_sym_goto] = ACTIONS(2895), - [anon_sym_break] = ACTIONS(2895), - [anon_sym_continue] = ACTIONS(2895), - [anon_sym_return] = ACTIONS(2895), - [anon_sym_DOLLARfor] = ACTIONS(2895), - [anon_sym_for] = ACTIONS(2895), - [anon_sym_POUND] = ACTIONS(2895), - [anon_sym_asm] = ACTIONS(2895), - [anon_sym_AT_LBRACK] = ACTIONS(2895), - [sym___double_quote] = ACTIONS(2895), - [sym___single_quote] = ACTIONS(2895), - [sym___c_double_quote] = ACTIONS(2895), - [sym___c_single_quote] = ACTIONS(2895), - [sym___r_double_quote] = ACTIONS(2895), - [sym___r_single_quote] = ACTIONS(2895), + [ts_builtin_sym_end] = ACTIONS(2888), + [sym_identifier] = ACTIONS(2890), + [anon_sym_LF] = ACTIONS(2890), + [anon_sym_CR] = ACTIONS(2890), + [anon_sym_CR_LF] = ACTIONS(2890), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2890), + [anon_sym_as] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2890), + [anon_sym_COMMA] = ACTIONS(2890), + [anon_sym_const] = ACTIONS(2890), + [anon_sym_LPAREN] = ACTIONS(2890), + [anon_sym_EQ] = ACTIONS(2890), + [anon_sym___global] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2890), + [anon_sym_PIPE] = ACTIONS(2890), + [anon_sym_fn] = ACTIONS(2890), + [anon_sym_PLUS] = ACTIONS(2890), + [anon_sym_DASH] = ACTIONS(2890), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SLASH] = ACTIONS(2890), + [anon_sym_PERCENT] = ACTIONS(2890), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_GT] = ACTIONS(2890), + [anon_sym_EQ_EQ] = ACTIONS(2890), + [anon_sym_BANG_EQ] = ACTIONS(2890), + [anon_sym_LT_EQ] = ACTIONS(2890), + [anon_sym_GT_EQ] = ACTIONS(2890), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_struct] = ACTIONS(2890), + [anon_sym_union] = ACTIONS(2890), + [anon_sym_pub] = ACTIONS(2890), + [anon_sym_mut] = ACTIONS(2890), + [anon_sym_enum] = ACTIONS(2890), + [anon_sym_interface] = ACTIONS(2890), + [anon_sym_PLUS_PLUS] = ACTIONS(2890), + [anon_sym_DASH_DASH] = ACTIONS(2890), + [anon_sym_QMARK] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2890), + [anon_sym_go] = ACTIONS(2890), + [anon_sym_spawn] = ACTIONS(2890), + [anon_sym_json_DOTdecode] = ACTIONS(2890), + [anon_sym_LBRACK2] = ACTIONS(2890), + [anon_sym_TILDE] = ACTIONS(2890), + [anon_sym_CARET] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2890), + [anon_sym_LT_DASH] = ACTIONS(2890), + [anon_sym_LT_LT] = ACTIONS(2890), + [anon_sym_GT_GT] = ACTIONS(2890), + [anon_sym_GT_GT_GT] = ACTIONS(2890), + [anon_sym_AMP_CARET] = ACTIONS(2890), + [anon_sym_AMP_AMP] = ACTIONS(2890), + [anon_sym_PIPE_PIPE] = ACTIONS(2890), + [anon_sym_or] = ACTIONS(2890), + [sym_none] = ACTIONS(2890), + [sym_true] = ACTIONS(2890), + [sym_false] = ACTIONS(2890), + [sym_nil] = ACTIONS(2890), + [anon_sym_QMARK_DOT] = ACTIONS(2890), + [anon_sym_POUND_LBRACK] = ACTIONS(2890), + [anon_sym_if] = ACTIONS(2890), + [anon_sym_DOLLARif] = ACTIONS(2890), + [anon_sym_is] = ACTIONS(2890), + [anon_sym_BANGis] = ACTIONS(2890), + [anon_sym_in] = ACTIONS(2890), + [anon_sym_BANGin] = ACTIONS(2890), + [anon_sym_match] = ACTIONS(2890), + [anon_sym_select] = ACTIONS(2890), + [anon_sym_STAR_EQ] = ACTIONS(2890), + [anon_sym_SLASH_EQ] = ACTIONS(2890), + [anon_sym_PERCENT_EQ] = ACTIONS(2890), + [anon_sym_LT_LT_EQ] = ACTIONS(2890), + [anon_sym_GT_GT_EQ] = ACTIONS(2890), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2890), + [anon_sym_AMP_EQ] = ACTIONS(2890), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2890), + [anon_sym_PLUS_EQ] = ACTIONS(2890), + [anon_sym_DASH_EQ] = ACTIONS(2890), + [anon_sym_PIPE_EQ] = ACTIONS(2890), + [anon_sym_CARET_EQ] = ACTIONS(2890), + [anon_sym_COLON_EQ] = ACTIONS(2890), + [anon_sym_lock] = ACTIONS(2890), + [anon_sym_rlock] = ACTIONS(2890), + [anon_sym_unsafe] = ACTIONS(2890), + [anon_sym_sql] = ACTIONS(2890), + [sym_int_literal] = ACTIONS(2890), + [sym_float_literal] = ACTIONS(2890), + [sym_rune_literal] = ACTIONS(2890), + [anon_sym_AT] = ACTIONS(2890), + [anon_sym_shared] = ACTIONS(2890), + [anon_sym_map_LBRACK] = ACTIONS(2890), + [anon_sym_chan] = ACTIONS(2890), + [anon_sym_thread] = ACTIONS(2890), + [anon_sym_atomic] = ACTIONS(2890), + [anon_sym_assert] = ACTIONS(2890), + [anon_sym_defer] = ACTIONS(2890), + [anon_sym_goto] = ACTIONS(2890), + [anon_sym_break] = ACTIONS(2890), + [anon_sym_continue] = ACTIONS(2890), + [anon_sym_return] = ACTIONS(2890), + [anon_sym_DOLLARfor] = ACTIONS(2890), + [anon_sym_for] = ACTIONS(2890), + [anon_sym_POUND] = ACTIONS(2890), + [anon_sym_asm] = ACTIONS(2890), + [anon_sym_AT_LBRACK] = ACTIONS(2890), + [sym___double_quote] = ACTIONS(2890), + [sym___single_quote] = ACTIONS(2890), + [sym___c_double_quote] = ACTIONS(2890), + [sym___c_single_quote] = ACTIONS(2890), + [sym___r_double_quote] = ACTIONS(2890), + [sym___r_single_quote] = ACTIONS(2890), }, [877] = { - [ts_builtin_sym_end] = ACTIONS(2897), - [sym_identifier] = ACTIONS(2899), - [anon_sym_LF] = ACTIONS(2899), - [anon_sym_CR] = ACTIONS(2899), - [anon_sym_CR_LF] = ACTIONS(2899), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_as] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_COMMA] = ACTIONS(2899), - [anon_sym_const] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2899), - [anon_sym_EQ] = ACTIONS(2899), - [anon_sym___global] = ACTIONS(2899), - [anon_sym_type] = ACTIONS(2899), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_fn] = ACTIONS(2899), - [anon_sym_PLUS] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_STAR] = ACTIONS(2899), - [anon_sym_SLASH] = ACTIONS(2899), - [anon_sym_PERCENT] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_GT] = ACTIONS(2899), - [anon_sym_EQ_EQ] = ACTIONS(2899), - [anon_sym_BANG_EQ] = ACTIONS(2899), - [anon_sym_LT_EQ] = ACTIONS(2899), - [anon_sym_GT_EQ] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_struct] = ACTIONS(2899), - [anon_sym_union] = ACTIONS(2899), - [anon_sym_pub] = ACTIONS(2899), - [anon_sym_mut] = ACTIONS(2899), - [anon_sym_enum] = ACTIONS(2899), - [anon_sym_interface] = ACTIONS(2899), - [anon_sym_PLUS_PLUS] = ACTIONS(2899), - [anon_sym_DASH_DASH] = ACTIONS(2899), - [anon_sym_QMARK] = ACTIONS(2899), - [anon_sym_BANG] = ACTIONS(2899), - [anon_sym_go] = ACTIONS(2899), - [anon_sym_spawn] = ACTIONS(2899), - [anon_sym_json_DOTdecode] = ACTIONS(2899), - [anon_sym_LBRACK2] = ACTIONS(2899), - [anon_sym_TILDE] = ACTIONS(2899), - [anon_sym_CARET] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_LT_DASH] = ACTIONS(2899), - [anon_sym_LT_LT] = ACTIONS(2899), - [anon_sym_GT_GT] = ACTIONS(2899), - [anon_sym_GT_GT_GT] = ACTIONS(2899), - [anon_sym_AMP_CARET] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_PIPE_PIPE] = ACTIONS(2899), - [anon_sym_or] = ACTIONS(2899), - [sym_none] = ACTIONS(2899), - [sym_true] = ACTIONS(2899), - [sym_false] = ACTIONS(2899), - [sym_nil] = ACTIONS(2899), - [anon_sym_QMARK_DOT] = ACTIONS(2899), - [anon_sym_POUND_LBRACK] = ACTIONS(2899), - [anon_sym_if] = ACTIONS(2899), - [anon_sym_DOLLARif] = ACTIONS(2899), - [anon_sym_is] = ACTIONS(2899), - [anon_sym_BANGis] = ACTIONS(2899), - [anon_sym_in] = ACTIONS(2899), - [anon_sym_BANGin] = ACTIONS(2899), - [anon_sym_match] = ACTIONS(2899), - [anon_sym_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_AT] = ACTIONS(2899), - [anon_sym_shared] = ACTIONS(2899), - [anon_sym_map_LBRACK] = ACTIONS(2899), - [anon_sym_chan] = ACTIONS(2899), - [anon_sym_thread] = ACTIONS(2899), - [anon_sym_atomic] = ACTIONS(2899), - [anon_sym_assert] = ACTIONS(2899), - [anon_sym_defer] = ACTIONS(2899), - [anon_sym_goto] = ACTIONS(2899), - [anon_sym_break] = ACTIONS(2899), - [anon_sym_continue] = ACTIONS(2899), - [anon_sym_return] = ACTIONS(2899), - [anon_sym_DOLLARfor] = ACTIONS(2899), - [anon_sym_for] = ACTIONS(2899), - [anon_sym_POUND] = ACTIONS(2899), - [anon_sym_asm] = ACTIONS(2899), - [anon_sym_AT_LBRACK] = ACTIONS(2899), - [sym___double_quote] = ACTIONS(2899), - [sym___single_quote] = ACTIONS(2899), - [sym___c_double_quote] = ACTIONS(2899), - [sym___c_single_quote] = ACTIONS(2899), - [sym___r_double_quote] = ACTIONS(2899), - [sym___r_single_quote] = ACTIONS(2899), + [ts_builtin_sym_end] = ACTIONS(2892), + [sym_identifier] = ACTIONS(2894), + [anon_sym_LF] = ACTIONS(2894), + [anon_sym_CR] = ACTIONS(2894), + [anon_sym_CR_LF] = ACTIONS(2894), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2894), + [anon_sym_as] = ACTIONS(2894), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_COMMA] = ACTIONS(2894), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(2894), + [anon_sym_EQ] = ACTIONS(2894), + [anon_sym___global] = ACTIONS(2894), + [anon_sym_type] = ACTIONS(2894), + [anon_sym_PIPE] = ACTIONS(2894), + [anon_sym_fn] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2894), + [anon_sym_SLASH] = ACTIONS(2894), + [anon_sym_PERCENT] = ACTIONS(2894), + [anon_sym_LT] = ACTIONS(2894), + [anon_sym_GT] = ACTIONS(2894), + [anon_sym_EQ_EQ] = ACTIONS(2894), + [anon_sym_BANG_EQ] = ACTIONS(2894), + [anon_sym_LT_EQ] = ACTIONS(2894), + [anon_sym_GT_EQ] = ACTIONS(2894), + [anon_sym_LBRACK] = ACTIONS(2892), + [anon_sym_struct] = ACTIONS(2894), + [anon_sym_union] = ACTIONS(2894), + [anon_sym_pub] = ACTIONS(2894), + [anon_sym_mut] = ACTIONS(2894), + [anon_sym_enum] = ACTIONS(2894), + [anon_sym_interface] = ACTIONS(2894), + [anon_sym_PLUS_PLUS] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2894), + [anon_sym_QMARK] = ACTIONS(2894), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_go] = ACTIONS(2894), + [anon_sym_spawn] = ACTIONS(2894), + [anon_sym_json_DOTdecode] = ACTIONS(2894), + [anon_sym_LBRACK2] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_CARET] = ACTIONS(2894), + [anon_sym_AMP] = ACTIONS(2894), + [anon_sym_LT_DASH] = ACTIONS(2894), + [anon_sym_LT_LT] = ACTIONS(2894), + [anon_sym_GT_GT] = ACTIONS(2894), + [anon_sym_GT_GT_GT] = ACTIONS(2894), + [anon_sym_AMP_CARET] = ACTIONS(2894), + [anon_sym_AMP_AMP] = ACTIONS(2894), + [anon_sym_PIPE_PIPE] = ACTIONS(2894), + [anon_sym_or] = ACTIONS(2894), + [sym_none] = ACTIONS(2894), + [sym_true] = ACTIONS(2894), + [sym_false] = ACTIONS(2894), + [sym_nil] = ACTIONS(2894), + [anon_sym_QMARK_DOT] = ACTIONS(2894), + [anon_sym_POUND_LBRACK] = ACTIONS(2894), + [anon_sym_if] = ACTIONS(2894), + [anon_sym_DOLLARif] = ACTIONS(2894), + [anon_sym_is] = ACTIONS(2894), + [anon_sym_BANGis] = ACTIONS(2894), + [anon_sym_in] = ACTIONS(2894), + [anon_sym_BANGin] = ACTIONS(2894), + [anon_sym_match] = ACTIONS(2894), + [anon_sym_select] = ACTIONS(2894), + [anon_sym_STAR_EQ] = ACTIONS(2894), + [anon_sym_SLASH_EQ] = ACTIONS(2894), + [anon_sym_PERCENT_EQ] = ACTIONS(2894), + [anon_sym_LT_LT_EQ] = ACTIONS(2894), + [anon_sym_GT_GT_EQ] = ACTIONS(2894), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2894), + [anon_sym_AMP_EQ] = ACTIONS(2894), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2894), + [anon_sym_PLUS_EQ] = ACTIONS(2894), + [anon_sym_DASH_EQ] = ACTIONS(2894), + [anon_sym_PIPE_EQ] = ACTIONS(2894), + [anon_sym_CARET_EQ] = ACTIONS(2894), + [anon_sym_COLON_EQ] = ACTIONS(2894), + [anon_sym_lock] = ACTIONS(2894), + [anon_sym_rlock] = ACTIONS(2894), + [anon_sym_unsafe] = ACTIONS(2894), + [anon_sym_sql] = ACTIONS(2894), + [sym_int_literal] = ACTIONS(2894), + [sym_float_literal] = ACTIONS(2894), + [sym_rune_literal] = ACTIONS(2894), + [anon_sym_AT] = ACTIONS(2894), + [anon_sym_shared] = ACTIONS(2894), + [anon_sym_map_LBRACK] = ACTIONS(2894), + [anon_sym_chan] = ACTIONS(2894), + [anon_sym_thread] = ACTIONS(2894), + [anon_sym_atomic] = ACTIONS(2894), + [anon_sym_assert] = ACTIONS(2894), + [anon_sym_defer] = ACTIONS(2894), + [anon_sym_goto] = ACTIONS(2894), + [anon_sym_break] = ACTIONS(2894), + [anon_sym_continue] = ACTIONS(2894), + [anon_sym_return] = ACTIONS(2894), + [anon_sym_DOLLARfor] = ACTIONS(2894), + [anon_sym_for] = ACTIONS(2894), + [anon_sym_POUND] = ACTIONS(2894), + [anon_sym_asm] = ACTIONS(2894), + [anon_sym_AT_LBRACK] = ACTIONS(2894), + [sym___double_quote] = ACTIONS(2894), + [sym___single_quote] = ACTIONS(2894), + [sym___c_double_quote] = ACTIONS(2894), + [sym___c_single_quote] = ACTIONS(2894), + [sym___r_double_quote] = ACTIONS(2894), + [sym___r_single_quote] = ACTIONS(2894), }, [878] = { - [ts_builtin_sym_end] = ACTIONS(2901), - [sym_identifier] = ACTIONS(2903), - [anon_sym_LF] = ACTIONS(2903), - [anon_sym_CR] = ACTIONS(2903), - [anon_sym_CR_LF] = ACTIONS(2903), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2903), - [anon_sym_as] = ACTIONS(2903), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_COMMA] = ACTIONS(2903), - [anon_sym_const] = ACTIONS(2903), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_EQ] = ACTIONS(2903), - [anon_sym___global] = ACTIONS(2903), - [anon_sym_type] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2903), - [anon_sym_PLUS] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_STAR] = ACTIONS(2903), - [anon_sym_SLASH] = ACTIONS(2903), - [anon_sym_PERCENT] = ACTIONS(2903), - [anon_sym_LT] = ACTIONS(2903), - [anon_sym_GT] = ACTIONS(2903), - [anon_sym_EQ_EQ] = ACTIONS(2903), - [anon_sym_BANG_EQ] = ACTIONS(2903), - [anon_sym_LT_EQ] = ACTIONS(2903), - [anon_sym_GT_EQ] = ACTIONS(2903), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_struct] = ACTIONS(2903), - [anon_sym_union] = ACTIONS(2903), - [anon_sym_pub] = ACTIONS(2903), - [anon_sym_mut] = ACTIONS(2903), - [anon_sym_enum] = ACTIONS(2903), - [anon_sym_interface] = ACTIONS(2903), - [anon_sym_PLUS_PLUS] = ACTIONS(2903), - [anon_sym_DASH_DASH] = ACTIONS(2903), - [anon_sym_QMARK] = ACTIONS(2903), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_go] = ACTIONS(2903), - [anon_sym_spawn] = ACTIONS(2903), - [anon_sym_json_DOTdecode] = ACTIONS(2903), - [anon_sym_LBRACK2] = ACTIONS(2903), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_CARET] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2903), - [anon_sym_LT_DASH] = ACTIONS(2903), - [anon_sym_LT_LT] = ACTIONS(2903), - [anon_sym_GT_GT] = ACTIONS(2903), - [anon_sym_GT_GT_GT] = ACTIONS(2903), - [anon_sym_AMP_CARET] = ACTIONS(2903), - [anon_sym_AMP_AMP] = ACTIONS(2903), - [anon_sym_PIPE_PIPE] = ACTIONS(2903), - [anon_sym_or] = ACTIONS(2903), - [sym_none] = ACTIONS(2903), - [sym_true] = ACTIONS(2903), - [sym_false] = ACTIONS(2903), - [sym_nil] = ACTIONS(2903), - [anon_sym_QMARK_DOT] = ACTIONS(2903), - [anon_sym_POUND_LBRACK] = ACTIONS(2903), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_DOLLARif] = ACTIONS(2903), - [anon_sym_is] = ACTIONS(2903), - [anon_sym_BANGis] = ACTIONS(2903), - [anon_sym_in] = ACTIONS(2903), - [anon_sym_BANGin] = ACTIONS(2903), - [anon_sym_match] = ACTIONS(2903), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_STAR_EQ] = ACTIONS(2903), - [anon_sym_SLASH_EQ] = ACTIONS(2903), - [anon_sym_PERCENT_EQ] = ACTIONS(2903), - [anon_sym_LT_LT_EQ] = ACTIONS(2903), - [anon_sym_GT_GT_EQ] = ACTIONS(2903), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2903), - [anon_sym_AMP_EQ] = ACTIONS(2903), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2903), - [anon_sym_PLUS_EQ] = ACTIONS(2903), - [anon_sym_DASH_EQ] = ACTIONS(2903), - [anon_sym_PIPE_EQ] = ACTIONS(2903), - [anon_sym_CARET_EQ] = ACTIONS(2903), - [anon_sym_COLON_EQ] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2903), - [anon_sym_rlock] = ACTIONS(2903), - [anon_sym_unsafe] = ACTIONS(2903), - [anon_sym_sql] = ACTIONS(2903), - [sym_int_literal] = ACTIONS(2903), - [sym_float_literal] = ACTIONS(2903), - [sym_rune_literal] = ACTIONS(2903), - [anon_sym_AT] = ACTIONS(2903), - [anon_sym_shared] = ACTIONS(2903), - [anon_sym_map_LBRACK] = ACTIONS(2903), - [anon_sym_chan] = ACTIONS(2903), - [anon_sym_thread] = ACTIONS(2903), - [anon_sym_atomic] = ACTIONS(2903), - [anon_sym_assert] = ACTIONS(2903), - [anon_sym_defer] = ACTIONS(2903), - [anon_sym_goto] = ACTIONS(2903), - [anon_sym_break] = ACTIONS(2903), - [anon_sym_continue] = ACTIONS(2903), - [anon_sym_return] = ACTIONS(2903), - [anon_sym_DOLLARfor] = ACTIONS(2903), - [anon_sym_for] = ACTIONS(2903), - [anon_sym_POUND] = ACTIONS(2903), - [anon_sym_asm] = ACTIONS(2903), - [anon_sym_AT_LBRACK] = ACTIONS(2903), - [sym___double_quote] = ACTIONS(2903), - [sym___single_quote] = ACTIONS(2903), - [sym___c_double_quote] = ACTIONS(2903), - [sym___c_single_quote] = ACTIONS(2903), - [sym___r_double_quote] = ACTIONS(2903), - [sym___r_single_quote] = ACTIONS(2903), + [ts_builtin_sym_end] = ACTIONS(2896), + [sym_identifier] = ACTIONS(2898), + [anon_sym_LF] = ACTIONS(2898), + [anon_sym_CR] = ACTIONS(2898), + [anon_sym_CR_LF] = ACTIONS(2898), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2898), + [anon_sym_as] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(2898), + [anon_sym_COMMA] = ACTIONS(2898), + [anon_sym_const] = ACTIONS(2898), + [anon_sym_LPAREN] = ACTIONS(2898), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym___global] = ACTIONS(2898), + [anon_sym_type] = ACTIONS(2898), + [anon_sym_PIPE] = ACTIONS(2898), + [anon_sym_fn] = ACTIONS(2898), + [anon_sym_PLUS] = ACTIONS(2898), + [anon_sym_DASH] = ACTIONS(2898), + [anon_sym_STAR] = ACTIONS(2898), + [anon_sym_SLASH] = ACTIONS(2898), + [anon_sym_PERCENT] = ACTIONS(2898), + [anon_sym_LT] = ACTIONS(2898), + [anon_sym_GT] = ACTIONS(2898), + [anon_sym_EQ_EQ] = ACTIONS(2898), + [anon_sym_BANG_EQ] = ACTIONS(2898), + [anon_sym_LT_EQ] = ACTIONS(2898), + [anon_sym_GT_EQ] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2896), + [anon_sym_struct] = ACTIONS(2898), + [anon_sym_union] = ACTIONS(2898), + [anon_sym_pub] = ACTIONS(2898), + [anon_sym_mut] = ACTIONS(2898), + [anon_sym_enum] = ACTIONS(2898), + [anon_sym_interface] = ACTIONS(2898), + [anon_sym_PLUS_PLUS] = ACTIONS(2898), + [anon_sym_DASH_DASH] = ACTIONS(2898), + [anon_sym_QMARK] = ACTIONS(2898), + [anon_sym_BANG] = ACTIONS(2898), + [anon_sym_go] = ACTIONS(2898), + [anon_sym_spawn] = ACTIONS(2898), + [anon_sym_json_DOTdecode] = ACTIONS(2898), + [anon_sym_LBRACK2] = ACTIONS(2898), + [anon_sym_TILDE] = ACTIONS(2898), + [anon_sym_CARET] = ACTIONS(2898), + [anon_sym_AMP] = ACTIONS(2898), + [anon_sym_LT_DASH] = ACTIONS(2898), + [anon_sym_LT_LT] = ACTIONS(2898), + [anon_sym_GT_GT] = ACTIONS(2898), + [anon_sym_GT_GT_GT] = ACTIONS(2898), + [anon_sym_AMP_CARET] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2898), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [sym_none] = ACTIONS(2898), + [sym_true] = ACTIONS(2898), + [sym_false] = ACTIONS(2898), + [sym_nil] = ACTIONS(2898), + [anon_sym_QMARK_DOT] = ACTIONS(2898), + [anon_sym_POUND_LBRACK] = ACTIONS(2898), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_DOLLARif] = ACTIONS(2898), + [anon_sym_is] = ACTIONS(2898), + [anon_sym_BANGis] = ACTIONS(2898), + [anon_sym_in] = ACTIONS(2898), + [anon_sym_BANGin] = ACTIONS(2898), + [anon_sym_match] = ACTIONS(2898), + [anon_sym_select] = ACTIONS(2898), + [anon_sym_STAR_EQ] = ACTIONS(2898), + [anon_sym_SLASH_EQ] = ACTIONS(2898), + [anon_sym_PERCENT_EQ] = ACTIONS(2898), + [anon_sym_LT_LT_EQ] = ACTIONS(2898), + [anon_sym_GT_GT_EQ] = ACTIONS(2898), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2898), + [anon_sym_AMP_EQ] = ACTIONS(2898), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2898), + [anon_sym_PLUS_EQ] = ACTIONS(2898), + [anon_sym_DASH_EQ] = ACTIONS(2898), + [anon_sym_PIPE_EQ] = ACTIONS(2898), + [anon_sym_CARET_EQ] = ACTIONS(2898), + [anon_sym_COLON_EQ] = ACTIONS(2898), + [anon_sym_lock] = ACTIONS(2898), + [anon_sym_rlock] = ACTIONS(2898), + [anon_sym_unsafe] = ACTIONS(2898), + [anon_sym_sql] = ACTIONS(2898), + [sym_int_literal] = ACTIONS(2898), + [sym_float_literal] = ACTIONS(2898), + [sym_rune_literal] = ACTIONS(2898), + [anon_sym_AT] = ACTIONS(2898), + [anon_sym_shared] = ACTIONS(2898), + [anon_sym_map_LBRACK] = ACTIONS(2898), + [anon_sym_chan] = ACTIONS(2898), + [anon_sym_thread] = ACTIONS(2898), + [anon_sym_atomic] = ACTIONS(2898), + [anon_sym_assert] = ACTIONS(2898), + [anon_sym_defer] = ACTIONS(2898), + [anon_sym_goto] = ACTIONS(2898), + [anon_sym_break] = ACTIONS(2898), + [anon_sym_continue] = ACTIONS(2898), + [anon_sym_return] = ACTIONS(2898), + [anon_sym_DOLLARfor] = ACTIONS(2898), + [anon_sym_for] = ACTIONS(2898), + [anon_sym_POUND] = ACTIONS(2898), + [anon_sym_asm] = ACTIONS(2898), + [anon_sym_AT_LBRACK] = ACTIONS(2898), + [sym___double_quote] = ACTIONS(2898), + [sym___single_quote] = ACTIONS(2898), + [sym___c_double_quote] = ACTIONS(2898), + [sym___c_single_quote] = ACTIONS(2898), + [sym___r_double_quote] = ACTIONS(2898), + [sym___r_single_quote] = ACTIONS(2898), }, [879] = { - [ts_builtin_sym_end] = ACTIONS(2905), - [sym_identifier] = ACTIONS(2907), - [anon_sym_LF] = ACTIONS(2907), - [anon_sym_CR] = ACTIONS(2907), - [anon_sym_CR_LF] = ACTIONS(2907), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2907), - [anon_sym_as] = ACTIONS(2907), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_COMMA] = ACTIONS(2907), - [anon_sym_const] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_EQ] = ACTIONS(2907), - [anon_sym___global] = ACTIONS(2907), - [anon_sym_type] = ACTIONS(2907), - [anon_sym_PIPE] = ACTIONS(2907), - [anon_sym_fn] = ACTIONS(2907), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_SLASH] = ACTIONS(2907), - [anon_sym_PERCENT] = ACTIONS(2907), - [anon_sym_LT] = ACTIONS(2907), - [anon_sym_GT] = ACTIONS(2907), - [anon_sym_EQ_EQ] = ACTIONS(2907), - [anon_sym_BANG_EQ] = ACTIONS(2907), - [anon_sym_LT_EQ] = ACTIONS(2907), - [anon_sym_GT_EQ] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2907), - [anon_sym_union] = ACTIONS(2907), - [anon_sym_pub] = ACTIONS(2907), - [anon_sym_mut] = ACTIONS(2907), - [anon_sym_enum] = ACTIONS(2907), - [anon_sym_interface] = ACTIONS(2907), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_QMARK] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_go] = ACTIONS(2907), - [anon_sym_spawn] = ACTIONS(2907), - [anon_sym_json_DOTdecode] = ACTIONS(2907), - [anon_sym_LBRACK2] = ACTIONS(2907), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_LT_DASH] = ACTIONS(2907), - [anon_sym_LT_LT] = ACTIONS(2907), - [anon_sym_GT_GT] = ACTIONS(2907), - [anon_sym_GT_GT_GT] = ACTIONS(2907), - [anon_sym_AMP_CARET] = ACTIONS(2907), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_PIPE_PIPE] = ACTIONS(2907), - [anon_sym_or] = ACTIONS(2907), - [sym_none] = ACTIONS(2907), - [sym_true] = ACTIONS(2907), - [sym_false] = ACTIONS(2907), - [sym_nil] = ACTIONS(2907), - [anon_sym_QMARK_DOT] = ACTIONS(2907), - [anon_sym_POUND_LBRACK] = ACTIONS(2907), - [anon_sym_if] = ACTIONS(2907), - [anon_sym_DOLLARif] = ACTIONS(2907), - [anon_sym_is] = ACTIONS(2907), - [anon_sym_BANGis] = ACTIONS(2907), - [anon_sym_in] = ACTIONS(2907), - [anon_sym_BANGin] = ACTIONS(2907), - [anon_sym_match] = ACTIONS(2907), - [anon_sym_select] = ACTIONS(2907), - [anon_sym_STAR_EQ] = ACTIONS(2907), - [anon_sym_SLASH_EQ] = ACTIONS(2907), - [anon_sym_PERCENT_EQ] = ACTIONS(2907), - [anon_sym_LT_LT_EQ] = ACTIONS(2907), - [anon_sym_GT_GT_EQ] = ACTIONS(2907), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2907), - [anon_sym_AMP_EQ] = ACTIONS(2907), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2907), - [anon_sym_PLUS_EQ] = ACTIONS(2907), - [anon_sym_DASH_EQ] = ACTIONS(2907), - [anon_sym_PIPE_EQ] = ACTIONS(2907), - [anon_sym_CARET_EQ] = ACTIONS(2907), - [anon_sym_COLON_EQ] = ACTIONS(2907), - [anon_sym_lock] = ACTIONS(2907), - [anon_sym_rlock] = ACTIONS(2907), - [anon_sym_unsafe] = ACTIONS(2907), - [anon_sym_sql] = ACTIONS(2907), - [sym_int_literal] = ACTIONS(2907), - [sym_float_literal] = ACTIONS(2907), - [sym_rune_literal] = ACTIONS(2907), - [anon_sym_AT] = ACTIONS(2907), - [anon_sym_shared] = ACTIONS(2907), - [anon_sym_map_LBRACK] = ACTIONS(2907), - [anon_sym_chan] = ACTIONS(2907), - [anon_sym_thread] = ACTIONS(2907), - [anon_sym_atomic] = ACTIONS(2907), - [anon_sym_assert] = ACTIONS(2907), - [anon_sym_defer] = ACTIONS(2907), - [anon_sym_goto] = ACTIONS(2907), - [anon_sym_break] = ACTIONS(2907), - [anon_sym_continue] = ACTIONS(2907), - [anon_sym_return] = ACTIONS(2907), - [anon_sym_DOLLARfor] = ACTIONS(2907), - [anon_sym_for] = ACTIONS(2907), - [anon_sym_POUND] = ACTIONS(2907), - [anon_sym_asm] = ACTIONS(2907), - [anon_sym_AT_LBRACK] = ACTIONS(2907), - [sym___double_quote] = ACTIONS(2907), - [sym___single_quote] = ACTIONS(2907), - [sym___c_double_quote] = ACTIONS(2907), - [sym___c_single_quote] = ACTIONS(2907), - [sym___r_double_quote] = ACTIONS(2907), - [sym___r_single_quote] = ACTIONS(2907), + [ts_builtin_sym_end] = ACTIONS(2900), + [sym_identifier] = ACTIONS(2902), + [anon_sym_LF] = ACTIONS(2902), + [anon_sym_CR] = ACTIONS(2902), + [anon_sym_CR_LF] = ACTIONS(2902), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2902), + [anon_sym_as] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_COMMA] = ACTIONS(2902), + [anon_sym_const] = ACTIONS(2902), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_EQ] = ACTIONS(2902), + [anon_sym___global] = ACTIONS(2902), + [anon_sym_type] = ACTIONS(2902), + [anon_sym_PIPE] = ACTIONS(2902), + [anon_sym_fn] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(2902), + [anon_sym_SLASH] = ACTIONS(2902), + [anon_sym_PERCENT] = ACTIONS(2902), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_GT] = ACTIONS(2902), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2902), + [anon_sym_GT_EQ] = ACTIONS(2902), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_struct] = ACTIONS(2902), + [anon_sym_union] = ACTIONS(2902), + [anon_sym_pub] = ACTIONS(2902), + [anon_sym_mut] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2902), + [anon_sym_interface] = ACTIONS(2902), + [anon_sym_PLUS_PLUS] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(2902), + [anon_sym_QMARK] = ACTIONS(2902), + [anon_sym_BANG] = ACTIONS(2902), + [anon_sym_go] = ACTIONS(2902), + [anon_sym_spawn] = ACTIONS(2902), + [anon_sym_json_DOTdecode] = ACTIONS(2902), + [anon_sym_LBRACK2] = ACTIONS(2902), + [anon_sym_TILDE] = ACTIONS(2902), + [anon_sym_CARET] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_LT_DASH] = ACTIONS(2902), + [anon_sym_LT_LT] = ACTIONS(2902), + [anon_sym_GT_GT] = ACTIONS(2902), + [anon_sym_GT_GT_GT] = ACTIONS(2902), + [anon_sym_AMP_CARET] = ACTIONS(2902), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_PIPE_PIPE] = ACTIONS(2902), + [anon_sym_or] = ACTIONS(2902), + [sym_none] = ACTIONS(2902), + [sym_true] = ACTIONS(2902), + [sym_false] = ACTIONS(2902), + [sym_nil] = ACTIONS(2902), + [anon_sym_QMARK_DOT] = ACTIONS(2902), + [anon_sym_POUND_LBRACK] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_DOLLARif] = ACTIONS(2902), + [anon_sym_is] = ACTIONS(2902), + [anon_sym_BANGis] = ACTIONS(2902), + [anon_sym_in] = ACTIONS(2902), + [anon_sym_BANGin] = ACTIONS(2902), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_select] = ACTIONS(2902), + [anon_sym_STAR_EQ] = ACTIONS(2902), + [anon_sym_SLASH_EQ] = ACTIONS(2902), + [anon_sym_PERCENT_EQ] = ACTIONS(2902), + [anon_sym_LT_LT_EQ] = ACTIONS(2902), + [anon_sym_GT_GT_EQ] = ACTIONS(2902), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2902), + [anon_sym_AMP_EQ] = ACTIONS(2902), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2902), + [anon_sym_PLUS_EQ] = ACTIONS(2902), + [anon_sym_DASH_EQ] = ACTIONS(2902), + [anon_sym_PIPE_EQ] = ACTIONS(2902), + [anon_sym_CARET_EQ] = ACTIONS(2902), + [anon_sym_COLON_EQ] = ACTIONS(2902), + [anon_sym_lock] = ACTIONS(2902), + [anon_sym_rlock] = ACTIONS(2902), + [anon_sym_unsafe] = ACTIONS(2902), + [anon_sym_sql] = ACTIONS(2902), + [sym_int_literal] = ACTIONS(2902), + [sym_float_literal] = ACTIONS(2902), + [sym_rune_literal] = ACTIONS(2902), + [anon_sym_AT] = ACTIONS(2902), + [anon_sym_shared] = ACTIONS(2902), + [anon_sym_map_LBRACK] = ACTIONS(2902), + [anon_sym_chan] = ACTIONS(2902), + [anon_sym_thread] = ACTIONS(2902), + [anon_sym_atomic] = ACTIONS(2902), + [anon_sym_assert] = ACTIONS(2902), + [anon_sym_defer] = ACTIONS(2902), + [anon_sym_goto] = ACTIONS(2902), + [anon_sym_break] = ACTIONS(2902), + [anon_sym_continue] = ACTIONS(2902), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_DOLLARfor] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_POUND] = ACTIONS(2902), + [anon_sym_asm] = ACTIONS(2902), + [anon_sym_AT_LBRACK] = ACTIONS(2902), + [sym___double_quote] = ACTIONS(2902), + [sym___single_quote] = ACTIONS(2902), + [sym___c_double_quote] = ACTIONS(2902), + [sym___c_single_quote] = ACTIONS(2902), + [sym___r_double_quote] = ACTIONS(2902), + [sym___r_single_quote] = ACTIONS(2902), }, [880] = { - [ts_builtin_sym_end] = ACTIONS(2909), - [sym_identifier] = ACTIONS(2911), - [anon_sym_LF] = ACTIONS(2911), - [anon_sym_CR] = ACTIONS(2911), - [anon_sym_CR_LF] = ACTIONS(2911), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2911), - [anon_sym_as] = ACTIONS(2911), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_COMMA] = ACTIONS(2911), - [anon_sym_const] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_EQ] = ACTIONS(2911), - [anon_sym___global] = ACTIONS(2911), - [anon_sym_type] = ACTIONS(2911), - [anon_sym_PIPE] = ACTIONS(2911), - [anon_sym_fn] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2911), - [anon_sym_DASH] = ACTIONS(2911), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_SLASH] = ACTIONS(2911), - [anon_sym_PERCENT] = ACTIONS(2911), - [anon_sym_LT] = ACTIONS(2911), - [anon_sym_GT] = ACTIONS(2911), - [anon_sym_EQ_EQ] = ACTIONS(2911), - [anon_sym_BANG_EQ] = ACTIONS(2911), - [anon_sym_LT_EQ] = ACTIONS(2911), - [anon_sym_GT_EQ] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_union] = ACTIONS(2911), - [anon_sym_pub] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(2911), - [anon_sym_enum] = ACTIONS(2911), - [anon_sym_interface] = ACTIONS(2911), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_QMARK] = ACTIONS(2911), - [anon_sym_BANG] = ACTIONS(2911), - [anon_sym_go] = ACTIONS(2911), - [anon_sym_spawn] = ACTIONS(2911), - [anon_sym_json_DOTdecode] = ACTIONS(2911), - [anon_sym_LBRACK2] = ACTIONS(2911), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_CARET] = ACTIONS(2911), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_LT_DASH] = ACTIONS(2911), - [anon_sym_LT_LT] = ACTIONS(2911), - [anon_sym_GT_GT] = ACTIONS(2911), - [anon_sym_GT_GT_GT] = ACTIONS(2911), - [anon_sym_AMP_CARET] = ACTIONS(2911), - [anon_sym_AMP_AMP] = ACTIONS(2911), - [anon_sym_PIPE_PIPE] = ACTIONS(2911), - [anon_sym_or] = ACTIONS(2911), - [sym_none] = ACTIONS(2911), - [sym_true] = ACTIONS(2911), - [sym_false] = ACTIONS(2911), - [sym_nil] = ACTIONS(2911), - [anon_sym_QMARK_DOT] = ACTIONS(2911), - [anon_sym_POUND_LBRACK] = ACTIONS(2911), - [anon_sym_if] = ACTIONS(2911), - [anon_sym_DOLLARif] = ACTIONS(2911), - [anon_sym_is] = ACTIONS(2911), - [anon_sym_BANGis] = ACTIONS(2911), - [anon_sym_in] = ACTIONS(2911), - [anon_sym_BANGin] = ACTIONS(2911), - [anon_sym_match] = ACTIONS(2911), - [anon_sym_select] = ACTIONS(2911), - [anon_sym_STAR_EQ] = ACTIONS(2911), - [anon_sym_SLASH_EQ] = ACTIONS(2911), - [anon_sym_PERCENT_EQ] = ACTIONS(2911), - [anon_sym_LT_LT_EQ] = ACTIONS(2911), - [anon_sym_GT_GT_EQ] = ACTIONS(2911), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2911), - [anon_sym_AMP_EQ] = ACTIONS(2911), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2911), - [anon_sym_PLUS_EQ] = ACTIONS(2911), - [anon_sym_DASH_EQ] = ACTIONS(2911), - [anon_sym_PIPE_EQ] = ACTIONS(2911), - [anon_sym_CARET_EQ] = ACTIONS(2911), - [anon_sym_COLON_EQ] = ACTIONS(2911), - [anon_sym_lock] = ACTIONS(2911), - [anon_sym_rlock] = ACTIONS(2911), - [anon_sym_unsafe] = ACTIONS(2911), - [anon_sym_sql] = ACTIONS(2911), - [sym_int_literal] = ACTIONS(2911), - [sym_float_literal] = ACTIONS(2911), - [sym_rune_literal] = ACTIONS(2911), - [anon_sym_AT] = ACTIONS(2911), - [anon_sym_shared] = ACTIONS(2911), - [anon_sym_map_LBRACK] = ACTIONS(2911), - [anon_sym_chan] = ACTIONS(2911), - [anon_sym_thread] = ACTIONS(2911), - [anon_sym_atomic] = ACTIONS(2911), - [anon_sym_assert] = ACTIONS(2911), - [anon_sym_defer] = ACTIONS(2911), - [anon_sym_goto] = ACTIONS(2911), - [anon_sym_break] = ACTIONS(2911), - [anon_sym_continue] = ACTIONS(2911), - [anon_sym_return] = ACTIONS(2911), - [anon_sym_DOLLARfor] = ACTIONS(2911), - [anon_sym_for] = ACTIONS(2911), - [anon_sym_POUND] = ACTIONS(2911), - [anon_sym_asm] = ACTIONS(2911), - [anon_sym_AT_LBRACK] = ACTIONS(2911), - [sym___double_quote] = ACTIONS(2911), - [sym___single_quote] = ACTIONS(2911), - [sym___c_double_quote] = ACTIONS(2911), - [sym___c_single_quote] = ACTIONS(2911), - [sym___r_double_quote] = ACTIONS(2911), - [sym___r_single_quote] = ACTIONS(2911), + [ts_builtin_sym_end] = ACTIONS(2904), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LF] = ACTIONS(2906), + [anon_sym_CR] = ACTIONS(2906), + [anon_sym_CR_LF] = ACTIONS(2906), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2906), + [anon_sym_as] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_COMMA] = ACTIONS(2906), + [anon_sym_const] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_EQ] = ACTIONS(2906), + [anon_sym___global] = ACTIONS(2906), + [anon_sym_type] = ACTIONS(2906), + [anon_sym_PIPE] = ACTIONS(2906), + [anon_sym_fn] = ACTIONS(2906), + [anon_sym_PLUS] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2906), + [anon_sym_SLASH] = ACTIONS(2906), + [anon_sym_PERCENT] = ACTIONS(2906), + [anon_sym_LT] = ACTIONS(2906), + [anon_sym_GT] = ACTIONS(2906), + [anon_sym_EQ_EQ] = ACTIONS(2906), + [anon_sym_BANG_EQ] = ACTIONS(2906), + [anon_sym_LT_EQ] = ACTIONS(2906), + [anon_sym_GT_EQ] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_struct] = ACTIONS(2906), + [anon_sym_union] = ACTIONS(2906), + [anon_sym_pub] = ACTIONS(2906), + [anon_sym_mut] = ACTIONS(2906), + [anon_sym_enum] = ACTIONS(2906), + [anon_sym_interface] = ACTIONS(2906), + [anon_sym_PLUS_PLUS] = ACTIONS(2906), + [anon_sym_DASH_DASH] = ACTIONS(2906), + [anon_sym_QMARK] = ACTIONS(2906), + [anon_sym_BANG] = ACTIONS(2906), + [anon_sym_go] = ACTIONS(2906), + [anon_sym_spawn] = ACTIONS(2906), + [anon_sym_json_DOTdecode] = ACTIONS(2906), + [anon_sym_LBRACK2] = ACTIONS(2906), + [anon_sym_TILDE] = ACTIONS(2906), + [anon_sym_CARET] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2906), + [anon_sym_LT_DASH] = ACTIONS(2906), + [anon_sym_LT_LT] = ACTIONS(2906), + [anon_sym_GT_GT] = ACTIONS(2906), + [anon_sym_GT_GT_GT] = ACTIONS(2906), + [anon_sym_AMP_CARET] = ACTIONS(2906), + [anon_sym_AMP_AMP] = ACTIONS(2906), + [anon_sym_PIPE_PIPE] = ACTIONS(2906), + [anon_sym_or] = ACTIONS(2906), + [sym_none] = ACTIONS(2906), + [sym_true] = ACTIONS(2906), + [sym_false] = ACTIONS(2906), + [sym_nil] = ACTIONS(2906), + [anon_sym_QMARK_DOT] = ACTIONS(2906), + [anon_sym_POUND_LBRACK] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_DOLLARif] = ACTIONS(2906), + [anon_sym_is] = ACTIONS(2906), + [anon_sym_BANGis] = ACTIONS(2906), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_BANGin] = ACTIONS(2906), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_select] = ACTIONS(2906), + [anon_sym_STAR_EQ] = ACTIONS(2906), + [anon_sym_SLASH_EQ] = ACTIONS(2906), + [anon_sym_PERCENT_EQ] = ACTIONS(2906), + [anon_sym_LT_LT_EQ] = ACTIONS(2906), + [anon_sym_GT_GT_EQ] = ACTIONS(2906), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2906), + [anon_sym_AMP_EQ] = ACTIONS(2906), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2906), + [anon_sym_PLUS_EQ] = ACTIONS(2906), + [anon_sym_DASH_EQ] = ACTIONS(2906), + [anon_sym_PIPE_EQ] = ACTIONS(2906), + [anon_sym_CARET_EQ] = ACTIONS(2906), + [anon_sym_COLON_EQ] = ACTIONS(2906), + [anon_sym_lock] = ACTIONS(2906), + [anon_sym_rlock] = ACTIONS(2906), + [anon_sym_unsafe] = ACTIONS(2906), + [anon_sym_sql] = ACTIONS(2906), + [sym_int_literal] = ACTIONS(2906), + [sym_float_literal] = ACTIONS(2906), + [sym_rune_literal] = ACTIONS(2906), + [anon_sym_AT] = ACTIONS(2906), + [anon_sym_shared] = ACTIONS(2906), + [anon_sym_map_LBRACK] = ACTIONS(2906), + [anon_sym_chan] = ACTIONS(2906), + [anon_sym_thread] = ACTIONS(2906), + [anon_sym_atomic] = ACTIONS(2906), + [anon_sym_assert] = ACTIONS(2906), + [anon_sym_defer] = ACTIONS(2906), + [anon_sym_goto] = ACTIONS(2906), + [anon_sym_break] = ACTIONS(2906), + [anon_sym_continue] = ACTIONS(2906), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_DOLLARfor] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_POUND] = ACTIONS(2906), + [anon_sym_asm] = ACTIONS(2906), + [anon_sym_AT_LBRACK] = ACTIONS(2906), + [sym___double_quote] = ACTIONS(2906), + [sym___single_quote] = ACTIONS(2906), + [sym___c_double_quote] = ACTIONS(2906), + [sym___c_single_quote] = ACTIONS(2906), + [sym___r_double_quote] = ACTIONS(2906), + [sym___r_single_quote] = ACTIONS(2906), }, [881] = { - [ts_builtin_sym_end] = ACTIONS(2913), - [sym_identifier] = ACTIONS(2915), - [anon_sym_LF] = ACTIONS(2915), - [anon_sym_CR] = ACTIONS(2915), - [anon_sym_CR_LF] = ACTIONS(2915), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2915), - [anon_sym_as] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_COMMA] = ACTIONS(2915), - [anon_sym_const] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2915), - [anon_sym_EQ] = ACTIONS(2915), - [anon_sym___global] = ACTIONS(2915), - [anon_sym_type] = ACTIONS(2915), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_fn] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_SLASH] = ACTIONS(2915), - [anon_sym_PERCENT] = ACTIONS(2915), - [anon_sym_LT] = ACTIONS(2915), - [anon_sym_GT] = ACTIONS(2915), - [anon_sym_EQ_EQ] = ACTIONS(2915), - [anon_sym_BANG_EQ] = ACTIONS(2915), - [anon_sym_LT_EQ] = ACTIONS(2915), - [anon_sym_GT_EQ] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_struct] = ACTIONS(2915), - [anon_sym_union] = ACTIONS(2915), - [anon_sym_pub] = ACTIONS(2915), - [anon_sym_mut] = ACTIONS(2915), - [anon_sym_enum] = ACTIONS(2915), - [anon_sym_interface] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_QMARK] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2915), - [anon_sym_json_DOTdecode] = ACTIONS(2915), - [anon_sym_LBRACK2] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_LT_DASH] = ACTIONS(2915), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2915), - [anon_sym_GT_GT_GT] = ACTIONS(2915), - [anon_sym_AMP_CARET] = ACTIONS(2915), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_PIPE_PIPE] = ACTIONS(2915), - [anon_sym_or] = ACTIONS(2915), - [sym_none] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [sym_nil] = ACTIONS(2915), - [anon_sym_QMARK_DOT] = ACTIONS(2915), - [anon_sym_POUND_LBRACK] = ACTIONS(2915), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_DOLLARif] = ACTIONS(2915), - [anon_sym_is] = ACTIONS(2915), - [anon_sym_BANGis] = ACTIONS(2915), - [anon_sym_in] = ACTIONS(2915), - [anon_sym_BANGin] = ACTIONS(2915), - [anon_sym_match] = ACTIONS(2915), - [anon_sym_select] = ACTIONS(2915), - [anon_sym_STAR_EQ] = ACTIONS(2915), - [anon_sym_SLASH_EQ] = ACTIONS(2915), - [anon_sym_PERCENT_EQ] = ACTIONS(2915), - [anon_sym_LT_LT_EQ] = ACTIONS(2915), - [anon_sym_GT_GT_EQ] = ACTIONS(2915), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2915), - [anon_sym_AMP_EQ] = ACTIONS(2915), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2915), - [anon_sym_PLUS_EQ] = ACTIONS(2915), - [anon_sym_DASH_EQ] = ACTIONS(2915), - [anon_sym_PIPE_EQ] = ACTIONS(2915), - [anon_sym_CARET_EQ] = ACTIONS(2915), - [anon_sym_COLON_EQ] = ACTIONS(2915), - [anon_sym_lock] = ACTIONS(2915), - [anon_sym_rlock] = ACTIONS(2915), - [anon_sym_unsafe] = ACTIONS(2915), - [anon_sym_sql] = ACTIONS(2915), - [sym_int_literal] = ACTIONS(2915), - [sym_float_literal] = ACTIONS(2915), - [sym_rune_literal] = ACTIONS(2915), - [anon_sym_AT] = ACTIONS(2915), - [anon_sym_shared] = ACTIONS(2915), - [anon_sym_map_LBRACK] = ACTIONS(2915), - [anon_sym_chan] = ACTIONS(2915), - [anon_sym_thread] = ACTIONS(2915), - [anon_sym_atomic] = ACTIONS(2915), - [anon_sym_assert] = ACTIONS(2915), - [anon_sym_defer] = ACTIONS(2915), - [anon_sym_goto] = ACTIONS(2915), - [anon_sym_break] = ACTIONS(2915), - [anon_sym_continue] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2915), - [anon_sym_DOLLARfor] = ACTIONS(2915), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_POUND] = ACTIONS(2915), - [anon_sym_asm] = ACTIONS(2915), - [anon_sym_AT_LBRACK] = ACTIONS(2915), - [sym___double_quote] = ACTIONS(2915), - [sym___single_quote] = ACTIONS(2915), - [sym___c_double_quote] = ACTIONS(2915), - [sym___c_single_quote] = ACTIONS(2915), - [sym___r_double_quote] = ACTIONS(2915), - [sym___r_single_quote] = ACTIONS(2915), + [ts_builtin_sym_end] = ACTIONS(2908), + [sym_identifier] = ACTIONS(2910), + [anon_sym_LF] = ACTIONS(2910), + [anon_sym_CR] = ACTIONS(2910), + [anon_sym_CR_LF] = ACTIONS(2910), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2910), + [anon_sym_as] = ACTIONS(2910), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_COMMA] = ACTIONS(2910), + [anon_sym_const] = ACTIONS(2910), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_EQ] = ACTIONS(2910), + [anon_sym___global] = ACTIONS(2910), + [anon_sym_type] = ACTIONS(2910), + [anon_sym_PIPE] = ACTIONS(2910), + [anon_sym_fn] = ACTIONS(2910), + [anon_sym_PLUS] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2910), + [anon_sym_SLASH] = ACTIONS(2910), + [anon_sym_PERCENT] = ACTIONS(2910), + [anon_sym_LT] = ACTIONS(2910), + [anon_sym_GT] = ACTIONS(2910), + [anon_sym_EQ_EQ] = ACTIONS(2910), + [anon_sym_BANG_EQ] = ACTIONS(2910), + [anon_sym_LT_EQ] = ACTIONS(2910), + [anon_sym_GT_EQ] = ACTIONS(2910), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_struct] = ACTIONS(2910), + [anon_sym_union] = ACTIONS(2910), + [anon_sym_pub] = ACTIONS(2910), + [anon_sym_mut] = ACTIONS(2910), + [anon_sym_enum] = ACTIONS(2910), + [anon_sym_interface] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2910), + [anon_sym_DASH_DASH] = ACTIONS(2910), + [anon_sym_QMARK] = ACTIONS(2910), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_go] = ACTIONS(2910), + [anon_sym_spawn] = ACTIONS(2910), + [anon_sym_json_DOTdecode] = ACTIONS(2910), + [anon_sym_LBRACK2] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_CARET] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_LT_DASH] = ACTIONS(2910), + [anon_sym_LT_LT] = ACTIONS(2910), + [anon_sym_GT_GT] = ACTIONS(2910), + [anon_sym_GT_GT_GT] = ACTIONS(2910), + [anon_sym_AMP_CARET] = ACTIONS(2910), + [anon_sym_AMP_AMP] = ACTIONS(2910), + [anon_sym_PIPE_PIPE] = ACTIONS(2910), + [anon_sym_or] = ACTIONS(2910), + [sym_none] = ACTIONS(2910), + [sym_true] = ACTIONS(2910), + [sym_false] = ACTIONS(2910), + [sym_nil] = ACTIONS(2910), + [anon_sym_QMARK_DOT] = ACTIONS(2910), + [anon_sym_POUND_LBRACK] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_DOLLARif] = ACTIONS(2910), + [anon_sym_is] = ACTIONS(2910), + [anon_sym_BANGis] = ACTIONS(2910), + [anon_sym_in] = ACTIONS(2910), + [anon_sym_BANGin] = ACTIONS(2910), + [anon_sym_match] = ACTIONS(2910), + [anon_sym_select] = ACTIONS(2910), + [anon_sym_STAR_EQ] = ACTIONS(2910), + [anon_sym_SLASH_EQ] = ACTIONS(2910), + [anon_sym_PERCENT_EQ] = ACTIONS(2910), + [anon_sym_LT_LT_EQ] = ACTIONS(2910), + [anon_sym_GT_GT_EQ] = ACTIONS(2910), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2910), + [anon_sym_AMP_EQ] = ACTIONS(2910), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2910), + [anon_sym_PLUS_EQ] = ACTIONS(2910), + [anon_sym_DASH_EQ] = ACTIONS(2910), + [anon_sym_PIPE_EQ] = ACTIONS(2910), + [anon_sym_CARET_EQ] = ACTIONS(2910), + [anon_sym_COLON_EQ] = ACTIONS(2910), + [anon_sym_lock] = ACTIONS(2910), + [anon_sym_rlock] = ACTIONS(2910), + [anon_sym_unsafe] = ACTIONS(2910), + [anon_sym_sql] = ACTIONS(2910), + [sym_int_literal] = ACTIONS(2910), + [sym_float_literal] = ACTIONS(2910), + [sym_rune_literal] = ACTIONS(2910), + [anon_sym_AT] = ACTIONS(2910), + [anon_sym_shared] = ACTIONS(2910), + [anon_sym_map_LBRACK] = ACTIONS(2910), + [anon_sym_chan] = ACTIONS(2910), + [anon_sym_thread] = ACTIONS(2910), + [anon_sym_atomic] = ACTIONS(2910), + [anon_sym_assert] = ACTIONS(2910), + [anon_sym_defer] = ACTIONS(2910), + [anon_sym_goto] = ACTIONS(2910), + [anon_sym_break] = ACTIONS(2910), + [anon_sym_continue] = ACTIONS(2910), + [anon_sym_return] = ACTIONS(2910), + [anon_sym_DOLLARfor] = ACTIONS(2910), + [anon_sym_for] = ACTIONS(2910), + [anon_sym_POUND] = ACTIONS(2910), + [anon_sym_asm] = ACTIONS(2910), + [anon_sym_AT_LBRACK] = ACTIONS(2910), + [sym___double_quote] = ACTIONS(2910), + [sym___single_quote] = ACTIONS(2910), + [sym___c_double_quote] = ACTIONS(2910), + [sym___c_single_quote] = ACTIONS(2910), + [sym___r_double_quote] = ACTIONS(2910), + [sym___r_single_quote] = ACTIONS(2910), }, [882] = { - [ts_builtin_sym_end] = ACTIONS(2917), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LF] = ACTIONS(2919), - [anon_sym_CR] = ACTIONS(2919), - [anon_sym_CR_LF] = ACTIONS(2919), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_as] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_COMMA] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym___global] = ACTIONS(2919), - [anon_sym_type] = ACTIONS(2919), - [anon_sym_PIPE] = ACTIONS(2919), - [anon_sym_fn] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_SLASH] = ACTIONS(2919), - [anon_sym_PERCENT] = ACTIONS(2919), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_GT] = ACTIONS(2919), - [anon_sym_EQ_EQ] = ACTIONS(2919), - [anon_sym_BANG_EQ] = ACTIONS(2919), - [anon_sym_LT_EQ] = ACTIONS(2919), - [anon_sym_GT_EQ] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_union] = ACTIONS(2919), - [anon_sym_pub] = ACTIONS(2919), - [anon_sym_mut] = ACTIONS(2919), - [anon_sym_enum] = ACTIONS(2919), - [anon_sym_interface] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2919), - [anon_sym_DASH_DASH] = ACTIONS(2919), - [anon_sym_QMARK] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_go] = ACTIONS(2919), - [anon_sym_spawn] = ACTIONS(2919), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_CARET] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_LT_DASH] = ACTIONS(2919), - [anon_sym_LT_LT] = ACTIONS(2919), - [anon_sym_GT_GT] = ACTIONS(2919), - [anon_sym_GT_GT_GT] = ACTIONS(2919), - [anon_sym_AMP_CARET] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_PIPE_PIPE] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(2919), - [sym_none] = ACTIONS(2919), - [sym_true] = ACTIONS(2919), - [sym_false] = ACTIONS(2919), - [sym_nil] = ACTIONS(2919), - [anon_sym_QMARK_DOT] = ACTIONS(2919), - [anon_sym_POUND_LBRACK] = ACTIONS(2919), - [anon_sym_if] = ACTIONS(2919), - [anon_sym_DOLLARif] = ACTIONS(2919), - [anon_sym_is] = ACTIONS(2919), - [anon_sym_BANGis] = ACTIONS(2919), - [anon_sym_in] = ACTIONS(2919), - [anon_sym_BANGin] = ACTIONS(2919), - [anon_sym_match] = ACTIONS(2919), - [anon_sym_select] = ACTIONS(2919), - [anon_sym_STAR_EQ] = ACTIONS(2919), - [anon_sym_SLASH_EQ] = ACTIONS(2919), - [anon_sym_PERCENT_EQ] = ACTIONS(2919), - [anon_sym_LT_LT_EQ] = ACTIONS(2919), - [anon_sym_GT_GT_EQ] = ACTIONS(2919), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2919), - [anon_sym_AMP_EQ] = ACTIONS(2919), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2919), - [anon_sym_PLUS_EQ] = ACTIONS(2919), - [anon_sym_DASH_EQ] = ACTIONS(2919), - [anon_sym_PIPE_EQ] = ACTIONS(2919), - [anon_sym_CARET_EQ] = ACTIONS(2919), - [anon_sym_COLON_EQ] = ACTIONS(2919), - [anon_sym_lock] = ACTIONS(2919), - [anon_sym_rlock] = ACTIONS(2919), - [anon_sym_unsafe] = ACTIONS(2919), - [anon_sym_sql] = ACTIONS(2919), - [sym_int_literal] = ACTIONS(2919), - [sym_float_literal] = ACTIONS(2919), - [sym_rune_literal] = ACTIONS(2919), - [anon_sym_AT] = ACTIONS(2919), - [anon_sym_shared] = ACTIONS(2919), - [anon_sym_map_LBRACK] = ACTIONS(2919), - [anon_sym_chan] = ACTIONS(2919), - [anon_sym_thread] = ACTIONS(2919), - [anon_sym_atomic] = ACTIONS(2919), - [anon_sym_assert] = ACTIONS(2919), - [anon_sym_defer] = ACTIONS(2919), - [anon_sym_goto] = ACTIONS(2919), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2919), - [anon_sym_return] = ACTIONS(2919), - [anon_sym_DOLLARfor] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2919), - [anon_sym_POUND] = ACTIONS(2919), - [anon_sym_asm] = ACTIONS(2919), - [anon_sym_AT_LBRACK] = ACTIONS(2919), - [sym___double_quote] = ACTIONS(2919), - [sym___single_quote] = ACTIONS(2919), - [sym___c_double_quote] = ACTIONS(2919), - [sym___c_single_quote] = ACTIONS(2919), - [sym___r_double_quote] = ACTIONS(2919), - [sym___r_single_quote] = ACTIONS(2919), + [ts_builtin_sym_end] = ACTIONS(2912), + [sym_identifier] = ACTIONS(2914), + [anon_sym_LF] = ACTIONS(2914), + [anon_sym_CR] = ACTIONS(2914), + [anon_sym_CR_LF] = ACTIONS(2914), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2914), + [anon_sym_as] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2914), + [anon_sym_COMMA] = ACTIONS(2914), + [anon_sym_const] = ACTIONS(2914), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym_EQ] = ACTIONS(2914), + [anon_sym___global] = ACTIONS(2914), + [anon_sym_type] = ACTIONS(2914), + [anon_sym_PIPE] = ACTIONS(2914), + [anon_sym_fn] = ACTIONS(2914), + [anon_sym_PLUS] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_SLASH] = ACTIONS(2914), + [anon_sym_PERCENT] = ACTIONS(2914), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_EQ_EQ] = ACTIONS(2914), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_EQ] = ACTIONS(2914), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_struct] = ACTIONS(2914), + [anon_sym_union] = ACTIONS(2914), + [anon_sym_pub] = ACTIONS(2914), + [anon_sym_mut] = ACTIONS(2914), + [anon_sym_enum] = ACTIONS(2914), + [anon_sym_interface] = ACTIONS(2914), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_QMARK] = ACTIONS(2914), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_go] = ACTIONS(2914), + [anon_sym_spawn] = ACTIONS(2914), + [anon_sym_json_DOTdecode] = ACTIONS(2914), + [anon_sym_LBRACK2] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2914), + [anon_sym_CARET] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2914), + [anon_sym_LT_DASH] = ACTIONS(2914), + [anon_sym_LT_LT] = ACTIONS(2914), + [anon_sym_GT_GT] = ACTIONS(2914), + [anon_sym_GT_GT_GT] = ACTIONS(2914), + [anon_sym_AMP_CARET] = ACTIONS(2914), + [anon_sym_AMP_AMP] = ACTIONS(2914), + [anon_sym_PIPE_PIPE] = ACTIONS(2914), + [anon_sym_or] = ACTIONS(2914), + [sym_none] = ACTIONS(2914), + [sym_true] = ACTIONS(2914), + [sym_false] = ACTIONS(2914), + [sym_nil] = ACTIONS(2914), + [anon_sym_QMARK_DOT] = ACTIONS(2914), + [anon_sym_POUND_LBRACK] = ACTIONS(2914), + [anon_sym_if] = ACTIONS(2914), + [anon_sym_DOLLARif] = ACTIONS(2914), + [anon_sym_is] = ACTIONS(2914), + [anon_sym_BANGis] = ACTIONS(2914), + [anon_sym_in] = ACTIONS(2914), + [anon_sym_BANGin] = ACTIONS(2914), + [anon_sym_match] = ACTIONS(2914), + [anon_sym_select] = ACTIONS(2914), + [anon_sym_STAR_EQ] = ACTIONS(2914), + [anon_sym_SLASH_EQ] = ACTIONS(2914), + [anon_sym_PERCENT_EQ] = ACTIONS(2914), + [anon_sym_LT_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_GT_EQ] = ACTIONS(2914), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2914), + [anon_sym_AMP_EQ] = ACTIONS(2914), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2914), + [anon_sym_PLUS_EQ] = ACTIONS(2914), + [anon_sym_DASH_EQ] = ACTIONS(2914), + [anon_sym_PIPE_EQ] = ACTIONS(2914), + [anon_sym_CARET_EQ] = ACTIONS(2914), + [anon_sym_COLON_EQ] = ACTIONS(2914), + [anon_sym_lock] = ACTIONS(2914), + [anon_sym_rlock] = ACTIONS(2914), + [anon_sym_unsafe] = ACTIONS(2914), + [anon_sym_sql] = ACTIONS(2914), + [sym_int_literal] = ACTIONS(2914), + [sym_float_literal] = ACTIONS(2914), + [sym_rune_literal] = ACTIONS(2914), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_shared] = ACTIONS(2914), + [anon_sym_map_LBRACK] = ACTIONS(2914), + [anon_sym_chan] = ACTIONS(2914), + [anon_sym_thread] = ACTIONS(2914), + [anon_sym_atomic] = ACTIONS(2914), + [anon_sym_assert] = ACTIONS(2914), + [anon_sym_defer] = ACTIONS(2914), + [anon_sym_goto] = ACTIONS(2914), + [anon_sym_break] = ACTIONS(2914), + [anon_sym_continue] = ACTIONS(2914), + [anon_sym_return] = ACTIONS(2914), + [anon_sym_DOLLARfor] = ACTIONS(2914), + [anon_sym_for] = ACTIONS(2914), + [anon_sym_POUND] = ACTIONS(2914), + [anon_sym_asm] = ACTIONS(2914), + [anon_sym_AT_LBRACK] = ACTIONS(2914), + [sym___double_quote] = ACTIONS(2914), + [sym___single_quote] = ACTIONS(2914), + [sym___c_double_quote] = ACTIONS(2914), + [sym___c_single_quote] = ACTIONS(2914), + [sym___r_double_quote] = ACTIONS(2914), + [sym___r_single_quote] = ACTIONS(2914), }, [883] = { - [ts_builtin_sym_end] = ACTIONS(2921), - [sym_identifier] = ACTIONS(2923), - [anon_sym_LF] = ACTIONS(2923), - [anon_sym_CR] = ACTIONS(2923), - [anon_sym_CR_LF] = ACTIONS(2923), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2923), - [anon_sym_as] = ACTIONS(2923), - [anon_sym_LBRACE] = ACTIONS(2923), - [anon_sym_COMMA] = ACTIONS(2923), - [anon_sym_const] = ACTIONS(2923), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_EQ] = ACTIONS(2923), - [anon_sym___global] = ACTIONS(2923), - [anon_sym_type] = ACTIONS(2923), - [anon_sym_PIPE] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2923), - [anon_sym_PLUS] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2923), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_SLASH] = ACTIONS(2923), - [anon_sym_PERCENT] = ACTIONS(2923), - [anon_sym_LT] = ACTIONS(2923), - [anon_sym_GT] = ACTIONS(2923), - [anon_sym_EQ_EQ] = ACTIONS(2923), - [anon_sym_BANG_EQ] = ACTIONS(2923), - [anon_sym_LT_EQ] = ACTIONS(2923), - [anon_sym_GT_EQ] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_union] = ACTIONS(2923), - [anon_sym_pub] = ACTIONS(2923), - [anon_sym_mut] = ACTIONS(2923), - [anon_sym_enum] = ACTIONS(2923), - [anon_sym_interface] = ACTIONS(2923), - [anon_sym_PLUS_PLUS] = ACTIONS(2923), - [anon_sym_DASH_DASH] = ACTIONS(2923), - [anon_sym_QMARK] = ACTIONS(2923), - [anon_sym_BANG] = ACTIONS(2923), - [anon_sym_go] = ACTIONS(2923), - [anon_sym_spawn] = ACTIONS(2923), - [anon_sym_json_DOTdecode] = ACTIONS(2923), - [anon_sym_LBRACK2] = ACTIONS(2923), - [anon_sym_TILDE] = ACTIONS(2923), - [anon_sym_CARET] = ACTIONS(2923), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_LT_DASH] = ACTIONS(2923), - [anon_sym_LT_LT] = ACTIONS(2923), - [anon_sym_GT_GT] = ACTIONS(2923), - [anon_sym_GT_GT_GT] = ACTIONS(2923), - [anon_sym_AMP_CARET] = ACTIONS(2923), - [anon_sym_AMP_AMP] = ACTIONS(2923), - [anon_sym_PIPE_PIPE] = ACTIONS(2923), - [anon_sym_or] = ACTIONS(2923), - [sym_none] = ACTIONS(2923), - [sym_true] = ACTIONS(2923), - [sym_false] = ACTIONS(2923), - [sym_nil] = ACTIONS(2923), - [anon_sym_QMARK_DOT] = ACTIONS(2923), - [anon_sym_POUND_LBRACK] = ACTIONS(2923), - [anon_sym_if] = ACTIONS(2923), - [anon_sym_DOLLARif] = ACTIONS(2923), - [anon_sym_is] = ACTIONS(2923), - [anon_sym_BANGis] = ACTIONS(2923), - [anon_sym_in] = ACTIONS(2923), - [anon_sym_BANGin] = ACTIONS(2923), - [anon_sym_match] = ACTIONS(2923), - [anon_sym_select] = ACTIONS(2923), - [anon_sym_STAR_EQ] = ACTIONS(2923), - [anon_sym_SLASH_EQ] = ACTIONS(2923), - [anon_sym_PERCENT_EQ] = ACTIONS(2923), - [anon_sym_LT_LT_EQ] = ACTIONS(2923), - [anon_sym_GT_GT_EQ] = ACTIONS(2923), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2923), - [anon_sym_AMP_EQ] = ACTIONS(2923), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2923), - [anon_sym_PLUS_EQ] = ACTIONS(2923), - [anon_sym_DASH_EQ] = ACTIONS(2923), - [anon_sym_PIPE_EQ] = ACTIONS(2923), - [anon_sym_CARET_EQ] = ACTIONS(2923), - [anon_sym_COLON_EQ] = ACTIONS(2923), - [anon_sym_lock] = ACTIONS(2923), - [anon_sym_rlock] = ACTIONS(2923), - [anon_sym_unsafe] = ACTIONS(2923), - [anon_sym_sql] = ACTIONS(2923), - [sym_int_literal] = ACTIONS(2923), - [sym_float_literal] = ACTIONS(2923), - [sym_rune_literal] = ACTIONS(2923), - [anon_sym_AT] = ACTIONS(2923), - [anon_sym_shared] = ACTIONS(2923), - [anon_sym_map_LBRACK] = ACTIONS(2923), - [anon_sym_chan] = ACTIONS(2923), - [anon_sym_thread] = ACTIONS(2923), - [anon_sym_atomic] = ACTIONS(2923), - [anon_sym_assert] = ACTIONS(2923), - [anon_sym_defer] = ACTIONS(2923), - [anon_sym_goto] = ACTIONS(2923), - [anon_sym_break] = ACTIONS(2923), - [anon_sym_continue] = ACTIONS(2923), - [anon_sym_return] = ACTIONS(2923), - [anon_sym_DOLLARfor] = ACTIONS(2923), - [anon_sym_for] = ACTIONS(2923), - [anon_sym_POUND] = ACTIONS(2923), - [anon_sym_asm] = ACTIONS(2923), - [anon_sym_AT_LBRACK] = ACTIONS(2923), - [sym___double_quote] = ACTIONS(2923), - [sym___single_quote] = ACTIONS(2923), - [sym___c_double_quote] = ACTIONS(2923), - [sym___c_single_quote] = ACTIONS(2923), - [sym___r_double_quote] = ACTIONS(2923), - [sym___r_single_quote] = ACTIONS(2923), + [ts_builtin_sym_end] = ACTIONS(2916), + [sym_identifier] = ACTIONS(2918), + [anon_sym_LF] = ACTIONS(2918), + [anon_sym_CR] = ACTIONS(2918), + [anon_sym_CR_LF] = ACTIONS(2918), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_as] = ACTIONS(2918), + [anon_sym_LBRACE] = ACTIONS(2918), + [anon_sym_COMMA] = ACTIONS(2918), + [anon_sym_const] = ACTIONS(2918), + [anon_sym_LPAREN] = ACTIONS(2918), + [anon_sym_EQ] = ACTIONS(2918), + [anon_sym___global] = ACTIONS(2918), + [anon_sym_type] = ACTIONS(2918), + [anon_sym_PIPE] = ACTIONS(2918), + [anon_sym_fn] = ACTIONS(2918), + [anon_sym_PLUS] = ACTIONS(2918), + [anon_sym_DASH] = ACTIONS(2918), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_SLASH] = ACTIONS(2918), + [anon_sym_PERCENT] = ACTIONS(2918), + [anon_sym_LT] = ACTIONS(2918), + [anon_sym_GT] = ACTIONS(2918), + [anon_sym_EQ_EQ] = ACTIONS(2918), + [anon_sym_BANG_EQ] = ACTIONS(2918), + [anon_sym_LT_EQ] = ACTIONS(2918), + [anon_sym_GT_EQ] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_struct] = ACTIONS(2918), + [anon_sym_union] = ACTIONS(2918), + [anon_sym_pub] = ACTIONS(2918), + [anon_sym_mut] = ACTIONS(2918), + [anon_sym_enum] = ACTIONS(2918), + [anon_sym_interface] = ACTIONS(2918), + [anon_sym_PLUS_PLUS] = ACTIONS(2918), + [anon_sym_DASH_DASH] = ACTIONS(2918), + [anon_sym_QMARK] = ACTIONS(2918), + [anon_sym_BANG] = ACTIONS(2918), + [anon_sym_go] = ACTIONS(2918), + [anon_sym_spawn] = ACTIONS(2918), + [anon_sym_json_DOTdecode] = ACTIONS(2918), + [anon_sym_LBRACK2] = ACTIONS(2918), + [anon_sym_TILDE] = ACTIONS(2918), + [anon_sym_CARET] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2918), + [anon_sym_LT_DASH] = ACTIONS(2918), + [anon_sym_LT_LT] = ACTIONS(2918), + [anon_sym_GT_GT] = ACTIONS(2918), + [anon_sym_GT_GT_GT] = ACTIONS(2918), + [anon_sym_AMP_CARET] = ACTIONS(2918), + [anon_sym_AMP_AMP] = ACTIONS(2918), + [anon_sym_PIPE_PIPE] = ACTIONS(2918), + [anon_sym_or] = ACTIONS(2918), + [sym_none] = ACTIONS(2918), + [sym_true] = ACTIONS(2918), + [sym_false] = ACTIONS(2918), + [sym_nil] = ACTIONS(2918), + [anon_sym_QMARK_DOT] = ACTIONS(2918), + [anon_sym_POUND_LBRACK] = ACTIONS(2918), + [anon_sym_if] = ACTIONS(2918), + [anon_sym_DOLLARif] = ACTIONS(2918), + [anon_sym_is] = ACTIONS(2918), + [anon_sym_BANGis] = ACTIONS(2918), + [anon_sym_in] = ACTIONS(2918), + [anon_sym_BANGin] = ACTIONS(2918), + [anon_sym_match] = ACTIONS(2918), + [anon_sym_select] = ACTIONS(2918), + [anon_sym_STAR_EQ] = ACTIONS(2918), + [anon_sym_SLASH_EQ] = ACTIONS(2918), + [anon_sym_PERCENT_EQ] = ACTIONS(2918), + [anon_sym_LT_LT_EQ] = ACTIONS(2918), + [anon_sym_GT_GT_EQ] = ACTIONS(2918), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2918), + [anon_sym_AMP_EQ] = ACTIONS(2918), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2918), + [anon_sym_PLUS_EQ] = ACTIONS(2918), + [anon_sym_DASH_EQ] = ACTIONS(2918), + [anon_sym_PIPE_EQ] = ACTIONS(2918), + [anon_sym_CARET_EQ] = ACTIONS(2918), + [anon_sym_COLON_EQ] = ACTIONS(2918), + [anon_sym_lock] = ACTIONS(2918), + [anon_sym_rlock] = ACTIONS(2918), + [anon_sym_unsafe] = ACTIONS(2918), + [anon_sym_sql] = ACTIONS(2918), + [sym_int_literal] = ACTIONS(2918), + [sym_float_literal] = ACTIONS(2918), + [sym_rune_literal] = ACTIONS(2918), + [anon_sym_AT] = ACTIONS(2918), + [anon_sym_shared] = ACTIONS(2918), + [anon_sym_map_LBRACK] = ACTIONS(2918), + [anon_sym_chan] = ACTIONS(2918), + [anon_sym_thread] = ACTIONS(2918), + [anon_sym_atomic] = ACTIONS(2918), + [anon_sym_assert] = ACTIONS(2918), + [anon_sym_defer] = ACTIONS(2918), + [anon_sym_goto] = ACTIONS(2918), + [anon_sym_break] = ACTIONS(2918), + [anon_sym_continue] = ACTIONS(2918), + [anon_sym_return] = ACTIONS(2918), + [anon_sym_DOLLARfor] = ACTIONS(2918), + [anon_sym_for] = ACTIONS(2918), + [anon_sym_POUND] = ACTIONS(2918), + [anon_sym_asm] = ACTIONS(2918), + [anon_sym_AT_LBRACK] = ACTIONS(2918), + [sym___double_quote] = ACTIONS(2918), + [sym___single_quote] = ACTIONS(2918), + [sym___c_double_quote] = ACTIONS(2918), + [sym___c_single_quote] = ACTIONS(2918), + [sym___r_double_quote] = ACTIONS(2918), + [sym___r_single_quote] = ACTIONS(2918), }, [884] = { - [ts_builtin_sym_end] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2927), - [anon_sym_LF] = ACTIONS(2927), - [anon_sym_CR] = ACTIONS(2927), - [anon_sym_CR_LF] = ACTIONS(2927), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2927), - [anon_sym_as] = ACTIONS(2927), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_COMMA] = ACTIONS(2927), - [anon_sym_const] = ACTIONS(2927), - [anon_sym_LPAREN] = ACTIONS(2927), - [anon_sym_EQ] = ACTIONS(2927), - [anon_sym___global] = ACTIONS(2927), - [anon_sym_type] = ACTIONS(2927), - [anon_sym_PIPE] = ACTIONS(2927), - [anon_sym_fn] = ACTIONS(2927), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_SLASH] = ACTIONS(2927), - [anon_sym_PERCENT] = ACTIONS(2927), - [anon_sym_LT] = ACTIONS(2927), - [anon_sym_GT] = ACTIONS(2927), - [anon_sym_EQ_EQ] = ACTIONS(2927), - [anon_sym_BANG_EQ] = ACTIONS(2927), - [anon_sym_LT_EQ] = ACTIONS(2927), - [anon_sym_GT_EQ] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_struct] = ACTIONS(2927), - [anon_sym_union] = ACTIONS(2927), - [anon_sym_pub] = ACTIONS(2927), - [anon_sym_mut] = ACTIONS(2927), - [anon_sym_enum] = ACTIONS(2927), - [anon_sym_interface] = ACTIONS(2927), - [anon_sym_PLUS_PLUS] = ACTIONS(2927), - [anon_sym_DASH_DASH] = ACTIONS(2927), - [anon_sym_QMARK] = ACTIONS(2927), - [anon_sym_BANG] = ACTIONS(2927), - [anon_sym_go] = ACTIONS(2927), - [anon_sym_spawn] = ACTIONS(2927), - [anon_sym_json_DOTdecode] = ACTIONS(2927), - [anon_sym_LBRACK2] = ACTIONS(2927), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_CARET] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2927), - [anon_sym_LT_LT] = ACTIONS(2927), - [anon_sym_GT_GT] = ACTIONS(2927), - [anon_sym_GT_GT_GT] = ACTIONS(2927), - [anon_sym_AMP_CARET] = ACTIONS(2927), - [anon_sym_AMP_AMP] = ACTIONS(2927), - [anon_sym_PIPE_PIPE] = ACTIONS(2927), - [anon_sym_or] = ACTIONS(2927), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_QMARK_DOT] = ACTIONS(2927), - [anon_sym_POUND_LBRACK] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2927), - [anon_sym_DOLLARif] = ACTIONS(2927), - [anon_sym_is] = ACTIONS(2927), - [anon_sym_BANGis] = ACTIONS(2927), - [anon_sym_in] = ACTIONS(2927), - [anon_sym_BANGin] = ACTIONS(2927), - [anon_sym_match] = ACTIONS(2927), - [anon_sym_select] = ACTIONS(2927), - [anon_sym_STAR_EQ] = ACTIONS(2927), - [anon_sym_SLASH_EQ] = ACTIONS(2927), - [anon_sym_PERCENT_EQ] = ACTIONS(2927), - [anon_sym_LT_LT_EQ] = ACTIONS(2927), - [anon_sym_GT_GT_EQ] = ACTIONS(2927), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2927), - [anon_sym_AMP_EQ] = ACTIONS(2927), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2927), - [anon_sym_PLUS_EQ] = ACTIONS(2927), - [anon_sym_DASH_EQ] = ACTIONS(2927), - [anon_sym_PIPE_EQ] = ACTIONS(2927), - [anon_sym_CARET_EQ] = ACTIONS(2927), - [anon_sym_COLON_EQ] = ACTIONS(2927), - [anon_sym_lock] = ACTIONS(2927), - [anon_sym_rlock] = ACTIONS(2927), - [anon_sym_unsafe] = ACTIONS(2927), - [anon_sym_sql] = ACTIONS(2927), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2927), - [sym_rune_literal] = ACTIONS(2927), - [anon_sym_AT] = ACTIONS(2927), - [anon_sym_shared] = ACTIONS(2927), - [anon_sym_map_LBRACK] = ACTIONS(2927), - [anon_sym_chan] = ACTIONS(2927), - [anon_sym_thread] = ACTIONS(2927), - [anon_sym_atomic] = ACTIONS(2927), - [anon_sym_assert] = ACTIONS(2927), - [anon_sym_defer] = ACTIONS(2927), - [anon_sym_goto] = ACTIONS(2927), - [anon_sym_break] = ACTIONS(2927), - [anon_sym_continue] = ACTIONS(2927), - [anon_sym_return] = ACTIONS(2927), - [anon_sym_DOLLARfor] = ACTIONS(2927), - [anon_sym_for] = ACTIONS(2927), - [anon_sym_POUND] = ACTIONS(2927), - [anon_sym_asm] = ACTIONS(2927), - [anon_sym_AT_LBRACK] = ACTIONS(2927), - [sym___double_quote] = ACTIONS(2927), - [sym___single_quote] = ACTIONS(2927), - [sym___c_double_quote] = ACTIONS(2927), - [sym___c_single_quote] = ACTIONS(2927), - [sym___r_double_quote] = ACTIONS(2927), - [sym___r_single_quote] = ACTIONS(2927), + [ts_builtin_sym_end] = ACTIONS(2920), + [sym_identifier] = ACTIONS(2922), + [anon_sym_LF] = ACTIONS(2922), + [anon_sym_CR] = ACTIONS(2922), + [anon_sym_CR_LF] = ACTIONS(2922), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2922), + [anon_sym_as] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2922), + [anon_sym_COMMA] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(2922), + [anon_sym_LPAREN] = ACTIONS(2922), + [anon_sym_EQ] = ACTIONS(2922), + [anon_sym___global] = ACTIONS(2922), + [anon_sym_type] = ACTIONS(2922), + [anon_sym_PIPE] = ACTIONS(2922), + [anon_sym_fn] = ACTIONS(2922), + [anon_sym_PLUS] = ACTIONS(2922), + [anon_sym_DASH] = ACTIONS(2922), + [anon_sym_STAR] = ACTIONS(2922), + [anon_sym_SLASH] = ACTIONS(2922), + [anon_sym_PERCENT] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_GT] = ACTIONS(2922), + [anon_sym_EQ_EQ] = ACTIONS(2922), + [anon_sym_BANG_EQ] = ACTIONS(2922), + [anon_sym_LT_EQ] = ACTIONS(2922), + [anon_sym_GT_EQ] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2920), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_pub] = ACTIONS(2922), + [anon_sym_mut] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_interface] = ACTIONS(2922), + [anon_sym_PLUS_PLUS] = ACTIONS(2922), + [anon_sym_DASH_DASH] = ACTIONS(2922), + [anon_sym_QMARK] = ACTIONS(2922), + [anon_sym_BANG] = ACTIONS(2922), + [anon_sym_go] = ACTIONS(2922), + [anon_sym_spawn] = ACTIONS(2922), + [anon_sym_json_DOTdecode] = ACTIONS(2922), + [anon_sym_LBRACK2] = ACTIONS(2922), + [anon_sym_TILDE] = ACTIONS(2922), + [anon_sym_CARET] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2922), + [anon_sym_LT_DASH] = ACTIONS(2922), + [anon_sym_LT_LT] = ACTIONS(2922), + [anon_sym_GT_GT] = ACTIONS(2922), + [anon_sym_GT_GT_GT] = ACTIONS(2922), + [anon_sym_AMP_CARET] = ACTIONS(2922), + [anon_sym_AMP_AMP] = ACTIONS(2922), + [anon_sym_PIPE_PIPE] = ACTIONS(2922), + [anon_sym_or] = ACTIONS(2922), + [sym_none] = ACTIONS(2922), + [sym_true] = ACTIONS(2922), + [sym_false] = ACTIONS(2922), + [sym_nil] = ACTIONS(2922), + [anon_sym_QMARK_DOT] = ACTIONS(2922), + [anon_sym_POUND_LBRACK] = ACTIONS(2922), + [anon_sym_if] = ACTIONS(2922), + [anon_sym_DOLLARif] = ACTIONS(2922), + [anon_sym_is] = ACTIONS(2922), + [anon_sym_BANGis] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(2922), + [anon_sym_BANGin] = ACTIONS(2922), + [anon_sym_match] = ACTIONS(2922), + [anon_sym_select] = ACTIONS(2922), + [anon_sym_STAR_EQ] = ACTIONS(2922), + [anon_sym_SLASH_EQ] = ACTIONS(2922), + [anon_sym_PERCENT_EQ] = ACTIONS(2922), + [anon_sym_LT_LT_EQ] = ACTIONS(2922), + [anon_sym_GT_GT_EQ] = ACTIONS(2922), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2922), + [anon_sym_AMP_EQ] = ACTIONS(2922), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2922), + [anon_sym_PLUS_EQ] = ACTIONS(2922), + [anon_sym_DASH_EQ] = ACTIONS(2922), + [anon_sym_PIPE_EQ] = ACTIONS(2922), + [anon_sym_CARET_EQ] = ACTIONS(2922), + [anon_sym_COLON_EQ] = ACTIONS(2922), + [anon_sym_lock] = ACTIONS(2922), + [anon_sym_rlock] = ACTIONS(2922), + [anon_sym_unsafe] = ACTIONS(2922), + [anon_sym_sql] = ACTIONS(2922), + [sym_int_literal] = ACTIONS(2922), + [sym_float_literal] = ACTIONS(2922), + [sym_rune_literal] = ACTIONS(2922), + [anon_sym_AT] = ACTIONS(2922), + [anon_sym_shared] = ACTIONS(2922), + [anon_sym_map_LBRACK] = ACTIONS(2922), + [anon_sym_chan] = ACTIONS(2922), + [anon_sym_thread] = ACTIONS(2922), + [anon_sym_atomic] = ACTIONS(2922), + [anon_sym_assert] = ACTIONS(2922), + [anon_sym_defer] = ACTIONS(2922), + [anon_sym_goto] = ACTIONS(2922), + [anon_sym_break] = ACTIONS(2922), + [anon_sym_continue] = ACTIONS(2922), + [anon_sym_return] = ACTIONS(2922), + [anon_sym_DOLLARfor] = ACTIONS(2922), + [anon_sym_for] = ACTIONS(2922), + [anon_sym_POUND] = ACTIONS(2922), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym_AT_LBRACK] = ACTIONS(2922), + [sym___double_quote] = ACTIONS(2922), + [sym___single_quote] = ACTIONS(2922), + [sym___c_double_quote] = ACTIONS(2922), + [sym___c_single_quote] = ACTIONS(2922), + [sym___r_double_quote] = ACTIONS(2922), + [sym___r_single_quote] = ACTIONS(2922), }, [885] = { - [ts_builtin_sym_end] = ACTIONS(2929), - [sym_identifier] = ACTIONS(2931), - [anon_sym_LF] = ACTIONS(2931), - [anon_sym_CR] = ACTIONS(2931), - [anon_sym_CR_LF] = ACTIONS(2931), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2931), - [anon_sym_as] = ACTIONS(2931), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_COMMA] = ACTIONS(2931), - [anon_sym_const] = ACTIONS(2931), - [anon_sym_LPAREN] = ACTIONS(2931), - [anon_sym_EQ] = ACTIONS(2931), - [anon_sym___global] = ACTIONS(2931), - [anon_sym_type] = ACTIONS(2931), - [anon_sym_PIPE] = ACTIONS(2931), - [anon_sym_fn] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2931), - [anon_sym_STAR] = ACTIONS(2931), - [anon_sym_SLASH] = ACTIONS(2931), - [anon_sym_PERCENT] = ACTIONS(2931), - [anon_sym_LT] = ACTIONS(2931), - [anon_sym_GT] = ACTIONS(2931), - [anon_sym_EQ_EQ] = ACTIONS(2931), - [anon_sym_BANG_EQ] = ACTIONS(2931), - [anon_sym_LT_EQ] = ACTIONS(2931), - [anon_sym_GT_EQ] = ACTIONS(2931), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_union] = ACTIONS(2931), - [anon_sym_pub] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(2931), - [anon_sym_enum] = ACTIONS(2931), - [anon_sym_interface] = ACTIONS(2931), - [anon_sym_PLUS_PLUS] = ACTIONS(2931), - [anon_sym_DASH_DASH] = ACTIONS(2931), - [anon_sym_QMARK] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2931), - [anon_sym_go] = ACTIONS(2931), - [anon_sym_spawn] = ACTIONS(2931), - [anon_sym_json_DOTdecode] = ACTIONS(2931), - [anon_sym_LBRACK2] = ACTIONS(2931), - [anon_sym_TILDE] = ACTIONS(2931), - [anon_sym_CARET] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(2931), - [anon_sym_LT_DASH] = ACTIONS(2931), - [anon_sym_LT_LT] = ACTIONS(2931), - [anon_sym_GT_GT] = ACTIONS(2931), - [anon_sym_GT_GT_GT] = ACTIONS(2931), - [anon_sym_AMP_CARET] = ACTIONS(2931), - [anon_sym_AMP_AMP] = ACTIONS(2931), - [anon_sym_PIPE_PIPE] = ACTIONS(2931), - [anon_sym_or] = ACTIONS(2931), - [sym_none] = ACTIONS(2931), - [sym_true] = ACTIONS(2931), - [sym_false] = ACTIONS(2931), - [sym_nil] = ACTIONS(2931), - [anon_sym_QMARK_DOT] = ACTIONS(2931), - [anon_sym_POUND_LBRACK] = ACTIONS(2931), - [anon_sym_if] = ACTIONS(2931), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_BANGis] = ACTIONS(2931), - [anon_sym_in] = ACTIONS(2931), - [anon_sym_BANGin] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2931), - [anon_sym_select] = ACTIONS(2931), - [anon_sym_STAR_EQ] = ACTIONS(2931), - [anon_sym_SLASH_EQ] = ACTIONS(2931), - [anon_sym_PERCENT_EQ] = ACTIONS(2931), - [anon_sym_LT_LT_EQ] = ACTIONS(2931), - [anon_sym_GT_GT_EQ] = ACTIONS(2931), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2931), - [anon_sym_AMP_EQ] = ACTIONS(2931), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2931), - [anon_sym_PLUS_EQ] = ACTIONS(2931), - [anon_sym_DASH_EQ] = ACTIONS(2931), - [anon_sym_PIPE_EQ] = ACTIONS(2931), - [anon_sym_CARET_EQ] = ACTIONS(2931), - [anon_sym_COLON_EQ] = ACTIONS(2931), - [anon_sym_lock] = ACTIONS(2931), - [anon_sym_rlock] = ACTIONS(2931), - [anon_sym_unsafe] = ACTIONS(2931), - [anon_sym_sql] = ACTIONS(2931), - [sym_int_literal] = ACTIONS(2931), - [sym_float_literal] = ACTIONS(2931), - [sym_rune_literal] = ACTIONS(2931), - [anon_sym_AT] = ACTIONS(2931), - [anon_sym_shared] = ACTIONS(2931), - [anon_sym_map_LBRACK] = ACTIONS(2931), - [anon_sym_chan] = ACTIONS(2931), - [anon_sym_thread] = ACTIONS(2931), - [anon_sym_atomic] = ACTIONS(2931), - [anon_sym_assert] = ACTIONS(2931), - [anon_sym_defer] = ACTIONS(2931), - [anon_sym_goto] = ACTIONS(2931), - [anon_sym_break] = ACTIONS(2931), - [anon_sym_continue] = ACTIONS(2931), - [anon_sym_return] = ACTIONS(2931), - [anon_sym_DOLLARfor] = ACTIONS(2931), - [anon_sym_for] = ACTIONS(2931), - [anon_sym_POUND] = ACTIONS(2931), - [anon_sym_asm] = ACTIONS(2931), - [anon_sym_AT_LBRACK] = ACTIONS(2931), - [sym___double_quote] = ACTIONS(2931), - [sym___single_quote] = ACTIONS(2931), - [sym___c_double_quote] = ACTIONS(2931), - [sym___c_single_quote] = ACTIONS(2931), - [sym___r_double_quote] = ACTIONS(2931), - [sym___r_single_quote] = ACTIONS(2931), + [ts_builtin_sym_end] = ACTIONS(2924), + [sym_identifier] = ACTIONS(2926), + [anon_sym_LF] = ACTIONS(2926), + [anon_sym_CR] = ACTIONS(2926), + [anon_sym_CR_LF] = ACTIONS(2926), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2926), + [anon_sym_as] = ACTIONS(2926), + [anon_sym_LBRACE] = ACTIONS(2926), + [anon_sym_COMMA] = ACTIONS(2926), + [anon_sym_const] = ACTIONS(2926), + [anon_sym_LPAREN] = ACTIONS(2926), + [anon_sym_EQ] = ACTIONS(2926), + [anon_sym___global] = ACTIONS(2926), + [anon_sym_type] = ACTIONS(2926), + [anon_sym_PIPE] = ACTIONS(2926), + [anon_sym_fn] = ACTIONS(2926), + [anon_sym_PLUS] = ACTIONS(2926), + [anon_sym_DASH] = ACTIONS(2926), + [anon_sym_STAR] = ACTIONS(2926), + [anon_sym_SLASH] = ACTIONS(2926), + [anon_sym_PERCENT] = ACTIONS(2926), + [anon_sym_LT] = ACTIONS(2926), + [anon_sym_GT] = ACTIONS(2926), + [anon_sym_EQ_EQ] = ACTIONS(2926), + [anon_sym_BANG_EQ] = ACTIONS(2926), + [anon_sym_LT_EQ] = ACTIONS(2926), + [anon_sym_GT_EQ] = ACTIONS(2926), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_struct] = ACTIONS(2926), + [anon_sym_union] = ACTIONS(2926), + [anon_sym_pub] = ACTIONS(2926), + [anon_sym_mut] = ACTIONS(2926), + [anon_sym_enum] = ACTIONS(2926), + [anon_sym_interface] = ACTIONS(2926), + [anon_sym_PLUS_PLUS] = ACTIONS(2926), + [anon_sym_DASH_DASH] = ACTIONS(2926), + [anon_sym_QMARK] = ACTIONS(2926), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_go] = ACTIONS(2926), + [anon_sym_spawn] = ACTIONS(2926), + [anon_sym_json_DOTdecode] = ACTIONS(2926), + [anon_sym_LBRACK2] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2926), + [anon_sym_CARET] = ACTIONS(2926), + [anon_sym_AMP] = ACTIONS(2926), + [anon_sym_LT_DASH] = ACTIONS(2926), + [anon_sym_LT_LT] = ACTIONS(2926), + [anon_sym_GT_GT] = ACTIONS(2926), + [anon_sym_GT_GT_GT] = ACTIONS(2926), + [anon_sym_AMP_CARET] = ACTIONS(2926), + [anon_sym_AMP_AMP] = ACTIONS(2926), + [anon_sym_PIPE_PIPE] = ACTIONS(2926), + [anon_sym_or] = ACTIONS(2926), + [sym_none] = ACTIONS(2926), + [sym_true] = ACTIONS(2926), + [sym_false] = ACTIONS(2926), + [sym_nil] = ACTIONS(2926), + [anon_sym_QMARK_DOT] = ACTIONS(2926), + [anon_sym_POUND_LBRACK] = ACTIONS(2926), + [anon_sym_if] = ACTIONS(2926), + [anon_sym_DOLLARif] = ACTIONS(2926), + [anon_sym_is] = ACTIONS(2926), + [anon_sym_BANGis] = ACTIONS(2926), + [anon_sym_in] = ACTIONS(2926), + [anon_sym_BANGin] = ACTIONS(2926), + [anon_sym_match] = ACTIONS(2926), + [anon_sym_select] = ACTIONS(2926), + [anon_sym_STAR_EQ] = ACTIONS(2926), + [anon_sym_SLASH_EQ] = ACTIONS(2926), + [anon_sym_PERCENT_EQ] = ACTIONS(2926), + [anon_sym_LT_LT_EQ] = ACTIONS(2926), + [anon_sym_GT_GT_EQ] = ACTIONS(2926), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2926), + [anon_sym_AMP_EQ] = ACTIONS(2926), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2926), + [anon_sym_PLUS_EQ] = ACTIONS(2926), + [anon_sym_DASH_EQ] = ACTIONS(2926), + [anon_sym_PIPE_EQ] = ACTIONS(2926), + [anon_sym_CARET_EQ] = ACTIONS(2926), + [anon_sym_COLON_EQ] = ACTIONS(2926), + [anon_sym_lock] = ACTIONS(2926), + [anon_sym_rlock] = ACTIONS(2926), + [anon_sym_unsafe] = ACTIONS(2926), + [anon_sym_sql] = ACTIONS(2926), + [sym_int_literal] = ACTIONS(2926), + [sym_float_literal] = ACTIONS(2926), + [sym_rune_literal] = ACTIONS(2926), + [anon_sym_AT] = ACTIONS(2926), + [anon_sym_shared] = ACTIONS(2926), + [anon_sym_map_LBRACK] = ACTIONS(2926), + [anon_sym_chan] = ACTIONS(2926), + [anon_sym_thread] = ACTIONS(2926), + [anon_sym_atomic] = ACTIONS(2926), + [anon_sym_assert] = ACTIONS(2926), + [anon_sym_defer] = ACTIONS(2926), + [anon_sym_goto] = ACTIONS(2926), + [anon_sym_break] = ACTIONS(2926), + [anon_sym_continue] = ACTIONS(2926), + [anon_sym_return] = ACTIONS(2926), + [anon_sym_DOLLARfor] = ACTIONS(2926), + [anon_sym_for] = ACTIONS(2926), + [anon_sym_POUND] = ACTIONS(2926), + [anon_sym_asm] = ACTIONS(2926), + [anon_sym_AT_LBRACK] = ACTIONS(2926), + [sym___double_quote] = ACTIONS(2926), + [sym___single_quote] = ACTIONS(2926), + [sym___c_double_quote] = ACTIONS(2926), + [sym___c_single_quote] = ACTIONS(2926), + [sym___r_double_quote] = ACTIONS(2926), + [sym___r_single_quote] = ACTIONS(2926), }, [886] = { - [ts_builtin_sym_end] = ACTIONS(2933), - [sym_identifier] = ACTIONS(2935), - [anon_sym_LF] = ACTIONS(2935), - [anon_sym_CR] = ACTIONS(2935), - [anon_sym_CR_LF] = ACTIONS(2935), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2935), - [anon_sym_as] = ACTIONS(2935), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_COMMA] = ACTIONS(2935), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_EQ] = ACTIONS(2935), - [anon_sym___global] = ACTIONS(2935), - [anon_sym_type] = ACTIONS(2935), - [anon_sym_PIPE] = ACTIONS(2935), - [anon_sym_fn] = ACTIONS(2935), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2935), - [anon_sym_GT] = ACTIONS(2935), - [anon_sym_EQ_EQ] = ACTIONS(2935), - [anon_sym_BANG_EQ] = ACTIONS(2935), - [anon_sym_LT_EQ] = ACTIONS(2935), - [anon_sym_GT_EQ] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_struct] = ACTIONS(2935), - [anon_sym_union] = ACTIONS(2935), - [anon_sym_pub] = ACTIONS(2935), - [anon_sym_mut] = ACTIONS(2935), - [anon_sym_enum] = ACTIONS(2935), - [anon_sym_interface] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2935), - [anon_sym_DASH_DASH] = ACTIONS(2935), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2935), - [anon_sym_json_DOTdecode] = ACTIONS(2935), - [anon_sym_LBRACK2] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_CARET] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LT_DASH] = ACTIONS(2935), - [anon_sym_LT_LT] = ACTIONS(2935), - [anon_sym_GT_GT] = ACTIONS(2935), - [anon_sym_GT_GT_GT] = ACTIONS(2935), - [anon_sym_AMP_CARET] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_PIPE_PIPE] = ACTIONS(2935), - [anon_sym_or] = ACTIONS(2935), - [sym_none] = ACTIONS(2935), - [sym_true] = ACTIONS(2935), - [sym_false] = ACTIONS(2935), - [sym_nil] = ACTIONS(2935), - [anon_sym_QMARK_DOT] = ACTIONS(2935), - [anon_sym_POUND_LBRACK] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_DOLLARif] = ACTIONS(2935), - [anon_sym_is] = ACTIONS(2935), - [anon_sym_BANGis] = ACTIONS(2935), - [anon_sym_in] = ACTIONS(2935), - [anon_sym_BANGin] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_STAR_EQ] = ACTIONS(2935), - [anon_sym_SLASH_EQ] = ACTIONS(2935), - [anon_sym_PERCENT_EQ] = ACTIONS(2935), - [anon_sym_LT_LT_EQ] = ACTIONS(2935), - [anon_sym_GT_GT_EQ] = ACTIONS(2935), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2935), - [anon_sym_AMP_EQ] = ACTIONS(2935), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2935), - [anon_sym_PLUS_EQ] = ACTIONS(2935), - [anon_sym_DASH_EQ] = ACTIONS(2935), - [anon_sym_PIPE_EQ] = ACTIONS(2935), - [anon_sym_CARET_EQ] = ACTIONS(2935), - [anon_sym_COLON_EQ] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2935), - [anon_sym_rlock] = ACTIONS(2935), - [anon_sym_unsafe] = ACTIONS(2935), - [anon_sym_sql] = ACTIONS(2935), - [sym_int_literal] = ACTIONS(2935), - [sym_float_literal] = ACTIONS(2935), - [sym_rune_literal] = ACTIONS(2935), - [anon_sym_AT] = ACTIONS(2935), - [anon_sym_shared] = ACTIONS(2935), - [anon_sym_map_LBRACK] = ACTIONS(2935), - [anon_sym_chan] = ACTIONS(2935), - [anon_sym_thread] = ACTIONS(2935), - [anon_sym_atomic] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_defer] = ACTIONS(2935), - [anon_sym_goto] = ACTIONS(2935), - [anon_sym_break] = ACTIONS(2935), - [anon_sym_continue] = ACTIONS(2935), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_DOLLARfor] = ACTIONS(2935), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_POUND] = ACTIONS(2935), - [anon_sym_asm] = ACTIONS(2935), - [anon_sym_AT_LBRACK] = ACTIONS(2935), - [sym___double_quote] = ACTIONS(2935), - [sym___single_quote] = ACTIONS(2935), - [sym___c_double_quote] = ACTIONS(2935), - [sym___c_single_quote] = ACTIONS(2935), - [sym___r_double_quote] = ACTIONS(2935), - [sym___r_single_quote] = ACTIONS(2935), + [ts_builtin_sym_end] = ACTIONS(2928), + [sym_identifier] = ACTIONS(2930), + [anon_sym_LF] = ACTIONS(2930), + [anon_sym_CR] = ACTIONS(2930), + [anon_sym_CR_LF] = ACTIONS(2930), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2930), + [anon_sym_as] = ACTIONS(2930), + [anon_sym_LBRACE] = ACTIONS(2930), + [anon_sym_COMMA] = ACTIONS(2930), + [anon_sym_const] = ACTIONS(2930), + [anon_sym_LPAREN] = ACTIONS(2930), + [anon_sym_EQ] = ACTIONS(2930), + [anon_sym___global] = ACTIONS(2930), + [anon_sym_type] = ACTIONS(2930), + [anon_sym_PIPE] = ACTIONS(2930), + [anon_sym_fn] = ACTIONS(2930), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_STAR] = ACTIONS(2930), + [anon_sym_SLASH] = ACTIONS(2930), + [anon_sym_PERCENT] = ACTIONS(2930), + [anon_sym_LT] = ACTIONS(2930), + [anon_sym_GT] = ACTIONS(2930), + [anon_sym_EQ_EQ] = ACTIONS(2930), + [anon_sym_BANG_EQ] = ACTIONS(2930), + [anon_sym_LT_EQ] = ACTIONS(2930), + [anon_sym_GT_EQ] = ACTIONS(2930), + [anon_sym_LBRACK] = ACTIONS(2928), + [anon_sym_struct] = ACTIONS(2930), + [anon_sym_union] = ACTIONS(2930), + [anon_sym_pub] = ACTIONS(2930), + [anon_sym_mut] = ACTIONS(2930), + [anon_sym_enum] = ACTIONS(2930), + [anon_sym_interface] = ACTIONS(2930), + [anon_sym_PLUS_PLUS] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2930), + [anon_sym_QMARK] = ACTIONS(2930), + [anon_sym_BANG] = ACTIONS(2930), + [anon_sym_go] = ACTIONS(2930), + [anon_sym_spawn] = ACTIONS(2930), + [anon_sym_json_DOTdecode] = ACTIONS(2930), + [anon_sym_LBRACK2] = ACTIONS(2930), + [anon_sym_TILDE] = ACTIONS(2930), + [anon_sym_CARET] = ACTIONS(2930), + [anon_sym_AMP] = ACTIONS(2930), + [anon_sym_LT_DASH] = ACTIONS(2930), + [anon_sym_LT_LT] = ACTIONS(2930), + [anon_sym_GT_GT] = ACTIONS(2930), + [anon_sym_GT_GT_GT] = ACTIONS(2930), + [anon_sym_AMP_CARET] = ACTIONS(2930), + [anon_sym_AMP_AMP] = ACTIONS(2930), + [anon_sym_PIPE_PIPE] = ACTIONS(2930), + [anon_sym_or] = ACTIONS(2930), + [sym_none] = ACTIONS(2930), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [sym_nil] = ACTIONS(2930), + [anon_sym_QMARK_DOT] = ACTIONS(2930), + [anon_sym_POUND_LBRACK] = ACTIONS(2930), + [anon_sym_if] = ACTIONS(2930), + [anon_sym_DOLLARif] = ACTIONS(2930), + [anon_sym_is] = ACTIONS(2930), + [anon_sym_BANGis] = ACTIONS(2930), + [anon_sym_in] = ACTIONS(2930), + [anon_sym_BANGin] = ACTIONS(2930), + [anon_sym_match] = ACTIONS(2930), + [anon_sym_select] = ACTIONS(2930), + [anon_sym_STAR_EQ] = ACTIONS(2930), + [anon_sym_SLASH_EQ] = ACTIONS(2930), + [anon_sym_PERCENT_EQ] = ACTIONS(2930), + [anon_sym_LT_LT_EQ] = ACTIONS(2930), + [anon_sym_GT_GT_EQ] = ACTIONS(2930), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2930), + [anon_sym_AMP_EQ] = ACTIONS(2930), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2930), + [anon_sym_PLUS_EQ] = ACTIONS(2930), + [anon_sym_DASH_EQ] = ACTIONS(2930), + [anon_sym_PIPE_EQ] = ACTIONS(2930), + [anon_sym_CARET_EQ] = ACTIONS(2930), + [anon_sym_COLON_EQ] = ACTIONS(2930), + [anon_sym_lock] = ACTIONS(2930), + [anon_sym_rlock] = ACTIONS(2930), + [anon_sym_unsafe] = ACTIONS(2930), + [anon_sym_sql] = ACTIONS(2930), + [sym_int_literal] = ACTIONS(2930), + [sym_float_literal] = ACTIONS(2930), + [sym_rune_literal] = ACTIONS(2930), + [anon_sym_AT] = ACTIONS(2930), + [anon_sym_shared] = ACTIONS(2930), + [anon_sym_map_LBRACK] = ACTIONS(2930), + [anon_sym_chan] = ACTIONS(2930), + [anon_sym_thread] = ACTIONS(2930), + [anon_sym_atomic] = ACTIONS(2930), + [anon_sym_assert] = ACTIONS(2930), + [anon_sym_defer] = ACTIONS(2930), + [anon_sym_goto] = ACTIONS(2930), + [anon_sym_break] = ACTIONS(2930), + [anon_sym_continue] = ACTIONS(2930), + [anon_sym_return] = ACTIONS(2930), + [anon_sym_DOLLARfor] = ACTIONS(2930), + [anon_sym_for] = ACTIONS(2930), + [anon_sym_POUND] = ACTIONS(2930), + [anon_sym_asm] = ACTIONS(2930), + [anon_sym_AT_LBRACK] = ACTIONS(2930), + [sym___double_quote] = ACTIONS(2930), + [sym___single_quote] = ACTIONS(2930), + [sym___c_double_quote] = ACTIONS(2930), + [sym___c_single_quote] = ACTIONS(2930), + [sym___r_double_quote] = ACTIONS(2930), + [sym___r_single_quote] = ACTIONS(2930), }, [887] = { - [ts_builtin_sym_end] = ACTIONS(2937), - [sym_identifier] = ACTIONS(2939), - [anon_sym_LF] = ACTIONS(2939), - [anon_sym_CR] = ACTIONS(2939), - [anon_sym_CR_LF] = ACTIONS(2939), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2939), - [anon_sym_as] = ACTIONS(2939), - [anon_sym_LBRACE] = ACTIONS(2939), - [anon_sym_COMMA] = ACTIONS(2939), - [anon_sym_const] = ACTIONS(2939), - [anon_sym_LPAREN] = ACTIONS(2939), - [anon_sym_EQ] = ACTIONS(2939), - [anon_sym___global] = ACTIONS(2939), - [anon_sym_type] = ACTIONS(2939), - [anon_sym_PIPE] = ACTIONS(2939), - [anon_sym_fn] = ACTIONS(2939), - [anon_sym_PLUS] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2939), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_SLASH] = ACTIONS(2939), - [anon_sym_PERCENT] = ACTIONS(2939), - [anon_sym_LT] = ACTIONS(2939), - [anon_sym_GT] = ACTIONS(2939), - [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(2937), - [anon_sym_struct] = ACTIONS(2939), - [anon_sym_union] = ACTIONS(2939), - [anon_sym_pub] = ACTIONS(2939), - [anon_sym_mut] = ACTIONS(2939), - [anon_sym_enum] = ACTIONS(2939), - [anon_sym_interface] = ACTIONS(2939), - [anon_sym_PLUS_PLUS] = ACTIONS(2939), - [anon_sym_DASH_DASH] = ACTIONS(2939), - [anon_sym_QMARK] = ACTIONS(2939), - [anon_sym_BANG] = ACTIONS(2939), - [anon_sym_go] = ACTIONS(2939), - [anon_sym_spawn] = ACTIONS(2939), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2939), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_CARET] = ACTIONS(2939), - [anon_sym_AMP] = ACTIONS(2939), - [anon_sym_LT_DASH] = ACTIONS(2939), - [anon_sym_LT_LT] = ACTIONS(2939), - [anon_sym_GT_GT] = ACTIONS(2939), - [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(2939), - [sym_none] = ACTIONS(2939), - [sym_true] = ACTIONS(2939), - [sym_false] = ACTIONS(2939), - [sym_nil] = ACTIONS(2939), - [anon_sym_QMARK_DOT] = ACTIONS(2939), - [anon_sym_POUND_LBRACK] = ACTIONS(2939), - [anon_sym_if] = ACTIONS(2939), - [anon_sym_DOLLARif] = ACTIONS(2939), - [anon_sym_is] = ACTIONS(2939), - [anon_sym_BANGis] = ACTIONS(2939), - [anon_sym_in] = ACTIONS(2939), - [anon_sym_BANGin] = ACTIONS(2939), - [anon_sym_match] = ACTIONS(2939), - [anon_sym_select] = ACTIONS(2939), - [anon_sym_STAR_EQ] = ACTIONS(2939), - [anon_sym_SLASH_EQ] = ACTIONS(2939), - [anon_sym_PERCENT_EQ] = ACTIONS(2939), - [anon_sym_LT_LT_EQ] = ACTIONS(2939), - [anon_sym_GT_GT_EQ] = ACTIONS(2939), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2939), - [anon_sym_AMP_EQ] = ACTIONS(2939), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2939), - [anon_sym_PLUS_EQ] = ACTIONS(2939), - [anon_sym_DASH_EQ] = ACTIONS(2939), - [anon_sym_PIPE_EQ] = ACTIONS(2939), - [anon_sym_CARET_EQ] = ACTIONS(2939), - [anon_sym_COLON_EQ] = ACTIONS(2939), - [anon_sym_lock] = ACTIONS(2939), - [anon_sym_rlock] = ACTIONS(2939), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2939), - [sym_int_literal] = ACTIONS(2939), - [sym_float_literal] = ACTIONS(2939), - [sym_rune_literal] = ACTIONS(2939), - [anon_sym_AT] = ACTIONS(2939), - [anon_sym_shared] = ACTIONS(2939), - [anon_sym_map_LBRACK] = ACTIONS(2939), - [anon_sym_chan] = ACTIONS(2939), - [anon_sym_thread] = ACTIONS(2939), - [anon_sym_atomic] = ACTIONS(2939), - [anon_sym_assert] = ACTIONS(2939), - [anon_sym_defer] = ACTIONS(2939), - [anon_sym_goto] = ACTIONS(2939), - [anon_sym_break] = ACTIONS(2939), - [anon_sym_continue] = ACTIONS(2939), - [anon_sym_return] = ACTIONS(2939), - [anon_sym_DOLLARfor] = ACTIONS(2939), - [anon_sym_for] = ACTIONS(2939), - [anon_sym_POUND] = ACTIONS(2939), - [anon_sym_asm] = ACTIONS(2939), - [anon_sym_AT_LBRACK] = ACTIONS(2939), - [sym___double_quote] = ACTIONS(2939), - [sym___single_quote] = ACTIONS(2939), - [sym___c_double_quote] = ACTIONS(2939), - [sym___c_single_quote] = ACTIONS(2939), - [sym___r_double_quote] = ACTIONS(2939), - [sym___r_single_quote] = ACTIONS(2939), + [ts_builtin_sym_end] = ACTIONS(2932), + [sym_identifier] = ACTIONS(2934), + [anon_sym_LF] = ACTIONS(2934), + [anon_sym_CR] = ACTIONS(2934), + [anon_sym_CR_LF] = ACTIONS(2934), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2934), + [anon_sym_as] = ACTIONS(2934), + [anon_sym_LBRACE] = ACTIONS(2934), + [anon_sym_COMMA] = ACTIONS(2934), + [anon_sym_const] = ACTIONS(2934), + [anon_sym_LPAREN] = ACTIONS(2934), + [anon_sym_EQ] = ACTIONS(2934), + [anon_sym___global] = ACTIONS(2934), + [anon_sym_type] = ACTIONS(2934), + [anon_sym_PIPE] = ACTIONS(2934), + [anon_sym_fn] = ACTIONS(2934), + [anon_sym_PLUS] = ACTIONS(2934), + [anon_sym_DASH] = ACTIONS(2934), + [anon_sym_STAR] = ACTIONS(2934), + [anon_sym_SLASH] = ACTIONS(2934), + [anon_sym_PERCENT] = ACTIONS(2934), + [anon_sym_LT] = ACTIONS(2934), + [anon_sym_GT] = ACTIONS(2934), + [anon_sym_EQ_EQ] = ACTIONS(2934), + [anon_sym_BANG_EQ] = ACTIONS(2934), + [anon_sym_LT_EQ] = ACTIONS(2934), + [anon_sym_GT_EQ] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2932), + [anon_sym_struct] = ACTIONS(2934), + [anon_sym_union] = ACTIONS(2934), + [anon_sym_pub] = ACTIONS(2934), + [anon_sym_mut] = ACTIONS(2934), + [anon_sym_enum] = ACTIONS(2934), + [anon_sym_interface] = ACTIONS(2934), + [anon_sym_PLUS_PLUS] = ACTIONS(2934), + [anon_sym_DASH_DASH] = ACTIONS(2934), + [anon_sym_QMARK] = ACTIONS(2934), + [anon_sym_BANG] = ACTIONS(2934), + [anon_sym_go] = ACTIONS(2934), + [anon_sym_spawn] = ACTIONS(2934), + [anon_sym_json_DOTdecode] = ACTIONS(2934), + [anon_sym_LBRACK2] = ACTIONS(2934), + [anon_sym_TILDE] = ACTIONS(2934), + [anon_sym_CARET] = ACTIONS(2934), + [anon_sym_AMP] = ACTIONS(2934), + [anon_sym_LT_DASH] = ACTIONS(2934), + [anon_sym_LT_LT] = ACTIONS(2934), + [anon_sym_GT_GT] = ACTIONS(2934), + [anon_sym_GT_GT_GT] = ACTIONS(2934), + [anon_sym_AMP_CARET] = ACTIONS(2934), + [anon_sym_AMP_AMP] = ACTIONS(2934), + [anon_sym_PIPE_PIPE] = ACTIONS(2934), + [anon_sym_or] = ACTIONS(2934), + [sym_none] = ACTIONS(2934), + [sym_true] = ACTIONS(2934), + [sym_false] = ACTIONS(2934), + [sym_nil] = ACTIONS(2934), + [anon_sym_QMARK_DOT] = ACTIONS(2934), + [anon_sym_POUND_LBRACK] = ACTIONS(2934), + [anon_sym_if] = ACTIONS(2934), + [anon_sym_DOLLARif] = ACTIONS(2934), + [anon_sym_is] = ACTIONS(2934), + [anon_sym_BANGis] = ACTIONS(2934), + [anon_sym_in] = ACTIONS(2934), + [anon_sym_BANGin] = ACTIONS(2934), + [anon_sym_match] = ACTIONS(2934), + [anon_sym_select] = ACTIONS(2934), + [anon_sym_STAR_EQ] = ACTIONS(2934), + [anon_sym_SLASH_EQ] = ACTIONS(2934), + [anon_sym_PERCENT_EQ] = ACTIONS(2934), + [anon_sym_LT_LT_EQ] = ACTIONS(2934), + [anon_sym_GT_GT_EQ] = ACTIONS(2934), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2934), + [anon_sym_AMP_EQ] = ACTIONS(2934), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2934), + [anon_sym_PLUS_EQ] = ACTIONS(2934), + [anon_sym_DASH_EQ] = ACTIONS(2934), + [anon_sym_PIPE_EQ] = ACTIONS(2934), + [anon_sym_CARET_EQ] = ACTIONS(2934), + [anon_sym_COLON_EQ] = ACTIONS(2934), + [anon_sym_lock] = ACTIONS(2934), + [anon_sym_rlock] = ACTIONS(2934), + [anon_sym_unsafe] = ACTIONS(2934), + [anon_sym_sql] = ACTIONS(2934), + [sym_int_literal] = ACTIONS(2934), + [sym_float_literal] = ACTIONS(2934), + [sym_rune_literal] = ACTIONS(2934), + [anon_sym_AT] = ACTIONS(2934), + [anon_sym_shared] = ACTIONS(2934), + [anon_sym_map_LBRACK] = ACTIONS(2934), + [anon_sym_chan] = ACTIONS(2934), + [anon_sym_thread] = ACTIONS(2934), + [anon_sym_atomic] = ACTIONS(2934), + [anon_sym_assert] = ACTIONS(2934), + [anon_sym_defer] = ACTIONS(2934), + [anon_sym_goto] = ACTIONS(2934), + [anon_sym_break] = ACTIONS(2934), + [anon_sym_continue] = ACTIONS(2934), + [anon_sym_return] = ACTIONS(2934), + [anon_sym_DOLLARfor] = ACTIONS(2934), + [anon_sym_for] = ACTIONS(2934), + [anon_sym_POUND] = ACTIONS(2934), + [anon_sym_asm] = ACTIONS(2934), + [anon_sym_AT_LBRACK] = ACTIONS(2934), + [sym___double_quote] = ACTIONS(2934), + [sym___single_quote] = ACTIONS(2934), + [sym___c_double_quote] = ACTIONS(2934), + [sym___c_single_quote] = ACTIONS(2934), + [sym___r_double_quote] = ACTIONS(2934), + [sym___r_single_quote] = ACTIONS(2934), }, [888] = { - [ts_builtin_sym_end] = ACTIONS(2941), - [sym_identifier] = ACTIONS(2943), - [anon_sym_LF] = ACTIONS(2943), - [anon_sym_CR] = ACTIONS(2943), - [anon_sym_CR_LF] = ACTIONS(2943), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2943), - [anon_sym_as] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2943), - [anon_sym_COMMA] = ACTIONS(2943), - [anon_sym_const] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2943), - [anon_sym_EQ] = ACTIONS(2943), - [anon_sym___global] = ACTIONS(2943), - [anon_sym_type] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2943), - [anon_sym_fn] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_SLASH] = ACTIONS(2943), - [anon_sym_PERCENT] = ACTIONS(2943), - [anon_sym_LT] = ACTIONS(2943), - [anon_sym_GT] = ACTIONS(2943), - [anon_sym_EQ_EQ] = ACTIONS(2943), - [anon_sym_BANG_EQ] = ACTIONS(2943), - [anon_sym_LT_EQ] = ACTIONS(2943), - [anon_sym_GT_EQ] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_struct] = ACTIONS(2943), - [anon_sym_union] = ACTIONS(2943), - [anon_sym_pub] = ACTIONS(2943), - [anon_sym_mut] = ACTIONS(2943), - [anon_sym_enum] = ACTIONS(2943), - [anon_sym_interface] = ACTIONS(2943), - [anon_sym_PLUS_PLUS] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(2943), - [anon_sym_QMARK] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_go] = ACTIONS(2943), - [anon_sym_spawn] = ACTIONS(2943), - [anon_sym_json_DOTdecode] = ACTIONS(2943), - [anon_sym_LBRACK2] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_CARET] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_LT_DASH] = ACTIONS(2943), - [anon_sym_LT_LT] = ACTIONS(2943), - [anon_sym_GT_GT] = ACTIONS(2943), - [anon_sym_GT_GT_GT] = ACTIONS(2943), - [anon_sym_AMP_CARET] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2943), - [anon_sym_PIPE_PIPE] = ACTIONS(2943), - [anon_sym_or] = ACTIONS(2943), - [sym_none] = ACTIONS(2943), - [sym_true] = ACTIONS(2943), - [sym_false] = ACTIONS(2943), - [sym_nil] = ACTIONS(2943), - [anon_sym_QMARK_DOT] = ACTIONS(2943), - [anon_sym_POUND_LBRACK] = ACTIONS(2943), - [anon_sym_if] = ACTIONS(2943), - [anon_sym_DOLLARif] = ACTIONS(2943), - [anon_sym_is] = ACTIONS(2943), - [anon_sym_BANGis] = ACTIONS(2943), - [anon_sym_in] = ACTIONS(2943), - [anon_sym_BANGin] = ACTIONS(2943), - [anon_sym_match] = ACTIONS(2943), - [anon_sym_select] = ACTIONS(2943), - [anon_sym_STAR_EQ] = ACTIONS(2943), - [anon_sym_SLASH_EQ] = ACTIONS(2943), - [anon_sym_PERCENT_EQ] = ACTIONS(2943), - [anon_sym_LT_LT_EQ] = ACTIONS(2943), - [anon_sym_GT_GT_EQ] = ACTIONS(2943), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2943), - [anon_sym_AMP_EQ] = ACTIONS(2943), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2943), - [anon_sym_PLUS_EQ] = ACTIONS(2943), - [anon_sym_DASH_EQ] = ACTIONS(2943), - [anon_sym_PIPE_EQ] = ACTIONS(2943), - [anon_sym_CARET_EQ] = ACTIONS(2943), - [anon_sym_COLON_EQ] = ACTIONS(2943), - [anon_sym_lock] = ACTIONS(2943), - [anon_sym_rlock] = ACTIONS(2943), - [anon_sym_unsafe] = ACTIONS(2943), - [anon_sym_sql] = ACTIONS(2943), - [sym_int_literal] = ACTIONS(2943), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [anon_sym_AT] = ACTIONS(2943), - [anon_sym_shared] = ACTIONS(2943), - [anon_sym_map_LBRACK] = ACTIONS(2943), - [anon_sym_chan] = ACTIONS(2943), - [anon_sym_thread] = ACTIONS(2943), - [anon_sym_atomic] = ACTIONS(2943), - [anon_sym_assert] = ACTIONS(2943), - [anon_sym_defer] = ACTIONS(2943), - [anon_sym_goto] = ACTIONS(2943), - [anon_sym_break] = ACTIONS(2943), - [anon_sym_continue] = ACTIONS(2943), - [anon_sym_return] = ACTIONS(2943), - [anon_sym_DOLLARfor] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2943), - [anon_sym_POUND] = ACTIONS(2943), - [anon_sym_asm] = ACTIONS(2943), - [anon_sym_AT_LBRACK] = ACTIONS(2943), - [sym___double_quote] = ACTIONS(2943), - [sym___single_quote] = ACTIONS(2943), - [sym___c_double_quote] = ACTIONS(2943), - [sym___c_single_quote] = ACTIONS(2943), - [sym___r_double_quote] = ACTIONS(2943), - [sym___r_single_quote] = ACTIONS(2943), + [ts_builtin_sym_end] = ACTIONS(2936), + [sym_identifier] = ACTIONS(2938), + [anon_sym_LF] = ACTIONS(2938), + [anon_sym_CR] = ACTIONS(2938), + [anon_sym_CR_LF] = ACTIONS(2938), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2938), + [anon_sym_as] = ACTIONS(2938), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_COMMA] = ACTIONS(2938), + [anon_sym_const] = ACTIONS(2938), + [anon_sym_LPAREN] = ACTIONS(2938), + [anon_sym_EQ] = ACTIONS(2938), + [anon_sym___global] = ACTIONS(2938), + [anon_sym_type] = ACTIONS(2938), + [anon_sym_PIPE] = ACTIONS(2938), + [anon_sym_fn] = ACTIONS(2938), + [anon_sym_PLUS] = ACTIONS(2938), + [anon_sym_DASH] = ACTIONS(2938), + [anon_sym_STAR] = ACTIONS(2938), + [anon_sym_SLASH] = ACTIONS(2938), + [anon_sym_PERCENT] = ACTIONS(2938), + [anon_sym_LT] = ACTIONS(2938), + [anon_sym_GT] = ACTIONS(2938), + [anon_sym_EQ_EQ] = ACTIONS(2938), + [anon_sym_BANG_EQ] = ACTIONS(2938), + [anon_sym_LT_EQ] = ACTIONS(2938), + [anon_sym_GT_EQ] = ACTIONS(2938), + [anon_sym_LBRACK] = ACTIONS(2936), + [anon_sym_struct] = ACTIONS(2938), + [anon_sym_union] = ACTIONS(2938), + [anon_sym_pub] = ACTIONS(2938), + [anon_sym_mut] = ACTIONS(2938), + [anon_sym_enum] = ACTIONS(2938), + [anon_sym_interface] = ACTIONS(2938), + [anon_sym_PLUS_PLUS] = ACTIONS(2938), + [anon_sym_DASH_DASH] = ACTIONS(2938), + [anon_sym_QMARK] = ACTIONS(2938), + [anon_sym_BANG] = ACTIONS(2938), + [anon_sym_go] = ACTIONS(2938), + [anon_sym_spawn] = ACTIONS(2938), + [anon_sym_json_DOTdecode] = ACTIONS(2938), + [anon_sym_LBRACK2] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2938), + [anon_sym_CARET] = ACTIONS(2938), + [anon_sym_AMP] = ACTIONS(2938), + [anon_sym_LT_DASH] = ACTIONS(2938), + [anon_sym_LT_LT] = ACTIONS(2938), + [anon_sym_GT_GT] = ACTIONS(2938), + [anon_sym_GT_GT_GT] = ACTIONS(2938), + [anon_sym_AMP_CARET] = ACTIONS(2938), + [anon_sym_AMP_AMP] = ACTIONS(2938), + [anon_sym_PIPE_PIPE] = ACTIONS(2938), + [anon_sym_or] = ACTIONS(2938), + [sym_none] = ACTIONS(2938), + [sym_true] = ACTIONS(2938), + [sym_false] = ACTIONS(2938), + [sym_nil] = ACTIONS(2938), + [anon_sym_QMARK_DOT] = ACTIONS(2938), + [anon_sym_POUND_LBRACK] = ACTIONS(2938), + [anon_sym_if] = ACTIONS(2938), + [anon_sym_DOLLARif] = ACTIONS(2938), + [anon_sym_is] = ACTIONS(2938), + [anon_sym_BANGis] = ACTIONS(2938), + [anon_sym_in] = ACTIONS(2938), + [anon_sym_BANGin] = ACTIONS(2938), + [anon_sym_match] = ACTIONS(2938), + [anon_sym_select] = ACTIONS(2938), + [anon_sym_STAR_EQ] = ACTIONS(2938), + [anon_sym_SLASH_EQ] = ACTIONS(2938), + [anon_sym_PERCENT_EQ] = ACTIONS(2938), + [anon_sym_LT_LT_EQ] = ACTIONS(2938), + [anon_sym_GT_GT_EQ] = ACTIONS(2938), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2938), + [anon_sym_AMP_EQ] = ACTIONS(2938), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2938), + [anon_sym_PLUS_EQ] = ACTIONS(2938), + [anon_sym_DASH_EQ] = ACTIONS(2938), + [anon_sym_PIPE_EQ] = ACTIONS(2938), + [anon_sym_CARET_EQ] = ACTIONS(2938), + [anon_sym_COLON_EQ] = ACTIONS(2938), + [anon_sym_lock] = ACTIONS(2938), + [anon_sym_rlock] = ACTIONS(2938), + [anon_sym_unsafe] = ACTIONS(2938), + [anon_sym_sql] = ACTIONS(2938), + [sym_int_literal] = ACTIONS(2938), + [sym_float_literal] = ACTIONS(2938), + [sym_rune_literal] = ACTIONS(2938), + [anon_sym_AT] = ACTIONS(2938), + [anon_sym_shared] = ACTIONS(2938), + [anon_sym_map_LBRACK] = ACTIONS(2938), + [anon_sym_chan] = ACTIONS(2938), + [anon_sym_thread] = ACTIONS(2938), + [anon_sym_atomic] = ACTIONS(2938), + [anon_sym_assert] = ACTIONS(2938), + [anon_sym_defer] = ACTIONS(2938), + [anon_sym_goto] = ACTIONS(2938), + [anon_sym_break] = ACTIONS(2938), + [anon_sym_continue] = ACTIONS(2938), + [anon_sym_return] = ACTIONS(2938), + [anon_sym_DOLLARfor] = ACTIONS(2938), + [anon_sym_for] = ACTIONS(2938), + [anon_sym_POUND] = ACTIONS(2938), + [anon_sym_asm] = ACTIONS(2938), + [anon_sym_AT_LBRACK] = ACTIONS(2938), + [sym___double_quote] = ACTIONS(2938), + [sym___single_quote] = ACTIONS(2938), + [sym___c_double_quote] = ACTIONS(2938), + [sym___c_single_quote] = ACTIONS(2938), + [sym___r_double_quote] = ACTIONS(2938), + [sym___r_single_quote] = ACTIONS(2938), }, [889] = { - [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), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2951), - [anon_sym_as] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_COMMA] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_EQ] = ACTIONS(2951), - [anon_sym___global] = ACTIONS(2949), - [anon_sym_type] = ACTIONS(2949), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_fn] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_PERCENT] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_GT] = ACTIONS(2951), - [anon_sym_EQ_EQ] = ACTIONS(2951), - [anon_sym_BANG_EQ] = ACTIONS(2951), - [anon_sym_LT_EQ] = ACTIONS(2951), - [anon_sym_GT_EQ] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2954), - [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(2951), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_QMARK] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_go] = ACTIONS(2949), - [anon_sym_spawn] = ACTIONS(2949), - [anon_sym_json_DOTdecode] = ACTIONS(2949), - [anon_sym_LBRACK2] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2949), - [anon_sym_CARET] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_LT_DASH] = ACTIONS(2949), - [anon_sym_LT_LT] = ACTIONS(2951), - [anon_sym_GT_GT] = ACTIONS(2951), - [anon_sym_GT_GT_GT] = ACTIONS(2951), - [anon_sym_AMP_CARET] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2951), - [anon_sym_PIPE_PIPE] = ACTIONS(2951), - [anon_sym_or] = ACTIONS(2951), - [sym_none] = ACTIONS(2949), - [sym_true] = ACTIONS(2949), - [sym_false] = ACTIONS(2949), - [sym_nil] = ACTIONS(2949), - [anon_sym_QMARK_DOT] = ACTIONS(2951), - [anon_sym_POUND_LBRACK] = ACTIONS(2951), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2949), - [anon_sym_is] = ACTIONS(2951), - [anon_sym_BANGis] = ACTIONS(2951), - [anon_sym_in] = ACTIONS(2951), - [anon_sym_BANGin] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2949), - [anon_sym_select] = ACTIONS(2949), - [anon_sym_STAR_EQ] = ACTIONS(2951), - [anon_sym_SLASH_EQ] = ACTIONS(2951), - [anon_sym_PERCENT_EQ] = ACTIONS(2951), - [anon_sym_LT_LT_EQ] = ACTIONS(2951), - [anon_sym_GT_GT_EQ] = ACTIONS(2951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2951), - [anon_sym_AMP_EQ] = ACTIONS(2951), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2951), - [anon_sym_PLUS_EQ] = ACTIONS(2951), - [anon_sym_DASH_EQ] = ACTIONS(2951), - [anon_sym_PIPE_EQ] = ACTIONS(2951), - [anon_sym_CARET_EQ] = ACTIONS(2951), - [anon_sym_COLON_EQ] = ACTIONS(2951), - [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_AT] = ACTIONS(2949), - [anon_sym_shared] = ACTIONS(2949), - [anon_sym_map_LBRACK] = ACTIONS(2949), - [anon_sym_chan] = ACTIONS(2949), - [anon_sym_thread] = ACTIONS(2949), - [anon_sym_atomic] = ACTIONS(2949), - [anon_sym_assert] = ACTIONS(2949), - [anon_sym_defer] = ACTIONS(2949), - [anon_sym_goto] = ACTIONS(2949), - [anon_sym_break] = ACTIONS(2949), - [anon_sym_continue] = ACTIONS(2949), - [anon_sym_return] = ACTIONS(2949), - [anon_sym_DOLLARfor] = ACTIONS(2949), - [anon_sym_for] = ACTIONS(2949), - [anon_sym_POUND] = ACTIONS(2949), - [anon_sym_asm] = ACTIONS(2949), - [anon_sym_AT_LBRACK] = ACTIONS(2949), - [sym___double_quote] = ACTIONS(2949), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2949), - [sym___c_single_quote] = ACTIONS(2949), - [sym___r_double_quote] = ACTIONS(2949), - [sym___r_single_quote] = ACTIONS(2949), + [ts_builtin_sym_end] = ACTIONS(2940), + [sym_identifier] = ACTIONS(2942), + [anon_sym_LF] = ACTIONS(2942), + [anon_sym_CR] = ACTIONS(2942), + [anon_sym_CR_LF] = ACTIONS(2942), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2942), + [anon_sym_as] = ACTIONS(2942), + [anon_sym_LBRACE] = ACTIONS(2942), + [anon_sym_COMMA] = ACTIONS(2942), + [anon_sym_const] = ACTIONS(2942), + [anon_sym_LPAREN] = ACTIONS(2942), + [anon_sym_EQ] = ACTIONS(2942), + [anon_sym___global] = ACTIONS(2942), + [anon_sym_type] = ACTIONS(2942), + [anon_sym_PIPE] = ACTIONS(2942), + [anon_sym_fn] = ACTIONS(2942), + [anon_sym_PLUS] = ACTIONS(2942), + [anon_sym_DASH] = ACTIONS(2942), + [anon_sym_STAR] = ACTIONS(2942), + [anon_sym_SLASH] = ACTIONS(2942), + [anon_sym_PERCENT] = ACTIONS(2942), + [anon_sym_LT] = ACTIONS(2942), + [anon_sym_GT] = ACTIONS(2942), + [anon_sym_EQ_EQ] = ACTIONS(2942), + [anon_sym_BANG_EQ] = ACTIONS(2942), + [anon_sym_LT_EQ] = ACTIONS(2942), + [anon_sym_GT_EQ] = ACTIONS(2942), + [anon_sym_LBRACK] = ACTIONS(2940), + [anon_sym_struct] = ACTIONS(2942), + [anon_sym_union] = ACTIONS(2942), + [anon_sym_pub] = ACTIONS(2942), + [anon_sym_mut] = ACTIONS(2942), + [anon_sym_enum] = ACTIONS(2942), + [anon_sym_interface] = ACTIONS(2942), + [anon_sym_PLUS_PLUS] = ACTIONS(2942), + [anon_sym_DASH_DASH] = ACTIONS(2942), + [anon_sym_QMARK] = ACTIONS(2942), + [anon_sym_BANG] = ACTIONS(2942), + [anon_sym_go] = ACTIONS(2942), + [anon_sym_spawn] = ACTIONS(2942), + [anon_sym_json_DOTdecode] = ACTIONS(2942), + [anon_sym_LBRACK2] = ACTIONS(2942), + [anon_sym_TILDE] = ACTIONS(2942), + [anon_sym_CARET] = ACTIONS(2942), + [anon_sym_AMP] = ACTIONS(2942), + [anon_sym_LT_DASH] = ACTIONS(2942), + [anon_sym_LT_LT] = ACTIONS(2942), + [anon_sym_GT_GT] = ACTIONS(2942), + [anon_sym_GT_GT_GT] = ACTIONS(2942), + [anon_sym_AMP_CARET] = ACTIONS(2942), + [anon_sym_AMP_AMP] = ACTIONS(2942), + [anon_sym_PIPE_PIPE] = ACTIONS(2942), + [anon_sym_or] = ACTIONS(2942), + [sym_none] = ACTIONS(2942), + [sym_true] = ACTIONS(2942), + [sym_false] = ACTIONS(2942), + [sym_nil] = ACTIONS(2942), + [anon_sym_QMARK_DOT] = ACTIONS(2942), + [anon_sym_POUND_LBRACK] = ACTIONS(2942), + [anon_sym_if] = ACTIONS(2942), + [anon_sym_DOLLARif] = ACTIONS(2942), + [anon_sym_is] = ACTIONS(2942), + [anon_sym_BANGis] = ACTIONS(2942), + [anon_sym_in] = ACTIONS(2942), + [anon_sym_BANGin] = ACTIONS(2942), + [anon_sym_match] = ACTIONS(2942), + [anon_sym_select] = ACTIONS(2942), + [anon_sym_STAR_EQ] = ACTIONS(2942), + [anon_sym_SLASH_EQ] = ACTIONS(2942), + [anon_sym_PERCENT_EQ] = ACTIONS(2942), + [anon_sym_LT_LT_EQ] = ACTIONS(2942), + [anon_sym_GT_GT_EQ] = ACTIONS(2942), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2942), + [anon_sym_AMP_EQ] = ACTIONS(2942), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2942), + [anon_sym_PLUS_EQ] = ACTIONS(2942), + [anon_sym_DASH_EQ] = ACTIONS(2942), + [anon_sym_PIPE_EQ] = ACTIONS(2942), + [anon_sym_CARET_EQ] = ACTIONS(2942), + [anon_sym_COLON_EQ] = ACTIONS(2942), + [anon_sym_lock] = ACTIONS(2942), + [anon_sym_rlock] = ACTIONS(2942), + [anon_sym_unsafe] = ACTIONS(2942), + [anon_sym_sql] = ACTIONS(2942), + [sym_int_literal] = ACTIONS(2942), + [sym_float_literal] = ACTIONS(2942), + [sym_rune_literal] = ACTIONS(2942), + [anon_sym_AT] = ACTIONS(2942), + [anon_sym_shared] = ACTIONS(2942), + [anon_sym_map_LBRACK] = ACTIONS(2942), + [anon_sym_chan] = ACTIONS(2942), + [anon_sym_thread] = ACTIONS(2942), + [anon_sym_atomic] = ACTIONS(2942), + [anon_sym_assert] = ACTIONS(2942), + [anon_sym_defer] = ACTIONS(2942), + [anon_sym_goto] = ACTIONS(2942), + [anon_sym_break] = ACTIONS(2942), + [anon_sym_continue] = ACTIONS(2942), + [anon_sym_return] = ACTIONS(2942), + [anon_sym_DOLLARfor] = ACTIONS(2942), + [anon_sym_for] = ACTIONS(2942), + [anon_sym_POUND] = ACTIONS(2942), + [anon_sym_asm] = ACTIONS(2942), + [anon_sym_AT_LBRACK] = ACTIONS(2942), + [sym___double_quote] = ACTIONS(2942), + [sym___single_quote] = ACTIONS(2942), + [sym___c_double_quote] = ACTIONS(2942), + [sym___c_single_quote] = ACTIONS(2942), + [sym___r_double_quote] = ACTIONS(2942), + [sym___r_single_quote] = ACTIONS(2942), }, [890] = { - [ts_builtin_sym_end] = ACTIONS(2957), - [sym_identifier] = ACTIONS(2959), - [anon_sym_LF] = ACTIONS(2959), - [anon_sym_CR] = ACTIONS(2959), - [anon_sym_CR_LF] = ACTIONS(2959), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2959), - [anon_sym_as] = ACTIONS(2959), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_COMMA] = ACTIONS(2959), - [anon_sym_const] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_EQ] = ACTIONS(2959), - [anon_sym___global] = ACTIONS(2959), - [anon_sym_type] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_fn] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_SLASH] = ACTIONS(2959), - [anon_sym_PERCENT] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2959), - [anon_sym_GT] = ACTIONS(2959), - [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(2957), - [anon_sym_struct] = ACTIONS(2959), - [anon_sym_union] = ACTIONS(2959), - [anon_sym_pub] = ACTIONS(2959), - [anon_sym_mut] = ACTIONS(2959), - [anon_sym_enum] = ACTIONS(2959), - [anon_sym_interface] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2959), - [anon_sym_go] = ACTIONS(2959), - [anon_sym_spawn] = ACTIONS(2959), - [anon_sym_json_DOTdecode] = ACTIONS(2959), - [anon_sym_LBRACK2] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2959), - [anon_sym_CARET] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_LT_DASH] = ACTIONS(2959), - [anon_sym_LT_LT] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(2959), - [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(2959), - [sym_none] = ACTIONS(2959), - [sym_true] = ACTIONS(2959), - [sym_false] = ACTIONS(2959), - [sym_nil] = ACTIONS(2959), - [anon_sym_QMARK_DOT] = ACTIONS(2959), - [anon_sym_POUND_LBRACK] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_DOLLARif] = ACTIONS(2959), - [anon_sym_is] = ACTIONS(2959), - [anon_sym_BANGis] = ACTIONS(2959), - [anon_sym_in] = ACTIONS(2959), - [anon_sym_BANGin] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_select] = ACTIONS(2959), - [anon_sym_STAR_EQ] = ACTIONS(2959), - [anon_sym_SLASH_EQ] = ACTIONS(2959), - [anon_sym_PERCENT_EQ] = ACTIONS(2959), - [anon_sym_LT_LT_EQ] = ACTIONS(2959), - [anon_sym_GT_GT_EQ] = ACTIONS(2959), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2959), - [anon_sym_AMP_EQ] = ACTIONS(2959), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2959), - [anon_sym_PLUS_EQ] = ACTIONS(2959), - [anon_sym_DASH_EQ] = ACTIONS(2959), - [anon_sym_PIPE_EQ] = ACTIONS(2959), - [anon_sym_CARET_EQ] = ACTIONS(2959), - [anon_sym_COLON_EQ] = ACTIONS(2959), - [anon_sym_lock] = ACTIONS(2959), - [anon_sym_rlock] = ACTIONS(2959), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2959), - [sym_int_literal] = ACTIONS(2959), - [sym_float_literal] = ACTIONS(2959), - [sym_rune_literal] = ACTIONS(2959), - [anon_sym_AT] = ACTIONS(2959), - [anon_sym_shared] = ACTIONS(2959), - [anon_sym_map_LBRACK] = ACTIONS(2959), - [anon_sym_chan] = ACTIONS(2959), - [anon_sym_thread] = ACTIONS(2959), - [anon_sym_atomic] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_defer] = ACTIONS(2959), - [anon_sym_goto] = ACTIONS(2959), - [anon_sym_break] = ACTIONS(2959), - [anon_sym_continue] = ACTIONS(2959), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_DOLLARfor] = ACTIONS(2959), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_POUND] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2959), - [anon_sym_AT_LBRACK] = ACTIONS(2959), - [sym___double_quote] = ACTIONS(2959), - [sym___single_quote] = ACTIONS(2959), - [sym___c_double_quote] = ACTIONS(2959), - [sym___c_single_quote] = ACTIONS(2959), - [sym___r_double_quote] = ACTIONS(2959), - [sym___r_single_quote] = ACTIONS(2959), + [ts_builtin_sym_end] = ACTIONS(2944), + [sym_identifier] = ACTIONS(2946), + [anon_sym_LF] = ACTIONS(2946), + [anon_sym_CR] = ACTIONS(2946), + [anon_sym_CR_LF] = ACTIONS(2946), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2946), + [anon_sym_as] = ACTIONS(2946), + [anon_sym_LBRACE] = ACTIONS(2946), + [anon_sym_COMMA] = ACTIONS(2946), + [anon_sym_const] = ACTIONS(2946), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_EQ] = ACTIONS(2946), + [anon_sym___global] = ACTIONS(2946), + [anon_sym_type] = ACTIONS(2946), + [anon_sym_PIPE] = ACTIONS(2946), + [anon_sym_fn] = ACTIONS(2946), + [anon_sym_PLUS] = ACTIONS(2946), + [anon_sym_DASH] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(2946), + [anon_sym_SLASH] = ACTIONS(2946), + [anon_sym_PERCENT] = ACTIONS(2946), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_GT] = ACTIONS(2946), + [anon_sym_EQ_EQ] = ACTIONS(2946), + [anon_sym_BANG_EQ] = ACTIONS(2946), + [anon_sym_LT_EQ] = ACTIONS(2946), + [anon_sym_GT_EQ] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_struct] = ACTIONS(2946), + [anon_sym_union] = ACTIONS(2946), + [anon_sym_pub] = ACTIONS(2946), + [anon_sym_mut] = ACTIONS(2946), + [anon_sym_enum] = ACTIONS(2946), + [anon_sym_interface] = ACTIONS(2946), + [anon_sym_PLUS_PLUS] = ACTIONS(2946), + [anon_sym_DASH_DASH] = ACTIONS(2946), + [anon_sym_QMARK] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2946), + [anon_sym_go] = ACTIONS(2946), + [anon_sym_spawn] = ACTIONS(2946), + [anon_sym_json_DOTdecode] = ACTIONS(2946), + [anon_sym_LBRACK2] = ACTIONS(2946), + [anon_sym_TILDE] = ACTIONS(2946), + [anon_sym_CARET] = ACTIONS(2946), + [anon_sym_AMP] = ACTIONS(2946), + [anon_sym_LT_DASH] = ACTIONS(2946), + [anon_sym_LT_LT] = ACTIONS(2946), + [anon_sym_GT_GT] = ACTIONS(2946), + [anon_sym_GT_GT_GT] = ACTIONS(2946), + [anon_sym_AMP_CARET] = ACTIONS(2946), + [anon_sym_AMP_AMP] = ACTIONS(2946), + [anon_sym_PIPE_PIPE] = ACTIONS(2946), + [anon_sym_or] = ACTIONS(2946), + [sym_none] = ACTIONS(2946), + [sym_true] = ACTIONS(2946), + [sym_false] = ACTIONS(2946), + [sym_nil] = ACTIONS(2946), + [anon_sym_QMARK_DOT] = ACTIONS(2946), + [anon_sym_POUND_LBRACK] = ACTIONS(2946), + [anon_sym_if] = ACTIONS(2946), + [anon_sym_DOLLARif] = ACTIONS(2946), + [anon_sym_is] = ACTIONS(2946), + [anon_sym_BANGis] = ACTIONS(2946), + [anon_sym_in] = ACTIONS(2946), + [anon_sym_BANGin] = ACTIONS(2946), + [anon_sym_match] = ACTIONS(2946), + [anon_sym_select] = ACTIONS(2946), + [anon_sym_STAR_EQ] = ACTIONS(2946), + [anon_sym_SLASH_EQ] = ACTIONS(2946), + [anon_sym_PERCENT_EQ] = ACTIONS(2946), + [anon_sym_LT_LT_EQ] = ACTIONS(2946), + [anon_sym_GT_GT_EQ] = ACTIONS(2946), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2946), + [anon_sym_AMP_EQ] = ACTIONS(2946), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2946), + [anon_sym_PLUS_EQ] = ACTIONS(2946), + [anon_sym_DASH_EQ] = ACTIONS(2946), + [anon_sym_PIPE_EQ] = ACTIONS(2946), + [anon_sym_CARET_EQ] = ACTIONS(2946), + [anon_sym_COLON_EQ] = ACTIONS(2946), + [anon_sym_lock] = ACTIONS(2946), + [anon_sym_rlock] = ACTIONS(2946), + [anon_sym_unsafe] = ACTIONS(2946), + [anon_sym_sql] = ACTIONS(2946), + [sym_int_literal] = ACTIONS(2946), + [sym_float_literal] = ACTIONS(2946), + [sym_rune_literal] = ACTIONS(2946), + [anon_sym_AT] = ACTIONS(2946), + [anon_sym_shared] = ACTIONS(2946), + [anon_sym_map_LBRACK] = ACTIONS(2946), + [anon_sym_chan] = ACTIONS(2946), + [anon_sym_thread] = ACTIONS(2946), + [anon_sym_atomic] = ACTIONS(2946), + [anon_sym_assert] = ACTIONS(2946), + [anon_sym_defer] = ACTIONS(2946), + [anon_sym_goto] = ACTIONS(2946), + [anon_sym_break] = ACTIONS(2946), + [anon_sym_continue] = ACTIONS(2946), + [anon_sym_return] = ACTIONS(2946), + [anon_sym_DOLLARfor] = ACTIONS(2946), + [anon_sym_for] = ACTIONS(2946), + [anon_sym_POUND] = ACTIONS(2946), + [anon_sym_asm] = ACTIONS(2946), + [anon_sym_AT_LBRACK] = ACTIONS(2946), + [sym___double_quote] = ACTIONS(2946), + [sym___single_quote] = ACTIONS(2946), + [sym___c_double_quote] = ACTIONS(2946), + [sym___c_single_quote] = ACTIONS(2946), + [sym___r_double_quote] = ACTIONS(2946), + [sym___r_single_quote] = ACTIONS(2946), }, [891] = { - [ts_builtin_sym_end] = ACTIONS(2961), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LF] = ACTIONS(2963), - [anon_sym_CR] = ACTIONS(2963), - [anon_sym_CR_LF] = ACTIONS(2963), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_as] = ACTIONS(2963), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_COMMA] = ACTIONS(2963), - [anon_sym_const] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_EQ] = ACTIONS(2963), - [anon_sym___global] = ACTIONS(2963), - [anon_sym_type] = ACTIONS(2963), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_fn] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_STAR] = ACTIONS(2963), - [anon_sym_SLASH] = ACTIONS(2963), - [anon_sym_PERCENT] = ACTIONS(2963), - [anon_sym_LT] = ACTIONS(2963), - [anon_sym_GT] = ACTIONS(2963), - [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(2961), - [anon_sym_struct] = ACTIONS(2963), - [anon_sym_union] = ACTIONS(2963), - [anon_sym_pub] = ACTIONS(2963), - [anon_sym_mut] = ACTIONS(2963), - [anon_sym_enum] = ACTIONS(2963), - [anon_sym_interface] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2963), - [anon_sym_DASH_DASH] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_BANG] = ACTIONS(2963), - [anon_sym_go] = ACTIONS(2963), - [anon_sym_spawn] = ACTIONS(2963), - [anon_sym_json_DOTdecode] = ACTIONS(2963), - [anon_sym_LBRACK2] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2963), - [anon_sym_CARET] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_LT_DASH] = ACTIONS(2963), - [anon_sym_LT_LT] = ACTIONS(2963), - [anon_sym_GT_GT] = ACTIONS(2963), - [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(2963), - [sym_none] = ACTIONS(2963), - [sym_true] = ACTIONS(2963), - [sym_false] = ACTIONS(2963), - [sym_nil] = ACTIONS(2963), - [anon_sym_QMARK_DOT] = ACTIONS(2963), - [anon_sym_POUND_LBRACK] = ACTIONS(2963), - [anon_sym_if] = ACTIONS(2963), - [anon_sym_DOLLARif] = ACTIONS(2963), - [anon_sym_is] = ACTIONS(2963), - [anon_sym_BANGis] = ACTIONS(2963), - [anon_sym_in] = ACTIONS(2963), - [anon_sym_BANGin] = ACTIONS(2963), - [anon_sym_match] = ACTIONS(2963), - [anon_sym_select] = ACTIONS(2963), - [anon_sym_STAR_EQ] = ACTIONS(2963), - [anon_sym_SLASH_EQ] = ACTIONS(2963), - [anon_sym_PERCENT_EQ] = ACTIONS(2963), - [anon_sym_LT_LT_EQ] = ACTIONS(2963), - [anon_sym_GT_GT_EQ] = ACTIONS(2963), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2963), - [anon_sym_AMP_EQ] = ACTIONS(2963), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2963), - [anon_sym_PLUS_EQ] = ACTIONS(2963), - [anon_sym_DASH_EQ] = ACTIONS(2963), - [anon_sym_PIPE_EQ] = ACTIONS(2963), - [anon_sym_CARET_EQ] = ACTIONS(2963), - [anon_sym_COLON_EQ] = ACTIONS(2963), - [anon_sym_lock] = ACTIONS(2963), - [anon_sym_rlock] = ACTIONS(2963), - [anon_sym_unsafe] = ACTIONS(2963), - [anon_sym_sql] = ACTIONS(2963), - [sym_int_literal] = ACTIONS(2963), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [anon_sym_AT] = ACTIONS(2963), - [anon_sym_shared] = ACTIONS(2963), - [anon_sym_map_LBRACK] = ACTIONS(2963), - [anon_sym_chan] = ACTIONS(2963), - [anon_sym_thread] = ACTIONS(2963), - [anon_sym_atomic] = ACTIONS(2963), - [anon_sym_assert] = ACTIONS(2963), - [anon_sym_defer] = ACTIONS(2963), - [anon_sym_goto] = ACTIONS(2963), - [anon_sym_break] = ACTIONS(2963), - [anon_sym_continue] = ACTIONS(2963), - [anon_sym_return] = ACTIONS(2963), - [anon_sym_DOLLARfor] = ACTIONS(2963), - [anon_sym_for] = ACTIONS(2963), - [anon_sym_POUND] = ACTIONS(2963), - [anon_sym_asm] = ACTIONS(2963), - [anon_sym_AT_LBRACK] = ACTIONS(2963), - [sym___double_quote] = ACTIONS(2963), - [sym___single_quote] = ACTIONS(2963), - [sym___c_double_quote] = ACTIONS(2963), - [sym___c_single_quote] = ACTIONS(2963), - [sym___r_double_quote] = ACTIONS(2963), - [sym___r_single_quote] = ACTIONS(2963), + [ts_builtin_sym_end] = ACTIONS(2948), + [sym_identifier] = ACTIONS(2950), + [anon_sym_LF] = ACTIONS(2950), + [anon_sym_CR] = ACTIONS(2950), + [anon_sym_CR_LF] = ACTIONS(2950), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2950), + [anon_sym_as] = ACTIONS(2950), + [anon_sym_LBRACE] = ACTIONS(2950), + [anon_sym_COMMA] = ACTIONS(2950), + [anon_sym_const] = ACTIONS(2950), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_EQ] = ACTIONS(2950), + [anon_sym___global] = ACTIONS(2950), + [anon_sym_type] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_fn] = ACTIONS(2950), + [anon_sym_PLUS] = ACTIONS(2950), + [anon_sym_DASH] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(2950), + [anon_sym_SLASH] = ACTIONS(2950), + [anon_sym_PERCENT] = ACTIONS(2950), + [anon_sym_LT] = ACTIONS(2950), + [anon_sym_GT] = ACTIONS(2950), + [anon_sym_EQ_EQ] = ACTIONS(2950), + [anon_sym_BANG_EQ] = ACTIONS(2950), + [anon_sym_LT_EQ] = ACTIONS(2950), + [anon_sym_GT_EQ] = ACTIONS(2950), + [anon_sym_LBRACK] = ACTIONS(2948), + [anon_sym_struct] = ACTIONS(2950), + [anon_sym_union] = ACTIONS(2950), + [anon_sym_pub] = ACTIONS(2950), + [anon_sym_mut] = ACTIONS(2950), + [anon_sym_enum] = ACTIONS(2950), + [anon_sym_interface] = ACTIONS(2950), + [anon_sym_PLUS_PLUS] = ACTIONS(2950), + [anon_sym_DASH_DASH] = ACTIONS(2950), + [anon_sym_QMARK] = ACTIONS(2950), + [anon_sym_BANG] = ACTIONS(2950), + [anon_sym_go] = ACTIONS(2950), + [anon_sym_spawn] = ACTIONS(2950), + [anon_sym_json_DOTdecode] = ACTIONS(2950), + [anon_sym_LBRACK2] = ACTIONS(2950), + [anon_sym_TILDE] = ACTIONS(2950), + [anon_sym_CARET] = ACTIONS(2950), + [anon_sym_AMP] = ACTIONS(2950), + [anon_sym_LT_DASH] = ACTIONS(2950), + [anon_sym_LT_LT] = ACTIONS(2950), + [anon_sym_GT_GT] = ACTIONS(2950), + [anon_sym_GT_GT_GT] = ACTIONS(2950), + [anon_sym_AMP_CARET] = ACTIONS(2950), + [anon_sym_AMP_AMP] = ACTIONS(2950), + [anon_sym_PIPE_PIPE] = ACTIONS(2950), + [anon_sym_or] = ACTIONS(2950), + [sym_none] = ACTIONS(2950), + [sym_true] = ACTIONS(2950), + [sym_false] = ACTIONS(2950), + [sym_nil] = ACTIONS(2950), + [anon_sym_QMARK_DOT] = ACTIONS(2950), + [anon_sym_POUND_LBRACK] = ACTIONS(2950), + [anon_sym_if] = ACTIONS(2950), + [anon_sym_DOLLARif] = ACTIONS(2950), + [anon_sym_is] = ACTIONS(2950), + [anon_sym_BANGis] = ACTIONS(2950), + [anon_sym_in] = ACTIONS(2950), + [anon_sym_BANGin] = ACTIONS(2950), + [anon_sym_match] = ACTIONS(2950), + [anon_sym_select] = ACTIONS(2950), + [anon_sym_STAR_EQ] = ACTIONS(2950), + [anon_sym_SLASH_EQ] = ACTIONS(2950), + [anon_sym_PERCENT_EQ] = ACTIONS(2950), + [anon_sym_LT_LT_EQ] = ACTIONS(2950), + [anon_sym_GT_GT_EQ] = ACTIONS(2950), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2950), + [anon_sym_AMP_EQ] = ACTIONS(2950), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2950), + [anon_sym_PLUS_EQ] = ACTIONS(2950), + [anon_sym_DASH_EQ] = ACTIONS(2950), + [anon_sym_PIPE_EQ] = ACTIONS(2950), + [anon_sym_CARET_EQ] = ACTIONS(2950), + [anon_sym_COLON_EQ] = ACTIONS(2950), + [anon_sym_lock] = ACTIONS(2950), + [anon_sym_rlock] = ACTIONS(2950), + [anon_sym_unsafe] = ACTIONS(2950), + [anon_sym_sql] = ACTIONS(2950), + [sym_int_literal] = ACTIONS(2950), + [sym_float_literal] = ACTIONS(2950), + [sym_rune_literal] = ACTIONS(2950), + [anon_sym_AT] = ACTIONS(2950), + [anon_sym_shared] = ACTIONS(2950), + [anon_sym_map_LBRACK] = ACTIONS(2950), + [anon_sym_chan] = ACTIONS(2950), + [anon_sym_thread] = ACTIONS(2950), + [anon_sym_atomic] = ACTIONS(2950), + [anon_sym_assert] = ACTIONS(2950), + [anon_sym_defer] = ACTIONS(2950), + [anon_sym_goto] = ACTIONS(2950), + [anon_sym_break] = ACTIONS(2950), + [anon_sym_continue] = ACTIONS(2950), + [anon_sym_return] = ACTIONS(2950), + [anon_sym_DOLLARfor] = ACTIONS(2950), + [anon_sym_for] = ACTIONS(2950), + [anon_sym_POUND] = ACTIONS(2950), + [anon_sym_asm] = ACTIONS(2950), + [anon_sym_AT_LBRACK] = ACTIONS(2950), + [sym___double_quote] = ACTIONS(2950), + [sym___single_quote] = ACTIONS(2950), + [sym___c_double_quote] = ACTIONS(2950), + [sym___c_single_quote] = ACTIONS(2950), + [sym___r_double_quote] = ACTIONS(2950), + [sym___r_single_quote] = ACTIONS(2950), }, [892] = { - [ts_builtin_sym_end] = ACTIONS(2965), - [sym_identifier] = ACTIONS(2967), - [anon_sym_LF] = ACTIONS(2967), - [anon_sym_CR] = ACTIONS(2967), - [anon_sym_CR_LF] = ACTIONS(2967), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2967), - [anon_sym_as] = ACTIONS(2967), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_COMMA] = ACTIONS(2967), - [anon_sym_const] = ACTIONS(2967), - [anon_sym_LPAREN] = ACTIONS(2967), - [anon_sym_EQ] = ACTIONS(2967), - [anon_sym___global] = ACTIONS(2967), - [anon_sym_type] = ACTIONS(2967), - [anon_sym_PIPE] = ACTIONS(2967), - [anon_sym_fn] = ACTIONS(2967), - [anon_sym_PLUS] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2967), - [anon_sym_STAR] = ACTIONS(2967), - [anon_sym_SLASH] = ACTIONS(2967), - [anon_sym_PERCENT] = ACTIONS(2967), - [anon_sym_LT] = ACTIONS(2967), - [anon_sym_GT] = ACTIONS(2967), - [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(2965), - [anon_sym_struct] = ACTIONS(2967), - [anon_sym_union] = ACTIONS(2967), - [anon_sym_pub] = ACTIONS(2967), - [anon_sym_mut] = ACTIONS(2967), - [anon_sym_enum] = ACTIONS(2967), - [anon_sym_interface] = ACTIONS(2967), - [anon_sym_PLUS_PLUS] = ACTIONS(2967), - [anon_sym_DASH_DASH] = ACTIONS(2967), - [anon_sym_QMARK] = ACTIONS(2967), - [anon_sym_BANG] = ACTIONS(2967), - [anon_sym_go] = ACTIONS(2967), - [anon_sym_spawn] = ACTIONS(2967), - [anon_sym_json_DOTdecode] = ACTIONS(2967), - [anon_sym_LBRACK2] = ACTIONS(2967), - [anon_sym_TILDE] = ACTIONS(2967), - [anon_sym_CARET] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_LT_DASH] = ACTIONS(2967), - [anon_sym_LT_LT] = ACTIONS(2967), - [anon_sym_GT_GT] = ACTIONS(2967), - [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(2967), - [sym_none] = ACTIONS(2967), - [sym_true] = ACTIONS(2967), - [sym_false] = ACTIONS(2967), - [sym_nil] = ACTIONS(2967), - [anon_sym_QMARK_DOT] = ACTIONS(2967), - [anon_sym_POUND_LBRACK] = ACTIONS(2967), - [anon_sym_if] = ACTIONS(2967), - [anon_sym_DOLLARif] = ACTIONS(2967), - [anon_sym_is] = ACTIONS(2967), - [anon_sym_BANGis] = ACTIONS(2967), - [anon_sym_in] = ACTIONS(2967), - [anon_sym_BANGin] = ACTIONS(2967), - [anon_sym_match] = ACTIONS(2967), - [anon_sym_select] = ACTIONS(2967), - [anon_sym_STAR_EQ] = ACTIONS(2967), - [anon_sym_SLASH_EQ] = ACTIONS(2967), - [anon_sym_PERCENT_EQ] = ACTIONS(2967), - [anon_sym_LT_LT_EQ] = ACTIONS(2967), - [anon_sym_GT_GT_EQ] = ACTIONS(2967), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2967), - [anon_sym_AMP_EQ] = ACTIONS(2967), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2967), - [anon_sym_PLUS_EQ] = ACTIONS(2967), - [anon_sym_DASH_EQ] = ACTIONS(2967), - [anon_sym_PIPE_EQ] = ACTIONS(2967), - [anon_sym_CARET_EQ] = ACTIONS(2967), - [anon_sym_COLON_EQ] = ACTIONS(2967), - [anon_sym_lock] = ACTIONS(2967), - [anon_sym_rlock] = ACTIONS(2967), - [anon_sym_unsafe] = ACTIONS(2967), - [anon_sym_sql] = ACTIONS(2967), - [sym_int_literal] = ACTIONS(2967), - [sym_float_literal] = ACTIONS(2967), - [sym_rune_literal] = ACTIONS(2967), - [anon_sym_AT] = ACTIONS(2967), - [anon_sym_shared] = ACTIONS(2967), - [anon_sym_map_LBRACK] = ACTIONS(2967), - [anon_sym_chan] = ACTIONS(2967), - [anon_sym_thread] = ACTIONS(2967), - [anon_sym_atomic] = ACTIONS(2967), - [anon_sym_assert] = ACTIONS(2967), - [anon_sym_defer] = ACTIONS(2967), - [anon_sym_goto] = ACTIONS(2967), - [anon_sym_break] = ACTIONS(2967), - [anon_sym_continue] = ACTIONS(2967), - [anon_sym_return] = ACTIONS(2967), - [anon_sym_DOLLARfor] = ACTIONS(2967), - [anon_sym_for] = ACTIONS(2967), - [anon_sym_POUND] = ACTIONS(2967), - [anon_sym_asm] = ACTIONS(2967), - [anon_sym_AT_LBRACK] = ACTIONS(2967), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2967), - [sym___c_double_quote] = ACTIONS(2967), - [sym___c_single_quote] = ACTIONS(2967), - [sym___r_double_quote] = ACTIONS(2967), - [sym___r_single_quote] = ACTIONS(2967), + [ts_builtin_sym_end] = ACTIONS(2952), + [sym_identifier] = ACTIONS(2954), + [anon_sym_LF] = ACTIONS(2954), + [anon_sym_CR] = ACTIONS(2954), + [anon_sym_CR_LF] = ACTIONS(2954), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2954), + [anon_sym_as] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2954), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_const] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_EQ] = ACTIONS(2954), + [anon_sym___global] = ACTIONS(2954), + [anon_sym_type] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(2954), + [anon_sym_fn] = ACTIONS(2954), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_SLASH] = ACTIONS(2954), + [anon_sym_PERCENT] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_GT] = ACTIONS(2954), + [anon_sym_EQ_EQ] = ACTIONS(2954), + [anon_sym_BANG_EQ] = ACTIONS(2954), + [anon_sym_LT_EQ] = ACTIONS(2954), + [anon_sym_GT_EQ] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2952), + [anon_sym_struct] = ACTIONS(2954), + [anon_sym_union] = ACTIONS(2954), + [anon_sym_pub] = ACTIONS(2954), + [anon_sym_mut] = ACTIONS(2954), + [anon_sym_enum] = ACTIONS(2954), + [anon_sym_interface] = ACTIONS(2954), + [anon_sym_PLUS_PLUS] = ACTIONS(2954), + [anon_sym_DASH_DASH] = ACTIONS(2954), + [anon_sym_QMARK] = ACTIONS(2954), + [anon_sym_BANG] = ACTIONS(2954), + [anon_sym_go] = ACTIONS(2954), + [anon_sym_spawn] = ACTIONS(2954), + [anon_sym_json_DOTdecode] = ACTIONS(2954), + [anon_sym_LBRACK2] = ACTIONS(2954), + [anon_sym_TILDE] = ACTIONS(2954), + [anon_sym_CARET] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_LT_DASH] = ACTIONS(2954), + [anon_sym_LT_LT] = ACTIONS(2954), + [anon_sym_GT_GT] = ACTIONS(2954), + [anon_sym_GT_GT_GT] = ACTIONS(2954), + [anon_sym_AMP_CARET] = ACTIONS(2954), + [anon_sym_AMP_AMP] = ACTIONS(2954), + [anon_sym_PIPE_PIPE] = ACTIONS(2954), + [anon_sym_or] = ACTIONS(2954), + [sym_none] = ACTIONS(2954), + [sym_true] = ACTIONS(2954), + [sym_false] = ACTIONS(2954), + [sym_nil] = ACTIONS(2954), + [anon_sym_QMARK_DOT] = ACTIONS(2954), + [anon_sym_POUND_LBRACK] = ACTIONS(2954), + [anon_sym_if] = ACTIONS(2954), + [anon_sym_DOLLARif] = ACTIONS(2954), + [anon_sym_is] = ACTIONS(2954), + [anon_sym_BANGis] = ACTIONS(2954), + [anon_sym_in] = ACTIONS(2954), + [anon_sym_BANGin] = ACTIONS(2954), + [anon_sym_match] = ACTIONS(2954), + [anon_sym_select] = ACTIONS(2954), + [anon_sym_STAR_EQ] = ACTIONS(2954), + [anon_sym_SLASH_EQ] = ACTIONS(2954), + [anon_sym_PERCENT_EQ] = ACTIONS(2954), + [anon_sym_LT_LT_EQ] = ACTIONS(2954), + [anon_sym_GT_GT_EQ] = ACTIONS(2954), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2954), + [anon_sym_AMP_EQ] = ACTIONS(2954), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2954), + [anon_sym_PLUS_EQ] = ACTIONS(2954), + [anon_sym_DASH_EQ] = ACTIONS(2954), + [anon_sym_PIPE_EQ] = ACTIONS(2954), + [anon_sym_CARET_EQ] = ACTIONS(2954), + [anon_sym_COLON_EQ] = ACTIONS(2954), + [anon_sym_lock] = ACTIONS(2954), + [anon_sym_rlock] = ACTIONS(2954), + [anon_sym_unsafe] = ACTIONS(2954), + [anon_sym_sql] = ACTIONS(2954), + [sym_int_literal] = ACTIONS(2954), + [sym_float_literal] = ACTIONS(2954), + [sym_rune_literal] = ACTIONS(2954), + [anon_sym_AT] = ACTIONS(2954), + [anon_sym_shared] = ACTIONS(2954), + [anon_sym_map_LBRACK] = ACTIONS(2954), + [anon_sym_chan] = ACTIONS(2954), + [anon_sym_thread] = ACTIONS(2954), + [anon_sym_atomic] = ACTIONS(2954), + [anon_sym_assert] = ACTIONS(2954), + [anon_sym_defer] = ACTIONS(2954), + [anon_sym_goto] = ACTIONS(2954), + [anon_sym_break] = ACTIONS(2954), + [anon_sym_continue] = ACTIONS(2954), + [anon_sym_return] = ACTIONS(2954), + [anon_sym_DOLLARfor] = ACTIONS(2954), + [anon_sym_for] = ACTIONS(2954), + [anon_sym_POUND] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2954), + [anon_sym_AT_LBRACK] = ACTIONS(2954), + [sym___double_quote] = ACTIONS(2954), + [sym___single_quote] = ACTIONS(2954), + [sym___c_double_quote] = ACTIONS(2954), + [sym___c_single_quote] = ACTIONS(2954), + [sym___r_double_quote] = ACTIONS(2954), + [sym___r_single_quote] = ACTIONS(2954), }, [893] = { - [ts_builtin_sym_end] = ACTIONS(2969), - [sym_identifier] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2971), - [anon_sym_CR] = ACTIONS(2971), - [anon_sym_CR_LF] = ACTIONS(2971), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2973), - [anon_sym_as] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_COMMA] = ACTIONS(2973), - [anon_sym_const] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2973), - [anon_sym___global] = ACTIONS(2971), - [anon_sym_type] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(2973), - [anon_sym_fn] = ACTIONS(2971), - [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(2976), - [anon_sym_struct] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(2971), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_mut] = ACTIONS(2971), - [anon_sym_enum] = ACTIONS(2971), - [anon_sym_interface] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_BANG] = ACTIONS(2973), - [anon_sym_go] = ACTIONS(2971), - [anon_sym_spawn] = ACTIONS(2971), - [anon_sym_json_DOTdecode] = ACTIONS(2971), - [anon_sym_LBRACK2] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_CARET] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2971), - [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(2971), - [sym_true] = ACTIONS(2971), - [sym_false] = ACTIONS(2971), - [sym_nil] = ACTIONS(2971), - [anon_sym_QMARK_DOT] = ACTIONS(2973), - [anon_sym_POUND_LBRACK] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2971), - [anon_sym_DOLLARif] = ACTIONS(2971), - [anon_sym_is] = ACTIONS(2973), - [anon_sym_BANGis] = ACTIONS(2973), - [anon_sym_in] = ACTIONS(2973), - [anon_sym_BANGin] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [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(2971), - [anon_sym_rlock] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(2971), - [anon_sym_sql] = ACTIONS(2971), - [sym_int_literal] = ACTIONS(2971), - [sym_float_literal] = ACTIONS(2971), - [sym_rune_literal] = ACTIONS(2971), - [anon_sym_AT] = ACTIONS(2971), - [anon_sym_shared] = ACTIONS(2971), - [anon_sym_map_LBRACK] = ACTIONS(2971), - [anon_sym_chan] = ACTIONS(2971), - [anon_sym_thread] = ACTIONS(2971), - [anon_sym_atomic] = ACTIONS(2971), - [anon_sym_assert] = ACTIONS(2971), - [anon_sym_defer] = ACTIONS(2971), - [anon_sym_goto] = ACTIONS(2971), - [anon_sym_break] = ACTIONS(2971), - [anon_sym_continue] = ACTIONS(2971), - [anon_sym_return] = ACTIONS(2971), - [anon_sym_DOLLARfor] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2971), - [anon_sym_POUND] = ACTIONS(2971), - [anon_sym_asm] = ACTIONS(2971), - [anon_sym_AT_LBRACK] = ACTIONS(2971), - [sym___double_quote] = ACTIONS(2971), - [sym___single_quote] = ACTIONS(2971), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2971), - [sym___r_double_quote] = ACTIONS(2971), - [sym___r_single_quote] = ACTIONS(2971), + [ts_builtin_sym_end] = ACTIONS(2956), + [sym_identifier] = ACTIONS(2958), + [anon_sym_LF] = ACTIONS(2958), + [anon_sym_CR] = ACTIONS(2958), + [anon_sym_CR_LF] = ACTIONS(2958), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2958), + [anon_sym_as] = ACTIONS(2958), + [anon_sym_LBRACE] = ACTIONS(2958), + [anon_sym_COMMA] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2958), + [anon_sym_LPAREN] = ACTIONS(2958), + [anon_sym_EQ] = ACTIONS(2958), + [anon_sym___global] = ACTIONS(2958), + [anon_sym_type] = ACTIONS(2958), + [anon_sym_PIPE] = ACTIONS(2958), + [anon_sym_fn] = ACTIONS(2958), + [anon_sym_PLUS] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2958), + [anon_sym_STAR] = ACTIONS(2958), + [anon_sym_SLASH] = ACTIONS(2958), + [anon_sym_PERCENT] = ACTIONS(2958), + [anon_sym_LT] = ACTIONS(2958), + [anon_sym_GT] = ACTIONS(2958), + [anon_sym_EQ_EQ] = ACTIONS(2958), + [anon_sym_BANG_EQ] = ACTIONS(2958), + [anon_sym_LT_EQ] = ACTIONS(2958), + [anon_sym_GT_EQ] = ACTIONS(2958), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_struct] = ACTIONS(2958), + [anon_sym_union] = ACTIONS(2958), + [anon_sym_pub] = ACTIONS(2958), + [anon_sym_mut] = ACTIONS(2958), + [anon_sym_enum] = ACTIONS(2958), + [anon_sym_interface] = ACTIONS(2958), + [anon_sym_PLUS_PLUS] = ACTIONS(2958), + [anon_sym_DASH_DASH] = ACTIONS(2958), + [anon_sym_QMARK] = ACTIONS(2958), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_go] = ACTIONS(2958), + [anon_sym_spawn] = ACTIONS(2958), + [anon_sym_json_DOTdecode] = ACTIONS(2958), + [anon_sym_LBRACK2] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_CARET] = ACTIONS(2958), + [anon_sym_AMP] = ACTIONS(2958), + [anon_sym_LT_DASH] = ACTIONS(2958), + [anon_sym_LT_LT] = ACTIONS(2958), + [anon_sym_GT_GT] = ACTIONS(2958), + [anon_sym_GT_GT_GT] = ACTIONS(2958), + [anon_sym_AMP_CARET] = ACTIONS(2958), + [anon_sym_AMP_AMP] = ACTIONS(2958), + [anon_sym_PIPE_PIPE] = ACTIONS(2958), + [anon_sym_or] = ACTIONS(2958), + [sym_none] = ACTIONS(2958), + [sym_true] = ACTIONS(2958), + [sym_false] = ACTIONS(2958), + [sym_nil] = ACTIONS(2958), + [anon_sym_QMARK_DOT] = ACTIONS(2958), + [anon_sym_POUND_LBRACK] = ACTIONS(2958), + [anon_sym_if] = ACTIONS(2958), + [anon_sym_DOLLARif] = ACTIONS(2958), + [anon_sym_is] = ACTIONS(2958), + [anon_sym_BANGis] = ACTIONS(2958), + [anon_sym_in] = ACTIONS(2958), + [anon_sym_BANGin] = ACTIONS(2958), + [anon_sym_match] = ACTIONS(2958), + [anon_sym_select] = ACTIONS(2958), + [anon_sym_STAR_EQ] = ACTIONS(2958), + [anon_sym_SLASH_EQ] = ACTIONS(2958), + [anon_sym_PERCENT_EQ] = ACTIONS(2958), + [anon_sym_LT_LT_EQ] = ACTIONS(2958), + [anon_sym_GT_GT_EQ] = ACTIONS(2958), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2958), + [anon_sym_AMP_EQ] = ACTIONS(2958), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2958), + [anon_sym_PLUS_EQ] = ACTIONS(2958), + [anon_sym_DASH_EQ] = ACTIONS(2958), + [anon_sym_PIPE_EQ] = ACTIONS(2958), + [anon_sym_CARET_EQ] = ACTIONS(2958), + [anon_sym_COLON_EQ] = ACTIONS(2958), + [anon_sym_lock] = ACTIONS(2958), + [anon_sym_rlock] = ACTIONS(2958), + [anon_sym_unsafe] = ACTIONS(2958), + [anon_sym_sql] = ACTIONS(2958), + [sym_int_literal] = ACTIONS(2958), + [sym_float_literal] = ACTIONS(2958), + [sym_rune_literal] = ACTIONS(2958), + [anon_sym_AT] = ACTIONS(2958), + [anon_sym_shared] = ACTIONS(2958), + [anon_sym_map_LBRACK] = ACTIONS(2958), + [anon_sym_chan] = ACTIONS(2958), + [anon_sym_thread] = ACTIONS(2958), + [anon_sym_atomic] = ACTIONS(2958), + [anon_sym_assert] = ACTIONS(2958), + [anon_sym_defer] = ACTIONS(2958), + [anon_sym_goto] = ACTIONS(2958), + [anon_sym_break] = ACTIONS(2958), + [anon_sym_continue] = ACTIONS(2958), + [anon_sym_return] = ACTIONS(2958), + [anon_sym_DOLLARfor] = ACTIONS(2958), + [anon_sym_for] = ACTIONS(2958), + [anon_sym_POUND] = ACTIONS(2958), + [anon_sym_asm] = ACTIONS(2958), + [anon_sym_AT_LBRACK] = ACTIONS(2958), + [sym___double_quote] = ACTIONS(2958), + [sym___single_quote] = ACTIONS(2958), + [sym___c_double_quote] = ACTIONS(2958), + [sym___c_single_quote] = ACTIONS(2958), + [sym___r_double_quote] = ACTIONS(2958), + [sym___r_single_quote] = ACTIONS(2958), }, [894] = { - [ts_builtin_sym_end] = ACTIONS(2979), - [sym_identifier] = ACTIONS(2981), - [anon_sym_LF] = ACTIONS(2981), - [anon_sym_CR] = ACTIONS(2981), - [anon_sym_CR_LF] = ACTIONS(2981), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_as] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_COMMA] = ACTIONS(2981), - [anon_sym_const] = ACTIONS(2981), - [anon_sym_LPAREN] = ACTIONS(2981), - [anon_sym_EQ] = ACTIONS(2981), - [anon_sym___global] = ACTIONS(2981), - [anon_sym_type] = ACTIONS(2981), - [anon_sym_PIPE] = ACTIONS(2981), - [anon_sym_fn] = ACTIONS(2981), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2981), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_EQ_EQ] = ACTIONS(2981), - [anon_sym_BANG_EQ] = ACTIONS(2981), - [anon_sym_LT_EQ] = ACTIONS(2981), - [anon_sym_GT_EQ] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(2981), - [anon_sym_union] = ACTIONS(2981), - [anon_sym_pub] = ACTIONS(2981), - [anon_sym_mut] = ACTIONS(2981), - [anon_sym_enum] = ACTIONS(2981), - [anon_sym_interface] = ACTIONS(2981), - [anon_sym_PLUS_PLUS] = ACTIONS(2981), - [anon_sym_DASH_DASH] = ACTIONS(2981), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2981), - [anon_sym_spawn] = ACTIONS(2981), - [anon_sym_json_DOTdecode] = ACTIONS(2981), - [anon_sym_LBRACK2] = ACTIONS(2981), - [anon_sym_TILDE] = ACTIONS(2981), - [anon_sym_CARET] = ACTIONS(2981), - [anon_sym_AMP] = ACTIONS(2981), - [anon_sym_LT_DASH] = ACTIONS(2981), - [anon_sym_LT_LT] = ACTIONS(2981), - [anon_sym_GT_GT] = ACTIONS(2981), - [anon_sym_GT_GT_GT] = ACTIONS(2981), - [anon_sym_AMP_CARET] = ACTIONS(2981), - [anon_sym_AMP_AMP] = ACTIONS(2981), - [anon_sym_PIPE_PIPE] = ACTIONS(2981), - [anon_sym_or] = ACTIONS(2981), - [sym_none] = ACTIONS(2981), - [sym_true] = ACTIONS(2981), - [sym_false] = ACTIONS(2981), - [sym_nil] = ACTIONS(2981), - [anon_sym_QMARK_DOT] = ACTIONS(2981), - [anon_sym_POUND_LBRACK] = ACTIONS(2981), - [anon_sym_if] = ACTIONS(2981), - [anon_sym_DOLLARif] = ACTIONS(2981), - [anon_sym_is] = ACTIONS(2981), - [anon_sym_BANGis] = ACTIONS(2981), - [anon_sym_in] = ACTIONS(2981), - [anon_sym_BANGin] = ACTIONS(2981), - [anon_sym_match] = ACTIONS(2981), - [anon_sym_select] = ACTIONS(2981), - [anon_sym_STAR_EQ] = ACTIONS(2981), - [anon_sym_SLASH_EQ] = ACTIONS(2981), - [anon_sym_PERCENT_EQ] = ACTIONS(2981), - [anon_sym_LT_LT_EQ] = ACTIONS(2981), - [anon_sym_GT_GT_EQ] = ACTIONS(2981), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2981), - [anon_sym_AMP_EQ] = ACTIONS(2981), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2981), - [anon_sym_PLUS_EQ] = ACTIONS(2981), - [anon_sym_DASH_EQ] = ACTIONS(2981), - [anon_sym_PIPE_EQ] = ACTIONS(2981), - [anon_sym_CARET_EQ] = ACTIONS(2981), - [anon_sym_COLON_EQ] = ACTIONS(2981), - [anon_sym_lock] = ACTIONS(2981), - [anon_sym_rlock] = ACTIONS(2981), - [anon_sym_unsafe] = ACTIONS(2981), - [anon_sym_sql] = ACTIONS(2981), - [sym_int_literal] = ACTIONS(2981), - [sym_float_literal] = ACTIONS(2981), - [sym_rune_literal] = ACTIONS(2981), - [anon_sym_AT] = ACTIONS(2981), - [anon_sym_shared] = ACTIONS(2981), - [anon_sym_map_LBRACK] = ACTIONS(2981), - [anon_sym_chan] = ACTIONS(2981), - [anon_sym_thread] = ACTIONS(2981), - [anon_sym_atomic] = ACTIONS(2981), - [anon_sym_assert] = ACTIONS(2981), - [anon_sym_defer] = ACTIONS(2981), - [anon_sym_goto] = ACTIONS(2981), - [anon_sym_break] = ACTIONS(2981), - [anon_sym_continue] = ACTIONS(2981), - [anon_sym_return] = ACTIONS(2981), - [anon_sym_DOLLARfor] = ACTIONS(2981), - [anon_sym_for] = ACTIONS(2981), - [anon_sym_POUND] = ACTIONS(2981), - [anon_sym_asm] = ACTIONS(2981), - [anon_sym_AT_LBRACK] = ACTIONS(2981), - [sym___double_quote] = ACTIONS(2981), - [sym___single_quote] = ACTIONS(2981), - [sym___c_double_quote] = ACTIONS(2981), - [sym___c_single_quote] = ACTIONS(2981), - [sym___r_double_quote] = ACTIONS(2981), - [sym___r_single_quote] = ACTIONS(2981), + [ts_builtin_sym_end] = ACTIONS(2960), + [sym_identifier] = ACTIONS(2962), + [anon_sym_LF] = ACTIONS(2962), + [anon_sym_CR] = ACTIONS(2962), + [anon_sym_CR_LF] = ACTIONS(2962), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2962), + [anon_sym_as] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_COMMA] = ACTIONS(2962), + [anon_sym_const] = ACTIONS(2962), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_EQ] = ACTIONS(2962), + [anon_sym___global] = ACTIONS(2962), + [anon_sym_type] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(2962), + [anon_sym_fn] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_SLASH] = ACTIONS(2962), + [anon_sym_PERCENT] = ACTIONS(2962), + [anon_sym_LT] = ACTIONS(2962), + [anon_sym_GT] = ACTIONS(2962), + [anon_sym_EQ_EQ] = ACTIONS(2962), + [anon_sym_BANG_EQ] = ACTIONS(2962), + [anon_sym_LT_EQ] = ACTIONS(2962), + [anon_sym_GT_EQ] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2960), + [anon_sym_struct] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_pub] = ACTIONS(2962), + [anon_sym_mut] = ACTIONS(2962), + [anon_sym_enum] = ACTIONS(2962), + [anon_sym_interface] = ACTIONS(2962), + [anon_sym_PLUS_PLUS] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(2962), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_go] = ACTIONS(2962), + [anon_sym_spawn] = ACTIONS(2962), + [anon_sym_json_DOTdecode] = ACTIONS(2962), + [anon_sym_LBRACK2] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_CARET] = ACTIONS(2962), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_LT_DASH] = ACTIONS(2962), + [anon_sym_LT_LT] = ACTIONS(2962), + [anon_sym_GT_GT] = ACTIONS(2962), + [anon_sym_GT_GT_GT] = ACTIONS(2962), + [anon_sym_AMP_CARET] = ACTIONS(2962), + [anon_sym_AMP_AMP] = ACTIONS(2962), + [anon_sym_PIPE_PIPE] = ACTIONS(2962), + [anon_sym_or] = ACTIONS(2962), + [sym_none] = ACTIONS(2962), + [sym_true] = ACTIONS(2962), + [sym_false] = ACTIONS(2962), + [sym_nil] = ACTIONS(2962), + [anon_sym_QMARK_DOT] = ACTIONS(2962), + [anon_sym_POUND_LBRACK] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_DOLLARif] = ACTIONS(2962), + [anon_sym_is] = ACTIONS(2962), + [anon_sym_BANGis] = ACTIONS(2962), + [anon_sym_in] = ACTIONS(2962), + [anon_sym_BANGin] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_select] = ACTIONS(2962), + [anon_sym_STAR_EQ] = ACTIONS(2962), + [anon_sym_SLASH_EQ] = ACTIONS(2962), + [anon_sym_PERCENT_EQ] = ACTIONS(2962), + [anon_sym_LT_LT_EQ] = ACTIONS(2962), + [anon_sym_GT_GT_EQ] = ACTIONS(2962), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2962), + [anon_sym_AMP_EQ] = ACTIONS(2962), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2962), + [anon_sym_PLUS_EQ] = ACTIONS(2962), + [anon_sym_DASH_EQ] = ACTIONS(2962), + [anon_sym_PIPE_EQ] = ACTIONS(2962), + [anon_sym_CARET_EQ] = ACTIONS(2962), + [anon_sym_COLON_EQ] = ACTIONS(2962), + [anon_sym_lock] = ACTIONS(2962), + [anon_sym_rlock] = ACTIONS(2962), + [anon_sym_unsafe] = ACTIONS(2962), + [anon_sym_sql] = ACTIONS(2962), + [sym_int_literal] = ACTIONS(2962), + [sym_float_literal] = ACTIONS(2962), + [sym_rune_literal] = ACTIONS(2962), + [anon_sym_AT] = ACTIONS(2962), + [anon_sym_shared] = ACTIONS(2962), + [anon_sym_map_LBRACK] = ACTIONS(2962), + [anon_sym_chan] = ACTIONS(2962), + [anon_sym_thread] = ACTIONS(2962), + [anon_sym_atomic] = ACTIONS(2962), + [anon_sym_assert] = ACTIONS(2962), + [anon_sym_defer] = ACTIONS(2962), + [anon_sym_goto] = ACTIONS(2962), + [anon_sym_break] = ACTIONS(2962), + [anon_sym_continue] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_DOLLARfor] = ACTIONS(2962), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_POUND] = ACTIONS(2962), + [anon_sym_asm] = ACTIONS(2962), + [anon_sym_AT_LBRACK] = ACTIONS(2962), + [sym___double_quote] = ACTIONS(2962), + [sym___single_quote] = ACTIONS(2962), + [sym___c_double_quote] = ACTIONS(2962), + [sym___c_single_quote] = ACTIONS(2962), + [sym___r_double_quote] = ACTIONS(2962), + [sym___r_single_quote] = ACTIONS(2962), }, [895] = { - [ts_builtin_sym_end] = ACTIONS(2698), - [sym_identifier] = ACTIONS(2700), - [anon_sym_LF] = ACTIONS(2700), - [anon_sym_CR] = ACTIONS(2700), - [anon_sym_CR_LF] = ACTIONS(2700), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_COMMA] = ACTIONS(2700), - [anon_sym_const] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_EQ] = ACTIONS(2700), - [anon_sym___global] = ACTIONS(2700), - [anon_sym_type] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_union] = ACTIONS(2700), - [anon_sym_pub] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_enum] = ACTIONS(2700), - [anon_sym_interface] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2700), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2700), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2700), - [anon_sym_AMP_CARET] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2700), - [anon_sym_POUND_LBRACK] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2700), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2700), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_STAR_EQ] = ACTIONS(2700), - [anon_sym_SLASH_EQ] = ACTIONS(2700), - [anon_sym_PERCENT_EQ] = ACTIONS(2700), - [anon_sym_LT_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_GT_EQ] = ACTIONS(2700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2700), - [anon_sym_AMP_EQ] = ACTIONS(2700), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2700), - [anon_sym_PLUS_EQ] = ACTIONS(2700), - [anon_sym_DASH_EQ] = ACTIONS(2700), - [anon_sym_PIPE_EQ] = ACTIONS(2700), - [anon_sym_CARET_EQ] = ACTIONS(2700), - [anon_sym_COLON_EQ] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), - [sym_rune_literal] = ACTIONS(2700), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2700), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [anon_sym_assert] = ACTIONS(2700), - [anon_sym_defer] = ACTIONS(2700), - [anon_sym_goto] = ACTIONS(2700), - [anon_sym_break] = ACTIONS(2700), - [anon_sym_continue] = ACTIONS(2700), - [anon_sym_return] = ACTIONS(2700), - [anon_sym_DOLLARfor] = ACTIONS(2700), - [anon_sym_for] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(2700), - [anon_sym_asm] = ACTIONS(2700), - [anon_sym_AT_LBRACK] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2700), - [sym___single_quote] = ACTIONS(2700), - [sym___c_double_quote] = ACTIONS(2700), - [sym___c_single_quote] = ACTIONS(2700), - [sym___r_double_quote] = ACTIONS(2700), - [sym___r_single_quote] = ACTIONS(2700), + [ts_builtin_sym_end] = ACTIONS(2964), + [sym_identifier] = ACTIONS(2966), + [anon_sym_LF] = ACTIONS(2966), + [anon_sym_CR] = ACTIONS(2966), + [anon_sym_CR_LF] = ACTIONS(2966), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2966), + [anon_sym_as] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2966), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym___global] = ACTIONS(2966), + [anon_sym_type] = ACTIONS(2966), + [anon_sym_PIPE] = ACTIONS(2966), + [anon_sym_fn] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_STAR] = ACTIONS(2966), + [anon_sym_SLASH] = ACTIONS(2966), + [anon_sym_PERCENT] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_GT] = ACTIONS(2966), + [anon_sym_EQ_EQ] = ACTIONS(2966), + [anon_sym_BANG_EQ] = ACTIONS(2966), + [anon_sym_LT_EQ] = ACTIONS(2966), + [anon_sym_GT_EQ] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_struct] = ACTIONS(2966), + [anon_sym_union] = ACTIONS(2966), + [anon_sym_pub] = ACTIONS(2966), + [anon_sym_mut] = ACTIONS(2966), + [anon_sym_enum] = ACTIONS(2966), + [anon_sym_interface] = ACTIONS(2966), + [anon_sym_PLUS_PLUS] = ACTIONS(2966), + [anon_sym_DASH_DASH] = ACTIONS(2966), + [anon_sym_QMARK] = ACTIONS(2966), + [anon_sym_BANG] = ACTIONS(2966), + [anon_sym_go] = ACTIONS(2966), + [anon_sym_spawn] = ACTIONS(2966), + [anon_sym_json_DOTdecode] = ACTIONS(2966), + [anon_sym_LBRACK2] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2966), + [anon_sym_CARET] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_LT_DASH] = ACTIONS(2966), + [anon_sym_LT_LT] = ACTIONS(2966), + [anon_sym_GT_GT] = ACTIONS(2966), + [anon_sym_GT_GT_GT] = ACTIONS(2966), + [anon_sym_AMP_CARET] = ACTIONS(2966), + [anon_sym_AMP_AMP] = ACTIONS(2966), + [anon_sym_PIPE_PIPE] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2966), + [sym_none] = ACTIONS(2966), + [sym_true] = ACTIONS(2966), + [sym_false] = ACTIONS(2966), + [sym_nil] = ACTIONS(2966), + [anon_sym_QMARK_DOT] = ACTIONS(2966), + [anon_sym_POUND_LBRACK] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_DOLLARif] = ACTIONS(2966), + [anon_sym_is] = ACTIONS(2966), + [anon_sym_BANGis] = ACTIONS(2966), + [anon_sym_in] = ACTIONS(2966), + [anon_sym_BANGin] = ACTIONS(2966), + [anon_sym_match] = ACTIONS(2966), + [anon_sym_select] = ACTIONS(2966), + [anon_sym_STAR_EQ] = ACTIONS(2966), + [anon_sym_SLASH_EQ] = ACTIONS(2966), + [anon_sym_PERCENT_EQ] = ACTIONS(2966), + [anon_sym_LT_LT_EQ] = ACTIONS(2966), + [anon_sym_GT_GT_EQ] = ACTIONS(2966), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2966), + [anon_sym_AMP_EQ] = ACTIONS(2966), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2966), + [anon_sym_PLUS_EQ] = ACTIONS(2966), + [anon_sym_DASH_EQ] = ACTIONS(2966), + [anon_sym_PIPE_EQ] = ACTIONS(2966), + [anon_sym_CARET_EQ] = ACTIONS(2966), + [anon_sym_COLON_EQ] = ACTIONS(2966), + [anon_sym_lock] = ACTIONS(2966), + [anon_sym_rlock] = ACTIONS(2966), + [anon_sym_unsafe] = ACTIONS(2966), + [anon_sym_sql] = ACTIONS(2966), + [sym_int_literal] = ACTIONS(2966), + [sym_float_literal] = ACTIONS(2966), + [sym_rune_literal] = ACTIONS(2966), + [anon_sym_AT] = ACTIONS(2966), + [anon_sym_shared] = ACTIONS(2966), + [anon_sym_map_LBRACK] = ACTIONS(2966), + [anon_sym_chan] = ACTIONS(2966), + [anon_sym_thread] = ACTIONS(2966), + [anon_sym_atomic] = ACTIONS(2966), + [anon_sym_assert] = ACTIONS(2966), + [anon_sym_defer] = ACTIONS(2966), + [anon_sym_goto] = ACTIONS(2966), + [anon_sym_break] = ACTIONS(2966), + [anon_sym_continue] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_DOLLARfor] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_POUND] = ACTIONS(2966), + [anon_sym_asm] = ACTIONS(2966), + [anon_sym_AT_LBRACK] = ACTIONS(2966), + [sym___double_quote] = ACTIONS(2966), + [sym___single_quote] = ACTIONS(2966), + [sym___c_double_quote] = ACTIONS(2966), + [sym___c_single_quote] = ACTIONS(2966), + [sym___r_double_quote] = ACTIONS(2966), + [sym___r_single_quote] = ACTIONS(2966), }, [896] = { - [ts_builtin_sym_end] = ACTIONS(2702), - [sym_identifier] = ACTIONS(2704), - [anon_sym_LF] = ACTIONS(2704), - [anon_sym_CR] = ACTIONS(2704), - [anon_sym_CR_LF] = ACTIONS(2704), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_as] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_COMMA] = ACTIONS(2704), - [anon_sym_const] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_EQ] = ACTIONS(2704), - [anon_sym___global] = ACTIONS(2704), - [anon_sym_type] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_SLASH] = ACTIONS(2704), - [anon_sym_PERCENT] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_EQ_EQ] = ACTIONS(2704), - [anon_sym_BANG_EQ] = ACTIONS(2704), - [anon_sym_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_EQ] = ACTIONS(2704), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_union] = ACTIONS(2704), - [anon_sym_pub] = ACTIONS(2704), - [anon_sym_mut] = ACTIONS(2704), - [anon_sym_enum] = ACTIONS(2704), - [anon_sym_interface] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_go] = ACTIONS(2704), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2704), - [anon_sym_LBRACK2] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_CARET] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_LT_DASH] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2704), - [anon_sym_GT_GT] = ACTIONS(2704), - [anon_sym_GT_GT_GT] = ACTIONS(2704), - [anon_sym_AMP_CARET] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_PIPE_PIPE] = ACTIONS(2704), - [anon_sym_or] = ACTIONS(2704), - [sym_none] = ACTIONS(2704), - [sym_true] = ACTIONS(2704), - [sym_false] = ACTIONS(2704), - [sym_nil] = ACTIONS(2704), - [anon_sym_QMARK_DOT] = ACTIONS(2704), - [anon_sym_POUND_LBRACK] = ACTIONS(2704), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_DOLLARif] = ACTIONS(2704), - [anon_sym_is] = ACTIONS(2704), - [anon_sym_BANGis] = ACTIONS(2704), - [anon_sym_in] = ACTIONS(2704), - [anon_sym_BANGin] = ACTIONS(2704), - [anon_sym_match] = ACTIONS(2704), - [anon_sym_select] = ACTIONS(2704), - [anon_sym_STAR_EQ] = ACTIONS(2704), - [anon_sym_SLASH_EQ] = ACTIONS(2704), - [anon_sym_PERCENT_EQ] = ACTIONS(2704), - [anon_sym_LT_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_GT_EQ] = ACTIONS(2704), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2704), - [anon_sym_AMP_EQ] = ACTIONS(2704), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2704), - [anon_sym_PLUS_EQ] = ACTIONS(2704), - [anon_sym_DASH_EQ] = ACTIONS(2704), - [anon_sym_PIPE_EQ] = ACTIONS(2704), - [anon_sym_CARET_EQ] = ACTIONS(2704), - [anon_sym_COLON_EQ] = ACTIONS(2704), - [anon_sym_lock] = ACTIONS(2704), - [anon_sym_rlock] = ACTIONS(2704), - [anon_sym_unsafe] = ACTIONS(2704), - [anon_sym_sql] = ACTIONS(2704), - [sym_int_literal] = ACTIONS(2704), - [sym_float_literal] = ACTIONS(2704), - [sym_rune_literal] = ACTIONS(2704), - [anon_sym_AT] = ACTIONS(2704), - [anon_sym_shared] = ACTIONS(2704), - [anon_sym_map_LBRACK] = ACTIONS(2704), - [anon_sym_chan] = ACTIONS(2704), - [anon_sym_thread] = ACTIONS(2704), - [anon_sym_atomic] = ACTIONS(2704), - [anon_sym_assert] = ACTIONS(2704), - [anon_sym_defer] = ACTIONS(2704), - [anon_sym_goto] = ACTIONS(2704), - [anon_sym_break] = ACTIONS(2704), - [anon_sym_continue] = ACTIONS(2704), - [anon_sym_return] = ACTIONS(2704), - [anon_sym_DOLLARfor] = ACTIONS(2704), - [anon_sym_for] = ACTIONS(2704), - [anon_sym_POUND] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2704), - [anon_sym_AT_LBRACK] = ACTIONS(2704), - [sym___double_quote] = ACTIONS(2704), - [sym___single_quote] = ACTIONS(2704), - [sym___c_double_quote] = ACTIONS(2704), - [sym___c_single_quote] = ACTIONS(2704), - [sym___r_double_quote] = ACTIONS(2704), - [sym___r_single_quote] = ACTIONS(2704), + [ts_builtin_sym_end] = ACTIONS(2968), + [sym_identifier] = ACTIONS(2970), + [anon_sym_LF] = ACTIONS(2970), + [anon_sym_CR] = ACTIONS(2970), + [anon_sym_CR_LF] = ACTIONS(2970), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2970), + [anon_sym_as] = ACTIONS(2970), + [anon_sym_LBRACE] = ACTIONS(2970), + [anon_sym_COMMA] = ACTIONS(2970), + [anon_sym_const] = ACTIONS(2970), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_EQ] = ACTIONS(2970), + [anon_sym___global] = ACTIONS(2970), + [anon_sym_type] = ACTIONS(2970), + [anon_sym_PIPE] = ACTIONS(2970), + [anon_sym_fn] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2970), + [anon_sym_DASH] = ACTIONS(2970), + [anon_sym_STAR] = ACTIONS(2970), + [anon_sym_SLASH] = ACTIONS(2970), + [anon_sym_PERCENT] = ACTIONS(2970), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_GT] = ACTIONS(2970), + [anon_sym_EQ_EQ] = ACTIONS(2970), + [anon_sym_BANG_EQ] = ACTIONS(2970), + [anon_sym_LT_EQ] = ACTIONS(2970), + [anon_sym_GT_EQ] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2968), + [anon_sym_struct] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_pub] = ACTIONS(2970), + [anon_sym_mut] = ACTIONS(2970), + [anon_sym_enum] = ACTIONS(2970), + [anon_sym_interface] = ACTIONS(2970), + [anon_sym_PLUS_PLUS] = ACTIONS(2970), + [anon_sym_DASH_DASH] = ACTIONS(2970), + [anon_sym_QMARK] = ACTIONS(2970), + [anon_sym_BANG] = ACTIONS(2970), + [anon_sym_go] = ACTIONS(2970), + [anon_sym_spawn] = ACTIONS(2970), + [anon_sym_json_DOTdecode] = ACTIONS(2970), + [anon_sym_LBRACK2] = ACTIONS(2970), + [anon_sym_TILDE] = ACTIONS(2970), + [anon_sym_CARET] = ACTIONS(2970), + [anon_sym_AMP] = ACTIONS(2970), + [anon_sym_LT_DASH] = ACTIONS(2970), + [anon_sym_LT_LT] = ACTIONS(2970), + [anon_sym_GT_GT] = ACTIONS(2970), + [anon_sym_GT_GT_GT] = ACTIONS(2970), + [anon_sym_AMP_CARET] = ACTIONS(2970), + [anon_sym_AMP_AMP] = ACTIONS(2970), + [anon_sym_PIPE_PIPE] = ACTIONS(2970), + [anon_sym_or] = ACTIONS(2970), + [sym_none] = ACTIONS(2970), + [sym_true] = ACTIONS(2970), + [sym_false] = ACTIONS(2970), + [sym_nil] = ACTIONS(2970), + [anon_sym_QMARK_DOT] = ACTIONS(2970), + [anon_sym_POUND_LBRACK] = ACTIONS(2970), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_DOLLARif] = ACTIONS(2970), + [anon_sym_is] = ACTIONS(2970), + [anon_sym_BANGis] = ACTIONS(2970), + [anon_sym_in] = ACTIONS(2970), + [anon_sym_BANGin] = ACTIONS(2970), + [anon_sym_match] = ACTIONS(2970), + [anon_sym_select] = ACTIONS(2970), + [anon_sym_STAR_EQ] = ACTIONS(2970), + [anon_sym_SLASH_EQ] = ACTIONS(2970), + [anon_sym_PERCENT_EQ] = ACTIONS(2970), + [anon_sym_LT_LT_EQ] = ACTIONS(2970), + [anon_sym_GT_GT_EQ] = ACTIONS(2970), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2970), + [anon_sym_AMP_EQ] = ACTIONS(2970), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2970), + [anon_sym_PLUS_EQ] = ACTIONS(2970), + [anon_sym_DASH_EQ] = ACTIONS(2970), + [anon_sym_PIPE_EQ] = ACTIONS(2970), + [anon_sym_CARET_EQ] = ACTIONS(2970), + [anon_sym_COLON_EQ] = ACTIONS(2970), + [anon_sym_lock] = ACTIONS(2970), + [anon_sym_rlock] = ACTIONS(2970), + [anon_sym_unsafe] = ACTIONS(2970), + [anon_sym_sql] = ACTIONS(2970), + [sym_int_literal] = ACTIONS(2970), + [sym_float_literal] = ACTIONS(2970), + [sym_rune_literal] = ACTIONS(2970), + [anon_sym_AT] = ACTIONS(2970), + [anon_sym_shared] = ACTIONS(2970), + [anon_sym_map_LBRACK] = ACTIONS(2970), + [anon_sym_chan] = ACTIONS(2970), + [anon_sym_thread] = ACTIONS(2970), + [anon_sym_atomic] = ACTIONS(2970), + [anon_sym_assert] = ACTIONS(2970), + [anon_sym_defer] = ACTIONS(2970), + [anon_sym_goto] = ACTIONS(2970), + [anon_sym_break] = ACTIONS(2970), + [anon_sym_continue] = ACTIONS(2970), + [anon_sym_return] = ACTIONS(2970), + [anon_sym_DOLLARfor] = ACTIONS(2970), + [anon_sym_for] = ACTIONS(2970), + [anon_sym_POUND] = ACTIONS(2970), + [anon_sym_asm] = ACTIONS(2970), + [anon_sym_AT_LBRACK] = ACTIONS(2970), + [sym___double_quote] = ACTIONS(2970), + [sym___single_quote] = ACTIONS(2970), + [sym___c_double_quote] = ACTIONS(2970), + [sym___c_single_quote] = ACTIONS(2970), + [sym___r_double_quote] = ACTIONS(2970), + [sym___r_single_quote] = ACTIONS(2970), }, [897] = { - [ts_builtin_sym_end] = ACTIONS(2983), - [sym_identifier] = ACTIONS(2985), - [anon_sym_LF] = ACTIONS(2985), - [anon_sym_CR] = ACTIONS(2985), - [anon_sym_CR_LF] = ACTIONS(2985), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2985), - [anon_sym_as] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2985), - [anon_sym_COMMA] = ACTIONS(2985), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2985), - [anon_sym_EQ] = ACTIONS(2985), - [anon_sym___global] = ACTIONS(2985), - [anon_sym_type] = ACTIONS(2985), - [anon_sym_PIPE] = ACTIONS(2985), - [anon_sym_fn] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_SLASH] = ACTIONS(2985), - [anon_sym_PERCENT] = ACTIONS(2985), - [anon_sym_LT] = ACTIONS(2985), - [anon_sym_GT] = ACTIONS(2985), - [anon_sym_EQ_EQ] = ACTIONS(2985), - [anon_sym_BANG_EQ] = ACTIONS(2985), - [anon_sym_LT_EQ] = ACTIONS(2985), - [anon_sym_GT_EQ] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_union] = ACTIONS(2985), - [anon_sym_pub] = ACTIONS(2985), - [anon_sym_mut] = ACTIONS(2985), - [anon_sym_enum] = ACTIONS(2985), - [anon_sym_interface] = ACTIONS(2985), - [anon_sym_PLUS_PLUS] = ACTIONS(2985), - [anon_sym_DASH_DASH] = ACTIONS(2985), - [anon_sym_QMARK] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_go] = ACTIONS(2985), - [anon_sym_spawn] = ACTIONS(2985), - [anon_sym_json_DOTdecode] = ACTIONS(2985), - [anon_sym_LBRACK2] = ACTIONS(2985), - [anon_sym_TILDE] = ACTIONS(2985), - [anon_sym_CARET] = ACTIONS(2985), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_LT_DASH] = ACTIONS(2985), - [anon_sym_LT_LT] = ACTIONS(2985), - [anon_sym_GT_GT] = ACTIONS(2985), - [anon_sym_GT_GT_GT] = ACTIONS(2985), - [anon_sym_AMP_CARET] = ACTIONS(2985), - [anon_sym_AMP_AMP] = ACTIONS(2985), - [anon_sym_PIPE_PIPE] = ACTIONS(2985), - [anon_sym_or] = ACTIONS(2985), - [sym_none] = ACTIONS(2985), - [sym_true] = ACTIONS(2985), - [sym_false] = ACTIONS(2985), - [sym_nil] = ACTIONS(2985), - [anon_sym_QMARK_DOT] = ACTIONS(2985), - [anon_sym_POUND_LBRACK] = ACTIONS(2985), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_DOLLARif] = ACTIONS(2985), - [anon_sym_is] = ACTIONS(2985), - [anon_sym_BANGis] = ACTIONS(2985), - [anon_sym_in] = ACTIONS(2985), - [anon_sym_BANGin] = ACTIONS(2985), - [anon_sym_match] = ACTIONS(2985), - [anon_sym_select] = ACTIONS(2985), - [anon_sym_STAR_EQ] = ACTIONS(2985), - [anon_sym_SLASH_EQ] = ACTIONS(2985), - [anon_sym_PERCENT_EQ] = ACTIONS(2985), - [anon_sym_LT_LT_EQ] = ACTIONS(2985), - [anon_sym_GT_GT_EQ] = ACTIONS(2985), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), - [anon_sym_AMP_EQ] = ACTIONS(2985), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2985), - [anon_sym_PLUS_EQ] = ACTIONS(2985), - [anon_sym_DASH_EQ] = ACTIONS(2985), - [anon_sym_PIPE_EQ] = ACTIONS(2985), - [anon_sym_CARET_EQ] = ACTIONS(2985), - [anon_sym_COLON_EQ] = ACTIONS(2985), - [anon_sym_lock] = ACTIONS(2985), - [anon_sym_rlock] = ACTIONS(2985), - [anon_sym_unsafe] = ACTIONS(2985), - [anon_sym_sql] = ACTIONS(2985), - [sym_int_literal] = ACTIONS(2985), - [sym_float_literal] = ACTIONS(2985), - [sym_rune_literal] = ACTIONS(2985), - [anon_sym_AT] = ACTIONS(2985), - [anon_sym_shared] = ACTIONS(2985), - [anon_sym_map_LBRACK] = ACTIONS(2985), - [anon_sym_chan] = ACTIONS(2985), - [anon_sym_thread] = ACTIONS(2985), - [anon_sym_atomic] = ACTIONS(2985), - [anon_sym_assert] = ACTIONS(2985), - [anon_sym_defer] = ACTIONS(2985), - [anon_sym_goto] = ACTIONS(2985), - [anon_sym_break] = ACTIONS(2985), - [anon_sym_continue] = ACTIONS(2985), - [anon_sym_return] = ACTIONS(2985), - [anon_sym_DOLLARfor] = ACTIONS(2985), - [anon_sym_for] = ACTIONS(2985), - [anon_sym_POUND] = ACTIONS(2985), - [anon_sym_asm] = ACTIONS(2985), - [anon_sym_AT_LBRACK] = ACTIONS(2985), - [sym___double_quote] = ACTIONS(2985), - [sym___single_quote] = ACTIONS(2985), - [sym___c_double_quote] = ACTIONS(2985), - [sym___c_single_quote] = ACTIONS(2985), - [sym___r_double_quote] = ACTIONS(2985), - [sym___r_single_quote] = ACTIONS(2985), - }, - [898] = { - [ts_builtin_sym_end] = ACTIONS(2987), - [sym_identifier] = ACTIONS(2989), - [anon_sym_LF] = ACTIONS(2989), - [anon_sym_CR] = ACTIONS(2989), - [anon_sym_CR_LF] = ACTIONS(2989), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2989), - [anon_sym_as] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2989), - [anon_sym_COMMA] = ACTIONS(2989), - [anon_sym_const] = ACTIONS(2989), - [anon_sym_LPAREN] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(2989), - [anon_sym___global] = ACTIONS(2989), - [anon_sym_type] = ACTIONS(2989), - [anon_sym_PIPE] = ACTIONS(2989), - [anon_sym_fn] = ACTIONS(2989), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2989), - [anon_sym_SLASH] = ACTIONS(2989), - [anon_sym_PERCENT] = ACTIONS(2989), - [anon_sym_LT] = ACTIONS(2989), - [anon_sym_GT] = ACTIONS(2989), - [anon_sym_EQ_EQ] = ACTIONS(2989), - [anon_sym_BANG_EQ] = ACTIONS(2989), - [anon_sym_LT_EQ] = ACTIONS(2989), - [anon_sym_GT_EQ] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_union] = ACTIONS(2989), - [anon_sym_pub] = ACTIONS(2989), - [anon_sym_mut] = ACTIONS(2989), - [anon_sym_enum] = ACTIONS(2989), - [anon_sym_interface] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_go] = ACTIONS(2989), - [anon_sym_spawn] = ACTIONS(2989), - [anon_sym_json_DOTdecode] = ACTIONS(2989), - [anon_sym_LBRACK2] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_CARET] = ACTIONS(2989), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_LT_DASH] = ACTIONS(2989), - [anon_sym_LT_LT] = ACTIONS(2989), - [anon_sym_GT_GT] = ACTIONS(2989), - [anon_sym_GT_GT_GT] = ACTIONS(2989), - [anon_sym_AMP_CARET] = ACTIONS(2989), - [anon_sym_AMP_AMP] = ACTIONS(2989), - [anon_sym_PIPE_PIPE] = ACTIONS(2989), - [anon_sym_or] = ACTIONS(2989), - [sym_none] = ACTIONS(2989), - [sym_true] = ACTIONS(2989), - [sym_false] = ACTIONS(2989), - [sym_nil] = ACTIONS(2989), - [anon_sym_QMARK_DOT] = ACTIONS(2989), - [anon_sym_POUND_LBRACK] = ACTIONS(2989), - [anon_sym_if] = ACTIONS(2989), - [anon_sym_DOLLARif] = ACTIONS(2989), - [anon_sym_is] = ACTIONS(2989), - [anon_sym_BANGis] = ACTIONS(2989), - [anon_sym_in] = ACTIONS(2989), - [anon_sym_BANGin] = ACTIONS(2989), - [anon_sym_match] = ACTIONS(2989), - [anon_sym_select] = ACTIONS(2989), - [anon_sym_STAR_EQ] = ACTIONS(2989), - [anon_sym_SLASH_EQ] = ACTIONS(2989), - [anon_sym_PERCENT_EQ] = ACTIONS(2989), - [anon_sym_LT_LT_EQ] = ACTIONS(2989), - [anon_sym_GT_GT_EQ] = ACTIONS(2989), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2989), - [anon_sym_AMP_EQ] = ACTIONS(2989), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2989), - [anon_sym_PLUS_EQ] = ACTIONS(2989), - [anon_sym_DASH_EQ] = ACTIONS(2989), - [anon_sym_PIPE_EQ] = ACTIONS(2989), - [anon_sym_CARET_EQ] = ACTIONS(2989), - [anon_sym_COLON_EQ] = ACTIONS(2989), - [anon_sym_lock] = ACTIONS(2989), - [anon_sym_rlock] = ACTIONS(2989), - [anon_sym_unsafe] = ACTIONS(2989), - [anon_sym_sql] = ACTIONS(2989), - [sym_int_literal] = ACTIONS(2989), - [sym_float_literal] = ACTIONS(2989), - [sym_rune_literal] = ACTIONS(2989), - [anon_sym_AT] = ACTIONS(2989), - [anon_sym_shared] = ACTIONS(2989), - [anon_sym_map_LBRACK] = ACTIONS(2989), - [anon_sym_chan] = ACTIONS(2989), - [anon_sym_thread] = ACTIONS(2989), - [anon_sym_atomic] = ACTIONS(2989), - [anon_sym_assert] = ACTIONS(2989), - [anon_sym_defer] = ACTIONS(2989), - [anon_sym_goto] = ACTIONS(2989), - [anon_sym_break] = ACTIONS(2989), - [anon_sym_continue] = ACTIONS(2989), - [anon_sym_return] = ACTIONS(2989), - [anon_sym_DOLLARfor] = ACTIONS(2989), - [anon_sym_for] = ACTIONS(2989), - [anon_sym_POUND] = ACTIONS(2989), - [anon_sym_asm] = ACTIONS(2989), - [anon_sym_AT_LBRACK] = ACTIONS(2989), - [sym___double_quote] = ACTIONS(2989), - [sym___single_quote] = ACTIONS(2989), - [sym___c_double_quote] = ACTIONS(2989), - [sym___c_single_quote] = ACTIONS(2989), - [sym___r_double_quote] = ACTIONS(2989), - [sym___r_single_quote] = ACTIONS(2989), - }, - [899] = { - [ts_builtin_sym_end] = ACTIONS(2991), - [sym_identifier] = ACTIONS(2993), - [anon_sym_LF] = ACTIONS(2993), - [anon_sym_CR] = ACTIONS(2993), - [anon_sym_CR_LF] = ACTIONS(2993), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2993), - [anon_sym_as] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2993), - [anon_sym_COMMA] = ACTIONS(2993), - [anon_sym_const] = ACTIONS(2993), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_EQ] = ACTIONS(2993), - [anon_sym___global] = ACTIONS(2993), - [anon_sym_type] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2993), - [anon_sym_fn] = ACTIONS(2993), - [anon_sym_PLUS] = ACTIONS(2993), - [anon_sym_DASH] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2993), - [anon_sym_SLASH] = ACTIONS(2993), - [anon_sym_PERCENT] = ACTIONS(2993), - [anon_sym_LT] = ACTIONS(2993), - [anon_sym_GT] = ACTIONS(2993), - [anon_sym_EQ_EQ] = ACTIONS(2993), - [anon_sym_BANG_EQ] = ACTIONS(2993), - [anon_sym_LT_EQ] = ACTIONS(2993), - [anon_sym_GT_EQ] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_struct] = ACTIONS(2993), - [anon_sym_union] = ACTIONS(2993), - [anon_sym_pub] = ACTIONS(2993), - [anon_sym_mut] = ACTIONS(2993), - [anon_sym_enum] = ACTIONS(2993), - [anon_sym_interface] = ACTIONS(2993), - [anon_sym_PLUS_PLUS] = ACTIONS(2993), - [anon_sym_DASH_DASH] = ACTIONS(2993), - [anon_sym_QMARK] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2993), - [anon_sym_go] = ACTIONS(2993), - [anon_sym_spawn] = ACTIONS(2993), - [anon_sym_json_DOTdecode] = ACTIONS(2993), - [anon_sym_LBRACK2] = ACTIONS(2993), - [anon_sym_TILDE] = ACTIONS(2993), - [anon_sym_CARET] = ACTIONS(2993), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_LT_DASH] = ACTIONS(2993), - [anon_sym_LT_LT] = ACTIONS(2993), - [anon_sym_GT_GT] = ACTIONS(2993), - [anon_sym_GT_GT_GT] = ACTIONS(2993), - [anon_sym_AMP_CARET] = ACTIONS(2993), - [anon_sym_AMP_AMP] = ACTIONS(2993), - [anon_sym_PIPE_PIPE] = ACTIONS(2993), - [anon_sym_or] = ACTIONS(2993), - [sym_none] = ACTIONS(2993), - [sym_true] = ACTIONS(2993), - [sym_false] = ACTIONS(2993), - [sym_nil] = ACTIONS(2993), - [anon_sym_QMARK_DOT] = ACTIONS(2993), - [anon_sym_POUND_LBRACK] = ACTIONS(2993), - [anon_sym_if] = ACTIONS(2993), - [anon_sym_DOLLARif] = ACTIONS(2993), - [anon_sym_is] = ACTIONS(2993), - [anon_sym_BANGis] = ACTIONS(2993), - [anon_sym_in] = ACTIONS(2993), - [anon_sym_BANGin] = ACTIONS(2993), - [anon_sym_match] = ACTIONS(2993), - [anon_sym_select] = ACTIONS(2993), - [anon_sym_STAR_EQ] = ACTIONS(2993), - [anon_sym_SLASH_EQ] = ACTIONS(2993), - [anon_sym_PERCENT_EQ] = ACTIONS(2993), - [anon_sym_LT_LT_EQ] = ACTIONS(2993), - [anon_sym_GT_GT_EQ] = ACTIONS(2993), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2993), - [anon_sym_AMP_EQ] = ACTIONS(2993), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2993), - [anon_sym_PLUS_EQ] = ACTIONS(2993), - [anon_sym_DASH_EQ] = ACTIONS(2993), - [anon_sym_PIPE_EQ] = ACTIONS(2993), - [anon_sym_CARET_EQ] = ACTIONS(2993), - [anon_sym_COLON_EQ] = ACTIONS(2993), - [anon_sym_lock] = ACTIONS(2993), - [anon_sym_rlock] = ACTIONS(2993), - [anon_sym_unsafe] = ACTIONS(2993), - [anon_sym_sql] = ACTIONS(2993), - [sym_int_literal] = ACTIONS(2993), - [sym_float_literal] = ACTIONS(2993), - [sym_rune_literal] = ACTIONS(2993), - [anon_sym_AT] = ACTIONS(2993), - [anon_sym_shared] = ACTIONS(2993), - [anon_sym_map_LBRACK] = ACTIONS(2993), - [anon_sym_chan] = ACTIONS(2993), - [anon_sym_thread] = ACTIONS(2993), - [anon_sym_atomic] = ACTIONS(2993), - [anon_sym_assert] = ACTIONS(2993), - [anon_sym_defer] = ACTIONS(2993), - [anon_sym_goto] = ACTIONS(2993), - [anon_sym_break] = ACTIONS(2993), - [anon_sym_continue] = ACTIONS(2993), - [anon_sym_return] = ACTIONS(2993), - [anon_sym_DOLLARfor] = ACTIONS(2993), - [anon_sym_for] = ACTIONS(2993), - [anon_sym_POUND] = ACTIONS(2993), - [anon_sym_asm] = ACTIONS(2993), - [anon_sym_AT_LBRACK] = ACTIONS(2993), - [sym___double_quote] = ACTIONS(2993), - [sym___single_quote] = ACTIONS(2993), - [sym___c_double_quote] = ACTIONS(2993), - [sym___c_single_quote] = ACTIONS(2993), - [sym___r_double_quote] = ACTIONS(2993), - [sym___r_single_quote] = ACTIONS(2993), - }, - [900] = { - [ts_builtin_sym_end] = ACTIONS(2995), - [sym_identifier] = ACTIONS(2997), - [anon_sym_LF] = ACTIONS(2997), - [anon_sym_CR] = ACTIONS(2997), - [anon_sym_CR_LF] = ACTIONS(2997), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_as] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(2997), - [anon_sym_const] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(2997), - [anon_sym_EQ] = ACTIONS(2997), - [anon_sym___global] = ACTIONS(2997), - [anon_sym_type] = ACTIONS(2997), - [anon_sym_PIPE] = ACTIONS(2997), - [anon_sym_fn] = ACTIONS(2997), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_STAR] = ACTIONS(2997), - [anon_sym_SLASH] = ACTIONS(2997), - [anon_sym_PERCENT] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(2997), - [anon_sym_EQ_EQ] = ACTIONS(2997), - [anon_sym_BANG_EQ] = ACTIONS(2997), - [anon_sym_LT_EQ] = ACTIONS(2997), - [anon_sym_GT_EQ] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_struct] = ACTIONS(2997), - [anon_sym_union] = ACTIONS(2997), - [anon_sym_pub] = ACTIONS(2997), - [anon_sym_mut] = ACTIONS(2997), - [anon_sym_enum] = ACTIONS(2997), - [anon_sym_interface] = ACTIONS(2997), - [anon_sym_PLUS_PLUS] = ACTIONS(2997), - [anon_sym_DASH_DASH] = ACTIONS(2997), - [anon_sym_QMARK] = ACTIONS(2997), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_go] = ACTIONS(2997), - [anon_sym_spawn] = ACTIONS(2997), - [anon_sym_json_DOTdecode] = ACTIONS(2997), - [anon_sym_LBRACK2] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_CARET] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_LT_DASH] = ACTIONS(2997), - [anon_sym_LT_LT] = ACTIONS(2997), - [anon_sym_GT_GT] = ACTIONS(2997), - [anon_sym_GT_GT_GT] = ACTIONS(2997), - [anon_sym_AMP_CARET] = ACTIONS(2997), - [anon_sym_AMP_AMP] = ACTIONS(2997), - [anon_sym_PIPE_PIPE] = ACTIONS(2997), - [anon_sym_or] = ACTIONS(2997), - [sym_none] = ACTIONS(2997), - [sym_true] = ACTIONS(2997), - [sym_false] = ACTIONS(2997), - [sym_nil] = ACTIONS(2997), - [anon_sym_QMARK_DOT] = ACTIONS(2997), - [anon_sym_POUND_LBRACK] = ACTIONS(2997), - [anon_sym_if] = ACTIONS(2997), - [anon_sym_DOLLARif] = ACTIONS(2997), - [anon_sym_is] = ACTIONS(2997), - [anon_sym_BANGis] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(2997), - [anon_sym_BANGin] = ACTIONS(2997), - [anon_sym_match] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [anon_sym_STAR_EQ] = ACTIONS(2997), - [anon_sym_SLASH_EQ] = ACTIONS(2997), - [anon_sym_PERCENT_EQ] = ACTIONS(2997), - [anon_sym_LT_LT_EQ] = ACTIONS(2997), - [anon_sym_GT_GT_EQ] = ACTIONS(2997), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2997), - [anon_sym_AMP_EQ] = ACTIONS(2997), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2997), - [anon_sym_PLUS_EQ] = ACTIONS(2997), - [anon_sym_DASH_EQ] = ACTIONS(2997), - [anon_sym_PIPE_EQ] = ACTIONS(2997), - [anon_sym_CARET_EQ] = ACTIONS(2997), - [anon_sym_COLON_EQ] = ACTIONS(2997), - [anon_sym_lock] = ACTIONS(2997), - [anon_sym_rlock] = ACTIONS(2997), - [anon_sym_unsafe] = ACTIONS(2997), - [anon_sym_sql] = ACTIONS(2997), - [sym_int_literal] = ACTIONS(2997), - [sym_float_literal] = ACTIONS(2997), - [sym_rune_literal] = ACTIONS(2997), - [anon_sym_AT] = ACTIONS(2997), - [anon_sym_shared] = ACTIONS(2997), - [anon_sym_map_LBRACK] = ACTIONS(2997), - [anon_sym_chan] = ACTIONS(2997), - [anon_sym_thread] = ACTIONS(2997), - [anon_sym_atomic] = ACTIONS(2997), - [anon_sym_assert] = ACTIONS(2997), - [anon_sym_defer] = ACTIONS(2997), - [anon_sym_goto] = ACTIONS(2997), - [anon_sym_break] = ACTIONS(2997), - [anon_sym_continue] = ACTIONS(2997), - [anon_sym_return] = ACTIONS(2997), - [anon_sym_DOLLARfor] = ACTIONS(2997), - [anon_sym_for] = ACTIONS(2997), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_asm] = ACTIONS(2997), - [anon_sym_AT_LBRACK] = ACTIONS(2997), - [sym___double_quote] = ACTIONS(2997), - [sym___single_quote] = ACTIONS(2997), - [sym___c_double_quote] = ACTIONS(2997), - [sym___c_single_quote] = ACTIONS(2997), - [sym___r_double_quote] = ACTIONS(2997), - [sym___r_single_quote] = ACTIONS(2997), + [ts_builtin_sym_end] = ACTIONS(2844), + [sym_identifier] = ACTIONS(2846), + [anon_sym_LF] = ACTIONS(2846), + [anon_sym_CR] = ACTIONS(2846), + [anon_sym_CR_LF] = ACTIONS(2846), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2846), + [anon_sym_as] = ACTIONS(2846), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_COMMA] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(2846), + [anon_sym_LPAREN] = ACTIONS(2846), + [anon_sym_EQ] = ACTIONS(2846), + [anon_sym___global] = ACTIONS(2846), + [anon_sym_type] = ACTIONS(2846), + [anon_sym_PIPE] = ACTIONS(2846), + [anon_sym_fn] = ACTIONS(2846), + [anon_sym_PLUS] = ACTIONS(2846), + [anon_sym_DASH] = ACTIONS(2846), + [anon_sym_STAR] = ACTIONS(2846), + [anon_sym_SLASH] = ACTIONS(2846), + [anon_sym_PERCENT] = ACTIONS(2846), + [anon_sym_LT] = ACTIONS(2846), + [anon_sym_GT] = ACTIONS(2846), + [anon_sym_EQ_EQ] = ACTIONS(2846), + [anon_sym_BANG_EQ] = ACTIONS(2846), + [anon_sym_LT_EQ] = ACTIONS(2846), + [anon_sym_GT_EQ] = ACTIONS(2846), + [anon_sym_LBRACK] = ACTIONS(2844), + [anon_sym_struct] = ACTIONS(2846), + [anon_sym_union] = ACTIONS(2846), + [anon_sym_pub] = ACTIONS(2846), + [anon_sym_mut] = ACTIONS(2846), + [anon_sym_enum] = ACTIONS(2846), + [anon_sym_interface] = ACTIONS(2846), + [anon_sym_PLUS_PLUS] = ACTIONS(2846), + [anon_sym_DASH_DASH] = ACTIONS(2846), + [anon_sym_QMARK] = ACTIONS(2846), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_go] = ACTIONS(2846), + [anon_sym_spawn] = ACTIONS(2846), + [anon_sym_json_DOTdecode] = ACTIONS(2846), + [anon_sym_LBRACK2] = ACTIONS(2846), + [anon_sym_TILDE] = ACTIONS(2846), + [anon_sym_CARET] = ACTIONS(2846), + [anon_sym_AMP] = ACTIONS(2846), + [anon_sym_LT_DASH] = ACTIONS(2846), + [anon_sym_LT_LT] = ACTIONS(2846), + [anon_sym_GT_GT] = ACTIONS(2846), + [anon_sym_GT_GT_GT] = ACTIONS(2846), + [anon_sym_AMP_CARET] = ACTIONS(2846), + [anon_sym_AMP_AMP] = ACTIONS(2846), + [anon_sym_PIPE_PIPE] = ACTIONS(2846), + [anon_sym_or] = ACTIONS(2846), + [sym_none] = ACTIONS(2846), + [sym_true] = ACTIONS(2846), + [sym_false] = ACTIONS(2846), + [sym_nil] = ACTIONS(2846), + [anon_sym_QMARK_DOT] = ACTIONS(2846), + [anon_sym_POUND_LBRACK] = ACTIONS(2846), + [anon_sym_if] = ACTIONS(2846), + [anon_sym_DOLLARif] = ACTIONS(2846), + [anon_sym_is] = ACTIONS(2846), + [anon_sym_BANGis] = ACTIONS(2846), + [anon_sym_in] = ACTIONS(2846), + [anon_sym_BANGin] = ACTIONS(2846), + [anon_sym_match] = ACTIONS(2846), + [anon_sym_select] = ACTIONS(2846), + [anon_sym_STAR_EQ] = ACTIONS(2846), + [anon_sym_SLASH_EQ] = ACTIONS(2846), + [anon_sym_PERCENT_EQ] = ACTIONS(2846), + [anon_sym_LT_LT_EQ] = ACTIONS(2846), + [anon_sym_GT_GT_EQ] = ACTIONS(2846), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2846), + [anon_sym_AMP_EQ] = ACTIONS(2846), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2846), + [anon_sym_PLUS_EQ] = ACTIONS(2846), + [anon_sym_DASH_EQ] = ACTIONS(2846), + [anon_sym_PIPE_EQ] = ACTIONS(2846), + [anon_sym_CARET_EQ] = ACTIONS(2846), + [anon_sym_COLON_EQ] = ACTIONS(2846), + [anon_sym_lock] = ACTIONS(2846), + [anon_sym_rlock] = ACTIONS(2846), + [anon_sym_unsafe] = ACTIONS(2846), + [anon_sym_sql] = ACTIONS(2846), + [sym_int_literal] = ACTIONS(2846), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2846), + [anon_sym_shared] = ACTIONS(2846), + [anon_sym_map_LBRACK] = ACTIONS(2846), + [anon_sym_chan] = ACTIONS(2846), + [anon_sym_thread] = ACTIONS(2846), + [anon_sym_atomic] = ACTIONS(2846), + [anon_sym_assert] = ACTIONS(2846), + [anon_sym_defer] = ACTIONS(2846), + [anon_sym_goto] = ACTIONS(2846), + [anon_sym_break] = ACTIONS(2846), + [anon_sym_continue] = ACTIONS(2846), + [anon_sym_return] = ACTIONS(2846), + [anon_sym_DOLLARfor] = ACTIONS(2846), + [anon_sym_for] = ACTIONS(2846), + [anon_sym_POUND] = ACTIONS(2846), + [anon_sym_asm] = ACTIONS(2846), + [anon_sym_AT_LBRACK] = ACTIONS(2846), + [sym___double_quote] = ACTIONS(2846), + [sym___single_quote] = ACTIONS(2846), + [sym___c_double_quote] = ACTIONS(2846), + [sym___c_single_quote] = ACTIONS(2846), + [sym___r_double_quote] = ACTIONS(2846), + [sym___r_single_quote] = ACTIONS(2846), + }, + [898] = { + [ts_builtin_sym_end] = ACTIONS(2972), + [sym_identifier] = ACTIONS(2974), + [anon_sym_LF] = ACTIONS(2974), + [anon_sym_CR] = ACTIONS(2974), + [anon_sym_CR_LF] = ACTIONS(2974), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2974), + [anon_sym_as] = ACTIONS(2974), + [anon_sym_LBRACE] = ACTIONS(2974), + [anon_sym_COMMA] = ACTIONS(2974), + [anon_sym_const] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2974), + [anon_sym_EQ] = ACTIONS(2974), + [anon_sym___global] = ACTIONS(2974), + [anon_sym_type] = ACTIONS(2974), + [anon_sym_PIPE] = ACTIONS(2974), + [anon_sym_fn] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(2974), + [anon_sym_SLASH] = ACTIONS(2974), + [anon_sym_PERCENT] = ACTIONS(2974), + [anon_sym_LT] = ACTIONS(2974), + [anon_sym_GT] = ACTIONS(2974), + [anon_sym_EQ_EQ] = ACTIONS(2974), + [anon_sym_BANG_EQ] = ACTIONS(2974), + [anon_sym_LT_EQ] = ACTIONS(2974), + [anon_sym_GT_EQ] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_struct] = ACTIONS(2974), + [anon_sym_union] = ACTIONS(2974), + [anon_sym_pub] = ACTIONS(2974), + [anon_sym_mut] = ACTIONS(2974), + [anon_sym_enum] = ACTIONS(2974), + [anon_sym_interface] = ACTIONS(2974), + [anon_sym_PLUS_PLUS] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(2974), + [anon_sym_QMARK] = ACTIONS(2974), + [anon_sym_BANG] = ACTIONS(2974), + [anon_sym_go] = ACTIONS(2974), + [anon_sym_spawn] = ACTIONS(2974), + [anon_sym_json_DOTdecode] = ACTIONS(2974), + [anon_sym_LBRACK2] = ACTIONS(2974), + [anon_sym_TILDE] = ACTIONS(2974), + [anon_sym_CARET] = ACTIONS(2974), + [anon_sym_AMP] = ACTIONS(2974), + [anon_sym_LT_DASH] = ACTIONS(2974), + [anon_sym_LT_LT] = ACTIONS(2974), + [anon_sym_GT_GT] = ACTIONS(2974), + [anon_sym_GT_GT_GT] = ACTIONS(2974), + [anon_sym_AMP_CARET] = ACTIONS(2974), + [anon_sym_AMP_AMP] = ACTIONS(2974), + [anon_sym_PIPE_PIPE] = ACTIONS(2974), + [anon_sym_or] = ACTIONS(2974), + [sym_none] = ACTIONS(2974), + [sym_true] = ACTIONS(2974), + [sym_false] = ACTIONS(2974), + [sym_nil] = ACTIONS(2974), + [anon_sym_QMARK_DOT] = ACTIONS(2974), + [anon_sym_POUND_LBRACK] = ACTIONS(2974), + [anon_sym_if] = ACTIONS(2974), + [anon_sym_DOLLARif] = ACTIONS(2974), + [anon_sym_is] = ACTIONS(2974), + [anon_sym_BANGis] = ACTIONS(2974), + [anon_sym_in] = ACTIONS(2974), + [anon_sym_BANGin] = ACTIONS(2974), + [anon_sym_match] = ACTIONS(2974), + [anon_sym_select] = ACTIONS(2974), + [anon_sym_STAR_EQ] = ACTIONS(2974), + [anon_sym_SLASH_EQ] = ACTIONS(2974), + [anon_sym_PERCENT_EQ] = ACTIONS(2974), + [anon_sym_LT_LT_EQ] = ACTIONS(2974), + [anon_sym_GT_GT_EQ] = ACTIONS(2974), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2974), + [anon_sym_AMP_EQ] = ACTIONS(2974), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2974), + [anon_sym_PLUS_EQ] = ACTIONS(2974), + [anon_sym_DASH_EQ] = ACTIONS(2974), + [anon_sym_PIPE_EQ] = ACTIONS(2974), + [anon_sym_CARET_EQ] = ACTIONS(2974), + [anon_sym_COLON_EQ] = ACTIONS(2974), + [anon_sym_lock] = ACTIONS(2974), + [anon_sym_rlock] = ACTIONS(2974), + [anon_sym_unsafe] = ACTIONS(2974), + [anon_sym_sql] = ACTIONS(2974), + [sym_int_literal] = ACTIONS(2974), + [sym_float_literal] = ACTIONS(2974), + [sym_rune_literal] = ACTIONS(2974), + [anon_sym_AT] = ACTIONS(2974), + [anon_sym_shared] = ACTIONS(2974), + [anon_sym_map_LBRACK] = ACTIONS(2974), + [anon_sym_chan] = ACTIONS(2974), + [anon_sym_thread] = ACTIONS(2974), + [anon_sym_atomic] = ACTIONS(2974), + [anon_sym_assert] = ACTIONS(2974), + [anon_sym_defer] = ACTIONS(2974), + [anon_sym_goto] = ACTIONS(2974), + [anon_sym_break] = ACTIONS(2974), + [anon_sym_continue] = ACTIONS(2974), + [anon_sym_return] = ACTIONS(2974), + [anon_sym_DOLLARfor] = ACTIONS(2974), + [anon_sym_for] = ACTIONS(2974), + [anon_sym_POUND] = ACTIONS(2974), + [anon_sym_asm] = ACTIONS(2974), + [anon_sym_AT_LBRACK] = ACTIONS(2974), + [sym___double_quote] = ACTIONS(2974), + [sym___single_quote] = ACTIONS(2974), + [sym___c_double_quote] = ACTIONS(2974), + [sym___c_single_quote] = ACTIONS(2974), + [sym___r_double_quote] = ACTIONS(2974), + [sym___r_single_quote] = ACTIONS(2974), + }, + [899] = { + [ts_builtin_sym_end] = ACTIONS(2976), + [sym_identifier] = ACTIONS(2978), + [anon_sym_LF] = ACTIONS(2978), + [anon_sym_CR] = ACTIONS(2978), + [anon_sym_CR_LF] = ACTIONS(2978), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2978), + [anon_sym_as] = ACTIONS(2978), + [anon_sym_LBRACE] = ACTIONS(2978), + [anon_sym_COMMA] = ACTIONS(2978), + [anon_sym_const] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2978), + [anon_sym_EQ] = ACTIONS(2978), + [anon_sym___global] = ACTIONS(2978), + [anon_sym_type] = ACTIONS(2978), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_fn] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2978), + [anon_sym_DASH] = ACTIONS(2978), + [anon_sym_STAR] = ACTIONS(2978), + [anon_sym_SLASH] = ACTIONS(2978), + [anon_sym_PERCENT] = ACTIONS(2978), + [anon_sym_LT] = ACTIONS(2978), + [anon_sym_GT] = ACTIONS(2978), + [anon_sym_EQ_EQ] = ACTIONS(2978), + [anon_sym_BANG_EQ] = ACTIONS(2978), + [anon_sym_LT_EQ] = ACTIONS(2978), + [anon_sym_GT_EQ] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2976), + [anon_sym_struct] = ACTIONS(2978), + [anon_sym_union] = ACTIONS(2978), + [anon_sym_pub] = ACTIONS(2978), + [anon_sym_mut] = ACTIONS(2978), + [anon_sym_enum] = ACTIONS(2978), + [anon_sym_interface] = ACTIONS(2978), + [anon_sym_PLUS_PLUS] = ACTIONS(2978), + [anon_sym_DASH_DASH] = ACTIONS(2978), + [anon_sym_QMARK] = ACTIONS(2978), + [anon_sym_BANG] = ACTIONS(2978), + [anon_sym_go] = ACTIONS(2978), + [anon_sym_spawn] = ACTIONS(2978), + [anon_sym_json_DOTdecode] = ACTIONS(2978), + [anon_sym_LBRACK2] = ACTIONS(2978), + [anon_sym_TILDE] = ACTIONS(2978), + [anon_sym_CARET] = ACTIONS(2978), + [anon_sym_AMP] = ACTIONS(2978), + [anon_sym_LT_DASH] = ACTIONS(2978), + [anon_sym_LT_LT] = ACTIONS(2978), + [anon_sym_GT_GT] = ACTIONS(2978), + [anon_sym_GT_GT_GT] = ACTIONS(2978), + [anon_sym_AMP_CARET] = ACTIONS(2978), + [anon_sym_AMP_AMP] = ACTIONS(2978), + [anon_sym_PIPE_PIPE] = ACTIONS(2978), + [anon_sym_or] = ACTIONS(2978), + [sym_none] = ACTIONS(2978), + [sym_true] = ACTIONS(2978), + [sym_false] = ACTIONS(2978), + [sym_nil] = ACTIONS(2978), + [anon_sym_QMARK_DOT] = ACTIONS(2978), + [anon_sym_POUND_LBRACK] = ACTIONS(2978), + [anon_sym_if] = ACTIONS(2978), + [anon_sym_DOLLARif] = ACTIONS(2978), + [anon_sym_is] = ACTIONS(2978), + [anon_sym_BANGis] = ACTIONS(2978), + [anon_sym_in] = ACTIONS(2978), + [anon_sym_BANGin] = ACTIONS(2978), + [anon_sym_match] = ACTIONS(2978), + [anon_sym_select] = ACTIONS(2978), + [anon_sym_STAR_EQ] = ACTIONS(2978), + [anon_sym_SLASH_EQ] = ACTIONS(2978), + [anon_sym_PERCENT_EQ] = ACTIONS(2978), + [anon_sym_LT_LT_EQ] = ACTIONS(2978), + [anon_sym_GT_GT_EQ] = ACTIONS(2978), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2978), + [anon_sym_AMP_EQ] = ACTIONS(2978), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2978), + [anon_sym_PLUS_EQ] = ACTIONS(2978), + [anon_sym_DASH_EQ] = ACTIONS(2978), + [anon_sym_PIPE_EQ] = ACTIONS(2978), + [anon_sym_CARET_EQ] = ACTIONS(2978), + [anon_sym_COLON_EQ] = ACTIONS(2978), + [anon_sym_lock] = ACTIONS(2978), + [anon_sym_rlock] = ACTIONS(2978), + [anon_sym_unsafe] = ACTIONS(2978), + [anon_sym_sql] = ACTIONS(2978), + [sym_int_literal] = ACTIONS(2978), + [sym_float_literal] = ACTIONS(2978), + [sym_rune_literal] = ACTIONS(2978), + [anon_sym_AT] = ACTIONS(2978), + [anon_sym_shared] = ACTIONS(2978), + [anon_sym_map_LBRACK] = ACTIONS(2978), + [anon_sym_chan] = ACTIONS(2978), + [anon_sym_thread] = ACTIONS(2978), + [anon_sym_atomic] = ACTIONS(2978), + [anon_sym_assert] = ACTIONS(2978), + [anon_sym_defer] = ACTIONS(2978), + [anon_sym_goto] = ACTIONS(2978), + [anon_sym_break] = ACTIONS(2978), + [anon_sym_continue] = ACTIONS(2978), + [anon_sym_return] = ACTIONS(2978), + [anon_sym_DOLLARfor] = ACTIONS(2978), + [anon_sym_for] = ACTIONS(2978), + [anon_sym_POUND] = ACTIONS(2978), + [anon_sym_asm] = ACTIONS(2978), + [anon_sym_AT_LBRACK] = ACTIONS(2978), + [sym___double_quote] = ACTIONS(2978), + [sym___single_quote] = ACTIONS(2978), + [sym___c_double_quote] = ACTIONS(2978), + [sym___c_single_quote] = ACTIONS(2978), + [sym___r_double_quote] = ACTIONS(2978), + [sym___r_single_quote] = ACTIONS(2978), + }, + [900] = { + [ts_builtin_sym_end] = ACTIONS(2980), + [sym_identifier] = ACTIONS(2982), + [anon_sym_LF] = ACTIONS(2982), + [anon_sym_CR] = ACTIONS(2982), + [anon_sym_CR_LF] = ACTIONS(2982), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2984), + [anon_sym_as] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_COMMA] = ACTIONS(2982), + [anon_sym_const] = ACTIONS(2982), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_EQ] = ACTIONS(2982), + [anon_sym___global] = ACTIONS(2982), + [anon_sym_type] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2984), + [anon_sym_fn] = ACTIONS(2982), + [anon_sym_PLUS] = ACTIONS(2984), + [anon_sym_DASH] = ACTIONS(2984), + [anon_sym_STAR] = ACTIONS(2984), + [anon_sym_SLASH] = ACTIONS(2984), + [anon_sym_PERCENT] = ACTIONS(2984), + [anon_sym_LT] = ACTIONS(2984), + [anon_sym_GT] = ACTIONS(2984), + [anon_sym_EQ_EQ] = ACTIONS(2984), + [anon_sym_BANG_EQ] = ACTIONS(2984), + [anon_sym_LT_EQ] = ACTIONS(2984), + [anon_sym_GT_EQ] = ACTIONS(2984), + [anon_sym_LBRACK] = ACTIONS(2987), + [anon_sym_struct] = ACTIONS(2982), + [anon_sym_union] = ACTIONS(2982), + [anon_sym_pub] = ACTIONS(2982), + [anon_sym_mut] = ACTIONS(2982), + [anon_sym_enum] = ACTIONS(2982), + [anon_sym_interface] = ACTIONS(2982), + [anon_sym_PLUS_PLUS] = ACTIONS(2984), + [anon_sym_DASH_DASH] = ACTIONS(2984), + [anon_sym_QMARK] = ACTIONS(2984), + [anon_sym_BANG] = ACTIONS(2984), + [anon_sym_go] = ACTIONS(2982), + [anon_sym_spawn] = ACTIONS(2982), + [anon_sym_json_DOTdecode] = ACTIONS(2982), + [anon_sym_LBRACK2] = ACTIONS(2984), + [anon_sym_TILDE] = ACTIONS(2982), + [anon_sym_CARET] = ACTIONS(2984), + [anon_sym_AMP] = ACTIONS(2984), + [anon_sym_LT_DASH] = ACTIONS(2982), + [anon_sym_LT_LT] = ACTIONS(2984), + [anon_sym_GT_GT] = ACTIONS(2984), + [anon_sym_GT_GT_GT] = ACTIONS(2984), + [anon_sym_AMP_CARET] = ACTIONS(2984), + [anon_sym_AMP_AMP] = ACTIONS(2984), + [anon_sym_PIPE_PIPE] = ACTIONS(2984), + [anon_sym_or] = ACTIONS(2984), + [sym_none] = ACTIONS(2982), + [sym_true] = ACTIONS(2982), + [sym_false] = ACTIONS(2982), + [sym_nil] = ACTIONS(2982), + [anon_sym_QMARK_DOT] = ACTIONS(2984), + [anon_sym_POUND_LBRACK] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2982), + [anon_sym_DOLLARif] = ACTIONS(2982), + [anon_sym_is] = ACTIONS(2984), + [anon_sym_BANGis] = ACTIONS(2984), + [anon_sym_in] = ACTIONS(2984), + [anon_sym_BANGin] = ACTIONS(2984), + [anon_sym_match] = ACTIONS(2982), + [anon_sym_select] = ACTIONS(2982), + [anon_sym_STAR_EQ] = ACTIONS(2982), + [anon_sym_SLASH_EQ] = ACTIONS(2982), + [anon_sym_PERCENT_EQ] = ACTIONS(2982), + [anon_sym_LT_LT_EQ] = ACTIONS(2982), + [anon_sym_GT_GT_EQ] = ACTIONS(2982), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2982), + [anon_sym_AMP_EQ] = ACTIONS(2982), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2982), + [anon_sym_PLUS_EQ] = ACTIONS(2982), + [anon_sym_DASH_EQ] = ACTIONS(2982), + [anon_sym_PIPE_EQ] = ACTIONS(2982), + [anon_sym_CARET_EQ] = ACTIONS(2982), + [anon_sym_COLON_EQ] = ACTIONS(2982), + [anon_sym_lock] = ACTIONS(2982), + [anon_sym_rlock] = ACTIONS(2982), + [anon_sym_unsafe] = ACTIONS(2982), + [anon_sym_sql] = ACTIONS(2982), + [sym_int_literal] = ACTIONS(2982), + [sym_float_literal] = ACTIONS(2982), + [sym_rune_literal] = ACTIONS(2982), + [anon_sym_AT] = ACTIONS(2982), + [anon_sym_shared] = ACTIONS(2982), + [anon_sym_map_LBRACK] = ACTIONS(2982), + [anon_sym_chan] = ACTIONS(2982), + [anon_sym_thread] = ACTIONS(2982), + [anon_sym_atomic] = ACTIONS(2982), + [anon_sym_assert] = ACTIONS(2982), + [anon_sym_defer] = ACTIONS(2982), + [anon_sym_goto] = ACTIONS(2982), + [anon_sym_break] = ACTIONS(2982), + [anon_sym_continue] = ACTIONS(2982), + [anon_sym_return] = ACTIONS(2982), + [anon_sym_DOLLARfor] = ACTIONS(2982), + [anon_sym_for] = ACTIONS(2982), + [anon_sym_POUND] = ACTIONS(2982), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym_AT_LBRACK] = ACTIONS(2982), + [sym___double_quote] = ACTIONS(2982), + [sym___single_quote] = ACTIONS(2982), + [sym___c_double_quote] = ACTIONS(2982), + [sym___c_single_quote] = ACTIONS(2982), + [sym___r_double_quote] = ACTIONS(2982), + [sym___r_single_quote] = ACTIONS(2982), }, [901] = { - [ts_builtin_sym_end] = ACTIONS(2999), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LF] = ACTIONS(3001), - [anon_sym_CR] = ACTIONS(3001), - [anon_sym_CR_LF] = ACTIONS(3001), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3001), - [anon_sym_as] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3001), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym___global] = ACTIONS(3001), - [anon_sym_type] = ACTIONS(3001), - [anon_sym_PIPE] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(3001), - [anon_sym_SLASH] = ACTIONS(3001), - [anon_sym_PERCENT] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_GT] = ACTIONS(3001), - [anon_sym_EQ_EQ] = ACTIONS(3001), - [anon_sym_BANG_EQ] = ACTIONS(3001), - [anon_sym_LT_EQ] = ACTIONS(3001), - [anon_sym_GT_EQ] = ACTIONS(3001), - [anon_sym_LBRACK] = ACTIONS(2999), - [anon_sym_struct] = ACTIONS(3001), - [anon_sym_union] = ACTIONS(3001), - [anon_sym_pub] = ACTIONS(3001), - [anon_sym_mut] = ACTIONS(3001), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_interface] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_QMARK] = ACTIONS(3001), - [anon_sym_BANG] = ACTIONS(3001), - [anon_sym_go] = ACTIONS(3001), - [anon_sym_spawn] = ACTIONS(3001), - [anon_sym_json_DOTdecode] = ACTIONS(3001), - [anon_sym_LBRACK2] = ACTIONS(3001), - [anon_sym_TILDE] = ACTIONS(3001), - [anon_sym_CARET] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3001), - [anon_sym_LT_DASH] = ACTIONS(3001), - [anon_sym_LT_LT] = ACTIONS(3001), - [anon_sym_GT_GT] = ACTIONS(3001), - [anon_sym_GT_GT_GT] = ACTIONS(3001), - [anon_sym_AMP_CARET] = ACTIONS(3001), - [anon_sym_AMP_AMP] = ACTIONS(3001), - [anon_sym_PIPE_PIPE] = ACTIONS(3001), - [anon_sym_or] = ACTIONS(3001), - [sym_none] = ACTIONS(3001), - [sym_true] = ACTIONS(3001), - [sym_false] = ACTIONS(3001), - [sym_nil] = ACTIONS(3001), - [anon_sym_QMARK_DOT] = ACTIONS(3001), - [anon_sym_POUND_LBRACK] = ACTIONS(3001), - [anon_sym_if] = ACTIONS(3001), - [anon_sym_DOLLARif] = ACTIONS(3001), - [anon_sym_is] = ACTIONS(3001), - [anon_sym_BANGis] = ACTIONS(3001), - [anon_sym_in] = ACTIONS(3001), - [anon_sym_BANGin] = ACTIONS(3001), - [anon_sym_match] = ACTIONS(3001), - [anon_sym_select] = ACTIONS(3001), - [anon_sym_STAR_EQ] = ACTIONS(3001), - [anon_sym_SLASH_EQ] = ACTIONS(3001), - [anon_sym_PERCENT_EQ] = ACTIONS(3001), - [anon_sym_LT_LT_EQ] = ACTIONS(3001), - [anon_sym_GT_GT_EQ] = ACTIONS(3001), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3001), - [anon_sym_AMP_EQ] = ACTIONS(3001), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3001), - [anon_sym_PLUS_EQ] = ACTIONS(3001), - [anon_sym_DASH_EQ] = ACTIONS(3001), - [anon_sym_PIPE_EQ] = ACTIONS(3001), - [anon_sym_CARET_EQ] = ACTIONS(3001), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_lock] = ACTIONS(3001), - [anon_sym_rlock] = ACTIONS(3001), - [anon_sym_unsafe] = ACTIONS(3001), - [anon_sym_sql] = ACTIONS(3001), - [sym_int_literal] = ACTIONS(3001), - [sym_float_literal] = ACTIONS(3001), - [sym_rune_literal] = ACTIONS(3001), - [anon_sym_AT] = ACTIONS(3001), - [anon_sym_shared] = ACTIONS(3001), - [anon_sym_map_LBRACK] = ACTIONS(3001), - [anon_sym_chan] = ACTIONS(3001), - [anon_sym_thread] = ACTIONS(3001), - [anon_sym_atomic] = ACTIONS(3001), - [anon_sym_assert] = ACTIONS(3001), - [anon_sym_defer] = ACTIONS(3001), - [anon_sym_goto] = ACTIONS(3001), - [anon_sym_break] = ACTIONS(3001), - [anon_sym_continue] = ACTIONS(3001), - [anon_sym_return] = ACTIONS(3001), - [anon_sym_DOLLARfor] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3001), - [anon_sym_POUND] = ACTIONS(3001), - [anon_sym_asm] = ACTIONS(3001), - [anon_sym_AT_LBRACK] = ACTIONS(3001), - [sym___double_quote] = ACTIONS(3001), - [sym___single_quote] = ACTIONS(3001), - [sym___c_double_quote] = ACTIONS(3001), - [sym___c_single_quote] = ACTIONS(3001), - [sym___r_double_quote] = ACTIONS(3001), - [sym___r_single_quote] = ACTIONS(3001), + [ts_builtin_sym_end] = ACTIONS(2990), + [sym_identifier] = ACTIONS(2992), + [anon_sym_LF] = ACTIONS(2992), + [anon_sym_CR] = ACTIONS(2992), + [anon_sym_CR_LF] = ACTIONS(2992), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2994), + [anon_sym_as] = ACTIONS(2994), + [anon_sym_LBRACE] = ACTIONS(2992), + [anon_sym_COMMA] = ACTIONS(2992), + [anon_sym_const] = ACTIONS(2992), + [anon_sym_LPAREN] = ACTIONS(2994), + [anon_sym_EQ] = ACTIONS(2992), + [anon_sym___global] = ACTIONS(2992), + [anon_sym_type] = ACTIONS(2992), + [anon_sym_PIPE] = ACTIONS(2994), + [anon_sym_fn] = ACTIONS(2992), + [anon_sym_PLUS] = ACTIONS(2994), + [anon_sym_DASH] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2994), + [anon_sym_SLASH] = ACTIONS(2994), + [anon_sym_PERCENT] = ACTIONS(2994), + [anon_sym_LT] = ACTIONS(2994), + [anon_sym_GT] = ACTIONS(2994), + [anon_sym_EQ_EQ] = ACTIONS(2994), + [anon_sym_BANG_EQ] = ACTIONS(2994), + [anon_sym_LT_EQ] = ACTIONS(2994), + [anon_sym_GT_EQ] = ACTIONS(2994), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_struct] = ACTIONS(2992), + [anon_sym_union] = ACTIONS(2992), + [anon_sym_pub] = ACTIONS(2992), + [anon_sym_mut] = ACTIONS(2992), + [anon_sym_enum] = ACTIONS(2992), + [anon_sym_interface] = ACTIONS(2992), + [anon_sym_PLUS_PLUS] = ACTIONS(2994), + [anon_sym_DASH_DASH] = ACTIONS(2994), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_BANG] = ACTIONS(2994), + [anon_sym_go] = ACTIONS(2992), + [anon_sym_spawn] = ACTIONS(2992), + [anon_sym_json_DOTdecode] = ACTIONS(2992), + [anon_sym_LBRACK2] = ACTIONS(2994), + [anon_sym_TILDE] = ACTIONS(2992), + [anon_sym_CARET] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2994), + [anon_sym_LT_DASH] = ACTIONS(2992), + [anon_sym_LT_LT] = ACTIONS(2994), + [anon_sym_GT_GT] = ACTIONS(2994), + [anon_sym_GT_GT_GT] = ACTIONS(2994), + [anon_sym_AMP_CARET] = ACTIONS(2994), + [anon_sym_AMP_AMP] = ACTIONS(2994), + [anon_sym_PIPE_PIPE] = ACTIONS(2994), + [anon_sym_or] = ACTIONS(2994), + [sym_none] = ACTIONS(2992), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [sym_nil] = ACTIONS(2992), + [anon_sym_QMARK_DOT] = ACTIONS(2994), + [anon_sym_POUND_LBRACK] = ACTIONS(2994), + [anon_sym_if] = ACTIONS(2992), + [anon_sym_DOLLARif] = ACTIONS(2992), + [anon_sym_is] = ACTIONS(2994), + [anon_sym_BANGis] = ACTIONS(2994), + [anon_sym_in] = ACTIONS(2994), + [anon_sym_BANGin] = ACTIONS(2994), + [anon_sym_match] = ACTIONS(2992), + [anon_sym_select] = ACTIONS(2992), + [anon_sym_STAR_EQ] = ACTIONS(2992), + [anon_sym_SLASH_EQ] = ACTIONS(2992), + [anon_sym_PERCENT_EQ] = ACTIONS(2992), + [anon_sym_LT_LT_EQ] = ACTIONS(2992), + [anon_sym_GT_GT_EQ] = ACTIONS(2992), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2992), + [anon_sym_AMP_EQ] = ACTIONS(2992), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2992), + [anon_sym_PLUS_EQ] = ACTIONS(2992), + [anon_sym_DASH_EQ] = ACTIONS(2992), + [anon_sym_PIPE_EQ] = ACTIONS(2992), + [anon_sym_CARET_EQ] = ACTIONS(2992), + [anon_sym_COLON_EQ] = ACTIONS(2992), + [anon_sym_lock] = ACTIONS(2992), + [anon_sym_rlock] = ACTIONS(2992), + [anon_sym_unsafe] = ACTIONS(2992), + [anon_sym_sql] = ACTIONS(2992), + [sym_int_literal] = ACTIONS(2992), + [sym_float_literal] = ACTIONS(2992), + [sym_rune_literal] = ACTIONS(2992), + [anon_sym_AT] = ACTIONS(2992), + [anon_sym_shared] = ACTIONS(2992), + [anon_sym_map_LBRACK] = ACTIONS(2992), + [anon_sym_chan] = ACTIONS(2992), + [anon_sym_thread] = ACTIONS(2992), + [anon_sym_atomic] = ACTIONS(2992), + [anon_sym_assert] = ACTIONS(2992), + [anon_sym_defer] = ACTIONS(2992), + [anon_sym_goto] = ACTIONS(2992), + [anon_sym_break] = ACTIONS(2992), + [anon_sym_continue] = ACTIONS(2992), + [anon_sym_return] = ACTIONS(2992), + [anon_sym_DOLLARfor] = ACTIONS(2992), + [anon_sym_for] = ACTIONS(2992), + [anon_sym_POUND] = ACTIONS(2992), + [anon_sym_asm] = ACTIONS(2992), + [anon_sym_AT_LBRACK] = ACTIONS(2992), + [sym___double_quote] = ACTIONS(2992), + [sym___single_quote] = ACTIONS(2992), + [sym___c_double_quote] = ACTIONS(2992), + [sym___c_single_quote] = ACTIONS(2992), + [sym___r_double_quote] = ACTIONS(2992), + [sym___r_single_quote] = ACTIONS(2992), }, [902] = { - [ts_builtin_sym_end] = ACTIONS(3003), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LF] = ACTIONS(3005), - [anon_sym_CR] = ACTIONS(3005), - [anon_sym_CR_LF] = ACTIONS(3005), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_as] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3005), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_const] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_EQ] = ACTIONS(3005), - [anon_sym___global] = ACTIONS(3005), - [anon_sym_type] = ACTIONS(3005), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_fn] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_SLASH] = ACTIONS(3005), - [anon_sym_PERCENT] = ACTIONS(3005), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_LT_EQ] = ACTIONS(3005), - [anon_sym_GT_EQ] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3005), - [anon_sym_pub] = ACTIONS(3005), - [anon_sym_mut] = ACTIONS(3005), - [anon_sym_enum] = ACTIONS(3005), - [anon_sym_interface] = ACTIONS(3005), - [anon_sym_PLUS_PLUS] = ACTIONS(3005), - [anon_sym_DASH_DASH] = ACTIONS(3005), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_go] = ACTIONS(3005), - [anon_sym_spawn] = ACTIONS(3005), - [anon_sym_json_DOTdecode] = ACTIONS(3005), - [anon_sym_LBRACK2] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3005), - [anon_sym_LT_DASH] = ACTIONS(3005), - [anon_sym_LT_LT] = ACTIONS(3005), - [anon_sym_GT_GT] = ACTIONS(3005), - [anon_sym_GT_GT_GT] = ACTIONS(3005), - [anon_sym_AMP_CARET] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(3005), - [anon_sym_PIPE_PIPE] = ACTIONS(3005), - [anon_sym_or] = ACTIONS(3005), - [sym_none] = ACTIONS(3005), - [sym_true] = ACTIONS(3005), - [sym_false] = ACTIONS(3005), - [sym_nil] = ACTIONS(3005), - [anon_sym_QMARK_DOT] = ACTIONS(3005), - [anon_sym_POUND_LBRACK] = ACTIONS(3005), - [anon_sym_if] = ACTIONS(3005), - [anon_sym_DOLLARif] = ACTIONS(3005), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3005), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_BANGin] = ACTIONS(3005), - [anon_sym_match] = ACTIONS(3005), - [anon_sym_select] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3005), - [anon_sym_SLASH_EQ] = ACTIONS(3005), - [anon_sym_PERCENT_EQ] = ACTIONS(3005), - [anon_sym_LT_LT_EQ] = ACTIONS(3005), - [anon_sym_GT_GT_EQ] = ACTIONS(3005), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3005), - [anon_sym_AMP_EQ] = ACTIONS(3005), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3005), - [anon_sym_PLUS_EQ] = ACTIONS(3005), - [anon_sym_DASH_EQ] = ACTIONS(3005), - [anon_sym_PIPE_EQ] = ACTIONS(3005), - [anon_sym_CARET_EQ] = ACTIONS(3005), - [anon_sym_COLON_EQ] = ACTIONS(3005), - [anon_sym_lock] = ACTIONS(3005), - [anon_sym_rlock] = ACTIONS(3005), - [anon_sym_unsafe] = ACTIONS(3005), - [anon_sym_sql] = ACTIONS(3005), - [sym_int_literal] = ACTIONS(3005), - [sym_float_literal] = ACTIONS(3005), - [sym_rune_literal] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(3005), - [anon_sym_shared] = ACTIONS(3005), - [anon_sym_map_LBRACK] = ACTIONS(3005), - [anon_sym_chan] = ACTIONS(3005), - [anon_sym_thread] = ACTIONS(3005), - [anon_sym_atomic] = ACTIONS(3005), - [anon_sym_assert] = ACTIONS(3005), - [anon_sym_defer] = ACTIONS(3005), - [anon_sym_goto] = ACTIONS(3005), - [anon_sym_break] = ACTIONS(3005), - [anon_sym_continue] = ACTIONS(3005), - [anon_sym_return] = ACTIONS(3005), - [anon_sym_DOLLARfor] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3005), - [anon_sym_POUND] = ACTIONS(3005), - [anon_sym_asm] = ACTIONS(3005), - [anon_sym_AT_LBRACK] = ACTIONS(3005), - [sym___double_quote] = ACTIONS(3005), - [sym___single_quote] = ACTIONS(3005), - [sym___c_double_quote] = ACTIONS(3005), - [sym___c_single_quote] = ACTIONS(3005), - [sym___r_double_quote] = ACTIONS(3005), - [sym___r_single_quote] = ACTIONS(3005), + [ts_builtin_sym_end] = ACTIONS(3000), + [sym_identifier] = ACTIONS(3002), + [anon_sym_LF] = ACTIONS(3002), + [anon_sym_CR] = ACTIONS(3002), + [anon_sym_CR_LF] = ACTIONS(3002), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3002), + [anon_sym_as] = ACTIONS(3002), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(3002), + [anon_sym_const] = ACTIONS(3002), + [anon_sym_LPAREN] = ACTIONS(3002), + [anon_sym_EQ] = ACTIONS(3002), + [anon_sym___global] = ACTIONS(3002), + [anon_sym_type] = ACTIONS(3002), + [anon_sym_PIPE] = ACTIONS(3002), + [anon_sym_fn] = ACTIONS(3002), + [anon_sym_PLUS] = ACTIONS(3002), + [anon_sym_DASH] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(3002), + [anon_sym_SLASH] = ACTIONS(3002), + [anon_sym_PERCENT] = ACTIONS(3002), + [anon_sym_LT] = ACTIONS(3002), + [anon_sym_GT] = ACTIONS(3002), + [anon_sym_EQ_EQ] = ACTIONS(3002), + [anon_sym_BANG_EQ] = ACTIONS(3002), + [anon_sym_LT_EQ] = ACTIONS(3002), + [anon_sym_GT_EQ] = ACTIONS(3002), + [anon_sym_LBRACK] = ACTIONS(3000), + [anon_sym_struct] = ACTIONS(3002), + [anon_sym_union] = ACTIONS(3002), + [anon_sym_pub] = ACTIONS(3002), + [anon_sym_mut] = ACTIONS(3002), + [anon_sym_enum] = ACTIONS(3002), + [anon_sym_interface] = ACTIONS(3002), + [anon_sym_PLUS_PLUS] = ACTIONS(3002), + [anon_sym_DASH_DASH] = ACTIONS(3002), + [anon_sym_QMARK] = ACTIONS(3002), + [anon_sym_BANG] = ACTIONS(3002), + [anon_sym_go] = ACTIONS(3002), + [anon_sym_spawn] = ACTIONS(3002), + [anon_sym_json_DOTdecode] = ACTIONS(3002), + [anon_sym_LBRACK2] = ACTIONS(3002), + [anon_sym_TILDE] = ACTIONS(3002), + [anon_sym_CARET] = ACTIONS(3002), + [anon_sym_AMP] = ACTIONS(3002), + [anon_sym_LT_DASH] = ACTIONS(3002), + [anon_sym_LT_LT] = ACTIONS(3002), + [anon_sym_GT_GT] = ACTIONS(3002), + [anon_sym_GT_GT_GT] = ACTIONS(3002), + [anon_sym_AMP_CARET] = ACTIONS(3002), + [anon_sym_AMP_AMP] = ACTIONS(3002), + [anon_sym_PIPE_PIPE] = ACTIONS(3002), + [anon_sym_or] = ACTIONS(3002), + [sym_none] = ACTIONS(3002), + [sym_true] = ACTIONS(3002), + [sym_false] = ACTIONS(3002), + [sym_nil] = ACTIONS(3002), + [anon_sym_QMARK_DOT] = ACTIONS(3002), + [anon_sym_POUND_LBRACK] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3002), + [anon_sym_DOLLARif] = ACTIONS(3002), + [anon_sym_is] = ACTIONS(3002), + [anon_sym_BANGis] = ACTIONS(3002), + [anon_sym_in] = ACTIONS(3002), + [anon_sym_BANGin] = ACTIONS(3002), + [anon_sym_match] = ACTIONS(3002), + [anon_sym_select] = ACTIONS(3002), + [anon_sym_STAR_EQ] = ACTIONS(3002), + [anon_sym_SLASH_EQ] = ACTIONS(3002), + [anon_sym_PERCENT_EQ] = ACTIONS(3002), + [anon_sym_LT_LT_EQ] = ACTIONS(3002), + [anon_sym_GT_GT_EQ] = ACTIONS(3002), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3002), + [anon_sym_AMP_EQ] = ACTIONS(3002), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3002), + [anon_sym_PLUS_EQ] = ACTIONS(3002), + [anon_sym_DASH_EQ] = ACTIONS(3002), + [anon_sym_PIPE_EQ] = ACTIONS(3002), + [anon_sym_CARET_EQ] = ACTIONS(3002), + [anon_sym_COLON_EQ] = ACTIONS(3002), + [anon_sym_lock] = ACTIONS(3002), + [anon_sym_rlock] = ACTIONS(3002), + [anon_sym_unsafe] = ACTIONS(3002), + [anon_sym_sql] = ACTIONS(3002), + [sym_int_literal] = ACTIONS(3002), + [sym_float_literal] = ACTIONS(3002), + [sym_rune_literal] = ACTIONS(3002), + [anon_sym_AT] = ACTIONS(3002), + [anon_sym_shared] = ACTIONS(3002), + [anon_sym_map_LBRACK] = ACTIONS(3002), + [anon_sym_chan] = ACTIONS(3002), + [anon_sym_thread] = ACTIONS(3002), + [anon_sym_atomic] = ACTIONS(3002), + [anon_sym_assert] = ACTIONS(3002), + [anon_sym_defer] = ACTIONS(3002), + [anon_sym_goto] = ACTIONS(3002), + [anon_sym_break] = ACTIONS(3002), + [anon_sym_continue] = ACTIONS(3002), + [anon_sym_return] = ACTIONS(3002), + [anon_sym_DOLLARfor] = ACTIONS(3002), + [anon_sym_for] = ACTIONS(3002), + [anon_sym_POUND] = ACTIONS(3002), + [anon_sym_asm] = ACTIONS(3002), + [anon_sym_AT_LBRACK] = ACTIONS(3002), + [sym___double_quote] = ACTIONS(3002), + [sym___single_quote] = ACTIONS(3002), + [sym___c_double_quote] = ACTIONS(3002), + [sym___c_single_quote] = ACTIONS(3002), + [sym___r_double_quote] = ACTIONS(3002), + [sym___r_single_quote] = ACTIONS(3002), }, [903] = { - [ts_builtin_sym_end] = ACTIONS(3007), - [sym_identifier] = ACTIONS(3009), - [anon_sym_LF] = ACTIONS(3009), - [anon_sym_CR] = ACTIONS(3009), - [anon_sym_CR_LF] = ACTIONS(3009), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3009), - [anon_sym_as] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_const] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3009), - [anon_sym_EQ] = ACTIONS(3009), - [anon_sym___global] = ACTIONS(3009), - [anon_sym_type] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3009), - [anon_sym_fn] = ACTIONS(3009), - [anon_sym_PLUS] = ACTIONS(3009), - [anon_sym_DASH] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3009), - [anon_sym_SLASH] = ACTIONS(3009), - [anon_sym_PERCENT] = ACTIONS(3009), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3009), - [anon_sym_EQ_EQ] = ACTIONS(3009), - [anon_sym_BANG_EQ] = ACTIONS(3009), - [anon_sym_LT_EQ] = ACTIONS(3009), - [anon_sym_GT_EQ] = ACTIONS(3009), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3009), - [anon_sym_union] = ACTIONS(3009), - [anon_sym_pub] = ACTIONS(3009), - [anon_sym_mut] = ACTIONS(3009), - [anon_sym_enum] = ACTIONS(3009), - [anon_sym_interface] = ACTIONS(3009), - [anon_sym_PLUS_PLUS] = ACTIONS(3009), - [anon_sym_DASH_DASH] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3009), - [anon_sym_BANG] = ACTIONS(3009), - [anon_sym_go] = ACTIONS(3009), - [anon_sym_spawn] = ACTIONS(3009), - [anon_sym_json_DOTdecode] = ACTIONS(3009), - [anon_sym_LBRACK2] = ACTIONS(3009), - [anon_sym_TILDE] = ACTIONS(3009), - [anon_sym_CARET] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_LT_DASH] = ACTIONS(3009), - [anon_sym_LT_LT] = ACTIONS(3009), - [anon_sym_GT_GT] = ACTIONS(3009), - [anon_sym_GT_GT_GT] = ACTIONS(3009), - [anon_sym_AMP_CARET] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3009), - [anon_sym_or] = ACTIONS(3009), - [sym_none] = ACTIONS(3009), - [sym_true] = ACTIONS(3009), - [sym_false] = ACTIONS(3009), - [sym_nil] = ACTIONS(3009), - [anon_sym_QMARK_DOT] = ACTIONS(3009), - [anon_sym_POUND_LBRACK] = ACTIONS(3009), - [anon_sym_if] = ACTIONS(3009), - [anon_sym_DOLLARif] = ACTIONS(3009), - [anon_sym_is] = ACTIONS(3009), - [anon_sym_BANGis] = ACTIONS(3009), - [anon_sym_in] = ACTIONS(3009), - [anon_sym_BANGin] = ACTIONS(3009), - [anon_sym_match] = ACTIONS(3009), - [anon_sym_select] = ACTIONS(3009), - [anon_sym_STAR_EQ] = ACTIONS(3009), - [anon_sym_SLASH_EQ] = ACTIONS(3009), - [anon_sym_PERCENT_EQ] = ACTIONS(3009), - [anon_sym_LT_LT_EQ] = ACTIONS(3009), - [anon_sym_GT_GT_EQ] = ACTIONS(3009), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3009), - [anon_sym_AMP_EQ] = ACTIONS(3009), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3009), - [anon_sym_PLUS_EQ] = ACTIONS(3009), - [anon_sym_DASH_EQ] = ACTIONS(3009), - [anon_sym_PIPE_EQ] = ACTIONS(3009), - [anon_sym_CARET_EQ] = ACTIONS(3009), - [anon_sym_COLON_EQ] = ACTIONS(3009), - [anon_sym_lock] = ACTIONS(3009), - [anon_sym_rlock] = ACTIONS(3009), - [anon_sym_unsafe] = ACTIONS(3009), - [anon_sym_sql] = ACTIONS(3009), - [sym_int_literal] = ACTIONS(3009), - [sym_float_literal] = ACTIONS(3009), - [sym_rune_literal] = ACTIONS(3009), - [anon_sym_AT] = ACTIONS(3009), - [anon_sym_shared] = ACTIONS(3009), - [anon_sym_map_LBRACK] = ACTIONS(3009), - [anon_sym_chan] = ACTIONS(3009), - [anon_sym_thread] = ACTIONS(3009), - [anon_sym_atomic] = ACTIONS(3009), - [anon_sym_assert] = ACTIONS(3009), - [anon_sym_defer] = ACTIONS(3009), - [anon_sym_goto] = ACTIONS(3009), - [anon_sym_break] = ACTIONS(3009), - [anon_sym_continue] = ACTIONS(3009), - [anon_sym_return] = ACTIONS(3009), - [anon_sym_DOLLARfor] = ACTIONS(3009), - [anon_sym_for] = ACTIONS(3009), - [anon_sym_POUND] = ACTIONS(3009), - [anon_sym_asm] = ACTIONS(3009), - [anon_sym_AT_LBRACK] = ACTIONS(3009), - [sym___double_quote] = ACTIONS(3009), - [sym___single_quote] = ACTIONS(3009), - [sym___c_double_quote] = ACTIONS(3009), - [sym___c_single_quote] = ACTIONS(3009), - [sym___r_double_quote] = ACTIONS(3009), - [sym___r_single_quote] = ACTIONS(3009), + [ts_builtin_sym_end] = ACTIONS(3004), + [sym_identifier] = ACTIONS(3006), + [anon_sym_LF] = ACTIONS(3006), + [anon_sym_CR] = ACTIONS(3006), + [anon_sym_CR_LF] = ACTIONS(3006), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3006), + [anon_sym_as] = ACTIONS(3006), + [anon_sym_LBRACE] = ACTIONS(3006), + [anon_sym_COMMA] = ACTIONS(3006), + [anon_sym_const] = ACTIONS(3006), + [anon_sym_LPAREN] = ACTIONS(3006), + [anon_sym_EQ] = ACTIONS(3006), + [anon_sym___global] = ACTIONS(3006), + [anon_sym_type] = ACTIONS(3006), + [anon_sym_PIPE] = ACTIONS(3006), + [anon_sym_fn] = ACTIONS(3006), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_SLASH] = ACTIONS(3006), + [anon_sym_PERCENT] = ACTIONS(3006), + [anon_sym_LT] = ACTIONS(3006), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_EQ_EQ] = ACTIONS(3006), + [anon_sym_BANG_EQ] = ACTIONS(3006), + [anon_sym_LT_EQ] = ACTIONS(3006), + [anon_sym_GT_EQ] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3004), + [anon_sym_struct] = ACTIONS(3006), + [anon_sym_union] = ACTIONS(3006), + [anon_sym_pub] = ACTIONS(3006), + [anon_sym_mut] = ACTIONS(3006), + [anon_sym_enum] = ACTIONS(3006), + [anon_sym_interface] = ACTIONS(3006), + [anon_sym_PLUS_PLUS] = ACTIONS(3006), + [anon_sym_DASH_DASH] = ACTIONS(3006), + [anon_sym_QMARK] = ACTIONS(3006), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_go] = ACTIONS(3006), + [anon_sym_spawn] = ACTIONS(3006), + [anon_sym_json_DOTdecode] = ACTIONS(3006), + [anon_sym_LBRACK2] = ACTIONS(3006), + [anon_sym_TILDE] = ACTIONS(3006), + [anon_sym_CARET] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3006), + [anon_sym_LT_DASH] = ACTIONS(3006), + [anon_sym_LT_LT] = ACTIONS(3006), + [anon_sym_GT_GT] = ACTIONS(3006), + [anon_sym_GT_GT_GT] = ACTIONS(3006), + [anon_sym_AMP_CARET] = ACTIONS(3006), + [anon_sym_AMP_AMP] = ACTIONS(3006), + [anon_sym_PIPE_PIPE] = ACTIONS(3006), + [anon_sym_or] = ACTIONS(3006), + [sym_none] = ACTIONS(3006), + [sym_true] = ACTIONS(3006), + [sym_false] = ACTIONS(3006), + [sym_nil] = ACTIONS(3006), + [anon_sym_QMARK_DOT] = ACTIONS(3006), + [anon_sym_POUND_LBRACK] = ACTIONS(3006), + [anon_sym_if] = ACTIONS(3006), + [anon_sym_DOLLARif] = ACTIONS(3006), + [anon_sym_is] = ACTIONS(3006), + [anon_sym_BANGis] = ACTIONS(3006), + [anon_sym_in] = ACTIONS(3006), + [anon_sym_BANGin] = ACTIONS(3006), + [anon_sym_match] = ACTIONS(3006), + [anon_sym_select] = ACTIONS(3006), + [anon_sym_STAR_EQ] = ACTIONS(3006), + [anon_sym_SLASH_EQ] = ACTIONS(3006), + [anon_sym_PERCENT_EQ] = ACTIONS(3006), + [anon_sym_LT_LT_EQ] = ACTIONS(3006), + [anon_sym_GT_GT_EQ] = ACTIONS(3006), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3006), + [anon_sym_AMP_EQ] = ACTIONS(3006), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3006), + [anon_sym_PLUS_EQ] = ACTIONS(3006), + [anon_sym_DASH_EQ] = ACTIONS(3006), + [anon_sym_PIPE_EQ] = ACTIONS(3006), + [anon_sym_CARET_EQ] = ACTIONS(3006), + [anon_sym_COLON_EQ] = ACTIONS(3006), + [anon_sym_lock] = ACTIONS(3006), + [anon_sym_rlock] = ACTIONS(3006), + [anon_sym_unsafe] = ACTIONS(3006), + [anon_sym_sql] = ACTIONS(3006), + [sym_int_literal] = ACTIONS(3006), + [sym_float_literal] = ACTIONS(3006), + [sym_rune_literal] = ACTIONS(3006), + [anon_sym_AT] = ACTIONS(3006), + [anon_sym_shared] = ACTIONS(3006), + [anon_sym_map_LBRACK] = ACTIONS(3006), + [anon_sym_chan] = ACTIONS(3006), + [anon_sym_thread] = ACTIONS(3006), + [anon_sym_atomic] = ACTIONS(3006), + [anon_sym_assert] = ACTIONS(3006), + [anon_sym_defer] = ACTIONS(3006), + [anon_sym_goto] = ACTIONS(3006), + [anon_sym_break] = ACTIONS(3006), + [anon_sym_continue] = ACTIONS(3006), + [anon_sym_return] = ACTIONS(3006), + [anon_sym_DOLLARfor] = ACTIONS(3006), + [anon_sym_for] = ACTIONS(3006), + [anon_sym_POUND] = ACTIONS(3006), + [anon_sym_asm] = ACTIONS(3006), + [anon_sym_AT_LBRACK] = ACTIONS(3006), + [sym___double_quote] = ACTIONS(3006), + [sym___single_quote] = ACTIONS(3006), + [sym___c_double_quote] = ACTIONS(3006), + [sym___c_single_quote] = ACTIONS(3006), + [sym___r_double_quote] = ACTIONS(3006), + [sym___r_single_quote] = ACTIONS(3006), }, [904] = { - [ts_builtin_sym_end] = ACTIONS(3011), - [sym_identifier] = ACTIONS(3013), - [anon_sym_LF] = ACTIONS(3013), - [anon_sym_CR] = ACTIONS(3013), - [anon_sym_CR_LF] = ACTIONS(3013), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3013), - [anon_sym_as] = ACTIONS(3013), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_COMMA] = ACTIONS(3013), - [anon_sym_const] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_EQ] = ACTIONS(3013), - [anon_sym___global] = ACTIONS(3013), - [anon_sym_type] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3013), - [anon_sym_fn] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_SLASH] = ACTIONS(3013), - [anon_sym_PERCENT] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3013), - [anon_sym_GT] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3011), - [anon_sym_struct] = ACTIONS(3013), - [anon_sym_union] = ACTIONS(3013), - [anon_sym_pub] = ACTIONS(3013), - [anon_sym_mut] = ACTIONS(3013), - [anon_sym_enum] = ACTIONS(3013), - [anon_sym_interface] = ACTIONS(3013), - [anon_sym_PLUS_PLUS] = ACTIONS(3013), - [anon_sym_DASH_DASH] = ACTIONS(3013), - [anon_sym_QMARK] = ACTIONS(3013), - [anon_sym_BANG] = ACTIONS(3013), - [anon_sym_go] = ACTIONS(3013), - [anon_sym_spawn] = ACTIONS(3013), - [anon_sym_json_DOTdecode] = ACTIONS(3013), - [anon_sym_LBRACK2] = ACTIONS(3013), - [anon_sym_TILDE] = ACTIONS(3013), - [anon_sym_CARET] = ACTIONS(3013), - [anon_sym_AMP] = ACTIONS(3013), - [anon_sym_LT_DASH] = ACTIONS(3013), - [anon_sym_LT_LT] = ACTIONS(3013), - [anon_sym_GT_GT] = ACTIONS(3013), - [anon_sym_GT_GT_GT] = ACTIONS(3013), - [anon_sym_AMP_CARET] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_or] = ACTIONS(3013), - [sym_none] = ACTIONS(3013), - [sym_true] = ACTIONS(3013), - [sym_false] = ACTIONS(3013), - [sym_nil] = ACTIONS(3013), - [anon_sym_QMARK_DOT] = ACTIONS(3013), - [anon_sym_POUND_LBRACK] = ACTIONS(3013), - [anon_sym_if] = ACTIONS(3013), - [anon_sym_DOLLARif] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3013), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_in] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_match] = ACTIONS(3013), - [anon_sym_select] = ACTIONS(3013), - [anon_sym_STAR_EQ] = ACTIONS(3013), - [anon_sym_SLASH_EQ] = ACTIONS(3013), - [anon_sym_PERCENT_EQ] = ACTIONS(3013), - [anon_sym_LT_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_GT_EQ] = ACTIONS(3013), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3013), - [anon_sym_AMP_EQ] = ACTIONS(3013), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3013), - [anon_sym_PLUS_EQ] = ACTIONS(3013), - [anon_sym_DASH_EQ] = ACTIONS(3013), - [anon_sym_PIPE_EQ] = ACTIONS(3013), - [anon_sym_CARET_EQ] = ACTIONS(3013), - [anon_sym_COLON_EQ] = ACTIONS(3013), - [anon_sym_lock] = ACTIONS(3013), - [anon_sym_rlock] = ACTIONS(3013), - [anon_sym_unsafe] = ACTIONS(3013), - [anon_sym_sql] = ACTIONS(3013), - [sym_int_literal] = ACTIONS(3013), - [sym_float_literal] = ACTIONS(3013), - [sym_rune_literal] = ACTIONS(3013), - [anon_sym_AT] = ACTIONS(3013), - [anon_sym_shared] = ACTIONS(3013), - [anon_sym_map_LBRACK] = ACTIONS(3013), - [anon_sym_chan] = ACTIONS(3013), - [anon_sym_thread] = ACTIONS(3013), - [anon_sym_atomic] = ACTIONS(3013), - [anon_sym_assert] = ACTIONS(3013), - [anon_sym_defer] = ACTIONS(3013), - [anon_sym_goto] = ACTIONS(3013), - [anon_sym_break] = ACTIONS(3013), - [anon_sym_continue] = ACTIONS(3013), - [anon_sym_return] = ACTIONS(3013), - [anon_sym_DOLLARfor] = ACTIONS(3013), - [anon_sym_for] = ACTIONS(3013), - [anon_sym_POUND] = ACTIONS(3013), - [anon_sym_asm] = ACTIONS(3013), - [anon_sym_AT_LBRACK] = ACTIONS(3013), - [sym___double_quote] = ACTIONS(3013), - [sym___single_quote] = ACTIONS(3013), - [sym___c_double_quote] = ACTIONS(3013), - [sym___c_single_quote] = ACTIONS(3013), - [sym___r_double_quote] = ACTIONS(3013), - [sym___r_single_quote] = ACTIONS(3013), + [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), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3010), + [sym___single_quote] = ACTIONS(3010), + [sym___c_double_quote] = ACTIONS(3010), + [sym___c_single_quote] = ACTIONS(3010), + [sym___r_double_quote] = ACTIONS(3010), + [sym___r_single_quote] = ACTIONS(3010), }, [905] = { - [ts_builtin_sym_end] = ACTIONS(3015), - [sym_identifier] = ACTIONS(3017), - [anon_sym_LF] = ACTIONS(3017), - [anon_sym_CR] = ACTIONS(3017), - [anon_sym_CR_LF] = ACTIONS(3017), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_as] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_COMMA] = ACTIONS(3017), - [anon_sym_const] = ACTIONS(3017), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_EQ] = ACTIONS(3017), - [anon_sym___global] = ACTIONS(3017), - [anon_sym_type] = ACTIONS(3017), - [anon_sym_PIPE] = ACTIONS(3017), - [anon_sym_fn] = ACTIONS(3017), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_SLASH] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3017), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_LT_EQ] = ACTIONS(3017), - [anon_sym_GT_EQ] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_struct] = ACTIONS(3017), - [anon_sym_union] = ACTIONS(3017), - [anon_sym_pub] = ACTIONS(3017), - [anon_sym_mut] = ACTIONS(3017), - [anon_sym_enum] = ACTIONS(3017), - [anon_sym_interface] = ACTIONS(3017), - [anon_sym_PLUS_PLUS] = ACTIONS(3017), - [anon_sym_DASH_DASH] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3017), - [anon_sym_go] = ACTIONS(3017), - [anon_sym_spawn] = ACTIONS(3017), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3017), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), - [anon_sym_LT_LT] = ACTIONS(3017), - [anon_sym_GT_GT] = ACTIONS(3017), - [anon_sym_GT_GT_GT] = ACTIONS(3017), - [anon_sym_AMP_CARET] = ACTIONS(3017), - [anon_sym_AMP_AMP] = ACTIONS(3017), - [anon_sym_PIPE_PIPE] = ACTIONS(3017), - [anon_sym_or] = ACTIONS(3017), - [sym_none] = ACTIONS(3017), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_nil] = ACTIONS(3017), - [anon_sym_QMARK_DOT] = ACTIONS(3017), - [anon_sym_POUND_LBRACK] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_DOLLARif] = ACTIONS(3017), - [anon_sym_is] = ACTIONS(3017), - [anon_sym_BANGis] = ACTIONS(3017), - [anon_sym_in] = ACTIONS(3017), - [anon_sym_BANGin] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_select] = ACTIONS(3017), - [anon_sym_STAR_EQ] = ACTIONS(3017), - [anon_sym_SLASH_EQ] = ACTIONS(3017), - [anon_sym_PERCENT_EQ] = ACTIONS(3017), - [anon_sym_LT_LT_EQ] = ACTIONS(3017), - [anon_sym_GT_GT_EQ] = ACTIONS(3017), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3017), - [anon_sym_AMP_EQ] = ACTIONS(3017), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3017), - [anon_sym_PLUS_EQ] = ACTIONS(3017), - [anon_sym_DASH_EQ] = ACTIONS(3017), - [anon_sym_PIPE_EQ] = ACTIONS(3017), - [anon_sym_CARET_EQ] = ACTIONS(3017), - [anon_sym_COLON_EQ] = ACTIONS(3017), - [anon_sym_lock] = ACTIONS(3017), - [anon_sym_rlock] = ACTIONS(3017), - [anon_sym_unsafe] = ACTIONS(3017), - [anon_sym_sql] = ACTIONS(3017), - [sym_int_literal] = ACTIONS(3017), - [sym_float_literal] = ACTIONS(3017), - [sym_rune_literal] = ACTIONS(3017), - [anon_sym_AT] = ACTIONS(3017), - [anon_sym_shared] = ACTIONS(3017), - [anon_sym_map_LBRACK] = ACTIONS(3017), - [anon_sym_chan] = ACTIONS(3017), - [anon_sym_thread] = ACTIONS(3017), - [anon_sym_atomic] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_defer] = ACTIONS(3017), - [anon_sym_goto] = ACTIONS(3017), - [anon_sym_break] = ACTIONS(3017), - [anon_sym_continue] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_DOLLARfor] = ACTIONS(3017), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_POUND] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3017), - [anon_sym_AT_LBRACK] = ACTIONS(3017), - [sym___double_quote] = ACTIONS(3017), - [sym___single_quote] = ACTIONS(3017), - [sym___c_double_quote] = ACTIONS(3017), - [sym___c_single_quote] = ACTIONS(3017), - [sym___r_double_quote] = ACTIONS(3017), - [sym___r_single_quote] = ACTIONS(3017), + [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), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3014), + [sym___single_quote] = ACTIONS(3014), + [sym___c_double_quote] = ACTIONS(3014), + [sym___c_single_quote] = ACTIONS(3014), + [sym___r_double_quote] = ACTIONS(3014), + [sym___r_single_quote] = ACTIONS(3014), }, [906] = { - [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), - [sym_comment] = ACTIONS(487), - [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_AT] = 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), - [sym___double_quote] = ACTIONS(3021), - [sym___single_quote] = ACTIONS(3021), - [sym___c_double_quote] = ACTIONS(3021), - [sym___c_single_quote] = ACTIONS(3021), - [sym___r_double_quote] = ACTIONS(3021), - [sym___r_single_quote] = ACTIONS(3021), + [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), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3018), + [sym___single_quote] = ACTIONS(3018), + [sym___c_double_quote] = ACTIONS(3018), + [sym___c_single_quote] = ACTIONS(3018), + [sym___r_double_quote] = ACTIONS(3018), + [sym___r_single_quote] = ACTIONS(3018), }, [907] = { - [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), - [sym_comment] = ACTIONS(487), - [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_AT] = 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), - [sym___double_quote] = ACTIONS(3025), - [sym___single_quote] = ACTIONS(3025), - [sym___c_double_quote] = ACTIONS(3025), - [sym___c_single_quote] = ACTIONS(3025), - [sym___r_double_quote] = ACTIONS(3025), - [sym___r_single_quote] = ACTIONS(3025), + [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), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3022), + [sym___single_quote] = ACTIONS(3022), + [sym___c_double_quote] = ACTIONS(3022), + [sym___c_single_quote] = ACTIONS(3022), + [sym___r_double_quote] = ACTIONS(3022), + [sym___r_single_quote] = ACTIONS(3022), }, [908] = { - [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), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2774), - [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_AT] = ACTIONS(3029), - [anon_sym_shared] = ACTIONS(3029), - [anon_sym_map_LBRACK] = ACTIONS(3029), - [anon_sym_chan] = ACTIONS(3029), - [anon_sym_thread] = ACTIONS(3029), - [anon_sym_atomic] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_defer] = ACTIONS(3029), - [anon_sym_goto] = ACTIONS(3029), - [anon_sym_break] = ACTIONS(3029), - [anon_sym_continue] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_DOLLARfor] = ACTIONS(3029), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_POUND] = ACTIONS(3029), - [anon_sym_asm] = ACTIONS(3029), - [anon_sym_AT_LBRACK] = ACTIONS(3029), - [sym___double_quote] = ACTIONS(3029), - [sym___single_quote] = ACTIONS(3029), - [sym___c_double_quote] = ACTIONS(3029), - [sym___c_single_quote] = ACTIONS(3029), - [sym___r_double_quote] = ACTIONS(3029), - [sym___r_single_quote] = ACTIONS(3029), + [ts_builtin_sym_end] = ACTIONS(2786), + [sym_identifier] = ACTIONS(2784), + [anon_sym_LF] = ACTIONS(2784), + [anon_sym_CR] = ACTIONS(2784), + [anon_sym_CR_LF] = ACTIONS(2784), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2784), + [anon_sym_as] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2784), + [anon_sym_COMMA] = ACTIONS(2784), + [anon_sym_const] = ACTIONS(2784), + [anon_sym_LPAREN] = ACTIONS(2784), + [anon_sym_EQ] = ACTIONS(2784), + [anon_sym___global] = ACTIONS(2784), + [anon_sym_type] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_fn] = ACTIONS(2784), + [anon_sym_PLUS] = ACTIONS(2784), + [anon_sym_DASH] = ACTIONS(2784), + [anon_sym_STAR] = ACTIONS(2784), + [anon_sym_SLASH] = ACTIONS(2784), + [anon_sym_PERCENT] = ACTIONS(2784), + [anon_sym_LT] = ACTIONS(2784), + [anon_sym_GT] = ACTIONS(2784), + [anon_sym_EQ_EQ] = ACTIONS(2784), + [anon_sym_BANG_EQ] = ACTIONS(2784), + [anon_sym_LT_EQ] = ACTIONS(2784), + [anon_sym_GT_EQ] = ACTIONS(2784), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym_struct] = ACTIONS(2784), + [anon_sym_union] = ACTIONS(2784), + [anon_sym_pub] = ACTIONS(2784), + [anon_sym_mut] = ACTIONS(2784), + [anon_sym_enum] = ACTIONS(2784), + [anon_sym_interface] = ACTIONS(2784), + [anon_sym_PLUS_PLUS] = ACTIONS(2784), + [anon_sym_DASH_DASH] = ACTIONS(2784), + [anon_sym_QMARK] = ACTIONS(2784), + [anon_sym_BANG] = ACTIONS(2784), + [anon_sym_go] = ACTIONS(2784), + [anon_sym_spawn] = ACTIONS(2784), + [anon_sym_json_DOTdecode] = ACTIONS(2784), + [anon_sym_LBRACK2] = ACTIONS(2784), + [anon_sym_TILDE] = ACTIONS(2784), + [anon_sym_CARET] = ACTIONS(2784), + [anon_sym_AMP] = ACTIONS(2784), + [anon_sym_LT_DASH] = ACTIONS(2784), + [anon_sym_LT_LT] = ACTIONS(2784), + [anon_sym_GT_GT] = ACTIONS(2784), + [anon_sym_GT_GT_GT] = ACTIONS(2784), + [anon_sym_AMP_CARET] = ACTIONS(2784), + [anon_sym_AMP_AMP] = ACTIONS(2784), + [anon_sym_PIPE_PIPE] = ACTIONS(2784), + [anon_sym_or] = ACTIONS(2784), + [sym_none] = ACTIONS(2784), + [sym_true] = ACTIONS(2784), + [sym_false] = ACTIONS(2784), + [sym_nil] = ACTIONS(2784), + [anon_sym_QMARK_DOT] = ACTIONS(2784), + [anon_sym_POUND_LBRACK] = ACTIONS(2784), + [anon_sym_if] = ACTIONS(2784), + [anon_sym_DOLLARif] = ACTIONS(2784), + [anon_sym_is] = ACTIONS(2784), + [anon_sym_BANGis] = ACTIONS(2784), + [anon_sym_in] = ACTIONS(2784), + [anon_sym_BANGin] = ACTIONS(2784), + [anon_sym_match] = ACTIONS(2784), + [anon_sym_select] = ACTIONS(2784), + [anon_sym_STAR_EQ] = ACTIONS(2784), + [anon_sym_SLASH_EQ] = ACTIONS(2784), + [anon_sym_PERCENT_EQ] = ACTIONS(2784), + [anon_sym_LT_LT_EQ] = ACTIONS(2784), + [anon_sym_GT_GT_EQ] = ACTIONS(2784), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2784), + [anon_sym_AMP_EQ] = ACTIONS(2784), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2784), + [anon_sym_PLUS_EQ] = ACTIONS(2784), + [anon_sym_DASH_EQ] = ACTIONS(2784), + [anon_sym_PIPE_EQ] = ACTIONS(2784), + [anon_sym_CARET_EQ] = ACTIONS(2784), + [anon_sym_COLON_EQ] = ACTIONS(2784), + [anon_sym_lock] = ACTIONS(2784), + [anon_sym_rlock] = ACTIONS(2784), + [anon_sym_unsafe] = ACTIONS(2784), + [anon_sym_sql] = ACTIONS(2784), + [sym_int_literal] = ACTIONS(2784), + [sym_float_literal] = ACTIONS(2784), + [sym_rune_literal] = ACTIONS(2784), + [anon_sym_AT] = ACTIONS(2784), + [anon_sym_shared] = ACTIONS(2784), + [anon_sym_map_LBRACK] = ACTIONS(2784), + [anon_sym_chan] = ACTIONS(2784), + [anon_sym_thread] = ACTIONS(2784), + [anon_sym_atomic] = ACTIONS(2784), + [anon_sym_assert] = ACTIONS(2784), + [anon_sym_defer] = ACTIONS(2784), + [anon_sym_goto] = ACTIONS(2784), + [anon_sym_break] = ACTIONS(2784), + [anon_sym_continue] = ACTIONS(2784), + [anon_sym_return] = ACTIONS(2784), + [anon_sym_DOLLARfor] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(2784), + [anon_sym_asm] = ACTIONS(2784), + [anon_sym_AT_LBRACK] = ACTIONS(2784), + [sym___double_quote] = ACTIONS(2784), + [sym___single_quote] = ACTIONS(2784), + [sym___c_double_quote] = ACTIONS(2784), + [sym___c_single_quote] = ACTIONS(2784), + [sym___r_double_quote] = ACTIONS(2784), + [sym___r_single_quote] = ACTIONS(2784), }, [909] = { - [ts_builtin_sym_end] = ACTIONS(3031), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LF] = ACTIONS(3033), - [anon_sym_CR] = ACTIONS(3033), - [anon_sym_CR_LF] = ACTIONS(3033), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3033), - [anon_sym_as] = ACTIONS(3033), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3033), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3033), - [anon_sym___global] = ACTIONS(3033), - [anon_sym_type] = ACTIONS(3033), - [anon_sym_PIPE] = ACTIONS(3033), - [anon_sym_fn] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_SLASH] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3033), - [anon_sym_EQ_EQ] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(3033), - [anon_sym_LT_EQ] = ACTIONS(3033), - [anon_sym_GT_EQ] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(3033), - [anon_sym_union] = ACTIONS(3033), - [anon_sym_pub] = ACTIONS(3033), - [anon_sym_mut] = ACTIONS(3033), - [anon_sym_enum] = ACTIONS(3033), - [anon_sym_interface] = ACTIONS(3033), - [anon_sym_PLUS_PLUS] = ACTIONS(3033), - [anon_sym_DASH_DASH] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3033), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_go] = ACTIONS(3033), - [anon_sym_spawn] = ACTIONS(3033), - [anon_sym_json_DOTdecode] = ACTIONS(3033), - [anon_sym_LBRACK2] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3033), - [anon_sym_CARET] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3033), - [anon_sym_LT_LT] = ACTIONS(3033), - [anon_sym_GT_GT] = ACTIONS(3033), - [anon_sym_GT_GT_GT] = ACTIONS(3033), - [anon_sym_AMP_CARET] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [anon_sym_or] = ACTIONS(3033), - [sym_none] = ACTIONS(3033), - [sym_true] = ACTIONS(3033), - [sym_false] = ACTIONS(3033), - [sym_nil] = ACTIONS(3033), - [anon_sym_QMARK_DOT] = ACTIONS(3033), - [anon_sym_POUND_LBRACK] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_DOLLARif] = ACTIONS(3033), - [anon_sym_is] = ACTIONS(3033), - [anon_sym_BANGis] = ACTIONS(3033), - [anon_sym_in] = ACTIONS(3033), - [anon_sym_BANGin] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_select] = ACTIONS(3033), - [anon_sym_STAR_EQ] = ACTIONS(3033), - [anon_sym_SLASH_EQ] = ACTIONS(3033), - [anon_sym_PERCENT_EQ] = ACTIONS(3033), - [anon_sym_LT_LT_EQ] = ACTIONS(3033), - [anon_sym_GT_GT_EQ] = ACTIONS(3033), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3033), - [anon_sym_AMP_EQ] = ACTIONS(3033), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3033), - [anon_sym_PLUS_EQ] = ACTIONS(3033), - [anon_sym_DASH_EQ] = ACTIONS(3033), - [anon_sym_PIPE_EQ] = ACTIONS(3033), - [anon_sym_CARET_EQ] = ACTIONS(3033), - [anon_sym_COLON_EQ] = ACTIONS(3033), - [anon_sym_lock] = ACTIONS(3033), - [anon_sym_rlock] = ACTIONS(3033), - [anon_sym_unsafe] = ACTIONS(3033), - [anon_sym_sql] = ACTIONS(3033), - [sym_int_literal] = ACTIONS(3033), - [sym_float_literal] = ACTIONS(3033), - [sym_rune_literal] = ACTIONS(3033), - [anon_sym_AT] = ACTIONS(3033), - [anon_sym_shared] = ACTIONS(3033), - [anon_sym_map_LBRACK] = ACTIONS(3033), - [anon_sym_chan] = ACTIONS(3033), - [anon_sym_thread] = ACTIONS(3033), - [anon_sym_atomic] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_defer] = ACTIONS(3033), - [anon_sym_goto] = ACTIONS(3033), - [anon_sym_break] = ACTIONS(3033), - [anon_sym_continue] = ACTIONS(3033), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_DOLLARfor] = ACTIONS(3033), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_POUND] = ACTIONS(3033), - [anon_sym_asm] = ACTIONS(3033), - [anon_sym_AT_LBRACK] = ACTIONS(3033), - [sym___double_quote] = ACTIONS(3033), - [sym___single_quote] = ACTIONS(3033), - [sym___c_double_quote] = ACTIONS(3033), - [sym___c_single_quote] = ACTIONS(3033), - [sym___r_double_quote] = ACTIONS(3033), - [sym___r_single_quote] = ACTIONS(3033), + [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), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3026), + [sym___single_quote] = ACTIONS(3026), + [sym___c_double_quote] = ACTIONS(3026), + [sym___c_single_quote] = ACTIONS(3026), + [sym___r_double_quote] = ACTIONS(3026), + [sym___r_single_quote] = ACTIONS(3026), }, [910] = { - [ts_builtin_sym_end] = ACTIONS(3035), - [sym_identifier] = ACTIONS(3037), - [anon_sym_LF] = ACTIONS(3037), - [anon_sym_CR] = ACTIONS(3037), - [anon_sym_CR_LF] = ACTIONS(3037), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_as] = ACTIONS(3037), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3037), - [anon_sym_const] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3037), - [anon_sym___global] = ACTIONS(3037), - [anon_sym_type] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3037), - [anon_sym_fn] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_STAR] = ACTIONS(3037), - [anon_sym_SLASH] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(3037), - [anon_sym_GT] = ACTIONS(3037), - [anon_sym_EQ_EQ] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_LT_EQ] = ACTIONS(3037), - [anon_sym_GT_EQ] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_struct] = ACTIONS(3037), - [anon_sym_union] = ACTIONS(3037), - [anon_sym_pub] = ACTIONS(3037), - [anon_sym_mut] = ACTIONS(3037), - [anon_sym_enum] = ACTIONS(3037), - [anon_sym_interface] = ACTIONS(3037), - [anon_sym_PLUS_PLUS] = ACTIONS(3037), - [anon_sym_DASH_DASH] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_BANG] = ACTIONS(3037), - [anon_sym_go] = ACTIONS(3037), - [anon_sym_spawn] = ACTIONS(3037), - [anon_sym_json_DOTdecode] = ACTIONS(3037), - [anon_sym_LBRACK2] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3037), - [anon_sym_CARET] = ACTIONS(3037), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_LT_LT] = ACTIONS(3037), - [anon_sym_GT_GT] = ACTIONS(3037), - [anon_sym_GT_GT_GT] = ACTIONS(3037), - [anon_sym_AMP_CARET] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_or] = ACTIONS(3037), - [sym_none] = ACTIONS(3037), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [sym_nil] = ACTIONS(3037), - [anon_sym_QMARK_DOT] = ACTIONS(3037), - [anon_sym_POUND_LBRACK] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_DOLLARif] = ACTIONS(3037), - [anon_sym_is] = ACTIONS(3037), - [anon_sym_BANGis] = ACTIONS(3037), - [anon_sym_in] = ACTIONS(3037), - [anon_sym_BANGin] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_select] = ACTIONS(3037), - [anon_sym_STAR_EQ] = ACTIONS(3037), - [anon_sym_SLASH_EQ] = ACTIONS(3037), - [anon_sym_PERCENT_EQ] = ACTIONS(3037), - [anon_sym_LT_LT_EQ] = ACTIONS(3037), - [anon_sym_GT_GT_EQ] = ACTIONS(3037), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3037), - [anon_sym_AMP_EQ] = ACTIONS(3037), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3037), - [anon_sym_PLUS_EQ] = ACTIONS(3037), - [anon_sym_DASH_EQ] = ACTIONS(3037), - [anon_sym_PIPE_EQ] = ACTIONS(3037), - [anon_sym_CARET_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3037), - [anon_sym_lock] = ACTIONS(3037), - [anon_sym_rlock] = ACTIONS(3037), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3037), - [sym_int_literal] = ACTIONS(3037), - [sym_float_literal] = ACTIONS(3037), - [sym_rune_literal] = ACTIONS(3037), - [anon_sym_AT] = ACTIONS(3037), - [anon_sym_shared] = ACTIONS(3037), - [anon_sym_map_LBRACK] = ACTIONS(3037), - [anon_sym_chan] = ACTIONS(3037), - [anon_sym_thread] = ACTIONS(3037), - [anon_sym_atomic] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_defer] = ACTIONS(3037), - [anon_sym_goto] = ACTIONS(3037), - [anon_sym_break] = ACTIONS(3037), - [anon_sym_continue] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_DOLLARfor] = ACTIONS(3037), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_POUND] = ACTIONS(3037), - [anon_sym_asm] = ACTIONS(3037), - [anon_sym_AT_LBRACK] = ACTIONS(3037), - [sym___double_quote] = ACTIONS(3037), - [sym___single_quote] = ACTIONS(3037), - [sym___c_double_quote] = ACTIONS(3037), - [sym___c_single_quote] = ACTIONS(3037), - [sym___r_double_quote] = ACTIONS(3037), - [sym___r_single_quote] = ACTIONS(3037), + [ts_builtin_sym_end] = ACTIONS(2738), + [sym_identifier] = ACTIONS(2740), + [anon_sym_LF] = ACTIONS(2740), + [anon_sym_CR] = ACTIONS(2740), + [anon_sym_CR_LF] = ACTIONS(2740), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2740), + [anon_sym_as] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2740), + [anon_sym_COMMA] = ACTIONS(2740), + [anon_sym_const] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(2740), + [anon_sym_EQ] = ACTIONS(2740), + [anon_sym___global] = ACTIONS(2740), + [anon_sym_type] = ACTIONS(2740), + [anon_sym_PIPE] = ACTIONS(2740), + [anon_sym_fn] = ACTIONS(2740), + [anon_sym_PLUS] = ACTIONS(2740), + [anon_sym_DASH] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_SLASH] = ACTIONS(2740), + [anon_sym_PERCENT] = ACTIONS(2740), + [anon_sym_LT] = ACTIONS(2740), + [anon_sym_GT] = ACTIONS(2740), + [anon_sym_EQ_EQ] = ACTIONS(2740), + [anon_sym_BANG_EQ] = ACTIONS(2740), + [anon_sym_LT_EQ] = ACTIONS(2740), + [anon_sym_GT_EQ] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(2738), + [anon_sym_struct] = ACTIONS(2740), + [anon_sym_union] = ACTIONS(2740), + [anon_sym_pub] = ACTIONS(2740), + [anon_sym_mut] = ACTIONS(2740), + [anon_sym_enum] = ACTIONS(2740), + [anon_sym_interface] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2740), + [anon_sym_DASH_DASH] = ACTIONS(2740), + [anon_sym_QMARK] = ACTIONS(2740), + [anon_sym_BANG] = ACTIONS(2740), + [anon_sym_go] = ACTIONS(2740), + [anon_sym_spawn] = ACTIONS(2740), + [anon_sym_json_DOTdecode] = ACTIONS(2740), + [anon_sym_LBRACK2] = ACTIONS(2740), + [anon_sym_TILDE] = ACTIONS(2740), + [anon_sym_CARET] = ACTIONS(2740), + [anon_sym_AMP] = ACTIONS(2740), + [anon_sym_LT_DASH] = ACTIONS(2740), + [anon_sym_LT_LT] = ACTIONS(2740), + [anon_sym_GT_GT] = ACTIONS(2740), + [anon_sym_GT_GT_GT] = ACTIONS(2740), + [anon_sym_AMP_CARET] = ACTIONS(2740), + [anon_sym_AMP_AMP] = ACTIONS(2740), + [anon_sym_PIPE_PIPE] = ACTIONS(2740), + [anon_sym_or] = ACTIONS(2740), + [sym_none] = ACTIONS(2740), + [sym_true] = ACTIONS(2740), + [sym_false] = ACTIONS(2740), + [sym_nil] = ACTIONS(2740), + [anon_sym_QMARK_DOT] = ACTIONS(2740), + [anon_sym_POUND_LBRACK] = ACTIONS(2740), + [anon_sym_if] = ACTIONS(2740), + [anon_sym_DOLLARif] = ACTIONS(2740), + [anon_sym_is] = ACTIONS(2740), + [anon_sym_BANGis] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2740), + [anon_sym_BANGin] = ACTIONS(2740), + [anon_sym_match] = ACTIONS(2740), + [anon_sym_select] = ACTIONS(2740), + [anon_sym_STAR_EQ] = ACTIONS(2740), + [anon_sym_SLASH_EQ] = ACTIONS(2740), + [anon_sym_PERCENT_EQ] = ACTIONS(2740), + [anon_sym_LT_LT_EQ] = ACTIONS(2740), + [anon_sym_GT_GT_EQ] = ACTIONS(2740), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2740), + [anon_sym_AMP_EQ] = ACTIONS(2740), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2740), + [anon_sym_PLUS_EQ] = ACTIONS(2740), + [anon_sym_DASH_EQ] = ACTIONS(2740), + [anon_sym_PIPE_EQ] = ACTIONS(2740), + [anon_sym_CARET_EQ] = ACTIONS(2740), + [anon_sym_COLON_EQ] = ACTIONS(2740), + [anon_sym_lock] = ACTIONS(2740), + [anon_sym_rlock] = ACTIONS(2740), + [anon_sym_unsafe] = ACTIONS(2740), + [anon_sym_sql] = ACTIONS(2740), + [sym_int_literal] = ACTIONS(2740), + [sym_float_literal] = ACTIONS(2740), + [sym_rune_literal] = ACTIONS(2740), + [anon_sym_AT] = ACTIONS(2740), + [anon_sym_shared] = ACTIONS(2740), + [anon_sym_map_LBRACK] = ACTIONS(2740), + [anon_sym_chan] = ACTIONS(2740), + [anon_sym_thread] = ACTIONS(2740), + [anon_sym_atomic] = ACTIONS(2740), + [anon_sym_assert] = ACTIONS(2740), + [anon_sym_defer] = ACTIONS(2740), + [anon_sym_goto] = ACTIONS(2740), + [anon_sym_break] = ACTIONS(2740), + [anon_sym_continue] = ACTIONS(2740), + [anon_sym_return] = ACTIONS(2740), + [anon_sym_DOLLARfor] = ACTIONS(2740), + [anon_sym_for] = ACTIONS(2740), + [anon_sym_POUND] = ACTIONS(2740), + [anon_sym_asm] = ACTIONS(2740), + [anon_sym_AT_LBRACK] = ACTIONS(2740), + [sym___double_quote] = ACTIONS(2740), + [sym___single_quote] = ACTIONS(2740), + [sym___c_double_quote] = ACTIONS(2740), + [sym___c_single_quote] = ACTIONS(2740), + [sym___r_double_quote] = ACTIONS(2740), + [sym___r_single_quote] = ACTIONS(2740), }, [911] = { - [ts_builtin_sym_end] = ACTIONS(3039), - [sym_identifier] = ACTIONS(3041), - [anon_sym_LF] = ACTIONS(3041), - [anon_sym_CR] = ACTIONS(3041), - [anon_sym_CR_LF] = ACTIONS(3041), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3041), - [anon_sym_as] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3041), - [anon_sym_COMMA] = ACTIONS(3041), - [anon_sym_const] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(3041), - [anon_sym_EQ] = ACTIONS(3041), - [anon_sym___global] = ACTIONS(3041), - [anon_sym_type] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3041), - [anon_sym_fn] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3041), - [anon_sym_SLASH] = ACTIONS(3041), - [anon_sym_PERCENT] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(3041), - [anon_sym_GT] = ACTIONS(3041), - [anon_sym_EQ_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ] = ACTIONS(3041), - [anon_sym_LT_EQ] = ACTIONS(3041), - [anon_sym_GT_EQ] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3039), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_union] = ACTIONS(3041), - [anon_sym_pub] = ACTIONS(3041), - [anon_sym_mut] = ACTIONS(3041), - [anon_sym_enum] = ACTIONS(3041), - [anon_sym_interface] = ACTIONS(3041), - [anon_sym_PLUS_PLUS] = ACTIONS(3041), - [anon_sym_DASH_DASH] = ACTIONS(3041), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3041), - [anon_sym_go] = ACTIONS(3041), - [anon_sym_spawn] = ACTIONS(3041), - [anon_sym_json_DOTdecode] = ACTIONS(3041), - [anon_sym_LBRACK2] = ACTIONS(3041), - [anon_sym_TILDE] = ACTIONS(3041), - [anon_sym_CARET] = ACTIONS(3041), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_LT_DASH] = ACTIONS(3041), - [anon_sym_LT_LT] = ACTIONS(3041), - [anon_sym_GT_GT] = ACTIONS(3041), - [anon_sym_GT_GT_GT] = ACTIONS(3041), - [anon_sym_AMP_CARET] = ACTIONS(3041), - [anon_sym_AMP_AMP] = ACTIONS(3041), - [anon_sym_PIPE_PIPE] = ACTIONS(3041), - [anon_sym_or] = ACTIONS(3041), - [sym_none] = ACTIONS(3041), - [sym_true] = ACTIONS(3041), - [sym_false] = ACTIONS(3041), - [sym_nil] = ACTIONS(3041), - [anon_sym_QMARK_DOT] = ACTIONS(3041), - [anon_sym_POUND_LBRACK] = ACTIONS(3041), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_DOLLARif] = ACTIONS(3041), - [anon_sym_is] = ACTIONS(3041), - [anon_sym_BANGis] = ACTIONS(3041), - [anon_sym_in] = ACTIONS(3041), - [anon_sym_BANGin] = ACTIONS(3041), - [anon_sym_match] = ACTIONS(3041), - [anon_sym_select] = ACTIONS(3041), - [anon_sym_STAR_EQ] = ACTIONS(3041), - [anon_sym_SLASH_EQ] = ACTIONS(3041), - [anon_sym_PERCENT_EQ] = ACTIONS(3041), - [anon_sym_LT_LT_EQ] = ACTIONS(3041), - [anon_sym_GT_GT_EQ] = ACTIONS(3041), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3041), - [anon_sym_AMP_EQ] = ACTIONS(3041), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3041), - [anon_sym_PLUS_EQ] = ACTIONS(3041), - [anon_sym_DASH_EQ] = ACTIONS(3041), - [anon_sym_PIPE_EQ] = ACTIONS(3041), - [anon_sym_CARET_EQ] = ACTIONS(3041), - [anon_sym_COLON_EQ] = ACTIONS(3041), - [anon_sym_lock] = ACTIONS(3041), - [anon_sym_rlock] = ACTIONS(3041), - [anon_sym_unsafe] = ACTIONS(3041), - [anon_sym_sql] = ACTIONS(3041), - [sym_int_literal] = ACTIONS(3041), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [anon_sym_AT] = ACTIONS(3041), - [anon_sym_shared] = ACTIONS(3041), - [anon_sym_map_LBRACK] = ACTIONS(3041), - [anon_sym_chan] = ACTIONS(3041), - [anon_sym_thread] = ACTIONS(3041), - [anon_sym_atomic] = ACTIONS(3041), - [anon_sym_assert] = ACTIONS(3041), - [anon_sym_defer] = ACTIONS(3041), - [anon_sym_goto] = ACTIONS(3041), - [anon_sym_break] = ACTIONS(3041), - [anon_sym_continue] = ACTIONS(3041), - [anon_sym_return] = ACTIONS(3041), - [anon_sym_DOLLARfor] = ACTIONS(3041), - [anon_sym_for] = ACTIONS(3041), - [anon_sym_POUND] = ACTIONS(3041), - [anon_sym_asm] = ACTIONS(3041), - [anon_sym_AT_LBRACK] = ACTIONS(3041), - [sym___double_quote] = ACTIONS(3041), - [sym___single_quote] = ACTIONS(3041), - [sym___c_double_quote] = ACTIONS(3041), - [sym___c_single_quote] = ACTIONS(3041), - [sym___r_double_quote] = ACTIONS(3041), - [sym___r_single_quote] = ACTIONS(3041), + [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), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3030), + [sym___single_quote] = ACTIONS(3030), + [sym___c_double_quote] = ACTIONS(3030), + [sym___c_single_quote] = ACTIONS(3030), + [sym___r_double_quote] = ACTIONS(3030), + [sym___r_single_quote] = ACTIONS(3030), }, [912] = { - [ts_builtin_sym_end] = ACTIONS(3043), - [sym_identifier] = ACTIONS(3045), - [anon_sym_LF] = ACTIONS(3045), - [anon_sym_CR] = ACTIONS(3045), - [anon_sym_CR_LF] = ACTIONS(3045), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3045), - [anon_sym_as] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_const] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3045), - [anon_sym_EQ] = ACTIONS(3045), - [anon_sym___global] = ACTIONS(3045), - [anon_sym_type] = ACTIONS(3045), - [anon_sym_PIPE] = ACTIONS(3045), - [anon_sym_fn] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3045), - [anon_sym_SLASH] = ACTIONS(3045), - [anon_sym_PERCENT] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(3045), - [anon_sym_GT] = ACTIONS(3045), - [anon_sym_EQ_EQ] = ACTIONS(3045), - [anon_sym_BANG_EQ] = ACTIONS(3045), - [anon_sym_LT_EQ] = ACTIONS(3045), - [anon_sym_GT_EQ] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_struct] = ACTIONS(3045), - [anon_sym_union] = ACTIONS(3045), - [anon_sym_pub] = ACTIONS(3045), - [anon_sym_mut] = ACTIONS(3045), - [anon_sym_enum] = ACTIONS(3045), - [anon_sym_interface] = ACTIONS(3045), - [anon_sym_PLUS_PLUS] = ACTIONS(3045), - [anon_sym_DASH_DASH] = ACTIONS(3045), - [anon_sym_QMARK] = ACTIONS(3045), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_go] = ACTIONS(3045), - [anon_sym_spawn] = ACTIONS(3045), - [anon_sym_json_DOTdecode] = ACTIONS(3045), - [anon_sym_LBRACK2] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_CARET] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3045), - [anon_sym_LT_DASH] = ACTIONS(3045), - [anon_sym_LT_LT] = ACTIONS(3045), - [anon_sym_GT_GT] = ACTIONS(3045), - [anon_sym_GT_GT_GT] = ACTIONS(3045), - [anon_sym_AMP_CARET] = ACTIONS(3045), - [anon_sym_AMP_AMP] = ACTIONS(3045), - [anon_sym_PIPE_PIPE] = ACTIONS(3045), - [anon_sym_or] = ACTIONS(3045), - [sym_none] = ACTIONS(3045), - [sym_true] = ACTIONS(3045), - [sym_false] = ACTIONS(3045), - [sym_nil] = ACTIONS(3045), - [anon_sym_QMARK_DOT] = ACTIONS(3045), - [anon_sym_POUND_LBRACK] = ACTIONS(3045), - [anon_sym_if] = ACTIONS(3045), - [anon_sym_DOLLARif] = ACTIONS(3045), - [anon_sym_is] = ACTIONS(3045), - [anon_sym_BANGis] = ACTIONS(3045), - [anon_sym_in] = ACTIONS(3045), - [anon_sym_BANGin] = ACTIONS(3045), - [anon_sym_match] = ACTIONS(3045), - [anon_sym_select] = ACTIONS(3045), - [anon_sym_STAR_EQ] = ACTIONS(3045), - [anon_sym_SLASH_EQ] = ACTIONS(3045), - [anon_sym_PERCENT_EQ] = ACTIONS(3045), - [anon_sym_LT_LT_EQ] = ACTIONS(3045), - [anon_sym_GT_GT_EQ] = ACTIONS(3045), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3045), - [anon_sym_AMP_EQ] = ACTIONS(3045), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3045), - [anon_sym_PLUS_EQ] = ACTIONS(3045), - [anon_sym_DASH_EQ] = ACTIONS(3045), - [anon_sym_PIPE_EQ] = ACTIONS(3045), - [anon_sym_CARET_EQ] = ACTIONS(3045), - [anon_sym_COLON_EQ] = ACTIONS(3045), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(3045), - [anon_sym_sql] = ACTIONS(3045), - [sym_int_literal] = ACTIONS(3045), - [sym_float_literal] = ACTIONS(3045), - [sym_rune_literal] = ACTIONS(3045), - [anon_sym_AT] = ACTIONS(3045), - [anon_sym_shared] = ACTIONS(3045), - [anon_sym_map_LBRACK] = ACTIONS(3045), - [anon_sym_chan] = ACTIONS(3045), - [anon_sym_thread] = ACTIONS(3045), - [anon_sym_atomic] = ACTIONS(3045), - [anon_sym_assert] = ACTIONS(3045), - [anon_sym_defer] = ACTIONS(3045), - [anon_sym_goto] = ACTIONS(3045), - [anon_sym_break] = ACTIONS(3045), - [anon_sym_continue] = ACTIONS(3045), - [anon_sym_return] = ACTIONS(3045), - [anon_sym_DOLLARfor] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3045), - [anon_sym_POUND] = ACTIONS(3045), - [anon_sym_asm] = ACTIONS(3045), - [anon_sym_AT_LBRACK] = ACTIONS(3045), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3045), - [sym___c_double_quote] = ACTIONS(3045), - [sym___c_single_quote] = ACTIONS(3045), - [sym___r_double_quote] = ACTIONS(3045), - [sym___r_single_quote] = ACTIONS(3045), + [ts_builtin_sym_end] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3034), + [anon_sym_LF] = ACTIONS(3034), + [anon_sym_CR] = ACTIONS(3034), + [anon_sym_CR_LF] = ACTIONS(3034), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3034), + [anon_sym_as] = ACTIONS(3034), + [anon_sym_LBRACE] = ACTIONS(3034), + [anon_sym_COMMA] = ACTIONS(3034), + [anon_sym_const] = ACTIONS(3034), + [anon_sym_LPAREN] = ACTIONS(3034), + [anon_sym_EQ] = ACTIONS(3034), + [anon_sym___global] = ACTIONS(3034), + [anon_sym_type] = ACTIONS(3034), + [anon_sym_PIPE] = ACTIONS(3034), + [anon_sym_fn] = ACTIONS(3034), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_STAR] = ACTIONS(3034), + [anon_sym_SLASH] = ACTIONS(3034), + [anon_sym_PERCENT] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(3034), + [anon_sym_GT] = ACTIONS(3034), + [anon_sym_EQ_EQ] = ACTIONS(3034), + [anon_sym_BANG_EQ] = ACTIONS(3034), + [anon_sym_LT_EQ] = ACTIONS(3034), + [anon_sym_GT_EQ] = ACTIONS(3034), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_struct] = ACTIONS(3034), + [anon_sym_union] = ACTIONS(3034), + [anon_sym_pub] = ACTIONS(3034), + [anon_sym_mut] = ACTIONS(3034), + [anon_sym_enum] = ACTIONS(3034), + [anon_sym_interface] = ACTIONS(3034), + [anon_sym_PLUS_PLUS] = ACTIONS(3034), + [anon_sym_DASH_DASH] = ACTIONS(3034), + [anon_sym_QMARK] = ACTIONS(3034), + [anon_sym_BANG] = ACTIONS(3034), + [anon_sym_go] = ACTIONS(3034), + [anon_sym_spawn] = ACTIONS(3034), + [anon_sym_json_DOTdecode] = ACTIONS(3034), + [anon_sym_LBRACK2] = ACTIONS(3034), + [anon_sym_TILDE] = ACTIONS(3034), + [anon_sym_CARET] = ACTIONS(3034), + [anon_sym_AMP] = ACTIONS(3034), + [anon_sym_LT_DASH] = ACTIONS(3034), + [anon_sym_LT_LT] = ACTIONS(3034), + [anon_sym_GT_GT] = ACTIONS(3034), + [anon_sym_GT_GT_GT] = ACTIONS(3034), + [anon_sym_AMP_CARET] = ACTIONS(3034), + [anon_sym_AMP_AMP] = ACTIONS(3034), + [anon_sym_PIPE_PIPE] = ACTIONS(3034), + [anon_sym_or] = ACTIONS(3034), + [sym_none] = ACTIONS(3034), + [sym_true] = ACTIONS(3034), + [sym_false] = ACTIONS(3034), + [sym_nil] = ACTIONS(3034), + [anon_sym_QMARK_DOT] = ACTIONS(3034), + [anon_sym_POUND_LBRACK] = ACTIONS(3034), + [anon_sym_if] = ACTIONS(3034), + [anon_sym_DOLLARif] = ACTIONS(3034), + [anon_sym_is] = ACTIONS(3034), + [anon_sym_BANGis] = ACTIONS(3034), + [anon_sym_in] = ACTIONS(3034), + [anon_sym_BANGin] = ACTIONS(3034), + [anon_sym_match] = ACTIONS(3034), + [anon_sym_select] = ACTIONS(3034), + [anon_sym_STAR_EQ] = ACTIONS(3034), + [anon_sym_SLASH_EQ] = ACTIONS(3034), + [anon_sym_PERCENT_EQ] = ACTIONS(3034), + [anon_sym_LT_LT_EQ] = ACTIONS(3034), + [anon_sym_GT_GT_EQ] = ACTIONS(3034), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3034), + [anon_sym_AMP_EQ] = ACTIONS(3034), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3034), + [anon_sym_PLUS_EQ] = ACTIONS(3034), + [anon_sym_DASH_EQ] = ACTIONS(3034), + [anon_sym_PIPE_EQ] = ACTIONS(3034), + [anon_sym_CARET_EQ] = ACTIONS(3034), + [anon_sym_COLON_EQ] = ACTIONS(3034), + [anon_sym_lock] = ACTIONS(3034), + [anon_sym_rlock] = ACTIONS(3034), + [anon_sym_unsafe] = ACTIONS(3034), + [anon_sym_sql] = ACTIONS(3034), + [sym_int_literal] = ACTIONS(3034), + [sym_float_literal] = ACTIONS(3034), + [sym_rune_literal] = ACTIONS(3034), + [anon_sym_AT] = ACTIONS(3034), + [anon_sym_shared] = ACTIONS(3034), + [anon_sym_map_LBRACK] = ACTIONS(3034), + [anon_sym_chan] = ACTIONS(3034), + [anon_sym_thread] = ACTIONS(3034), + [anon_sym_atomic] = ACTIONS(3034), + [anon_sym_assert] = ACTIONS(3034), + [anon_sym_defer] = ACTIONS(3034), + [anon_sym_goto] = ACTIONS(3034), + [anon_sym_break] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(3034), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_DOLLARfor] = ACTIONS(3034), + [anon_sym_for] = ACTIONS(3034), + [anon_sym_POUND] = ACTIONS(3034), + [anon_sym_asm] = ACTIONS(3034), + [anon_sym_AT_LBRACK] = ACTIONS(3034), + [sym___double_quote] = ACTIONS(3034), + [sym___single_quote] = ACTIONS(3034), + [sym___c_double_quote] = ACTIONS(3034), + [sym___c_single_quote] = ACTIONS(3034), + [sym___r_double_quote] = ACTIONS(3034), + [sym___r_single_quote] = ACTIONS(3034), }, [913] = { - [ts_builtin_sym_end] = ACTIONS(3047), - [sym_identifier] = ACTIONS(3049), - [anon_sym_LF] = ACTIONS(3049), - [anon_sym_CR] = ACTIONS(3049), - [anon_sym_CR_LF] = ACTIONS(3049), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3049), - [anon_sym_as] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3049), - [anon_sym_EQ] = ACTIONS(3049), - [anon_sym___global] = ACTIONS(3049), - [anon_sym_type] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(3049), - [anon_sym_fn] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3049), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3049), - [anon_sym_SLASH] = ACTIONS(3049), - [anon_sym_PERCENT] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(3049), - [anon_sym_GT] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3049), - [anon_sym_BANG_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(3049), - [anon_sym_GT_EQ] = ACTIONS(3049), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_struct] = ACTIONS(3049), - [anon_sym_union] = ACTIONS(3049), - [anon_sym_pub] = ACTIONS(3049), - [anon_sym_mut] = ACTIONS(3049), - [anon_sym_enum] = ACTIONS(3049), - [anon_sym_interface] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_QMARK] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3049), - [anon_sym_go] = ACTIONS(3049), - [anon_sym_spawn] = ACTIONS(3049), - [anon_sym_json_DOTdecode] = ACTIONS(3049), - [anon_sym_LBRACK2] = ACTIONS(3049), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_CARET] = ACTIONS(3049), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_LT_DASH] = ACTIONS(3049), - [anon_sym_LT_LT] = ACTIONS(3049), - [anon_sym_GT_GT] = ACTIONS(3049), - [anon_sym_GT_GT_GT] = ACTIONS(3049), - [anon_sym_AMP_CARET] = ACTIONS(3049), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_or] = ACTIONS(3049), - [sym_none] = ACTIONS(3049), - [sym_true] = ACTIONS(3049), - [sym_false] = ACTIONS(3049), - [sym_nil] = ACTIONS(3049), - [anon_sym_QMARK_DOT] = ACTIONS(3049), - [anon_sym_POUND_LBRACK] = ACTIONS(3049), - [anon_sym_if] = ACTIONS(3049), - [anon_sym_DOLLARif] = ACTIONS(3049), - [anon_sym_is] = ACTIONS(3049), - [anon_sym_BANGis] = ACTIONS(3049), - [anon_sym_in] = ACTIONS(3049), - [anon_sym_BANGin] = ACTIONS(3049), - [anon_sym_match] = ACTIONS(3049), - [anon_sym_select] = ACTIONS(3049), - [anon_sym_STAR_EQ] = ACTIONS(3049), - [anon_sym_SLASH_EQ] = ACTIONS(3049), - [anon_sym_PERCENT_EQ] = ACTIONS(3049), - [anon_sym_LT_LT_EQ] = ACTIONS(3049), - [anon_sym_GT_GT_EQ] = ACTIONS(3049), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3049), - [anon_sym_AMP_EQ] = ACTIONS(3049), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3049), - [anon_sym_PLUS_EQ] = ACTIONS(3049), - [anon_sym_DASH_EQ] = ACTIONS(3049), - [anon_sym_PIPE_EQ] = ACTIONS(3049), - [anon_sym_CARET_EQ] = ACTIONS(3049), - [anon_sym_COLON_EQ] = ACTIONS(3049), - [anon_sym_lock] = ACTIONS(3049), - [anon_sym_rlock] = ACTIONS(3049), - [anon_sym_unsafe] = ACTIONS(3049), - [anon_sym_sql] = ACTIONS(3049), - [sym_int_literal] = ACTIONS(3049), - [sym_float_literal] = ACTIONS(3049), - [sym_rune_literal] = ACTIONS(3049), - [anon_sym_AT] = ACTIONS(3049), - [anon_sym_shared] = ACTIONS(3049), - [anon_sym_map_LBRACK] = ACTIONS(3049), - [anon_sym_chan] = ACTIONS(3049), - [anon_sym_thread] = ACTIONS(3049), - [anon_sym_atomic] = ACTIONS(3049), - [anon_sym_assert] = ACTIONS(3049), - [anon_sym_defer] = ACTIONS(3049), - [anon_sym_goto] = ACTIONS(3049), - [anon_sym_break] = ACTIONS(3049), - [anon_sym_continue] = ACTIONS(3049), - [anon_sym_return] = ACTIONS(3049), - [anon_sym_DOLLARfor] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3049), - [anon_sym_POUND] = ACTIONS(3049), - [anon_sym_asm] = ACTIONS(3049), - [anon_sym_AT_LBRACK] = ACTIONS(3049), - [sym___double_quote] = ACTIONS(3049), - [sym___single_quote] = ACTIONS(3049), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3049), - [sym___r_double_quote] = ACTIONS(3049), - [sym___r_single_quote] = ACTIONS(3049), + [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), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3038), + [sym___single_quote] = ACTIONS(3038), + [sym___c_double_quote] = ACTIONS(3038), + [sym___c_single_quote] = ACTIONS(3038), + [sym___r_double_quote] = ACTIONS(3038), + [sym___r_single_quote] = ACTIONS(3038), }, [914] = { - [ts_builtin_sym_end] = ACTIONS(3051), - [sym_identifier] = ACTIONS(3053), - [anon_sym_LF] = ACTIONS(3053), - [anon_sym_CR] = ACTIONS(3053), - [anon_sym_CR_LF] = ACTIONS(3053), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3053), - [anon_sym_as] = ACTIONS(3053), - [anon_sym_LBRACE] = ACTIONS(3053), - [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym_EQ] = ACTIONS(3053), - [anon_sym___global] = ACTIONS(3053), - [anon_sym_type] = ACTIONS(3053), - [anon_sym_PIPE] = ACTIONS(3053), - [anon_sym_fn] = ACTIONS(3053), - [anon_sym_PLUS] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3053), - [anon_sym_STAR] = ACTIONS(3053), - [anon_sym_SLASH] = ACTIONS(3053), - [anon_sym_PERCENT] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(3053), - [anon_sym_GT] = ACTIONS(3053), - [anon_sym_EQ_EQ] = ACTIONS(3053), - [anon_sym_BANG_EQ] = ACTIONS(3053), - [anon_sym_LT_EQ] = ACTIONS(3053), - [anon_sym_GT_EQ] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3051), - [anon_sym_struct] = ACTIONS(3053), - [anon_sym_union] = ACTIONS(3053), - [anon_sym_pub] = ACTIONS(3053), - [anon_sym_mut] = ACTIONS(3053), - [anon_sym_enum] = ACTIONS(3053), - [anon_sym_interface] = ACTIONS(3053), - [anon_sym_PLUS_PLUS] = ACTIONS(3053), - [anon_sym_DASH_DASH] = ACTIONS(3053), - [anon_sym_QMARK] = ACTIONS(3053), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_go] = ACTIONS(3053), - [anon_sym_spawn] = ACTIONS(3053), - [anon_sym_json_DOTdecode] = ACTIONS(3053), - [anon_sym_LBRACK2] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_CARET] = ACTIONS(3053), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_LT_DASH] = ACTIONS(3053), - [anon_sym_LT_LT] = ACTIONS(3053), - [anon_sym_GT_GT] = ACTIONS(3053), - [anon_sym_GT_GT_GT] = ACTIONS(3053), - [anon_sym_AMP_CARET] = ACTIONS(3053), - [anon_sym_AMP_AMP] = ACTIONS(3053), - [anon_sym_PIPE_PIPE] = ACTIONS(3053), - [anon_sym_or] = ACTIONS(3053), - [sym_none] = ACTIONS(3053), - [sym_true] = ACTIONS(3053), - [sym_false] = ACTIONS(3053), - [sym_nil] = ACTIONS(3053), - [anon_sym_QMARK_DOT] = ACTIONS(3053), - [anon_sym_POUND_LBRACK] = ACTIONS(3053), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_DOLLARif] = ACTIONS(3053), - [anon_sym_is] = ACTIONS(3053), - [anon_sym_BANGis] = ACTIONS(3053), - [anon_sym_in] = ACTIONS(3053), - [anon_sym_BANGin] = ACTIONS(3053), - [anon_sym_match] = ACTIONS(3053), - [anon_sym_select] = ACTIONS(3053), - [anon_sym_STAR_EQ] = ACTIONS(3053), - [anon_sym_SLASH_EQ] = ACTIONS(3053), - [anon_sym_PERCENT_EQ] = ACTIONS(3053), - [anon_sym_LT_LT_EQ] = ACTIONS(3053), - [anon_sym_GT_GT_EQ] = ACTIONS(3053), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3053), - [anon_sym_AMP_EQ] = ACTIONS(3053), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3053), - [anon_sym_PLUS_EQ] = ACTIONS(3053), - [anon_sym_DASH_EQ] = ACTIONS(3053), - [anon_sym_PIPE_EQ] = ACTIONS(3053), - [anon_sym_CARET_EQ] = ACTIONS(3053), - [anon_sym_COLON_EQ] = ACTIONS(3053), - [anon_sym_lock] = ACTIONS(3053), - [anon_sym_rlock] = ACTIONS(3053), - [anon_sym_unsafe] = ACTIONS(3053), - [anon_sym_sql] = ACTIONS(3053), - [sym_int_literal] = ACTIONS(3053), - [sym_float_literal] = ACTIONS(3053), - [sym_rune_literal] = ACTIONS(3053), - [anon_sym_AT] = ACTIONS(3053), - [anon_sym_shared] = ACTIONS(3053), - [anon_sym_map_LBRACK] = ACTIONS(3053), - [anon_sym_chan] = ACTIONS(3053), - [anon_sym_thread] = ACTIONS(3053), - [anon_sym_atomic] = ACTIONS(3053), - [anon_sym_assert] = ACTIONS(3053), - [anon_sym_defer] = ACTIONS(3053), - [anon_sym_goto] = ACTIONS(3053), - [anon_sym_break] = ACTIONS(3053), - [anon_sym_continue] = ACTIONS(3053), - [anon_sym_return] = ACTIONS(3053), - [anon_sym_DOLLARfor] = ACTIONS(3053), - [anon_sym_for] = ACTIONS(3053), - [anon_sym_POUND] = ACTIONS(3053), - [anon_sym_asm] = ACTIONS(3053), - [anon_sym_AT_LBRACK] = ACTIONS(3053), - [sym___double_quote] = ACTIONS(3053), - [sym___single_quote] = ACTIONS(3053), - [sym___c_double_quote] = ACTIONS(3053), - [sym___c_single_quote] = ACTIONS(3053), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3053), + [ts_builtin_sym_end] = ACTIONS(2990), + [sym_identifier] = ACTIONS(2992), + [anon_sym_LF] = ACTIONS(2992), + [anon_sym_CR] = ACTIONS(2992), + [anon_sym_CR_LF] = ACTIONS(2992), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2994), + [anon_sym_as] = ACTIONS(2994), + [anon_sym_LBRACE] = ACTIONS(2992), + [anon_sym_COMMA] = ACTIONS(2994), + [anon_sym_const] = ACTIONS(2992), + [anon_sym_LPAREN] = ACTIONS(2994), + [anon_sym_EQ] = ACTIONS(2994), + [anon_sym___global] = ACTIONS(2992), + [anon_sym_type] = ACTIONS(2992), + [anon_sym_PIPE] = ACTIONS(2994), + [anon_sym_fn] = ACTIONS(2992), + [anon_sym_PLUS] = ACTIONS(2994), + [anon_sym_DASH] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2994), + [anon_sym_SLASH] = ACTIONS(2994), + [anon_sym_PERCENT] = ACTIONS(2994), + [anon_sym_LT] = ACTIONS(2994), + [anon_sym_GT] = ACTIONS(2994), + [anon_sym_EQ_EQ] = ACTIONS(2994), + [anon_sym_BANG_EQ] = ACTIONS(2994), + [anon_sym_LT_EQ] = ACTIONS(2994), + [anon_sym_GT_EQ] = ACTIONS(2994), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_struct] = ACTIONS(2992), + [anon_sym_union] = ACTIONS(2992), + [anon_sym_pub] = ACTIONS(2992), + [anon_sym_mut] = ACTIONS(2992), + [anon_sym_enum] = ACTIONS(2992), + [anon_sym_interface] = ACTIONS(2992), + [anon_sym_PLUS_PLUS] = ACTIONS(2994), + [anon_sym_DASH_DASH] = ACTIONS(2994), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_BANG] = ACTIONS(2994), + [anon_sym_go] = ACTIONS(2992), + [anon_sym_spawn] = ACTIONS(2992), + [anon_sym_json_DOTdecode] = ACTIONS(2992), + [anon_sym_LBRACK2] = ACTIONS(2994), + [anon_sym_TILDE] = ACTIONS(2992), + [anon_sym_CARET] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2994), + [anon_sym_LT_DASH] = ACTIONS(2992), + [anon_sym_LT_LT] = ACTIONS(2994), + [anon_sym_GT_GT] = ACTIONS(2994), + [anon_sym_GT_GT_GT] = ACTIONS(2994), + [anon_sym_AMP_CARET] = ACTIONS(2994), + [anon_sym_AMP_AMP] = ACTIONS(2994), + [anon_sym_PIPE_PIPE] = ACTIONS(2994), + [anon_sym_or] = ACTIONS(2994), + [sym_none] = ACTIONS(2992), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [sym_nil] = ACTIONS(2992), + [anon_sym_QMARK_DOT] = ACTIONS(2994), + [anon_sym_POUND_LBRACK] = ACTIONS(2994), + [anon_sym_if] = ACTIONS(2992), + [anon_sym_DOLLARif] = ACTIONS(2992), + [anon_sym_is] = ACTIONS(2994), + [anon_sym_BANGis] = ACTIONS(2994), + [anon_sym_in] = ACTIONS(2994), + [anon_sym_BANGin] = ACTIONS(2994), + [anon_sym_match] = ACTIONS(2992), + [anon_sym_select] = ACTIONS(2992), + [anon_sym_STAR_EQ] = ACTIONS(2994), + [anon_sym_SLASH_EQ] = ACTIONS(2994), + [anon_sym_PERCENT_EQ] = ACTIONS(2994), + [anon_sym_LT_LT_EQ] = ACTIONS(2994), + [anon_sym_GT_GT_EQ] = ACTIONS(2994), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2994), + [anon_sym_AMP_EQ] = ACTIONS(2994), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2994), + [anon_sym_PLUS_EQ] = ACTIONS(2994), + [anon_sym_DASH_EQ] = ACTIONS(2994), + [anon_sym_PIPE_EQ] = ACTIONS(2994), + [anon_sym_CARET_EQ] = ACTIONS(2994), + [anon_sym_COLON_EQ] = ACTIONS(2994), + [anon_sym_lock] = ACTIONS(2992), + [anon_sym_rlock] = ACTIONS(2992), + [anon_sym_unsafe] = ACTIONS(2992), + [anon_sym_sql] = ACTIONS(2992), + [sym_int_literal] = ACTIONS(2992), + [sym_float_literal] = ACTIONS(2992), + [sym_rune_literal] = ACTIONS(2992), + [anon_sym_AT] = ACTIONS(2992), + [anon_sym_shared] = ACTIONS(2992), + [anon_sym_map_LBRACK] = ACTIONS(2992), + [anon_sym_chan] = ACTIONS(2992), + [anon_sym_thread] = ACTIONS(2992), + [anon_sym_atomic] = ACTIONS(2992), + [anon_sym_assert] = ACTIONS(2992), + [anon_sym_defer] = ACTIONS(2992), + [anon_sym_goto] = ACTIONS(2992), + [anon_sym_break] = ACTIONS(2992), + [anon_sym_continue] = ACTIONS(2992), + [anon_sym_return] = ACTIONS(2992), + [anon_sym_DOLLARfor] = ACTIONS(2992), + [anon_sym_for] = ACTIONS(2992), + [anon_sym_POUND] = ACTIONS(2992), + [anon_sym_asm] = ACTIONS(2992), + [anon_sym_AT_LBRACK] = ACTIONS(2992), + [sym___double_quote] = ACTIONS(2992), + [sym___single_quote] = ACTIONS(2992), + [sym___c_double_quote] = ACTIONS(2992), + [sym___c_single_quote] = ACTIONS(2992), + [sym___r_double_quote] = ACTIONS(2992), + [sym___r_single_quote] = ACTIONS(2992), }, [915] = { - [ts_builtin_sym_end] = ACTIONS(3055), - [sym_identifier] = ACTIONS(3057), - [anon_sym_LF] = ACTIONS(3057), - [anon_sym_CR] = ACTIONS(3057), - [anon_sym_CR_LF] = ACTIONS(3057), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3057), - [anon_sym_as] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3057), - [anon_sym_COMMA] = ACTIONS(3057), - [anon_sym_const] = ACTIONS(3057), - [anon_sym_LPAREN] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(3057), - [anon_sym___global] = ACTIONS(3057), - [anon_sym_type] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3057), - [anon_sym_fn] = ACTIONS(3057), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3057), - [anon_sym_SLASH] = ACTIONS(3057), - [anon_sym_PERCENT] = ACTIONS(3057), - [anon_sym_LT] = ACTIONS(3057), - [anon_sym_GT] = ACTIONS(3057), - [anon_sym_EQ_EQ] = ACTIONS(3057), - [anon_sym_BANG_EQ] = ACTIONS(3057), - [anon_sym_LT_EQ] = ACTIONS(3057), - [anon_sym_GT_EQ] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_union] = ACTIONS(3057), - [anon_sym_pub] = ACTIONS(3057), - [anon_sym_mut] = ACTIONS(3057), - [anon_sym_enum] = ACTIONS(3057), - [anon_sym_interface] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(3057), - [anon_sym_go] = ACTIONS(3057), - [anon_sym_spawn] = ACTIONS(3057), - [anon_sym_json_DOTdecode] = ACTIONS(3057), - [anon_sym_LBRACK2] = ACTIONS(3057), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_CARET] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_LT_DASH] = ACTIONS(3057), - [anon_sym_LT_LT] = ACTIONS(3057), - [anon_sym_GT_GT] = ACTIONS(3057), - [anon_sym_GT_GT_GT] = ACTIONS(3057), - [anon_sym_AMP_CARET] = ACTIONS(3057), - [anon_sym_AMP_AMP] = ACTIONS(3057), - [anon_sym_PIPE_PIPE] = ACTIONS(3057), - [anon_sym_or] = ACTIONS(3057), - [sym_none] = ACTIONS(3057), - [sym_true] = ACTIONS(3057), - [sym_false] = ACTIONS(3057), - [sym_nil] = ACTIONS(3057), - [anon_sym_QMARK_DOT] = ACTIONS(3057), - [anon_sym_POUND_LBRACK] = ACTIONS(3057), - [anon_sym_if] = ACTIONS(3057), - [anon_sym_DOLLARif] = ACTIONS(3057), - [anon_sym_is] = ACTIONS(3057), - [anon_sym_BANGis] = ACTIONS(3057), - [anon_sym_in] = ACTIONS(3057), - [anon_sym_BANGin] = ACTIONS(3057), - [anon_sym_match] = ACTIONS(3057), - [anon_sym_select] = ACTIONS(3057), - [anon_sym_STAR_EQ] = ACTIONS(3057), - [anon_sym_SLASH_EQ] = ACTIONS(3057), - [anon_sym_PERCENT_EQ] = ACTIONS(3057), - [anon_sym_LT_LT_EQ] = ACTIONS(3057), - [anon_sym_GT_GT_EQ] = ACTIONS(3057), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3057), - [anon_sym_AMP_EQ] = ACTIONS(3057), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(3057), - [anon_sym_DASH_EQ] = ACTIONS(3057), - [anon_sym_PIPE_EQ] = ACTIONS(3057), - [anon_sym_CARET_EQ] = ACTIONS(3057), - [anon_sym_COLON_EQ] = ACTIONS(3057), - [anon_sym_lock] = ACTIONS(3057), - [anon_sym_rlock] = ACTIONS(3057), - [anon_sym_unsafe] = ACTIONS(3057), - [anon_sym_sql] = ACTIONS(3057), - [sym_int_literal] = ACTIONS(3057), - [sym_float_literal] = ACTIONS(3057), - [sym_rune_literal] = ACTIONS(3057), - [anon_sym_AT] = ACTIONS(3057), - [anon_sym_shared] = ACTIONS(3057), - [anon_sym_map_LBRACK] = ACTIONS(3057), - [anon_sym_chan] = ACTIONS(3057), - [anon_sym_thread] = ACTIONS(3057), - [anon_sym_atomic] = ACTIONS(3057), - [anon_sym_assert] = ACTIONS(3057), - [anon_sym_defer] = ACTIONS(3057), - [anon_sym_goto] = ACTIONS(3057), - [anon_sym_break] = ACTIONS(3057), - [anon_sym_continue] = ACTIONS(3057), - [anon_sym_return] = ACTIONS(3057), - [anon_sym_DOLLARfor] = ACTIONS(3057), - [anon_sym_for] = ACTIONS(3057), - [anon_sym_POUND] = ACTIONS(3057), - [anon_sym_asm] = ACTIONS(3057), - [anon_sym_AT_LBRACK] = ACTIONS(3057), - [sym___double_quote] = ACTIONS(3057), - [sym___single_quote] = ACTIONS(3057), - [sym___c_double_quote] = ACTIONS(3057), - [sym___c_single_quote] = ACTIONS(3057), - [sym___r_double_quote] = ACTIONS(3057), - [sym___r_single_quote] = ACTIONS(3057), + [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), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3042), + [sym___single_quote] = ACTIONS(3042), + [sym___c_double_quote] = ACTIONS(3042), + [sym___c_single_quote] = ACTIONS(3042), + [sym___r_double_quote] = ACTIONS(3042), + [sym___r_single_quote] = ACTIONS(3042), }, [916] = { - [ts_builtin_sym_end] = ACTIONS(3059), - [sym_identifier] = ACTIONS(3061), - [anon_sym_LF] = ACTIONS(3061), - [anon_sym_CR] = ACTIONS(3061), - [anon_sym_CR_LF] = ACTIONS(3061), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3061), - [anon_sym_as] = ACTIONS(3061), - [anon_sym_LBRACE] = ACTIONS(3061), - [anon_sym_COMMA] = ACTIONS(3061), - [anon_sym_const] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_EQ] = ACTIONS(3061), - [anon_sym___global] = ACTIONS(3061), - [anon_sym_type] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_fn] = ACTIONS(3061), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_STAR] = ACTIONS(3061), - [anon_sym_SLASH] = ACTIONS(3061), - [anon_sym_PERCENT] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_EQ_EQ] = ACTIONS(3061), - [anon_sym_BANG_EQ] = ACTIONS(3061), - [anon_sym_LT_EQ] = ACTIONS(3061), - [anon_sym_GT_EQ] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(3061), - [anon_sym_union] = ACTIONS(3061), - [anon_sym_pub] = ACTIONS(3061), - [anon_sym_mut] = ACTIONS(3061), - [anon_sym_enum] = ACTIONS(3061), - [anon_sym_interface] = ACTIONS(3061), - [anon_sym_PLUS_PLUS] = ACTIONS(3061), - [anon_sym_DASH_DASH] = ACTIONS(3061), - [anon_sym_QMARK] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3061), - [anon_sym_spawn] = ACTIONS(3061), - [anon_sym_json_DOTdecode] = ACTIONS(3061), - [anon_sym_LBRACK2] = ACTIONS(3061), - [anon_sym_TILDE] = ACTIONS(3061), - [anon_sym_CARET] = ACTIONS(3061), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_LT_DASH] = ACTIONS(3061), - [anon_sym_LT_LT] = ACTIONS(3061), - [anon_sym_GT_GT] = ACTIONS(3061), - [anon_sym_GT_GT_GT] = ACTIONS(3061), - [anon_sym_AMP_CARET] = ACTIONS(3061), - [anon_sym_AMP_AMP] = ACTIONS(3061), - [anon_sym_PIPE_PIPE] = ACTIONS(3061), - [anon_sym_or] = ACTIONS(3061), - [sym_none] = ACTIONS(3061), - [sym_true] = ACTIONS(3061), - [sym_false] = ACTIONS(3061), - [sym_nil] = ACTIONS(3061), - [anon_sym_QMARK_DOT] = ACTIONS(3061), - [anon_sym_POUND_LBRACK] = ACTIONS(3061), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_DOLLARif] = ACTIONS(3061), - [anon_sym_is] = ACTIONS(3061), - [anon_sym_BANGis] = ACTIONS(3061), - [anon_sym_in] = ACTIONS(3061), - [anon_sym_BANGin] = ACTIONS(3061), - [anon_sym_match] = ACTIONS(3061), - [anon_sym_select] = ACTIONS(3061), - [anon_sym_STAR_EQ] = ACTIONS(3061), - [anon_sym_SLASH_EQ] = ACTIONS(3061), - [anon_sym_PERCENT_EQ] = ACTIONS(3061), - [anon_sym_LT_LT_EQ] = ACTIONS(3061), - [anon_sym_GT_GT_EQ] = ACTIONS(3061), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3061), - [anon_sym_AMP_EQ] = ACTIONS(3061), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3061), - [anon_sym_PLUS_EQ] = ACTIONS(3061), - [anon_sym_DASH_EQ] = ACTIONS(3061), - [anon_sym_PIPE_EQ] = ACTIONS(3061), - [anon_sym_CARET_EQ] = ACTIONS(3061), - [anon_sym_COLON_EQ] = ACTIONS(3061), - [anon_sym_lock] = ACTIONS(3061), - [anon_sym_rlock] = ACTIONS(3061), - [anon_sym_unsafe] = ACTIONS(3061), - [anon_sym_sql] = ACTIONS(3061), - [sym_int_literal] = ACTIONS(3061), - [sym_float_literal] = ACTIONS(3061), - [sym_rune_literal] = ACTIONS(3061), - [anon_sym_AT] = ACTIONS(3061), - [anon_sym_shared] = ACTIONS(3061), - [anon_sym_map_LBRACK] = ACTIONS(3061), - [anon_sym_chan] = ACTIONS(3061), - [anon_sym_thread] = ACTIONS(3061), - [anon_sym_atomic] = ACTIONS(3061), - [anon_sym_assert] = ACTIONS(3061), - [anon_sym_defer] = ACTIONS(3061), - [anon_sym_goto] = ACTIONS(3061), - [anon_sym_break] = ACTIONS(3061), - [anon_sym_continue] = ACTIONS(3061), - [anon_sym_return] = ACTIONS(3061), - [anon_sym_DOLLARfor] = ACTIONS(3061), - [anon_sym_for] = ACTIONS(3061), - [anon_sym_POUND] = ACTIONS(3061), - [anon_sym_asm] = ACTIONS(3061), - [anon_sym_AT_LBRACK] = ACTIONS(3061), - [sym___double_quote] = ACTIONS(3061), - [sym___single_quote] = ACTIONS(3061), - [sym___c_double_quote] = ACTIONS(3061), - [sym___c_single_quote] = ACTIONS(3061), - [sym___r_double_quote] = ACTIONS(3061), - [sym___r_single_quote] = ACTIONS(3061), + [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), + [sym_comment] = ACTIONS(493), + [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_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), + [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_STAR_EQ] = ACTIONS(3046), + [anon_sym_SLASH_EQ] = ACTIONS(3046), + [anon_sym_PERCENT_EQ] = ACTIONS(3046), + [anon_sym_LT_LT_EQ] = ACTIONS(3046), + [anon_sym_GT_GT_EQ] = ACTIONS(3046), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3046), + [anon_sym_AMP_EQ] = ACTIONS(3046), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3046), + [anon_sym_PLUS_EQ] = ACTIONS(3046), + [anon_sym_DASH_EQ] = ACTIONS(3046), + [anon_sym_PIPE_EQ] = ACTIONS(3046), + [anon_sym_CARET_EQ] = ACTIONS(3046), + [anon_sym_COLON_EQ] = 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_AT] = 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), + [sym___double_quote] = ACTIONS(3046), + [sym___single_quote] = ACTIONS(3046), + [sym___c_double_quote] = ACTIONS(3046), + [sym___c_single_quote] = ACTIONS(3046), + [sym___r_double_quote] = ACTIONS(3046), + [sym___r_single_quote] = ACTIONS(3046), }, [917] = { - [ts_builtin_sym_end] = ACTIONS(3063), - [sym_identifier] = ACTIONS(3065), - [anon_sym_LF] = ACTIONS(3065), - [anon_sym_CR] = ACTIONS(3065), - [anon_sym_CR_LF] = ACTIONS(3065), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3065), - [anon_sym_as] = ACTIONS(3065), - [anon_sym_LBRACE] = ACTIONS(3065), - [anon_sym_COMMA] = ACTIONS(3065), - [anon_sym_const] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(3065), - [anon_sym_EQ] = ACTIONS(3065), - [anon_sym___global] = ACTIONS(3065), - [anon_sym_type] = ACTIONS(3065), - [anon_sym_PIPE] = ACTIONS(3065), - [anon_sym_fn] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_SLASH] = ACTIONS(3065), - [anon_sym_PERCENT] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3065), - [anon_sym_GT] = ACTIONS(3065), - [anon_sym_EQ_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_LT_EQ] = ACTIONS(3065), - [anon_sym_GT_EQ] = ACTIONS(3065), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3065), - [anon_sym_union] = ACTIONS(3065), - [anon_sym_pub] = ACTIONS(3065), - [anon_sym_mut] = ACTIONS(3065), - [anon_sym_enum] = ACTIONS(3065), - [anon_sym_interface] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_DASH_DASH] = ACTIONS(3065), - [anon_sym_QMARK] = ACTIONS(3065), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_go] = ACTIONS(3065), - [anon_sym_spawn] = ACTIONS(3065), - [anon_sym_json_DOTdecode] = ACTIONS(3065), - [anon_sym_LBRACK2] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_CARET] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3065), - [anon_sym_LT_DASH] = ACTIONS(3065), - [anon_sym_LT_LT] = ACTIONS(3065), - [anon_sym_GT_GT] = ACTIONS(3065), - [anon_sym_GT_GT_GT] = ACTIONS(3065), - [anon_sym_AMP_CARET] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_PIPE_PIPE] = ACTIONS(3065), - [anon_sym_or] = ACTIONS(3065), - [sym_none] = ACTIONS(3065), - [sym_true] = ACTIONS(3065), - [sym_false] = ACTIONS(3065), - [sym_nil] = ACTIONS(3065), - [anon_sym_QMARK_DOT] = ACTIONS(3065), - [anon_sym_POUND_LBRACK] = ACTIONS(3065), - [anon_sym_if] = ACTIONS(3065), - [anon_sym_DOLLARif] = ACTIONS(3065), - [anon_sym_is] = ACTIONS(3065), - [anon_sym_BANGis] = ACTIONS(3065), - [anon_sym_in] = ACTIONS(3065), - [anon_sym_BANGin] = ACTIONS(3065), - [anon_sym_match] = ACTIONS(3065), - [anon_sym_select] = ACTIONS(3065), - [anon_sym_STAR_EQ] = ACTIONS(3065), - [anon_sym_SLASH_EQ] = ACTIONS(3065), - [anon_sym_PERCENT_EQ] = ACTIONS(3065), - [anon_sym_LT_LT_EQ] = ACTIONS(3065), - [anon_sym_GT_GT_EQ] = ACTIONS(3065), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3065), - [anon_sym_AMP_EQ] = ACTIONS(3065), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3065), - [anon_sym_PLUS_EQ] = ACTIONS(3065), - [anon_sym_DASH_EQ] = ACTIONS(3065), - [anon_sym_PIPE_EQ] = ACTIONS(3065), - [anon_sym_CARET_EQ] = ACTIONS(3065), - [anon_sym_COLON_EQ] = ACTIONS(3065), - [anon_sym_lock] = ACTIONS(3065), - [anon_sym_rlock] = ACTIONS(3065), - [anon_sym_unsafe] = ACTIONS(3065), - [anon_sym_sql] = ACTIONS(3065), - [sym_int_literal] = ACTIONS(3065), - [sym_float_literal] = ACTIONS(3065), - [sym_rune_literal] = ACTIONS(3065), - [anon_sym_AT] = ACTIONS(3065), - [anon_sym_shared] = ACTIONS(3065), - [anon_sym_map_LBRACK] = ACTIONS(3065), - [anon_sym_chan] = ACTIONS(3065), - [anon_sym_thread] = ACTIONS(3065), - [anon_sym_atomic] = ACTIONS(3065), - [anon_sym_assert] = ACTIONS(3065), - [anon_sym_defer] = ACTIONS(3065), - [anon_sym_goto] = ACTIONS(3065), - [anon_sym_break] = ACTIONS(3065), - [anon_sym_continue] = ACTIONS(3065), - [anon_sym_return] = ACTIONS(3065), - [anon_sym_DOLLARfor] = ACTIONS(3065), - [anon_sym_for] = ACTIONS(3065), - [anon_sym_POUND] = ACTIONS(3065), - [anon_sym_asm] = ACTIONS(3065), - [anon_sym_AT_LBRACK] = ACTIONS(3065), - [sym___double_quote] = ACTIONS(3065), - [sym___single_quote] = ACTIONS(3065), - [sym___c_double_quote] = ACTIONS(3065), - [sym___c_single_quote] = ACTIONS(3065), - [sym___r_double_quote] = ACTIONS(3065), - [sym___r_single_quote] = ACTIONS(3065), + [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), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3050), + [sym___single_quote] = ACTIONS(3050), + [sym___c_double_quote] = ACTIONS(3050), + [sym___c_single_quote] = ACTIONS(3050), + [sym___r_double_quote] = ACTIONS(3050), + [sym___r_single_quote] = ACTIONS(3050), }, [918] = { - [ts_builtin_sym_end] = ACTIONS(3067), - [sym_identifier] = ACTIONS(3069), - [anon_sym_LF] = ACTIONS(3069), - [anon_sym_CR] = ACTIONS(3069), - [anon_sym_CR_LF] = ACTIONS(3069), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3069), - [anon_sym_as] = ACTIONS(3069), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_COMMA] = ACTIONS(3069), - [anon_sym_const] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3069), - [anon_sym_EQ] = ACTIONS(3069), - [anon_sym___global] = ACTIONS(3069), - [anon_sym_type] = ACTIONS(3069), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_fn] = ACTIONS(3069), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_SLASH] = ACTIONS(3069), - [anon_sym_PERCENT] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_EQ_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ] = ACTIONS(3069), - [anon_sym_LT_EQ] = ACTIONS(3069), - [anon_sym_GT_EQ] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_struct] = ACTIONS(3069), - [anon_sym_union] = ACTIONS(3069), - [anon_sym_pub] = ACTIONS(3069), - [anon_sym_mut] = ACTIONS(3069), - [anon_sym_enum] = ACTIONS(3069), - [anon_sym_interface] = ACTIONS(3069), - [anon_sym_PLUS_PLUS] = ACTIONS(3069), - [anon_sym_DASH_DASH] = ACTIONS(3069), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_BANG] = ACTIONS(3069), - [anon_sym_go] = ACTIONS(3069), - [anon_sym_spawn] = ACTIONS(3069), - [anon_sym_json_DOTdecode] = ACTIONS(3069), - [anon_sym_LBRACK2] = ACTIONS(3069), - [anon_sym_TILDE] = ACTIONS(3069), - [anon_sym_CARET] = ACTIONS(3069), - [anon_sym_AMP] = ACTIONS(3069), - [anon_sym_LT_DASH] = ACTIONS(3069), - [anon_sym_LT_LT] = ACTIONS(3069), - [anon_sym_GT_GT] = ACTIONS(3069), - [anon_sym_GT_GT_GT] = ACTIONS(3069), - [anon_sym_AMP_CARET] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_or] = ACTIONS(3069), - [sym_none] = ACTIONS(3069), - [sym_true] = ACTIONS(3069), - [sym_false] = ACTIONS(3069), - [sym_nil] = ACTIONS(3069), - [anon_sym_QMARK_DOT] = ACTIONS(3069), - [anon_sym_POUND_LBRACK] = ACTIONS(3069), - [anon_sym_if] = ACTIONS(3069), - [anon_sym_DOLLARif] = ACTIONS(3069), - [anon_sym_is] = ACTIONS(3069), - [anon_sym_BANGis] = ACTIONS(3069), - [anon_sym_in] = ACTIONS(3069), - [anon_sym_BANGin] = ACTIONS(3069), - [anon_sym_match] = ACTIONS(3069), - [anon_sym_select] = ACTIONS(3069), - [anon_sym_STAR_EQ] = ACTIONS(3069), - [anon_sym_SLASH_EQ] = ACTIONS(3069), - [anon_sym_PERCENT_EQ] = ACTIONS(3069), - [anon_sym_LT_LT_EQ] = ACTIONS(3069), - [anon_sym_GT_GT_EQ] = ACTIONS(3069), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3069), - [anon_sym_AMP_EQ] = ACTIONS(3069), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3069), - [anon_sym_PLUS_EQ] = ACTIONS(3069), - [anon_sym_DASH_EQ] = ACTIONS(3069), - [anon_sym_PIPE_EQ] = ACTIONS(3069), - [anon_sym_CARET_EQ] = ACTIONS(3069), - [anon_sym_COLON_EQ] = ACTIONS(3069), - [anon_sym_lock] = ACTIONS(3069), - [anon_sym_rlock] = ACTIONS(3069), - [anon_sym_unsafe] = ACTIONS(3069), - [anon_sym_sql] = ACTIONS(3069), - [sym_int_literal] = ACTIONS(3069), - [sym_float_literal] = ACTIONS(3069), - [sym_rune_literal] = ACTIONS(3069), - [anon_sym_AT] = ACTIONS(3069), - [anon_sym_shared] = ACTIONS(3069), - [anon_sym_map_LBRACK] = ACTIONS(3069), - [anon_sym_chan] = ACTIONS(3069), - [anon_sym_thread] = ACTIONS(3069), - [anon_sym_atomic] = ACTIONS(3069), - [anon_sym_assert] = ACTIONS(3069), - [anon_sym_defer] = ACTIONS(3069), - [anon_sym_goto] = ACTIONS(3069), - [anon_sym_break] = ACTIONS(3069), - [anon_sym_continue] = ACTIONS(3069), - [anon_sym_return] = ACTIONS(3069), - [anon_sym_DOLLARfor] = ACTIONS(3069), - [anon_sym_for] = ACTIONS(3069), - [anon_sym_POUND] = ACTIONS(3069), - [anon_sym_asm] = ACTIONS(3069), - [anon_sym_AT_LBRACK] = ACTIONS(3069), - [sym___double_quote] = ACTIONS(3069), - [sym___single_quote] = ACTIONS(3069), - [sym___c_double_quote] = ACTIONS(3069), - [sym___c_single_quote] = ACTIONS(3069), - [sym___r_double_quote] = ACTIONS(3069), - [sym___r_single_quote] = ACTIONS(3069), + [ts_builtin_sym_end] = ACTIONS(2980), + [sym_identifier] = ACTIONS(2982), + [anon_sym_LF] = ACTIONS(2982), + [anon_sym_CR] = ACTIONS(2982), + [anon_sym_CR_LF] = ACTIONS(2982), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2984), + [anon_sym_as] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_COMMA] = ACTIONS(2984), + [anon_sym_const] = ACTIONS(2982), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_EQ] = ACTIONS(2984), + [anon_sym___global] = ACTIONS(2982), + [anon_sym_type] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2984), + [anon_sym_fn] = ACTIONS(2982), + [anon_sym_PLUS] = ACTIONS(2984), + [anon_sym_DASH] = ACTIONS(2984), + [anon_sym_STAR] = ACTIONS(2984), + [anon_sym_SLASH] = ACTIONS(2984), + [anon_sym_PERCENT] = ACTIONS(2984), + [anon_sym_LT] = ACTIONS(2984), + [anon_sym_GT] = ACTIONS(2984), + [anon_sym_EQ_EQ] = ACTIONS(2984), + [anon_sym_BANG_EQ] = ACTIONS(2984), + [anon_sym_LT_EQ] = ACTIONS(2984), + [anon_sym_GT_EQ] = ACTIONS(2984), + [anon_sym_LBRACK] = ACTIONS(2987), + [anon_sym_struct] = ACTIONS(2982), + [anon_sym_union] = ACTIONS(2982), + [anon_sym_pub] = ACTIONS(2982), + [anon_sym_mut] = ACTIONS(2982), + [anon_sym_enum] = ACTIONS(2982), + [anon_sym_interface] = ACTIONS(2982), + [anon_sym_PLUS_PLUS] = ACTIONS(2984), + [anon_sym_DASH_DASH] = ACTIONS(2984), + [anon_sym_QMARK] = ACTIONS(2984), + [anon_sym_BANG] = ACTIONS(2984), + [anon_sym_go] = ACTIONS(2982), + [anon_sym_spawn] = ACTIONS(2982), + [anon_sym_json_DOTdecode] = ACTIONS(2982), + [anon_sym_LBRACK2] = ACTIONS(2984), + [anon_sym_TILDE] = ACTIONS(2982), + [anon_sym_CARET] = ACTIONS(2984), + [anon_sym_AMP] = ACTIONS(2984), + [anon_sym_LT_DASH] = ACTIONS(2982), + [anon_sym_LT_LT] = ACTIONS(2984), + [anon_sym_GT_GT] = ACTIONS(2984), + [anon_sym_GT_GT_GT] = ACTIONS(2984), + [anon_sym_AMP_CARET] = ACTIONS(2984), + [anon_sym_AMP_AMP] = ACTIONS(2984), + [anon_sym_PIPE_PIPE] = ACTIONS(2984), + [anon_sym_or] = ACTIONS(2984), + [sym_none] = ACTIONS(2982), + [sym_true] = ACTIONS(2982), + [sym_false] = ACTIONS(2982), + [sym_nil] = ACTIONS(2982), + [anon_sym_QMARK_DOT] = ACTIONS(2984), + [anon_sym_POUND_LBRACK] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2982), + [anon_sym_DOLLARif] = ACTIONS(2982), + [anon_sym_is] = ACTIONS(2984), + [anon_sym_BANGis] = ACTIONS(2984), + [anon_sym_in] = ACTIONS(2984), + [anon_sym_BANGin] = ACTIONS(2984), + [anon_sym_match] = ACTIONS(2982), + [anon_sym_select] = ACTIONS(2982), + [anon_sym_STAR_EQ] = ACTIONS(2984), + [anon_sym_SLASH_EQ] = ACTIONS(2984), + [anon_sym_PERCENT_EQ] = ACTIONS(2984), + [anon_sym_LT_LT_EQ] = ACTIONS(2984), + [anon_sym_GT_GT_EQ] = ACTIONS(2984), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2984), + [anon_sym_AMP_EQ] = ACTIONS(2984), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2984), + [anon_sym_PLUS_EQ] = ACTIONS(2984), + [anon_sym_DASH_EQ] = ACTIONS(2984), + [anon_sym_PIPE_EQ] = ACTIONS(2984), + [anon_sym_CARET_EQ] = ACTIONS(2984), + [anon_sym_COLON_EQ] = ACTIONS(2984), + [anon_sym_lock] = ACTIONS(2982), + [anon_sym_rlock] = ACTIONS(2982), + [anon_sym_unsafe] = ACTIONS(2982), + [anon_sym_sql] = ACTIONS(2982), + [sym_int_literal] = ACTIONS(2982), + [sym_float_literal] = ACTIONS(2982), + [sym_rune_literal] = ACTIONS(2982), + [anon_sym_AT] = ACTIONS(2982), + [anon_sym_shared] = ACTIONS(2982), + [anon_sym_map_LBRACK] = ACTIONS(2982), + [anon_sym_chan] = ACTIONS(2982), + [anon_sym_thread] = ACTIONS(2982), + [anon_sym_atomic] = ACTIONS(2982), + [anon_sym_assert] = ACTIONS(2982), + [anon_sym_defer] = ACTIONS(2982), + [anon_sym_goto] = ACTIONS(2982), + [anon_sym_break] = ACTIONS(2982), + [anon_sym_continue] = ACTIONS(2982), + [anon_sym_return] = ACTIONS(2982), + [anon_sym_DOLLARfor] = ACTIONS(2982), + [anon_sym_for] = ACTIONS(2982), + [anon_sym_POUND] = ACTIONS(2982), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym_AT_LBRACK] = ACTIONS(2982), + [sym___double_quote] = ACTIONS(2982), + [sym___single_quote] = ACTIONS(2982), + [sym___c_double_quote] = ACTIONS(2982), + [sym___c_single_quote] = ACTIONS(2982), + [sym___r_double_quote] = ACTIONS(2982), + [sym___r_single_quote] = ACTIONS(2982), }, [919] = { - [ts_builtin_sym_end] = ACTIONS(3071), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LF] = ACTIONS(3073), - [anon_sym_CR] = ACTIONS(3073), - [anon_sym_CR_LF] = ACTIONS(3073), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_as] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3073), - [anon_sym_const] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(3073), - [anon_sym___global] = ACTIONS(3073), - [anon_sym_type] = ACTIONS(3073), - [anon_sym_PIPE] = ACTIONS(3073), - [anon_sym_fn] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_SLASH] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_struct] = ACTIONS(3073), - [anon_sym_union] = ACTIONS(3073), - [anon_sym_pub] = ACTIONS(3073), - [anon_sym_mut] = ACTIONS(3073), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_interface] = ACTIONS(3073), - [anon_sym_PLUS_PLUS] = ACTIONS(3073), - [anon_sym_DASH_DASH] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_go] = ACTIONS(3073), - [anon_sym_spawn] = ACTIONS(3073), - [anon_sym_json_DOTdecode] = ACTIONS(3073), - [anon_sym_LBRACK2] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3073), - [anon_sym_CARET] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3073), - [anon_sym_LT_LT] = ACTIONS(3073), - [anon_sym_GT_GT] = ACTIONS(3073), - [anon_sym_GT_GT_GT] = ACTIONS(3073), - [anon_sym_AMP_CARET] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_or] = ACTIONS(3073), - [sym_none] = ACTIONS(3073), - [sym_true] = ACTIONS(3073), - [sym_false] = ACTIONS(3073), - [sym_nil] = ACTIONS(3073), - [anon_sym_QMARK_DOT] = ACTIONS(3073), - [anon_sym_POUND_LBRACK] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_DOLLARif] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3073), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_in] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_select] = ACTIONS(3073), - [anon_sym_STAR_EQ] = ACTIONS(3073), - [anon_sym_SLASH_EQ] = ACTIONS(3073), - [anon_sym_PERCENT_EQ] = ACTIONS(3073), - [anon_sym_LT_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_GT_EQ] = ACTIONS(3073), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3073), - [anon_sym_AMP_EQ] = ACTIONS(3073), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3073), - [anon_sym_PLUS_EQ] = ACTIONS(3073), - [anon_sym_DASH_EQ] = ACTIONS(3073), - [anon_sym_PIPE_EQ] = ACTIONS(3073), - [anon_sym_CARET_EQ] = ACTIONS(3073), - [anon_sym_COLON_EQ] = ACTIONS(3073), - [anon_sym_lock] = ACTIONS(3073), - [anon_sym_rlock] = ACTIONS(3073), - [anon_sym_unsafe] = ACTIONS(3073), - [anon_sym_sql] = ACTIONS(3073), - [sym_int_literal] = ACTIONS(3073), - [sym_float_literal] = ACTIONS(3073), - [sym_rune_literal] = ACTIONS(3073), - [anon_sym_AT] = ACTIONS(3073), - [anon_sym_shared] = ACTIONS(3073), - [anon_sym_map_LBRACK] = ACTIONS(3073), - [anon_sym_chan] = ACTIONS(3073), - [anon_sym_thread] = ACTIONS(3073), - [anon_sym_atomic] = ACTIONS(3073), - [anon_sym_assert] = ACTIONS(3073), - [anon_sym_defer] = ACTIONS(3073), - [anon_sym_goto] = ACTIONS(3073), - [anon_sym_break] = ACTIONS(3073), - [anon_sym_continue] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_DOLLARfor] = ACTIONS(3073), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_POUND] = ACTIONS(3073), - [anon_sym_asm] = ACTIONS(3073), - [anon_sym_AT_LBRACK] = ACTIONS(3073), - [sym___double_quote] = ACTIONS(3073), - [sym___single_quote] = ACTIONS(3073), - [sym___c_double_quote] = ACTIONS(3073), - [sym___c_single_quote] = ACTIONS(3073), - [sym___r_double_quote] = ACTIONS(3073), - [sym___r_single_quote] = ACTIONS(3073), + [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), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3054), + [sym___single_quote] = ACTIONS(3054), + [sym___c_double_quote] = ACTIONS(3054), + [sym___c_single_quote] = ACTIONS(3054), + [sym___r_double_quote] = ACTIONS(3054), + [sym___r_single_quote] = ACTIONS(3054), }, [920] = { - [ts_builtin_sym_end] = ACTIONS(3075), - [sym_identifier] = ACTIONS(3077), - [anon_sym_LF] = ACTIONS(3077), - [anon_sym_CR] = ACTIONS(3077), - [anon_sym_CR_LF] = ACTIONS(3077), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3077), - [anon_sym_as] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(3077), - [anon_sym_COMMA] = ACTIONS(3077), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3077), - [anon_sym_EQ] = ACTIONS(3077), - [anon_sym___global] = ACTIONS(3077), - [anon_sym_type] = ACTIONS(3077), - [anon_sym_PIPE] = ACTIONS(3077), - [anon_sym_fn] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3077), - [anon_sym_SLASH] = ACTIONS(3077), - [anon_sym_PERCENT] = ACTIONS(3077), - [anon_sym_LT] = ACTIONS(3077), - [anon_sym_GT] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3077), - [anon_sym_BANG_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_pub] = ACTIONS(3077), - [anon_sym_mut] = ACTIONS(3077), - [anon_sym_enum] = ACTIONS(3077), - [anon_sym_interface] = ACTIONS(3077), - [anon_sym_PLUS_PLUS] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3077), - [anon_sym_BANG] = ACTIONS(3077), - [anon_sym_go] = ACTIONS(3077), - [anon_sym_spawn] = ACTIONS(3077), - [anon_sym_json_DOTdecode] = ACTIONS(3077), - [anon_sym_LBRACK2] = ACTIONS(3077), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_CARET] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3077), - [anon_sym_LT_LT] = ACTIONS(3077), - [anon_sym_GT_GT] = ACTIONS(3077), - [anon_sym_GT_GT_GT] = ACTIONS(3077), - [anon_sym_AMP_CARET] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_or] = ACTIONS(3077), - [sym_none] = ACTIONS(3077), - [sym_true] = ACTIONS(3077), - [sym_false] = ACTIONS(3077), - [sym_nil] = ACTIONS(3077), - [anon_sym_QMARK_DOT] = ACTIONS(3077), - [anon_sym_POUND_LBRACK] = ACTIONS(3077), - [anon_sym_if] = ACTIONS(3077), - [anon_sym_DOLLARif] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3077), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_in] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_match] = ACTIONS(3077), - [anon_sym_select] = ACTIONS(3077), - [anon_sym_STAR_EQ] = ACTIONS(3077), - [anon_sym_SLASH_EQ] = ACTIONS(3077), - [anon_sym_PERCENT_EQ] = ACTIONS(3077), - [anon_sym_LT_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_GT_EQ] = ACTIONS(3077), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3077), - [anon_sym_AMP_EQ] = ACTIONS(3077), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3077), - [anon_sym_PLUS_EQ] = ACTIONS(3077), - [anon_sym_DASH_EQ] = ACTIONS(3077), - [anon_sym_PIPE_EQ] = ACTIONS(3077), - [anon_sym_CARET_EQ] = ACTIONS(3077), - [anon_sym_COLON_EQ] = ACTIONS(3077), - [anon_sym_lock] = ACTIONS(3077), - [anon_sym_rlock] = ACTIONS(3077), - [anon_sym_unsafe] = ACTIONS(3077), - [anon_sym_sql] = ACTIONS(3077), - [sym_int_literal] = ACTIONS(3077), - [sym_float_literal] = ACTIONS(3077), - [sym_rune_literal] = ACTIONS(3077), - [anon_sym_AT] = ACTIONS(3077), - [anon_sym_shared] = ACTIONS(3077), - [anon_sym_map_LBRACK] = ACTIONS(3077), - [anon_sym_chan] = ACTIONS(3077), - [anon_sym_thread] = ACTIONS(3077), - [anon_sym_atomic] = ACTIONS(3077), - [anon_sym_assert] = ACTIONS(3077), - [anon_sym_defer] = ACTIONS(3077), - [anon_sym_goto] = ACTIONS(3077), - [anon_sym_break] = ACTIONS(3077), - [anon_sym_continue] = ACTIONS(3077), - [anon_sym_return] = ACTIONS(3077), - [anon_sym_DOLLARfor] = ACTIONS(3077), - [anon_sym_for] = ACTIONS(3077), - [anon_sym_POUND] = ACTIONS(3077), - [anon_sym_asm] = ACTIONS(3077), - [anon_sym_AT_LBRACK] = ACTIONS(3077), - [sym___double_quote] = ACTIONS(3077), - [sym___single_quote] = ACTIONS(3077), - [sym___c_double_quote] = ACTIONS(3077), - [sym___c_single_quote] = ACTIONS(3077), - [sym___r_double_quote] = ACTIONS(3077), - [sym___r_single_quote] = ACTIONS(3077), + [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), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3058), + [sym___single_quote] = ACTIONS(3058), + [sym___c_double_quote] = ACTIONS(3058), + [sym___c_single_quote] = ACTIONS(3058), + [sym___r_double_quote] = ACTIONS(3058), + [sym___r_single_quote] = ACTIONS(3058), }, [921] = { - [ts_builtin_sym_end] = ACTIONS(3079), - [sym_identifier] = ACTIONS(3081), - [anon_sym_LF] = ACTIONS(3081), - [anon_sym_CR] = ACTIONS(3081), - [anon_sym_CR_LF] = ACTIONS(3081), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3081), - [anon_sym_as] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_const] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3081), - [anon_sym_EQ] = ACTIONS(3081), - [anon_sym___global] = ACTIONS(3081), - [anon_sym_type] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_SLASH] = ACTIONS(3081), - [anon_sym_PERCENT] = ACTIONS(3081), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_GT] = ACTIONS(3081), - [anon_sym_EQ_EQ] = ACTIONS(3081), - [anon_sym_BANG_EQ] = ACTIONS(3081), - [anon_sym_LT_EQ] = ACTIONS(3081), - [anon_sym_GT_EQ] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_struct] = ACTIONS(3081), - [anon_sym_union] = ACTIONS(3081), - [anon_sym_pub] = ACTIONS(3081), - [anon_sym_mut] = ACTIONS(3081), - [anon_sym_enum] = ACTIONS(3081), - [anon_sym_interface] = ACTIONS(3081), - [anon_sym_PLUS_PLUS] = ACTIONS(3081), - [anon_sym_DASH_DASH] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(3081), - [anon_sym_BANG] = ACTIONS(3081), - [anon_sym_go] = ACTIONS(3081), - [anon_sym_spawn] = ACTIONS(3081), - [anon_sym_json_DOTdecode] = ACTIONS(3081), - [anon_sym_LBRACK2] = ACTIONS(3081), - [anon_sym_TILDE] = ACTIONS(3081), - [anon_sym_CARET] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_LT_DASH] = ACTIONS(3081), - [anon_sym_LT_LT] = ACTIONS(3081), - [anon_sym_GT_GT] = ACTIONS(3081), - [anon_sym_GT_GT_GT] = ACTIONS(3081), - [anon_sym_AMP_CARET] = ACTIONS(3081), - [anon_sym_AMP_AMP] = ACTIONS(3081), - [anon_sym_PIPE_PIPE] = ACTIONS(3081), - [anon_sym_or] = ACTIONS(3081), - [sym_none] = ACTIONS(3081), - [sym_true] = ACTIONS(3081), - [sym_false] = ACTIONS(3081), - [sym_nil] = ACTIONS(3081), - [anon_sym_QMARK_DOT] = ACTIONS(3081), - [anon_sym_POUND_LBRACK] = ACTIONS(3081), - [anon_sym_if] = ACTIONS(3081), - [anon_sym_DOLLARif] = ACTIONS(3081), - [anon_sym_is] = ACTIONS(3081), - [anon_sym_BANGis] = ACTIONS(3081), - [anon_sym_in] = ACTIONS(3081), - [anon_sym_BANGin] = ACTIONS(3081), - [anon_sym_match] = ACTIONS(3081), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_STAR_EQ] = ACTIONS(3081), - [anon_sym_SLASH_EQ] = ACTIONS(3081), - [anon_sym_PERCENT_EQ] = ACTIONS(3081), - [anon_sym_LT_LT_EQ] = ACTIONS(3081), - [anon_sym_GT_GT_EQ] = ACTIONS(3081), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3081), - [anon_sym_AMP_EQ] = ACTIONS(3081), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3081), - [anon_sym_PLUS_EQ] = ACTIONS(3081), - [anon_sym_DASH_EQ] = ACTIONS(3081), - [anon_sym_PIPE_EQ] = ACTIONS(3081), - [anon_sym_CARET_EQ] = ACTIONS(3081), - [anon_sym_COLON_EQ] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3081), - [anon_sym_rlock] = ACTIONS(3081), - [anon_sym_unsafe] = ACTIONS(3081), - [anon_sym_sql] = ACTIONS(3081), - [sym_int_literal] = ACTIONS(3081), - [sym_float_literal] = ACTIONS(3081), - [sym_rune_literal] = ACTIONS(3081), - [anon_sym_AT] = ACTIONS(3081), - [anon_sym_shared] = ACTIONS(3081), - [anon_sym_map_LBRACK] = ACTIONS(3081), - [anon_sym_chan] = ACTIONS(3081), - [anon_sym_thread] = ACTIONS(3081), - [anon_sym_atomic] = ACTIONS(3081), - [anon_sym_assert] = ACTIONS(3081), - [anon_sym_defer] = ACTIONS(3081), - [anon_sym_goto] = ACTIONS(3081), - [anon_sym_break] = ACTIONS(3081), - [anon_sym_continue] = ACTIONS(3081), - [anon_sym_return] = ACTIONS(3081), - [anon_sym_DOLLARfor] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(3081), - [anon_sym_POUND] = ACTIONS(3081), - [anon_sym_asm] = ACTIONS(3081), - [anon_sym_AT_LBRACK] = ACTIONS(3081), - [sym___double_quote] = ACTIONS(3081), - [sym___single_quote] = ACTIONS(3081), - [sym___c_double_quote] = ACTIONS(3081), - [sym___c_single_quote] = ACTIONS(3081), - [sym___r_double_quote] = ACTIONS(3081), - [sym___r_single_quote] = ACTIONS(3081), + [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), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3062), + [sym___single_quote] = ACTIONS(3062), + [sym___c_double_quote] = ACTIONS(3062), + [sym___c_single_quote] = ACTIONS(3062), + [sym___r_double_quote] = ACTIONS(3062), + [sym___r_single_quote] = ACTIONS(3062), }, [922] = { - [ts_builtin_sym_end] = ACTIONS(3083), - [sym_identifier] = ACTIONS(3085), - [anon_sym_LF] = ACTIONS(3085), - [anon_sym_CR] = ACTIONS(3085), - [anon_sym_CR_LF] = ACTIONS(3085), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3085), - [anon_sym_as] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_COMMA] = ACTIONS(3085), - [anon_sym_const] = ACTIONS(3085), - [anon_sym_LPAREN] = ACTIONS(3085), - [anon_sym_EQ] = ACTIONS(3085), - [anon_sym___global] = ACTIONS(3085), - [anon_sym_type] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_fn] = ACTIONS(3085), - [anon_sym_PLUS] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(3085), - [anon_sym_SLASH] = ACTIONS(3085), - [anon_sym_PERCENT] = ACTIONS(3085), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_GT] = ACTIONS(3085), - [anon_sym_EQ_EQ] = ACTIONS(3085), - [anon_sym_BANG_EQ] = ACTIONS(3085), - [anon_sym_LT_EQ] = ACTIONS(3085), - [anon_sym_GT_EQ] = ACTIONS(3085), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_struct] = ACTIONS(3085), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_pub] = ACTIONS(3085), - [anon_sym_mut] = ACTIONS(3085), - [anon_sym_enum] = ACTIONS(3085), - [anon_sym_interface] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_QMARK] = ACTIONS(3085), - [anon_sym_BANG] = ACTIONS(3085), - [anon_sym_go] = ACTIONS(3085), - [anon_sym_spawn] = ACTIONS(3085), - [anon_sym_json_DOTdecode] = ACTIONS(3085), - [anon_sym_LBRACK2] = ACTIONS(3085), - [anon_sym_TILDE] = ACTIONS(3085), - [anon_sym_CARET] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_LT_DASH] = ACTIONS(3085), - [anon_sym_LT_LT] = ACTIONS(3085), - [anon_sym_GT_GT] = ACTIONS(3085), - [anon_sym_GT_GT_GT] = ACTIONS(3085), - [anon_sym_AMP_CARET] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_PIPE_PIPE] = ACTIONS(3085), - [anon_sym_or] = ACTIONS(3085), - [sym_none] = ACTIONS(3085), - [sym_true] = ACTIONS(3085), - [sym_false] = ACTIONS(3085), - [sym_nil] = ACTIONS(3085), - [anon_sym_QMARK_DOT] = ACTIONS(3085), - [anon_sym_POUND_LBRACK] = ACTIONS(3085), - [anon_sym_if] = ACTIONS(3085), - [anon_sym_DOLLARif] = ACTIONS(3085), - [anon_sym_is] = ACTIONS(3085), - [anon_sym_BANGis] = ACTIONS(3085), - [anon_sym_in] = ACTIONS(3085), - [anon_sym_BANGin] = ACTIONS(3085), - [anon_sym_match] = ACTIONS(3085), - [anon_sym_select] = ACTIONS(3085), - [anon_sym_STAR_EQ] = ACTIONS(3085), - [anon_sym_SLASH_EQ] = ACTIONS(3085), - [anon_sym_PERCENT_EQ] = ACTIONS(3085), - [anon_sym_LT_LT_EQ] = ACTIONS(3085), - [anon_sym_GT_GT_EQ] = ACTIONS(3085), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3085), - [anon_sym_AMP_EQ] = ACTIONS(3085), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3085), - [anon_sym_PLUS_EQ] = ACTIONS(3085), - [anon_sym_DASH_EQ] = ACTIONS(3085), - [anon_sym_PIPE_EQ] = ACTIONS(3085), - [anon_sym_CARET_EQ] = ACTIONS(3085), - [anon_sym_COLON_EQ] = ACTIONS(3085), - [anon_sym_lock] = ACTIONS(3085), - [anon_sym_rlock] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(3085), - [anon_sym_sql] = ACTIONS(3085), - [sym_int_literal] = ACTIONS(3085), - [sym_float_literal] = ACTIONS(3085), - [sym_rune_literal] = ACTIONS(3085), - [anon_sym_AT] = ACTIONS(3085), - [anon_sym_shared] = ACTIONS(3085), - [anon_sym_map_LBRACK] = ACTIONS(3085), - [anon_sym_chan] = ACTIONS(3085), - [anon_sym_thread] = ACTIONS(3085), - [anon_sym_atomic] = ACTIONS(3085), - [anon_sym_assert] = ACTIONS(3085), - [anon_sym_defer] = ACTIONS(3085), - [anon_sym_goto] = ACTIONS(3085), - [anon_sym_break] = ACTIONS(3085), - [anon_sym_continue] = ACTIONS(3085), - [anon_sym_return] = ACTIONS(3085), - [anon_sym_DOLLARfor] = ACTIONS(3085), - [anon_sym_for] = ACTIONS(3085), - [anon_sym_POUND] = ACTIONS(3085), - [anon_sym_asm] = ACTIONS(3085), - [anon_sym_AT_LBRACK] = ACTIONS(3085), - [sym___double_quote] = ACTIONS(3085), - [sym___single_quote] = ACTIONS(3085), - [sym___c_double_quote] = ACTIONS(3085), - [sym___c_single_quote] = ACTIONS(3085), - [sym___r_double_quote] = ACTIONS(3085), - [sym___r_single_quote] = ACTIONS(3085), + [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), + [sym_comment] = ACTIONS(493), + [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_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), + [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_STAR_EQ] = ACTIONS(3066), + [anon_sym_SLASH_EQ] = ACTIONS(3066), + [anon_sym_PERCENT_EQ] = ACTIONS(3066), + [anon_sym_LT_LT_EQ] = ACTIONS(3066), + [anon_sym_GT_GT_EQ] = ACTIONS(3066), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3066), + [anon_sym_AMP_EQ] = ACTIONS(3066), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3066), + [anon_sym_PLUS_EQ] = ACTIONS(3066), + [anon_sym_DASH_EQ] = ACTIONS(3066), + [anon_sym_PIPE_EQ] = ACTIONS(3066), + [anon_sym_CARET_EQ] = ACTIONS(3066), + [anon_sym_COLON_EQ] = 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_AT] = 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), + [sym___double_quote] = ACTIONS(3066), + [sym___single_quote] = ACTIONS(3066), + [sym___c_double_quote] = ACTIONS(3066), + [sym___c_single_quote] = ACTIONS(3066), + [sym___r_double_quote] = ACTIONS(3066), + [sym___r_single_quote] = ACTIONS(3066), }, [923] = { - [ts_builtin_sym_end] = ACTIONS(3087), - [sym_identifier] = ACTIONS(3089), - [anon_sym_LF] = ACTIONS(3089), - [anon_sym_CR] = ACTIONS(3089), - [anon_sym_CR_LF] = ACTIONS(3089), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3089), - [anon_sym_as] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_const] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3089), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym___global] = ACTIONS(3089), - [anon_sym_type] = ACTIONS(3089), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_fn] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(3089), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_LT_EQ] = ACTIONS(3089), - [anon_sym_GT_EQ] = ACTIONS(3089), - [anon_sym_LBRACK] = ACTIONS(3087), - [anon_sym_struct] = ACTIONS(3089), - [anon_sym_union] = ACTIONS(3089), - [anon_sym_pub] = ACTIONS(3089), - [anon_sym_mut] = ACTIONS(3089), - [anon_sym_enum] = ACTIONS(3089), - [anon_sym_interface] = ACTIONS(3089), - [anon_sym_PLUS_PLUS] = ACTIONS(3089), - [anon_sym_DASH_DASH] = ACTIONS(3089), - [anon_sym_QMARK] = ACTIONS(3089), - [anon_sym_BANG] = ACTIONS(3089), - [anon_sym_go] = ACTIONS(3089), - [anon_sym_spawn] = ACTIONS(3089), - [anon_sym_json_DOTdecode] = ACTIONS(3089), - [anon_sym_LBRACK2] = ACTIONS(3089), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_LT_DASH] = ACTIONS(3089), - [anon_sym_LT_LT] = ACTIONS(3089), - [anon_sym_GT_GT] = ACTIONS(3089), - [anon_sym_GT_GT_GT] = ACTIONS(3089), - [anon_sym_AMP_CARET] = ACTIONS(3089), - [anon_sym_AMP_AMP] = ACTIONS(3089), - [anon_sym_PIPE_PIPE] = ACTIONS(3089), - [anon_sym_or] = ACTIONS(3089), - [sym_none] = ACTIONS(3089), - [sym_true] = ACTIONS(3089), - [sym_false] = ACTIONS(3089), - [sym_nil] = ACTIONS(3089), - [anon_sym_QMARK_DOT] = ACTIONS(3089), - [anon_sym_POUND_LBRACK] = ACTIONS(3089), - [anon_sym_if] = ACTIONS(3089), - [anon_sym_DOLLARif] = ACTIONS(3089), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3089), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_BANGin] = ACTIONS(3089), - [anon_sym_match] = ACTIONS(3089), - [anon_sym_select] = ACTIONS(3089), - [anon_sym_STAR_EQ] = ACTIONS(3089), - [anon_sym_SLASH_EQ] = ACTIONS(3089), - [anon_sym_PERCENT_EQ] = ACTIONS(3089), - [anon_sym_LT_LT_EQ] = ACTIONS(3089), - [anon_sym_GT_GT_EQ] = ACTIONS(3089), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3089), - [anon_sym_AMP_EQ] = ACTIONS(3089), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3089), - [anon_sym_PLUS_EQ] = ACTIONS(3089), - [anon_sym_DASH_EQ] = ACTIONS(3089), - [anon_sym_PIPE_EQ] = ACTIONS(3089), - [anon_sym_CARET_EQ] = ACTIONS(3089), - [anon_sym_COLON_EQ] = ACTIONS(3089), - [anon_sym_lock] = ACTIONS(3089), - [anon_sym_rlock] = ACTIONS(3089), - [anon_sym_unsafe] = ACTIONS(3089), - [anon_sym_sql] = ACTIONS(3089), - [sym_int_literal] = ACTIONS(3089), - [sym_float_literal] = ACTIONS(3089), - [sym_rune_literal] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(3089), - [anon_sym_shared] = ACTIONS(3089), - [anon_sym_map_LBRACK] = ACTIONS(3089), - [anon_sym_chan] = ACTIONS(3089), - [anon_sym_thread] = ACTIONS(3089), - [anon_sym_atomic] = ACTIONS(3089), - [anon_sym_assert] = ACTIONS(3089), - [anon_sym_defer] = ACTIONS(3089), - [anon_sym_goto] = ACTIONS(3089), - [anon_sym_break] = ACTIONS(3089), - [anon_sym_continue] = ACTIONS(3089), - [anon_sym_return] = ACTIONS(3089), - [anon_sym_DOLLARfor] = ACTIONS(3089), - [anon_sym_for] = ACTIONS(3089), - [anon_sym_POUND] = ACTIONS(3089), - [anon_sym_asm] = ACTIONS(3089), - [anon_sym_AT_LBRACK] = ACTIONS(3089), - [sym___double_quote] = ACTIONS(3089), - [sym___single_quote] = ACTIONS(3089), - [sym___c_double_quote] = ACTIONS(3089), - [sym___c_single_quote] = ACTIONS(3089), - [sym___r_double_quote] = ACTIONS(3089), - [sym___r_single_quote] = ACTIONS(3089), + [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), + [sym_comment] = ACTIONS(493), + [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_EQ] = ACTIONS(3070), + [anon_sym___global] = ACTIONS(3070), + [anon_sym_type] = ACTIONS(3070), + [anon_sym_PIPE] = 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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3070), + [sym___single_quote] = ACTIONS(3070), + [sym___c_double_quote] = ACTIONS(3070), + [sym___c_single_quote] = ACTIONS(3070), + [sym___r_double_quote] = ACTIONS(3070), + [sym___r_single_quote] = ACTIONS(3070), }, [924] = { - [ts_builtin_sym_end] = ACTIONS(3091), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LF] = ACTIONS(3093), - [anon_sym_CR] = ACTIONS(3093), - [anon_sym_CR_LF] = ACTIONS(3093), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_as] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(3093), - [anon_sym_const] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_EQ] = ACTIONS(3093), - [anon_sym___global] = ACTIONS(3093), - [anon_sym_type] = ACTIONS(3093), - [anon_sym_PIPE] = ACTIONS(3093), - [anon_sym_fn] = ACTIONS(3093), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_SLASH] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3093), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3093), - [anon_sym_EQ_EQ] = ACTIONS(3093), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_LT_EQ] = ACTIONS(3093), - [anon_sym_GT_EQ] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(3093), - [anon_sym_union] = ACTIONS(3093), - [anon_sym_pub] = ACTIONS(3093), - [anon_sym_mut] = ACTIONS(3093), - [anon_sym_enum] = ACTIONS(3093), - [anon_sym_interface] = ACTIONS(3093), - [anon_sym_PLUS_PLUS] = ACTIONS(3093), - [anon_sym_DASH_DASH] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_go] = ACTIONS(3093), - [anon_sym_spawn] = ACTIONS(3093), - [anon_sym_json_DOTdecode] = ACTIONS(3093), - [anon_sym_LBRACK2] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3093), - [anon_sym_CARET] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_LT_DASH] = ACTIONS(3093), - [anon_sym_LT_LT] = ACTIONS(3093), - [anon_sym_GT_GT] = ACTIONS(3093), - [anon_sym_GT_GT_GT] = ACTIONS(3093), - [anon_sym_AMP_CARET] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_PIPE_PIPE] = ACTIONS(3093), - [anon_sym_or] = ACTIONS(3093), - [sym_none] = ACTIONS(3093), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [sym_nil] = ACTIONS(3093), - [anon_sym_QMARK_DOT] = ACTIONS(3093), - [anon_sym_POUND_LBRACK] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_DOLLARif] = ACTIONS(3093), - [anon_sym_is] = ACTIONS(3093), - [anon_sym_BANGis] = ACTIONS(3093), - [anon_sym_in] = ACTIONS(3093), - [anon_sym_BANGin] = ACTIONS(3093), - [anon_sym_match] = ACTIONS(3093), - [anon_sym_select] = ACTIONS(3093), - [anon_sym_STAR_EQ] = ACTIONS(3093), - [anon_sym_SLASH_EQ] = ACTIONS(3093), - [anon_sym_PERCENT_EQ] = ACTIONS(3093), - [anon_sym_LT_LT_EQ] = ACTIONS(3093), - [anon_sym_GT_GT_EQ] = ACTIONS(3093), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3093), - [anon_sym_AMP_EQ] = ACTIONS(3093), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3093), - [anon_sym_PLUS_EQ] = ACTIONS(3093), - [anon_sym_DASH_EQ] = ACTIONS(3093), - [anon_sym_PIPE_EQ] = ACTIONS(3093), - [anon_sym_CARET_EQ] = ACTIONS(3093), - [anon_sym_COLON_EQ] = ACTIONS(3093), - [anon_sym_lock] = ACTIONS(3093), - [anon_sym_rlock] = ACTIONS(3093), - [anon_sym_unsafe] = ACTIONS(3093), - [anon_sym_sql] = ACTIONS(3093), - [sym_int_literal] = ACTIONS(3093), - [sym_float_literal] = ACTIONS(3093), - [sym_rune_literal] = ACTIONS(3093), - [anon_sym_AT] = ACTIONS(3093), - [anon_sym_shared] = ACTIONS(3093), - [anon_sym_map_LBRACK] = ACTIONS(3093), - [anon_sym_chan] = ACTIONS(3093), - [anon_sym_thread] = ACTIONS(3093), - [anon_sym_atomic] = ACTIONS(3093), - [anon_sym_assert] = ACTIONS(3093), - [anon_sym_defer] = ACTIONS(3093), - [anon_sym_goto] = ACTIONS(3093), - [anon_sym_break] = ACTIONS(3093), - [anon_sym_continue] = ACTIONS(3093), - [anon_sym_return] = ACTIONS(3093), - [anon_sym_DOLLARfor] = ACTIONS(3093), - [anon_sym_for] = ACTIONS(3093), - [anon_sym_POUND] = ACTIONS(3093), - [anon_sym_asm] = ACTIONS(3093), - [anon_sym_AT_LBRACK] = ACTIONS(3093), - [sym___double_quote] = ACTIONS(3093), - [sym___single_quote] = ACTIONS(3093), - [sym___c_double_quote] = ACTIONS(3093), - [sym___c_single_quote] = ACTIONS(3093), - [sym___r_double_quote] = ACTIONS(3093), - [sym___r_single_quote] = ACTIONS(3093), + [ts_builtin_sym_end] = ACTIONS(3072), + [sym_identifier] = ACTIONS(3074), + [anon_sym_LF] = ACTIONS(3074), + [anon_sym_CR] = ACTIONS(3074), + [anon_sym_CR_LF] = ACTIONS(3074), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3074), + [anon_sym_as] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3074), + [anon_sym_COMMA] = ACTIONS(3074), + [anon_sym_const] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3074), + [anon_sym_EQ] = ACTIONS(3074), + [anon_sym___global] = ACTIONS(3074), + [anon_sym_type] = ACTIONS(3074), + [anon_sym_PIPE] = ACTIONS(3074), + [anon_sym_fn] = ACTIONS(3074), + [anon_sym_PLUS] = ACTIONS(3074), + [anon_sym_DASH] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(3074), + [anon_sym_SLASH] = ACTIONS(3074), + [anon_sym_PERCENT] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(3074), + [anon_sym_GT] = ACTIONS(3074), + [anon_sym_EQ_EQ] = ACTIONS(3074), + [anon_sym_BANG_EQ] = ACTIONS(3074), + [anon_sym_LT_EQ] = ACTIONS(3074), + [anon_sym_GT_EQ] = ACTIONS(3074), + [anon_sym_LBRACK] = ACTIONS(3072), + [anon_sym_struct] = ACTIONS(3074), + [anon_sym_union] = ACTIONS(3074), + [anon_sym_pub] = ACTIONS(3074), + [anon_sym_mut] = ACTIONS(3074), + [anon_sym_enum] = ACTIONS(3074), + [anon_sym_interface] = ACTIONS(3074), + [anon_sym_PLUS_PLUS] = ACTIONS(3074), + [anon_sym_DASH_DASH] = ACTIONS(3074), + [anon_sym_QMARK] = ACTIONS(3074), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_go] = ACTIONS(3074), + [anon_sym_spawn] = ACTIONS(3074), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3074), + [anon_sym_TILDE] = ACTIONS(3074), + [anon_sym_CARET] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3074), + [anon_sym_LT_DASH] = ACTIONS(3074), + [anon_sym_LT_LT] = ACTIONS(3074), + [anon_sym_GT_GT] = ACTIONS(3074), + [anon_sym_GT_GT_GT] = ACTIONS(3074), + [anon_sym_AMP_CARET] = ACTIONS(3074), + [anon_sym_AMP_AMP] = ACTIONS(3074), + [anon_sym_PIPE_PIPE] = ACTIONS(3074), + [anon_sym_or] = ACTIONS(3074), + [sym_none] = ACTIONS(3074), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [sym_nil] = ACTIONS(3074), + [anon_sym_QMARK_DOT] = ACTIONS(3074), + [anon_sym_POUND_LBRACK] = ACTIONS(3074), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_DOLLARif] = ACTIONS(3074), + [anon_sym_is] = ACTIONS(3074), + [anon_sym_BANGis] = ACTIONS(3074), + [anon_sym_in] = ACTIONS(3074), + [anon_sym_BANGin] = ACTIONS(3074), + [anon_sym_match] = ACTIONS(3074), + [anon_sym_select] = ACTIONS(3074), + [anon_sym_STAR_EQ] = ACTIONS(3074), + [anon_sym_SLASH_EQ] = ACTIONS(3074), + [anon_sym_PERCENT_EQ] = ACTIONS(3074), + [anon_sym_LT_LT_EQ] = ACTIONS(3074), + [anon_sym_GT_GT_EQ] = ACTIONS(3074), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3074), + [anon_sym_AMP_EQ] = ACTIONS(3074), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3074), + [anon_sym_PLUS_EQ] = ACTIONS(3074), + [anon_sym_DASH_EQ] = ACTIONS(3074), + [anon_sym_PIPE_EQ] = ACTIONS(3074), + [anon_sym_CARET_EQ] = ACTIONS(3074), + [anon_sym_COLON_EQ] = ACTIONS(3074), + [anon_sym_lock] = ACTIONS(3074), + [anon_sym_rlock] = ACTIONS(3074), + [anon_sym_unsafe] = ACTIONS(3074), + [anon_sym_sql] = ACTIONS(3074), + [sym_int_literal] = ACTIONS(3074), + [sym_float_literal] = ACTIONS(3074), + [sym_rune_literal] = ACTIONS(3074), + [anon_sym_AT] = ACTIONS(3074), + [anon_sym_shared] = ACTIONS(3074), + [anon_sym_map_LBRACK] = ACTIONS(3074), + [anon_sym_chan] = ACTIONS(3074), + [anon_sym_thread] = ACTIONS(3074), + [anon_sym_atomic] = ACTIONS(3074), + [anon_sym_assert] = ACTIONS(3074), + [anon_sym_defer] = ACTIONS(3074), + [anon_sym_goto] = ACTIONS(3074), + [anon_sym_break] = ACTIONS(3074), + [anon_sym_continue] = ACTIONS(3074), + [anon_sym_return] = ACTIONS(3074), + [anon_sym_DOLLARfor] = ACTIONS(3074), + [anon_sym_for] = ACTIONS(3074), + [anon_sym_POUND] = ACTIONS(3074), + [anon_sym_asm] = ACTIONS(3074), + [anon_sym_AT_LBRACK] = ACTIONS(3074), + [sym___double_quote] = ACTIONS(3074), + [sym___single_quote] = ACTIONS(3074), + [sym___c_double_quote] = ACTIONS(3074), + [sym___c_single_quote] = ACTIONS(3074), + [sym___r_double_quote] = ACTIONS(3074), + [sym___r_single_quote] = ACTIONS(3074), }, [925] = { - [ts_builtin_sym_end] = ACTIONS(3095), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LF] = ACTIONS(3097), - [anon_sym_CR] = ACTIONS(3097), - [anon_sym_CR_LF] = ACTIONS(3097), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3097), - [anon_sym_as] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_COMMA] = ACTIONS(3097), - [anon_sym_const] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym___global] = ACTIONS(3097), - [anon_sym_type] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3097), - [anon_sym_fn] = ACTIONS(3097), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_SLASH] = ACTIONS(3097), - [anon_sym_PERCENT] = ACTIONS(3097), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_LT_EQ] = ACTIONS(3097), - [anon_sym_GT_EQ] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_struct] = ACTIONS(3097), - [anon_sym_union] = ACTIONS(3097), - [anon_sym_pub] = ACTIONS(3097), - [anon_sym_mut] = ACTIONS(3097), - [anon_sym_enum] = ACTIONS(3097), - [anon_sym_interface] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3097), - [anon_sym_DASH_DASH] = ACTIONS(3097), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_go] = ACTIONS(3097), - [anon_sym_spawn] = ACTIONS(3097), - [anon_sym_json_DOTdecode] = ACTIONS(3097), - [anon_sym_LBRACK2] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_CARET] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_LT_DASH] = ACTIONS(3097), - [anon_sym_LT_LT] = ACTIONS(3097), - [anon_sym_GT_GT] = ACTIONS(3097), - [anon_sym_GT_GT_GT] = ACTIONS(3097), - [anon_sym_AMP_CARET] = ACTIONS(3097), - [anon_sym_AMP_AMP] = ACTIONS(3097), - [anon_sym_PIPE_PIPE] = ACTIONS(3097), - [anon_sym_or] = ACTIONS(3097), - [sym_none] = ACTIONS(3097), - [sym_true] = ACTIONS(3097), - [sym_false] = ACTIONS(3097), - [sym_nil] = ACTIONS(3097), - [anon_sym_QMARK_DOT] = ACTIONS(3097), - [anon_sym_POUND_LBRACK] = ACTIONS(3097), - [anon_sym_if] = ACTIONS(3097), - [anon_sym_DOLLARif] = ACTIONS(3097), - [anon_sym_is] = ACTIONS(3097), - [anon_sym_BANGis] = ACTIONS(3097), - [anon_sym_in] = ACTIONS(3097), - [anon_sym_BANGin] = ACTIONS(3097), - [anon_sym_match] = ACTIONS(3097), - [anon_sym_select] = ACTIONS(3097), - [anon_sym_STAR_EQ] = ACTIONS(3097), - [anon_sym_SLASH_EQ] = ACTIONS(3097), - [anon_sym_PERCENT_EQ] = ACTIONS(3097), - [anon_sym_LT_LT_EQ] = ACTIONS(3097), - [anon_sym_GT_GT_EQ] = ACTIONS(3097), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3097), - [anon_sym_AMP_EQ] = ACTIONS(3097), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3097), - [anon_sym_PLUS_EQ] = ACTIONS(3097), - [anon_sym_DASH_EQ] = ACTIONS(3097), - [anon_sym_PIPE_EQ] = ACTIONS(3097), - [anon_sym_CARET_EQ] = ACTIONS(3097), - [anon_sym_COLON_EQ] = ACTIONS(3097), - [anon_sym_lock] = ACTIONS(3097), - [anon_sym_rlock] = ACTIONS(3097), - [anon_sym_unsafe] = ACTIONS(3097), - [anon_sym_sql] = ACTIONS(3097), - [sym_int_literal] = ACTIONS(3097), - [sym_float_literal] = ACTIONS(3097), - [sym_rune_literal] = ACTIONS(3097), - [anon_sym_AT] = ACTIONS(3097), - [anon_sym_shared] = ACTIONS(3097), - [anon_sym_map_LBRACK] = ACTIONS(3097), - [anon_sym_chan] = ACTIONS(3097), - [anon_sym_thread] = ACTIONS(3097), - [anon_sym_atomic] = ACTIONS(3097), - [anon_sym_assert] = ACTIONS(3097), - [anon_sym_defer] = ACTIONS(3097), - [anon_sym_goto] = ACTIONS(3097), - [anon_sym_break] = ACTIONS(3097), - [anon_sym_continue] = ACTIONS(3097), - [anon_sym_return] = ACTIONS(3097), - [anon_sym_DOLLARfor] = ACTIONS(3097), - [anon_sym_for] = ACTIONS(3097), - [anon_sym_POUND] = ACTIONS(3097), - [anon_sym_asm] = ACTIONS(3097), - [anon_sym_AT_LBRACK] = ACTIONS(3097), - [sym___double_quote] = ACTIONS(3097), - [sym___single_quote] = ACTIONS(3097), - [sym___c_double_quote] = ACTIONS(3097), - [sym___c_single_quote] = ACTIONS(3097), - [sym___r_double_quote] = ACTIONS(3097), - [sym___r_single_quote] = ACTIONS(3097), + [ts_builtin_sym_end] = ACTIONS(2692), + [sym_identifier] = ACTIONS(2694), + [anon_sym_LF] = ACTIONS(2694), + [anon_sym_CR] = ACTIONS(2694), + [anon_sym_CR_LF] = ACTIONS(2694), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2694), + [anon_sym_as] = ACTIONS(2694), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_COMMA] = ACTIONS(2694), + [anon_sym_const] = ACTIONS(2694), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym_EQ] = ACTIONS(2694), + [anon_sym___global] = ACTIONS(2694), + [anon_sym_type] = ACTIONS(2694), + [anon_sym_PIPE] = ACTIONS(2694), + [anon_sym_fn] = ACTIONS(2694), + [anon_sym_PLUS] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(2694), + [anon_sym_SLASH] = ACTIONS(2694), + [anon_sym_PERCENT] = ACTIONS(2694), + [anon_sym_LT] = ACTIONS(2694), + [anon_sym_GT] = ACTIONS(2694), + [anon_sym_EQ_EQ] = ACTIONS(2694), + [anon_sym_BANG_EQ] = ACTIONS(2694), + [anon_sym_LT_EQ] = ACTIONS(2694), + [anon_sym_GT_EQ] = ACTIONS(2694), + [anon_sym_LBRACK] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2694), + [anon_sym_union] = ACTIONS(2694), + [anon_sym_pub] = ACTIONS(2694), + [anon_sym_mut] = ACTIONS(2694), + [anon_sym_enum] = ACTIONS(2694), + [anon_sym_interface] = ACTIONS(2694), + [anon_sym_PLUS_PLUS] = ACTIONS(2694), + [anon_sym_DASH_DASH] = ACTIONS(2694), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_BANG] = ACTIONS(2694), + [anon_sym_go] = ACTIONS(2694), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2694), + [anon_sym_LBRACK2] = ACTIONS(2694), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_CARET] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2694), + [anon_sym_LT_DASH] = ACTIONS(2694), + [anon_sym_LT_LT] = ACTIONS(2694), + [anon_sym_GT_GT] = ACTIONS(2694), + [anon_sym_GT_GT_GT] = ACTIONS(2694), + [anon_sym_AMP_CARET] = ACTIONS(2694), + [anon_sym_AMP_AMP] = ACTIONS(2694), + [anon_sym_PIPE_PIPE] = ACTIONS(2694), + [anon_sym_or] = ACTIONS(2694), + [sym_none] = ACTIONS(2694), + [sym_true] = ACTIONS(2694), + [sym_false] = ACTIONS(2694), + [sym_nil] = ACTIONS(2694), + [anon_sym_QMARK_DOT] = ACTIONS(2694), + [anon_sym_POUND_LBRACK] = ACTIONS(2694), + [anon_sym_if] = ACTIONS(2694), + [anon_sym_DOLLARif] = ACTIONS(2694), + [anon_sym_is] = ACTIONS(2694), + [anon_sym_BANGis] = ACTIONS(2694), + [anon_sym_in] = ACTIONS(2694), + [anon_sym_BANGin] = ACTIONS(2694), + [anon_sym_match] = ACTIONS(2694), + [anon_sym_select] = ACTIONS(2694), + [anon_sym_STAR_EQ] = ACTIONS(2694), + [anon_sym_SLASH_EQ] = ACTIONS(2694), + [anon_sym_PERCENT_EQ] = ACTIONS(2694), + [anon_sym_LT_LT_EQ] = ACTIONS(2694), + [anon_sym_GT_GT_EQ] = ACTIONS(2694), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2694), + [anon_sym_AMP_EQ] = ACTIONS(2694), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2694), + [anon_sym_PLUS_EQ] = ACTIONS(2694), + [anon_sym_DASH_EQ] = ACTIONS(2694), + [anon_sym_PIPE_EQ] = ACTIONS(2694), + [anon_sym_CARET_EQ] = ACTIONS(2694), + [anon_sym_COLON_EQ] = ACTIONS(2694), + [anon_sym_lock] = ACTIONS(2694), + [anon_sym_rlock] = ACTIONS(2694), + [anon_sym_unsafe] = ACTIONS(2694), + [anon_sym_sql] = ACTIONS(2694), + [sym_int_literal] = ACTIONS(2694), + [sym_float_literal] = ACTIONS(2694), + [sym_rune_literal] = ACTIONS(2694), + [anon_sym_AT] = ACTIONS(2694), + [anon_sym_shared] = ACTIONS(2694), + [anon_sym_map_LBRACK] = ACTIONS(2694), + [anon_sym_chan] = ACTIONS(2694), + [anon_sym_thread] = ACTIONS(2694), + [anon_sym_atomic] = ACTIONS(2694), + [anon_sym_assert] = ACTIONS(2694), + [anon_sym_defer] = ACTIONS(2694), + [anon_sym_goto] = ACTIONS(2694), + [anon_sym_break] = ACTIONS(2694), + [anon_sym_continue] = ACTIONS(2694), + [anon_sym_return] = ACTIONS(2694), + [anon_sym_DOLLARfor] = ACTIONS(2694), + [anon_sym_for] = ACTIONS(2694), + [anon_sym_POUND] = ACTIONS(2694), + [anon_sym_asm] = ACTIONS(2694), + [anon_sym_AT_LBRACK] = ACTIONS(2694), + [sym___double_quote] = ACTIONS(2694), + [sym___single_quote] = ACTIONS(2694), + [sym___c_double_quote] = ACTIONS(2694), + [sym___c_single_quote] = ACTIONS(2694), + [sym___r_double_quote] = ACTIONS(2694), + [sym___r_single_quote] = ACTIONS(2694), }, [926] = { - [ts_builtin_sym_end] = ACTIONS(3099), - [sym_identifier] = ACTIONS(3101), - [anon_sym_LF] = ACTIONS(3101), - [anon_sym_CR] = ACTIONS(3101), - [anon_sym_CR_LF] = ACTIONS(3101), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_as] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_COMMA] = ACTIONS(3101), - [anon_sym_const] = ACTIONS(3101), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym_EQ] = ACTIONS(3101), - [anon_sym___global] = ACTIONS(3101), - [anon_sym_type] = ACTIONS(3101), - [anon_sym_PIPE] = ACTIONS(3101), - [anon_sym_fn] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_SLASH] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3101), - [anon_sym_LT] = ACTIONS(3101), - [anon_sym_GT] = ACTIONS(3101), - [anon_sym_EQ_EQ] = ACTIONS(3101), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_LT_EQ] = ACTIONS(3101), - [anon_sym_GT_EQ] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3101), - [anon_sym_union] = ACTIONS(3101), - [anon_sym_pub] = ACTIONS(3101), - [anon_sym_mut] = ACTIONS(3101), - [anon_sym_enum] = ACTIONS(3101), - [anon_sym_interface] = ACTIONS(3101), - [anon_sym_PLUS_PLUS] = ACTIONS(3101), - [anon_sym_DASH_DASH] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_BANG] = ACTIONS(3101), - [anon_sym_go] = ACTIONS(3101), - [anon_sym_spawn] = ACTIONS(3101), - [anon_sym_json_DOTdecode] = ACTIONS(3101), - [anon_sym_LBRACK2] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_CARET] = ACTIONS(3101), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_LT_DASH] = ACTIONS(3101), - [anon_sym_LT_LT] = ACTIONS(3101), - [anon_sym_GT_GT] = ACTIONS(3101), - [anon_sym_GT_GT_GT] = ACTIONS(3101), - [anon_sym_AMP_CARET] = ACTIONS(3101), - [anon_sym_AMP_AMP] = ACTIONS(3101), - [anon_sym_PIPE_PIPE] = ACTIONS(3101), - [anon_sym_or] = ACTIONS(3101), - [sym_none] = ACTIONS(3101), - [sym_true] = ACTIONS(3101), - [sym_false] = ACTIONS(3101), - [sym_nil] = ACTIONS(3101), - [anon_sym_QMARK_DOT] = ACTIONS(3101), - [anon_sym_POUND_LBRACK] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_DOLLARif] = ACTIONS(3101), - [anon_sym_is] = ACTIONS(3101), - [anon_sym_BANGis] = ACTIONS(3101), - [anon_sym_in] = ACTIONS(3101), - [anon_sym_BANGin] = ACTIONS(3101), - [anon_sym_match] = ACTIONS(3101), - [anon_sym_select] = ACTIONS(3101), - [anon_sym_STAR_EQ] = ACTIONS(3101), - [anon_sym_SLASH_EQ] = ACTIONS(3101), - [anon_sym_PERCENT_EQ] = ACTIONS(3101), - [anon_sym_LT_LT_EQ] = ACTIONS(3101), - [anon_sym_GT_GT_EQ] = ACTIONS(3101), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3101), - [anon_sym_AMP_EQ] = ACTIONS(3101), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3101), - [anon_sym_PLUS_EQ] = ACTIONS(3101), - [anon_sym_DASH_EQ] = ACTIONS(3101), - [anon_sym_PIPE_EQ] = ACTIONS(3101), - [anon_sym_CARET_EQ] = ACTIONS(3101), - [anon_sym_COLON_EQ] = ACTIONS(3101), - [anon_sym_lock] = ACTIONS(3101), - [anon_sym_rlock] = ACTIONS(3101), - [anon_sym_unsafe] = ACTIONS(3101), - [anon_sym_sql] = ACTIONS(3101), - [sym_int_literal] = ACTIONS(3101), - [sym_float_literal] = ACTIONS(3101), - [sym_rune_literal] = ACTIONS(3101), - [anon_sym_AT] = ACTIONS(3101), - [anon_sym_shared] = ACTIONS(3101), - [anon_sym_map_LBRACK] = ACTIONS(3101), - [anon_sym_chan] = ACTIONS(3101), - [anon_sym_thread] = ACTIONS(3101), - [anon_sym_atomic] = ACTIONS(3101), - [anon_sym_assert] = ACTIONS(3101), - [anon_sym_defer] = ACTIONS(3101), - [anon_sym_goto] = ACTIONS(3101), - [anon_sym_break] = ACTIONS(3101), - [anon_sym_continue] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_DOLLARfor] = ACTIONS(3101), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_POUND] = ACTIONS(3101), - [anon_sym_asm] = ACTIONS(3101), - [anon_sym_AT_LBRACK] = ACTIONS(3101), - [sym___double_quote] = ACTIONS(3101), - [sym___single_quote] = ACTIONS(3101), - [sym___c_double_quote] = ACTIONS(3101), - [sym___c_single_quote] = ACTIONS(3101), - [sym___r_double_quote] = ACTIONS(3101), - [sym___r_single_quote] = ACTIONS(3101), + [ts_builtin_sym_end] = ACTIONS(3076), + [sym_identifier] = ACTIONS(3078), + [anon_sym_LF] = ACTIONS(3078), + [anon_sym_CR] = ACTIONS(3078), + [anon_sym_CR_LF] = ACTIONS(3078), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3078), + [anon_sym_as] = ACTIONS(3078), + [anon_sym_LBRACE] = ACTIONS(3078), + [anon_sym_COMMA] = ACTIONS(3078), + [anon_sym_const] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_EQ] = ACTIONS(3078), + [anon_sym___global] = ACTIONS(3078), + [anon_sym_type] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3078), + [anon_sym_fn] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(3078), + [anon_sym_SLASH] = ACTIONS(3078), + [anon_sym_PERCENT] = ACTIONS(3078), + [anon_sym_LT] = ACTIONS(3078), + [anon_sym_GT] = ACTIONS(3078), + [anon_sym_EQ_EQ] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(3078), + [anon_sym_LT_EQ] = ACTIONS(3078), + [anon_sym_GT_EQ] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_struct] = ACTIONS(3078), + [anon_sym_union] = ACTIONS(3078), + [anon_sym_pub] = ACTIONS(3078), + [anon_sym_mut] = ACTIONS(3078), + [anon_sym_enum] = ACTIONS(3078), + [anon_sym_interface] = ACTIONS(3078), + [anon_sym_PLUS_PLUS] = ACTIONS(3078), + [anon_sym_DASH_DASH] = ACTIONS(3078), + [anon_sym_QMARK] = ACTIONS(3078), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_go] = ACTIONS(3078), + [anon_sym_spawn] = ACTIONS(3078), + [anon_sym_json_DOTdecode] = ACTIONS(3078), + [anon_sym_LBRACK2] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_CARET] = ACTIONS(3078), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3078), + [anon_sym_LT_LT] = ACTIONS(3078), + [anon_sym_GT_GT] = ACTIONS(3078), + [anon_sym_GT_GT_GT] = ACTIONS(3078), + [anon_sym_AMP_CARET] = ACTIONS(3078), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_or] = ACTIONS(3078), + [sym_none] = ACTIONS(3078), + [sym_true] = ACTIONS(3078), + [sym_false] = ACTIONS(3078), + [sym_nil] = ACTIONS(3078), + [anon_sym_QMARK_DOT] = ACTIONS(3078), + [anon_sym_POUND_LBRACK] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_DOLLARif] = ACTIONS(3078), + [anon_sym_is] = ACTIONS(3078), + [anon_sym_BANGis] = ACTIONS(3078), + [anon_sym_in] = ACTIONS(3078), + [anon_sym_BANGin] = ACTIONS(3078), + [anon_sym_match] = ACTIONS(3078), + [anon_sym_select] = ACTIONS(3078), + [anon_sym_STAR_EQ] = ACTIONS(3078), + [anon_sym_SLASH_EQ] = ACTIONS(3078), + [anon_sym_PERCENT_EQ] = ACTIONS(3078), + [anon_sym_LT_LT_EQ] = ACTIONS(3078), + [anon_sym_GT_GT_EQ] = ACTIONS(3078), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3078), + [anon_sym_AMP_EQ] = ACTIONS(3078), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3078), + [anon_sym_PLUS_EQ] = ACTIONS(3078), + [anon_sym_DASH_EQ] = ACTIONS(3078), + [anon_sym_PIPE_EQ] = ACTIONS(3078), + [anon_sym_CARET_EQ] = ACTIONS(3078), + [anon_sym_COLON_EQ] = ACTIONS(3078), + [anon_sym_lock] = ACTIONS(3078), + [anon_sym_rlock] = ACTIONS(3078), + [anon_sym_unsafe] = ACTIONS(3078), + [anon_sym_sql] = ACTIONS(3078), + [sym_int_literal] = ACTIONS(3078), + [sym_float_literal] = ACTIONS(3078), + [sym_rune_literal] = ACTIONS(3078), + [anon_sym_AT] = ACTIONS(3078), + [anon_sym_shared] = ACTIONS(3078), + [anon_sym_map_LBRACK] = ACTIONS(3078), + [anon_sym_chan] = ACTIONS(3078), + [anon_sym_thread] = ACTIONS(3078), + [anon_sym_atomic] = ACTIONS(3078), + [anon_sym_assert] = ACTIONS(3078), + [anon_sym_defer] = ACTIONS(3078), + [anon_sym_goto] = ACTIONS(3078), + [anon_sym_break] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(3078), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_DOLLARfor] = ACTIONS(3078), + [anon_sym_for] = ACTIONS(3078), + [anon_sym_POUND] = ACTIONS(3078), + [anon_sym_asm] = ACTIONS(3078), + [anon_sym_AT_LBRACK] = ACTIONS(3078), + [sym___double_quote] = ACTIONS(3078), + [sym___single_quote] = ACTIONS(3078), + [sym___c_double_quote] = ACTIONS(3078), + [sym___c_single_quote] = ACTIONS(3078), + [sym___r_double_quote] = ACTIONS(3078), + [sym___r_single_quote] = ACTIONS(3078), }, [927] = { - [ts_builtin_sym_end] = ACTIONS(3103), - [sym_identifier] = ACTIONS(3105), - [anon_sym_LF] = ACTIONS(3105), - [anon_sym_CR] = ACTIONS(3105), - [anon_sym_CR_LF] = ACTIONS(3105), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3105), - [anon_sym_as] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(3105), - [anon_sym_COMMA] = ACTIONS(3105), - [anon_sym_const] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3105), - [anon_sym_EQ] = ACTIONS(3105), - [anon_sym___global] = ACTIONS(3105), - [anon_sym_type] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3105), - [anon_sym_fn] = ACTIONS(3105), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_SLASH] = ACTIONS(3105), - [anon_sym_PERCENT] = ACTIONS(3105), - [anon_sym_LT] = ACTIONS(3105), - [anon_sym_GT] = ACTIONS(3105), - [anon_sym_EQ_EQ] = ACTIONS(3105), - [anon_sym_BANG_EQ] = ACTIONS(3105), - [anon_sym_LT_EQ] = ACTIONS(3105), - [anon_sym_GT_EQ] = ACTIONS(3105), - [anon_sym_LBRACK] = ACTIONS(3103), - [anon_sym_struct] = ACTIONS(3105), - [anon_sym_union] = ACTIONS(3105), - [anon_sym_pub] = ACTIONS(3105), - [anon_sym_mut] = ACTIONS(3105), - [anon_sym_enum] = ACTIONS(3105), - [anon_sym_interface] = ACTIONS(3105), - [anon_sym_PLUS_PLUS] = ACTIONS(3105), - [anon_sym_DASH_DASH] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3105), - [anon_sym_go] = ACTIONS(3105), - [anon_sym_spawn] = ACTIONS(3105), - [anon_sym_json_DOTdecode] = ACTIONS(3105), - [anon_sym_LBRACK2] = ACTIONS(3105), - [anon_sym_TILDE] = ACTIONS(3105), - [anon_sym_CARET] = ACTIONS(3105), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_LT_DASH] = ACTIONS(3105), - [anon_sym_LT_LT] = ACTIONS(3105), - [anon_sym_GT_GT] = ACTIONS(3105), - [anon_sym_GT_GT_GT] = ACTIONS(3105), - [anon_sym_AMP_CARET] = ACTIONS(3105), - [anon_sym_AMP_AMP] = ACTIONS(3105), - [anon_sym_PIPE_PIPE] = ACTIONS(3105), - [anon_sym_or] = ACTIONS(3105), - [sym_none] = ACTIONS(3105), - [sym_true] = ACTIONS(3105), - [sym_false] = ACTIONS(3105), - [sym_nil] = ACTIONS(3105), - [anon_sym_QMARK_DOT] = ACTIONS(3105), - [anon_sym_POUND_LBRACK] = ACTIONS(3105), - [anon_sym_if] = ACTIONS(3105), - [anon_sym_DOLLARif] = ACTIONS(3105), - [anon_sym_is] = ACTIONS(3105), - [anon_sym_BANGis] = ACTIONS(3105), - [anon_sym_in] = ACTIONS(3105), - [anon_sym_BANGin] = ACTIONS(3105), - [anon_sym_match] = ACTIONS(3105), - [anon_sym_select] = ACTIONS(3105), - [anon_sym_STAR_EQ] = ACTIONS(3105), - [anon_sym_SLASH_EQ] = ACTIONS(3105), - [anon_sym_PERCENT_EQ] = ACTIONS(3105), - [anon_sym_LT_LT_EQ] = ACTIONS(3105), - [anon_sym_GT_GT_EQ] = ACTIONS(3105), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3105), - [anon_sym_AMP_EQ] = ACTIONS(3105), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3105), - [anon_sym_PLUS_EQ] = ACTIONS(3105), - [anon_sym_DASH_EQ] = ACTIONS(3105), - [anon_sym_PIPE_EQ] = ACTIONS(3105), - [anon_sym_CARET_EQ] = ACTIONS(3105), - [anon_sym_COLON_EQ] = ACTIONS(3105), - [anon_sym_lock] = ACTIONS(3105), - [anon_sym_rlock] = ACTIONS(3105), - [anon_sym_unsafe] = ACTIONS(3105), - [anon_sym_sql] = ACTIONS(3105), - [sym_int_literal] = ACTIONS(3105), - [sym_float_literal] = ACTIONS(3105), - [sym_rune_literal] = ACTIONS(3105), - [anon_sym_AT] = ACTIONS(3105), - [anon_sym_shared] = ACTIONS(3105), - [anon_sym_map_LBRACK] = ACTIONS(3105), - [anon_sym_chan] = ACTIONS(3105), - [anon_sym_thread] = ACTIONS(3105), - [anon_sym_atomic] = ACTIONS(3105), - [anon_sym_assert] = ACTIONS(3105), - [anon_sym_defer] = ACTIONS(3105), - [anon_sym_goto] = ACTIONS(3105), - [anon_sym_break] = ACTIONS(3105), - [anon_sym_continue] = ACTIONS(3105), - [anon_sym_return] = ACTIONS(3105), - [anon_sym_DOLLARfor] = ACTIONS(3105), - [anon_sym_for] = ACTIONS(3105), - [anon_sym_POUND] = ACTIONS(3105), - [anon_sym_asm] = ACTIONS(3105), - [anon_sym_AT_LBRACK] = ACTIONS(3105), - [sym___double_quote] = ACTIONS(3105), - [sym___single_quote] = ACTIONS(3105), - [sym___c_double_quote] = ACTIONS(3105), - [sym___c_single_quote] = ACTIONS(3105), - [sym___r_double_quote] = ACTIONS(3105), - [sym___r_single_quote] = ACTIONS(3105), + [ts_builtin_sym_end] = ACTIONS(3080), + [sym_identifier] = ACTIONS(3082), + [anon_sym_LF] = ACTIONS(3082), + [anon_sym_CR] = ACTIONS(3082), + [anon_sym_CR_LF] = ACTIONS(3082), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3082), + [anon_sym_as] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3082), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_const] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3082), + [anon_sym_EQ] = ACTIONS(3082), + [anon_sym___global] = ACTIONS(3082), + [anon_sym_type] = ACTIONS(3082), + [anon_sym_PIPE] = ACTIONS(3082), + [anon_sym_fn] = ACTIONS(3082), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_SLASH] = ACTIONS(3082), + [anon_sym_PERCENT] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(3082), + [anon_sym_GT] = ACTIONS(3082), + [anon_sym_EQ_EQ] = ACTIONS(3082), + [anon_sym_BANG_EQ] = ACTIONS(3082), + [anon_sym_LT_EQ] = ACTIONS(3082), + [anon_sym_GT_EQ] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(3080), + [anon_sym_struct] = ACTIONS(3082), + [anon_sym_union] = ACTIONS(3082), + [anon_sym_pub] = ACTIONS(3082), + [anon_sym_mut] = ACTIONS(3082), + [anon_sym_enum] = ACTIONS(3082), + [anon_sym_interface] = ACTIONS(3082), + [anon_sym_PLUS_PLUS] = ACTIONS(3082), + [anon_sym_DASH_DASH] = ACTIONS(3082), + [anon_sym_QMARK] = ACTIONS(3082), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_go] = ACTIONS(3082), + [anon_sym_spawn] = ACTIONS(3082), + [anon_sym_json_DOTdecode] = ACTIONS(3082), + [anon_sym_LBRACK2] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3082), + [anon_sym_LT_DASH] = ACTIONS(3082), + [anon_sym_LT_LT] = ACTIONS(3082), + [anon_sym_GT_GT] = ACTIONS(3082), + [anon_sym_GT_GT_GT] = ACTIONS(3082), + [anon_sym_AMP_CARET] = ACTIONS(3082), + [anon_sym_AMP_AMP] = ACTIONS(3082), + [anon_sym_PIPE_PIPE] = ACTIONS(3082), + [anon_sym_or] = ACTIONS(3082), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_QMARK_DOT] = ACTIONS(3082), + [anon_sym_POUND_LBRACK] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_DOLLARif] = ACTIONS(3082), + [anon_sym_is] = ACTIONS(3082), + [anon_sym_BANGis] = ACTIONS(3082), + [anon_sym_in] = ACTIONS(3082), + [anon_sym_BANGin] = ACTIONS(3082), + [anon_sym_match] = ACTIONS(3082), + [anon_sym_select] = ACTIONS(3082), + [anon_sym_STAR_EQ] = ACTIONS(3082), + [anon_sym_SLASH_EQ] = ACTIONS(3082), + [anon_sym_PERCENT_EQ] = ACTIONS(3082), + [anon_sym_LT_LT_EQ] = ACTIONS(3082), + [anon_sym_GT_GT_EQ] = ACTIONS(3082), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3082), + [anon_sym_AMP_EQ] = ACTIONS(3082), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3082), + [anon_sym_PLUS_EQ] = ACTIONS(3082), + [anon_sym_DASH_EQ] = ACTIONS(3082), + [anon_sym_PIPE_EQ] = ACTIONS(3082), + [anon_sym_CARET_EQ] = ACTIONS(3082), + [anon_sym_COLON_EQ] = ACTIONS(3082), + [anon_sym_lock] = ACTIONS(3082), + [anon_sym_rlock] = ACTIONS(3082), + [anon_sym_unsafe] = ACTIONS(3082), + [anon_sym_sql] = ACTIONS(3082), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3082), + [sym_rune_literal] = ACTIONS(3082), + [anon_sym_AT] = ACTIONS(3082), + [anon_sym_shared] = ACTIONS(3082), + [anon_sym_map_LBRACK] = ACTIONS(3082), + [anon_sym_chan] = ACTIONS(3082), + [anon_sym_thread] = ACTIONS(3082), + [anon_sym_atomic] = ACTIONS(3082), + [anon_sym_assert] = ACTIONS(3082), + [anon_sym_defer] = ACTIONS(3082), + [anon_sym_goto] = ACTIONS(3082), + [anon_sym_break] = ACTIONS(3082), + [anon_sym_continue] = ACTIONS(3082), + [anon_sym_return] = ACTIONS(3082), + [anon_sym_DOLLARfor] = ACTIONS(3082), + [anon_sym_for] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(3082), + [anon_sym_asm] = ACTIONS(3082), + [anon_sym_AT_LBRACK] = ACTIONS(3082), + [sym___double_quote] = ACTIONS(3082), + [sym___single_quote] = ACTIONS(3082), + [sym___c_double_quote] = ACTIONS(3082), + [sym___c_single_quote] = ACTIONS(3082), + [sym___r_double_quote] = ACTIONS(3082), + [sym___r_single_quote] = ACTIONS(3082), }, [928] = { - [ts_builtin_sym_end] = ACTIONS(3107), - [sym_identifier] = ACTIONS(3109), - [anon_sym_LF] = ACTIONS(3109), - [anon_sym_CR] = ACTIONS(3109), - [anon_sym_CR_LF] = ACTIONS(3109), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3109), - [anon_sym_as] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(3109), - [anon_sym_const] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_EQ] = ACTIONS(3109), - [anon_sym___global] = ACTIONS(3109), - [anon_sym_type] = ACTIONS(3109), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_fn] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_PERCENT] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_LT_EQ] = ACTIONS(3109), - [anon_sym_GT_EQ] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3109), - [anon_sym_union] = ACTIONS(3109), - [anon_sym_pub] = ACTIONS(3109), - [anon_sym_mut] = ACTIONS(3109), - [anon_sym_enum] = ACTIONS(3109), - [anon_sym_interface] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3109), - [anon_sym_DASH_DASH] = ACTIONS(3109), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_go] = ACTIONS(3109), - [anon_sym_spawn] = ACTIONS(3109), - [anon_sym_json_DOTdecode] = ACTIONS(3109), - [anon_sym_LBRACK2] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT_DASH] = ACTIONS(3109), - [anon_sym_LT_LT] = ACTIONS(3109), - [anon_sym_GT_GT] = ACTIONS(3109), - [anon_sym_GT_GT_GT] = ACTIONS(3109), - [anon_sym_AMP_CARET] = ACTIONS(3109), - [anon_sym_AMP_AMP] = ACTIONS(3109), - [anon_sym_PIPE_PIPE] = ACTIONS(3109), - [anon_sym_or] = ACTIONS(3109), - [sym_none] = ACTIONS(3109), - [sym_true] = ACTIONS(3109), - [sym_false] = ACTIONS(3109), - [sym_nil] = ACTIONS(3109), - [anon_sym_QMARK_DOT] = ACTIONS(3109), - [anon_sym_POUND_LBRACK] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_DOLLARif] = ACTIONS(3109), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3109), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_BANGin] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(3109), - [anon_sym_select] = ACTIONS(3109), - [anon_sym_STAR_EQ] = ACTIONS(3109), - [anon_sym_SLASH_EQ] = ACTIONS(3109), - [anon_sym_PERCENT_EQ] = ACTIONS(3109), - [anon_sym_LT_LT_EQ] = ACTIONS(3109), - [anon_sym_GT_GT_EQ] = ACTIONS(3109), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3109), - [anon_sym_AMP_EQ] = ACTIONS(3109), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3109), - [anon_sym_PLUS_EQ] = ACTIONS(3109), - [anon_sym_DASH_EQ] = ACTIONS(3109), - [anon_sym_PIPE_EQ] = ACTIONS(3109), - [anon_sym_CARET_EQ] = ACTIONS(3109), - [anon_sym_COLON_EQ] = ACTIONS(3109), - [anon_sym_lock] = ACTIONS(3109), - [anon_sym_rlock] = ACTIONS(3109), - [anon_sym_unsafe] = ACTIONS(3109), - [anon_sym_sql] = ACTIONS(3109), - [sym_int_literal] = ACTIONS(3109), - [sym_float_literal] = ACTIONS(3109), - [sym_rune_literal] = ACTIONS(3109), - [anon_sym_AT] = ACTIONS(3109), - [anon_sym_shared] = ACTIONS(3109), - [anon_sym_map_LBRACK] = ACTIONS(3109), - [anon_sym_chan] = ACTIONS(3109), - [anon_sym_thread] = ACTIONS(3109), - [anon_sym_atomic] = ACTIONS(3109), - [anon_sym_assert] = ACTIONS(3109), - [anon_sym_defer] = ACTIONS(3109), - [anon_sym_goto] = ACTIONS(3109), - [anon_sym_break] = ACTIONS(3109), - [anon_sym_continue] = ACTIONS(3109), - [anon_sym_return] = ACTIONS(3109), - [anon_sym_DOLLARfor] = ACTIONS(3109), - [anon_sym_for] = ACTIONS(3109), - [anon_sym_POUND] = ACTIONS(3109), - [anon_sym_asm] = ACTIONS(3109), - [anon_sym_AT_LBRACK] = ACTIONS(3109), - [sym___double_quote] = ACTIONS(3109), - [sym___single_quote] = ACTIONS(3109), - [sym___c_double_quote] = ACTIONS(3109), - [sym___c_single_quote] = ACTIONS(3109), - [sym___r_double_quote] = ACTIONS(3109), - [sym___r_single_quote] = ACTIONS(3109), + [ts_builtin_sym_end] = ACTIONS(3084), + [sym_identifier] = ACTIONS(3086), + [anon_sym_LF] = ACTIONS(3086), + [anon_sym_CR] = ACTIONS(3086), + [anon_sym_CR_LF] = ACTIONS(3086), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3086), + [anon_sym_as] = ACTIONS(3086), + [anon_sym_LBRACE] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_const] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_EQ] = ACTIONS(3086), + [anon_sym___global] = ACTIONS(3086), + [anon_sym_type] = ACTIONS(3086), + [anon_sym_PIPE] = ACTIONS(3086), + [anon_sym_fn] = ACTIONS(3086), + [anon_sym_PLUS] = ACTIONS(3086), + [anon_sym_DASH] = ACTIONS(3086), + [anon_sym_STAR] = ACTIONS(3086), + [anon_sym_SLASH] = ACTIONS(3086), + [anon_sym_PERCENT] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(3086), + [anon_sym_GT] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(3086), + [anon_sym_GT_EQ] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(3086), + [anon_sym_union] = ACTIONS(3086), + [anon_sym_pub] = ACTIONS(3086), + [anon_sym_mut] = ACTIONS(3086), + [anon_sym_enum] = ACTIONS(3086), + [anon_sym_interface] = ACTIONS(3086), + [anon_sym_PLUS_PLUS] = ACTIONS(3086), + [anon_sym_DASH_DASH] = ACTIONS(3086), + [anon_sym_QMARK] = ACTIONS(3086), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3086), + [anon_sym_spawn] = ACTIONS(3086), + [anon_sym_json_DOTdecode] = ACTIONS(3086), + [anon_sym_LBRACK2] = ACTIONS(3086), + [anon_sym_TILDE] = ACTIONS(3086), + [anon_sym_CARET] = ACTIONS(3086), + [anon_sym_AMP] = ACTIONS(3086), + [anon_sym_LT_DASH] = ACTIONS(3086), + [anon_sym_LT_LT] = ACTIONS(3086), + [anon_sym_GT_GT] = ACTIONS(3086), + [anon_sym_GT_GT_GT] = ACTIONS(3086), + [anon_sym_AMP_CARET] = ACTIONS(3086), + [anon_sym_AMP_AMP] = ACTIONS(3086), + [anon_sym_PIPE_PIPE] = ACTIONS(3086), + [anon_sym_or] = ACTIONS(3086), + [sym_none] = ACTIONS(3086), + [sym_true] = ACTIONS(3086), + [sym_false] = ACTIONS(3086), + [sym_nil] = ACTIONS(3086), + [anon_sym_QMARK_DOT] = ACTIONS(3086), + [anon_sym_POUND_LBRACK] = ACTIONS(3086), + [anon_sym_if] = ACTIONS(3086), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_is] = ACTIONS(3086), + [anon_sym_BANGis] = ACTIONS(3086), + [anon_sym_in] = ACTIONS(3086), + [anon_sym_BANGin] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3086), + [anon_sym_select] = ACTIONS(3086), + [anon_sym_STAR_EQ] = ACTIONS(3086), + [anon_sym_SLASH_EQ] = ACTIONS(3086), + [anon_sym_PERCENT_EQ] = ACTIONS(3086), + [anon_sym_LT_LT_EQ] = ACTIONS(3086), + [anon_sym_GT_GT_EQ] = ACTIONS(3086), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3086), + [anon_sym_AMP_EQ] = ACTIONS(3086), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3086), + [anon_sym_PLUS_EQ] = ACTIONS(3086), + [anon_sym_DASH_EQ] = ACTIONS(3086), + [anon_sym_PIPE_EQ] = ACTIONS(3086), + [anon_sym_CARET_EQ] = ACTIONS(3086), + [anon_sym_COLON_EQ] = ACTIONS(3086), + [anon_sym_lock] = ACTIONS(3086), + [anon_sym_rlock] = ACTIONS(3086), + [anon_sym_unsafe] = ACTIONS(3086), + [anon_sym_sql] = ACTIONS(3086), + [sym_int_literal] = ACTIONS(3086), + [sym_float_literal] = ACTIONS(3086), + [sym_rune_literal] = ACTIONS(3086), + [anon_sym_AT] = ACTIONS(3086), + [anon_sym_shared] = ACTIONS(3086), + [anon_sym_map_LBRACK] = ACTIONS(3086), + [anon_sym_chan] = ACTIONS(3086), + [anon_sym_thread] = ACTIONS(3086), + [anon_sym_atomic] = ACTIONS(3086), + [anon_sym_assert] = ACTIONS(3086), + [anon_sym_defer] = ACTIONS(3086), + [anon_sym_goto] = ACTIONS(3086), + [anon_sym_break] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(3086), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_DOLLARfor] = ACTIONS(3086), + [anon_sym_for] = ACTIONS(3086), + [anon_sym_POUND] = ACTIONS(3086), + [anon_sym_asm] = ACTIONS(3086), + [anon_sym_AT_LBRACK] = ACTIONS(3086), + [sym___double_quote] = ACTIONS(3086), + [sym___single_quote] = ACTIONS(3086), + [sym___c_double_quote] = ACTIONS(3086), + [sym___c_single_quote] = ACTIONS(3086), + [sym___r_double_quote] = ACTIONS(3086), + [sym___r_single_quote] = ACTIONS(3086), }, [929] = { - [ts_builtin_sym_end] = ACTIONS(3111), - [sym_identifier] = ACTIONS(3113), - [anon_sym_LF] = ACTIONS(3113), - [anon_sym_CR] = ACTIONS(3113), - [anon_sym_CR_LF] = ACTIONS(3113), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3113), - [anon_sym_as] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(3113), - [anon_sym_const] = ACTIONS(3113), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_EQ] = ACTIONS(3113), - [anon_sym___global] = ACTIONS(3113), - [anon_sym_type] = ACTIONS(3113), - [anon_sym_PIPE] = ACTIONS(3113), - [anon_sym_fn] = ACTIONS(3113), - [anon_sym_PLUS] = ACTIONS(3113), - [anon_sym_DASH] = ACTIONS(3113), - [anon_sym_STAR] = ACTIONS(3113), - [anon_sym_SLASH] = ACTIONS(3113), - [anon_sym_PERCENT] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3113), - [anon_sym_EQ_EQ] = ACTIONS(3113), - [anon_sym_BANG_EQ] = ACTIONS(3113), - [anon_sym_LT_EQ] = ACTIONS(3113), - [anon_sym_GT_EQ] = ACTIONS(3113), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3113), - [anon_sym_union] = ACTIONS(3113), - [anon_sym_pub] = ACTIONS(3113), - [anon_sym_mut] = ACTIONS(3113), - [anon_sym_enum] = ACTIONS(3113), - [anon_sym_interface] = ACTIONS(3113), - [anon_sym_PLUS_PLUS] = ACTIONS(3113), - [anon_sym_DASH_DASH] = ACTIONS(3113), - [anon_sym_QMARK] = ACTIONS(3113), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(3113), - [anon_sym_spawn] = ACTIONS(3113), - [anon_sym_json_DOTdecode] = ACTIONS(3113), - [anon_sym_LBRACK2] = ACTIONS(3113), - [anon_sym_TILDE] = ACTIONS(3113), - [anon_sym_CARET] = ACTIONS(3113), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT_DASH] = ACTIONS(3113), - [anon_sym_LT_LT] = ACTIONS(3113), - [anon_sym_GT_GT] = ACTIONS(3113), - [anon_sym_GT_GT_GT] = ACTIONS(3113), - [anon_sym_AMP_CARET] = ACTIONS(3113), - [anon_sym_AMP_AMP] = ACTIONS(3113), - [anon_sym_PIPE_PIPE] = ACTIONS(3113), - [anon_sym_or] = ACTIONS(3113), - [sym_none] = ACTIONS(3113), - [sym_true] = ACTIONS(3113), - [sym_false] = ACTIONS(3113), - [sym_nil] = ACTIONS(3113), - [anon_sym_QMARK_DOT] = ACTIONS(3113), - [anon_sym_POUND_LBRACK] = ACTIONS(3113), - [anon_sym_if] = ACTIONS(3113), - [anon_sym_DOLLARif] = ACTIONS(3113), - [anon_sym_is] = ACTIONS(3113), - [anon_sym_BANGis] = ACTIONS(3113), - [anon_sym_in] = ACTIONS(3113), - [anon_sym_BANGin] = ACTIONS(3113), - [anon_sym_match] = ACTIONS(3113), - [anon_sym_select] = ACTIONS(3113), - [anon_sym_STAR_EQ] = ACTIONS(3113), - [anon_sym_SLASH_EQ] = ACTIONS(3113), - [anon_sym_PERCENT_EQ] = ACTIONS(3113), - [anon_sym_LT_LT_EQ] = ACTIONS(3113), - [anon_sym_GT_GT_EQ] = ACTIONS(3113), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3113), - [anon_sym_AMP_EQ] = ACTIONS(3113), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3113), - [anon_sym_PLUS_EQ] = ACTIONS(3113), - [anon_sym_DASH_EQ] = ACTIONS(3113), - [anon_sym_PIPE_EQ] = ACTIONS(3113), - [anon_sym_CARET_EQ] = ACTIONS(3113), - [anon_sym_COLON_EQ] = ACTIONS(3113), - [anon_sym_lock] = ACTIONS(3113), - [anon_sym_rlock] = ACTIONS(3113), - [anon_sym_unsafe] = ACTIONS(3113), - [anon_sym_sql] = ACTIONS(3113), - [sym_int_literal] = ACTIONS(3113), - [sym_float_literal] = ACTIONS(3113), - [sym_rune_literal] = ACTIONS(3113), - [anon_sym_AT] = ACTIONS(3113), - [anon_sym_shared] = ACTIONS(3113), - [anon_sym_map_LBRACK] = ACTIONS(3113), - [anon_sym_chan] = ACTIONS(3113), - [anon_sym_thread] = ACTIONS(3113), - [anon_sym_atomic] = ACTIONS(3113), - [anon_sym_assert] = ACTIONS(3113), - [anon_sym_defer] = ACTIONS(3113), - [anon_sym_goto] = ACTIONS(3113), - [anon_sym_break] = ACTIONS(3113), - [anon_sym_continue] = ACTIONS(3113), - [anon_sym_return] = ACTIONS(3113), - [anon_sym_DOLLARfor] = ACTIONS(3113), - [anon_sym_for] = ACTIONS(3113), - [anon_sym_POUND] = ACTIONS(3113), - [anon_sym_asm] = ACTIONS(3113), - [anon_sym_AT_LBRACK] = ACTIONS(3113), - [sym___double_quote] = ACTIONS(3113), - [sym___single_quote] = ACTIONS(3113), - [sym___c_double_quote] = ACTIONS(3113), - [sym___c_single_quote] = ACTIONS(3113), - [sym___r_double_quote] = ACTIONS(3113), - [sym___r_single_quote] = ACTIONS(3113), + [ts_builtin_sym_end] = ACTIONS(3088), + [sym_identifier] = ACTIONS(3090), + [anon_sym_LF] = ACTIONS(3090), + [anon_sym_CR] = ACTIONS(3090), + [anon_sym_CR_LF] = ACTIONS(3090), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3090), + [anon_sym_as] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_const] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3090), + [anon_sym_EQ] = ACTIONS(3090), + [anon_sym___global] = ACTIONS(3090), + [anon_sym_type] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3090), + [anon_sym_fn] = ACTIONS(3090), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3090), + [anon_sym_SLASH] = ACTIONS(3090), + [anon_sym_PERCENT] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(3090), + [anon_sym_GT] = ACTIONS(3090), + [anon_sym_EQ_EQ] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(3090), + [anon_sym_LT_EQ] = ACTIONS(3090), + [anon_sym_GT_EQ] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3088), + [anon_sym_struct] = ACTIONS(3090), + [anon_sym_union] = ACTIONS(3090), + [anon_sym_pub] = ACTIONS(3090), + [anon_sym_mut] = ACTIONS(3090), + [anon_sym_enum] = ACTIONS(3090), + [anon_sym_interface] = ACTIONS(3090), + [anon_sym_PLUS_PLUS] = ACTIONS(3090), + [anon_sym_DASH_DASH] = ACTIONS(3090), + [anon_sym_QMARK] = ACTIONS(3090), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_go] = ACTIONS(3090), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(3090), + [anon_sym_LBRACK2] = ACTIONS(3090), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3090), + [anon_sym_LT_DASH] = ACTIONS(3090), + [anon_sym_LT_LT] = ACTIONS(3090), + [anon_sym_GT_GT] = ACTIONS(3090), + [anon_sym_GT_GT_GT] = ACTIONS(3090), + [anon_sym_AMP_CARET] = ACTIONS(3090), + [anon_sym_AMP_AMP] = ACTIONS(3090), + [anon_sym_PIPE_PIPE] = ACTIONS(3090), + [anon_sym_or] = ACTIONS(3090), + [sym_none] = ACTIONS(3090), + [sym_true] = ACTIONS(3090), + [sym_false] = ACTIONS(3090), + [sym_nil] = ACTIONS(3090), + [anon_sym_QMARK_DOT] = ACTIONS(3090), + [anon_sym_POUND_LBRACK] = ACTIONS(3090), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_DOLLARif] = ACTIONS(3090), + [anon_sym_is] = ACTIONS(3090), + [anon_sym_BANGis] = ACTIONS(3090), + [anon_sym_in] = ACTIONS(3090), + [anon_sym_BANGin] = ACTIONS(3090), + [anon_sym_match] = ACTIONS(3090), + [anon_sym_select] = ACTIONS(3090), + [anon_sym_STAR_EQ] = ACTIONS(3090), + [anon_sym_SLASH_EQ] = ACTIONS(3090), + [anon_sym_PERCENT_EQ] = ACTIONS(3090), + [anon_sym_LT_LT_EQ] = ACTIONS(3090), + [anon_sym_GT_GT_EQ] = ACTIONS(3090), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3090), + [anon_sym_AMP_EQ] = ACTIONS(3090), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3090), + [anon_sym_PLUS_EQ] = ACTIONS(3090), + [anon_sym_DASH_EQ] = ACTIONS(3090), + [anon_sym_PIPE_EQ] = ACTIONS(3090), + [anon_sym_CARET_EQ] = ACTIONS(3090), + [anon_sym_COLON_EQ] = ACTIONS(3090), + [anon_sym_lock] = ACTIONS(3090), + [anon_sym_rlock] = ACTIONS(3090), + [anon_sym_unsafe] = ACTIONS(3090), + [anon_sym_sql] = ACTIONS(3090), + [sym_int_literal] = ACTIONS(3090), + [sym_float_literal] = ACTIONS(3090), + [sym_rune_literal] = ACTIONS(3090), + [anon_sym_AT] = ACTIONS(3090), + [anon_sym_shared] = ACTIONS(3090), + [anon_sym_map_LBRACK] = ACTIONS(3090), + [anon_sym_chan] = ACTIONS(3090), + [anon_sym_thread] = ACTIONS(3090), + [anon_sym_atomic] = ACTIONS(3090), + [anon_sym_assert] = ACTIONS(3090), + [anon_sym_defer] = ACTIONS(3090), + [anon_sym_goto] = ACTIONS(3090), + [anon_sym_break] = ACTIONS(3090), + [anon_sym_continue] = ACTIONS(3090), + [anon_sym_return] = ACTIONS(3090), + [anon_sym_DOLLARfor] = ACTIONS(3090), + [anon_sym_for] = ACTIONS(3090), + [anon_sym_POUND] = ACTIONS(3090), + [anon_sym_asm] = ACTIONS(3090), + [anon_sym_AT_LBRACK] = ACTIONS(3090), + [sym___double_quote] = ACTIONS(3090), + [sym___single_quote] = ACTIONS(3090), + [sym___c_double_quote] = ACTIONS(3090), + [sym___c_single_quote] = ACTIONS(3090), + [sym___r_double_quote] = ACTIONS(3090), + [sym___r_single_quote] = ACTIONS(3090), }, [930] = { - [ts_builtin_sym_end] = ACTIONS(3115), - [sym_identifier] = ACTIONS(3117), - [anon_sym_LF] = ACTIONS(3117), - [anon_sym_CR] = ACTIONS(3117), - [anon_sym_CR_LF] = ACTIONS(3117), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3117), - [anon_sym_as] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_COMMA] = ACTIONS(3117), - [anon_sym_const] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3117), - [anon_sym_EQ] = ACTIONS(3117), - [anon_sym___global] = ACTIONS(3117), - [anon_sym_type] = ACTIONS(3117), - [anon_sym_PIPE] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_SLASH] = ACTIONS(3117), - [anon_sym_PERCENT] = ACTIONS(3117), - [anon_sym_LT] = ACTIONS(3117), - [anon_sym_GT] = ACTIONS(3117), - [anon_sym_EQ_EQ] = ACTIONS(3117), - [anon_sym_BANG_EQ] = ACTIONS(3117), - [anon_sym_LT_EQ] = ACTIONS(3117), - [anon_sym_GT_EQ] = ACTIONS(3117), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_struct] = ACTIONS(3117), - [anon_sym_union] = ACTIONS(3117), - [anon_sym_pub] = ACTIONS(3117), - [anon_sym_mut] = ACTIONS(3117), - [anon_sym_enum] = ACTIONS(3117), - [anon_sym_interface] = ACTIONS(3117), - [anon_sym_PLUS_PLUS] = ACTIONS(3117), - [anon_sym_DASH_DASH] = ACTIONS(3117), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3117), - [anon_sym_go] = ACTIONS(3117), - [anon_sym_spawn] = ACTIONS(3117), - [anon_sym_json_DOTdecode] = ACTIONS(3117), - [anon_sym_LBRACK2] = ACTIONS(3117), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_CARET] = ACTIONS(3117), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_LT_DASH] = ACTIONS(3117), - [anon_sym_LT_LT] = ACTIONS(3117), - [anon_sym_GT_GT] = ACTIONS(3117), - [anon_sym_GT_GT_GT] = ACTIONS(3117), - [anon_sym_AMP_CARET] = ACTIONS(3117), - [anon_sym_AMP_AMP] = ACTIONS(3117), - [anon_sym_PIPE_PIPE] = ACTIONS(3117), - [anon_sym_or] = ACTIONS(3117), - [sym_none] = ACTIONS(3117), - [sym_true] = ACTIONS(3117), - [sym_false] = ACTIONS(3117), - [sym_nil] = ACTIONS(3117), - [anon_sym_QMARK_DOT] = ACTIONS(3117), - [anon_sym_POUND_LBRACK] = ACTIONS(3117), - [anon_sym_if] = ACTIONS(3117), - [anon_sym_DOLLARif] = ACTIONS(3117), - [anon_sym_is] = ACTIONS(3117), - [anon_sym_BANGis] = ACTIONS(3117), - [anon_sym_in] = ACTIONS(3117), - [anon_sym_BANGin] = ACTIONS(3117), - [anon_sym_match] = ACTIONS(3117), - [anon_sym_select] = ACTIONS(3117), - [anon_sym_STAR_EQ] = ACTIONS(3117), - [anon_sym_SLASH_EQ] = ACTIONS(3117), - [anon_sym_PERCENT_EQ] = ACTIONS(3117), - [anon_sym_LT_LT_EQ] = ACTIONS(3117), - [anon_sym_GT_GT_EQ] = ACTIONS(3117), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3117), - [anon_sym_AMP_EQ] = ACTIONS(3117), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3117), - [anon_sym_PLUS_EQ] = ACTIONS(3117), - [anon_sym_DASH_EQ] = ACTIONS(3117), - [anon_sym_PIPE_EQ] = ACTIONS(3117), - [anon_sym_CARET_EQ] = ACTIONS(3117), - [anon_sym_COLON_EQ] = ACTIONS(3117), - [anon_sym_lock] = ACTIONS(3117), - [anon_sym_rlock] = ACTIONS(3117), - [anon_sym_unsafe] = ACTIONS(3117), - [anon_sym_sql] = ACTIONS(3117), - [sym_int_literal] = ACTIONS(3117), - [sym_float_literal] = ACTIONS(3117), - [sym_rune_literal] = ACTIONS(3117), - [anon_sym_AT] = ACTIONS(3117), - [anon_sym_shared] = ACTIONS(3117), - [anon_sym_map_LBRACK] = ACTIONS(3117), - [anon_sym_chan] = ACTIONS(3117), - [anon_sym_thread] = ACTIONS(3117), - [anon_sym_atomic] = ACTIONS(3117), - [anon_sym_assert] = ACTIONS(3117), - [anon_sym_defer] = ACTIONS(3117), - [anon_sym_goto] = ACTIONS(3117), - [anon_sym_break] = ACTIONS(3117), - [anon_sym_continue] = ACTIONS(3117), - [anon_sym_return] = ACTIONS(3117), - [anon_sym_DOLLARfor] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(3117), - [anon_sym_POUND] = ACTIONS(3117), - [anon_sym_asm] = ACTIONS(3117), - [anon_sym_AT_LBRACK] = ACTIONS(3117), - [sym___double_quote] = ACTIONS(3117), - [sym___single_quote] = ACTIONS(3117), - [sym___c_double_quote] = ACTIONS(3117), - [sym___c_single_quote] = ACTIONS(3117), - [sym___r_double_quote] = ACTIONS(3117), - [sym___r_single_quote] = ACTIONS(3117), + [ts_builtin_sym_end] = ACTIONS(3092), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LF] = ACTIONS(3094), + [anon_sym_CR] = ACTIONS(3094), + [anon_sym_CR_LF] = ACTIONS(3094), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3094), + [anon_sym_as] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_COMMA] = ACTIONS(3094), + [anon_sym_const] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3094), + [anon_sym_EQ] = ACTIONS(3094), + [anon_sym___global] = ACTIONS(3094), + [anon_sym_type] = ACTIONS(3094), + [anon_sym_PIPE] = ACTIONS(3094), + [anon_sym_fn] = ACTIONS(3094), + [anon_sym_PLUS] = ACTIONS(3094), + [anon_sym_DASH] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(3094), + [anon_sym_SLASH] = ACTIONS(3094), + [anon_sym_PERCENT] = ACTIONS(3094), + [anon_sym_LT] = ACTIONS(3094), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_LT_EQ] = ACTIONS(3094), + [anon_sym_GT_EQ] = ACTIONS(3094), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(3094), + [anon_sym_union] = ACTIONS(3094), + [anon_sym_pub] = ACTIONS(3094), + [anon_sym_mut] = ACTIONS(3094), + [anon_sym_enum] = ACTIONS(3094), + [anon_sym_interface] = ACTIONS(3094), + [anon_sym_PLUS_PLUS] = ACTIONS(3094), + [anon_sym_DASH_DASH] = ACTIONS(3094), + [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3094), + [anon_sym_spawn] = ACTIONS(3094), + [anon_sym_json_DOTdecode] = ACTIONS(3094), + [anon_sym_LBRACK2] = ACTIONS(3094), + [anon_sym_TILDE] = ACTIONS(3094), + [anon_sym_CARET] = ACTIONS(3094), + [anon_sym_AMP] = ACTIONS(3094), + [anon_sym_LT_DASH] = ACTIONS(3094), + [anon_sym_LT_LT] = ACTIONS(3094), + [anon_sym_GT_GT] = ACTIONS(3094), + [anon_sym_GT_GT_GT] = ACTIONS(3094), + [anon_sym_AMP_CARET] = ACTIONS(3094), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_PIPE_PIPE] = ACTIONS(3094), + [anon_sym_or] = ACTIONS(3094), + [sym_none] = ACTIONS(3094), + [sym_true] = ACTIONS(3094), + [sym_false] = ACTIONS(3094), + [sym_nil] = ACTIONS(3094), + [anon_sym_QMARK_DOT] = ACTIONS(3094), + [anon_sym_POUND_LBRACK] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3094), + [anon_sym_DOLLARif] = ACTIONS(3094), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3094), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_BANGin] = ACTIONS(3094), + [anon_sym_match] = ACTIONS(3094), + [anon_sym_select] = ACTIONS(3094), + [anon_sym_STAR_EQ] = ACTIONS(3094), + [anon_sym_SLASH_EQ] = ACTIONS(3094), + [anon_sym_PERCENT_EQ] = ACTIONS(3094), + [anon_sym_LT_LT_EQ] = ACTIONS(3094), + [anon_sym_GT_GT_EQ] = ACTIONS(3094), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3094), + [anon_sym_AMP_EQ] = ACTIONS(3094), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3094), + [anon_sym_PLUS_EQ] = ACTIONS(3094), + [anon_sym_DASH_EQ] = ACTIONS(3094), + [anon_sym_PIPE_EQ] = ACTIONS(3094), + [anon_sym_CARET_EQ] = ACTIONS(3094), + [anon_sym_COLON_EQ] = ACTIONS(3094), + [anon_sym_lock] = ACTIONS(3094), + [anon_sym_rlock] = ACTIONS(3094), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3094), + [sym_int_literal] = ACTIONS(3094), + [sym_float_literal] = ACTIONS(3094), + [sym_rune_literal] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(3094), + [anon_sym_shared] = ACTIONS(3094), + [anon_sym_map_LBRACK] = ACTIONS(3094), + [anon_sym_chan] = ACTIONS(3094), + [anon_sym_thread] = ACTIONS(3094), + [anon_sym_atomic] = ACTIONS(3094), + [anon_sym_assert] = ACTIONS(3094), + [anon_sym_defer] = ACTIONS(3094), + [anon_sym_goto] = ACTIONS(3094), + [anon_sym_break] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(3094), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_DOLLARfor] = ACTIONS(3094), + [anon_sym_for] = ACTIONS(3094), + [anon_sym_POUND] = ACTIONS(3094), + [anon_sym_asm] = ACTIONS(3094), + [anon_sym_AT_LBRACK] = ACTIONS(3094), + [sym___double_quote] = ACTIONS(3094), + [sym___single_quote] = ACTIONS(3094), + [sym___c_double_quote] = ACTIONS(3094), + [sym___c_single_quote] = ACTIONS(3094), + [sym___r_double_quote] = ACTIONS(3094), + [sym___r_single_quote] = ACTIONS(3094), }, [931] = { - [ts_builtin_sym_end] = ACTIONS(3119), - [sym_identifier] = ACTIONS(3121), - [anon_sym_LF] = ACTIONS(3121), - [anon_sym_CR] = ACTIONS(3121), - [anon_sym_CR_LF] = ACTIONS(3121), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3121), - [anon_sym_as] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(3121), - [anon_sym_COMMA] = ACTIONS(3121), - [anon_sym_const] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_EQ] = ACTIONS(3121), - [anon_sym___global] = ACTIONS(3121), - [anon_sym_type] = ACTIONS(3121), - [anon_sym_PIPE] = ACTIONS(3121), - [anon_sym_fn] = ACTIONS(3121), - [anon_sym_PLUS] = ACTIONS(3121), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(3121), - [anon_sym_SLASH] = ACTIONS(3121), - [anon_sym_PERCENT] = ACTIONS(3121), - [anon_sym_LT] = ACTIONS(3121), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_LT_EQ] = ACTIONS(3121), - [anon_sym_GT_EQ] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_pub] = ACTIONS(3121), - [anon_sym_mut] = ACTIONS(3121), - [anon_sym_enum] = ACTIONS(3121), - [anon_sym_interface] = ACTIONS(3121), - [anon_sym_PLUS_PLUS] = ACTIONS(3121), - [anon_sym_DASH_DASH] = ACTIONS(3121), - [anon_sym_QMARK] = ACTIONS(3121), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_go] = ACTIONS(3121), - [anon_sym_spawn] = ACTIONS(3121), - [anon_sym_json_DOTdecode] = ACTIONS(3121), - [anon_sym_LBRACK2] = ACTIONS(3121), - [anon_sym_TILDE] = ACTIONS(3121), - [anon_sym_CARET] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3121), - [anon_sym_LT_DASH] = ACTIONS(3121), - [anon_sym_LT_LT] = ACTIONS(3121), - [anon_sym_GT_GT] = ACTIONS(3121), - [anon_sym_GT_GT_GT] = ACTIONS(3121), - [anon_sym_AMP_CARET] = ACTIONS(3121), - [anon_sym_AMP_AMP] = ACTIONS(3121), - [anon_sym_PIPE_PIPE] = ACTIONS(3121), - [anon_sym_or] = ACTIONS(3121), - [sym_none] = ACTIONS(3121), - [sym_true] = ACTIONS(3121), - [sym_false] = ACTIONS(3121), - [sym_nil] = ACTIONS(3121), - [anon_sym_QMARK_DOT] = ACTIONS(3121), - [anon_sym_POUND_LBRACK] = ACTIONS(3121), - [anon_sym_if] = ACTIONS(3121), - [anon_sym_DOLLARif] = ACTIONS(3121), - [anon_sym_is] = ACTIONS(3121), - [anon_sym_BANGis] = ACTIONS(3121), - [anon_sym_in] = ACTIONS(3121), - [anon_sym_BANGin] = ACTIONS(3121), - [anon_sym_match] = ACTIONS(3121), - [anon_sym_select] = ACTIONS(3121), - [anon_sym_STAR_EQ] = ACTIONS(3121), - [anon_sym_SLASH_EQ] = ACTIONS(3121), - [anon_sym_PERCENT_EQ] = ACTIONS(3121), - [anon_sym_LT_LT_EQ] = ACTIONS(3121), - [anon_sym_GT_GT_EQ] = ACTIONS(3121), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3121), - [anon_sym_AMP_EQ] = ACTIONS(3121), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3121), - [anon_sym_PLUS_EQ] = ACTIONS(3121), - [anon_sym_DASH_EQ] = ACTIONS(3121), - [anon_sym_PIPE_EQ] = ACTIONS(3121), - [anon_sym_CARET_EQ] = ACTIONS(3121), - [anon_sym_COLON_EQ] = ACTIONS(3121), - [anon_sym_lock] = ACTIONS(3121), - [anon_sym_rlock] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(3121), - [anon_sym_sql] = ACTIONS(3121), - [sym_int_literal] = ACTIONS(3121), - [sym_float_literal] = ACTIONS(3121), - [sym_rune_literal] = ACTIONS(3121), - [anon_sym_AT] = ACTIONS(3121), - [anon_sym_shared] = ACTIONS(3121), - [anon_sym_map_LBRACK] = ACTIONS(3121), - [anon_sym_chan] = ACTIONS(3121), - [anon_sym_thread] = ACTIONS(3121), - [anon_sym_atomic] = ACTIONS(3121), - [anon_sym_assert] = ACTIONS(3121), - [anon_sym_defer] = ACTIONS(3121), - [anon_sym_goto] = ACTIONS(3121), - [anon_sym_break] = ACTIONS(3121), - [anon_sym_continue] = ACTIONS(3121), - [anon_sym_return] = ACTIONS(3121), - [anon_sym_DOLLARfor] = ACTIONS(3121), - [anon_sym_for] = ACTIONS(3121), - [anon_sym_POUND] = ACTIONS(3121), - [anon_sym_asm] = ACTIONS(3121), - [anon_sym_AT_LBRACK] = ACTIONS(3121), - [sym___double_quote] = ACTIONS(3121), - [sym___single_quote] = ACTIONS(3121), - [sym___c_double_quote] = ACTIONS(3121), - [sym___c_single_quote] = ACTIONS(3121), - [sym___r_double_quote] = ACTIONS(3121), - [sym___r_single_quote] = ACTIONS(3121), + [ts_builtin_sym_end] = ACTIONS(3096), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LF] = ACTIONS(3098), + [anon_sym_CR] = ACTIONS(3098), + [anon_sym_CR_LF] = ACTIONS(3098), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3098), + [anon_sym_as] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_const] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3098), + [anon_sym_EQ] = ACTIONS(3098), + [anon_sym___global] = ACTIONS(3098), + [anon_sym_type] = ACTIONS(3098), + [anon_sym_PIPE] = ACTIONS(3098), + [anon_sym_fn] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_DASH] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_PERCENT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(3096), + [anon_sym_struct] = ACTIONS(3098), + [anon_sym_union] = ACTIONS(3098), + [anon_sym_pub] = ACTIONS(3098), + [anon_sym_mut] = ACTIONS(3098), + [anon_sym_enum] = ACTIONS(3098), + [anon_sym_interface] = ACTIONS(3098), + [anon_sym_PLUS_PLUS] = ACTIONS(3098), + [anon_sym_DASH_DASH] = ACTIONS(3098), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_BANG] = ACTIONS(3098), + [anon_sym_go] = ACTIONS(3098), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(3098), + [anon_sym_LBRACK2] = ACTIONS(3098), + [anon_sym_TILDE] = ACTIONS(3098), + [anon_sym_CARET] = ACTIONS(3098), + [anon_sym_AMP] = ACTIONS(3098), + [anon_sym_LT_DASH] = ACTIONS(3098), + [anon_sym_LT_LT] = ACTIONS(3098), + [anon_sym_GT_GT] = ACTIONS(3098), + [anon_sym_GT_GT_GT] = ACTIONS(3098), + [anon_sym_AMP_CARET] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_or] = ACTIONS(3098), + [sym_none] = ACTIONS(3098), + [sym_true] = ACTIONS(3098), + [sym_false] = ACTIONS(3098), + [sym_nil] = ACTIONS(3098), + [anon_sym_QMARK_DOT] = ACTIONS(3098), + [anon_sym_POUND_LBRACK] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3098), + [anon_sym_DOLLARif] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3098), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_in] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_match] = ACTIONS(3098), + [anon_sym_select] = ACTIONS(3098), + [anon_sym_STAR_EQ] = ACTIONS(3098), + [anon_sym_SLASH_EQ] = ACTIONS(3098), + [anon_sym_PERCENT_EQ] = ACTIONS(3098), + [anon_sym_LT_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_GT_EQ] = ACTIONS(3098), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3098), + [anon_sym_AMP_EQ] = ACTIONS(3098), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3098), + [anon_sym_PLUS_EQ] = ACTIONS(3098), + [anon_sym_DASH_EQ] = ACTIONS(3098), + [anon_sym_PIPE_EQ] = ACTIONS(3098), + [anon_sym_CARET_EQ] = ACTIONS(3098), + [anon_sym_COLON_EQ] = ACTIONS(3098), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(3098), + [anon_sym_sql] = ACTIONS(3098), + [sym_int_literal] = ACTIONS(3098), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [anon_sym_AT] = ACTIONS(3098), + [anon_sym_shared] = ACTIONS(3098), + [anon_sym_map_LBRACK] = ACTIONS(3098), + [anon_sym_chan] = ACTIONS(3098), + [anon_sym_thread] = ACTIONS(3098), + [anon_sym_atomic] = ACTIONS(3098), + [anon_sym_assert] = ACTIONS(3098), + [anon_sym_defer] = ACTIONS(3098), + [anon_sym_goto] = ACTIONS(3098), + [anon_sym_break] = ACTIONS(3098), + [anon_sym_continue] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3098), + [anon_sym_DOLLARfor] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(3098), + [anon_sym_POUND] = ACTIONS(3098), + [anon_sym_asm] = ACTIONS(3098), + [anon_sym_AT_LBRACK] = ACTIONS(3098), + [sym___double_quote] = ACTIONS(3098), + [sym___single_quote] = ACTIONS(3098), + [sym___c_double_quote] = ACTIONS(3098), + [sym___c_single_quote] = ACTIONS(3098), + [sym___r_double_quote] = ACTIONS(3098), + [sym___r_single_quote] = ACTIONS(3098), }, [932] = { + [ts_builtin_sym_end] = ACTIONS(3100), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LF] = ACTIONS(3102), + [anon_sym_CR] = ACTIONS(3102), + [anon_sym_CR_LF] = ACTIONS(3102), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3102), + [anon_sym_as] = ACTIONS(3102), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_COMMA] = ACTIONS(3102), + [anon_sym_const] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(3102), + [anon_sym_EQ] = ACTIONS(3102), + [anon_sym___global] = ACTIONS(3102), + [anon_sym_type] = ACTIONS(3102), + [anon_sym_PIPE] = ACTIONS(3102), + [anon_sym_fn] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3102), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_SLASH] = ACTIONS(3102), + [anon_sym_PERCENT] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3102), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_EQ_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3102), + [anon_sym_LBRACK] = ACTIONS(3100), + [anon_sym_struct] = ACTIONS(3102), + [anon_sym_union] = ACTIONS(3102), + [anon_sym_pub] = ACTIONS(3102), + [anon_sym_mut] = ACTIONS(3102), + [anon_sym_enum] = ACTIONS(3102), + [anon_sym_interface] = ACTIONS(3102), + [anon_sym_PLUS_PLUS] = ACTIONS(3102), + [anon_sym_DASH_DASH] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3102), + [anon_sym_BANG] = ACTIONS(3102), + [anon_sym_go] = ACTIONS(3102), + [anon_sym_spawn] = ACTIONS(3102), + [anon_sym_json_DOTdecode] = ACTIONS(3102), + [anon_sym_LBRACK2] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3102), + [anon_sym_CARET] = ACTIONS(3102), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT_DASH] = ACTIONS(3102), + [anon_sym_LT_LT] = ACTIONS(3102), + [anon_sym_GT_GT] = ACTIONS(3102), + [anon_sym_GT_GT_GT] = ACTIONS(3102), + [anon_sym_AMP_CARET] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_or] = ACTIONS(3102), + [sym_none] = ACTIONS(3102), + [sym_true] = ACTIONS(3102), + [sym_false] = ACTIONS(3102), + [sym_nil] = ACTIONS(3102), + [anon_sym_QMARK_DOT] = ACTIONS(3102), + [anon_sym_POUND_LBRACK] = ACTIONS(3102), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_DOLLARif] = ACTIONS(3102), + [anon_sym_is] = ACTIONS(3102), + [anon_sym_BANGis] = ACTIONS(3102), + [anon_sym_in] = ACTIONS(3102), + [anon_sym_BANGin] = ACTIONS(3102), + [anon_sym_match] = ACTIONS(3102), + [anon_sym_select] = ACTIONS(3102), + [anon_sym_STAR_EQ] = ACTIONS(3102), + [anon_sym_SLASH_EQ] = ACTIONS(3102), + [anon_sym_PERCENT_EQ] = ACTIONS(3102), + [anon_sym_LT_LT_EQ] = ACTIONS(3102), + [anon_sym_GT_GT_EQ] = ACTIONS(3102), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3102), + [anon_sym_AMP_EQ] = ACTIONS(3102), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3102), + [anon_sym_PLUS_EQ] = ACTIONS(3102), + [anon_sym_DASH_EQ] = ACTIONS(3102), + [anon_sym_PIPE_EQ] = ACTIONS(3102), + [anon_sym_CARET_EQ] = ACTIONS(3102), + [anon_sym_COLON_EQ] = ACTIONS(3102), + [anon_sym_lock] = ACTIONS(3102), + [anon_sym_rlock] = ACTIONS(3102), + [anon_sym_unsafe] = ACTIONS(3102), + [anon_sym_sql] = ACTIONS(3102), + [sym_int_literal] = ACTIONS(3102), + [sym_float_literal] = ACTIONS(3102), + [sym_rune_literal] = ACTIONS(3102), + [anon_sym_AT] = ACTIONS(3102), + [anon_sym_shared] = ACTIONS(3102), + [anon_sym_map_LBRACK] = ACTIONS(3102), + [anon_sym_chan] = ACTIONS(3102), + [anon_sym_thread] = ACTIONS(3102), + [anon_sym_atomic] = ACTIONS(3102), + [anon_sym_assert] = ACTIONS(3102), + [anon_sym_defer] = ACTIONS(3102), + [anon_sym_goto] = ACTIONS(3102), + [anon_sym_break] = ACTIONS(3102), + [anon_sym_continue] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_DOLLARfor] = ACTIONS(3102), + [anon_sym_for] = ACTIONS(3102), + [anon_sym_POUND] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(3102), + [anon_sym_AT_LBRACK] = ACTIONS(3102), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3102), + [sym___c_double_quote] = ACTIONS(3102), + [sym___c_single_quote] = ACTIONS(3102), + [sym___r_double_quote] = ACTIONS(3102), + [sym___r_single_quote] = ACTIONS(3102), + }, + [933] = { + [ts_builtin_sym_end] = ACTIONS(3104), + [sym_identifier] = ACTIONS(3106), + [anon_sym_LF] = ACTIONS(3106), + [anon_sym_CR] = ACTIONS(3106), + [anon_sym_CR_LF] = ACTIONS(3106), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3106), + [anon_sym_as] = ACTIONS(3106), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_COMMA] = ACTIONS(3106), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3106), + [anon_sym_EQ] = ACTIONS(3106), + [anon_sym___global] = ACTIONS(3106), + [anon_sym_type] = ACTIONS(3106), + [anon_sym_PIPE] = ACTIONS(3106), + [anon_sym_fn] = ACTIONS(3106), + [anon_sym_PLUS] = ACTIONS(3106), + [anon_sym_DASH] = ACTIONS(3106), + [anon_sym_STAR] = ACTIONS(3106), + [anon_sym_SLASH] = ACTIONS(3106), + [anon_sym_PERCENT] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(3106), + [anon_sym_GT] = ACTIONS(3106), + [anon_sym_EQ_EQ] = ACTIONS(3106), + [anon_sym_BANG_EQ] = ACTIONS(3106), + [anon_sym_LT_EQ] = ACTIONS(3106), + [anon_sym_GT_EQ] = ACTIONS(3106), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_struct] = ACTIONS(3106), + [anon_sym_union] = ACTIONS(3106), + [anon_sym_pub] = ACTIONS(3106), + [anon_sym_mut] = ACTIONS(3106), + [anon_sym_enum] = ACTIONS(3106), + [anon_sym_interface] = ACTIONS(3106), + [anon_sym_PLUS_PLUS] = ACTIONS(3106), + [anon_sym_DASH_DASH] = ACTIONS(3106), + [anon_sym_QMARK] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(3106), + [anon_sym_go] = ACTIONS(3106), + [anon_sym_spawn] = ACTIONS(3106), + [anon_sym_json_DOTdecode] = ACTIONS(3106), + [anon_sym_LBRACK2] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3106), + [anon_sym_CARET] = ACTIONS(3106), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT_DASH] = ACTIONS(3106), + [anon_sym_LT_LT] = ACTIONS(3106), + [anon_sym_GT_GT] = ACTIONS(3106), + [anon_sym_GT_GT_GT] = ACTIONS(3106), + [anon_sym_AMP_CARET] = ACTIONS(3106), + [anon_sym_AMP_AMP] = ACTIONS(3106), + [anon_sym_PIPE_PIPE] = ACTIONS(3106), + [anon_sym_or] = ACTIONS(3106), + [sym_none] = ACTIONS(3106), + [sym_true] = ACTIONS(3106), + [sym_false] = ACTIONS(3106), + [sym_nil] = ACTIONS(3106), + [anon_sym_QMARK_DOT] = ACTIONS(3106), + [anon_sym_POUND_LBRACK] = ACTIONS(3106), + [anon_sym_if] = ACTIONS(3106), + [anon_sym_DOLLARif] = ACTIONS(3106), + [anon_sym_is] = ACTIONS(3106), + [anon_sym_BANGis] = ACTIONS(3106), + [anon_sym_in] = ACTIONS(3106), + [anon_sym_BANGin] = ACTIONS(3106), + [anon_sym_match] = ACTIONS(3106), + [anon_sym_select] = ACTIONS(3106), + [anon_sym_STAR_EQ] = ACTIONS(3106), + [anon_sym_SLASH_EQ] = ACTIONS(3106), + [anon_sym_PERCENT_EQ] = ACTIONS(3106), + [anon_sym_LT_LT_EQ] = ACTIONS(3106), + [anon_sym_GT_GT_EQ] = ACTIONS(3106), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3106), + [anon_sym_AMP_EQ] = ACTIONS(3106), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3106), + [anon_sym_PLUS_EQ] = ACTIONS(3106), + [anon_sym_DASH_EQ] = ACTIONS(3106), + [anon_sym_PIPE_EQ] = ACTIONS(3106), + [anon_sym_CARET_EQ] = ACTIONS(3106), + [anon_sym_COLON_EQ] = ACTIONS(3106), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(3106), + [anon_sym_sql] = ACTIONS(3106), + [sym_int_literal] = ACTIONS(3106), + [sym_float_literal] = ACTIONS(3106), + [sym_rune_literal] = ACTIONS(3106), + [anon_sym_AT] = ACTIONS(3106), + [anon_sym_shared] = ACTIONS(3106), + [anon_sym_map_LBRACK] = ACTIONS(3106), + [anon_sym_chan] = ACTIONS(3106), + [anon_sym_thread] = ACTIONS(3106), + [anon_sym_atomic] = ACTIONS(3106), + [anon_sym_assert] = ACTIONS(3106), + [anon_sym_defer] = ACTIONS(3106), + [anon_sym_goto] = ACTIONS(3106), + [anon_sym_break] = ACTIONS(3106), + [anon_sym_continue] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3106), + [anon_sym_DOLLARfor] = ACTIONS(3106), + [anon_sym_for] = ACTIONS(3106), + [anon_sym_POUND] = ACTIONS(3106), + [anon_sym_asm] = ACTIONS(3106), + [anon_sym_AT_LBRACK] = ACTIONS(3106), + [sym___double_quote] = ACTIONS(3106), + [sym___single_quote] = ACTIONS(3106), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3106), + [sym___r_double_quote] = ACTIONS(3106), + [sym___r_single_quote] = ACTIONS(3106), + }, + [934] = { + [ts_builtin_sym_end] = ACTIONS(3108), + [sym_identifier] = ACTIONS(3110), + [anon_sym_LF] = ACTIONS(3110), + [anon_sym_CR] = ACTIONS(3110), + [anon_sym_CR_LF] = ACTIONS(3110), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3110), + [anon_sym_as] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3110), + [anon_sym_COMMA] = ACTIONS(3110), + [anon_sym_const] = ACTIONS(3110), + [anon_sym_LPAREN] = ACTIONS(3110), + [anon_sym_EQ] = ACTIONS(3110), + [anon_sym___global] = ACTIONS(3110), + [anon_sym_type] = ACTIONS(3110), + [anon_sym_PIPE] = ACTIONS(3110), + [anon_sym_fn] = ACTIONS(3110), + [anon_sym_PLUS] = ACTIONS(3110), + [anon_sym_DASH] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_SLASH] = ACTIONS(3110), + [anon_sym_PERCENT] = ACTIONS(3110), + [anon_sym_LT] = ACTIONS(3110), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_LT_EQ] = ACTIONS(3110), + [anon_sym_GT_EQ] = ACTIONS(3110), + [anon_sym_LBRACK] = ACTIONS(3108), + [anon_sym_struct] = ACTIONS(3110), + [anon_sym_union] = ACTIONS(3110), + [anon_sym_pub] = ACTIONS(3110), + [anon_sym_mut] = ACTIONS(3110), + [anon_sym_enum] = ACTIONS(3110), + [anon_sym_interface] = ACTIONS(3110), + [anon_sym_PLUS_PLUS] = ACTIONS(3110), + [anon_sym_DASH_DASH] = ACTIONS(3110), + [anon_sym_QMARK] = ACTIONS(3110), + [anon_sym_BANG] = ACTIONS(3110), + [anon_sym_go] = ACTIONS(3110), + [anon_sym_spawn] = ACTIONS(3110), + [anon_sym_json_DOTdecode] = ACTIONS(3110), + [anon_sym_LBRACK2] = ACTIONS(3110), + [anon_sym_TILDE] = ACTIONS(3110), + [anon_sym_CARET] = ACTIONS(3110), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_LT_DASH] = ACTIONS(3110), + [anon_sym_LT_LT] = ACTIONS(3110), + [anon_sym_GT_GT] = ACTIONS(3110), + [anon_sym_GT_GT_GT] = ACTIONS(3110), + [anon_sym_AMP_CARET] = ACTIONS(3110), + [anon_sym_AMP_AMP] = ACTIONS(3110), + [anon_sym_PIPE_PIPE] = ACTIONS(3110), + [anon_sym_or] = ACTIONS(3110), + [sym_none] = ACTIONS(3110), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [sym_nil] = ACTIONS(3110), + [anon_sym_QMARK_DOT] = ACTIONS(3110), + [anon_sym_POUND_LBRACK] = ACTIONS(3110), + [anon_sym_if] = ACTIONS(3110), + [anon_sym_DOLLARif] = ACTIONS(3110), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3110), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_BANGin] = ACTIONS(3110), + [anon_sym_match] = ACTIONS(3110), + [anon_sym_select] = ACTIONS(3110), + [anon_sym_STAR_EQ] = ACTIONS(3110), + [anon_sym_SLASH_EQ] = ACTIONS(3110), + [anon_sym_PERCENT_EQ] = ACTIONS(3110), + [anon_sym_LT_LT_EQ] = ACTIONS(3110), + [anon_sym_GT_GT_EQ] = ACTIONS(3110), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3110), + [anon_sym_AMP_EQ] = ACTIONS(3110), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3110), + [anon_sym_PLUS_EQ] = ACTIONS(3110), + [anon_sym_DASH_EQ] = ACTIONS(3110), + [anon_sym_PIPE_EQ] = ACTIONS(3110), + [anon_sym_CARET_EQ] = ACTIONS(3110), + [anon_sym_COLON_EQ] = ACTIONS(3110), + [anon_sym_lock] = ACTIONS(3110), + [anon_sym_rlock] = ACTIONS(3110), + [anon_sym_unsafe] = ACTIONS(3110), + [anon_sym_sql] = ACTIONS(3110), + [sym_int_literal] = ACTIONS(3110), + [sym_float_literal] = ACTIONS(3110), + [sym_rune_literal] = ACTIONS(3110), + [anon_sym_AT] = ACTIONS(3110), + [anon_sym_shared] = ACTIONS(3110), + [anon_sym_map_LBRACK] = ACTIONS(3110), + [anon_sym_chan] = ACTIONS(3110), + [anon_sym_thread] = ACTIONS(3110), + [anon_sym_atomic] = ACTIONS(3110), + [anon_sym_assert] = ACTIONS(3110), + [anon_sym_defer] = ACTIONS(3110), + [anon_sym_goto] = ACTIONS(3110), + [anon_sym_break] = ACTIONS(3110), + [anon_sym_continue] = ACTIONS(3110), + [anon_sym_return] = ACTIONS(3110), + [anon_sym_DOLLARfor] = ACTIONS(3110), + [anon_sym_for] = ACTIONS(3110), + [anon_sym_POUND] = ACTIONS(3110), + [anon_sym_asm] = ACTIONS(3110), + [anon_sym_AT_LBRACK] = ACTIONS(3110), + [sym___double_quote] = ACTIONS(3110), + [sym___single_quote] = ACTIONS(3110), + [sym___c_double_quote] = ACTIONS(3110), + [sym___c_single_quote] = ACTIONS(3110), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3110), + }, + [935] = { + [ts_builtin_sym_end] = ACTIONS(3112), + [sym_identifier] = ACTIONS(3114), + [anon_sym_LF] = ACTIONS(3114), + [anon_sym_CR] = ACTIONS(3114), + [anon_sym_CR_LF] = ACTIONS(3114), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3114), + [anon_sym_as] = ACTIONS(3114), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_COMMA] = ACTIONS(3114), + [anon_sym_const] = ACTIONS(3114), + [anon_sym_LPAREN] = ACTIONS(3114), + [anon_sym_EQ] = ACTIONS(3114), + [anon_sym___global] = ACTIONS(3114), + [anon_sym_type] = ACTIONS(3114), + [anon_sym_PIPE] = ACTIONS(3114), + [anon_sym_fn] = ACTIONS(3114), + [anon_sym_PLUS] = ACTIONS(3114), + [anon_sym_DASH] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(3114), + [anon_sym_SLASH] = ACTIONS(3114), + [anon_sym_PERCENT] = ACTIONS(3114), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_GT] = ACTIONS(3114), + [anon_sym_EQ_EQ] = ACTIONS(3114), + [anon_sym_BANG_EQ] = ACTIONS(3114), + [anon_sym_LT_EQ] = ACTIONS(3114), + [anon_sym_GT_EQ] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(3112), + [anon_sym_struct] = ACTIONS(3114), + [anon_sym_union] = ACTIONS(3114), + [anon_sym_pub] = ACTIONS(3114), + [anon_sym_mut] = ACTIONS(3114), + [anon_sym_enum] = ACTIONS(3114), + [anon_sym_interface] = ACTIONS(3114), + [anon_sym_PLUS_PLUS] = ACTIONS(3114), + [anon_sym_DASH_DASH] = ACTIONS(3114), + [anon_sym_QMARK] = ACTIONS(3114), + [anon_sym_BANG] = ACTIONS(3114), + [anon_sym_go] = ACTIONS(3114), + [anon_sym_spawn] = ACTIONS(3114), + [anon_sym_json_DOTdecode] = ACTIONS(3114), + [anon_sym_LBRACK2] = ACTIONS(3114), + [anon_sym_TILDE] = ACTIONS(3114), + [anon_sym_CARET] = ACTIONS(3114), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_LT_DASH] = ACTIONS(3114), + [anon_sym_LT_LT] = ACTIONS(3114), + [anon_sym_GT_GT] = ACTIONS(3114), + [anon_sym_GT_GT_GT] = ACTIONS(3114), + [anon_sym_AMP_CARET] = ACTIONS(3114), + [anon_sym_AMP_AMP] = ACTIONS(3114), + [anon_sym_PIPE_PIPE] = ACTIONS(3114), + [anon_sym_or] = ACTIONS(3114), + [sym_none] = ACTIONS(3114), + [sym_true] = ACTIONS(3114), + [sym_false] = ACTIONS(3114), + [sym_nil] = ACTIONS(3114), + [anon_sym_QMARK_DOT] = ACTIONS(3114), + [anon_sym_POUND_LBRACK] = ACTIONS(3114), + [anon_sym_if] = ACTIONS(3114), + [anon_sym_DOLLARif] = ACTIONS(3114), + [anon_sym_is] = ACTIONS(3114), + [anon_sym_BANGis] = ACTIONS(3114), + [anon_sym_in] = ACTIONS(3114), + [anon_sym_BANGin] = ACTIONS(3114), + [anon_sym_match] = ACTIONS(3114), + [anon_sym_select] = ACTIONS(3114), + [anon_sym_STAR_EQ] = ACTIONS(3114), + [anon_sym_SLASH_EQ] = ACTIONS(3114), + [anon_sym_PERCENT_EQ] = ACTIONS(3114), + [anon_sym_LT_LT_EQ] = ACTIONS(3114), + [anon_sym_GT_GT_EQ] = ACTIONS(3114), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3114), + [anon_sym_AMP_EQ] = ACTIONS(3114), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3114), + [anon_sym_PLUS_EQ] = ACTIONS(3114), + [anon_sym_DASH_EQ] = ACTIONS(3114), + [anon_sym_PIPE_EQ] = ACTIONS(3114), + [anon_sym_CARET_EQ] = ACTIONS(3114), + [anon_sym_COLON_EQ] = ACTIONS(3114), + [anon_sym_lock] = ACTIONS(3114), + [anon_sym_rlock] = ACTIONS(3114), + [anon_sym_unsafe] = ACTIONS(3114), + [anon_sym_sql] = ACTIONS(3114), + [sym_int_literal] = ACTIONS(3114), + [sym_float_literal] = ACTIONS(3114), + [sym_rune_literal] = ACTIONS(3114), + [anon_sym_AT] = ACTIONS(3114), + [anon_sym_shared] = ACTIONS(3114), + [anon_sym_map_LBRACK] = ACTIONS(3114), + [anon_sym_chan] = ACTIONS(3114), + [anon_sym_thread] = ACTIONS(3114), + [anon_sym_atomic] = ACTIONS(3114), + [anon_sym_assert] = ACTIONS(3114), + [anon_sym_defer] = ACTIONS(3114), + [anon_sym_goto] = ACTIONS(3114), + [anon_sym_break] = ACTIONS(3114), + [anon_sym_continue] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3114), + [anon_sym_DOLLARfor] = ACTIONS(3114), + [anon_sym_for] = ACTIONS(3114), + [anon_sym_POUND] = ACTIONS(3114), + [anon_sym_asm] = ACTIONS(3114), + [anon_sym_AT_LBRACK] = ACTIONS(3114), + [sym___double_quote] = ACTIONS(3114), + [sym___single_quote] = ACTIONS(3114), + [sym___c_double_quote] = ACTIONS(3114), + [sym___c_single_quote] = ACTIONS(3114), + [sym___r_double_quote] = ACTIONS(3114), + [sym___r_single_quote] = ACTIONS(3114), + }, + [936] = { + [ts_builtin_sym_end] = ACTIONS(3116), + [sym_identifier] = ACTIONS(3118), + [anon_sym_LF] = ACTIONS(3118), + [anon_sym_CR] = ACTIONS(3118), + [anon_sym_CR_LF] = ACTIONS(3118), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3120), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_COMMA] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym___global] = ACTIONS(3118), + [anon_sym_type] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_fn] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), + [anon_sym_pub] = ACTIONS(3118), + [anon_sym_mut] = ACTIONS(3118), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_interface] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3118), + [anon_sym_DASH_DASH] = ACTIONS(3118), + [anon_sym_QMARK] = ACTIONS(3118), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_go] = ACTIONS(3118), + [anon_sym_spawn] = ACTIONS(3118), + [anon_sym_json_DOTdecode] = ACTIONS(3118), + [anon_sym_LBRACK2] = ACTIONS(3118), + [anon_sym_TILDE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_LT_DASH] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym_GT_GT_GT] = ACTIONS(3118), + [anon_sym_AMP_CARET] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3118), + [anon_sym_or] = ACTIONS(3118), + [sym_none] = ACTIONS(3118), + [sym_true] = ACTIONS(3118), + [sym_false] = ACTIONS(3118), + [sym_nil] = ACTIONS(3118), + [anon_sym_QMARK_DOT] = ACTIONS(3118), + [anon_sym_POUND_LBRACK] = ACTIONS(3118), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_DOLLARif] = ACTIONS(3118), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3118), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_BANGin] = ACTIONS(3118), + [anon_sym_match] = ACTIONS(3118), + [anon_sym_select] = ACTIONS(3118), + [anon_sym_STAR_EQ] = ACTIONS(3118), + [anon_sym_SLASH_EQ] = ACTIONS(3118), + [anon_sym_PERCENT_EQ] = ACTIONS(3118), + [anon_sym_LT_LT_EQ] = ACTIONS(3118), + [anon_sym_GT_GT_EQ] = ACTIONS(3118), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3118), + [anon_sym_AMP_EQ] = ACTIONS(3118), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3118), + [anon_sym_PLUS_EQ] = ACTIONS(3118), + [anon_sym_DASH_EQ] = ACTIONS(3118), + [anon_sym_PIPE_EQ] = ACTIONS(3118), + [anon_sym_CARET_EQ] = ACTIONS(3118), + [anon_sym_COLON_EQ] = ACTIONS(3118), + [anon_sym_lock] = ACTIONS(3118), + [anon_sym_rlock] = ACTIONS(3118), + [anon_sym_unsafe] = ACTIONS(3118), + [anon_sym_sql] = ACTIONS(3118), + [sym_int_literal] = ACTIONS(3118), + [sym_float_literal] = ACTIONS(3118), + [sym_rune_literal] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3118), + [anon_sym_shared] = ACTIONS(3118), + [anon_sym_map_LBRACK] = ACTIONS(3118), + [anon_sym_chan] = ACTIONS(3118), + [anon_sym_thread] = ACTIONS(3118), + [anon_sym_atomic] = ACTIONS(3118), + [anon_sym_assert] = ACTIONS(3118), + [anon_sym_defer] = ACTIONS(3118), + [anon_sym_goto] = ACTIONS(3118), + [anon_sym_break] = ACTIONS(3118), + [anon_sym_continue] = ACTIONS(3118), + [anon_sym_return] = ACTIONS(3118), + [anon_sym_DOLLARfor] = ACTIONS(3118), + [anon_sym_for] = ACTIONS(3118), + [anon_sym_POUND] = ACTIONS(3118), + [anon_sym_asm] = ACTIONS(3118), + [anon_sym_AT_LBRACK] = ACTIONS(3118), + [sym___double_quote] = ACTIONS(3118), + [sym___single_quote] = ACTIONS(3118), + [sym___c_double_quote] = ACTIONS(3118), + [sym___c_single_quote] = ACTIONS(3118), + [sym___r_double_quote] = ACTIONS(3118), + [sym___r_single_quote] = ACTIONS(3118), + }, + [937] = { [ts_builtin_sym_end] = ACTIONS(3123), [sym_identifier] = ACTIONS(3125), [anon_sym_LF] = ACTIONS(3125), [anon_sym_CR] = ACTIONS(3125), [anon_sym_CR_LF] = ACTIONS(3125), - [sym_comment] = ACTIONS(487), + [sym_comment] = ACTIONS(493), [anon_sym_DOT] = ACTIONS(3125), [anon_sym_as] = ACTIONS(3125), [anon_sym_LBRACE] = ACTIONS(3125), @@ -133378,352 +134117,352 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3125), [sym___r_single_quote] = ACTIONS(3125), }, - [933] = { - [ts_builtin_sym_end] = ACTIONS(2976), - [sym_identifier] = ACTIONS(2973), - [anon_sym_LF] = ACTIONS(2973), - [anon_sym_CR] = ACTIONS(2973), - [anon_sym_CR_LF] = ACTIONS(2973), - [sym_comment] = ACTIONS(487), - [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_PIPE] = 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(2976), - [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_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_AT] = 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), - [sym___double_quote] = ACTIONS(2973), - [sym___single_quote] = ACTIONS(2973), - [sym___c_double_quote] = ACTIONS(2973), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2973), - [sym___r_single_quote] = ACTIONS(2973), + [938] = { + [ts_builtin_sym_end] = ACTIONS(2987), + [sym_identifier] = ACTIONS(2984), + [anon_sym_LF] = ACTIONS(2984), + [anon_sym_CR] = ACTIONS(2984), + [anon_sym_CR_LF] = ACTIONS(2984), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2984), + [anon_sym_as] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_COMMA] = ACTIONS(2984), + [anon_sym_const] = ACTIONS(2984), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_EQ] = ACTIONS(2984), + [anon_sym___global] = ACTIONS(2984), + [anon_sym_type] = ACTIONS(2984), + [anon_sym_PIPE] = ACTIONS(2984), + [anon_sym_fn] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2984), + [anon_sym_DASH] = ACTIONS(2984), + [anon_sym_STAR] = ACTIONS(2984), + [anon_sym_SLASH] = ACTIONS(2984), + [anon_sym_PERCENT] = ACTIONS(2984), + [anon_sym_LT] = ACTIONS(2984), + [anon_sym_GT] = ACTIONS(2984), + [anon_sym_EQ_EQ] = ACTIONS(2984), + [anon_sym_BANG_EQ] = ACTIONS(2984), + [anon_sym_LT_EQ] = ACTIONS(2984), + [anon_sym_GT_EQ] = ACTIONS(2984), + [anon_sym_LBRACK] = ACTIONS(2987), + [anon_sym_struct] = ACTIONS(2984), + [anon_sym_union] = ACTIONS(2984), + [anon_sym_pub] = ACTIONS(2984), + [anon_sym_mut] = ACTIONS(2984), + [anon_sym_enum] = ACTIONS(2984), + [anon_sym_interface] = ACTIONS(2984), + [anon_sym_PLUS_PLUS] = ACTIONS(2984), + [anon_sym_DASH_DASH] = ACTIONS(2984), + [anon_sym_QMARK] = ACTIONS(2984), + [anon_sym_BANG] = ACTIONS(2984), + [anon_sym_go] = ACTIONS(2984), + [anon_sym_spawn] = ACTIONS(2984), + [anon_sym_json_DOTdecode] = ACTIONS(2984), + [anon_sym_LBRACK2] = ACTIONS(2984), + [anon_sym_TILDE] = ACTIONS(2984), + [anon_sym_CARET] = ACTIONS(2984), + [anon_sym_AMP] = ACTIONS(2984), + [anon_sym_LT_DASH] = ACTIONS(2984), + [anon_sym_LT_LT] = ACTIONS(2984), + [anon_sym_GT_GT] = ACTIONS(2984), + [anon_sym_GT_GT_GT] = ACTIONS(2984), + [anon_sym_AMP_CARET] = ACTIONS(2984), + [anon_sym_AMP_AMP] = ACTIONS(2984), + [anon_sym_PIPE_PIPE] = ACTIONS(2984), + [anon_sym_or] = ACTIONS(2984), + [sym_none] = ACTIONS(2984), + [sym_true] = ACTIONS(2984), + [sym_false] = ACTIONS(2984), + [sym_nil] = ACTIONS(2984), + [anon_sym_QMARK_DOT] = ACTIONS(2984), + [anon_sym_POUND_LBRACK] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_DOLLARif] = ACTIONS(2984), + [anon_sym_is] = ACTIONS(2984), + [anon_sym_BANGis] = ACTIONS(2984), + [anon_sym_in] = ACTIONS(2984), + [anon_sym_BANGin] = ACTIONS(2984), + [anon_sym_match] = ACTIONS(2984), + [anon_sym_select] = ACTIONS(2984), + [anon_sym_STAR_EQ] = ACTIONS(2984), + [anon_sym_SLASH_EQ] = ACTIONS(2984), + [anon_sym_PERCENT_EQ] = ACTIONS(2984), + [anon_sym_LT_LT_EQ] = ACTIONS(2984), + [anon_sym_GT_GT_EQ] = ACTIONS(2984), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2984), + [anon_sym_AMP_EQ] = ACTIONS(2984), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2984), + [anon_sym_PLUS_EQ] = ACTIONS(2984), + [anon_sym_DASH_EQ] = ACTIONS(2984), + [anon_sym_PIPE_EQ] = ACTIONS(2984), + [anon_sym_CARET_EQ] = ACTIONS(2984), + [anon_sym_COLON_EQ] = ACTIONS(2984), + [anon_sym_lock] = ACTIONS(2984), + [anon_sym_rlock] = ACTIONS(2984), + [anon_sym_unsafe] = ACTIONS(2984), + [anon_sym_sql] = ACTIONS(2984), + [sym_int_literal] = ACTIONS(2984), + [sym_float_literal] = ACTIONS(2984), + [sym_rune_literal] = ACTIONS(2984), + [anon_sym_AT] = ACTIONS(2984), + [anon_sym_shared] = ACTIONS(2984), + [anon_sym_map_LBRACK] = ACTIONS(2984), + [anon_sym_chan] = ACTIONS(2984), + [anon_sym_thread] = ACTIONS(2984), + [anon_sym_atomic] = ACTIONS(2984), + [anon_sym_assert] = ACTIONS(2984), + [anon_sym_defer] = ACTIONS(2984), + [anon_sym_goto] = ACTIONS(2984), + [anon_sym_break] = ACTIONS(2984), + [anon_sym_continue] = ACTIONS(2984), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_DOLLARfor] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2984), + [anon_sym_POUND] = ACTIONS(2984), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym_AT_LBRACK] = ACTIONS(2984), + [sym___double_quote] = ACTIONS(2984), + [sym___single_quote] = ACTIONS(2984), + [sym___c_double_quote] = ACTIONS(2984), + [sym___c_single_quote] = ACTIONS(2984), + [sym___r_double_quote] = ACTIONS(2984), + [sym___r_single_quote] = ACTIONS(2984), }, - [934] = { - [ts_builtin_sym_end] = ACTIONS(2954), - [sym_identifier] = ACTIONS(2951), - [anon_sym_LF] = ACTIONS(2951), - [anon_sym_CR] = ACTIONS(2951), - [anon_sym_CR_LF] = ACTIONS(2951), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2951), - [anon_sym_as] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_COMMA] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_EQ] = ACTIONS(2951), - [anon_sym___global] = ACTIONS(2951), - [anon_sym_type] = ACTIONS(2951), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_fn] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_PERCENT] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_GT] = ACTIONS(2951), - [anon_sym_EQ_EQ] = ACTIONS(2951), - [anon_sym_BANG_EQ] = ACTIONS(2951), - [anon_sym_LT_EQ] = ACTIONS(2951), - [anon_sym_GT_EQ] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_struct] = ACTIONS(2951), - [anon_sym_union] = ACTIONS(2951), - [anon_sym_pub] = ACTIONS(2951), - [anon_sym_mut] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), - [anon_sym_interface] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_QMARK] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_go] = ACTIONS(2951), - [anon_sym_spawn] = ACTIONS(2951), - [anon_sym_json_DOTdecode] = ACTIONS(2951), - [anon_sym_LBRACK2] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2951), - [anon_sym_CARET] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_LT_DASH] = ACTIONS(2951), - [anon_sym_LT_LT] = ACTIONS(2951), - [anon_sym_GT_GT] = ACTIONS(2951), - [anon_sym_GT_GT_GT] = ACTIONS(2951), - [anon_sym_AMP_CARET] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2951), - [anon_sym_PIPE_PIPE] = ACTIONS(2951), - [anon_sym_or] = ACTIONS(2951), - [sym_none] = ACTIONS(2951), - [sym_true] = ACTIONS(2951), - [sym_false] = ACTIONS(2951), - [sym_nil] = ACTIONS(2951), - [anon_sym_QMARK_DOT] = ACTIONS(2951), - [anon_sym_POUND_LBRACK] = ACTIONS(2951), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_is] = ACTIONS(2951), - [anon_sym_BANGis] = ACTIONS(2951), - [anon_sym_in] = ACTIONS(2951), - [anon_sym_BANGin] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2951), - [anon_sym_select] = ACTIONS(2951), - [anon_sym_STAR_EQ] = ACTIONS(2951), - [anon_sym_SLASH_EQ] = ACTIONS(2951), - [anon_sym_PERCENT_EQ] = ACTIONS(2951), - [anon_sym_LT_LT_EQ] = ACTIONS(2951), - [anon_sym_GT_GT_EQ] = ACTIONS(2951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2951), - [anon_sym_AMP_EQ] = ACTIONS(2951), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2951), - [anon_sym_PLUS_EQ] = ACTIONS(2951), - [anon_sym_DASH_EQ] = ACTIONS(2951), - [anon_sym_PIPE_EQ] = ACTIONS(2951), - [anon_sym_CARET_EQ] = ACTIONS(2951), - [anon_sym_COLON_EQ] = ACTIONS(2951), - [anon_sym_lock] = ACTIONS(2951), - [anon_sym_rlock] = ACTIONS(2951), - [anon_sym_unsafe] = ACTIONS(2951), - [anon_sym_sql] = ACTIONS(2951), - [sym_int_literal] = ACTIONS(2951), - [sym_float_literal] = ACTIONS(2951), - [sym_rune_literal] = ACTIONS(2951), - [anon_sym_AT] = ACTIONS(2951), - [anon_sym_shared] = ACTIONS(2951), - [anon_sym_map_LBRACK] = ACTIONS(2951), - [anon_sym_chan] = ACTIONS(2951), - [anon_sym_thread] = ACTIONS(2951), - [anon_sym_atomic] = ACTIONS(2951), - [anon_sym_assert] = ACTIONS(2951), - [anon_sym_defer] = ACTIONS(2951), - [anon_sym_goto] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_DOLLARfor] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_POUND] = ACTIONS(2951), - [anon_sym_asm] = ACTIONS(2951), - [anon_sym_AT_LBRACK] = ACTIONS(2951), - [sym___double_quote] = ACTIONS(2951), - [sym___single_quote] = ACTIONS(2951), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2951), - [sym___r_double_quote] = ACTIONS(2951), - [sym___r_single_quote] = ACTIONS(2951), + [939] = { + [ts_builtin_sym_end] = ACTIONS(2738), + [sym_identifier] = ACTIONS(2740), + [anon_sym_LF] = ACTIONS(2740), + [anon_sym_CR] = ACTIONS(2740), + [anon_sym_CR_LF] = ACTIONS(2740), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2740), + [anon_sym_as] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_COMMA] = ACTIONS(2740), + [anon_sym_const] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(2740), + [anon_sym_EQ] = ACTIONS(2740), + [anon_sym___global] = ACTIONS(2740), + [anon_sym_type] = ACTIONS(2740), + [anon_sym_PIPE] = ACTIONS(2740), + [anon_sym_fn] = ACTIONS(2740), + [anon_sym_PLUS] = ACTIONS(2740), + [anon_sym_DASH] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_SLASH] = ACTIONS(2740), + [anon_sym_PERCENT] = ACTIONS(2740), + [anon_sym_LT] = ACTIONS(2740), + [anon_sym_GT] = ACTIONS(2740), + [anon_sym_EQ_EQ] = ACTIONS(2740), + [anon_sym_BANG_EQ] = ACTIONS(2740), + [anon_sym_LT_EQ] = ACTIONS(2740), + [anon_sym_GT_EQ] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(2745), + [anon_sym_struct] = ACTIONS(2740), + [anon_sym_union] = ACTIONS(2740), + [anon_sym_pub] = ACTIONS(2740), + [anon_sym_mut] = ACTIONS(2740), + [anon_sym_enum] = ACTIONS(2740), + [anon_sym_interface] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2740), + [anon_sym_DASH_DASH] = ACTIONS(2740), + [anon_sym_QMARK] = ACTIONS(2740), + [anon_sym_BANG] = ACTIONS(2740), + [anon_sym_go] = ACTIONS(2740), + [anon_sym_spawn] = ACTIONS(2740), + [anon_sym_json_DOTdecode] = ACTIONS(2740), + [anon_sym_LBRACK2] = ACTIONS(2740), + [anon_sym_TILDE] = ACTIONS(2740), + [anon_sym_CARET] = ACTIONS(2740), + [anon_sym_AMP] = ACTIONS(2740), + [anon_sym_LT_DASH] = ACTIONS(2740), + [anon_sym_LT_LT] = ACTIONS(2740), + [anon_sym_GT_GT] = ACTIONS(2740), + [anon_sym_GT_GT_GT] = ACTIONS(2740), + [anon_sym_AMP_CARET] = ACTIONS(2740), + [anon_sym_AMP_AMP] = ACTIONS(2740), + [anon_sym_PIPE_PIPE] = ACTIONS(2740), + [anon_sym_or] = ACTIONS(2740), + [sym_none] = ACTIONS(2740), + [sym_true] = ACTIONS(2740), + [sym_false] = ACTIONS(2740), + [sym_nil] = ACTIONS(2740), + [anon_sym_QMARK_DOT] = ACTIONS(2740), + [anon_sym_POUND_LBRACK] = ACTIONS(2740), + [anon_sym_if] = ACTIONS(2740), + [anon_sym_DOLLARif] = ACTIONS(2740), + [anon_sym_is] = ACTIONS(2740), + [anon_sym_BANGis] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2740), + [anon_sym_BANGin] = ACTIONS(2740), + [anon_sym_match] = ACTIONS(2740), + [anon_sym_select] = ACTIONS(2740), + [anon_sym_STAR_EQ] = ACTIONS(2740), + [anon_sym_SLASH_EQ] = ACTIONS(2740), + [anon_sym_PERCENT_EQ] = ACTIONS(2740), + [anon_sym_LT_LT_EQ] = ACTIONS(2740), + [anon_sym_GT_GT_EQ] = ACTIONS(2740), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2740), + [anon_sym_AMP_EQ] = ACTIONS(2740), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2740), + [anon_sym_PLUS_EQ] = ACTIONS(2740), + [anon_sym_DASH_EQ] = ACTIONS(2740), + [anon_sym_PIPE_EQ] = ACTIONS(2740), + [anon_sym_CARET_EQ] = ACTIONS(2740), + [anon_sym_COLON_EQ] = ACTIONS(2740), + [anon_sym_lock] = ACTIONS(2740), + [anon_sym_rlock] = ACTIONS(2740), + [anon_sym_unsafe] = ACTIONS(2740), + [anon_sym_sql] = ACTIONS(2740), + [sym_int_literal] = ACTIONS(2740), + [sym_float_literal] = ACTIONS(2740), + [sym_rune_literal] = ACTIONS(2740), + [anon_sym_AT] = ACTIONS(2740), + [anon_sym_shared] = ACTIONS(2740), + [anon_sym_map_LBRACK] = ACTIONS(2740), + [anon_sym_chan] = ACTIONS(2740), + [anon_sym_thread] = ACTIONS(2740), + [anon_sym_atomic] = ACTIONS(2740), + [anon_sym_assert] = ACTIONS(2740), + [anon_sym_defer] = ACTIONS(2740), + [anon_sym_goto] = ACTIONS(2740), + [anon_sym_break] = ACTIONS(2740), + [anon_sym_continue] = ACTIONS(2740), + [anon_sym_return] = ACTIONS(2740), + [anon_sym_DOLLARfor] = ACTIONS(2740), + [anon_sym_for] = ACTIONS(2740), + [anon_sym_POUND] = ACTIONS(2740), + [anon_sym_asm] = ACTIONS(2740), + [anon_sym_AT_LBRACK] = ACTIONS(2740), + [sym___double_quote] = ACTIONS(2740), + [sym___single_quote] = ACTIONS(2740), + [sym___c_double_quote] = ACTIONS(2740), + [sym___c_single_quote] = ACTIONS(2740), + [sym___r_double_quote] = ACTIONS(2740), + [sym___r_single_quote] = ACTIONS(2740), }, - [935] = { - [ts_builtin_sym_end] = ACTIONS(2770), - [sym_identifier] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2772), - [anon_sym_CR] = ACTIONS(2772), - [anon_sym_CR_LF] = ACTIONS(2772), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_as] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_COMMA] = ACTIONS(2772), - [anon_sym_const] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym_EQ] = ACTIONS(2772), - [anon_sym___global] = ACTIONS(2772), - [anon_sym_type] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2772), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_PERCENT] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2772), - [anon_sym_BANG_EQ] = ACTIONS(2772), - [anon_sym_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_EQ] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_union] = ACTIONS(2772), - [anon_sym_pub] = ACTIONS(2772), - [anon_sym_mut] = ACTIONS(2772), - [anon_sym_enum] = ACTIONS(2772), - [anon_sym_interface] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [anon_sym_QMARK] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2772), - [anon_sym_json_DOTdecode] = ACTIONS(2772), - [anon_sym_LBRACK2] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_LT_DASH] = ACTIONS(2772), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_GT_GT_GT] = ACTIONS(2772), - [anon_sym_AMP_CARET] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_PIPE_PIPE] = ACTIONS(2772), - [anon_sym_or] = ACTIONS(2772), - [sym_none] = ACTIONS(2772), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_nil] = ACTIONS(2772), - [anon_sym_QMARK_DOT] = ACTIONS(2772), - [anon_sym_POUND_LBRACK] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_DOLLARif] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_BANGis] = ACTIONS(2772), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_BANGin] = ACTIONS(2772), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_select] = ACTIONS(2772), - [anon_sym_STAR_EQ] = ACTIONS(2772), - [anon_sym_SLASH_EQ] = ACTIONS(2772), - [anon_sym_PERCENT_EQ] = ACTIONS(2772), - [anon_sym_LT_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_GT_EQ] = ACTIONS(2772), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2772), - [anon_sym_AMP_EQ] = ACTIONS(2772), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2772), - [anon_sym_PLUS_EQ] = ACTIONS(2772), - [anon_sym_DASH_EQ] = ACTIONS(2772), - [anon_sym_PIPE_EQ] = ACTIONS(2772), - [anon_sym_CARET_EQ] = ACTIONS(2772), - [anon_sym_COLON_EQ] = ACTIONS(2772), - [anon_sym_lock] = ACTIONS(2772), - [anon_sym_rlock] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_sql] = ACTIONS(2772), - [sym_int_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2772), - [sym_rune_literal] = ACTIONS(2772), - [anon_sym_AT] = ACTIONS(2772), - [anon_sym_shared] = ACTIONS(2772), - [anon_sym_map_LBRACK] = ACTIONS(2772), - [anon_sym_chan] = ACTIONS(2772), - [anon_sym_thread] = ACTIONS(2772), - [anon_sym_atomic] = ACTIONS(2772), - [anon_sym_assert] = ACTIONS(2772), - [anon_sym_defer] = ACTIONS(2772), - [anon_sym_goto] = ACTIONS(2772), - [anon_sym_break] = ACTIONS(2772), - [anon_sym_continue] = ACTIONS(2772), - [anon_sym_return] = ACTIONS(2772), - [anon_sym_DOLLARfor] = ACTIONS(2772), - [anon_sym_for] = ACTIONS(2772), - [anon_sym_POUND] = ACTIONS(2772), - [anon_sym_asm] = ACTIONS(2772), - [anon_sym_AT_LBRACK] = ACTIONS(2772), - [sym___double_quote] = ACTIONS(2772), - [sym___single_quote] = ACTIONS(2772), - [sym___c_double_quote] = ACTIONS(2772), - [sym___c_single_quote] = ACTIONS(2772), - [sym___r_double_quote] = ACTIONS(2772), - [sym___r_single_quote] = ACTIONS(2772), + [940] = { + [ts_builtin_sym_end] = ACTIONS(2762), + [sym_identifier] = ACTIONS(2764), + [anon_sym_LF] = ACTIONS(2764), + [anon_sym_CR] = ACTIONS(2764), + [anon_sym_CR_LF] = ACTIONS(2764), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2764), + [anon_sym_as] = ACTIONS(2764), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_COMMA] = ACTIONS(2764), + [anon_sym_const] = ACTIONS(2764), + [anon_sym_LPAREN] = ACTIONS(2764), + [anon_sym_EQ] = ACTIONS(2764), + [anon_sym___global] = ACTIONS(2764), + [anon_sym_type] = ACTIONS(2764), + [anon_sym_PIPE] = ACTIONS(2764), + [anon_sym_fn] = ACTIONS(2764), + [anon_sym_PLUS] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2764), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_SLASH] = ACTIONS(2764), + [anon_sym_PERCENT] = ACTIONS(2764), + [anon_sym_LT] = ACTIONS(2764), + [anon_sym_GT] = ACTIONS(2764), + [anon_sym_EQ_EQ] = ACTIONS(2764), + [anon_sym_BANG_EQ] = ACTIONS(2764), + [anon_sym_LT_EQ] = ACTIONS(2764), + [anon_sym_GT_EQ] = ACTIONS(2764), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2764), + [anon_sym_union] = ACTIONS(2764), + [anon_sym_pub] = ACTIONS(2764), + [anon_sym_mut] = ACTIONS(2764), + [anon_sym_enum] = ACTIONS(2764), + [anon_sym_interface] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_QMARK] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_go] = ACTIONS(2764), + [anon_sym_spawn] = ACTIONS(2764), + [anon_sym_json_DOTdecode] = ACTIONS(2764), + [anon_sym_LBRACK2] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_CARET] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_LT_DASH] = ACTIONS(2764), + [anon_sym_LT_LT] = ACTIONS(2764), + [anon_sym_GT_GT] = ACTIONS(2764), + [anon_sym_GT_GT_GT] = ACTIONS(2764), + [anon_sym_AMP_CARET] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_PIPE_PIPE] = ACTIONS(2764), + [anon_sym_or] = ACTIONS(2764), + [sym_none] = ACTIONS(2764), + [sym_true] = ACTIONS(2764), + [sym_false] = ACTIONS(2764), + [sym_nil] = ACTIONS(2764), + [anon_sym_QMARK_DOT] = ACTIONS(2764), + [anon_sym_POUND_LBRACK] = ACTIONS(2764), + [anon_sym_if] = ACTIONS(2764), + [anon_sym_DOLLARif] = ACTIONS(2764), + [anon_sym_is] = ACTIONS(2764), + [anon_sym_BANGis] = ACTIONS(2764), + [anon_sym_in] = ACTIONS(2764), + [anon_sym_BANGin] = ACTIONS(2764), + [anon_sym_match] = ACTIONS(2764), + [anon_sym_select] = ACTIONS(2764), + [anon_sym_STAR_EQ] = ACTIONS(2764), + [anon_sym_SLASH_EQ] = ACTIONS(2764), + [anon_sym_PERCENT_EQ] = ACTIONS(2764), + [anon_sym_LT_LT_EQ] = ACTIONS(2764), + [anon_sym_GT_GT_EQ] = ACTIONS(2764), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2764), + [anon_sym_AMP_EQ] = ACTIONS(2764), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2764), + [anon_sym_PLUS_EQ] = ACTIONS(2764), + [anon_sym_DASH_EQ] = ACTIONS(2764), + [anon_sym_PIPE_EQ] = ACTIONS(2764), + [anon_sym_CARET_EQ] = ACTIONS(2764), + [anon_sym_COLON_EQ] = ACTIONS(2764), + [anon_sym_lock] = ACTIONS(2764), + [anon_sym_rlock] = ACTIONS(2764), + [anon_sym_unsafe] = ACTIONS(2764), + [anon_sym_sql] = ACTIONS(2764), + [sym_int_literal] = ACTIONS(2764), + [sym_float_literal] = ACTIONS(2764), + [sym_rune_literal] = ACTIONS(2764), + [anon_sym_AT] = ACTIONS(2764), + [anon_sym_shared] = ACTIONS(2764), + [anon_sym_map_LBRACK] = ACTIONS(2764), + [anon_sym_chan] = ACTIONS(2764), + [anon_sym_thread] = ACTIONS(2764), + [anon_sym_atomic] = ACTIONS(2764), + [anon_sym_assert] = ACTIONS(2764), + [anon_sym_defer] = ACTIONS(2764), + [anon_sym_goto] = ACTIONS(2764), + [anon_sym_break] = ACTIONS(2764), + [anon_sym_continue] = ACTIONS(2764), + [anon_sym_return] = ACTIONS(2764), + [anon_sym_DOLLARfor] = ACTIONS(2764), + [anon_sym_for] = ACTIONS(2764), + [anon_sym_POUND] = ACTIONS(2764), + [anon_sym_asm] = ACTIONS(2764), + [anon_sym_AT_LBRACK] = ACTIONS(2764), + [sym___double_quote] = ACTIONS(2764), + [sym___single_quote] = ACTIONS(2764), + [sym___c_double_quote] = ACTIONS(2764), + [sym___c_single_quote] = ACTIONS(2764), + [sym___r_double_quote] = ACTIONS(2764), + [sym___r_single_quote] = ACTIONS(2764), }, - [936] = { + [941] = { [ts_builtin_sym_end] = ACTIONS(3127), [sym_identifier] = ACTIONS(3129), [anon_sym_LF] = ACTIONS(3129), [anon_sym_CR] = ACTIONS(3129), [anon_sym_CR_LF] = ACTIONS(3129), - [sym_comment] = ACTIONS(487), + [sym_comment] = ACTIONS(493), [anon_sym_DOT] = ACTIONS(3129), [anon_sym_as] = ACTIONS(3129), [anon_sym_LBRACE] = ACTIONS(3129), @@ -133830,13 +134569,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3129), [sym___r_single_quote] = ACTIONS(3129), }, - [937] = { + [942] = { [ts_builtin_sym_end] = ACTIONS(3131), [sym_identifier] = ACTIONS(3133), [anon_sym_LF] = ACTIONS(3133), [anon_sym_CR] = ACTIONS(3133), [anon_sym_CR_LF] = ACTIONS(3133), - [sym_comment] = ACTIONS(487), + [sym_comment] = ACTIONS(493), [anon_sym_DOT] = ACTIONS(3133), [anon_sym_as] = ACTIONS(3133), [anon_sym_LBRACE] = ACTIONS(3133), @@ -133943,13 +134682,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3133), [sym___r_single_quote] = ACTIONS(3133), }, - [938] = { + [943] = { [ts_builtin_sym_end] = ACTIONS(3135), [sym_identifier] = ACTIONS(3137), [anon_sym_LF] = ACTIONS(3137), [anon_sym_CR] = ACTIONS(3137), [anon_sym_CR_LF] = ACTIONS(3137), - [sym_comment] = ACTIONS(487), + [sym_comment] = ACTIONS(493), [anon_sym_DOT] = ACTIONS(3137), [anon_sym_as] = ACTIONS(3137), [anon_sym_LBRACE] = ACTIONS(3137), @@ -134056,13 +134795,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3137), [sym___r_single_quote] = ACTIONS(3137), }, - [939] = { + [944] = { + [ts_builtin_sym_end] = ACTIONS(2997), + [sym_identifier] = ACTIONS(2994), + [anon_sym_LF] = ACTIONS(2994), + [anon_sym_CR] = ACTIONS(2994), + [anon_sym_CR_LF] = ACTIONS(2994), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2994), + [anon_sym_as] = ACTIONS(2994), + [anon_sym_LBRACE] = ACTIONS(2994), + [anon_sym_COMMA] = ACTIONS(2994), + [anon_sym_const] = ACTIONS(2994), + [anon_sym_LPAREN] = ACTIONS(2994), + [anon_sym_EQ] = ACTIONS(2994), + [anon_sym___global] = ACTIONS(2994), + [anon_sym_type] = ACTIONS(2994), + [anon_sym_PIPE] = ACTIONS(2994), + [anon_sym_fn] = ACTIONS(2994), + [anon_sym_PLUS] = ACTIONS(2994), + [anon_sym_DASH] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2994), + [anon_sym_SLASH] = ACTIONS(2994), + [anon_sym_PERCENT] = ACTIONS(2994), + [anon_sym_LT] = ACTIONS(2994), + [anon_sym_GT] = ACTIONS(2994), + [anon_sym_EQ_EQ] = ACTIONS(2994), + [anon_sym_BANG_EQ] = ACTIONS(2994), + [anon_sym_LT_EQ] = ACTIONS(2994), + [anon_sym_GT_EQ] = ACTIONS(2994), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_struct] = ACTIONS(2994), + [anon_sym_union] = ACTIONS(2994), + [anon_sym_pub] = ACTIONS(2994), + [anon_sym_mut] = ACTIONS(2994), + [anon_sym_enum] = ACTIONS(2994), + [anon_sym_interface] = ACTIONS(2994), + [anon_sym_PLUS_PLUS] = ACTIONS(2994), + [anon_sym_DASH_DASH] = ACTIONS(2994), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_BANG] = ACTIONS(2994), + [anon_sym_go] = ACTIONS(2994), + [anon_sym_spawn] = ACTIONS(2994), + [anon_sym_json_DOTdecode] = ACTIONS(2994), + [anon_sym_LBRACK2] = ACTIONS(2994), + [anon_sym_TILDE] = ACTIONS(2994), + [anon_sym_CARET] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2994), + [anon_sym_LT_DASH] = ACTIONS(2994), + [anon_sym_LT_LT] = ACTIONS(2994), + [anon_sym_GT_GT] = ACTIONS(2994), + [anon_sym_GT_GT_GT] = ACTIONS(2994), + [anon_sym_AMP_CARET] = ACTIONS(2994), + [anon_sym_AMP_AMP] = ACTIONS(2994), + [anon_sym_PIPE_PIPE] = ACTIONS(2994), + [anon_sym_or] = ACTIONS(2994), + [sym_none] = ACTIONS(2994), + [sym_true] = ACTIONS(2994), + [sym_false] = ACTIONS(2994), + [sym_nil] = ACTIONS(2994), + [anon_sym_QMARK_DOT] = ACTIONS(2994), + [anon_sym_POUND_LBRACK] = ACTIONS(2994), + [anon_sym_if] = ACTIONS(2994), + [anon_sym_DOLLARif] = ACTIONS(2994), + [anon_sym_is] = ACTIONS(2994), + [anon_sym_BANGis] = ACTIONS(2994), + [anon_sym_in] = ACTIONS(2994), + [anon_sym_BANGin] = ACTIONS(2994), + [anon_sym_match] = ACTIONS(2994), + [anon_sym_select] = ACTIONS(2994), + [anon_sym_STAR_EQ] = ACTIONS(2994), + [anon_sym_SLASH_EQ] = ACTIONS(2994), + [anon_sym_PERCENT_EQ] = ACTIONS(2994), + [anon_sym_LT_LT_EQ] = ACTIONS(2994), + [anon_sym_GT_GT_EQ] = ACTIONS(2994), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2994), + [anon_sym_AMP_EQ] = ACTIONS(2994), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2994), + [anon_sym_PLUS_EQ] = ACTIONS(2994), + [anon_sym_DASH_EQ] = ACTIONS(2994), + [anon_sym_PIPE_EQ] = ACTIONS(2994), + [anon_sym_CARET_EQ] = ACTIONS(2994), + [anon_sym_COLON_EQ] = ACTIONS(2994), + [anon_sym_lock] = ACTIONS(2994), + [anon_sym_rlock] = ACTIONS(2994), + [anon_sym_unsafe] = ACTIONS(2994), + [anon_sym_sql] = ACTIONS(2994), + [sym_int_literal] = ACTIONS(2994), + [sym_float_literal] = ACTIONS(2994), + [sym_rune_literal] = ACTIONS(2994), + [anon_sym_AT] = ACTIONS(2994), + [anon_sym_shared] = ACTIONS(2994), + [anon_sym_map_LBRACK] = ACTIONS(2994), + [anon_sym_chan] = ACTIONS(2994), + [anon_sym_thread] = ACTIONS(2994), + [anon_sym_atomic] = ACTIONS(2994), + [anon_sym_assert] = ACTIONS(2994), + [anon_sym_defer] = ACTIONS(2994), + [anon_sym_goto] = ACTIONS(2994), + [anon_sym_break] = ACTIONS(2994), + [anon_sym_continue] = ACTIONS(2994), + [anon_sym_return] = ACTIONS(2994), + [anon_sym_DOLLARfor] = ACTIONS(2994), + [anon_sym_for] = ACTIONS(2994), + [anon_sym_POUND] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2994), + [anon_sym_AT_LBRACK] = ACTIONS(2994), + [sym___double_quote] = ACTIONS(2994), + [sym___single_quote] = ACTIONS(2994), + [sym___c_double_quote] = ACTIONS(2994), + [sym___c_single_quote] = ACTIONS(2994), + [sym___r_double_quote] = ACTIONS(2994), + [sym___r_single_quote] = ACTIONS(2994), + }, + [945] = { [ts_builtin_sym_end] = ACTIONS(3139), [sym_identifier] = ACTIONS(3141), [anon_sym_LF] = ACTIONS(3141), [anon_sym_CR] = ACTIONS(3141), [anon_sym_CR_LF] = ACTIONS(3141), - [sym_comment] = ACTIONS(487), + [sym_comment] = ACTIONS(493), [anon_sym_DOT] = ACTIONS(3141), [anon_sym_as] = ACTIONS(3141), [anon_sym_LBRACE] = ACTIONS(3141), @@ -134095,7 +134947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(3141), [anon_sym_DASH_DASH] = ACTIONS(3141), [anon_sym_QMARK] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), + [anon_sym_BANG] = ACTIONS(3143), [anon_sym_go] = ACTIONS(3141), [anon_sym_spawn] = ACTIONS(3141), [anon_sym_json_DOTdecode] = ACTIONS(3141), @@ -134169,1937 +135021,1711 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3141), [sym___r_single_quote] = ACTIONS(3141), }, - [940] = { - [ts_builtin_sym_end] = ACTIONS(3143), - [sym_identifier] = ACTIONS(3145), - [anon_sym_LF] = ACTIONS(3145), - [anon_sym_CR] = ACTIONS(3145), - [anon_sym_CR_LF] = ACTIONS(3145), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3145), - [anon_sym_as] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_COMMA] = ACTIONS(3145), - [anon_sym_const] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_EQ] = ACTIONS(3145), - [anon_sym___global] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_PIPE] = ACTIONS(3145), - [anon_sym_fn] = ACTIONS(3145), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3145), - [anon_sym_SLASH] = ACTIONS(3145), - [anon_sym_PERCENT] = ACTIONS(3145), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_GT] = ACTIONS(3145), - [anon_sym_EQ_EQ] = ACTIONS(3145), - [anon_sym_BANG_EQ] = ACTIONS(3145), - [anon_sym_LT_EQ] = ACTIONS(3145), - [anon_sym_GT_EQ] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_struct] = ACTIONS(3145), - [anon_sym_union] = ACTIONS(3145), - [anon_sym_pub] = ACTIONS(3145), - [anon_sym_mut] = ACTIONS(3145), - [anon_sym_enum] = ACTIONS(3145), - [anon_sym_interface] = ACTIONS(3145), - [anon_sym_PLUS_PLUS] = ACTIONS(3145), - [anon_sym_DASH_DASH] = ACTIONS(3145), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_go] = ACTIONS(3145), - [anon_sym_spawn] = ACTIONS(3145), - [anon_sym_json_DOTdecode] = ACTIONS(3145), - [anon_sym_LBRACK2] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_CARET] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_LT_DASH] = ACTIONS(3145), - [anon_sym_LT_LT] = ACTIONS(3145), - [anon_sym_GT_GT] = ACTIONS(3145), - [anon_sym_GT_GT_GT] = ACTIONS(3145), - [anon_sym_AMP_CARET] = ACTIONS(3145), - [anon_sym_AMP_AMP] = ACTIONS(3145), - [anon_sym_PIPE_PIPE] = ACTIONS(3145), - [anon_sym_or] = ACTIONS(3145), - [sym_none] = ACTIONS(3145), - [sym_true] = ACTIONS(3145), - [sym_false] = ACTIONS(3145), - [sym_nil] = ACTIONS(3145), - [anon_sym_QMARK_DOT] = ACTIONS(3145), - [anon_sym_POUND_LBRACK] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_DOLLARif] = ACTIONS(3145), - [anon_sym_is] = ACTIONS(3145), - [anon_sym_BANGis] = ACTIONS(3145), - [anon_sym_in] = ACTIONS(3145), - [anon_sym_BANGin] = ACTIONS(3145), - [anon_sym_match] = ACTIONS(3145), - [anon_sym_select] = ACTIONS(3145), - [anon_sym_STAR_EQ] = ACTIONS(3145), - [anon_sym_SLASH_EQ] = ACTIONS(3145), - [anon_sym_PERCENT_EQ] = ACTIONS(3145), - [anon_sym_LT_LT_EQ] = ACTIONS(3145), - [anon_sym_GT_GT_EQ] = ACTIONS(3145), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3145), - [anon_sym_AMP_EQ] = ACTIONS(3145), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3145), - [anon_sym_PLUS_EQ] = ACTIONS(3145), - [anon_sym_DASH_EQ] = ACTIONS(3145), - [anon_sym_PIPE_EQ] = ACTIONS(3145), - [anon_sym_CARET_EQ] = ACTIONS(3145), - [anon_sym_COLON_EQ] = ACTIONS(3145), - [anon_sym_lock] = ACTIONS(3145), - [anon_sym_rlock] = ACTIONS(3145), - [anon_sym_unsafe] = ACTIONS(3145), - [anon_sym_sql] = ACTIONS(3145), - [sym_int_literal] = ACTIONS(3145), - [sym_float_literal] = ACTIONS(3145), - [sym_rune_literal] = ACTIONS(3145), - [anon_sym_AT] = ACTIONS(3145), - [anon_sym_shared] = ACTIONS(3145), - [anon_sym_map_LBRACK] = ACTIONS(3145), - [anon_sym_chan] = ACTIONS(3145), - [anon_sym_thread] = ACTIONS(3145), - [anon_sym_atomic] = ACTIONS(3145), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_defer] = ACTIONS(3145), - [anon_sym_goto] = ACTIONS(3145), - [anon_sym_break] = ACTIONS(3145), - [anon_sym_continue] = ACTIONS(3145), - [anon_sym_return] = ACTIONS(3145), - [anon_sym_DOLLARfor] = ACTIONS(3145), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(3145), - [anon_sym_asm] = ACTIONS(3145), - [anon_sym_AT_LBRACK] = ACTIONS(3145), - [sym___double_quote] = ACTIONS(3145), - [sym___single_quote] = ACTIONS(3145), - [sym___c_double_quote] = ACTIONS(3145), - [sym___c_single_quote] = ACTIONS(3145), - [sym___r_double_quote] = ACTIONS(3145), - [sym___r_single_quote] = ACTIONS(3145), - }, - [941] = { - [ts_builtin_sym_end] = ACTIONS(3147), - [sym_identifier] = ACTIONS(3149), - [anon_sym_LF] = ACTIONS(3149), - [anon_sym_CR] = ACTIONS(3149), - [anon_sym_CR_LF] = ACTIONS(3149), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3149), - [anon_sym_as] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_COMMA] = ACTIONS(3149), - [anon_sym_const] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3149), - [anon_sym_EQ] = ACTIONS(3149), - [anon_sym___global] = ACTIONS(3149), - [anon_sym_type] = ACTIONS(3149), - [anon_sym_PIPE] = ACTIONS(3149), - [anon_sym_fn] = ACTIONS(3149), - [anon_sym_PLUS] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3149), - [anon_sym_SLASH] = ACTIONS(3149), - [anon_sym_PERCENT] = ACTIONS(3149), - [anon_sym_LT] = ACTIONS(3149), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_LT_EQ] = ACTIONS(3149), - [anon_sym_GT_EQ] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_struct] = ACTIONS(3149), - [anon_sym_union] = ACTIONS(3149), - [anon_sym_pub] = ACTIONS(3149), - [anon_sym_mut] = ACTIONS(3149), - [anon_sym_enum] = ACTIONS(3149), - [anon_sym_interface] = ACTIONS(3149), - [anon_sym_PLUS_PLUS] = ACTIONS(3149), - [anon_sym_DASH_DASH] = ACTIONS(3149), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_BANG] = ACTIONS(3149), - [anon_sym_go] = ACTIONS(3149), - [anon_sym_spawn] = ACTIONS(3149), - [anon_sym_json_DOTdecode] = ACTIONS(3149), - [anon_sym_LBRACK2] = ACTIONS(3149), - [anon_sym_TILDE] = ACTIONS(3149), - [anon_sym_CARET] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_LT_DASH] = ACTIONS(3149), - [anon_sym_LT_LT] = ACTIONS(3149), - [anon_sym_GT_GT] = ACTIONS(3149), - [anon_sym_GT_GT_GT] = ACTIONS(3149), - [anon_sym_AMP_CARET] = ACTIONS(3149), - [anon_sym_AMP_AMP] = ACTIONS(3149), - [anon_sym_PIPE_PIPE] = ACTIONS(3149), - [anon_sym_or] = ACTIONS(3149), - [sym_none] = ACTIONS(3149), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_nil] = ACTIONS(3149), - [anon_sym_QMARK_DOT] = ACTIONS(3149), - [anon_sym_POUND_LBRACK] = ACTIONS(3149), - [anon_sym_if] = ACTIONS(3149), - [anon_sym_DOLLARif] = ACTIONS(3149), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3149), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_BANGin] = ACTIONS(3149), - [anon_sym_match] = ACTIONS(3149), - [anon_sym_select] = ACTIONS(3149), - [anon_sym_STAR_EQ] = ACTIONS(3149), - [anon_sym_SLASH_EQ] = ACTIONS(3149), - [anon_sym_PERCENT_EQ] = ACTIONS(3149), - [anon_sym_LT_LT_EQ] = ACTIONS(3149), - [anon_sym_GT_GT_EQ] = ACTIONS(3149), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3149), - [anon_sym_AMP_EQ] = ACTIONS(3149), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3149), - [anon_sym_PLUS_EQ] = ACTIONS(3149), - [anon_sym_DASH_EQ] = ACTIONS(3149), - [anon_sym_PIPE_EQ] = ACTIONS(3149), - [anon_sym_CARET_EQ] = ACTIONS(3149), - [anon_sym_COLON_EQ] = ACTIONS(3149), - [anon_sym_lock] = ACTIONS(3149), - [anon_sym_rlock] = ACTIONS(3149), - [anon_sym_unsafe] = ACTIONS(3149), - [anon_sym_sql] = ACTIONS(3149), - [sym_int_literal] = ACTIONS(3149), - [sym_float_literal] = ACTIONS(3149), - [sym_rune_literal] = ACTIONS(3149), - [anon_sym_AT] = ACTIONS(3149), - [anon_sym_shared] = ACTIONS(3149), - [anon_sym_map_LBRACK] = ACTIONS(3149), - [anon_sym_chan] = ACTIONS(3149), - [anon_sym_thread] = ACTIONS(3149), - [anon_sym_atomic] = ACTIONS(3149), - [anon_sym_assert] = ACTIONS(3149), - [anon_sym_defer] = ACTIONS(3149), - [anon_sym_goto] = ACTIONS(3149), - [anon_sym_break] = ACTIONS(3149), - [anon_sym_continue] = ACTIONS(3149), - [anon_sym_return] = ACTIONS(3149), - [anon_sym_DOLLARfor] = ACTIONS(3149), - [anon_sym_for] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(3149), - [anon_sym_asm] = ACTIONS(3149), - [anon_sym_AT_LBRACK] = ACTIONS(3149), - [sym___double_quote] = ACTIONS(3149), - [sym___single_quote] = ACTIONS(3149), - [sym___c_double_quote] = ACTIONS(3149), - [sym___c_single_quote] = ACTIONS(3149), - [sym___r_double_quote] = ACTIONS(3149), - [sym___r_single_quote] = ACTIONS(3149), - }, - [942] = { - [ts_builtin_sym_end] = ACTIONS(3151), - [sym_identifier] = ACTIONS(3153), - [anon_sym_LF] = ACTIONS(3153), - [anon_sym_CR] = ACTIONS(3153), - [anon_sym_CR_LF] = ACTIONS(3153), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_as] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_COMMA] = ACTIONS(3153), - [anon_sym_const] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_EQ] = ACTIONS(3153), - [anon_sym___global] = ACTIONS(3153), - [anon_sym_type] = ACTIONS(3153), - [anon_sym_PIPE] = ACTIONS(3153), - [anon_sym_fn] = ACTIONS(3153), - [anon_sym_PLUS] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3153), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_SLASH] = ACTIONS(3153), - [anon_sym_PERCENT] = ACTIONS(3153), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3153), - [anon_sym_EQ_EQ] = ACTIONS(3153), - [anon_sym_BANG_EQ] = ACTIONS(3153), - [anon_sym_LT_EQ] = ACTIONS(3153), - [anon_sym_GT_EQ] = ACTIONS(3153), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_struct] = ACTIONS(3153), - [anon_sym_union] = ACTIONS(3153), - [anon_sym_pub] = ACTIONS(3153), - [anon_sym_mut] = ACTIONS(3153), - [anon_sym_enum] = ACTIONS(3153), - [anon_sym_interface] = ACTIONS(3153), - [anon_sym_PLUS_PLUS] = ACTIONS(3153), - [anon_sym_DASH_DASH] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_go] = ACTIONS(3153), - [anon_sym_spawn] = ACTIONS(3153), - [anon_sym_json_DOTdecode] = ACTIONS(3153), - [anon_sym_LBRACK2] = ACTIONS(3153), - [anon_sym_TILDE] = ACTIONS(3153), - [anon_sym_CARET] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3153), - [anon_sym_LT_DASH] = ACTIONS(3153), - [anon_sym_LT_LT] = ACTIONS(3153), - [anon_sym_GT_GT] = ACTIONS(3153), - [anon_sym_GT_GT_GT] = ACTIONS(3153), - [anon_sym_AMP_CARET] = ACTIONS(3153), - [anon_sym_AMP_AMP] = ACTIONS(3153), - [anon_sym_PIPE_PIPE] = ACTIONS(3153), - [anon_sym_or] = ACTIONS(3153), - [sym_none] = ACTIONS(3153), - [sym_true] = ACTIONS(3153), - [sym_false] = ACTIONS(3153), - [sym_nil] = ACTIONS(3153), - [anon_sym_QMARK_DOT] = ACTIONS(3153), - [anon_sym_POUND_LBRACK] = ACTIONS(3153), - [anon_sym_if] = ACTIONS(3153), - [anon_sym_DOLLARif] = ACTIONS(3153), - [anon_sym_is] = ACTIONS(3153), - [anon_sym_BANGis] = ACTIONS(3153), - [anon_sym_in] = ACTIONS(3153), - [anon_sym_BANGin] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(3153), - [anon_sym_select] = ACTIONS(3153), - [anon_sym_STAR_EQ] = ACTIONS(3153), - [anon_sym_SLASH_EQ] = ACTIONS(3153), - [anon_sym_PERCENT_EQ] = ACTIONS(3153), - [anon_sym_LT_LT_EQ] = ACTIONS(3153), - [anon_sym_GT_GT_EQ] = ACTIONS(3153), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3153), - [anon_sym_AMP_EQ] = ACTIONS(3153), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3153), - [anon_sym_PLUS_EQ] = ACTIONS(3153), - [anon_sym_DASH_EQ] = ACTIONS(3153), - [anon_sym_PIPE_EQ] = ACTIONS(3153), - [anon_sym_CARET_EQ] = ACTIONS(3153), - [anon_sym_COLON_EQ] = ACTIONS(3153), - [anon_sym_lock] = ACTIONS(3153), - [anon_sym_rlock] = ACTIONS(3153), - [anon_sym_unsafe] = ACTIONS(3153), - [anon_sym_sql] = ACTIONS(3153), - [sym_int_literal] = ACTIONS(3153), - [sym_float_literal] = ACTIONS(3153), - [sym_rune_literal] = ACTIONS(3153), - [anon_sym_AT] = ACTIONS(3153), - [anon_sym_shared] = ACTIONS(3153), - [anon_sym_map_LBRACK] = ACTIONS(3153), - [anon_sym_chan] = ACTIONS(3153), - [anon_sym_thread] = ACTIONS(3153), - [anon_sym_atomic] = ACTIONS(3153), - [anon_sym_assert] = ACTIONS(3153), - [anon_sym_defer] = ACTIONS(3153), - [anon_sym_goto] = ACTIONS(3153), - [anon_sym_break] = ACTIONS(3153), - [anon_sym_continue] = ACTIONS(3153), - [anon_sym_return] = ACTIONS(3153), - [anon_sym_DOLLARfor] = ACTIONS(3153), - [anon_sym_for] = ACTIONS(3153), - [anon_sym_POUND] = ACTIONS(3153), - [anon_sym_asm] = ACTIONS(3153), - [anon_sym_AT_LBRACK] = ACTIONS(3153), - [sym___double_quote] = ACTIONS(3153), - [sym___single_quote] = ACTIONS(3153), - [sym___c_double_quote] = ACTIONS(3153), - [sym___c_single_quote] = ACTIONS(3153), - [sym___r_double_quote] = ACTIONS(3153), - [sym___r_single_quote] = ACTIONS(3153), - }, - [943] = { - [ts_builtin_sym_end] = ACTIONS(3155), - [sym_identifier] = ACTIONS(3157), - [anon_sym_LF] = ACTIONS(3157), - [anon_sym_CR] = ACTIONS(3157), - [anon_sym_CR_LF] = ACTIONS(3157), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3157), - [anon_sym_as] = ACTIONS(3157), - [anon_sym_LBRACE] = ACTIONS(3157), - [anon_sym_COMMA] = ACTIONS(3157), - [anon_sym_const] = ACTIONS(3157), - [anon_sym_LPAREN] = ACTIONS(3157), - [anon_sym_EQ] = ACTIONS(3157), - [anon_sym___global] = ACTIONS(3157), - [anon_sym_type] = ACTIONS(3157), - [anon_sym_PIPE] = ACTIONS(3157), - [anon_sym_fn] = ACTIONS(3157), - [anon_sym_PLUS] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(3157), - [anon_sym_STAR] = ACTIONS(3157), - [anon_sym_SLASH] = ACTIONS(3157), - [anon_sym_PERCENT] = ACTIONS(3157), - [anon_sym_LT] = ACTIONS(3157), - [anon_sym_GT] = ACTIONS(3157), - [anon_sym_EQ_EQ] = ACTIONS(3157), - [anon_sym_BANG_EQ] = ACTIONS(3157), - [anon_sym_LT_EQ] = ACTIONS(3157), - [anon_sym_GT_EQ] = ACTIONS(3157), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3157), - [anon_sym_union] = ACTIONS(3157), - [anon_sym_pub] = ACTIONS(3157), - [anon_sym_mut] = ACTIONS(3157), - [anon_sym_enum] = ACTIONS(3157), - [anon_sym_interface] = ACTIONS(3157), - [anon_sym_PLUS_PLUS] = ACTIONS(3157), - [anon_sym_DASH_DASH] = ACTIONS(3157), - [anon_sym_QMARK] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3157), - [anon_sym_go] = ACTIONS(3157), - [anon_sym_spawn] = ACTIONS(3157), - [anon_sym_json_DOTdecode] = ACTIONS(3157), - [anon_sym_LBRACK2] = ACTIONS(3157), - [anon_sym_TILDE] = ACTIONS(3157), - [anon_sym_CARET] = ACTIONS(3157), - [anon_sym_AMP] = ACTIONS(3157), - [anon_sym_LT_DASH] = ACTIONS(3157), - [anon_sym_LT_LT] = ACTIONS(3157), - [anon_sym_GT_GT] = ACTIONS(3157), - [anon_sym_GT_GT_GT] = ACTIONS(3157), - [anon_sym_AMP_CARET] = ACTIONS(3157), - [anon_sym_AMP_AMP] = ACTIONS(3157), - [anon_sym_PIPE_PIPE] = ACTIONS(3157), - [anon_sym_or] = ACTIONS(3157), - [sym_none] = ACTIONS(3157), - [sym_true] = ACTIONS(3157), - [sym_false] = ACTIONS(3157), - [sym_nil] = ACTIONS(3157), - [anon_sym_QMARK_DOT] = ACTIONS(3157), - [anon_sym_POUND_LBRACK] = ACTIONS(3157), - [anon_sym_if] = ACTIONS(3157), - [anon_sym_DOLLARif] = ACTIONS(3157), - [anon_sym_is] = ACTIONS(3157), - [anon_sym_BANGis] = ACTIONS(3157), - [anon_sym_in] = ACTIONS(3157), - [anon_sym_BANGin] = ACTIONS(3157), - [anon_sym_match] = ACTIONS(3157), - [anon_sym_select] = ACTIONS(3157), - [anon_sym_STAR_EQ] = ACTIONS(3157), - [anon_sym_SLASH_EQ] = ACTIONS(3157), - [anon_sym_PERCENT_EQ] = ACTIONS(3157), - [anon_sym_LT_LT_EQ] = ACTIONS(3157), - [anon_sym_GT_GT_EQ] = ACTIONS(3157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3157), - [anon_sym_AMP_EQ] = ACTIONS(3157), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3157), - [anon_sym_PLUS_EQ] = ACTIONS(3157), - [anon_sym_DASH_EQ] = ACTIONS(3157), - [anon_sym_PIPE_EQ] = ACTIONS(3157), - [anon_sym_CARET_EQ] = ACTIONS(3157), - [anon_sym_COLON_EQ] = ACTIONS(3157), - [anon_sym_lock] = ACTIONS(3157), - [anon_sym_rlock] = ACTIONS(3157), - [anon_sym_unsafe] = ACTIONS(3157), - [anon_sym_sql] = ACTIONS(3157), - [sym_int_literal] = ACTIONS(3157), - [sym_float_literal] = ACTIONS(3157), - [sym_rune_literal] = ACTIONS(3157), - [anon_sym_AT] = ACTIONS(3157), - [anon_sym_shared] = ACTIONS(3157), - [anon_sym_map_LBRACK] = ACTIONS(3157), - [anon_sym_chan] = ACTIONS(3157), - [anon_sym_thread] = ACTIONS(3157), - [anon_sym_atomic] = ACTIONS(3157), - [anon_sym_assert] = ACTIONS(3157), - [anon_sym_defer] = ACTIONS(3157), - [anon_sym_goto] = ACTIONS(3157), - [anon_sym_break] = ACTIONS(3157), - [anon_sym_continue] = ACTIONS(3157), - [anon_sym_return] = ACTIONS(3157), - [anon_sym_DOLLARfor] = ACTIONS(3157), - [anon_sym_for] = ACTIONS(3157), - [anon_sym_POUND] = ACTIONS(3157), - [anon_sym_asm] = ACTIONS(3157), - [anon_sym_AT_LBRACK] = ACTIONS(3157), - [sym___double_quote] = ACTIONS(3157), - [sym___single_quote] = ACTIONS(3157), - [sym___c_double_quote] = ACTIONS(3157), - [sym___c_single_quote] = ACTIONS(3157), - [sym___r_double_quote] = ACTIONS(3157), - [sym___r_single_quote] = ACTIONS(3157), - }, - [944] = { - [ts_builtin_sym_end] = ACTIONS(3159), - [sym_identifier] = ACTIONS(3161), - [anon_sym_LF] = ACTIONS(3161), - [anon_sym_CR] = ACTIONS(3161), - [anon_sym_CR_LF] = ACTIONS(3161), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3161), - [anon_sym_as] = ACTIONS(3161), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_COMMA] = ACTIONS(3161), - [anon_sym_const] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_EQ] = ACTIONS(3161), - [anon_sym___global] = ACTIONS(3161), - [anon_sym_type] = ACTIONS(3161), - [anon_sym_PIPE] = ACTIONS(3161), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_SLASH] = ACTIONS(3161), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(3161), - [anon_sym_GT] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_struct] = ACTIONS(3161), - [anon_sym_union] = ACTIONS(3161), - [anon_sym_pub] = ACTIONS(3161), - [anon_sym_mut] = ACTIONS(3161), - [anon_sym_enum] = ACTIONS(3161), - [anon_sym_interface] = ACTIONS(3161), - [anon_sym_PLUS_PLUS] = ACTIONS(3161), - [anon_sym_DASH_DASH] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(3161), - [anon_sym_go] = ACTIONS(3161), - [anon_sym_spawn] = ACTIONS(3161), - [anon_sym_json_DOTdecode] = ACTIONS(3161), - [anon_sym_LBRACK2] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_CARET] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_LT_DASH] = ACTIONS(3161), - [anon_sym_LT_LT] = ACTIONS(3161), - [anon_sym_GT_GT] = ACTIONS(3161), - [anon_sym_GT_GT_GT] = ACTIONS(3161), - [anon_sym_AMP_CARET] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_or] = ACTIONS(3161), - [sym_none] = ACTIONS(3161), - [sym_true] = ACTIONS(3161), - [sym_false] = ACTIONS(3161), - [sym_nil] = ACTIONS(3161), - [anon_sym_QMARK_DOT] = ACTIONS(3161), - [anon_sym_POUND_LBRACK] = ACTIONS(3161), - [anon_sym_if] = ACTIONS(3161), - [anon_sym_DOLLARif] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3161), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_in] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_match] = ACTIONS(3161), - [anon_sym_select] = ACTIONS(3161), - [anon_sym_STAR_EQ] = ACTIONS(3161), - [anon_sym_SLASH_EQ] = ACTIONS(3161), - [anon_sym_PERCENT_EQ] = ACTIONS(3161), - [anon_sym_LT_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_GT_EQ] = ACTIONS(3161), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3161), - [anon_sym_AMP_EQ] = ACTIONS(3161), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3161), - [anon_sym_PLUS_EQ] = ACTIONS(3161), - [anon_sym_DASH_EQ] = ACTIONS(3161), - [anon_sym_PIPE_EQ] = ACTIONS(3161), - [anon_sym_CARET_EQ] = ACTIONS(3161), - [anon_sym_COLON_EQ] = ACTIONS(3161), - [anon_sym_lock] = ACTIONS(3161), - [anon_sym_rlock] = ACTIONS(3161), - [anon_sym_unsafe] = ACTIONS(3161), - [anon_sym_sql] = ACTIONS(3161), - [sym_int_literal] = ACTIONS(3161), - [sym_float_literal] = ACTIONS(3161), - [sym_rune_literal] = ACTIONS(3161), - [anon_sym_AT] = ACTIONS(3161), - [anon_sym_shared] = ACTIONS(3161), - [anon_sym_map_LBRACK] = ACTIONS(3161), - [anon_sym_chan] = ACTIONS(3161), - [anon_sym_thread] = ACTIONS(3161), - [anon_sym_atomic] = ACTIONS(3161), - [anon_sym_assert] = ACTIONS(3161), - [anon_sym_defer] = ACTIONS(3161), - [anon_sym_goto] = ACTIONS(3161), - [anon_sym_break] = ACTIONS(3161), - [anon_sym_continue] = ACTIONS(3161), - [anon_sym_return] = ACTIONS(3161), - [anon_sym_DOLLARfor] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(3161), - [anon_sym_POUND] = ACTIONS(3161), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym_AT_LBRACK] = ACTIONS(3161), - [sym___double_quote] = ACTIONS(3161), - [sym___single_quote] = ACTIONS(3161), - [sym___c_double_quote] = ACTIONS(3161), - [sym___c_single_quote] = ACTIONS(3161), - [sym___r_double_quote] = ACTIONS(3161), - [sym___r_single_quote] = ACTIONS(3161), - }, - [945] = { - [ts_builtin_sym_end] = ACTIONS(3163), - [sym_identifier] = ACTIONS(3165), - [anon_sym_LF] = ACTIONS(3165), - [anon_sym_CR] = ACTIONS(3165), - [anon_sym_CR_LF] = ACTIONS(3165), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_as] = ACTIONS(3165), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3165), - [anon_sym_const] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3165), - [anon_sym___global] = ACTIONS(3165), - [anon_sym_type] = ACTIONS(3165), - [anon_sym_PIPE] = ACTIONS(3165), - [anon_sym_fn] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_STAR] = ACTIONS(3165), - [anon_sym_SLASH] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_LT] = ACTIONS(3165), - [anon_sym_GT] = ACTIONS(3165), - [anon_sym_EQ_EQ] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_LT_EQ] = ACTIONS(3165), - [anon_sym_GT_EQ] = ACTIONS(3165), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3165), - [anon_sym_pub] = ACTIONS(3165), - [anon_sym_mut] = ACTIONS(3165), - [anon_sym_enum] = ACTIONS(3165), - [anon_sym_interface] = ACTIONS(3165), - [anon_sym_PLUS_PLUS] = ACTIONS(3165), - [anon_sym_DASH_DASH] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_BANG] = ACTIONS(3165), - [anon_sym_go] = ACTIONS(3165), - [anon_sym_spawn] = ACTIONS(3165), - [anon_sym_json_DOTdecode] = ACTIONS(3165), - [anon_sym_LBRACK2] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3165), - [anon_sym_CARET] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_LT_LT] = ACTIONS(3165), - [anon_sym_GT_GT] = ACTIONS(3165), - [anon_sym_GT_GT_GT] = ACTIONS(3165), - [anon_sym_AMP_CARET] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [sym_none] = ACTIONS(3165), - [sym_true] = ACTIONS(3165), - [sym_false] = ACTIONS(3165), - [sym_nil] = ACTIONS(3165), - [anon_sym_QMARK_DOT] = ACTIONS(3165), - [anon_sym_POUND_LBRACK] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_DOLLARif] = ACTIONS(3165), - [anon_sym_is] = ACTIONS(3165), - [anon_sym_BANGis] = ACTIONS(3165), - [anon_sym_in] = ACTIONS(3165), - [anon_sym_BANGin] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_select] = ACTIONS(3165), - [anon_sym_STAR_EQ] = ACTIONS(3165), - [anon_sym_SLASH_EQ] = ACTIONS(3165), - [anon_sym_PERCENT_EQ] = ACTIONS(3165), - [anon_sym_LT_LT_EQ] = ACTIONS(3165), - [anon_sym_GT_GT_EQ] = ACTIONS(3165), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3165), - [anon_sym_AMP_EQ] = ACTIONS(3165), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3165), - [anon_sym_PLUS_EQ] = ACTIONS(3165), - [anon_sym_DASH_EQ] = ACTIONS(3165), - [anon_sym_PIPE_EQ] = ACTIONS(3165), - [anon_sym_CARET_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3165), - [anon_sym_lock] = ACTIONS(3165), - [anon_sym_rlock] = ACTIONS(3165), - [anon_sym_unsafe] = ACTIONS(3165), - [anon_sym_sql] = ACTIONS(3165), - [sym_int_literal] = ACTIONS(3165), - [sym_float_literal] = ACTIONS(3165), - [sym_rune_literal] = ACTIONS(3165), - [anon_sym_AT] = ACTIONS(3165), - [anon_sym_shared] = ACTIONS(3165), - [anon_sym_map_LBRACK] = ACTIONS(3165), - [anon_sym_chan] = ACTIONS(3165), - [anon_sym_thread] = ACTIONS(3165), - [anon_sym_atomic] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_defer] = ACTIONS(3165), - [anon_sym_goto] = ACTIONS(3165), - [anon_sym_break] = ACTIONS(3165), - [anon_sym_continue] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_DOLLARfor] = ACTIONS(3165), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_POUND] = ACTIONS(3165), - [anon_sym_asm] = ACTIONS(3165), - [anon_sym_AT_LBRACK] = ACTIONS(3165), - [sym___double_quote] = ACTIONS(3165), - [sym___single_quote] = ACTIONS(3165), - [sym___c_double_quote] = ACTIONS(3165), - [sym___c_single_quote] = ACTIONS(3165), - [sym___r_double_quote] = ACTIONS(3165), - [sym___r_single_quote] = ACTIONS(3165), - }, - [946] = { - [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), - [sym_comment] = ACTIONS(487), - [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_AT] = ACTIONS(3029), - [anon_sym_shared] = ACTIONS(3029), - [anon_sym_map_LBRACK] = ACTIONS(3029), - [anon_sym_chan] = ACTIONS(3029), - [anon_sym_thread] = ACTIONS(3029), - [anon_sym_atomic] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_defer] = ACTIONS(3029), - [anon_sym_goto] = ACTIONS(3029), - [anon_sym_break] = ACTIONS(3029), - [anon_sym_continue] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_DOLLARfor] = ACTIONS(3029), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_POUND] = ACTIONS(3029), - [anon_sym_asm] = ACTIONS(3029), - [anon_sym_AT_LBRACK] = ACTIONS(3029), - [sym___double_quote] = ACTIONS(3029), - [sym___single_quote] = ACTIONS(3029), - [sym___c_double_quote] = ACTIONS(3029), - [sym___c_single_quote] = ACTIONS(3029), - [sym___r_double_quote] = ACTIONS(3029), - [sym___r_single_quote] = ACTIONS(3029), + [946] = { + [ts_builtin_sym_end] = ACTIONS(3145), + [sym_identifier] = ACTIONS(3147), + [anon_sym_LF] = ACTIONS(3147), + [anon_sym_CR] = ACTIONS(3147), + [anon_sym_CR_LF] = ACTIONS(3147), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3147), + [anon_sym_as] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_COMMA] = ACTIONS(3147), + [anon_sym_const] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_EQ] = ACTIONS(3147), + [anon_sym___global] = ACTIONS(3147), + [anon_sym_type] = ACTIONS(3147), + [anon_sym_PIPE] = ACTIONS(3147), + [anon_sym_fn] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_SLASH] = ACTIONS(3147), + [anon_sym_PERCENT] = ACTIONS(3147), + [anon_sym_LT] = ACTIONS(3147), + [anon_sym_GT] = ACTIONS(3147), + [anon_sym_EQ_EQ] = ACTIONS(3147), + [anon_sym_BANG_EQ] = ACTIONS(3147), + [anon_sym_LT_EQ] = ACTIONS(3147), + [anon_sym_GT_EQ] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3145), + [anon_sym_struct] = ACTIONS(3147), + [anon_sym_union] = ACTIONS(3147), + [anon_sym_pub] = ACTIONS(3147), + [anon_sym_mut] = ACTIONS(3147), + [anon_sym_enum] = ACTIONS(3147), + [anon_sym_interface] = ACTIONS(3147), + [anon_sym_PLUS_PLUS] = ACTIONS(3147), + [anon_sym_DASH_DASH] = ACTIONS(3147), + [anon_sym_QMARK] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3147), + [anon_sym_go] = ACTIONS(3147), + [anon_sym_spawn] = ACTIONS(3147), + [anon_sym_json_DOTdecode] = ACTIONS(3147), + [anon_sym_LBRACK2] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3147), + [anon_sym_CARET] = ACTIONS(3147), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym_LT_DASH] = ACTIONS(3147), + [anon_sym_LT_LT] = ACTIONS(3147), + [anon_sym_GT_GT] = ACTIONS(3147), + [anon_sym_GT_GT_GT] = ACTIONS(3147), + [anon_sym_AMP_CARET] = ACTIONS(3147), + [anon_sym_AMP_AMP] = ACTIONS(3147), + [anon_sym_PIPE_PIPE] = ACTIONS(3147), + [anon_sym_or] = ACTIONS(3147), + [sym_none] = ACTIONS(3147), + [sym_true] = ACTIONS(3147), + [sym_false] = ACTIONS(3147), + [sym_nil] = ACTIONS(3147), + [anon_sym_QMARK_DOT] = ACTIONS(3147), + [anon_sym_POUND_LBRACK] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_DOLLARif] = ACTIONS(3147), + [anon_sym_is] = ACTIONS(3147), + [anon_sym_BANGis] = ACTIONS(3147), + [anon_sym_in] = ACTIONS(3147), + [anon_sym_BANGin] = ACTIONS(3147), + [anon_sym_match] = ACTIONS(3147), + [anon_sym_select] = ACTIONS(3147), + [anon_sym_STAR_EQ] = ACTIONS(3147), + [anon_sym_SLASH_EQ] = ACTIONS(3147), + [anon_sym_PERCENT_EQ] = ACTIONS(3147), + [anon_sym_LT_LT_EQ] = ACTIONS(3147), + [anon_sym_GT_GT_EQ] = ACTIONS(3147), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3147), + [anon_sym_AMP_EQ] = ACTIONS(3147), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3147), + [anon_sym_PLUS_EQ] = ACTIONS(3147), + [anon_sym_DASH_EQ] = ACTIONS(3147), + [anon_sym_PIPE_EQ] = ACTIONS(3147), + [anon_sym_CARET_EQ] = ACTIONS(3147), + [anon_sym_COLON_EQ] = ACTIONS(3147), + [anon_sym_lock] = ACTIONS(3147), + [anon_sym_rlock] = ACTIONS(3147), + [anon_sym_unsafe] = ACTIONS(3147), + [anon_sym_sql] = ACTIONS(3147), + [sym_int_literal] = ACTIONS(3147), + [sym_float_literal] = ACTIONS(3147), + [sym_rune_literal] = ACTIONS(3147), + [anon_sym_AT] = ACTIONS(3147), + [anon_sym_shared] = ACTIONS(3147), + [anon_sym_map_LBRACK] = ACTIONS(3147), + [anon_sym_chan] = ACTIONS(3147), + [anon_sym_thread] = ACTIONS(3147), + [anon_sym_atomic] = ACTIONS(3147), + [anon_sym_assert] = ACTIONS(3147), + [anon_sym_defer] = ACTIONS(3147), + [anon_sym_goto] = ACTIONS(3147), + [anon_sym_break] = ACTIONS(3147), + [anon_sym_continue] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3147), + [anon_sym_DOLLARfor] = ACTIONS(3147), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_POUND] = ACTIONS(3147), + [anon_sym_asm] = ACTIONS(3147), + [anon_sym_AT_LBRACK] = ACTIONS(3147), + [sym___double_quote] = ACTIONS(3147), + [sym___single_quote] = ACTIONS(3147), + [sym___c_double_quote] = ACTIONS(3147), + [sym___c_single_quote] = ACTIONS(3147), + [sym___r_double_quote] = ACTIONS(3147), + [sym___r_single_quote] = ACTIONS(3147), }, [947] = { - [ts_builtin_sym_end] = ACTIONS(3167), - [sym_identifier] = ACTIONS(3169), - [anon_sym_LF] = ACTIONS(3169), - [anon_sym_CR] = ACTIONS(3169), - [anon_sym_CR_LF] = ACTIONS(3169), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3169), - [anon_sym_as] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_const] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3169), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym___global] = ACTIONS(3169), - [anon_sym_type] = ACTIONS(3169), - [anon_sym_PIPE] = ACTIONS(3169), - [anon_sym_fn] = ACTIONS(3169), - [anon_sym_PLUS] = ACTIONS(3169), - [anon_sym_DASH] = ACTIONS(3169), - [anon_sym_STAR] = ACTIONS(3169), - [anon_sym_SLASH] = ACTIONS(3169), - [anon_sym_PERCENT] = ACTIONS(3169), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_GT] = ACTIONS(3169), - [anon_sym_EQ_EQ] = ACTIONS(3169), - [anon_sym_BANG_EQ] = ACTIONS(3169), - [anon_sym_LT_EQ] = ACTIONS(3169), - [anon_sym_GT_EQ] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_struct] = ACTIONS(3169), - [anon_sym_union] = ACTIONS(3169), - [anon_sym_pub] = ACTIONS(3169), - [anon_sym_mut] = ACTIONS(3169), - [anon_sym_enum] = ACTIONS(3169), - [anon_sym_interface] = ACTIONS(3169), - [anon_sym_PLUS_PLUS] = ACTIONS(3169), - [anon_sym_DASH_DASH] = ACTIONS(3169), - [anon_sym_QMARK] = ACTIONS(3169), - [anon_sym_BANG] = ACTIONS(3169), - [anon_sym_go] = ACTIONS(3169), - [anon_sym_spawn] = ACTIONS(3169), - [anon_sym_json_DOTdecode] = ACTIONS(3169), - [anon_sym_LBRACK2] = ACTIONS(3169), - [anon_sym_TILDE] = ACTIONS(3169), - [anon_sym_CARET] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3169), - [anon_sym_LT_DASH] = ACTIONS(3169), - [anon_sym_LT_LT] = ACTIONS(3169), - [anon_sym_GT_GT] = ACTIONS(3169), - [anon_sym_GT_GT_GT] = ACTIONS(3169), - [anon_sym_AMP_CARET] = ACTIONS(3169), - [anon_sym_AMP_AMP] = ACTIONS(3169), - [anon_sym_PIPE_PIPE] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3169), - [sym_none] = ACTIONS(3169), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [sym_nil] = ACTIONS(3169), - [anon_sym_QMARK_DOT] = ACTIONS(3169), - [anon_sym_POUND_LBRACK] = ACTIONS(3169), - [anon_sym_if] = ACTIONS(3169), - [anon_sym_DOLLARif] = ACTIONS(3169), - [anon_sym_is] = ACTIONS(3169), - [anon_sym_BANGis] = ACTIONS(3169), - [anon_sym_in] = ACTIONS(3169), - [anon_sym_BANGin] = ACTIONS(3169), - [anon_sym_match] = ACTIONS(3169), - [anon_sym_select] = ACTIONS(3169), - [anon_sym_STAR_EQ] = ACTIONS(3169), - [anon_sym_SLASH_EQ] = ACTIONS(3169), - [anon_sym_PERCENT_EQ] = ACTIONS(3169), - [anon_sym_LT_LT_EQ] = ACTIONS(3169), - [anon_sym_GT_GT_EQ] = ACTIONS(3169), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3169), - [anon_sym_AMP_EQ] = ACTIONS(3169), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3169), - [anon_sym_PLUS_EQ] = ACTIONS(3169), - [anon_sym_DASH_EQ] = ACTIONS(3169), - [anon_sym_PIPE_EQ] = ACTIONS(3169), - [anon_sym_CARET_EQ] = ACTIONS(3169), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_lock] = ACTIONS(3169), - [anon_sym_rlock] = ACTIONS(3169), - [anon_sym_unsafe] = ACTIONS(3169), - [anon_sym_sql] = ACTIONS(3169), - [sym_int_literal] = ACTIONS(3169), - [sym_float_literal] = ACTIONS(3169), - [sym_rune_literal] = ACTIONS(3169), - [anon_sym_AT] = ACTIONS(3169), - [anon_sym_shared] = ACTIONS(3169), - [anon_sym_map_LBRACK] = ACTIONS(3169), - [anon_sym_chan] = ACTIONS(3169), - [anon_sym_thread] = ACTIONS(3169), - [anon_sym_atomic] = ACTIONS(3169), - [anon_sym_assert] = ACTIONS(3169), - [anon_sym_defer] = ACTIONS(3169), - [anon_sym_goto] = ACTIONS(3169), - [anon_sym_break] = ACTIONS(3169), - [anon_sym_continue] = ACTIONS(3169), - [anon_sym_return] = ACTIONS(3169), - [anon_sym_DOLLARfor] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3169), - [anon_sym_POUND] = ACTIONS(3169), - [anon_sym_asm] = ACTIONS(3169), - [anon_sym_AT_LBRACK] = ACTIONS(3169), - [sym___double_quote] = ACTIONS(3169), - [sym___single_quote] = ACTIONS(3169), - [sym___c_double_quote] = ACTIONS(3169), - [sym___c_single_quote] = ACTIONS(3169), - [sym___r_double_quote] = ACTIONS(3169), - [sym___r_single_quote] = ACTIONS(3169), + [ts_builtin_sym_end] = ACTIONS(3149), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LF] = ACTIONS(3151), + [anon_sym_CR] = ACTIONS(3151), + [anon_sym_CR_LF] = ACTIONS(3151), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3151), + [anon_sym_as] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_COMMA] = ACTIONS(3151), + [anon_sym_const] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_EQ] = ACTIONS(3151), + [anon_sym___global] = ACTIONS(3151), + [anon_sym_type] = ACTIONS(3151), + [anon_sym_PIPE] = ACTIONS(3151), + [anon_sym_fn] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_SLASH] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(3151), + [anon_sym_GT] = ACTIONS(3151), + [anon_sym_EQ_EQ] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3151), + [anon_sym_LT_EQ] = ACTIONS(3151), + [anon_sym_GT_EQ] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_struct] = ACTIONS(3151), + [anon_sym_union] = ACTIONS(3151), + [anon_sym_pub] = ACTIONS(3151), + [anon_sym_mut] = ACTIONS(3151), + [anon_sym_enum] = ACTIONS(3151), + [anon_sym_interface] = ACTIONS(3151), + [anon_sym_PLUS_PLUS] = ACTIONS(3151), + [anon_sym_DASH_DASH] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3151), + [anon_sym_BANG] = ACTIONS(3151), + [anon_sym_go] = ACTIONS(3151), + [anon_sym_spawn] = ACTIONS(3151), + [anon_sym_json_DOTdecode] = ACTIONS(3151), + [anon_sym_LBRACK2] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3151), + [anon_sym_CARET] = ACTIONS(3151), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LT_DASH] = ACTIONS(3151), + [anon_sym_LT_LT] = ACTIONS(3151), + [anon_sym_GT_GT] = ACTIONS(3151), + [anon_sym_GT_GT_GT] = ACTIONS(3151), + [anon_sym_AMP_CARET] = ACTIONS(3151), + [anon_sym_AMP_AMP] = ACTIONS(3151), + [anon_sym_PIPE_PIPE] = ACTIONS(3151), + [anon_sym_or] = ACTIONS(3151), + [sym_none] = ACTIONS(3151), + [sym_true] = ACTIONS(3151), + [sym_false] = ACTIONS(3151), + [sym_nil] = ACTIONS(3151), + [anon_sym_QMARK_DOT] = ACTIONS(3151), + [anon_sym_POUND_LBRACK] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_DOLLARif] = ACTIONS(3151), + [anon_sym_is] = ACTIONS(3151), + [anon_sym_BANGis] = ACTIONS(3151), + [anon_sym_in] = ACTIONS(3151), + [anon_sym_BANGin] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(3151), + [anon_sym_select] = ACTIONS(3151), + [anon_sym_STAR_EQ] = ACTIONS(3151), + [anon_sym_SLASH_EQ] = ACTIONS(3151), + [anon_sym_PERCENT_EQ] = ACTIONS(3151), + [anon_sym_LT_LT_EQ] = ACTIONS(3151), + [anon_sym_GT_GT_EQ] = ACTIONS(3151), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3151), + [anon_sym_AMP_EQ] = ACTIONS(3151), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3151), + [anon_sym_PLUS_EQ] = ACTIONS(3151), + [anon_sym_DASH_EQ] = ACTIONS(3151), + [anon_sym_PIPE_EQ] = ACTIONS(3151), + [anon_sym_CARET_EQ] = ACTIONS(3151), + [anon_sym_COLON_EQ] = ACTIONS(3151), + [anon_sym_lock] = ACTIONS(3151), + [anon_sym_rlock] = ACTIONS(3151), + [anon_sym_unsafe] = ACTIONS(3151), + [anon_sym_sql] = ACTIONS(3151), + [sym_int_literal] = ACTIONS(3151), + [sym_float_literal] = ACTIONS(3151), + [sym_rune_literal] = ACTIONS(3151), + [anon_sym_AT] = ACTIONS(3151), + [anon_sym_shared] = ACTIONS(3151), + [anon_sym_map_LBRACK] = ACTIONS(3151), + [anon_sym_chan] = ACTIONS(3151), + [anon_sym_thread] = ACTIONS(3151), + [anon_sym_atomic] = ACTIONS(3151), + [anon_sym_assert] = ACTIONS(3151), + [anon_sym_defer] = ACTIONS(3151), + [anon_sym_goto] = ACTIONS(3151), + [anon_sym_break] = ACTIONS(3151), + [anon_sym_continue] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_DOLLARfor] = ACTIONS(3151), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_POUND] = ACTIONS(3151), + [anon_sym_asm] = ACTIONS(3151), + [anon_sym_AT_LBRACK] = ACTIONS(3151), + [sym___double_quote] = ACTIONS(3151), + [sym___single_quote] = ACTIONS(3151), + [sym___c_double_quote] = ACTIONS(3151), + [sym___c_single_quote] = ACTIONS(3151), + [sym___r_double_quote] = ACTIONS(3151), + [sym___r_single_quote] = ACTIONS(3151), }, [948] = { - [ts_builtin_sym_end] = ACTIONS(3171), - [sym_identifier] = ACTIONS(3173), - [anon_sym_LF] = ACTIONS(3173), - [anon_sym_CR] = ACTIONS(3173), - [anon_sym_CR_LF] = ACTIONS(3173), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_as] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3173), - [anon_sym_const] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_EQ] = ACTIONS(3173), - [anon_sym___global] = ACTIONS(3173), - [anon_sym_type] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3173), - [anon_sym_fn] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_SLASH] = ACTIONS(3173), - [anon_sym_PERCENT] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3173), - [anon_sym_GT] = ACTIONS(3173), - [anon_sym_EQ_EQ] = ACTIONS(3173), - [anon_sym_BANG_EQ] = ACTIONS(3173), - [anon_sym_LT_EQ] = ACTIONS(3173), - [anon_sym_GT_EQ] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3173), - [anon_sym_union] = ACTIONS(3173), - [anon_sym_pub] = ACTIONS(3173), - [anon_sym_mut] = ACTIONS(3173), - [anon_sym_enum] = ACTIONS(3173), - [anon_sym_interface] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_go] = ACTIONS(3173), - [anon_sym_spawn] = ACTIONS(3173), - [anon_sym_json_DOTdecode] = ACTIONS(3173), - [anon_sym_LBRACK2] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_CARET] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_LT_DASH] = ACTIONS(3173), - [anon_sym_LT_LT] = ACTIONS(3173), - [anon_sym_GT_GT] = ACTIONS(3173), - [anon_sym_GT_GT_GT] = ACTIONS(3173), - [anon_sym_AMP_CARET] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_PIPE_PIPE] = ACTIONS(3173), - [anon_sym_or] = ACTIONS(3173), - [sym_none] = ACTIONS(3173), - [sym_true] = ACTIONS(3173), - [sym_false] = ACTIONS(3173), - [sym_nil] = ACTIONS(3173), - [anon_sym_QMARK_DOT] = ACTIONS(3173), - [anon_sym_POUND_LBRACK] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_DOLLARif] = ACTIONS(3173), - [anon_sym_is] = ACTIONS(3173), - [anon_sym_BANGis] = ACTIONS(3173), - [anon_sym_in] = ACTIONS(3173), - [anon_sym_BANGin] = ACTIONS(3173), - [anon_sym_match] = ACTIONS(3173), - [anon_sym_select] = ACTIONS(3173), - [anon_sym_STAR_EQ] = ACTIONS(3173), - [anon_sym_SLASH_EQ] = ACTIONS(3173), - [anon_sym_PERCENT_EQ] = ACTIONS(3173), - [anon_sym_LT_LT_EQ] = ACTIONS(3173), - [anon_sym_GT_GT_EQ] = ACTIONS(3173), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3173), - [anon_sym_AMP_EQ] = ACTIONS(3173), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3173), - [anon_sym_PLUS_EQ] = ACTIONS(3173), - [anon_sym_DASH_EQ] = ACTIONS(3173), - [anon_sym_PIPE_EQ] = ACTIONS(3173), - [anon_sym_CARET_EQ] = ACTIONS(3173), - [anon_sym_COLON_EQ] = ACTIONS(3173), - [anon_sym_lock] = ACTIONS(3173), - [anon_sym_rlock] = ACTIONS(3173), - [anon_sym_unsafe] = ACTIONS(3173), - [anon_sym_sql] = ACTIONS(3173), - [sym_int_literal] = ACTIONS(3173), - [sym_float_literal] = ACTIONS(3173), - [sym_rune_literal] = ACTIONS(3173), - [anon_sym_AT] = ACTIONS(3173), - [anon_sym_shared] = ACTIONS(3173), - [anon_sym_map_LBRACK] = ACTIONS(3173), - [anon_sym_chan] = ACTIONS(3173), - [anon_sym_thread] = ACTIONS(3173), - [anon_sym_atomic] = ACTIONS(3173), - [anon_sym_assert] = ACTIONS(3173), - [anon_sym_defer] = ACTIONS(3173), - [anon_sym_goto] = ACTIONS(3173), - [anon_sym_break] = ACTIONS(3173), - [anon_sym_continue] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_DOLLARfor] = ACTIONS(3173), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_POUND] = ACTIONS(3173), - [anon_sym_asm] = ACTIONS(3173), - [anon_sym_AT_LBRACK] = ACTIONS(3173), - [sym___double_quote] = ACTIONS(3173), - [sym___single_quote] = ACTIONS(3173), - [sym___c_double_quote] = ACTIONS(3173), - [sym___c_single_quote] = ACTIONS(3173), - [sym___r_double_quote] = ACTIONS(3173), - [sym___r_single_quote] = ACTIONS(3173), + [ts_builtin_sym_end] = ACTIONS(3153), + [sym_identifier] = ACTIONS(3155), + [anon_sym_LF] = ACTIONS(3155), + [anon_sym_CR] = ACTIONS(3155), + [anon_sym_CR_LF] = ACTIONS(3155), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3155), + [anon_sym_as] = ACTIONS(3155), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_COMMA] = ACTIONS(3155), + [anon_sym_const] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_EQ] = ACTIONS(3155), + [anon_sym___global] = ACTIONS(3155), + [anon_sym_type] = ACTIONS(3155), + [anon_sym_PIPE] = ACTIONS(3155), + [anon_sym_fn] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_SLASH] = ACTIONS(3155), + [anon_sym_PERCENT] = ACTIONS(3155), + [anon_sym_LT] = ACTIONS(3155), + [anon_sym_GT] = ACTIONS(3155), + [anon_sym_EQ_EQ] = ACTIONS(3155), + [anon_sym_BANG_EQ] = ACTIONS(3155), + [anon_sym_LT_EQ] = ACTIONS(3155), + [anon_sym_GT_EQ] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3153), + [anon_sym_struct] = ACTIONS(3155), + [anon_sym_union] = ACTIONS(3155), + [anon_sym_pub] = ACTIONS(3155), + [anon_sym_mut] = ACTIONS(3155), + [anon_sym_enum] = ACTIONS(3155), + [anon_sym_interface] = ACTIONS(3155), + [anon_sym_PLUS_PLUS] = ACTIONS(3155), + [anon_sym_DASH_DASH] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3155), + [anon_sym_go] = ACTIONS(3155), + [anon_sym_spawn] = ACTIONS(3155), + [anon_sym_json_DOTdecode] = ACTIONS(3155), + [anon_sym_LBRACK2] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_CARET] = ACTIONS(3155), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_LT_DASH] = ACTIONS(3155), + [anon_sym_LT_LT] = ACTIONS(3155), + [anon_sym_GT_GT] = ACTIONS(3155), + [anon_sym_GT_GT_GT] = ACTIONS(3155), + [anon_sym_AMP_CARET] = ACTIONS(3155), + [anon_sym_AMP_AMP] = ACTIONS(3155), + [anon_sym_PIPE_PIPE] = ACTIONS(3155), + [anon_sym_or] = ACTIONS(3155), + [sym_none] = ACTIONS(3155), + [sym_true] = ACTIONS(3155), + [sym_false] = ACTIONS(3155), + [sym_nil] = ACTIONS(3155), + [anon_sym_QMARK_DOT] = ACTIONS(3155), + [anon_sym_POUND_LBRACK] = ACTIONS(3155), + [anon_sym_if] = ACTIONS(3155), + [anon_sym_DOLLARif] = ACTIONS(3155), + [anon_sym_is] = ACTIONS(3155), + [anon_sym_BANGis] = ACTIONS(3155), + [anon_sym_in] = ACTIONS(3155), + [anon_sym_BANGin] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3155), + [anon_sym_select] = ACTIONS(3155), + [anon_sym_STAR_EQ] = ACTIONS(3155), + [anon_sym_SLASH_EQ] = ACTIONS(3155), + [anon_sym_PERCENT_EQ] = ACTIONS(3155), + [anon_sym_LT_LT_EQ] = ACTIONS(3155), + [anon_sym_GT_GT_EQ] = ACTIONS(3155), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3155), + [anon_sym_AMP_EQ] = ACTIONS(3155), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3155), + [anon_sym_PLUS_EQ] = ACTIONS(3155), + [anon_sym_DASH_EQ] = ACTIONS(3155), + [anon_sym_PIPE_EQ] = ACTIONS(3155), + [anon_sym_CARET_EQ] = ACTIONS(3155), + [anon_sym_COLON_EQ] = ACTIONS(3155), + [anon_sym_lock] = ACTIONS(3155), + [anon_sym_rlock] = ACTIONS(3155), + [anon_sym_unsafe] = ACTIONS(3155), + [anon_sym_sql] = ACTIONS(3155), + [sym_int_literal] = ACTIONS(3155), + [sym_float_literal] = ACTIONS(3155), + [sym_rune_literal] = ACTIONS(3155), + [anon_sym_AT] = ACTIONS(3155), + [anon_sym_shared] = ACTIONS(3155), + [anon_sym_map_LBRACK] = ACTIONS(3155), + [anon_sym_chan] = ACTIONS(3155), + [anon_sym_thread] = ACTIONS(3155), + [anon_sym_atomic] = ACTIONS(3155), + [anon_sym_assert] = ACTIONS(3155), + [anon_sym_defer] = ACTIONS(3155), + [anon_sym_goto] = ACTIONS(3155), + [anon_sym_break] = ACTIONS(3155), + [anon_sym_continue] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3155), + [anon_sym_DOLLARfor] = ACTIONS(3155), + [anon_sym_for] = ACTIONS(3155), + [anon_sym_POUND] = ACTIONS(3155), + [anon_sym_asm] = ACTIONS(3155), + [anon_sym_AT_LBRACK] = ACTIONS(3155), + [sym___double_quote] = ACTIONS(3155), + [sym___single_quote] = ACTIONS(3155), + [sym___c_double_quote] = ACTIONS(3155), + [sym___c_single_quote] = ACTIONS(3155), + [sym___r_double_quote] = ACTIONS(3155), + [sym___r_single_quote] = ACTIONS(3155), }, [949] = { - [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), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2951), - [anon_sym_as] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_COMMA] = ACTIONS(2949), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_EQ] = ACTIONS(2949), - [anon_sym___global] = ACTIONS(2949), - [anon_sym_type] = ACTIONS(2949), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_fn] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_PERCENT] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_GT] = ACTIONS(2951), - [anon_sym_EQ_EQ] = ACTIONS(2951), - [anon_sym_BANG_EQ] = ACTIONS(2951), - [anon_sym_LT_EQ] = ACTIONS(2951), - [anon_sym_GT_EQ] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2954), - [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(2951), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_QMARK] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_go] = ACTIONS(2949), - [anon_sym_spawn] = ACTIONS(2949), - [anon_sym_json_DOTdecode] = ACTIONS(2949), - [anon_sym_LBRACK2] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2949), - [anon_sym_CARET] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_LT_DASH] = ACTIONS(2949), - [anon_sym_LT_LT] = ACTIONS(2951), - [anon_sym_GT_GT] = ACTIONS(2951), - [anon_sym_GT_GT_GT] = ACTIONS(2951), - [anon_sym_AMP_CARET] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2951), - [anon_sym_PIPE_PIPE] = ACTIONS(2951), - [anon_sym_or] = ACTIONS(2951), - [sym_none] = ACTIONS(2949), - [sym_true] = ACTIONS(2949), - [sym_false] = ACTIONS(2949), - [sym_nil] = ACTIONS(2949), - [anon_sym_QMARK_DOT] = ACTIONS(2951), - [anon_sym_POUND_LBRACK] = ACTIONS(2951), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2949), - [anon_sym_is] = ACTIONS(2951), - [anon_sym_BANGis] = ACTIONS(2951), - [anon_sym_in] = ACTIONS(2951), - [anon_sym_BANGin] = ACTIONS(2951), - [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_AT] = ACTIONS(2949), - [anon_sym_shared] = ACTIONS(2949), - [anon_sym_map_LBRACK] = ACTIONS(2949), - [anon_sym_chan] = ACTIONS(2949), - [anon_sym_thread] = ACTIONS(2949), - [anon_sym_atomic] = ACTIONS(2949), - [anon_sym_assert] = ACTIONS(2949), - [anon_sym_defer] = ACTIONS(2949), - [anon_sym_goto] = ACTIONS(2949), - [anon_sym_break] = ACTIONS(2949), - [anon_sym_continue] = ACTIONS(2949), - [anon_sym_return] = ACTIONS(2949), - [anon_sym_DOLLARfor] = ACTIONS(2949), - [anon_sym_for] = ACTIONS(2949), - [anon_sym_POUND] = ACTIONS(2949), - [anon_sym_asm] = ACTIONS(2949), - [anon_sym_AT_LBRACK] = ACTIONS(2949), - [sym___double_quote] = ACTIONS(2949), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2949), - [sym___c_single_quote] = ACTIONS(2949), - [sym___r_double_quote] = ACTIONS(2949), - [sym___r_single_quote] = ACTIONS(2949), + [ts_builtin_sym_end] = ACTIONS(3157), + [sym_identifier] = ACTIONS(3159), + [anon_sym_LF] = ACTIONS(3159), + [anon_sym_CR] = ACTIONS(3159), + [anon_sym_CR_LF] = ACTIONS(3159), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3159), + [anon_sym_as] = ACTIONS(3159), + [anon_sym_LBRACE] = ACTIONS(3159), + [anon_sym_COMMA] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_EQ] = ACTIONS(3159), + [anon_sym___global] = ACTIONS(3159), + [anon_sym_type] = ACTIONS(3159), + [anon_sym_PIPE] = ACTIONS(3159), + [anon_sym_fn] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3159), + [anon_sym_SLASH] = ACTIONS(3159), + [anon_sym_PERCENT] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(3159), + [anon_sym_GT] = ACTIONS(3159), + [anon_sym_EQ_EQ] = ACTIONS(3159), + [anon_sym_BANG_EQ] = ACTIONS(3159), + [anon_sym_LT_EQ] = ACTIONS(3159), + [anon_sym_GT_EQ] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_struct] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3159), + [anon_sym_pub] = ACTIONS(3159), + [anon_sym_mut] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3159), + [anon_sym_interface] = ACTIONS(3159), + [anon_sym_PLUS_PLUS] = ACTIONS(3159), + [anon_sym_DASH_DASH] = ACTIONS(3159), + [anon_sym_QMARK] = ACTIONS(3159), + [anon_sym_BANG] = ACTIONS(3159), + [anon_sym_go] = ACTIONS(3159), + [anon_sym_spawn] = ACTIONS(3159), + [anon_sym_json_DOTdecode] = ACTIONS(3159), + [anon_sym_LBRACK2] = ACTIONS(3159), + [anon_sym_TILDE] = ACTIONS(3159), + [anon_sym_CARET] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LT_DASH] = ACTIONS(3159), + [anon_sym_LT_LT] = ACTIONS(3159), + [anon_sym_GT_GT] = ACTIONS(3159), + [anon_sym_GT_GT_GT] = ACTIONS(3159), + [anon_sym_AMP_CARET] = ACTIONS(3159), + [anon_sym_AMP_AMP] = ACTIONS(3159), + [anon_sym_PIPE_PIPE] = ACTIONS(3159), + [anon_sym_or] = ACTIONS(3159), + [sym_none] = ACTIONS(3159), + [sym_true] = ACTIONS(3159), + [sym_false] = ACTIONS(3159), + [sym_nil] = ACTIONS(3159), + [anon_sym_QMARK_DOT] = ACTIONS(3159), + [anon_sym_POUND_LBRACK] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_DOLLARif] = ACTIONS(3159), + [anon_sym_is] = ACTIONS(3159), + [anon_sym_BANGis] = ACTIONS(3159), + [anon_sym_in] = ACTIONS(3159), + [anon_sym_BANGin] = ACTIONS(3159), + [anon_sym_match] = ACTIONS(3159), + [anon_sym_select] = ACTIONS(3159), + [anon_sym_STAR_EQ] = ACTIONS(3159), + [anon_sym_SLASH_EQ] = ACTIONS(3159), + [anon_sym_PERCENT_EQ] = ACTIONS(3159), + [anon_sym_LT_LT_EQ] = ACTIONS(3159), + [anon_sym_GT_GT_EQ] = ACTIONS(3159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3159), + [anon_sym_AMP_EQ] = ACTIONS(3159), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3159), + [anon_sym_PLUS_EQ] = ACTIONS(3159), + [anon_sym_DASH_EQ] = ACTIONS(3159), + [anon_sym_PIPE_EQ] = ACTIONS(3159), + [anon_sym_CARET_EQ] = ACTIONS(3159), + [anon_sym_COLON_EQ] = ACTIONS(3159), + [anon_sym_lock] = ACTIONS(3159), + [anon_sym_rlock] = ACTIONS(3159), + [anon_sym_unsafe] = ACTIONS(3159), + [anon_sym_sql] = ACTIONS(3159), + [sym_int_literal] = ACTIONS(3159), + [sym_float_literal] = ACTIONS(3159), + [sym_rune_literal] = ACTIONS(3159), + [anon_sym_AT] = ACTIONS(3159), + [anon_sym_shared] = ACTIONS(3159), + [anon_sym_map_LBRACK] = ACTIONS(3159), + [anon_sym_chan] = ACTIONS(3159), + [anon_sym_thread] = ACTIONS(3159), + [anon_sym_atomic] = ACTIONS(3159), + [anon_sym_assert] = ACTIONS(3159), + [anon_sym_defer] = ACTIONS(3159), + [anon_sym_goto] = ACTIONS(3159), + [anon_sym_break] = ACTIONS(3159), + [anon_sym_continue] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_DOLLARfor] = ACTIONS(3159), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_POUND] = ACTIONS(3159), + [anon_sym_asm] = ACTIONS(3159), + [anon_sym_AT_LBRACK] = ACTIONS(3159), + [sym___double_quote] = ACTIONS(3159), + [sym___single_quote] = ACTIONS(3159), + [sym___c_double_quote] = ACTIONS(3159), + [sym___c_single_quote] = ACTIONS(3159), + [sym___r_double_quote] = ACTIONS(3159), + [sym___r_single_quote] = ACTIONS(3159), }, [950] = { - [ts_builtin_sym_end] = ACTIONS(2969), - [sym_identifier] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2971), - [anon_sym_CR] = ACTIONS(2971), - [anon_sym_CR_LF] = ACTIONS(2971), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2973), - [anon_sym_as] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_const] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2971), - [anon_sym___global] = ACTIONS(2971), - [anon_sym_type] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(2973), - [anon_sym_fn] = ACTIONS(2971), - [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(2976), - [anon_sym_struct] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(2971), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_mut] = ACTIONS(2971), - [anon_sym_enum] = ACTIONS(2971), - [anon_sym_interface] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_BANG] = ACTIONS(2973), - [anon_sym_go] = ACTIONS(2971), - [anon_sym_spawn] = ACTIONS(2971), - [anon_sym_json_DOTdecode] = ACTIONS(2971), - [anon_sym_LBRACK2] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_CARET] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2971), - [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(2971), - [sym_true] = ACTIONS(2971), - [sym_false] = ACTIONS(2971), - [sym_nil] = ACTIONS(2971), - [anon_sym_QMARK_DOT] = ACTIONS(2973), - [anon_sym_POUND_LBRACK] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2971), - [anon_sym_DOLLARif] = ACTIONS(2971), - [anon_sym_is] = ACTIONS(2973), - [anon_sym_BANGis] = ACTIONS(2973), - [anon_sym_in] = ACTIONS(2973), - [anon_sym_BANGin] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [anon_sym_STAR_EQ] = ACTIONS(2971), - [anon_sym_SLASH_EQ] = ACTIONS(2971), - [anon_sym_PERCENT_EQ] = ACTIONS(2971), - [anon_sym_LT_LT_EQ] = ACTIONS(2971), - [anon_sym_GT_GT_EQ] = ACTIONS(2971), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2971), - [anon_sym_AMP_EQ] = ACTIONS(2971), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2971), - [anon_sym_PLUS_EQ] = ACTIONS(2971), - [anon_sym_DASH_EQ] = ACTIONS(2971), - [anon_sym_PIPE_EQ] = ACTIONS(2971), - [anon_sym_CARET_EQ] = ACTIONS(2971), - [anon_sym_COLON_EQ] = ACTIONS(2971), - [anon_sym_lock] = ACTIONS(2971), - [anon_sym_rlock] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(2971), - [anon_sym_sql] = ACTIONS(2971), - [sym_int_literal] = ACTIONS(2971), - [sym_float_literal] = ACTIONS(2971), - [sym_rune_literal] = ACTIONS(2971), - [anon_sym_AT] = ACTIONS(2971), - [anon_sym_shared] = ACTIONS(2971), - [anon_sym_map_LBRACK] = ACTIONS(2971), - [anon_sym_chan] = ACTIONS(2971), - [anon_sym_thread] = ACTIONS(2971), - [anon_sym_atomic] = ACTIONS(2971), - [anon_sym_assert] = ACTIONS(2971), - [anon_sym_defer] = ACTIONS(2971), - [anon_sym_goto] = ACTIONS(2971), - [anon_sym_break] = ACTIONS(2971), - [anon_sym_continue] = ACTIONS(2971), - [anon_sym_return] = ACTIONS(2971), - [anon_sym_DOLLARfor] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2971), - [anon_sym_POUND] = ACTIONS(2971), - [anon_sym_asm] = ACTIONS(2971), - [anon_sym_AT_LBRACK] = ACTIONS(2971), - [sym___double_quote] = ACTIONS(2971), - [sym___single_quote] = ACTIONS(2971), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2971), - [sym___r_double_quote] = ACTIONS(2971), - [sym___r_single_quote] = ACTIONS(2971), + [ts_builtin_sym_end] = ACTIONS(3161), + [sym_identifier] = ACTIONS(3163), + [anon_sym_LF] = ACTIONS(3163), + [anon_sym_CR] = ACTIONS(3163), + [anon_sym_CR_LF] = ACTIONS(3163), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3163), + [anon_sym_as] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_COMMA] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_LPAREN] = ACTIONS(3163), + [anon_sym_EQ] = ACTIONS(3163), + [anon_sym___global] = ACTIONS(3163), + [anon_sym_type] = ACTIONS(3163), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_fn] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_SLASH] = ACTIONS(3163), + [anon_sym_PERCENT] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(3163), + [anon_sym_GT] = ACTIONS(3163), + [anon_sym_EQ_EQ] = ACTIONS(3163), + [anon_sym_BANG_EQ] = ACTIONS(3163), + [anon_sym_LT_EQ] = ACTIONS(3163), + [anon_sym_GT_EQ] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_struct] = ACTIONS(3163), + [anon_sym_union] = ACTIONS(3163), + [anon_sym_pub] = ACTIONS(3163), + [anon_sym_mut] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [anon_sym_interface] = ACTIONS(3163), + [anon_sym_PLUS_PLUS] = ACTIONS(3163), + [anon_sym_DASH_DASH] = ACTIONS(3163), + [anon_sym_QMARK] = ACTIONS(3163), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_go] = ACTIONS(3163), + [anon_sym_spawn] = ACTIONS(3163), + [anon_sym_json_DOTdecode] = ACTIONS(3163), + [anon_sym_LBRACK2] = ACTIONS(3163), + [anon_sym_TILDE] = ACTIONS(3163), + [anon_sym_CARET] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LT_DASH] = ACTIONS(3163), + [anon_sym_LT_LT] = ACTIONS(3163), + [anon_sym_GT_GT] = ACTIONS(3163), + [anon_sym_GT_GT_GT] = ACTIONS(3163), + [anon_sym_AMP_CARET] = ACTIONS(3163), + [anon_sym_AMP_AMP] = ACTIONS(3163), + [anon_sym_PIPE_PIPE] = ACTIONS(3163), + [anon_sym_or] = ACTIONS(3163), + [sym_none] = ACTIONS(3163), + [sym_true] = ACTIONS(3163), + [sym_false] = ACTIONS(3163), + [sym_nil] = ACTIONS(3163), + [anon_sym_QMARK_DOT] = ACTIONS(3163), + [anon_sym_POUND_LBRACK] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_DOLLARif] = ACTIONS(3163), + [anon_sym_is] = ACTIONS(3163), + [anon_sym_BANGis] = ACTIONS(3163), + [anon_sym_in] = ACTIONS(3163), + [anon_sym_BANGin] = ACTIONS(3163), + [anon_sym_match] = ACTIONS(3163), + [anon_sym_select] = ACTIONS(3163), + [anon_sym_STAR_EQ] = ACTIONS(3163), + [anon_sym_SLASH_EQ] = ACTIONS(3163), + [anon_sym_PERCENT_EQ] = ACTIONS(3163), + [anon_sym_LT_LT_EQ] = ACTIONS(3163), + [anon_sym_GT_GT_EQ] = ACTIONS(3163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3163), + [anon_sym_AMP_EQ] = ACTIONS(3163), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3163), + [anon_sym_PLUS_EQ] = ACTIONS(3163), + [anon_sym_DASH_EQ] = ACTIONS(3163), + [anon_sym_PIPE_EQ] = ACTIONS(3163), + [anon_sym_CARET_EQ] = ACTIONS(3163), + [anon_sym_COLON_EQ] = ACTIONS(3163), + [anon_sym_lock] = ACTIONS(3163), + [anon_sym_rlock] = ACTIONS(3163), + [anon_sym_unsafe] = ACTIONS(3163), + [anon_sym_sql] = ACTIONS(3163), + [sym_int_literal] = ACTIONS(3163), + [sym_float_literal] = ACTIONS(3163), + [sym_rune_literal] = ACTIONS(3163), + [anon_sym_AT] = ACTIONS(3163), + [anon_sym_shared] = ACTIONS(3163), + [anon_sym_map_LBRACK] = ACTIONS(3163), + [anon_sym_chan] = ACTIONS(3163), + [anon_sym_thread] = ACTIONS(3163), + [anon_sym_atomic] = ACTIONS(3163), + [anon_sym_assert] = ACTIONS(3163), + [anon_sym_defer] = ACTIONS(3163), + [anon_sym_goto] = ACTIONS(3163), + [anon_sym_break] = ACTIONS(3163), + [anon_sym_continue] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_DOLLARfor] = ACTIONS(3163), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_POUND] = ACTIONS(3163), + [anon_sym_asm] = ACTIONS(3163), + [anon_sym_AT_LBRACK] = ACTIONS(3163), + [sym___double_quote] = ACTIONS(3163), + [sym___single_quote] = ACTIONS(3163), + [sym___c_double_quote] = ACTIONS(3163), + [sym___c_single_quote] = ACTIONS(3163), + [sym___r_double_quote] = ACTIONS(3163), + [sym___r_single_quote] = ACTIONS(3163), }, [951] = { - [ts_builtin_sym_end] = ACTIONS(3175), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LF] = ACTIONS(3177), - [anon_sym_CR] = ACTIONS(3177), - [anon_sym_CR_LF] = ACTIONS(3177), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_as] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3177), - [anon_sym_const] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym_EQ] = ACTIONS(3177), - [anon_sym___global] = ACTIONS(3177), - [anon_sym_type] = ACTIONS(3177), - [anon_sym_PIPE] = ACTIONS(3177), - [anon_sym_fn] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3177), - [anon_sym_SLASH] = ACTIONS(3177), - [anon_sym_PERCENT] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3177), - [anon_sym_EQ_EQ] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_LT_EQ] = ACTIONS(3177), - [anon_sym_GT_EQ] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3175), - [anon_sym_struct] = ACTIONS(3177), - [anon_sym_union] = ACTIONS(3177), - [anon_sym_pub] = ACTIONS(3177), - [anon_sym_mut] = ACTIONS(3177), - [anon_sym_enum] = ACTIONS(3177), - [anon_sym_interface] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_DASH_DASH] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_go] = ACTIONS(3177), - [anon_sym_spawn] = ACTIONS(3177), - [anon_sym_json_DOTdecode] = ACTIONS(3177), - [anon_sym_LBRACK2] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_CARET] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LT_DASH] = ACTIONS(3177), - [anon_sym_LT_LT] = ACTIONS(3177), - [anon_sym_GT_GT] = ACTIONS(3177), - [anon_sym_GT_GT_GT] = ACTIONS(3177), - [anon_sym_AMP_CARET] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_PIPE_PIPE] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [sym_none] = ACTIONS(3177), - [sym_true] = ACTIONS(3177), - [sym_false] = ACTIONS(3177), - [sym_nil] = ACTIONS(3177), - [anon_sym_QMARK_DOT] = ACTIONS(3177), - [anon_sym_POUND_LBRACK] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_DOLLARif] = ACTIONS(3177), - [anon_sym_is] = ACTIONS(3177), - [anon_sym_BANGis] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_BANGin] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_select] = ACTIONS(3177), - [anon_sym_STAR_EQ] = ACTIONS(3177), - [anon_sym_SLASH_EQ] = ACTIONS(3177), - [anon_sym_PERCENT_EQ] = ACTIONS(3177), - [anon_sym_LT_LT_EQ] = ACTIONS(3177), - [anon_sym_GT_GT_EQ] = ACTIONS(3177), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3177), - [anon_sym_AMP_EQ] = ACTIONS(3177), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3177), - [anon_sym_PLUS_EQ] = ACTIONS(3177), - [anon_sym_DASH_EQ] = ACTIONS(3177), - [anon_sym_PIPE_EQ] = ACTIONS(3177), - [anon_sym_CARET_EQ] = ACTIONS(3177), - [anon_sym_COLON_EQ] = ACTIONS(3177), - [anon_sym_lock] = ACTIONS(3177), - [anon_sym_rlock] = ACTIONS(3177), - [anon_sym_unsafe] = ACTIONS(3177), - [anon_sym_sql] = ACTIONS(3177), - [sym_int_literal] = ACTIONS(3177), - [sym_float_literal] = ACTIONS(3177), - [sym_rune_literal] = ACTIONS(3177), - [anon_sym_AT] = ACTIONS(3177), - [anon_sym_shared] = ACTIONS(3177), - [anon_sym_map_LBRACK] = ACTIONS(3177), - [anon_sym_chan] = ACTIONS(3177), - [anon_sym_thread] = ACTIONS(3177), - [anon_sym_atomic] = ACTIONS(3177), - [anon_sym_assert] = ACTIONS(3177), - [anon_sym_defer] = ACTIONS(3177), - [anon_sym_goto] = ACTIONS(3177), - [anon_sym_break] = ACTIONS(3177), - [anon_sym_continue] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_DOLLARfor] = ACTIONS(3177), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_POUND] = ACTIONS(3177), - [anon_sym_asm] = ACTIONS(3177), - [anon_sym_AT_LBRACK] = ACTIONS(3177), - [sym___double_quote] = ACTIONS(3177), - [sym___single_quote] = ACTIONS(3177), - [sym___c_double_quote] = ACTIONS(3177), - [sym___c_single_quote] = ACTIONS(3177), - [sym___r_double_quote] = ACTIONS(3177), - [sym___r_single_quote] = ACTIONS(3177), + [ts_builtin_sym_end] = ACTIONS(3165), + [sym_identifier] = ACTIONS(3167), + [anon_sym_LF] = ACTIONS(3167), + [anon_sym_CR] = ACTIONS(3167), + [anon_sym_CR_LF] = ACTIONS(3167), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3167), + [anon_sym_as] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_COMMA] = ACTIONS(3167), + [anon_sym_const] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_EQ] = ACTIONS(3167), + [anon_sym___global] = ACTIONS(3167), + [anon_sym_type] = ACTIONS(3167), + [anon_sym_PIPE] = ACTIONS(3167), + [anon_sym_fn] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(3167), + [anon_sym_SLASH] = ACTIONS(3167), + [anon_sym_PERCENT] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_GT] = ACTIONS(3167), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_BANG_EQ] = ACTIONS(3167), + [anon_sym_LT_EQ] = ACTIONS(3167), + [anon_sym_GT_EQ] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_struct] = ACTIONS(3167), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_pub] = ACTIONS(3167), + [anon_sym_mut] = ACTIONS(3167), + [anon_sym_enum] = ACTIONS(3167), + [anon_sym_interface] = ACTIONS(3167), + [anon_sym_PLUS_PLUS] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3167), + [anon_sym_QMARK] = ACTIONS(3167), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_go] = ACTIONS(3167), + [anon_sym_spawn] = ACTIONS(3167), + [anon_sym_json_DOTdecode] = ACTIONS(3167), + [anon_sym_LBRACK2] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_CARET] = ACTIONS(3167), + [anon_sym_AMP] = ACTIONS(3167), + [anon_sym_LT_DASH] = ACTIONS(3167), + [anon_sym_LT_LT] = ACTIONS(3167), + [anon_sym_GT_GT] = ACTIONS(3167), + [anon_sym_GT_GT_GT] = ACTIONS(3167), + [anon_sym_AMP_CARET] = ACTIONS(3167), + [anon_sym_AMP_AMP] = ACTIONS(3167), + [anon_sym_PIPE_PIPE] = ACTIONS(3167), + [anon_sym_or] = ACTIONS(3167), + [sym_none] = ACTIONS(3167), + [sym_true] = ACTIONS(3167), + [sym_false] = ACTIONS(3167), + [sym_nil] = ACTIONS(3167), + [anon_sym_QMARK_DOT] = ACTIONS(3167), + [anon_sym_POUND_LBRACK] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_DOLLARif] = ACTIONS(3167), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_BANGis] = ACTIONS(3167), + [anon_sym_in] = ACTIONS(3167), + [anon_sym_BANGin] = ACTIONS(3167), + [anon_sym_match] = ACTIONS(3167), + [anon_sym_select] = ACTIONS(3167), + [anon_sym_STAR_EQ] = ACTIONS(3167), + [anon_sym_SLASH_EQ] = ACTIONS(3167), + [anon_sym_PERCENT_EQ] = ACTIONS(3167), + [anon_sym_LT_LT_EQ] = ACTIONS(3167), + [anon_sym_GT_GT_EQ] = ACTIONS(3167), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3167), + [anon_sym_AMP_EQ] = ACTIONS(3167), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3167), + [anon_sym_PLUS_EQ] = ACTIONS(3167), + [anon_sym_DASH_EQ] = ACTIONS(3167), + [anon_sym_PIPE_EQ] = ACTIONS(3167), + [anon_sym_CARET_EQ] = ACTIONS(3167), + [anon_sym_COLON_EQ] = ACTIONS(3167), + [anon_sym_lock] = ACTIONS(3167), + [anon_sym_rlock] = ACTIONS(3167), + [anon_sym_unsafe] = ACTIONS(3167), + [anon_sym_sql] = ACTIONS(3167), + [sym_int_literal] = ACTIONS(3167), + [sym_float_literal] = ACTIONS(3167), + [sym_rune_literal] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(3167), + [anon_sym_shared] = ACTIONS(3167), + [anon_sym_map_LBRACK] = ACTIONS(3167), + [anon_sym_chan] = ACTIONS(3167), + [anon_sym_thread] = ACTIONS(3167), + [anon_sym_atomic] = ACTIONS(3167), + [anon_sym_assert] = ACTIONS(3167), + [anon_sym_defer] = ACTIONS(3167), + [anon_sym_goto] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_DOLLARfor] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_POUND] = ACTIONS(3167), + [anon_sym_asm] = ACTIONS(3167), + [anon_sym_AT_LBRACK] = ACTIONS(3167), + [sym___double_quote] = ACTIONS(3167), + [sym___single_quote] = ACTIONS(3167), + [sym___c_double_quote] = ACTIONS(3167), + [sym___c_single_quote] = ACTIONS(3167), + [sym___r_double_quote] = ACTIONS(3167), + [sym___r_single_quote] = ACTIONS(3167), }, [952] = { - [ts_builtin_sym_end] = ACTIONS(3179), - [sym_identifier] = ACTIONS(3181), - [anon_sym_LF] = ACTIONS(3181), - [anon_sym_CR] = ACTIONS(3181), - [anon_sym_CR_LF] = ACTIONS(3181), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3181), - [anon_sym_as] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3181), - [anon_sym_COMMA] = ACTIONS(3181), - [anon_sym_const] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3181), - [anon_sym_EQ] = ACTIONS(3181), - [anon_sym___global] = ACTIONS(3181), - [anon_sym_type] = ACTIONS(3181), - [anon_sym_PIPE] = ACTIONS(3181), - [anon_sym_fn] = ACTIONS(3181), - [anon_sym_PLUS] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3181), - [anon_sym_SLASH] = ACTIONS(3181), - [anon_sym_PERCENT] = ACTIONS(3181), - [anon_sym_LT] = ACTIONS(3181), - [anon_sym_GT] = ACTIONS(3181), - [anon_sym_EQ_EQ] = ACTIONS(3181), - [anon_sym_BANG_EQ] = ACTIONS(3181), - [anon_sym_LT_EQ] = ACTIONS(3181), - [anon_sym_GT_EQ] = ACTIONS(3181), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_struct] = ACTIONS(3181), - [anon_sym_union] = ACTIONS(3181), - [anon_sym_pub] = ACTIONS(3181), - [anon_sym_mut] = ACTIONS(3181), - [anon_sym_enum] = ACTIONS(3181), - [anon_sym_interface] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_BANG] = ACTIONS(3181), - [anon_sym_go] = ACTIONS(3181), - [anon_sym_spawn] = ACTIONS(3181), - [anon_sym_json_DOTdecode] = ACTIONS(3181), - [anon_sym_LBRACK2] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_CARET] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3181), - [anon_sym_LT_DASH] = ACTIONS(3181), - [anon_sym_LT_LT] = ACTIONS(3181), - [anon_sym_GT_GT] = ACTIONS(3181), - [anon_sym_GT_GT_GT] = ACTIONS(3181), - [anon_sym_AMP_CARET] = ACTIONS(3181), - [anon_sym_AMP_AMP] = ACTIONS(3181), - [anon_sym_PIPE_PIPE] = ACTIONS(3181), - [anon_sym_or] = ACTIONS(3181), - [sym_none] = ACTIONS(3181), - [sym_true] = ACTIONS(3181), - [sym_false] = ACTIONS(3181), - [sym_nil] = ACTIONS(3181), - [anon_sym_QMARK_DOT] = ACTIONS(3181), - [anon_sym_POUND_LBRACK] = ACTIONS(3181), - [anon_sym_if] = ACTIONS(3181), - [anon_sym_DOLLARif] = ACTIONS(3181), - [anon_sym_is] = ACTIONS(3181), - [anon_sym_BANGis] = ACTIONS(3181), - [anon_sym_in] = ACTIONS(3181), - [anon_sym_BANGin] = ACTIONS(3181), - [anon_sym_match] = ACTIONS(3181), - [anon_sym_select] = ACTIONS(3181), - [anon_sym_STAR_EQ] = ACTIONS(3181), - [anon_sym_SLASH_EQ] = ACTIONS(3181), - [anon_sym_PERCENT_EQ] = ACTIONS(3181), - [anon_sym_LT_LT_EQ] = ACTIONS(3181), - [anon_sym_GT_GT_EQ] = ACTIONS(3181), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3181), - [anon_sym_AMP_EQ] = ACTIONS(3181), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3181), - [anon_sym_PLUS_EQ] = ACTIONS(3181), - [anon_sym_DASH_EQ] = ACTIONS(3181), - [anon_sym_PIPE_EQ] = ACTIONS(3181), - [anon_sym_CARET_EQ] = ACTIONS(3181), - [anon_sym_COLON_EQ] = ACTIONS(3181), - [anon_sym_lock] = ACTIONS(3181), - [anon_sym_rlock] = ACTIONS(3181), - [anon_sym_unsafe] = ACTIONS(3181), - [anon_sym_sql] = ACTIONS(3181), - [sym_int_literal] = ACTIONS(3181), - [sym_float_literal] = ACTIONS(3181), - [sym_rune_literal] = ACTIONS(3181), - [anon_sym_AT] = ACTIONS(3181), - [anon_sym_shared] = ACTIONS(3181), - [anon_sym_map_LBRACK] = ACTIONS(3181), - [anon_sym_chan] = ACTIONS(3181), - [anon_sym_thread] = ACTIONS(3181), - [anon_sym_atomic] = ACTIONS(3181), - [anon_sym_assert] = ACTIONS(3181), - [anon_sym_defer] = ACTIONS(3181), - [anon_sym_goto] = ACTIONS(3181), - [anon_sym_break] = ACTIONS(3181), - [anon_sym_continue] = ACTIONS(3181), - [anon_sym_return] = ACTIONS(3181), - [anon_sym_DOLLARfor] = ACTIONS(3181), - [anon_sym_for] = ACTIONS(3181), - [anon_sym_POUND] = ACTIONS(3181), - [anon_sym_asm] = ACTIONS(3181), - [anon_sym_AT_LBRACK] = ACTIONS(3181), - [sym___double_quote] = ACTIONS(3181), - [sym___single_quote] = ACTIONS(3181), - [sym___c_double_quote] = ACTIONS(3181), - [sym___c_single_quote] = ACTIONS(3181), - [sym___r_double_quote] = ACTIONS(3181), - [sym___r_single_quote] = ACTIONS(3181), + [ts_builtin_sym_end] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3171), + [anon_sym_LF] = ACTIONS(3171), + [anon_sym_CR] = ACTIONS(3171), + [anon_sym_CR_LF] = ACTIONS(3171), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3171), + [anon_sym_as] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_COMMA] = ACTIONS(3171), + [anon_sym_const] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_EQ] = ACTIONS(3171), + [anon_sym___global] = ACTIONS(3171), + [anon_sym_type] = ACTIONS(3171), + [anon_sym_PIPE] = ACTIONS(3171), + [anon_sym_fn] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_SLASH] = ACTIONS(3171), + [anon_sym_PERCENT] = ACTIONS(3171), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3171), + [anon_sym_EQ_EQ] = ACTIONS(3171), + [anon_sym_BANG_EQ] = ACTIONS(3171), + [anon_sym_LT_EQ] = ACTIONS(3171), + [anon_sym_GT_EQ] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_struct] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_pub] = ACTIONS(3171), + [anon_sym_mut] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3171), + [anon_sym_interface] = ACTIONS(3171), + [anon_sym_PLUS_PLUS] = ACTIONS(3171), + [anon_sym_DASH_DASH] = ACTIONS(3171), + [anon_sym_QMARK] = ACTIONS(3171), + [anon_sym_BANG] = ACTIONS(3171), + [anon_sym_go] = ACTIONS(3171), + [anon_sym_spawn] = ACTIONS(3171), + [anon_sym_json_DOTdecode] = ACTIONS(3171), + [anon_sym_LBRACK2] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3171), + [anon_sym_CARET] = ACTIONS(3171), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_LT_DASH] = ACTIONS(3171), + [anon_sym_LT_LT] = ACTIONS(3171), + [anon_sym_GT_GT] = ACTIONS(3171), + [anon_sym_GT_GT_GT] = ACTIONS(3171), + [anon_sym_AMP_CARET] = ACTIONS(3171), + [anon_sym_AMP_AMP] = ACTIONS(3171), + [anon_sym_PIPE_PIPE] = ACTIONS(3171), + [anon_sym_or] = ACTIONS(3171), + [sym_none] = ACTIONS(3171), + [sym_true] = ACTIONS(3171), + [sym_false] = ACTIONS(3171), + [sym_nil] = ACTIONS(3171), + [anon_sym_QMARK_DOT] = ACTIONS(3171), + [anon_sym_POUND_LBRACK] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_DOLLARif] = ACTIONS(3171), + [anon_sym_is] = ACTIONS(3171), + [anon_sym_BANGis] = ACTIONS(3171), + [anon_sym_in] = ACTIONS(3171), + [anon_sym_BANGin] = ACTIONS(3171), + [anon_sym_match] = ACTIONS(3171), + [anon_sym_select] = ACTIONS(3171), + [anon_sym_STAR_EQ] = ACTIONS(3171), + [anon_sym_SLASH_EQ] = ACTIONS(3171), + [anon_sym_PERCENT_EQ] = ACTIONS(3171), + [anon_sym_LT_LT_EQ] = ACTIONS(3171), + [anon_sym_GT_GT_EQ] = ACTIONS(3171), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3171), + [anon_sym_AMP_EQ] = ACTIONS(3171), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3171), + [anon_sym_PLUS_EQ] = ACTIONS(3171), + [anon_sym_DASH_EQ] = ACTIONS(3171), + [anon_sym_PIPE_EQ] = ACTIONS(3171), + [anon_sym_CARET_EQ] = ACTIONS(3171), + [anon_sym_COLON_EQ] = ACTIONS(3171), + [anon_sym_lock] = ACTIONS(3171), + [anon_sym_rlock] = ACTIONS(3171), + [anon_sym_unsafe] = ACTIONS(3171), + [anon_sym_sql] = ACTIONS(3171), + [sym_int_literal] = ACTIONS(3171), + [sym_float_literal] = ACTIONS(3171), + [sym_rune_literal] = ACTIONS(3171), + [anon_sym_AT] = ACTIONS(3171), + [anon_sym_shared] = ACTIONS(3171), + [anon_sym_map_LBRACK] = ACTIONS(3171), + [anon_sym_chan] = ACTIONS(3171), + [anon_sym_thread] = ACTIONS(3171), + [anon_sym_atomic] = ACTIONS(3171), + [anon_sym_assert] = ACTIONS(3171), + [anon_sym_defer] = ACTIONS(3171), + [anon_sym_goto] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_DOLLARfor] = ACTIONS(3171), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_POUND] = ACTIONS(3171), + [anon_sym_asm] = ACTIONS(3171), + [anon_sym_AT_LBRACK] = ACTIONS(3171), + [sym___double_quote] = ACTIONS(3171), + [sym___single_quote] = ACTIONS(3171), + [sym___c_double_quote] = ACTIONS(3171), + [sym___c_single_quote] = ACTIONS(3171), + [sym___r_double_quote] = ACTIONS(3171), + [sym___r_single_quote] = ACTIONS(3171), }, [953] = { - [ts_builtin_sym_end] = ACTIONS(3183), - [sym_identifier] = ACTIONS(3185), - [anon_sym_LF] = ACTIONS(3185), - [anon_sym_CR] = ACTIONS(3185), - [anon_sym_CR_LF] = ACTIONS(3185), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3185), - [anon_sym_as] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_COMMA] = ACTIONS(3185), - [anon_sym_const] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym_EQ] = ACTIONS(3185), - [anon_sym___global] = ACTIONS(3185), - [anon_sym_type] = ACTIONS(3185), - [anon_sym_PIPE] = ACTIONS(3185), - [anon_sym_fn] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_SLASH] = ACTIONS(3185), - [anon_sym_PERCENT] = ACTIONS(3185), - [anon_sym_LT] = ACTIONS(3185), - [anon_sym_GT] = ACTIONS(3185), - [anon_sym_EQ_EQ] = ACTIONS(3185), - [anon_sym_BANG_EQ] = ACTIONS(3185), - [anon_sym_LT_EQ] = ACTIONS(3185), - [anon_sym_GT_EQ] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3183), - [anon_sym_struct] = ACTIONS(3185), - [anon_sym_union] = ACTIONS(3185), - [anon_sym_pub] = ACTIONS(3185), - [anon_sym_mut] = ACTIONS(3185), - [anon_sym_enum] = ACTIONS(3185), - [anon_sym_interface] = ACTIONS(3185), - [anon_sym_PLUS_PLUS] = ACTIONS(3185), - [anon_sym_DASH_DASH] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_go] = ACTIONS(3185), - [anon_sym_spawn] = ACTIONS(3185), - [anon_sym_json_DOTdecode] = ACTIONS(3185), - [anon_sym_LBRACK2] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_CARET] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_LT_DASH] = ACTIONS(3185), - [anon_sym_LT_LT] = ACTIONS(3185), - [anon_sym_GT_GT] = ACTIONS(3185), - [anon_sym_GT_GT_GT] = ACTIONS(3185), - [anon_sym_AMP_CARET] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_PIPE_PIPE] = ACTIONS(3185), - [anon_sym_or] = ACTIONS(3185), - [sym_none] = ACTIONS(3185), - [sym_true] = ACTIONS(3185), - [sym_false] = ACTIONS(3185), - [sym_nil] = ACTIONS(3185), - [anon_sym_QMARK_DOT] = ACTIONS(3185), - [anon_sym_POUND_LBRACK] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_DOLLARif] = ACTIONS(3185), - [anon_sym_is] = ACTIONS(3185), - [anon_sym_BANGis] = ACTIONS(3185), - [anon_sym_in] = ACTIONS(3185), - [anon_sym_BANGin] = ACTIONS(3185), - [anon_sym_match] = ACTIONS(3185), - [anon_sym_select] = ACTIONS(3185), - [anon_sym_STAR_EQ] = ACTIONS(3185), - [anon_sym_SLASH_EQ] = ACTIONS(3185), - [anon_sym_PERCENT_EQ] = ACTIONS(3185), - [anon_sym_LT_LT_EQ] = ACTIONS(3185), - [anon_sym_GT_GT_EQ] = ACTIONS(3185), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3185), - [anon_sym_AMP_EQ] = ACTIONS(3185), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3185), - [anon_sym_PLUS_EQ] = ACTIONS(3185), - [anon_sym_DASH_EQ] = ACTIONS(3185), - [anon_sym_PIPE_EQ] = ACTIONS(3185), - [anon_sym_CARET_EQ] = ACTIONS(3185), - [anon_sym_COLON_EQ] = ACTIONS(3185), - [anon_sym_lock] = ACTIONS(3185), - [anon_sym_rlock] = ACTIONS(3185), - [anon_sym_unsafe] = ACTIONS(3185), - [anon_sym_sql] = ACTIONS(3185), - [sym_int_literal] = ACTIONS(3185), - [sym_float_literal] = ACTIONS(3185), - [sym_rune_literal] = ACTIONS(3185), - [anon_sym_AT] = ACTIONS(3185), - [anon_sym_shared] = ACTIONS(3185), - [anon_sym_map_LBRACK] = ACTIONS(3185), - [anon_sym_chan] = ACTIONS(3185), - [anon_sym_thread] = ACTIONS(3185), - [anon_sym_atomic] = ACTIONS(3185), - [anon_sym_assert] = ACTIONS(3185), - [anon_sym_defer] = ACTIONS(3185), - [anon_sym_goto] = ACTIONS(3185), - [anon_sym_break] = ACTIONS(3185), - [anon_sym_continue] = ACTIONS(3185), - [anon_sym_return] = ACTIONS(3185), - [anon_sym_DOLLARfor] = ACTIONS(3185), - [anon_sym_for] = ACTIONS(3185), - [anon_sym_POUND] = ACTIONS(3185), - [anon_sym_asm] = ACTIONS(3185), - [anon_sym_AT_LBRACK] = ACTIONS(3185), - [sym___double_quote] = ACTIONS(3185), - [sym___single_quote] = ACTIONS(3185), - [sym___c_double_quote] = ACTIONS(3185), - [sym___c_single_quote] = ACTIONS(3185), - [sym___r_double_quote] = ACTIONS(3185), - [sym___r_single_quote] = ACTIONS(3185), - }, - [954] = { - [ts_builtin_sym_end] = ACTIONS(3187), - [sym_identifier] = ACTIONS(3189), - [anon_sym_LF] = ACTIONS(3189), - [anon_sym_CR] = ACTIONS(3189), - [anon_sym_CR_LF] = ACTIONS(3189), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_as] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3189), - [anon_sym_const] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3189), - [anon_sym___global] = ACTIONS(3189), - [anon_sym_type] = ACTIONS(3189), - [anon_sym_PIPE] = ACTIONS(3189), - [anon_sym_fn] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_SLASH] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3189), - [anon_sym_GT] = ACTIONS(3189), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3187), - [anon_sym_struct] = ACTIONS(3189), - [anon_sym_union] = ACTIONS(3189), - [anon_sym_pub] = ACTIONS(3189), - [anon_sym_mut] = ACTIONS(3189), - [anon_sym_enum] = ACTIONS(3189), - [anon_sym_interface] = ACTIONS(3189), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3189), - [anon_sym_go] = ACTIONS(3189), - [anon_sym_spawn] = ACTIONS(3189), - [anon_sym_json_DOTdecode] = ACTIONS(3189), - [anon_sym_LBRACK2] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3189), - [anon_sym_CARET] = ACTIONS(3189), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_LT_LT] = ACTIONS(3189), - [anon_sym_GT_GT] = ACTIONS(3189), - [anon_sym_GT_GT_GT] = ACTIONS(3189), - [anon_sym_AMP_CARET] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3189), - [sym_none] = ACTIONS(3189), - [sym_true] = ACTIONS(3189), - [sym_false] = ACTIONS(3189), - [sym_nil] = ACTIONS(3189), - [anon_sym_QMARK_DOT] = ACTIONS(3189), - [anon_sym_POUND_LBRACK] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_DOLLARif] = ACTIONS(3189), - [anon_sym_is] = ACTIONS(3189), - [anon_sym_BANGis] = ACTIONS(3189), - [anon_sym_in] = ACTIONS(3189), - [anon_sym_BANGin] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_select] = ACTIONS(3189), - [anon_sym_STAR_EQ] = ACTIONS(3189), - [anon_sym_SLASH_EQ] = ACTIONS(3189), - [anon_sym_PERCENT_EQ] = ACTIONS(3189), - [anon_sym_LT_LT_EQ] = ACTIONS(3189), - [anon_sym_GT_GT_EQ] = ACTIONS(3189), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3189), - [anon_sym_AMP_EQ] = ACTIONS(3189), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3189), - [anon_sym_PLUS_EQ] = ACTIONS(3189), - [anon_sym_DASH_EQ] = ACTIONS(3189), - [anon_sym_PIPE_EQ] = ACTIONS(3189), - [anon_sym_CARET_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3189), - [anon_sym_lock] = ACTIONS(3189), - [anon_sym_rlock] = ACTIONS(3189), - [anon_sym_unsafe] = ACTIONS(3189), - [anon_sym_sql] = ACTIONS(3189), - [sym_int_literal] = ACTIONS(3189), - [sym_float_literal] = ACTIONS(3189), - [sym_rune_literal] = ACTIONS(3189), - [anon_sym_AT] = ACTIONS(3189), - [anon_sym_shared] = ACTIONS(3189), - [anon_sym_map_LBRACK] = ACTIONS(3189), - [anon_sym_chan] = ACTIONS(3189), - [anon_sym_thread] = ACTIONS(3189), - [anon_sym_atomic] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_defer] = ACTIONS(3189), - [anon_sym_goto] = ACTIONS(3189), - [anon_sym_break] = ACTIONS(3189), - [anon_sym_continue] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_DOLLARfor] = ACTIONS(3189), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_POUND] = ACTIONS(3189), - [anon_sym_asm] = ACTIONS(3189), - [anon_sym_AT_LBRACK] = ACTIONS(3189), - [sym___double_quote] = ACTIONS(3189), - [sym___single_quote] = ACTIONS(3189), - [sym___c_double_quote] = ACTIONS(3189), - [sym___c_single_quote] = ACTIONS(3189), - [sym___r_double_quote] = ACTIONS(3189), - [sym___r_single_quote] = ACTIONS(3189), + [ts_builtin_sym_end] = ACTIONS(3173), + [sym_identifier] = ACTIONS(3175), + [anon_sym_LF] = ACTIONS(3175), + [anon_sym_CR] = ACTIONS(3175), + [anon_sym_CR_LF] = ACTIONS(3175), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3175), + [anon_sym_as] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(3175), + [anon_sym_COMMA] = ACTIONS(3175), + [anon_sym_const] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_EQ] = ACTIONS(3175), + [anon_sym___global] = ACTIONS(3175), + [anon_sym_type] = ACTIONS(3175), + [anon_sym_PIPE] = ACTIONS(3175), + [anon_sym_fn] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3175), + [anon_sym_SLASH] = ACTIONS(3175), + [anon_sym_PERCENT] = ACTIONS(3175), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_LT_EQ] = ACTIONS(3175), + [anon_sym_GT_EQ] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3173), + [anon_sym_struct] = ACTIONS(3175), + [anon_sym_union] = ACTIONS(3175), + [anon_sym_pub] = ACTIONS(3175), + [anon_sym_mut] = ACTIONS(3175), + [anon_sym_enum] = ACTIONS(3175), + [anon_sym_interface] = ACTIONS(3175), + [anon_sym_PLUS_PLUS] = ACTIONS(3175), + [anon_sym_DASH_DASH] = ACTIONS(3175), + [anon_sym_QMARK] = ACTIONS(3175), + [anon_sym_BANG] = ACTIONS(3175), + [anon_sym_go] = ACTIONS(3175), + [anon_sym_spawn] = ACTIONS(3175), + [anon_sym_json_DOTdecode] = ACTIONS(3175), + [anon_sym_LBRACK2] = ACTIONS(3175), + [anon_sym_TILDE] = ACTIONS(3175), + [anon_sym_CARET] = ACTIONS(3175), + [anon_sym_AMP] = ACTIONS(3175), + [anon_sym_LT_DASH] = ACTIONS(3175), + [anon_sym_LT_LT] = ACTIONS(3175), + [anon_sym_GT_GT] = ACTIONS(3175), + [anon_sym_GT_GT_GT] = ACTIONS(3175), + [anon_sym_AMP_CARET] = ACTIONS(3175), + [anon_sym_AMP_AMP] = ACTIONS(3175), + [anon_sym_PIPE_PIPE] = ACTIONS(3175), + [anon_sym_or] = ACTIONS(3175), + [sym_none] = ACTIONS(3175), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_nil] = ACTIONS(3175), + [anon_sym_QMARK_DOT] = ACTIONS(3175), + [anon_sym_POUND_LBRACK] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_DOLLARif] = ACTIONS(3175), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3175), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_BANGin] = ACTIONS(3175), + [anon_sym_match] = ACTIONS(3175), + [anon_sym_select] = ACTIONS(3175), + [anon_sym_STAR_EQ] = ACTIONS(3175), + [anon_sym_SLASH_EQ] = ACTIONS(3175), + [anon_sym_PERCENT_EQ] = ACTIONS(3175), + [anon_sym_LT_LT_EQ] = ACTIONS(3175), + [anon_sym_GT_GT_EQ] = ACTIONS(3175), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3175), + [anon_sym_AMP_EQ] = ACTIONS(3175), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3175), + [anon_sym_PLUS_EQ] = ACTIONS(3175), + [anon_sym_DASH_EQ] = ACTIONS(3175), + [anon_sym_PIPE_EQ] = ACTIONS(3175), + [anon_sym_CARET_EQ] = ACTIONS(3175), + [anon_sym_COLON_EQ] = ACTIONS(3175), + [anon_sym_lock] = ACTIONS(3175), + [anon_sym_rlock] = ACTIONS(3175), + [anon_sym_unsafe] = ACTIONS(3175), + [anon_sym_sql] = ACTIONS(3175), + [sym_int_literal] = ACTIONS(3175), + [sym_float_literal] = ACTIONS(3175), + [sym_rune_literal] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(3175), + [anon_sym_shared] = ACTIONS(3175), + [anon_sym_map_LBRACK] = ACTIONS(3175), + [anon_sym_chan] = ACTIONS(3175), + [anon_sym_thread] = ACTIONS(3175), + [anon_sym_atomic] = ACTIONS(3175), + [anon_sym_assert] = ACTIONS(3175), + [anon_sym_defer] = ACTIONS(3175), + [anon_sym_goto] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_DOLLARfor] = ACTIONS(3175), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_POUND] = ACTIONS(3175), + [anon_sym_asm] = ACTIONS(3175), + [anon_sym_AT_LBRACK] = ACTIONS(3175), + [sym___double_quote] = ACTIONS(3175), + [sym___single_quote] = ACTIONS(3175), + [sym___c_double_quote] = ACTIONS(3175), + [sym___c_single_quote] = ACTIONS(3175), + [sym___r_double_quote] = ACTIONS(3175), + [sym___r_single_quote] = ACTIONS(3175), + }, + [954] = { + [ts_builtin_sym_end] = ACTIONS(3177), + [sym_identifier] = ACTIONS(3179), + [anon_sym_LF] = ACTIONS(3179), + [anon_sym_CR] = ACTIONS(3179), + [anon_sym_CR_LF] = ACTIONS(3179), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3179), + [anon_sym_as] = ACTIONS(3179), + [anon_sym_LBRACE] = ACTIONS(3179), + [anon_sym_COMMA] = ACTIONS(3179), + [anon_sym_const] = ACTIONS(3179), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_EQ] = ACTIONS(3179), + [anon_sym___global] = ACTIONS(3179), + [anon_sym_type] = ACTIONS(3179), + [anon_sym_PIPE] = ACTIONS(3179), + [anon_sym_fn] = ACTIONS(3179), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3179), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_SLASH] = ACTIONS(3179), + [anon_sym_PERCENT] = ACTIONS(3179), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3179), + [anon_sym_EQ_EQ] = ACTIONS(3179), + [anon_sym_BANG_EQ] = ACTIONS(3179), + [anon_sym_LT_EQ] = ACTIONS(3179), + [anon_sym_GT_EQ] = ACTIONS(3179), + [anon_sym_LBRACK] = ACTIONS(3177), + [anon_sym_struct] = ACTIONS(3179), + [anon_sym_union] = ACTIONS(3179), + [anon_sym_pub] = ACTIONS(3179), + [anon_sym_mut] = ACTIONS(3179), + [anon_sym_enum] = ACTIONS(3179), + [anon_sym_interface] = ACTIONS(3179), + [anon_sym_PLUS_PLUS] = ACTIONS(3179), + [anon_sym_DASH_DASH] = ACTIONS(3179), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_BANG] = ACTIONS(3179), + [anon_sym_go] = ACTIONS(3179), + [anon_sym_spawn] = ACTIONS(3179), + [anon_sym_json_DOTdecode] = ACTIONS(3179), + [anon_sym_LBRACK2] = ACTIONS(3179), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_CARET] = ACTIONS(3179), + [anon_sym_AMP] = ACTIONS(3179), + [anon_sym_LT_DASH] = ACTIONS(3179), + [anon_sym_LT_LT] = ACTIONS(3179), + [anon_sym_GT_GT] = ACTIONS(3179), + [anon_sym_GT_GT_GT] = ACTIONS(3179), + [anon_sym_AMP_CARET] = ACTIONS(3179), + [anon_sym_AMP_AMP] = ACTIONS(3179), + [anon_sym_PIPE_PIPE] = ACTIONS(3179), + [anon_sym_or] = ACTIONS(3179), + [sym_none] = ACTIONS(3179), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_nil] = ACTIONS(3179), + [anon_sym_QMARK_DOT] = ACTIONS(3179), + [anon_sym_POUND_LBRACK] = ACTIONS(3179), + [anon_sym_if] = ACTIONS(3179), + [anon_sym_DOLLARif] = ACTIONS(3179), + [anon_sym_is] = ACTIONS(3179), + [anon_sym_BANGis] = ACTIONS(3179), + [anon_sym_in] = ACTIONS(3179), + [anon_sym_BANGin] = ACTIONS(3179), + [anon_sym_match] = ACTIONS(3179), + [anon_sym_select] = ACTIONS(3179), + [anon_sym_STAR_EQ] = ACTIONS(3179), + [anon_sym_SLASH_EQ] = ACTIONS(3179), + [anon_sym_PERCENT_EQ] = ACTIONS(3179), + [anon_sym_LT_LT_EQ] = ACTIONS(3179), + [anon_sym_GT_GT_EQ] = ACTIONS(3179), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3179), + [anon_sym_AMP_EQ] = ACTIONS(3179), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3179), + [anon_sym_PLUS_EQ] = ACTIONS(3179), + [anon_sym_DASH_EQ] = ACTIONS(3179), + [anon_sym_PIPE_EQ] = ACTIONS(3179), + [anon_sym_CARET_EQ] = ACTIONS(3179), + [anon_sym_COLON_EQ] = ACTIONS(3179), + [anon_sym_lock] = ACTIONS(3179), + [anon_sym_rlock] = ACTIONS(3179), + [anon_sym_unsafe] = ACTIONS(3179), + [anon_sym_sql] = ACTIONS(3179), + [sym_int_literal] = ACTIONS(3179), + [sym_float_literal] = ACTIONS(3179), + [sym_rune_literal] = ACTIONS(3179), + [anon_sym_AT] = ACTIONS(3179), + [anon_sym_shared] = ACTIONS(3179), + [anon_sym_map_LBRACK] = ACTIONS(3179), + [anon_sym_chan] = ACTIONS(3179), + [anon_sym_thread] = ACTIONS(3179), + [anon_sym_atomic] = ACTIONS(3179), + [anon_sym_assert] = ACTIONS(3179), + [anon_sym_defer] = ACTIONS(3179), + [anon_sym_goto] = ACTIONS(3179), + [anon_sym_break] = ACTIONS(3179), + [anon_sym_continue] = ACTIONS(3179), + [anon_sym_return] = ACTIONS(3179), + [anon_sym_DOLLARfor] = ACTIONS(3179), + [anon_sym_for] = ACTIONS(3179), + [anon_sym_POUND] = ACTIONS(3179), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym_AT_LBRACK] = ACTIONS(3179), + [sym___double_quote] = ACTIONS(3179), + [sym___single_quote] = ACTIONS(3179), + [sym___c_double_quote] = ACTIONS(3179), + [sym___c_single_quote] = ACTIONS(3179), + [sym___r_double_quote] = ACTIONS(3179), + [sym___r_single_quote] = ACTIONS(3179), }, [955] = { - [ts_builtin_sym_end] = ACTIONS(3191), - [sym_identifier] = ACTIONS(3193), - [anon_sym_LF] = ACTIONS(3193), - [anon_sym_CR] = ACTIONS(3193), - [anon_sym_CR_LF] = ACTIONS(3193), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3193), - [anon_sym_as] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_COMMA] = ACTIONS(3193), - [anon_sym_const] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym_EQ] = ACTIONS(3193), - [anon_sym___global] = ACTIONS(3193), - [anon_sym_type] = ACTIONS(3193), - [anon_sym_PIPE] = ACTIONS(3193), - [anon_sym_fn] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(3193), - [anon_sym_SLASH] = ACTIONS(3193), - [anon_sym_PERCENT] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(3193), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_LT_EQ] = ACTIONS(3193), - [anon_sym_GT_EQ] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3191), - [anon_sym_struct] = ACTIONS(3193), - [anon_sym_union] = ACTIONS(3193), - [anon_sym_pub] = ACTIONS(3193), - [anon_sym_mut] = ACTIONS(3193), - [anon_sym_enum] = ACTIONS(3193), - [anon_sym_interface] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3193), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [anon_sym_QMARK] = ACTIONS(3193), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_go] = ACTIONS(3193), - [anon_sym_spawn] = ACTIONS(3193), - [anon_sym_json_DOTdecode] = ACTIONS(3193), - [anon_sym_LBRACK2] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_CARET] = ACTIONS(3193), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT_DASH] = ACTIONS(3193), - [anon_sym_LT_LT] = ACTIONS(3193), - [anon_sym_GT_GT] = ACTIONS(3193), - [anon_sym_GT_GT_GT] = ACTIONS(3193), - [anon_sym_AMP_CARET] = ACTIONS(3193), - [anon_sym_AMP_AMP] = ACTIONS(3193), - [anon_sym_PIPE_PIPE] = ACTIONS(3193), - [anon_sym_or] = ACTIONS(3193), - [sym_none] = ACTIONS(3193), - [sym_true] = ACTIONS(3193), - [sym_false] = ACTIONS(3193), - [sym_nil] = ACTIONS(3193), - [anon_sym_QMARK_DOT] = ACTIONS(3193), - [anon_sym_POUND_LBRACK] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_DOLLARif] = ACTIONS(3193), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3193), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_BANGin] = ACTIONS(3193), - [anon_sym_match] = ACTIONS(3193), - [anon_sym_select] = ACTIONS(3193), - [anon_sym_STAR_EQ] = ACTIONS(3193), - [anon_sym_SLASH_EQ] = ACTIONS(3193), - [anon_sym_PERCENT_EQ] = ACTIONS(3193), - [anon_sym_LT_LT_EQ] = ACTIONS(3193), - [anon_sym_GT_GT_EQ] = ACTIONS(3193), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3193), - [anon_sym_AMP_EQ] = ACTIONS(3193), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3193), - [anon_sym_PLUS_EQ] = ACTIONS(3193), - [anon_sym_DASH_EQ] = ACTIONS(3193), - [anon_sym_PIPE_EQ] = ACTIONS(3193), - [anon_sym_CARET_EQ] = ACTIONS(3193), - [anon_sym_COLON_EQ] = ACTIONS(3193), - [anon_sym_lock] = ACTIONS(3193), - [anon_sym_rlock] = ACTIONS(3193), - [anon_sym_unsafe] = ACTIONS(3193), - [anon_sym_sql] = ACTIONS(3193), - [sym_int_literal] = ACTIONS(3193), - [sym_float_literal] = ACTIONS(3193), - [sym_rune_literal] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(3193), - [anon_sym_shared] = ACTIONS(3193), - [anon_sym_map_LBRACK] = ACTIONS(3193), - [anon_sym_chan] = ACTIONS(3193), - [anon_sym_thread] = ACTIONS(3193), - [anon_sym_atomic] = ACTIONS(3193), - [anon_sym_assert] = ACTIONS(3193), - [anon_sym_defer] = ACTIONS(3193), - [anon_sym_goto] = ACTIONS(3193), - [anon_sym_break] = ACTIONS(3193), - [anon_sym_continue] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3193), - [anon_sym_DOLLARfor] = ACTIONS(3193), - [anon_sym_for] = ACTIONS(3193), - [anon_sym_POUND] = ACTIONS(3193), - [anon_sym_asm] = ACTIONS(3193), - [anon_sym_AT_LBRACK] = ACTIONS(3193), - [sym___double_quote] = ACTIONS(3193), - [sym___single_quote] = ACTIONS(3193), - [sym___c_double_quote] = ACTIONS(3193), - [sym___c_single_quote] = ACTIONS(3193), - [sym___r_double_quote] = ACTIONS(3193), - [sym___r_single_quote] = ACTIONS(3193), + [ts_builtin_sym_end] = ACTIONS(3181), + [sym_identifier] = ACTIONS(3183), + [anon_sym_LF] = ACTIONS(3183), + [anon_sym_CR] = ACTIONS(3183), + [anon_sym_CR_LF] = ACTIONS(3183), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3183), + [anon_sym_as] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_COMMA] = ACTIONS(3183), + [anon_sym_const] = ACTIONS(3183), + [anon_sym_LPAREN] = ACTIONS(3183), + [anon_sym_EQ] = ACTIONS(3183), + [anon_sym___global] = ACTIONS(3183), + [anon_sym_type] = ACTIONS(3183), + [anon_sym_PIPE] = ACTIONS(3183), + [anon_sym_fn] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3183), + [anon_sym_SLASH] = ACTIONS(3183), + [anon_sym_PERCENT] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT_EQ] = ACTIONS(3183), + [anon_sym_LBRACK] = ACTIONS(3181), + [anon_sym_struct] = ACTIONS(3183), + [anon_sym_union] = ACTIONS(3183), + [anon_sym_pub] = ACTIONS(3183), + [anon_sym_mut] = ACTIONS(3183), + [anon_sym_enum] = ACTIONS(3183), + [anon_sym_interface] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_DASH_DASH] = ACTIONS(3183), + [anon_sym_QMARK] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_go] = ACTIONS(3183), + [anon_sym_spawn] = ACTIONS(3183), + [anon_sym_json_DOTdecode] = ACTIONS(3183), + [anon_sym_LBRACK2] = ACTIONS(3183), + [anon_sym_TILDE] = ACTIONS(3183), + [anon_sym_CARET] = ACTIONS(3183), + [anon_sym_AMP] = ACTIONS(3183), + [anon_sym_LT_DASH] = ACTIONS(3183), + [anon_sym_LT_LT] = ACTIONS(3183), + [anon_sym_GT_GT] = ACTIONS(3183), + [anon_sym_GT_GT_GT] = ACTIONS(3183), + [anon_sym_AMP_CARET] = ACTIONS(3183), + [anon_sym_AMP_AMP] = ACTIONS(3183), + [anon_sym_PIPE_PIPE] = ACTIONS(3183), + [anon_sym_or] = ACTIONS(3183), + [sym_none] = ACTIONS(3183), + [sym_true] = ACTIONS(3183), + [sym_false] = ACTIONS(3183), + [sym_nil] = ACTIONS(3183), + [anon_sym_QMARK_DOT] = ACTIONS(3183), + [anon_sym_POUND_LBRACK] = ACTIONS(3183), + [anon_sym_if] = ACTIONS(3183), + [anon_sym_DOLLARif] = ACTIONS(3183), + [anon_sym_is] = ACTIONS(3183), + [anon_sym_BANGis] = ACTIONS(3183), + [anon_sym_in] = ACTIONS(3183), + [anon_sym_BANGin] = ACTIONS(3183), + [anon_sym_match] = ACTIONS(3183), + [anon_sym_select] = ACTIONS(3183), + [anon_sym_STAR_EQ] = ACTIONS(3183), + [anon_sym_SLASH_EQ] = ACTIONS(3183), + [anon_sym_PERCENT_EQ] = ACTIONS(3183), + [anon_sym_LT_LT_EQ] = ACTIONS(3183), + [anon_sym_GT_GT_EQ] = ACTIONS(3183), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3183), + [anon_sym_AMP_EQ] = ACTIONS(3183), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3183), + [anon_sym_PLUS_EQ] = ACTIONS(3183), + [anon_sym_DASH_EQ] = ACTIONS(3183), + [anon_sym_PIPE_EQ] = ACTIONS(3183), + [anon_sym_CARET_EQ] = ACTIONS(3183), + [anon_sym_COLON_EQ] = ACTIONS(3183), + [anon_sym_lock] = ACTIONS(3183), + [anon_sym_rlock] = ACTIONS(3183), + [anon_sym_unsafe] = ACTIONS(3183), + [anon_sym_sql] = ACTIONS(3183), + [sym_int_literal] = ACTIONS(3183), + [sym_float_literal] = ACTIONS(3183), + [sym_rune_literal] = ACTIONS(3183), + [anon_sym_AT] = ACTIONS(3183), + [anon_sym_shared] = ACTIONS(3183), + [anon_sym_map_LBRACK] = ACTIONS(3183), + [anon_sym_chan] = ACTIONS(3183), + [anon_sym_thread] = ACTIONS(3183), + [anon_sym_atomic] = ACTIONS(3183), + [anon_sym_assert] = ACTIONS(3183), + [anon_sym_defer] = ACTIONS(3183), + [anon_sym_goto] = ACTIONS(3183), + [anon_sym_break] = ACTIONS(3183), + [anon_sym_continue] = ACTIONS(3183), + [anon_sym_return] = ACTIONS(3183), + [anon_sym_DOLLARfor] = ACTIONS(3183), + [anon_sym_for] = ACTIONS(3183), + [anon_sym_POUND] = ACTIONS(3183), + [anon_sym_asm] = ACTIONS(3183), + [anon_sym_AT_LBRACK] = ACTIONS(3183), + [sym___double_quote] = ACTIONS(3183), + [sym___single_quote] = ACTIONS(3183), + [sym___c_double_quote] = ACTIONS(3183), + [sym___c_single_quote] = ACTIONS(3183), + [sym___r_double_quote] = ACTIONS(3183), + [sym___r_single_quote] = ACTIONS(3183), }, [956] = { - [ts_builtin_sym_end] = ACTIONS(3195), - [sym_identifier] = ACTIONS(3197), - [anon_sym_LF] = ACTIONS(3197), - [anon_sym_CR] = ACTIONS(3197), - [anon_sym_CR_LF] = ACTIONS(3197), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3197), - [anon_sym_as] = ACTIONS(3197), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_COMMA] = ACTIONS(3197), - [anon_sym_const] = ACTIONS(3197), - [anon_sym_LPAREN] = ACTIONS(3197), - [anon_sym_EQ] = ACTIONS(3197), - [anon_sym___global] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3197), - [anon_sym_PIPE] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3195), - [anon_sym_struct] = ACTIONS(3197), - [anon_sym_union] = ACTIONS(3197), - [anon_sym_pub] = ACTIONS(3197), - [anon_sym_mut] = ACTIONS(3197), - [anon_sym_enum] = ACTIONS(3197), - [anon_sym_interface] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_DASH_DASH] = ACTIONS(3197), - [anon_sym_QMARK] = ACTIONS(3197), - [anon_sym_BANG] = ACTIONS(3197), - [anon_sym_go] = ACTIONS(3197), - [anon_sym_spawn] = ACTIONS(3197), - [anon_sym_json_DOTdecode] = ACTIONS(3197), - [anon_sym_LBRACK2] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_CARET] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_LT_DASH] = ACTIONS(3197), - [anon_sym_LT_LT] = ACTIONS(3197), - [anon_sym_GT_GT] = ACTIONS(3197), - [anon_sym_GT_GT_GT] = ACTIONS(3197), - [anon_sym_AMP_CARET] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3197), - [sym_none] = ACTIONS(3197), - [sym_true] = ACTIONS(3197), - [sym_false] = ACTIONS(3197), - [sym_nil] = ACTIONS(3197), - [anon_sym_QMARK_DOT] = ACTIONS(3197), - [anon_sym_POUND_LBRACK] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_DOLLARif] = ACTIONS(3197), - [anon_sym_is] = ACTIONS(3197), - [anon_sym_BANGis] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_BANGin] = ACTIONS(3197), - [anon_sym_match] = ACTIONS(3197), - [anon_sym_select] = ACTIONS(3197), - [anon_sym_STAR_EQ] = ACTIONS(3197), - [anon_sym_SLASH_EQ] = ACTIONS(3197), - [anon_sym_PERCENT_EQ] = ACTIONS(3197), - [anon_sym_LT_LT_EQ] = ACTIONS(3197), - [anon_sym_GT_GT_EQ] = ACTIONS(3197), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3197), - [anon_sym_AMP_EQ] = ACTIONS(3197), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3197), - [anon_sym_PLUS_EQ] = ACTIONS(3197), - [anon_sym_DASH_EQ] = ACTIONS(3197), - [anon_sym_PIPE_EQ] = ACTIONS(3197), - [anon_sym_CARET_EQ] = ACTIONS(3197), - [anon_sym_COLON_EQ] = ACTIONS(3197), - [anon_sym_lock] = ACTIONS(3197), - [anon_sym_rlock] = ACTIONS(3197), - [anon_sym_unsafe] = ACTIONS(3197), - [anon_sym_sql] = ACTIONS(3197), - [sym_int_literal] = ACTIONS(3197), - [sym_float_literal] = ACTIONS(3197), - [sym_rune_literal] = ACTIONS(3197), - [anon_sym_AT] = ACTIONS(3197), - [anon_sym_shared] = ACTIONS(3197), - [anon_sym_map_LBRACK] = ACTIONS(3197), - [anon_sym_chan] = ACTIONS(3197), - [anon_sym_thread] = ACTIONS(3197), - [anon_sym_atomic] = ACTIONS(3197), - [anon_sym_assert] = ACTIONS(3197), - [anon_sym_defer] = ACTIONS(3197), - [anon_sym_goto] = ACTIONS(3197), - [anon_sym_break] = ACTIONS(3197), - [anon_sym_continue] = ACTIONS(3197), - [anon_sym_return] = ACTIONS(3197), - [anon_sym_DOLLARfor] = ACTIONS(3197), - [anon_sym_for] = ACTIONS(3197), - [anon_sym_POUND] = ACTIONS(3197), - [anon_sym_asm] = ACTIONS(3197), - [anon_sym_AT_LBRACK] = ACTIONS(3197), - [sym___double_quote] = ACTIONS(3197), - [sym___single_quote] = ACTIONS(3197), - [sym___c_double_quote] = ACTIONS(3197), - [sym___c_single_quote] = ACTIONS(3197), - [sym___r_double_quote] = ACTIONS(3197), - [sym___r_single_quote] = ACTIONS(3197), + [ts_builtin_sym_end] = ACTIONS(3185), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LF] = ACTIONS(3187), + [anon_sym_CR] = ACTIONS(3187), + [anon_sym_CR_LF] = ACTIONS(3187), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3187), + [anon_sym_as] = ACTIONS(3187), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_COMMA] = ACTIONS(3187), + [anon_sym_const] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3187), + [anon_sym_EQ] = ACTIONS(3187), + [anon_sym___global] = ACTIONS(3187), + [anon_sym_type] = ACTIONS(3187), + [anon_sym_PIPE] = ACTIONS(3187), + [anon_sym_fn] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [anon_sym_STAR] = ACTIONS(3187), + [anon_sym_SLASH] = ACTIONS(3187), + [anon_sym_PERCENT] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_GT] = ACTIONS(3187), + [anon_sym_EQ_EQ] = ACTIONS(3187), + [anon_sym_BANG_EQ] = ACTIONS(3187), + [anon_sym_LT_EQ] = ACTIONS(3187), + [anon_sym_GT_EQ] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3185), + [anon_sym_struct] = ACTIONS(3187), + [anon_sym_union] = ACTIONS(3187), + [anon_sym_pub] = ACTIONS(3187), + [anon_sym_mut] = ACTIONS(3187), + [anon_sym_enum] = ACTIONS(3187), + [anon_sym_interface] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3187), + [anon_sym_DASH_DASH] = ACTIONS(3187), + [anon_sym_QMARK] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_go] = ACTIONS(3187), + [anon_sym_spawn] = ACTIONS(3187), + [anon_sym_json_DOTdecode] = ACTIONS(3187), + [anon_sym_LBRACK2] = ACTIONS(3187), + [anon_sym_TILDE] = ACTIONS(3187), + [anon_sym_CARET] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_LT_DASH] = ACTIONS(3187), + [anon_sym_LT_LT] = ACTIONS(3187), + [anon_sym_GT_GT] = ACTIONS(3187), + [anon_sym_GT_GT_GT] = ACTIONS(3187), + [anon_sym_AMP_CARET] = ACTIONS(3187), + [anon_sym_AMP_AMP] = ACTIONS(3187), + [anon_sym_PIPE_PIPE] = ACTIONS(3187), + [anon_sym_or] = ACTIONS(3187), + [sym_none] = ACTIONS(3187), + [sym_true] = ACTIONS(3187), + [sym_false] = ACTIONS(3187), + [sym_nil] = ACTIONS(3187), + [anon_sym_QMARK_DOT] = ACTIONS(3187), + [anon_sym_POUND_LBRACK] = ACTIONS(3187), + [anon_sym_if] = ACTIONS(3187), + [anon_sym_DOLLARif] = ACTIONS(3187), + [anon_sym_is] = ACTIONS(3187), + [anon_sym_BANGis] = ACTIONS(3187), + [anon_sym_in] = ACTIONS(3187), + [anon_sym_BANGin] = ACTIONS(3187), + [anon_sym_match] = ACTIONS(3187), + [anon_sym_select] = ACTIONS(3187), + [anon_sym_STAR_EQ] = ACTIONS(3187), + [anon_sym_SLASH_EQ] = ACTIONS(3187), + [anon_sym_PERCENT_EQ] = ACTIONS(3187), + [anon_sym_LT_LT_EQ] = ACTIONS(3187), + [anon_sym_GT_GT_EQ] = ACTIONS(3187), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3187), + [anon_sym_AMP_EQ] = ACTIONS(3187), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3187), + [anon_sym_PLUS_EQ] = ACTIONS(3187), + [anon_sym_DASH_EQ] = ACTIONS(3187), + [anon_sym_PIPE_EQ] = ACTIONS(3187), + [anon_sym_CARET_EQ] = ACTIONS(3187), + [anon_sym_COLON_EQ] = ACTIONS(3187), + [anon_sym_lock] = ACTIONS(3187), + [anon_sym_rlock] = ACTIONS(3187), + [anon_sym_unsafe] = ACTIONS(3187), + [anon_sym_sql] = ACTIONS(3187), + [sym_int_literal] = ACTIONS(3187), + [sym_float_literal] = ACTIONS(3187), + [sym_rune_literal] = ACTIONS(3187), + [anon_sym_AT] = ACTIONS(3187), + [anon_sym_shared] = ACTIONS(3187), + [anon_sym_map_LBRACK] = ACTIONS(3187), + [anon_sym_chan] = ACTIONS(3187), + [anon_sym_thread] = ACTIONS(3187), + [anon_sym_atomic] = ACTIONS(3187), + [anon_sym_assert] = ACTIONS(3187), + [anon_sym_defer] = ACTIONS(3187), + [anon_sym_goto] = ACTIONS(3187), + [anon_sym_break] = ACTIONS(3187), + [anon_sym_continue] = ACTIONS(3187), + [anon_sym_return] = ACTIONS(3187), + [anon_sym_DOLLARfor] = ACTIONS(3187), + [anon_sym_for] = ACTIONS(3187), + [anon_sym_POUND] = ACTIONS(3187), + [anon_sym_asm] = ACTIONS(3187), + [anon_sym_AT_LBRACK] = ACTIONS(3187), + [sym___double_quote] = ACTIONS(3187), + [sym___single_quote] = ACTIONS(3187), + [sym___c_double_quote] = ACTIONS(3187), + [sym___c_single_quote] = ACTIONS(3187), + [sym___r_double_quote] = ACTIONS(3187), + [sym___r_single_quote] = ACTIONS(3187), }, [957] = { - [sym_reference_expression] = STATE(4416), - [sym_type_reference_expression] = STATE(3390), - [sym_plain_type] = STATE(3415), - [sym__plain_type_without_special] = STATE(3442), + [ts_builtin_sym_end] = ACTIONS(3189), + [sym_identifier] = ACTIONS(3191), + [anon_sym_LF] = ACTIONS(3191), + [anon_sym_CR] = ACTIONS(3191), + [anon_sym_CR_LF] = ACTIONS(3191), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3191), + [anon_sym_as] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(3191), + [anon_sym_COMMA] = ACTIONS(3191), + [anon_sym_const] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3191), + [anon_sym_EQ] = ACTIONS(3191), + [anon_sym___global] = ACTIONS(3191), + [anon_sym_type] = ACTIONS(3191), + [anon_sym_PIPE] = ACTIONS(3191), + [anon_sym_fn] = ACTIONS(3191), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_STAR] = ACTIONS(3191), + [anon_sym_SLASH] = ACTIONS(3191), + [anon_sym_PERCENT] = ACTIONS(3191), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_GT] = ACTIONS(3191), + [anon_sym_EQ_EQ] = ACTIONS(3191), + [anon_sym_BANG_EQ] = ACTIONS(3191), + [anon_sym_LT_EQ] = ACTIONS(3191), + [anon_sym_GT_EQ] = ACTIONS(3191), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_struct] = ACTIONS(3191), + [anon_sym_union] = ACTIONS(3191), + [anon_sym_pub] = ACTIONS(3191), + [anon_sym_mut] = ACTIONS(3191), + [anon_sym_enum] = ACTIONS(3191), + [anon_sym_interface] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3191), + [anon_sym_DASH_DASH] = ACTIONS(3191), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_go] = ACTIONS(3191), + [anon_sym_spawn] = ACTIONS(3191), + [anon_sym_json_DOTdecode] = ACTIONS(3191), + [anon_sym_LBRACK2] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3191), + [anon_sym_CARET] = ACTIONS(3191), + [anon_sym_AMP] = ACTIONS(3191), + [anon_sym_LT_DASH] = ACTIONS(3191), + [anon_sym_LT_LT] = ACTIONS(3191), + [anon_sym_GT_GT] = ACTIONS(3191), + [anon_sym_GT_GT_GT] = ACTIONS(3191), + [anon_sym_AMP_CARET] = ACTIONS(3191), + [anon_sym_AMP_AMP] = ACTIONS(3191), + [anon_sym_PIPE_PIPE] = ACTIONS(3191), + [anon_sym_or] = ACTIONS(3191), + [sym_none] = ACTIONS(3191), + [sym_true] = ACTIONS(3191), + [sym_false] = ACTIONS(3191), + [sym_nil] = ACTIONS(3191), + [anon_sym_QMARK_DOT] = ACTIONS(3191), + [anon_sym_POUND_LBRACK] = ACTIONS(3191), + [anon_sym_if] = ACTIONS(3191), + [anon_sym_DOLLARif] = ACTIONS(3191), + [anon_sym_is] = ACTIONS(3191), + [anon_sym_BANGis] = ACTIONS(3191), + [anon_sym_in] = ACTIONS(3191), + [anon_sym_BANGin] = ACTIONS(3191), + [anon_sym_match] = ACTIONS(3191), + [anon_sym_select] = ACTIONS(3191), + [anon_sym_STAR_EQ] = ACTIONS(3191), + [anon_sym_SLASH_EQ] = ACTIONS(3191), + [anon_sym_PERCENT_EQ] = ACTIONS(3191), + [anon_sym_LT_LT_EQ] = ACTIONS(3191), + [anon_sym_GT_GT_EQ] = ACTIONS(3191), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3191), + [anon_sym_AMP_EQ] = ACTIONS(3191), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3191), + [anon_sym_PLUS_EQ] = ACTIONS(3191), + [anon_sym_DASH_EQ] = ACTIONS(3191), + [anon_sym_PIPE_EQ] = ACTIONS(3191), + [anon_sym_CARET_EQ] = ACTIONS(3191), + [anon_sym_COLON_EQ] = ACTIONS(3191), + [anon_sym_lock] = ACTIONS(3191), + [anon_sym_rlock] = ACTIONS(3191), + [anon_sym_unsafe] = ACTIONS(3191), + [anon_sym_sql] = ACTIONS(3191), + [sym_int_literal] = ACTIONS(3191), + [sym_float_literal] = ACTIONS(3191), + [sym_rune_literal] = ACTIONS(3191), + [anon_sym_AT] = ACTIONS(3191), + [anon_sym_shared] = ACTIONS(3191), + [anon_sym_map_LBRACK] = ACTIONS(3191), + [anon_sym_chan] = ACTIONS(3191), + [anon_sym_thread] = ACTIONS(3191), + [anon_sym_atomic] = ACTIONS(3191), + [anon_sym_assert] = ACTIONS(3191), + [anon_sym_defer] = ACTIONS(3191), + [anon_sym_goto] = ACTIONS(3191), + [anon_sym_break] = ACTIONS(3191), + [anon_sym_continue] = ACTIONS(3191), + [anon_sym_return] = ACTIONS(3191), + [anon_sym_DOLLARfor] = ACTIONS(3191), + [anon_sym_for] = ACTIONS(3191), + [anon_sym_POUND] = ACTIONS(3191), + [anon_sym_asm] = ACTIONS(3191), + [anon_sym_AT_LBRACK] = ACTIONS(3191), + [sym___double_quote] = ACTIONS(3191), + [sym___single_quote] = ACTIONS(3191), + [sym___c_double_quote] = ACTIONS(3191), + [sym___c_single_quote] = ACTIONS(3191), + [sym___r_double_quote] = ACTIONS(3191), + [sym___r_single_quote] = ACTIONS(3191), + }, + [958] = { + [ts_builtin_sym_end] = ACTIONS(3193), + [sym_identifier] = ACTIONS(3195), + [anon_sym_LF] = ACTIONS(3195), + [anon_sym_CR] = ACTIONS(3195), + [anon_sym_CR_LF] = ACTIONS(3195), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3195), + [anon_sym_as] = ACTIONS(3195), + [anon_sym_LBRACE] = ACTIONS(3195), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_const] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3195), + [anon_sym_EQ] = ACTIONS(3195), + [anon_sym___global] = ACTIONS(3195), + [anon_sym_type] = ACTIONS(3195), + [anon_sym_PIPE] = ACTIONS(3195), + [anon_sym_fn] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3195), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3195), + [anon_sym_SLASH] = ACTIONS(3195), + [anon_sym_PERCENT] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_struct] = ACTIONS(3195), + [anon_sym_union] = ACTIONS(3195), + [anon_sym_pub] = ACTIONS(3195), + [anon_sym_mut] = ACTIONS(3195), + [anon_sym_enum] = ACTIONS(3195), + [anon_sym_interface] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_DASH_DASH] = ACTIONS(3195), + [anon_sym_QMARK] = ACTIONS(3195), + [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_go] = ACTIONS(3195), + [anon_sym_spawn] = ACTIONS(3195), + [anon_sym_json_DOTdecode] = ACTIONS(3195), + [anon_sym_LBRACK2] = ACTIONS(3195), + [anon_sym_TILDE] = ACTIONS(3195), + [anon_sym_CARET] = ACTIONS(3195), + [anon_sym_AMP] = ACTIONS(3195), + [anon_sym_LT_DASH] = ACTIONS(3195), + [anon_sym_LT_LT] = ACTIONS(3195), + [anon_sym_GT_GT] = ACTIONS(3195), + [anon_sym_GT_GT_GT] = ACTIONS(3195), + [anon_sym_AMP_CARET] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_or] = ACTIONS(3195), + [sym_none] = ACTIONS(3195), + [sym_true] = ACTIONS(3195), + [sym_false] = ACTIONS(3195), + [sym_nil] = ACTIONS(3195), + [anon_sym_QMARK_DOT] = ACTIONS(3195), + [anon_sym_POUND_LBRACK] = ACTIONS(3195), + [anon_sym_if] = ACTIONS(3195), + [anon_sym_DOLLARif] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3195), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_in] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_match] = ACTIONS(3195), + [anon_sym_select] = ACTIONS(3195), + [anon_sym_STAR_EQ] = ACTIONS(3195), + [anon_sym_SLASH_EQ] = ACTIONS(3195), + [anon_sym_PERCENT_EQ] = ACTIONS(3195), + [anon_sym_LT_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_GT_EQ] = ACTIONS(3195), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3195), + [anon_sym_AMP_EQ] = ACTIONS(3195), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3195), + [anon_sym_PLUS_EQ] = ACTIONS(3195), + [anon_sym_DASH_EQ] = ACTIONS(3195), + [anon_sym_PIPE_EQ] = ACTIONS(3195), + [anon_sym_CARET_EQ] = ACTIONS(3195), + [anon_sym_COLON_EQ] = ACTIONS(3195), + [anon_sym_lock] = ACTIONS(3195), + [anon_sym_rlock] = ACTIONS(3195), + [anon_sym_unsafe] = ACTIONS(3195), + [anon_sym_sql] = ACTIONS(3195), + [sym_int_literal] = ACTIONS(3195), + [sym_float_literal] = ACTIONS(3195), + [sym_rune_literal] = ACTIONS(3195), + [anon_sym_AT] = ACTIONS(3195), + [anon_sym_shared] = ACTIONS(3195), + [anon_sym_map_LBRACK] = ACTIONS(3195), + [anon_sym_chan] = ACTIONS(3195), + [anon_sym_thread] = ACTIONS(3195), + [anon_sym_atomic] = ACTIONS(3195), + [anon_sym_assert] = ACTIONS(3195), + [anon_sym_defer] = ACTIONS(3195), + [anon_sym_goto] = ACTIONS(3195), + [anon_sym_break] = ACTIONS(3195), + [anon_sym_continue] = ACTIONS(3195), + [anon_sym_return] = ACTIONS(3195), + [anon_sym_DOLLARfor] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(3195), + [anon_sym_POUND] = ACTIONS(3195), + [anon_sym_asm] = ACTIONS(3195), + [anon_sym_AT_LBRACK] = ACTIONS(3195), + [sym___double_quote] = ACTIONS(3195), + [sym___single_quote] = ACTIONS(3195), + [sym___c_double_quote] = ACTIONS(3195), + [sym___c_single_quote] = ACTIONS(3195), + [sym___r_double_quote] = ACTIONS(3195), + [sym___r_single_quote] = ACTIONS(3195), + }, + [959] = { + [ts_builtin_sym_end] = ACTIONS(3197), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LF] = ACTIONS(3199), + [anon_sym_CR] = ACTIONS(3199), + [anon_sym_CR_LF] = ACTIONS(3199), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3199), + [anon_sym_as] = ACTIONS(3199), + [anon_sym_LBRACE] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_const] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3199), + [anon_sym_EQ] = ACTIONS(3199), + [anon_sym___global] = ACTIONS(3199), + [anon_sym_type] = ACTIONS(3199), + [anon_sym_PIPE] = ACTIONS(3199), + [anon_sym_fn] = ACTIONS(3199), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3199), + [anon_sym_STAR] = ACTIONS(3199), + [anon_sym_SLASH] = ACTIONS(3199), + [anon_sym_PERCENT] = ACTIONS(3199), + [anon_sym_LT] = ACTIONS(3199), + [anon_sym_GT] = ACTIONS(3199), + [anon_sym_EQ_EQ] = ACTIONS(3199), + [anon_sym_BANG_EQ] = ACTIONS(3199), + [anon_sym_LT_EQ] = ACTIONS(3199), + [anon_sym_GT_EQ] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_struct] = ACTIONS(3199), + [anon_sym_union] = ACTIONS(3199), + [anon_sym_pub] = ACTIONS(3199), + [anon_sym_mut] = ACTIONS(3199), + [anon_sym_enum] = ACTIONS(3199), + [anon_sym_interface] = ACTIONS(3199), + [anon_sym_PLUS_PLUS] = ACTIONS(3199), + [anon_sym_DASH_DASH] = ACTIONS(3199), + [anon_sym_QMARK] = ACTIONS(3199), + [anon_sym_BANG] = ACTIONS(3199), + [anon_sym_go] = ACTIONS(3199), + [anon_sym_spawn] = ACTIONS(3199), + [anon_sym_json_DOTdecode] = ACTIONS(3199), + [anon_sym_LBRACK2] = ACTIONS(3199), + [anon_sym_TILDE] = ACTIONS(3199), + [anon_sym_CARET] = ACTIONS(3199), + [anon_sym_AMP] = ACTIONS(3199), + [anon_sym_LT_DASH] = ACTIONS(3199), + [anon_sym_LT_LT] = ACTIONS(3199), + [anon_sym_GT_GT] = ACTIONS(3199), + [anon_sym_GT_GT_GT] = ACTIONS(3199), + [anon_sym_AMP_CARET] = ACTIONS(3199), + [anon_sym_AMP_AMP] = ACTIONS(3199), + [anon_sym_PIPE_PIPE] = ACTIONS(3199), + [anon_sym_or] = ACTIONS(3199), + [sym_none] = ACTIONS(3199), + [sym_true] = ACTIONS(3199), + [sym_false] = ACTIONS(3199), + [sym_nil] = ACTIONS(3199), + [anon_sym_QMARK_DOT] = ACTIONS(3199), + [anon_sym_POUND_LBRACK] = ACTIONS(3199), + [anon_sym_if] = ACTIONS(3199), + [anon_sym_DOLLARif] = ACTIONS(3199), + [anon_sym_is] = ACTIONS(3199), + [anon_sym_BANGis] = ACTIONS(3199), + [anon_sym_in] = ACTIONS(3199), + [anon_sym_BANGin] = ACTIONS(3199), + [anon_sym_match] = ACTIONS(3199), + [anon_sym_select] = ACTIONS(3199), + [anon_sym_STAR_EQ] = ACTIONS(3199), + [anon_sym_SLASH_EQ] = ACTIONS(3199), + [anon_sym_PERCENT_EQ] = ACTIONS(3199), + [anon_sym_LT_LT_EQ] = ACTIONS(3199), + [anon_sym_GT_GT_EQ] = ACTIONS(3199), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3199), + [anon_sym_AMP_EQ] = ACTIONS(3199), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3199), + [anon_sym_PLUS_EQ] = ACTIONS(3199), + [anon_sym_DASH_EQ] = ACTIONS(3199), + [anon_sym_PIPE_EQ] = ACTIONS(3199), + [anon_sym_CARET_EQ] = ACTIONS(3199), + [anon_sym_COLON_EQ] = ACTIONS(3199), + [anon_sym_lock] = ACTIONS(3199), + [anon_sym_rlock] = ACTIONS(3199), + [anon_sym_unsafe] = ACTIONS(3199), + [anon_sym_sql] = ACTIONS(3199), + [sym_int_literal] = ACTIONS(3199), + [sym_float_literal] = ACTIONS(3199), + [sym_rune_literal] = ACTIONS(3199), + [anon_sym_AT] = ACTIONS(3199), + [anon_sym_shared] = ACTIONS(3199), + [anon_sym_map_LBRACK] = ACTIONS(3199), + [anon_sym_chan] = ACTIONS(3199), + [anon_sym_thread] = ACTIONS(3199), + [anon_sym_atomic] = ACTIONS(3199), + [anon_sym_assert] = ACTIONS(3199), + [anon_sym_defer] = ACTIONS(3199), + [anon_sym_goto] = ACTIONS(3199), + [anon_sym_break] = ACTIONS(3199), + [anon_sym_continue] = ACTIONS(3199), + [anon_sym_return] = ACTIONS(3199), + [anon_sym_DOLLARfor] = ACTIONS(3199), + [anon_sym_for] = ACTIONS(3199), + [anon_sym_POUND] = ACTIONS(3199), + [anon_sym_asm] = ACTIONS(3199), + [anon_sym_AT_LBRACK] = ACTIONS(3199), + [sym___double_quote] = ACTIONS(3199), + [sym___single_quote] = ACTIONS(3199), + [sym___c_double_quote] = ACTIONS(3199), + [sym___c_single_quote] = ACTIONS(3199), + [sym___r_double_quote] = ACTIONS(3199), + [sym___r_single_quote] = ACTIONS(3199), + }, + [960] = { + [ts_builtin_sym_end] = ACTIONS(3201), + [sym_identifier] = ACTIONS(3203), + [anon_sym_LF] = ACTIONS(3203), + [anon_sym_CR] = ACTIONS(3203), + [anon_sym_CR_LF] = ACTIONS(3203), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3203), + [anon_sym_as] = ACTIONS(3203), + [anon_sym_LBRACE] = ACTIONS(3203), + [anon_sym_COMMA] = ACTIONS(3203), + [anon_sym_const] = ACTIONS(3203), + [anon_sym_LPAREN] = ACTIONS(3203), + [anon_sym_EQ] = ACTIONS(3203), + [anon_sym___global] = ACTIONS(3203), + [anon_sym_type] = ACTIONS(3203), + [anon_sym_PIPE] = ACTIONS(3203), + [anon_sym_fn] = ACTIONS(3203), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_STAR] = ACTIONS(3203), + [anon_sym_SLASH] = ACTIONS(3203), + [anon_sym_PERCENT] = ACTIONS(3203), + [anon_sym_LT] = ACTIONS(3203), + [anon_sym_GT] = ACTIONS(3203), + [anon_sym_EQ_EQ] = ACTIONS(3203), + [anon_sym_BANG_EQ] = ACTIONS(3203), + [anon_sym_LT_EQ] = ACTIONS(3203), + [anon_sym_GT_EQ] = ACTIONS(3203), + [anon_sym_LBRACK] = ACTIONS(3201), + [anon_sym_struct] = ACTIONS(3203), + [anon_sym_union] = ACTIONS(3203), + [anon_sym_pub] = ACTIONS(3203), + [anon_sym_mut] = ACTIONS(3203), + [anon_sym_enum] = ACTIONS(3203), + [anon_sym_interface] = ACTIONS(3203), + [anon_sym_PLUS_PLUS] = ACTIONS(3203), + [anon_sym_DASH_DASH] = ACTIONS(3203), + [anon_sym_QMARK] = ACTIONS(3203), + [anon_sym_BANG] = ACTIONS(3203), + [anon_sym_go] = ACTIONS(3203), + [anon_sym_spawn] = ACTIONS(3203), + [anon_sym_json_DOTdecode] = ACTIONS(3203), + [anon_sym_LBRACK2] = ACTIONS(3203), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_CARET] = ACTIONS(3203), + [anon_sym_AMP] = ACTIONS(3203), + [anon_sym_LT_DASH] = ACTIONS(3203), + [anon_sym_LT_LT] = ACTIONS(3203), + [anon_sym_GT_GT] = ACTIONS(3203), + [anon_sym_GT_GT_GT] = ACTIONS(3203), + [anon_sym_AMP_CARET] = ACTIONS(3203), + [anon_sym_AMP_AMP] = ACTIONS(3203), + [anon_sym_PIPE_PIPE] = ACTIONS(3203), + [anon_sym_or] = ACTIONS(3203), + [sym_none] = ACTIONS(3203), + [sym_true] = ACTIONS(3203), + [sym_false] = ACTIONS(3203), + [sym_nil] = ACTIONS(3203), + [anon_sym_QMARK_DOT] = ACTIONS(3203), + [anon_sym_POUND_LBRACK] = ACTIONS(3203), + [anon_sym_if] = ACTIONS(3203), + [anon_sym_DOLLARif] = ACTIONS(3203), + [anon_sym_is] = ACTIONS(3203), + [anon_sym_BANGis] = ACTIONS(3203), + [anon_sym_in] = ACTIONS(3203), + [anon_sym_BANGin] = ACTIONS(3203), + [anon_sym_match] = ACTIONS(3203), + [anon_sym_select] = ACTIONS(3203), + [anon_sym_STAR_EQ] = ACTIONS(3203), + [anon_sym_SLASH_EQ] = ACTIONS(3203), + [anon_sym_PERCENT_EQ] = ACTIONS(3203), + [anon_sym_LT_LT_EQ] = ACTIONS(3203), + [anon_sym_GT_GT_EQ] = ACTIONS(3203), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3203), + [anon_sym_AMP_EQ] = ACTIONS(3203), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3203), + [anon_sym_PLUS_EQ] = ACTIONS(3203), + [anon_sym_DASH_EQ] = ACTIONS(3203), + [anon_sym_PIPE_EQ] = ACTIONS(3203), + [anon_sym_CARET_EQ] = ACTIONS(3203), + [anon_sym_COLON_EQ] = ACTIONS(3203), + [anon_sym_lock] = ACTIONS(3203), + [anon_sym_rlock] = ACTIONS(3203), + [anon_sym_unsafe] = ACTIONS(3203), + [anon_sym_sql] = ACTIONS(3203), + [sym_int_literal] = ACTIONS(3203), + [sym_float_literal] = ACTIONS(3203), + [sym_rune_literal] = ACTIONS(3203), + [anon_sym_AT] = ACTIONS(3203), + [anon_sym_shared] = ACTIONS(3203), + [anon_sym_map_LBRACK] = ACTIONS(3203), + [anon_sym_chan] = ACTIONS(3203), + [anon_sym_thread] = ACTIONS(3203), + [anon_sym_atomic] = ACTIONS(3203), + [anon_sym_assert] = ACTIONS(3203), + [anon_sym_defer] = ACTIONS(3203), + [anon_sym_goto] = ACTIONS(3203), + [anon_sym_break] = ACTIONS(3203), + [anon_sym_continue] = ACTIONS(3203), + [anon_sym_return] = ACTIONS(3203), + [anon_sym_DOLLARfor] = ACTIONS(3203), + [anon_sym_for] = ACTIONS(3203), + [anon_sym_POUND] = ACTIONS(3203), + [anon_sym_asm] = ACTIONS(3203), + [anon_sym_AT_LBRACK] = ACTIONS(3203), + [sym___double_quote] = ACTIONS(3203), + [sym___single_quote] = ACTIONS(3203), + [sym___c_double_quote] = ACTIONS(3203), + [sym___c_single_quote] = ACTIONS(3203), + [sym___r_double_quote] = ACTIONS(3203), + [sym___r_single_quote] = ACTIONS(3203), + }, + [961] = { + [sym_reference_expression] = STATE(4425), + [sym_type_reference_expression] = STATE(3388), + [sym_plain_type] = STATE(3421), + [sym__plain_type_without_special] = STATE(3431), [sym_anon_struct_type] = STATE(3438), - [sym_multi_return_type] = STATE(3442), - [sym_result_type] = STATE(3442), - [sym_option_type] = STATE(3442), - [sym_qualified_type] = STATE(3390), + [sym_multi_return_type] = STATE(3431), + [sym_result_type] = STATE(3431), + [sym_option_type] = STATE(3431), + [sym_qualified_type] = STATE(3388), [sym_fixed_array_type] = STATE(3438), [sym_array_type] = STATE(3438), [sym_pointer_type] = STATE(3438), @@ -136111,2200 +136737,2099 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_atomic_type] = STATE(3438), [sym_generic_type] = STATE(3438), [sym_function_type] = STATE(3438), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LF] = ACTIONS(2774), - [anon_sym_CR] = ACTIONS(2774), - [anon_sym_CR_LF] = ACTIONS(2774), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_as] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_COMMA] = ACTIONS(2772), - [anon_sym_RBRACE] = ACTIONS(2774), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym___global] = ACTIONS(3029), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_PERCENT] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2772), - [anon_sym_BANG_EQ] = ACTIONS(2772), - [anon_sym_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_EQ] = ACTIONS(2772), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_struct] = ACTIONS(3207), - [anon_sym_pub] = ACTIONS(3029), - [anon_sym_mut] = ACTIONS(2774), - [anon_sym_COLON] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [anon_sym_QMARK] = ACTIONS(3209), - [anon_sym_BANG] = ACTIONS(3211), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2772), - [anon_sym_json_DOTdecode] = ACTIONS(2772), - [anon_sym_LBRACK2] = ACTIONS(3213), - [anon_sym_TILDE] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym_LT_DASH] = ACTIONS(2772), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_GT_GT_GT] = ACTIONS(2772), - [anon_sym_AMP_CARET] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_PIPE_PIPE] = ACTIONS(2772), - [anon_sym_or] = ACTIONS(2772), - [sym_none] = ACTIONS(2772), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_nil] = ACTIONS(2772), - [anon_sym_QMARK_DOT] = ACTIONS(2772), - [anon_sym_POUND_LBRACK] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_DOLLARif] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_BANGis] = ACTIONS(2772), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_BANGin] = ACTIONS(2772), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_select] = ACTIONS(2772), - [anon_sym_lock] = ACTIONS(2772), - [anon_sym_rlock] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_sql] = ACTIONS(2772), - [sym_int_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2772), - [sym_rune_literal] = ACTIONS(2772), - [anon_sym_AT] = ACTIONS(2772), - [anon_sym_shared] = ACTIONS(3217), - [anon_sym_map_LBRACK] = ACTIONS(3219), - [anon_sym_chan] = ACTIONS(3221), - [anon_sym_thread] = ACTIONS(3223), - [anon_sym_atomic] = ACTIONS(3225), - [sym___double_quote] = ACTIONS(2772), - [sym___single_quote] = ACTIONS(2772), - [sym___c_double_quote] = ACTIONS(2772), - [sym___c_single_quote] = ACTIONS(2772), - [sym___r_double_quote] = ACTIONS(2772), - [sym___r_single_quote] = ACTIONS(2772), - }, - [958] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [aux_sym_strictly_expression_list_repeat1] = STATE(1423), - [ts_builtin_sym_end] = ACTIONS(3227), - [sym_identifier] = ACTIONS(1770), - [anon_sym_LF] = ACTIONS(1770), - [anon_sym_CR] = ACTIONS(1770), - [anon_sym_CR_LF] = ACTIONS(1770), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(1770), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(1770), - [anon_sym_type] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_fn] = ACTIONS(1770), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_GT] = ACTIONS(3241), - [anon_sym_EQ_EQ] = ACTIONS(3241), - [anon_sym_BANG_EQ] = ACTIONS(3241), - [anon_sym_LT_EQ] = ACTIONS(3241), - [anon_sym_GT_EQ] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(1770), - [anon_sym_union] = ACTIONS(1770), - [anon_sym_pub] = ACTIONS(1770), - [anon_sym_mut] = ACTIONS(1770), - [anon_sym_enum] = ACTIONS(1770), - [anon_sym_interface] = ACTIONS(1770), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(1770), - [anon_sym_spawn] = ACTIONS(1770), - [anon_sym_json_DOTdecode] = ACTIONS(1770), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(1770), - [anon_sym_CARET] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(1770), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3255), - [anon_sym_PIPE_PIPE] = ACTIONS(3257), - [anon_sym_or] = ACTIONS(3259), - [sym_none] = ACTIONS(1770), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [sym_nil] = ACTIONS(1770), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_DOLLARif] = ACTIONS(1770), - [anon_sym_is] = ACTIONS(3261), - [anon_sym_BANGis] = ACTIONS(3263), - [anon_sym_in] = ACTIONS(3265), - [anon_sym_BANGin] = ACTIONS(3267), - [anon_sym_match] = ACTIONS(1770), - [anon_sym_select] = ACTIONS(1770), - [anon_sym_lock] = ACTIONS(1770), - [anon_sym_rlock] = ACTIONS(1770), - [anon_sym_unsafe] = ACTIONS(1770), - [anon_sym_sql] = ACTIONS(1770), - [sym_int_literal] = ACTIONS(1770), - [sym_float_literal] = ACTIONS(1770), - [sym_rune_literal] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(1770), - [anon_sym_shared] = ACTIONS(1770), - [anon_sym_map_LBRACK] = ACTIONS(1770), - [anon_sym_chan] = ACTIONS(1770), - [anon_sym_thread] = ACTIONS(1770), - [anon_sym_atomic] = ACTIONS(1770), - [anon_sym_assert] = ACTIONS(1770), - [anon_sym_defer] = ACTIONS(1770), - [anon_sym_goto] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_DOLLARfor] = ACTIONS(1770), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_POUND] = ACTIONS(1770), - [anon_sym_asm] = ACTIONS(1770), - [anon_sym_AT_LBRACK] = ACTIONS(1770), - [sym___double_quote] = ACTIONS(1770), - [sym___single_quote] = ACTIONS(1770), - [sym___c_double_quote] = ACTIONS(1770), - [sym___c_single_quote] = ACTIONS(1770), - [sym___r_double_quote] = ACTIONS(1770), - [sym___r_single_quote] = ACTIONS(1770), - }, - [959] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_GT] = ACTIONS(3241), - [anon_sym_EQ_EQ] = ACTIONS(3241), - [anon_sym_BANG_EQ] = ACTIONS(3241), - [anon_sym_LT_EQ] = ACTIONS(3241), - [anon_sym_GT_EQ] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(3265), - [anon_sym_BANGin] = ACTIONS(3267), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [anon_sym_assert] = ACTIONS(2076), - [anon_sym_defer] = ACTIONS(2076), - [anon_sym_goto] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_DOLLARfor] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_asm] = ACTIONS(2076), - [anon_sym_AT_LBRACK] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), - }, - [960] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2228), - [sym_identifier] = ACTIONS(2230), - [anon_sym_LF] = ACTIONS(2230), - [anon_sym_CR] = ACTIONS(2230), - [anon_sym_CR_LF] = ACTIONS(2230), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_COMMA] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2230), - [anon_sym_type] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_fn] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2230), - [anon_sym_EQ_EQ] = ACTIONS(2230), - [anon_sym_BANG_EQ] = ACTIONS(2230), - [anon_sym_LT_EQ] = ACTIONS(2230), - [anon_sym_GT_EQ] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2230), - [anon_sym_union] = ACTIONS(2230), - [anon_sym_pub] = ACTIONS(2230), - [anon_sym_mut] = ACTIONS(2230), - [anon_sym_enum] = ACTIONS(2230), - [anon_sym_interface] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2230), - [anon_sym_spawn] = ACTIONS(2230), - [anon_sym_json_DOTdecode] = ACTIONS(2230), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_CARET] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_LT_DASH] = ACTIONS(2230), - [anon_sym_LT_LT] = ACTIONS(2230), - [anon_sym_GT_GT] = ACTIONS(2230), - [anon_sym_GT_GT_GT] = ACTIONS(2230), - [anon_sym_AMP_CARET] = ACTIONS(2230), - [anon_sym_AMP_AMP] = ACTIONS(2230), - [anon_sym_PIPE_PIPE] = ACTIONS(2230), - [anon_sym_or] = ACTIONS(2230), - [sym_none] = ACTIONS(2230), - [sym_true] = ACTIONS(2230), - [sym_false] = ACTIONS(2230), - [sym_nil] = ACTIONS(2230), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_DOLLARif] = ACTIONS(2230), - [anon_sym_is] = ACTIONS(2230), - [anon_sym_BANGis] = ACTIONS(2230), - [anon_sym_in] = ACTIONS(2230), - [anon_sym_BANGin] = ACTIONS(2230), - [anon_sym_match] = ACTIONS(2230), - [anon_sym_select] = ACTIONS(2230), - [anon_sym_lock] = ACTIONS(2230), - [anon_sym_rlock] = ACTIONS(2230), - [anon_sym_unsafe] = ACTIONS(2230), - [anon_sym_sql] = ACTIONS(2230), - [sym_int_literal] = ACTIONS(2230), - [sym_float_literal] = ACTIONS(2230), - [sym_rune_literal] = ACTIONS(2230), - [anon_sym_AT] = ACTIONS(2230), - [anon_sym_shared] = ACTIONS(2230), - [anon_sym_map_LBRACK] = ACTIONS(2230), - [anon_sym_chan] = ACTIONS(2230), - [anon_sym_thread] = ACTIONS(2230), - [anon_sym_atomic] = ACTIONS(2230), - [anon_sym_assert] = ACTIONS(2230), - [anon_sym_defer] = ACTIONS(2230), - [anon_sym_goto] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_DOLLARfor] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_POUND] = ACTIONS(2230), - [anon_sym_asm] = ACTIONS(2230), - [anon_sym_AT_LBRACK] = ACTIONS(2230), - [sym___double_quote] = ACTIONS(2230), - [sym___single_quote] = ACTIONS(2230), - [sym___c_double_quote] = ACTIONS(2230), - [sym___c_single_quote] = ACTIONS(2230), - [sym___r_double_quote] = ACTIONS(2230), - [sym___r_single_quote] = ACTIONS(2230), - }, - [961] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2208), - [sym_identifier] = ACTIONS(2210), - [anon_sym_LF] = ACTIONS(2210), - [anon_sym_CR] = ACTIONS(2210), - [anon_sym_CR_LF] = ACTIONS(2210), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(2210), - [anon_sym_COMMA] = ACTIONS(2210), - [anon_sym_const] = ACTIONS(2210), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2210), - [anon_sym_type] = ACTIONS(2210), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_fn] = ACTIONS(2210), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_GT] = ACTIONS(3241), - [anon_sym_EQ_EQ] = ACTIONS(3241), - [anon_sym_BANG_EQ] = ACTIONS(3241), - [anon_sym_LT_EQ] = ACTIONS(3241), - [anon_sym_GT_EQ] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2210), - [anon_sym_union] = ACTIONS(2210), - [anon_sym_pub] = ACTIONS(2210), - [anon_sym_mut] = ACTIONS(2210), - [anon_sym_enum] = ACTIONS(2210), - [anon_sym_interface] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2210), - [anon_sym_spawn] = ACTIONS(2210), - [anon_sym_json_DOTdecode] = ACTIONS(2210), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2210), - [anon_sym_CARET] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(2210), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3255), - [anon_sym_PIPE_PIPE] = ACTIONS(3257), - [anon_sym_or] = ACTIONS(3259), - [sym_none] = ACTIONS(2210), - [sym_true] = ACTIONS(2210), - [sym_false] = ACTIONS(2210), - [sym_nil] = ACTIONS(2210), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2210), - [anon_sym_DOLLARif] = ACTIONS(2210), - [anon_sym_is] = ACTIONS(3261), - [anon_sym_BANGis] = ACTIONS(3263), - [anon_sym_in] = ACTIONS(3265), - [anon_sym_BANGin] = ACTIONS(3267), - [anon_sym_match] = ACTIONS(2210), - [anon_sym_select] = ACTIONS(2210), - [anon_sym_lock] = ACTIONS(2210), - [anon_sym_rlock] = ACTIONS(2210), - [anon_sym_unsafe] = ACTIONS(2210), - [anon_sym_sql] = ACTIONS(2210), - [sym_int_literal] = ACTIONS(2210), - [sym_float_literal] = ACTIONS(2210), - [sym_rune_literal] = ACTIONS(2210), - [anon_sym_AT] = ACTIONS(2210), - [anon_sym_shared] = ACTIONS(2210), - [anon_sym_map_LBRACK] = ACTIONS(2210), - [anon_sym_chan] = ACTIONS(2210), - [anon_sym_thread] = ACTIONS(2210), - [anon_sym_atomic] = ACTIONS(2210), - [anon_sym_assert] = ACTIONS(2210), - [anon_sym_defer] = ACTIONS(2210), - [anon_sym_goto] = ACTIONS(2210), - [anon_sym_break] = ACTIONS(2210), - [anon_sym_continue] = ACTIONS(2210), - [anon_sym_return] = ACTIONS(2210), - [anon_sym_DOLLARfor] = ACTIONS(2210), - [anon_sym_for] = ACTIONS(2210), - [anon_sym_POUND] = ACTIONS(2210), - [anon_sym_asm] = ACTIONS(2210), - [anon_sym_AT_LBRACK] = ACTIONS(2210), - [sym___double_quote] = ACTIONS(2210), - [sym___single_quote] = ACTIONS(2210), - [sym___c_double_quote] = ACTIONS(2210), - [sym___c_single_quote] = ACTIONS(2210), - [sym___r_double_quote] = ACTIONS(2210), - [sym___r_single_quote] = ACTIONS(2210), + [sym_identifier] = ACTIONS(3205), + [anon_sym_LF] = ACTIONS(2742), + [anon_sym_CR] = ACTIONS(2742), + [anon_sym_CR_LF] = ACTIONS(2742), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2740), + [anon_sym_DOT] = ACTIONS(2740), + [anon_sym_as] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_COMMA] = ACTIONS(2740), + [anon_sym_RBRACE] = ACTIONS(2742), + [anon_sym_LPAREN] = ACTIONS(3207), + [anon_sym___global] = ACTIONS(2846), + [anon_sym_PIPE] = ACTIONS(2740), + [anon_sym_fn] = ACTIONS(3209), + [anon_sym_PLUS] = ACTIONS(2740), + [anon_sym_DASH] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(3211), + [anon_sym_SLASH] = ACTIONS(2740), + [anon_sym_PERCENT] = ACTIONS(2740), + [anon_sym_LT] = ACTIONS(2740), + [anon_sym_GT] = ACTIONS(2740), + [anon_sym_EQ_EQ] = ACTIONS(2740), + [anon_sym_BANG_EQ] = ACTIONS(2740), + [anon_sym_LT_EQ] = ACTIONS(2740), + [anon_sym_GT_EQ] = ACTIONS(2740), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(2745), + [anon_sym_struct] = ACTIONS(3213), + [anon_sym_pub] = ACTIONS(2846), + [anon_sym_mut] = ACTIONS(2742), + [anon_sym_COLON] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2740), + [anon_sym_DASH_DASH] = ACTIONS(2740), + [anon_sym_QMARK] = ACTIONS(3215), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_go] = ACTIONS(2740), + [anon_sym_spawn] = ACTIONS(2740), + [anon_sym_json_DOTdecode] = ACTIONS(2740), + [anon_sym_LBRACK2] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(2740), + [anon_sym_CARET] = ACTIONS(2740), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_LT_DASH] = ACTIONS(2740), + [anon_sym_LT_LT] = ACTIONS(2740), + [anon_sym_GT_GT] = ACTIONS(2740), + [anon_sym_GT_GT_GT] = ACTIONS(2740), + [anon_sym_AMP_CARET] = ACTIONS(2740), + [anon_sym_AMP_AMP] = ACTIONS(2740), + [anon_sym_PIPE_PIPE] = ACTIONS(2740), + [anon_sym_or] = ACTIONS(2740), + [sym_none] = ACTIONS(2740), + [sym_true] = ACTIONS(2740), + [sym_false] = ACTIONS(2740), + [sym_nil] = ACTIONS(2740), + [anon_sym_QMARK_DOT] = ACTIONS(2740), + [anon_sym_POUND_LBRACK] = ACTIONS(2740), + [anon_sym_if] = ACTIONS(2740), + [anon_sym_DOLLARif] = ACTIONS(2740), + [anon_sym_is] = ACTIONS(2740), + [anon_sym_BANGis] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2740), + [anon_sym_BANGin] = ACTIONS(2740), + [anon_sym_match] = ACTIONS(2740), + [anon_sym_select] = ACTIONS(2740), + [anon_sym_lock] = ACTIONS(2740), + [anon_sym_rlock] = ACTIONS(2740), + [anon_sym_unsafe] = ACTIONS(2740), + [anon_sym_sql] = ACTIONS(2740), + [sym_int_literal] = ACTIONS(2740), + [sym_float_literal] = ACTIONS(2740), + [sym_rune_literal] = ACTIONS(2740), + [anon_sym_AT] = ACTIONS(2740), + [anon_sym_shared] = ACTIONS(3223), + [anon_sym_map_LBRACK] = ACTIONS(3225), + [anon_sym_chan] = ACTIONS(3227), + [anon_sym_thread] = ACTIONS(3229), + [anon_sym_atomic] = ACTIONS(3231), + [sym___double_quote] = ACTIONS(2740), + [sym___single_quote] = ACTIONS(2740), + [sym___c_double_quote] = ACTIONS(2740), + [sym___c_single_quote] = ACTIONS(2740), + [sym___r_double_quote] = ACTIONS(2740), + [sym___r_single_quote] = ACTIONS(2740), }, [962] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(3269), - [sym_identifier] = ACTIONS(3271), - [anon_sym_LF] = ACTIONS(3271), - [anon_sym_CR] = ACTIONS(3271), - [anon_sym_CR_LF] = ACTIONS(3271), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_COMMA] = ACTIONS(3273), - [anon_sym_const] = ACTIONS(3271), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(3271), - [anon_sym_type] = ACTIONS(3271), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_fn] = ACTIONS(3271), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_GT] = ACTIONS(3241), - [anon_sym_EQ_EQ] = ACTIONS(3241), - [anon_sym_BANG_EQ] = ACTIONS(3241), - [anon_sym_LT_EQ] = ACTIONS(3241), - [anon_sym_GT_EQ] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(3271), - [anon_sym_union] = ACTIONS(3271), - [anon_sym_pub] = ACTIONS(3271), - [anon_sym_mut] = ACTIONS(3271), - [anon_sym_enum] = ACTIONS(3271), - [anon_sym_interface] = ACTIONS(3271), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(3271), - [anon_sym_spawn] = ACTIONS(3271), - [anon_sym_json_DOTdecode] = ACTIONS(3271), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3271), - [anon_sym_CARET] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(3271), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3255), - [anon_sym_PIPE_PIPE] = ACTIONS(3257), - [anon_sym_or] = ACTIONS(3259), - [sym_none] = ACTIONS(3271), - [sym_true] = ACTIONS(3271), - [sym_false] = ACTIONS(3271), - [sym_nil] = ACTIONS(3271), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3271), - [anon_sym_DOLLARif] = ACTIONS(3271), - [anon_sym_is] = ACTIONS(3261), - [anon_sym_BANGis] = ACTIONS(3263), - [anon_sym_in] = ACTIONS(3265), - [anon_sym_BANGin] = ACTIONS(3267), - [anon_sym_match] = ACTIONS(3271), - [anon_sym_select] = ACTIONS(3271), - [anon_sym_lock] = ACTIONS(3271), - [anon_sym_rlock] = ACTIONS(3271), - [anon_sym_unsafe] = ACTIONS(3271), - [anon_sym_sql] = ACTIONS(3271), - [sym_int_literal] = ACTIONS(3271), - [sym_float_literal] = ACTIONS(3271), - [sym_rune_literal] = ACTIONS(3271), - [anon_sym_AT] = ACTIONS(3271), - [anon_sym_shared] = ACTIONS(3271), - [anon_sym_map_LBRACK] = ACTIONS(3271), - [anon_sym_chan] = ACTIONS(3271), - [anon_sym_thread] = ACTIONS(3271), - [anon_sym_atomic] = ACTIONS(3271), - [anon_sym_assert] = ACTIONS(3271), - [anon_sym_defer] = ACTIONS(3271), - [anon_sym_goto] = ACTIONS(3271), - [anon_sym_break] = ACTIONS(3271), - [anon_sym_continue] = ACTIONS(3271), - [anon_sym_return] = ACTIONS(3271), - [anon_sym_DOLLARfor] = ACTIONS(3271), - [anon_sym_for] = ACTIONS(3271), - [anon_sym_POUND] = ACTIONS(3271), - [anon_sym_asm] = ACTIONS(3271), - [anon_sym_AT_LBRACK] = ACTIONS(3271), - [sym___double_quote] = ACTIONS(3271), - [sym___single_quote] = ACTIONS(3271), - [sym___c_double_quote] = ACTIONS(3271), - [sym___c_single_quote] = ACTIONS(3271), - [sym___r_double_quote] = ACTIONS(3271), - [sym___r_single_quote] = ACTIONS(3271), + [sym_type_parameters] = STATE(4109), + [sym_argument_list] = STATE(1029), + [sym_or_block] = STATE(1030), + [aux_sym_strictly_expression_list_repeat1] = STATE(1421), + [ts_builtin_sym_end] = ACTIONS(3233), + [sym_identifier] = ACTIONS(1780), + [anon_sym_LF] = ACTIONS(1780), + [anon_sym_CR] = ACTIONS(1780), + [anon_sym_CR_LF] = ACTIONS(1780), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_as] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(1780), + [anon_sym_COMMA] = ACTIONS(3239), + [anon_sym_const] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(1780), + [anon_sym_type] = ACTIONS(1780), + [anon_sym_PIPE] = ACTIONS(3243), + [anon_sym_fn] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(3243), + [anon_sym_STAR] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_PERCENT] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3247), + [anon_sym_GT] = ACTIONS(3247), + [anon_sym_EQ_EQ] = ACTIONS(3247), + [anon_sym_BANG_EQ] = ACTIONS(3247), + [anon_sym_LT_EQ] = ACTIONS(3247), + [anon_sym_GT_EQ] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_struct] = ACTIONS(1780), + [anon_sym_union] = ACTIONS(1780), + [anon_sym_pub] = ACTIONS(1780), + [anon_sym_mut] = ACTIONS(1780), + [anon_sym_enum] = ACTIONS(1780), + [anon_sym_interface] = ACTIONS(1780), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_DASH_DASH] = ACTIONS(3253), + [anon_sym_QMARK] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(1780), + [anon_sym_spawn] = ACTIONS(1780), + [anon_sym_json_DOTdecode] = ACTIONS(1780), + [anon_sym_LBRACK2] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(1780), + [anon_sym_CARET] = ACTIONS(3243), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_LT_DASH] = ACTIONS(1780), + [anon_sym_LT_LT] = ACTIONS(3245), + [anon_sym_GT_GT] = ACTIONS(3245), + [anon_sym_GT_GT_GT] = ACTIONS(3245), + [anon_sym_AMP_CARET] = ACTIONS(3245), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3263), + [anon_sym_or] = ACTIONS(3265), + [sym_none] = ACTIONS(1780), + [sym_true] = ACTIONS(1780), + [sym_false] = ACTIONS(1780), + [sym_nil] = ACTIONS(1780), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_DOLLARif] = ACTIONS(1780), + [anon_sym_is] = ACTIONS(3267), + [anon_sym_BANGis] = ACTIONS(3269), + [anon_sym_in] = ACTIONS(3271), + [anon_sym_BANGin] = ACTIONS(3273), + [anon_sym_match] = ACTIONS(1780), + [anon_sym_select] = ACTIONS(1780), + [anon_sym_lock] = ACTIONS(1780), + [anon_sym_rlock] = ACTIONS(1780), + [anon_sym_unsafe] = ACTIONS(1780), + [anon_sym_sql] = ACTIONS(1780), + [sym_int_literal] = ACTIONS(1780), + [sym_float_literal] = ACTIONS(1780), + [sym_rune_literal] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(1780), + [anon_sym_shared] = ACTIONS(1780), + [anon_sym_map_LBRACK] = ACTIONS(1780), + [anon_sym_chan] = ACTIONS(1780), + [anon_sym_thread] = ACTIONS(1780), + [anon_sym_atomic] = ACTIONS(1780), + [anon_sym_assert] = ACTIONS(1780), + [anon_sym_defer] = ACTIONS(1780), + [anon_sym_goto] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_DOLLARfor] = ACTIONS(1780), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(1780), + [anon_sym_asm] = ACTIONS(1780), + [anon_sym_AT_LBRACK] = ACTIONS(1780), + [sym___double_quote] = ACTIONS(1780), + [sym___single_quote] = ACTIONS(1780), + [sym___c_double_quote] = ACTIONS(1780), + [sym___c_single_quote] = ACTIONS(1780), + [sym___r_double_quote] = ACTIONS(1780), + [sym___r_single_quote] = ACTIONS(1780), }, [963] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2162), - [sym_identifier] = ACTIONS(2164), - [anon_sym_LF] = ACTIONS(2164), - [anon_sym_CR] = ACTIONS(2164), - [anon_sym_CR_LF] = ACTIONS(2164), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2164), - [anon_sym_LBRACE] = ACTIONS(2164), - [anon_sym_COMMA] = ACTIONS(2164), - [anon_sym_const] = ACTIONS(2164), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2164), - [anon_sym_type] = ACTIONS(2164), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_fn] = ACTIONS(2164), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_STAR] = ACTIONS(2164), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_PERCENT] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_EQ_EQ] = ACTIONS(2164), - [anon_sym_BANG_EQ] = ACTIONS(2164), - [anon_sym_LT_EQ] = ACTIONS(2164), - [anon_sym_GT_EQ] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2164), - [anon_sym_union] = ACTIONS(2164), - [anon_sym_pub] = ACTIONS(2164), - [anon_sym_mut] = ACTIONS(2164), - [anon_sym_enum] = ACTIONS(2164), - [anon_sym_interface] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(2164), - [anon_sym_DASH_DASH] = ACTIONS(2164), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2164), - [anon_sym_spawn] = ACTIONS(2164), - [anon_sym_json_DOTdecode] = ACTIONS(2164), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2164), - [anon_sym_CARET] = ACTIONS(2164), - [anon_sym_AMP] = ACTIONS(2164), - [anon_sym_LT_DASH] = ACTIONS(2164), - [anon_sym_LT_LT] = ACTIONS(2164), - [anon_sym_GT_GT] = ACTIONS(2164), - [anon_sym_GT_GT_GT] = ACTIONS(2164), - [anon_sym_AMP_CARET] = ACTIONS(2164), - [anon_sym_AMP_AMP] = ACTIONS(2164), - [anon_sym_PIPE_PIPE] = ACTIONS(2164), - [anon_sym_or] = ACTIONS(2164), - [sym_none] = ACTIONS(2164), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), - [sym_nil] = ACTIONS(2164), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2164), - [anon_sym_DOLLARif] = ACTIONS(2164), - [anon_sym_is] = ACTIONS(2164), - [anon_sym_BANGis] = ACTIONS(2164), - [anon_sym_in] = ACTIONS(2164), - [anon_sym_BANGin] = ACTIONS(2164), - [anon_sym_match] = ACTIONS(2164), - [anon_sym_select] = ACTIONS(2164), - [anon_sym_lock] = ACTIONS(2164), - [anon_sym_rlock] = ACTIONS(2164), - [anon_sym_unsafe] = ACTIONS(2164), - [anon_sym_sql] = ACTIONS(2164), - [sym_int_literal] = ACTIONS(2164), - [sym_float_literal] = ACTIONS(2164), - [sym_rune_literal] = ACTIONS(2164), - [anon_sym_AT] = ACTIONS(2164), - [anon_sym_shared] = ACTIONS(2164), - [anon_sym_map_LBRACK] = ACTIONS(2164), - [anon_sym_chan] = ACTIONS(2164), - [anon_sym_thread] = ACTIONS(2164), - [anon_sym_atomic] = ACTIONS(2164), - [anon_sym_assert] = ACTIONS(2164), - [anon_sym_defer] = ACTIONS(2164), - [anon_sym_goto] = ACTIONS(2164), - [anon_sym_break] = ACTIONS(2164), - [anon_sym_continue] = ACTIONS(2164), - [anon_sym_return] = ACTIONS(2164), - [anon_sym_DOLLARfor] = ACTIONS(2164), - [anon_sym_for] = ACTIONS(2164), - [anon_sym_POUND] = ACTIONS(2164), - [anon_sym_asm] = ACTIONS(2164), - [anon_sym_AT_LBRACK] = ACTIONS(2164), - [sym___double_quote] = ACTIONS(2164), - [sym___single_quote] = ACTIONS(2164), - [sym___c_double_quote] = ACTIONS(2164), - [sym___c_single_quote] = ACTIONS(2164), - [sym___r_double_quote] = ACTIONS(2164), - [sym___r_single_quote] = ACTIONS(2164), + [sym_type_parameters] = STATE(4109), + [sym_argument_list] = STATE(1029), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(2142), + [sym_identifier] = ACTIONS(2144), + [anon_sym_LF] = ACTIONS(2144), + [anon_sym_CR] = ACTIONS(2144), + [anon_sym_CR_LF] = ACTIONS(2144), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_as] = ACTIONS(2144), + [anon_sym_LBRACE] = ACTIONS(2144), + [anon_sym_COMMA] = ACTIONS(2144), + [anon_sym_const] = ACTIONS(2144), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(2144), + [anon_sym_type] = ACTIONS(2144), + [anon_sym_PIPE] = ACTIONS(3243), + [anon_sym_fn] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(3243), + [anon_sym_STAR] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_PERCENT] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(2144), + [anon_sym_GT] = ACTIONS(2144), + [anon_sym_EQ_EQ] = ACTIONS(2144), + [anon_sym_BANG_EQ] = ACTIONS(2144), + [anon_sym_LT_EQ] = ACTIONS(2144), + [anon_sym_GT_EQ] = ACTIONS(2144), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_struct] = ACTIONS(2144), + [anon_sym_union] = ACTIONS(2144), + [anon_sym_pub] = ACTIONS(2144), + [anon_sym_mut] = ACTIONS(2144), + [anon_sym_enum] = ACTIONS(2144), + [anon_sym_interface] = ACTIONS(2144), + [anon_sym_PLUS_PLUS] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2144), + [anon_sym_QMARK] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(2144), + [anon_sym_spawn] = ACTIONS(2144), + [anon_sym_json_DOTdecode] = ACTIONS(2144), + [anon_sym_LBRACK2] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_CARET] = ACTIONS(3243), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_LT_DASH] = ACTIONS(2144), + [anon_sym_LT_LT] = ACTIONS(3245), + [anon_sym_GT_GT] = ACTIONS(3245), + [anon_sym_GT_GT_GT] = ACTIONS(3245), + [anon_sym_AMP_CARET] = ACTIONS(3245), + [anon_sym_AMP_AMP] = ACTIONS(2144), + [anon_sym_PIPE_PIPE] = ACTIONS(2144), + [anon_sym_or] = ACTIONS(2144), + [sym_none] = ACTIONS(2144), + [sym_true] = ACTIONS(2144), + [sym_false] = ACTIONS(2144), + [sym_nil] = ACTIONS(2144), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(2144), + [anon_sym_DOLLARif] = ACTIONS(2144), + [anon_sym_is] = ACTIONS(2144), + [anon_sym_BANGis] = ACTIONS(2144), + [anon_sym_in] = ACTIONS(2144), + [anon_sym_BANGin] = ACTIONS(2144), + [anon_sym_match] = ACTIONS(2144), + [anon_sym_select] = ACTIONS(2144), + [anon_sym_lock] = ACTIONS(2144), + [anon_sym_rlock] = ACTIONS(2144), + [anon_sym_unsafe] = ACTIONS(2144), + [anon_sym_sql] = ACTIONS(2144), + [sym_int_literal] = ACTIONS(2144), + [sym_float_literal] = ACTIONS(2144), + [sym_rune_literal] = ACTIONS(2144), + [anon_sym_AT] = ACTIONS(2144), + [anon_sym_shared] = ACTIONS(2144), + [anon_sym_map_LBRACK] = ACTIONS(2144), + [anon_sym_chan] = ACTIONS(2144), + [anon_sym_thread] = ACTIONS(2144), + [anon_sym_atomic] = ACTIONS(2144), + [anon_sym_assert] = ACTIONS(2144), + [anon_sym_defer] = ACTIONS(2144), + [anon_sym_goto] = ACTIONS(2144), + [anon_sym_break] = ACTIONS(2144), + [anon_sym_continue] = ACTIONS(2144), + [anon_sym_return] = ACTIONS(2144), + [anon_sym_DOLLARfor] = ACTIONS(2144), + [anon_sym_for] = ACTIONS(2144), + [anon_sym_POUND] = ACTIONS(2144), + [anon_sym_asm] = ACTIONS(2144), + [anon_sym_AT_LBRACK] = ACTIONS(2144), + [sym___double_quote] = ACTIONS(2144), + [sym___single_quote] = ACTIONS(2144), + [sym___c_double_quote] = ACTIONS(2144), + [sym___c_single_quote] = ACTIONS(2144), + [sym___r_double_quote] = ACTIONS(2144), + [sym___r_single_quote] = ACTIONS(2144), }, [964] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2076), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [anon_sym_assert] = ACTIONS(2076), - [anon_sym_defer] = ACTIONS(2076), - [anon_sym_goto] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_DOLLARfor] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_asm] = ACTIONS(2076), - [anon_sym_AT_LBRACK] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), + [sym_reference_expression] = STATE(4511), + [sym_type_reference_expression] = STATE(1167), + [sym_plain_type] = STATE(1227), + [sym__plain_type_without_special] = STATE(1254), + [sym_anon_struct_type] = STATE(1255), + [sym_multi_return_type] = STATE(1254), + [sym_result_type] = STATE(1254), + [sym_option_type] = STATE(1254), + [sym_qualified_type] = STATE(1167), + [sym_fixed_array_type] = STATE(1255), + [sym_array_type] = STATE(1255), + [sym_pointer_type] = STATE(1255), + [sym_wrong_pointer_type] = STATE(1255), + [sym_map_type] = STATE(1255), + [sym_channel_type] = STATE(1255), + [sym_shared_type] = STATE(1255), + [sym_thread_type] = STATE(1255), + [sym_atomic_type] = STATE(1255), + [sym_generic_type] = STATE(1255), + [sym_function_type] = STATE(1255), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LF] = ACTIONS(621), + [anon_sym_CR] = ACTIONS(621), + [anon_sym_CR_LF] = ACTIONS(621), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_as] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_fn] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(621), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_EQ_EQ] = ACTIONS(621), + [anon_sym_BANG_EQ] = ACTIONS(621), + [anon_sym_LT_EQ] = ACTIONS(621), + [anon_sym_GT_EQ] = ACTIONS(621), + [anon_sym_LBRACK] = ACTIONS(619), + [anon_sym_struct] = ACTIONS(3283), + [anon_sym_mut] = ACTIONS(621), + [anon_sym_PLUS_PLUS] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3287), + [anon_sym_go] = ACTIONS(621), + [anon_sym_spawn] = ACTIONS(621), + [anon_sym_json_DOTdecode] = ACTIONS(621), + [anon_sym_LBRACK2] = ACTIONS(3289), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(3291), + [anon_sym_LT_DASH] = ACTIONS(621), + [anon_sym_LT_LT] = ACTIONS(621), + [anon_sym_GT_GT] = ACTIONS(621), + [anon_sym_GT_GT_GT] = ACTIONS(621), + [anon_sym_AMP_CARET] = ACTIONS(621), + [anon_sym_AMP_AMP] = ACTIONS(621), + [anon_sym_PIPE_PIPE] = ACTIONS(621), + [anon_sym_or] = ACTIONS(621), + [sym_none] = ACTIONS(621), + [sym_true] = ACTIONS(621), + [sym_false] = ACTIONS(621), + [sym_nil] = ACTIONS(621), + [anon_sym_QMARK_DOT] = ACTIONS(621), + [anon_sym_POUND_LBRACK] = ACTIONS(621), + [anon_sym_if] = ACTIONS(621), + [anon_sym_DOLLARif] = ACTIONS(621), + [anon_sym_is] = ACTIONS(621), + [anon_sym_BANGis] = ACTIONS(621), + [anon_sym_in] = ACTIONS(621), + [anon_sym_BANGin] = ACTIONS(621), + [anon_sym_match] = ACTIONS(621), + [anon_sym_select] = ACTIONS(621), + [anon_sym_lock] = ACTIONS(621), + [anon_sym_rlock] = ACTIONS(621), + [anon_sym_unsafe] = ACTIONS(621), + [anon_sym_sql] = ACTIONS(621), + [sym_int_literal] = ACTIONS(621), + [sym_float_literal] = ACTIONS(621), + [sym_rune_literal] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_shared] = ACTIONS(3293), + [anon_sym_map_LBRACK] = ACTIONS(3295), + [anon_sym_chan] = ACTIONS(3297), + [anon_sym_thread] = ACTIONS(3299), + [anon_sym_atomic] = ACTIONS(3301), + [sym___double_quote] = ACTIONS(621), + [sym___single_quote] = ACTIONS(621), + [sym___c_double_quote] = ACTIONS(621), + [sym___c_single_quote] = ACTIONS(621), + [sym___r_double_quote] = ACTIONS(621), + [sym___r_single_quote] = ACTIONS(621), }, [965] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2076), - [anon_sym_STAR] = ACTIONS(2076), - [anon_sym_SLASH] = ACTIONS(2076), - [anon_sym_PERCENT] = ACTIONS(2076), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(2076), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(2076), - [anon_sym_GT_GT] = ACTIONS(2076), - [anon_sym_GT_GT_GT] = ACTIONS(2076), - [anon_sym_AMP_CARET] = ACTIONS(2076), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [anon_sym_assert] = ACTIONS(2076), - [anon_sym_defer] = ACTIONS(2076), - [anon_sym_goto] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_DOLLARfor] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_asm] = ACTIONS(2076), - [anon_sym_AT_LBRACK] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), + [sym_reference_expression] = STATE(4511), + [sym_type_reference_expression] = STATE(1167), + [sym_plain_type] = STATE(1231), + [sym__plain_type_without_special] = STATE(1254), + [sym_anon_struct_type] = STATE(1255), + [sym_multi_return_type] = STATE(1254), + [sym_result_type] = STATE(1254), + [sym_option_type] = STATE(1254), + [sym_qualified_type] = STATE(1167), + [sym_fixed_array_type] = STATE(1255), + [sym_array_type] = STATE(1255), + [sym_pointer_type] = STATE(1255), + [sym_wrong_pointer_type] = STATE(1255), + [sym_map_type] = STATE(1255), + [sym_channel_type] = STATE(1255), + [sym_shared_type] = STATE(1255), + [sym_thread_type] = STATE(1255), + [sym_atomic_type] = STATE(1255), + [sym_generic_type] = STATE(1255), + [sym_function_type] = STATE(1255), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LF] = ACTIONS(613), + [anon_sym_CR] = ACTIONS(613), + [anon_sym_CR_LF] = ACTIONS(613), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(613), + [anon_sym_DOT] = ACTIONS(613), + [anon_sym_as] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_COMMA] = ACTIONS(613), + [anon_sym_RBRACE] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(613), + [anon_sym_fn] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(613), + [anon_sym_DASH] = ACTIONS(613), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(613), + [anon_sym_PERCENT] = ACTIONS(613), + [anon_sym_LT] = ACTIONS(613), + [anon_sym_GT] = ACTIONS(613), + [anon_sym_EQ_EQ] = ACTIONS(613), + [anon_sym_BANG_EQ] = ACTIONS(613), + [anon_sym_LT_EQ] = ACTIONS(613), + [anon_sym_GT_EQ] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(611), + [anon_sym_struct] = ACTIONS(3283), + [anon_sym_mut] = ACTIONS(613), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3287), + [anon_sym_go] = ACTIONS(613), + [anon_sym_spawn] = ACTIONS(613), + [anon_sym_json_DOTdecode] = ACTIONS(613), + [anon_sym_LBRACK2] = ACTIONS(3289), + [anon_sym_TILDE] = ACTIONS(613), + [anon_sym_CARET] = ACTIONS(613), + [anon_sym_AMP] = ACTIONS(3291), + [anon_sym_LT_DASH] = ACTIONS(613), + [anon_sym_LT_LT] = ACTIONS(613), + [anon_sym_GT_GT] = ACTIONS(613), + [anon_sym_GT_GT_GT] = ACTIONS(613), + [anon_sym_AMP_CARET] = ACTIONS(613), + [anon_sym_AMP_AMP] = ACTIONS(613), + [anon_sym_PIPE_PIPE] = ACTIONS(613), + [anon_sym_or] = ACTIONS(613), + [sym_none] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_nil] = ACTIONS(613), + [anon_sym_QMARK_DOT] = ACTIONS(613), + [anon_sym_POUND_LBRACK] = ACTIONS(613), + [anon_sym_if] = ACTIONS(613), + [anon_sym_DOLLARif] = ACTIONS(613), + [anon_sym_is] = ACTIONS(613), + [anon_sym_BANGis] = ACTIONS(613), + [anon_sym_in] = ACTIONS(613), + [anon_sym_BANGin] = ACTIONS(613), + [anon_sym_match] = ACTIONS(613), + [anon_sym_select] = ACTIONS(613), + [anon_sym_lock] = ACTIONS(613), + [anon_sym_rlock] = ACTIONS(613), + [anon_sym_unsafe] = ACTIONS(613), + [anon_sym_sql] = ACTIONS(613), + [sym_int_literal] = ACTIONS(613), + [sym_float_literal] = ACTIONS(613), + [sym_rune_literal] = ACTIONS(613), + [anon_sym_AT] = ACTIONS(613), + [anon_sym_shared] = ACTIONS(3293), + [anon_sym_map_LBRACK] = ACTIONS(3295), + [anon_sym_chan] = ACTIONS(3297), + [anon_sym_thread] = ACTIONS(3299), + [anon_sym_atomic] = ACTIONS(3301), + [sym___double_quote] = ACTIONS(613), + [sym___single_quote] = ACTIONS(613), + [sym___c_double_quote] = ACTIONS(613), + [sym___c_single_quote] = ACTIONS(613), + [sym___r_double_quote] = ACTIONS(613), + [sym___r_single_quote] = ACTIONS(613), }, [966] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [anon_sym_assert] = ACTIONS(2076), - [anon_sym_defer] = ACTIONS(2076), - [anon_sym_goto] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_DOLLARfor] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_asm] = ACTIONS(2076), - [anon_sym_AT_LBRACK] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), + [sym_type_parameters] = STATE(4109), + [sym_argument_list] = STATE(1029), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2172), + [anon_sym_LF] = ACTIONS(2172), + [anon_sym_CR] = ACTIONS(2172), + [anon_sym_CR_LF] = ACTIONS(2172), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_as] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_COMMA] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(3243), + [anon_sym_fn] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(3243), + [anon_sym_STAR] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_PERCENT] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3247), + [anon_sym_GT] = ACTIONS(3247), + [anon_sym_EQ_EQ] = ACTIONS(3247), + [anon_sym_BANG_EQ] = ACTIONS(3247), + [anon_sym_LT_EQ] = ACTIONS(3247), + [anon_sym_GT_EQ] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_struct] = ACTIONS(2172), + [anon_sym_union] = ACTIONS(2172), + [anon_sym_pub] = ACTIONS(2172), + [anon_sym_mut] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_DASH_DASH] = ACTIONS(3253), + [anon_sym_QMARK] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(2172), + [anon_sym_spawn] = ACTIONS(2172), + [anon_sym_json_DOTdecode] = ACTIONS(2172), + [anon_sym_LBRACK2] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(2172), + [anon_sym_CARET] = ACTIONS(3243), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_LT_DASH] = ACTIONS(2172), + [anon_sym_LT_LT] = ACTIONS(3245), + [anon_sym_GT_GT] = ACTIONS(3245), + [anon_sym_GT_GT_GT] = ACTIONS(3245), + [anon_sym_AMP_CARET] = ACTIONS(3245), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3263), + [anon_sym_or] = ACTIONS(3265), + [sym_none] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_nil] = ACTIONS(2172), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_DOLLARif] = ACTIONS(2172), + [anon_sym_is] = ACTIONS(3303), + [anon_sym_BANGis] = ACTIONS(3305), + [anon_sym_in] = ACTIONS(3271), + [anon_sym_BANGin] = ACTIONS(3273), + [anon_sym_match] = ACTIONS(2172), + [anon_sym_select] = ACTIONS(2172), + [anon_sym_lock] = ACTIONS(2172), + [anon_sym_rlock] = ACTIONS(2172), + [anon_sym_unsafe] = ACTIONS(2172), + [anon_sym_sql] = ACTIONS(2172), + [sym_int_literal] = ACTIONS(2172), + [sym_float_literal] = ACTIONS(2172), + [sym_rune_literal] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2172), + [anon_sym_shared] = ACTIONS(2172), + [anon_sym_map_LBRACK] = ACTIONS(2172), + [anon_sym_chan] = ACTIONS(2172), + [anon_sym_thread] = ACTIONS(2172), + [anon_sym_atomic] = ACTIONS(2172), + [anon_sym_assert] = ACTIONS(2172), + [anon_sym_defer] = ACTIONS(2172), + [anon_sym_goto] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_DOLLARfor] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(2172), + [anon_sym_asm] = ACTIONS(2172), + [anon_sym_AT_LBRACK] = ACTIONS(2172), + [sym___double_quote] = ACTIONS(2172), + [sym___single_quote] = ACTIONS(2172), + [sym___c_double_quote] = ACTIONS(2172), + [sym___c_single_quote] = ACTIONS(2172), + [sym___r_double_quote] = ACTIONS(2172), + [sym___r_single_quote] = ACTIONS(2172), }, [967] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [anon_sym_LF] = ACTIONS(595), - [anon_sym_CR] = ACTIONS(595), - [anon_sym_CR_LF] = ACTIONS(595), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(595), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_as] = ACTIONS(595), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_RBRACE] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [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(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_mut] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_go] = ACTIONS(595), - [anon_sym_spawn] = ACTIONS(595), - [anon_sym_json_DOTdecode] = ACTIONS(595), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_TILDE] = ACTIONS(595), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_DASH] = ACTIONS(595), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [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(595), - [sym_none] = ACTIONS(595), - [sym_true] = ACTIONS(595), - [sym_false] = ACTIONS(595), - [sym_nil] = ACTIONS(595), - [anon_sym_QMARK_DOT] = ACTIONS(595), - [anon_sym_POUND_LBRACK] = ACTIONS(595), - [anon_sym_if] = ACTIONS(595), - [anon_sym_DOLLARif] = ACTIONS(595), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(595), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(595), - [anon_sym_match] = ACTIONS(595), - [anon_sym_select] = ACTIONS(595), - [anon_sym_lock] = ACTIONS(595), - [anon_sym_rlock] = ACTIONS(595), - [anon_sym_unsafe] = ACTIONS(595), - [anon_sym_sql] = ACTIONS(595), - [sym_int_literal] = ACTIONS(595), - [sym_float_literal] = ACTIONS(595), - [sym_rune_literal] = ACTIONS(595), - [anon_sym_AT] = ACTIONS(595), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(537), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(595), - [sym___single_quote] = ACTIONS(595), - [sym___c_double_quote] = ACTIONS(595), - [sym___c_single_quote] = ACTIONS(595), - [sym___r_double_quote] = ACTIONS(595), - [sym___r_single_quote] = ACTIONS(595), + [sym_reference_expression] = STATE(4511), + [sym_type_reference_expression] = STATE(1167), + [sym_plain_type] = STATE(1261), + [sym__plain_type_without_special] = STATE(1254), + [sym_anon_struct_type] = STATE(1255), + [sym_multi_return_type] = STATE(1254), + [sym_result_type] = STATE(1254), + [sym_option_type] = STATE(1254), + [sym_qualified_type] = STATE(1167), + [sym_fixed_array_type] = STATE(1255), + [sym_array_type] = STATE(1255), + [sym_pointer_type] = STATE(1255), + [sym_wrong_pointer_type] = STATE(1255), + [sym_map_type] = STATE(1255), + [sym_channel_type] = STATE(1255), + [sym_shared_type] = STATE(1255), + [sym_thread_type] = STATE(1255), + [sym_atomic_type] = STATE(1255), + [sym_generic_type] = STATE(1255), + [sym_function_type] = STATE(1255), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LF] = ACTIONS(561), + [anon_sym_CR] = ACTIONS(561), + [anon_sym_CR_LF] = ACTIONS(561), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_DOT] = ACTIONS(561), + [anon_sym_as] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_COMMA] = ACTIONS(561), + [anon_sym_RBRACE] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(561), + [anon_sym_PERCENT] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(561), + [anon_sym_GT] = ACTIONS(561), + [anon_sym_EQ_EQ] = ACTIONS(561), + [anon_sym_BANG_EQ] = ACTIONS(561), + [anon_sym_LT_EQ] = ACTIONS(561), + [anon_sym_GT_EQ] = ACTIONS(561), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_struct] = ACTIONS(3283), + [anon_sym_mut] = ACTIONS(561), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [anon_sym_QMARK] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3287), + [anon_sym_go] = ACTIONS(561), + [anon_sym_spawn] = ACTIONS(561), + [anon_sym_json_DOTdecode] = ACTIONS(561), + [anon_sym_LBRACK2] = ACTIONS(3289), + [anon_sym_TILDE] = ACTIONS(561), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(3291), + [anon_sym_LT_DASH] = ACTIONS(561), + [anon_sym_LT_LT] = ACTIONS(561), + [anon_sym_GT_GT] = ACTIONS(561), + [anon_sym_GT_GT_GT] = ACTIONS(561), + [anon_sym_AMP_CARET] = ACTIONS(561), + [anon_sym_AMP_AMP] = ACTIONS(561), + [anon_sym_PIPE_PIPE] = ACTIONS(561), + [anon_sym_or] = ACTIONS(561), + [sym_none] = ACTIONS(561), + [sym_true] = ACTIONS(561), + [sym_false] = ACTIONS(561), + [sym_nil] = ACTIONS(561), + [anon_sym_QMARK_DOT] = ACTIONS(561), + [anon_sym_POUND_LBRACK] = ACTIONS(561), + [anon_sym_if] = ACTIONS(561), + [anon_sym_DOLLARif] = ACTIONS(561), + [anon_sym_is] = ACTIONS(561), + [anon_sym_BANGis] = ACTIONS(561), + [anon_sym_in] = ACTIONS(561), + [anon_sym_BANGin] = ACTIONS(561), + [anon_sym_match] = ACTIONS(561), + [anon_sym_select] = ACTIONS(561), + [anon_sym_lock] = ACTIONS(561), + [anon_sym_rlock] = ACTIONS(561), + [anon_sym_unsafe] = ACTIONS(561), + [anon_sym_sql] = ACTIONS(561), + [sym_int_literal] = ACTIONS(561), + [sym_float_literal] = ACTIONS(561), + [sym_rune_literal] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_shared] = ACTIONS(3293), + [anon_sym_map_LBRACK] = ACTIONS(3295), + [anon_sym_chan] = ACTIONS(3297), + [anon_sym_thread] = ACTIONS(3299), + [anon_sym_atomic] = ACTIONS(3301), + [sym___double_quote] = ACTIONS(561), + [sym___single_quote] = ACTIONS(561), + [sym___c_double_quote] = ACTIONS(561), + [sym___c_single_quote] = ACTIONS(561), + [sym___r_double_quote] = ACTIONS(561), + [sym___r_single_quote] = ACTIONS(561), }, [968] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_GT] = ACTIONS(3241), - [anon_sym_EQ_EQ] = ACTIONS(3241), - [anon_sym_BANG_EQ] = ACTIONS(3241), - [anon_sym_LT_EQ] = ACTIONS(3241), - [anon_sym_GT_EQ] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3255), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(3265), - [anon_sym_BANGin] = ACTIONS(3267), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [anon_sym_assert] = ACTIONS(2076), - [anon_sym_defer] = ACTIONS(2076), - [anon_sym_goto] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_DOLLARfor] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_asm] = ACTIONS(2076), - [anon_sym_AT_LBRACK] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), + [sym_type_parameters] = STATE(4109), + [sym_argument_list] = STATE(1029), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(2160), + [sym_identifier] = ACTIONS(2162), + [anon_sym_LF] = ACTIONS(2162), + [anon_sym_CR] = ACTIONS(2162), + [anon_sym_CR_LF] = ACTIONS(2162), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_as] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_COMMA] = ACTIONS(2162), + [anon_sym_const] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(2162), + [anon_sym_type] = ACTIONS(2162), + [anon_sym_PIPE] = ACTIONS(2162), + [anon_sym_fn] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(2162), + [anon_sym_DASH] = ACTIONS(2162), + [anon_sym_STAR] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_PERCENT] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(2162), + [anon_sym_GT] = ACTIONS(2162), + [anon_sym_EQ_EQ] = ACTIONS(2162), + [anon_sym_BANG_EQ] = ACTIONS(2162), + [anon_sym_LT_EQ] = ACTIONS(2162), + [anon_sym_GT_EQ] = ACTIONS(2162), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_union] = ACTIONS(2162), + [anon_sym_pub] = ACTIONS(2162), + [anon_sym_mut] = ACTIONS(2162), + [anon_sym_enum] = ACTIONS(2162), + [anon_sym_interface] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2162), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_QMARK] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(2162), + [anon_sym_spawn] = ACTIONS(2162), + [anon_sym_json_DOTdecode] = ACTIONS(2162), + [anon_sym_LBRACK2] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(2162), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_LT_DASH] = ACTIONS(2162), + [anon_sym_LT_LT] = ACTIONS(3245), + [anon_sym_GT_GT] = ACTIONS(3245), + [anon_sym_GT_GT_GT] = ACTIONS(3245), + [anon_sym_AMP_CARET] = ACTIONS(3245), + [anon_sym_AMP_AMP] = ACTIONS(2162), + [anon_sym_PIPE_PIPE] = ACTIONS(2162), + [anon_sym_or] = ACTIONS(2162), + [sym_none] = ACTIONS(2162), + [sym_true] = ACTIONS(2162), + [sym_false] = ACTIONS(2162), + [sym_nil] = ACTIONS(2162), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_DOLLARif] = ACTIONS(2162), + [anon_sym_is] = ACTIONS(2162), + [anon_sym_BANGis] = ACTIONS(2162), + [anon_sym_in] = ACTIONS(2162), + [anon_sym_BANGin] = ACTIONS(2162), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_select] = ACTIONS(2162), + [anon_sym_lock] = ACTIONS(2162), + [anon_sym_rlock] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_sql] = ACTIONS(2162), + [sym_int_literal] = ACTIONS(2162), + [sym_float_literal] = ACTIONS(2162), + [sym_rune_literal] = ACTIONS(2162), + [anon_sym_AT] = ACTIONS(2162), + [anon_sym_shared] = ACTIONS(2162), + [anon_sym_map_LBRACK] = ACTIONS(2162), + [anon_sym_chan] = ACTIONS(2162), + [anon_sym_thread] = ACTIONS(2162), + [anon_sym_atomic] = ACTIONS(2162), + [anon_sym_assert] = ACTIONS(2162), + [anon_sym_defer] = ACTIONS(2162), + [anon_sym_goto] = ACTIONS(2162), + [anon_sym_break] = ACTIONS(2162), + [anon_sym_continue] = ACTIONS(2162), + [anon_sym_return] = ACTIONS(2162), + [anon_sym_DOLLARfor] = ACTIONS(2162), + [anon_sym_for] = ACTIONS(2162), + [anon_sym_POUND] = ACTIONS(2162), + [anon_sym_asm] = ACTIONS(2162), + [anon_sym_AT_LBRACK] = ACTIONS(2162), + [sym___double_quote] = ACTIONS(2162), + [sym___single_quote] = ACTIONS(2162), + [sym___c_double_quote] = ACTIONS(2162), + [sym___c_single_quote] = ACTIONS(2162), + [sym___r_double_quote] = ACTIONS(2162), + [sym___r_single_quote] = ACTIONS(2162), }, [969] = { - [sym_reference_expression] = STATE(4507), - [sym_type_reference_expression] = STATE(1164), - [sym_plain_type] = STATE(1181), - [sym__plain_type_without_special] = STATE(1177), - [sym_anon_struct_type] = STATE(1178), - [sym_multi_return_type] = STATE(1177), - [sym_result_type] = STATE(1177), - [sym_option_type] = STATE(1177), - [sym_qualified_type] = STATE(1164), - [sym_fixed_array_type] = STATE(1178), - [sym_array_type] = STATE(1178), - [sym_pointer_type] = STATE(1178), - [sym_wrong_pointer_type] = STATE(1178), - [sym_map_type] = STATE(1178), - [sym_channel_type] = STATE(1178), - [sym_shared_type] = STATE(1178), - [sym_thread_type] = STATE(1178), - [sym_atomic_type] = STATE(1178), - [sym_generic_type] = STATE(1178), - [sym_function_type] = STATE(1178), - [sym_identifier] = ACTIONS(3277), - [anon_sym_LF] = ACTIONS(555), - [anon_sym_CR] = ACTIONS(555), - [anon_sym_CR_LF] = ACTIONS(555), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(555), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_as] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(555), - [anon_sym_RBRACE] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_fn] = ACTIONS(3281), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(3283), - [anon_sym_SLASH] = ACTIONS(555), - [anon_sym_PERCENT] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(555), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_EQ_EQ] = ACTIONS(555), - [anon_sym_BANG_EQ] = ACTIONS(555), - [anon_sym_LT_EQ] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(3285), - [anon_sym_mut] = ACTIONS(555), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_QMARK] = ACTIONS(3287), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_go] = ACTIONS(555), - [anon_sym_spawn] = ACTIONS(555), - [anon_sym_json_DOTdecode] = ACTIONS(555), - [anon_sym_LBRACK2] = ACTIONS(3291), - [anon_sym_TILDE] = ACTIONS(555), - [anon_sym_CARET] = ACTIONS(555), - [anon_sym_AMP] = ACTIONS(3293), - [anon_sym_LT_DASH] = ACTIONS(555), - [anon_sym_LT_LT] = ACTIONS(555), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_GT_GT_GT] = ACTIONS(555), - [anon_sym_AMP_CARET] = ACTIONS(555), - [anon_sym_AMP_AMP] = ACTIONS(555), - [anon_sym_PIPE_PIPE] = ACTIONS(555), - [anon_sym_or] = ACTIONS(555), - [sym_none] = ACTIONS(555), - [sym_true] = ACTIONS(555), - [sym_false] = ACTIONS(555), - [sym_nil] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(555), - [anon_sym_POUND_LBRACK] = ACTIONS(555), - [anon_sym_if] = ACTIONS(555), - [anon_sym_DOLLARif] = ACTIONS(555), - [anon_sym_is] = ACTIONS(555), - [anon_sym_BANGis] = ACTIONS(555), - [anon_sym_in] = ACTIONS(555), - [anon_sym_BANGin] = ACTIONS(555), - [anon_sym_match] = ACTIONS(555), - [anon_sym_select] = ACTIONS(555), - [anon_sym_lock] = ACTIONS(555), - [anon_sym_rlock] = ACTIONS(555), - [anon_sym_unsafe] = ACTIONS(555), - [anon_sym_sql] = ACTIONS(555), - [sym_int_literal] = ACTIONS(555), - [sym_float_literal] = ACTIONS(555), - [sym_rune_literal] = ACTIONS(555), - [anon_sym_AT] = ACTIONS(555), - [anon_sym_shared] = ACTIONS(3295), - [anon_sym_map_LBRACK] = ACTIONS(3297), - [anon_sym_chan] = ACTIONS(3299), - [anon_sym_thread] = ACTIONS(3301), - [anon_sym_atomic] = ACTIONS(3303), - [sym___double_quote] = ACTIONS(555), - [sym___single_quote] = ACTIONS(555), - [sym___c_double_quote] = ACTIONS(555), - [sym___c_single_quote] = ACTIONS(555), - [sym___r_double_quote] = ACTIONS(555), - [sym___r_single_quote] = ACTIONS(555), + [sym_type_parameters] = STATE(4109), + [sym_argument_list] = STATE(1029), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(2160), + [sym_identifier] = ACTIONS(2162), + [anon_sym_LF] = ACTIONS(2162), + [anon_sym_CR] = ACTIONS(2162), + [anon_sym_CR_LF] = ACTIONS(2162), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_as] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_COMMA] = ACTIONS(2162), + [anon_sym_const] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(2162), + [anon_sym_type] = ACTIONS(2162), + [anon_sym_PIPE] = ACTIONS(2162), + [anon_sym_fn] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(2162), + [anon_sym_DASH] = ACTIONS(2162), + [anon_sym_STAR] = ACTIONS(2162), + [anon_sym_SLASH] = ACTIONS(2162), + [anon_sym_PERCENT] = ACTIONS(2162), + [anon_sym_LT] = ACTIONS(2162), + [anon_sym_GT] = ACTIONS(2162), + [anon_sym_EQ_EQ] = ACTIONS(2162), + [anon_sym_BANG_EQ] = ACTIONS(2162), + [anon_sym_LT_EQ] = ACTIONS(2162), + [anon_sym_GT_EQ] = ACTIONS(2162), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_union] = ACTIONS(2162), + [anon_sym_pub] = ACTIONS(2162), + [anon_sym_mut] = ACTIONS(2162), + [anon_sym_enum] = ACTIONS(2162), + [anon_sym_interface] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2162), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_QMARK] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(2162), + [anon_sym_spawn] = ACTIONS(2162), + [anon_sym_json_DOTdecode] = ACTIONS(2162), + [anon_sym_LBRACK2] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(2162), + [anon_sym_AMP] = ACTIONS(2162), + [anon_sym_LT_DASH] = ACTIONS(2162), + [anon_sym_LT_LT] = ACTIONS(2162), + [anon_sym_GT_GT] = ACTIONS(2162), + [anon_sym_GT_GT_GT] = ACTIONS(2162), + [anon_sym_AMP_CARET] = ACTIONS(2162), + [anon_sym_AMP_AMP] = ACTIONS(2162), + [anon_sym_PIPE_PIPE] = ACTIONS(2162), + [anon_sym_or] = ACTIONS(2162), + [sym_none] = ACTIONS(2162), + [sym_true] = ACTIONS(2162), + [sym_false] = ACTIONS(2162), + [sym_nil] = ACTIONS(2162), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_DOLLARif] = ACTIONS(2162), + [anon_sym_is] = ACTIONS(2162), + [anon_sym_BANGis] = ACTIONS(2162), + [anon_sym_in] = ACTIONS(2162), + [anon_sym_BANGin] = ACTIONS(2162), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_select] = ACTIONS(2162), + [anon_sym_lock] = ACTIONS(2162), + [anon_sym_rlock] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_sql] = ACTIONS(2162), + [sym_int_literal] = ACTIONS(2162), + [sym_float_literal] = ACTIONS(2162), + [sym_rune_literal] = ACTIONS(2162), + [anon_sym_AT] = ACTIONS(2162), + [anon_sym_shared] = ACTIONS(2162), + [anon_sym_map_LBRACK] = ACTIONS(2162), + [anon_sym_chan] = ACTIONS(2162), + [anon_sym_thread] = ACTIONS(2162), + [anon_sym_atomic] = ACTIONS(2162), + [anon_sym_assert] = ACTIONS(2162), + [anon_sym_defer] = ACTIONS(2162), + [anon_sym_goto] = ACTIONS(2162), + [anon_sym_break] = ACTIONS(2162), + [anon_sym_continue] = ACTIONS(2162), + [anon_sym_return] = ACTIONS(2162), + [anon_sym_DOLLARfor] = ACTIONS(2162), + [anon_sym_for] = ACTIONS(2162), + [anon_sym_POUND] = ACTIONS(2162), + [anon_sym_asm] = ACTIONS(2162), + [anon_sym_AT_LBRACK] = ACTIONS(2162), + [sym___double_quote] = ACTIONS(2162), + [sym___single_quote] = ACTIONS(2162), + [sym___c_double_quote] = ACTIONS(2162), + [sym___c_single_quote] = ACTIONS(2162), + [sym___r_double_quote] = ACTIONS(2162), + [sym___r_single_quote] = ACTIONS(2162), }, [970] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2106), - [sym_identifier] = ACTIONS(2108), - [anon_sym_LF] = ACTIONS(2108), - [anon_sym_CR] = ACTIONS(2108), - [anon_sym_CR_LF] = ACTIONS(2108), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2108), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_COMMA] = ACTIONS(2108), - [anon_sym_const] = ACTIONS(2108), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2108), - [anon_sym_type] = ACTIONS(2108), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_fn] = ACTIONS(2108), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(2108), - [anon_sym_GT] = ACTIONS(2108), - [anon_sym_EQ_EQ] = ACTIONS(2108), - [anon_sym_BANG_EQ] = ACTIONS(2108), - [anon_sym_LT_EQ] = ACTIONS(2108), - [anon_sym_GT_EQ] = ACTIONS(2108), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2108), - [anon_sym_union] = ACTIONS(2108), - [anon_sym_pub] = ACTIONS(2108), - [anon_sym_mut] = ACTIONS(2108), - [anon_sym_enum] = ACTIONS(2108), - [anon_sym_interface] = ACTIONS(2108), - [anon_sym_PLUS_PLUS] = ACTIONS(2108), - [anon_sym_DASH_DASH] = ACTIONS(2108), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2108), - [anon_sym_spawn] = ACTIONS(2108), - [anon_sym_json_DOTdecode] = ACTIONS(2108), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2108), - [anon_sym_CARET] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(2108), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(2108), - [anon_sym_PIPE_PIPE] = ACTIONS(2108), - [anon_sym_or] = ACTIONS(2108), - [sym_none] = ACTIONS(2108), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_nil] = ACTIONS(2108), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2108), - [anon_sym_DOLLARif] = ACTIONS(2108), - [anon_sym_is] = ACTIONS(2108), - [anon_sym_BANGis] = ACTIONS(2108), - [anon_sym_in] = ACTIONS(2108), - [anon_sym_BANGin] = ACTIONS(2108), - [anon_sym_match] = ACTIONS(2108), - [anon_sym_select] = ACTIONS(2108), - [anon_sym_lock] = ACTIONS(2108), - [anon_sym_rlock] = ACTIONS(2108), - [anon_sym_unsafe] = ACTIONS(2108), - [anon_sym_sql] = ACTIONS(2108), - [sym_int_literal] = ACTIONS(2108), - [sym_float_literal] = ACTIONS(2108), - [sym_rune_literal] = ACTIONS(2108), - [anon_sym_AT] = ACTIONS(2108), - [anon_sym_shared] = ACTIONS(2108), - [anon_sym_map_LBRACK] = ACTIONS(2108), - [anon_sym_chan] = ACTIONS(2108), - [anon_sym_thread] = ACTIONS(2108), - [anon_sym_atomic] = ACTIONS(2108), - [anon_sym_assert] = ACTIONS(2108), - [anon_sym_defer] = ACTIONS(2108), - [anon_sym_goto] = ACTIONS(2108), - [anon_sym_break] = ACTIONS(2108), - [anon_sym_continue] = ACTIONS(2108), - [anon_sym_return] = ACTIONS(2108), - [anon_sym_DOLLARfor] = ACTIONS(2108), - [anon_sym_for] = ACTIONS(2108), - [anon_sym_POUND] = ACTIONS(2108), - [anon_sym_asm] = ACTIONS(2108), - [anon_sym_AT_LBRACK] = ACTIONS(2108), - [sym___double_quote] = ACTIONS(2108), - [sym___single_quote] = ACTIONS(2108), - [sym___c_double_quote] = ACTIONS(2108), - [sym___c_single_quote] = ACTIONS(2108), - [sym___r_double_quote] = ACTIONS(2108), - [sym___r_single_quote] = ACTIONS(2108), + [sym_type_parameters] = STATE(4109), + [sym_argument_list] = STATE(1029), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(2244), + [sym_identifier] = ACTIONS(2246), + [anon_sym_LF] = ACTIONS(2246), + [anon_sym_CR] = ACTIONS(2246), + [anon_sym_CR_LF] = ACTIONS(2246), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_as] = ACTIONS(2246), + [anon_sym_LBRACE] = ACTIONS(2246), + [anon_sym_COMMA] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2246), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(2246), + [anon_sym_type] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2246), + [anon_sym_fn] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2246), + [anon_sym_SLASH] = ACTIONS(2246), + [anon_sym_PERCENT] = ACTIONS(2246), + [anon_sym_LT] = ACTIONS(2246), + [anon_sym_GT] = ACTIONS(2246), + [anon_sym_EQ_EQ] = ACTIONS(2246), + [anon_sym_BANG_EQ] = ACTIONS(2246), + [anon_sym_LT_EQ] = ACTIONS(2246), + [anon_sym_GT_EQ] = ACTIONS(2246), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_struct] = ACTIONS(2246), + [anon_sym_union] = ACTIONS(2246), + [anon_sym_pub] = ACTIONS(2246), + [anon_sym_mut] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_interface] = ACTIONS(2246), + [anon_sym_PLUS_PLUS] = ACTIONS(2246), + [anon_sym_DASH_DASH] = ACTIONS(2246), + [anon_sym_QMARK] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(2246), + [anon_sym_spawn] = ACTIONS(2246), + [anon_sym_json_DOTdecode] = ACTIONS(2246), + [anon_sym_LBRACK2] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(2246), + [anon_sym_LT_LT] = ACTIONS(2246), + [anon_sym_GT_GT] = ACTIONS(2246), + [anon_sym_GT_GT_GT] = ACTIONS(2246), + [anon_sym_AMP_CARET] = ACTIONS(2246), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE_PIPE] = ACTIONS(2246), + [anon_sym_or] = ACTIONS(2246), + [sym_none] = ACTIONS(2246), + [sym_true] = ACTIONS(2246), + [sym_false] = ACTIONS(2246), + [sym_nil] = ACTIONS(2246), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(2246), + [anon_sym_DOLLARif] = ACTIONS(2246), + [anon_sym_is] = ACTIONS(2246), + [anon_sym_BANGis] = ACTIONS(2246), + [anon_sym_in] = ACTIONS(2246), + [anon_sym_BANGin] = ACTIONS(2246), + [anon_sym_match] = ACTIONS(2246), + [anon_sym_select] = ACTIONS(2246), + [anon_sym_lock] = ACTIONS(2246), + [anon_sym_rlock] = ACTIONS(2246), + [anon_sym_unsafe] = ACTIONS(2246), + [anon_sym_sql] = ACTIONS(2246), + [sym_int_literal] = ACTIONS(2246), + [sym_float_literal] = ACTIONS(2246), + [sym_rune_literal] = ACTIONS(2246), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_shared] = ACTIONS(2246), + [anon_sym_map_LBRACK] = ACTIONS(2246), + [anon_sym_chan] = ACTIONS(2246), + [anon_sym_thread] = ACTIONS(2246), + [anon_sym_atomic] = ACTIONS(2246), + [anon_sym_assert] = ACTIONS(2246), + [anon_sym_defer] = ACTIONS(2246), + [anon_sym_goto] = ACTIONS(2246), + [anon_sym_break] = ACTIONS(2246), + [anon_sym_continue] = ACTIONS(2246), + [anon_sym_return] = ACTIONS(2246), + [anon_sym_DOLLARfor] = ACTIONS(2246), + [anon_sym_for] = ACTIONS(2246), + [anon_sym_POUND] = ACTIONS(2246), + [anon_sym_asm] = ACTIONS(2246), + [anon_sym_AT_LBRACK] = ACTIONS(2246), + [sym___double_quote] = ACTIONS(2246), + [sym___single_quote] = ACTIONS(2246), + [sym___c_double_quote] = ACTIONS(2246), + [sym___c_single_quote] = ACTIONS(2246), + [sym___r_double_quote] = ACTIONS(2246), + [sym___r_single_quote] = ACTIONS(2246), }, [971] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2110), - [sym_identifier] = ACTIONS(2112), - [anon_sym_LF] = ACTIONS(2112), - [anon_sym_CR] = ACTIONS(2112), - [anon_sym_CR_LF] = ACTIONS(2112), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2112), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_COMMA] = ACTIONS(2112), - [anon_sym_const] = ACTIONS(2112), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2112), - [anon_sym_type] = ACTIONS(2112), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_fn] = ACTIONS(2112), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(2112), - [anon_sym_GT] = ACTIONS(2112), - [anon_sym_EQ_EQ] = ACTIONS(2112), - [anon_sym_BANG_EQ] = ACTIONS(2112), - [anon_sym_LT_EQ] = ACTIONS(2112), - [anon_sym_GT_EQ] = ACTIONS(2112), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2112), - [anon_sym_union] = ACTIONS(2112), - [anon_sym_pub] = ACTIONS(2112), - [anon_sym_mut] = ACTIONS(2112), - [anon_sym_enum] = ACTIONS(2112), - [anon_sym_interface] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2112), - [anon_sym_spawn] = ACTIONS(2112), - [anon_sym_json_DOTdecode] = ACTIONS(2112), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2112), - [anon_sym_CARET] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(2112), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(2112), - [anon_sym_PIPE_PIPE] = ACTIONS(2112), - [anon_sym_or] = ACTIONS(2112), - [sym_none] = ACTIONS(2112), - [sym_true] = ACTIONS(2112), - [sym_false] = ACTIONS(2112), - [sym_nil] = ACTIONS(2112), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2112), - [anon_sym_DOLLARif] = ACTIONS(2112), - [anon_sym_is] = ACTIONS(2112), - [anon_sym_BANGis] = ACTIONS(2112), - [anon_sym_in] = ACTIONS(2112), - [anon_sym_BANGin] = ACTIONS(2112), - [anon_sym_match] = ACTIONS(2112), - [anon_sym_select] = ACTIONS(2112), - [anon_sym_lock] = ACTIONS(2112), - [anon_sym_rlock] = ACTIONS(2112), - [anon_sym_unsafe] = ACTIONS(2112), - [anon_sym_sql] = ACTIONS(2112), - [sym_int_literal] = ACTIONS(2112), - [sym_float_literal] = ACTIONS(2112), - [sym_rune_literal] = ACTIONS(2112), - [anon_sym_AT] = ACTIONS(2112), - [anon_sym_shared] = ACTIONS(2112), - [anon_sym_map_LBRACK] = ACTIONS(2112), - [anon_sym_chan] = ACTIONS(2112), - [anon_sym_thread] = ACTIONS(2112), - [anon_sym_atomic] = ACTIONS(2112), - [anon_sym_assert] = ACTIONS(2112), - [anon_sym_defer] = ACTIONS(2112), - [anon_sym_goto] = ACTIONS(2112), - [anon_sym_break] = ACTIONS(2112), - [anon_sym_continue] = ACTIONS(2112), - [anon_sym_return] = ACTIONS(2112), - [anon_sym_DOLLARfor] = ACTIONS(2112), - [anon_sym_for] = ACTIONS(2112), - [anon_sym_POUND] = ACTIONS(2112), - [anon_sym_asm] = ACTIONS(2112), - [anon_sym_AT_LBRACK] = ACTIONS(2112), - [sym___double_quote] = ACTIONS(2112), - [sym___single_quote] = ACTIONS(2112), - [sym___c_double_quote] = ACTIONS(2112), - [sym___c_single_quote] = ACTIONS(2112), - [sym___r_double_quote] = ACTIONS(2112), - [sym___r_single_quote] = ACTIONS(2112), + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2393), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(591), + [anon_sym_LF] = ACTIONS(593), + [anon_sym_CR] = ACTIONS(593), + [anon_sym_CR_LF] = ACTIONS(593), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(593), + [anon_sym_DOT] = ACTIONS(593), + [anon_sym_as] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(593), + [anon_sym_COMMA] = ACTIONS(593), + [anon_sym_RBRACE] = ACTIONS(593), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_STAR] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(593), + [anon_sym_PERCENT] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(593), + [anon_sym_GT_EQ] = ACTIONS(593), + [anon_sym_LBRACK] = ACTIONS(589), + [anon_sym_struct] = ACTIONS(601), + [anon_sym_mut] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(593), + [anon_sym_DASH_DASH] = ACTIONS(593), + [anon_sym_QMARK] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(3307), + [anon_sym_go] = ACTIONS(593), + [anon_sym_spawn] = ACTIONS(593), + [anon_sym_json_DOTdecode] = ACTIONS(593), + [anon_sym_LBRACK2] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_CARET] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(593), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_GT_GT_GT] = ACTIONS(593), + [anon_sym_AMP_CARET] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(593), + [anon_sym_PIPE_PIPE] = ACTIONS(593), + [anon_sym_or] = ACTIONS(593), + [sym_none] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [sym_nil] = ACTIONS(593), + [anon_sym_QMARK_DOT] = ACTIONS(593), + [anon_sym_POUND_LBRACK] = ACTIONS(593), + [anon_sym_if] = ACTIONS(593), + [anon_sym_DOLLARif] = ACTIONS(593), + [anon_sym_is] = ACTIONS(593), + [anon_sym_BANGis] = ACTIONS(593), + [anon_sym_in] = ACTIONS(593), + [anon_sym_BANGin] = ACTIONS(593), + [anon_sym_match] = ACTIONS(593), + [anon_sym_select] = ACTIONS(593), + [anon_sym_lock] = ACTIONS(593), + [anon_sym_rlock] = ACTIONS(593), + [anon_sym_unsafe] = ACTIONS(593), + [anon_sym_sql] = ACTIONS(593), + [sym_int_literal] = ACTIONS(593), + [sym_float_literal] = ACTIONS(593), + [sym_rune_literal] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(593), + [anon_sym_shared] = ACTIONS(609), + [anon_sym_map_LBRACK] = ACTIONS(543), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(593), + [sym___single_quote] = ACTIONS(593), + [sym___c_double_quote] = ACTIONS(593), + [sym___c_single_quote] = ACTIONS(593), + [sym___r_double_quote] = ACTIONS(593), + [sym___r_single_quote] = ACTIONS(593), }, [972] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(585), - [anon_sym_LF] = ACTIONS(585), - [anon_sym_CR] = ACTIONS(585), - [anon_sym_CR_LF] = ACTIONS(585), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_RBRACE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(585), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(585), - [anon_sym_mut] = ACTIONS(585), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_go] = ACTIONS(585), - [anon_sym_spawn] = ACTIONS(585), - [anon_sym_json_DOTdecode] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_LT_DASH] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_AMP_CARET] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_or] = ACTIONS(585), - [sym_none] = ACTIONS(585), - [sym_true] = ACTIONS(585), - [sym_false] = ACTIONS(585), - [sym_nil] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_if] = ACTIONS(585), - [anon_sym_DOLLARif] = ACTIONS(585), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(585), - [anon_sym_match] = ACTIONS(585), - [anon_sym_select] = ACTIONS(585), - [anon_sym_lock] = ACTIONS(585), - [anon_sym_rlock] = ACTIONS(585), - [anon_sym_unsafe] = ACTIONS(585), - [anon_sym_sql] = ACTIONS(585), - [sym_int_literal] = ACTIONS(585), - [sym_float_literal] = ACTIONS(585), - [sym_rune_literal] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(585), - [anon_sym_shared] = ACTIONS(585), - [anon_sym_map_LBRACK] = ACTIONS(585), - [anon_sym_chan] = ACTIONS(585), - [anon_sym_thread] = ACTIONS(585), - [anon_sym_atomic] = ACTIONS(585), - [sym___double_quote] = ACTIONS(585), - [sym___single_quote] = ACTIONS(585), - [sym___c_double_quote] = ACTIONS(585), - [sym___c_single_quote] = ACTIONS(585), - [sym___r_double_quote] = ACTIONS(585), - [sym___r_single_quote] = ACTIONS(585), + [sym_type_parameters] = STATE(4109), + [sym_argument_list] = STATE(1029), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(2160), + [sym_identifier] = ACTIONS(2162), + [anon_sym_LF] = ACTIONS(2162), + [anon_sym_CR] = ACTIONS(2162), + [anon_sym_CR_LF] = ACTIONS(2162), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_as] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_COMMA] = ACTIONS(2162), + [anon_sym_const] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(2162), + [anon_sym_type] = ACTIONS(2162), + [anon_sym_PIPE] = ACTIONS(3243), + [anon_sym_fn] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(3243), + [anon_sym_STAR] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_PERCENT] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(2162), + [anon_sym_GT] = ACTIONS(2162), + [anon_sym_EQ_EQ] = ACTIONS(2162), + [anon_sym_BANG_EQ] = ACTIONS(2162), + [anon_sym_LT_EQ] = ACTIONS(2162), + [anon_sym_GT_EQ] = ACTIONS(2162), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_union] = ACTIONS(2162), + [anon_sym_pub] = ACTIONS(2162), + [anon_sym_mut] = ACTIONS(2162), + [anon_sym_enum] = ACTIONS(2162), + [anon_sym_interface] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2162), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_QMARK] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(2162), + [anon_sym_spawn] = ACTIONS(2162), + [anon_sym_json_DOTdecode] = ACTIONS(2162), + [anon_sym_LBRACK2] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(3243), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_LT_DASH] = ACTIONS(2162), + [anon_sym_LT_LT] = ACTIONS(3245), + [anon_sym_GT_GT] = ACTIONS(3245), + [anon_sym_GT_GT_GT] = ACTIONS(3245), + [anon_sym_AMP_CARET] = ACTIONS(3245), + [anon_sym_AMP_AMP] = ACTIONS(2162), + [anon_sym_PIPE_PIPE] = ACTIONS(2162), + [anon_sym_or] = ACTIONS(2162), + [sym_none] = ACTIONS(2162), + [sym_true] = ACTIONS(2162), + [sym_false] = ACTIONS(2162), + [sym_nil] = ACTIONS(2162), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_DOLLARif] = ACTIONS(2162), + [anon_sym_is] = ACTIONS(2162), + [anon_sym_BANGis] = ACTIONS(2162), + [anon_sym_in] = ACTIONS(2162), + [anon_sym_BANGin] = ACTIONS(2162), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_select] = ACTIONS(2162), + [anon_sym_lock] = ACTIONS(2162), + [anon_sym_rlock] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_sql] = ACTIONS(2162), + [sym_int_literal] = ACTIONS(2162), + [sym_float_literal] = ACTIONS(2162), + [sym_rune_literal] = ACTIONS(2162), + [anon_sym_AT] = ACTIONS(2162), + [anon_sym_shared] = ACTIONS(2162), + [anon_sym_map_LBRACK] = ACTIONS(2162), + [anon_sym_chan] = ACTIONS(2162), + [anon_sym_thread] = ACTIONS(2162), + [anon_sym_atomic] = ACTIONS(2162), + [anon_sym_assert] = ACTIONS(2162), + [anon_sym_defer] = ACTIONS(2162), + [anon_sym_goto] = ACTIONS(2162), + [anon_sym_break] = ACTIONS(2162), + [anon_sym_continue] = ACTIONS(2162), + [anon_sym_return] = ACTIONS(2162), + [anon_sym_DOLLARfor] = ACTIONS(2162), + [anon_sym_for] = ACTIONS(2162), + [anon_sym_POUND] = ACTIONS(2162), + [anon_sym_asm] = ACTIONS(2162), + [anon_sym_AT_LBRACK] = ACTIONS(2162), + [sym___double_quote] = ACTIONS(2162), + [sym___single_quote] = ACTIONS(2162), + [sym___c_double_quote] = ACTIONS(2162), + [sym___c_single_quote] = ACTIONS(2162), + [sym___r_double_quote] = ACTIONS(2162), + [sym___r_single_quote] = ACTIONS(2162), }, [973] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(3305), - [sym_identifier] = ACTIONS(1690), - [anon_sym_LF] = ACTIONS(1690), - [anon_sym_CR] = ACTIONS(1690), - [anon_sym_CR_LF] = ACTIONS(1690), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_COMMA] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1690), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(1690), - [anon_sym_type] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_fn] = ACTIONS(1690), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_GT] = ACTIONS(3241), - [anon_sym_EQ_EQ] = ACTIONS(3241), - [anon_sym_BANG_EQ] = ACTIONS(3241), - [anon_sym_LT_EQ] = ACTIONS(3241), - [anon_sym_GT_EQ] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(1690), - [anon_sym_union] = ACTIONS(1690), - [anon_sym_pub] = ACTIONS(1690), - [anon_sym_mut] = ACTIONS(1690), - [anon_sym_enum] = ACTIONS(1690), - [anon_sym_interface] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(1690), - [anon_sym_spawn] = ACTIONS(1690), - [anon_sym_json_DOTdecode] = ACTIONS(1690), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_CARET] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(1690), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3255), - [anon_sym_PIPE_PIPE] = ACTIONS(3257), - [anon_sym_or] = ACTIONS(3259), - [sym_none] = ACTIONS(1690), - [sym_true] = ACTIONS(1690), - [sym_false] = ACTIONS(1690), - [sym_nil] = ACTIONS(1690), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_DOLLARif] = ACTIONS(1690), - [anon_sym_is] = ACTIONS(3261), - [anon_sym_BANGis] = ACTIONS(3263), - [anon_sym_in] = ACTIONS(3265), - [anon_sym_BANGin] = ACTIONS(3267), - [anon_sym_match] = ACTIONS(1690), - [anon_sym_select] = ACTIONS(1690), - [anon_sym_lock] = ACTIONS(1690), - [anon_sym_rlock] = ACTIONS(1690), - [anon_sym_unsafe] = ACTIONS(1690), - [anon_sym_sql] = ACTIONS(1690), - [sym_int_literal] = ACTIONS(1690), - [sym_float_literal] = ACTIONS(1690), - [sym_rune_literal] = ACTIONS(1690), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_shared] = ACTIONS(1690), - [anon_sym_map_LBRACK] = ACTIONS(1690), - [anon_sym_chan] = ACTIONS(1690), - [anon_sym_thread] = ACTIONS(1690), - [anon_sym_atomic] = ACTIONS(1690), - [anon_sym_assert] = ACTIONS(1690), - [anon_sym_defer] = ACTIONS(1690), - [anon_sym_goto] = ACTIONS(1690), - [anon_sym_break] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(1690), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_DOLLARfor] = ACTIONS(1690), - [anon_sym_for] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1690), - [anon_sym_asm] = ACTIONS(1690), - [anon_sym_AT_LBRACK] = ACTIONS(1690), - [sym___double_quote] = ACTIONS(1690), - [sym___single_quote] = ACTIONS(1690), - [sym___c_double_quote] = ACTIONS(1690), - [sym___c_single_quote] = ACTIONS(1690), - [sym___r_double_quote] = ACTIONS(1690), - [sym___r_single_quote] = ACTIONS(1690), - }, - [974] = { - [sym_reference_expression] = STATE(4507), - [sym_type_reference_expression] = STATE(1164), - [sym_plain_type] = STATE(1218), - [sym__plain_type_without_special] = STATE(1177), - [sym_anon_struct_type] = STATE(1178), - [sym_multi_return_type] = STATE(1177), - [sym_result_type] = STATE(1177), - [sym_option_type] = STATE(1177), - [sym_qualified_type] = STATE(1164), - [sym_fixed_array_type] = STATE(1178), - [sym_array_type] = STATE(1178), - [sym_pointer_type] = STATE(1178), - [sym_wrong_pointer_type] = STATE(1178), - [sym_map_type] = STATE(1178), - [sym_channel_type] = STATE(1178), - [sym_shared_type] = STATE(1178), - [sym_thread_type] = STATE(1178), - [sym_atomic_type] = STATE(1178), - [sym_generic_type] = STATE(1178), - [sym_function_type] = STATE(1178), - [sym_identifier] = ACTIONS(3277), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(589), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_RBRACE] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3281), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3283), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_struct] = ACTIONS(3285), - [anon_sym_mut] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(3287), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_go] = ACTIONS(589), - [anon_sym_spawn] = ACTIONS(589), - [anon_sym_json_DOTdecode] = ACTIONS(589), - [anon_sym_LBRACK2] = ACTIONS(3291), - [anon_sym_TILDE] = ACTIONS(589), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(3293), - [anon_sym_LT_DASH] = ACTIONS(589), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(589), - [sym_none] = ACTIONS(589), - [sym_true] = ACTIONS(589), - [sym_false] = ACTIONS(589), - [sym_nil] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_if] = ACTIONS(589), - [anon_sym_DOLLARif] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_match] = ACTIONS(589), - [anon_sym_select] = ACTIONS(589), - [anon_sym_lock] = ACTIONS(589), - [anon_sym_rlock] = ACTIONS(589), - [anon_sym_unsafe] = ACTIONS(589), - [anon_sym_sql] = ACTIONS(589), - [sym_int_literal] = ACTIONS(589), - [sym_float_literal] = ACTIONS(589), - [sym_rune_literal] = ACTIONS(589), - [anon_sym_AT] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(3295), - [anon_sym_map_LBRACK] = ACTIONS(3297), - [anon_sym_chan] = ACTIONS(3299), - [anon_sym_thread] = ACTIONS(3301), - [anon_sym_atomic] = ACTIONS(3303), - [sym___double_quote] = ACTIONS(589), - [sym___single_quote] = ACTIONS(589), - [sym___c_double_quote] = ACTIONS(589), - [sym___c_single_quote] = ACTIONS(589), - [sym___r_double_quote] = ACTIONS(589), - [sym___r_single_quote] = ACTIONS(589), + [sym_type_parameters] = STATE(4109), + [sym_argument_list] = STATE(1029), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(2160), + [sym_identifier] = ACTIONS(2162), + [anon_sym_LF] = ACTIONS(2162), + [anon_sym_CR] = ACTIONS(2162), + [anon_sym_CR_LF] = ACTIONS(2162), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_as] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_COMMA] = ACTIONS(2162), + [anon_sym_const] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(2162), + [anon_sym_type] = ACTIONS(2162), + [anon_sym_PIPE] = ACTIONS(3243), + [anon_sym_fn] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(3243), + [anon_sym_STAR] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_PERCENT] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3247), + [anon_sym_GT] = ACTIONS(3247), + [anon_sym_EQ_EQ] = ACTIONS(3247), + [anon_sym_BANG_EQ] = ACTIONS(3247), + [anon_sym_LT_EQ] = ACTIONS(3247), + [anon_sym_GT_EQ] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_union] = ACTIONS(2162), + [anon_sym_pub] = ACTIONS(2162), + [anon_sym_mut] = ACTIONS(2162), + [anon_sym_enum] = ACTIONS(2162), + [anon_sym_interface] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2162), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_QMARK] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(2162), + [anon_sym_spawn] = ACTIONS(2162), + [anon_sym_json_DOTdecode] = ACTIONS(2162), + [anon_sym_LBRACK2] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(3243), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_LT_DASH] = ACTIONS(2162), + [anon_sym_LT_LT] = ACTIONS(3245), + [anon_sym_GT_GT] = ACTIONS(3245), + [anon_sym_GT_GT_GT] = ACTIONS(3245), + [anon_sym_AMP_CARET] = ACTIONS(3245), + [anon_sym_AMP_AMP] = ACTIONS(2162), + [anon_sym_PIPE_PIPE] = ACTIONS(2162), + [anon_sym_or] = ACTIONS(2162), + [sym_none] = ACTIONS(2162), + [sym_true] = ACTIONS(2162), + [sym_false] = ACTIONS(2162), + [sym_nil] = ACTIONS(2162), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_DOLLARif] = ACTIONS(2162), + [anon_sym_is] = ACTIONS(2162), + [anon_sym_BANGis] = ACTIONS(2162), + [anon_sym_in] = ACTIONS(3271), + [anon_sym_BANGin] = ACTIONS(3273), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_select] = ACTIONS(2162), + [anon_sym_lock] = ACTIONS(2162), + [anon_sym_rlock] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_sql] = ACTIONS(2162), + [sym_int_literal] = ACTIONS(2162), + [sym_float_literal] = ACTIONS(2162), + [sym_rune_literal] = ACTIONS(2162), + [anon_sym_AT] = ACTIONS(2162), + [anon_sym_shared] = ACTIONS(2162), + [anon_sym_map_LBRACK] = ACTIONS(2162), + [anon_sym_chan] = ACTIONS(2162), + [anon_sym_thread] = ACTIONS(2162), + [anon_sym_atomic] = ACTIONS(2162), + [anon_sym_assert] = ACTIONS(2162), + [anon_sym_defer] = ACTIONS(2162), + [anon_sym_goto] = ACTIONS(2162), + [anon_sym_break] = ACTIONS(2162), + [anon_sym_continue] = ACTIONS(2162), + [anon_sym_return] = ACTIONS(2162), + [anon_sym_DOLLARfor] = ACTIONS(2162), + [anon_sym_for] = ACTIONS(2162), + [anon_sym_POUND] = ACTIONS(2162), + [anon_sym_asm] = ACTIONS(2162), + [anon_sym_AT_LBRACK] = ACTIONS(2162), + [sym___double_quote] = ACTIONS(2162), + [sym___single_quote] = ACTIONS(2162), + [sym___c_double_quote] = ACTIONS(2162), + [sym___c_single_quote] = ACTIONS(2162), + [sym___r_double_quote] = ACTIONS(2162), + [sym___r_single_quote] = ACTIONS(2162), + }, + [974] = { + [sym_type_parameters] = STATE(4109), + [sym_argument_list] = STATE(1029), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(2050), + [sym_identifier] = ACTIONS(2052), + [anon_sym_LF] = ACTIONS(2052), + [anon_sym_CR] = ACTIONS(2052), + [anon_sym_CR_LF] = ACTIONS(2052), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_as] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(2052), + [anon_sym_COMMA] = ACTIONS(2052), + [anon_sym_const] = ACTIONS(2052), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(2052), + [anon_sym_type] = ACTIONS(2052), + [anon_sym_PIPE] = ACTIONS(3243), + [anon_sym_fn] = ACTIONS(2052), + [anon_sym_PLUS] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(3243), + [anon_sym_STAR] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_PERCENT] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3247), + [anon_sym_GT] = ACTIONS(3247), + [anon_sym_EQ_EQ] = ACTIONS(3247), + [anon_sym_BANG_EQ] = ACTIONS(3247), + [anon_sym_LT_EQ] = ACTIONS(3247), + [anon_sym_GT_EQ] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_struct] = ACTIONS(2052), + [anon_sym_union] = ACTIONS(2052), + [anon_sym_pub] = ACTIONS(2052), + [anon_sym_mut] = ACTIONS(2052), + [anon_sym_enum] = ACTIONS(2052), + [anon_sym_interface] = ACTIONS(2052), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_DASH_DASH] = ACTIONS(3253), + [anon_sym_QMARK] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(2052), + [anon_sym_spawn] = ACTIONS(2052), + [anon_sym_json_DOTdecode] = ACTIONS(2052), + [anon_sym_LBRACK2] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(2052), + [anon_sym_CARET] = ACTIONS(3243), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_LT_DASH] = ACTIONS(2052), + [anon_sym_LT_LT] = ACTIONS(3245), + [anon_sym_GT_GT] = ACTIONS(3245), + [anon_sym_GT_GT_GT] = ACTIONS(3245), + [anon_sym_AMP_CARET] = ACTIONS(3245), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3263), + [anon_sym_or] = ACTIONS(3265), + [sym_none] = ACTIONS(2052), + [sym_true] = ACTIONS(2052), + [sym_false] = ACTIONS(2052), + [sym_nil] = ACTIONS(2052), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(2052), + [anon_sym_DOLLARif] = ACTIONS(2052), + [anon_sym_is] = ACTIONS(3267), + [anon_sym_BANGis] = ACTIONS(3269), + [anon_sym_in] = ACTIONS(3271), + [anon_sym_BANGin] = ACTIONS(3273), + [anon_sym_match] = ACTIONS(2052), + [anon_sym_select] = ACTIONS(2052), + [anon_sym_lock] = ACTIONS(2052), + [anon_sym_rlock] = ACTIONS(2052), + [anon_sym_unsafe] = ACTIONS(2052), + [anon_sym_sql] = ACTIONS(2052), + [sym_int_literal] = ACTIONS(2052), + [sym_float_literal] = ACTIONS(2052), + [sym_rune_literal] = ACTIONS(2052), + [anon_sym_AT] = ACTIONS(2052), + [anon_sym_shared] = ACTIONS(2052), + [anon_sym_map_LBRACK] = ACTIONS(2052), + [anon_sym_chan] = ACTIONS(2052), + [anon_sym_thread] = ACTIONS(2052), + [anon_sym_atomic] = ACTIONS(2052), + [anon_sym_assert] = ACTIONS(2052), + [anon_sym_defer] = ACTIONS(2052), + [anon_sym_goto] = ACTIONS(2052), + [anon_sym_break] = ACTIONS(2052), + [anon_sym_continue] = ACTIONS(2052), + [anon_sym_return] = ACTIONS(2052), + [anon_sym_DOLLARfor] = ACTIONS(2052), + [anon_sym_for] = ACTIONS(2052), + [anon_sym_POUND] = ACTIONS(2052), + [anon_sym_asm] = ACTIONS(2052), + [anon_sym_AT_LBRACK] = ACTIONS(2052), + [sym___double_quote] = ACTIONS(2052), + [sym___single_quote] = ACTIONS(2052), + [sym___c_double_quote] = ACTIONS(2052), + [sym___c_single_quote] = ACTIONS(2052), + [sym___r_double_quote] = ACTIONS(2052), + [sym___r_single_quote] = ACTIONS(2052), }, [975] = { - [sym_reference_expression] = STATE(4507), - [sym_type_reference_expression] = STATE(1164), - [sym_plain_type] = STATE(1222), - [sym__plain_type_without_special] = STATE(1177), - [sym_anon_struct_type] = STATE(1178), - [sym_multi_return_type] = STATE(1177), - [sym_result_type] = STATE(1177), - [sym_option_type] = STATE(1177), - [sym_qualified_type] = STATE(1164), - [sym_fixed_array_type] = STATE(1178), - [sym_array_type] = STATE(1178), - [sym_pointer_type] = STATE(1178), - [sym_wrong_pointer_type] = STATE(1178), - [sym_map_type] = STATE(1178), - [sym_channel_type] = STATE(1178), - [sym_shared_type] = STATE(1178), - [sym_thread_type] = STATE(1178), - [sym_atomic_type] = STATE(1178), - [sym_generic_type] = STATE(1178), - [sym_function_type] = STATE(1178), - [sym_identifier] = ACTIONS(3277), - [anon_sym_LF] = ACTIONS(615), - [anon_sym_CR] = ACTIONS(615), - [anon_sym_CR_LF] = ACTIONS(615), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(615), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(3281), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(3283), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(3285), - [anon_sym_mut] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(3287), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_go] = ACTIONS(615), - [anon_sym_spawn] = ACTIONS(615), - [anon_sym_json_DOTdecode] = ACTIONS(615), - [anon_sym_LBRACK2] = ACTIONS(3291), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(3293), - [anon_sym_LT_DASH] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_or] = ACTIONS(615), - [sym_none] = ACTIONS(615), - [sym_true] = ACTIONS(615), - [sym_false] = ACTIONS(615), - [sym_nil] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(615), - [anon_sym_POUND_LBRACK] = ACTIONS(615), - [anon_sym_if] = ACTIONS(615), - [anon_sym_DOLLARif] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(615), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(615), - [anon_sym_match] = ACTIONS(615), - [anon_sym_select] = ACTIONS(615), - [anon_sym_lock] = ACTIONS(615), - [anon_sym_rlock] = ACTIONS(615), - [anon_sym_unsafe] = ACTIONS(615), - [anon_sym_sql] = ACTIONS(615), - [sym_int_literal] = ACTIONS(615), - [sym_float_literal] = ACTIONS(615), - [sym_rune_literal] = ACTIONS(615), - [anon_sym_AT] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(3295), - [anon_sym_map_LBRACK] = ACTIONS(3297), - [anon_sym_chan] = ACTIONS(3299), - [anon_sym_thread] = ACTIONS(3301), - [anon_sym_atomic] = ACTIONS(3303), - [sym___double_quote] = ACTIONS(615), - [sym___single_quote] = ACTIONS(615), - [sym___c_double_quote] = ACTIONS(615), - [sym___c_single_quote] = ACTIONS(615), - [sym___r_double_quote] = ACTIONS(615), - [sym___r_single_quote] = ACTIONS(615), + [sym_type_parameters] = STATE(4109), + [sym_argument_list] = STATE(1029), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(2160), + [sym_identifier] = ACTIONS(2162), + [anon_sym_LF] = ACTIONS(2162), + [anon_sym_CR] = ACTIONS(2162), + [anon_sym_CR_LF] = ACTIONS(2162), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_as] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_COMMA] = ACTIONS(2162), + [anon_sym_const] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(2162), + [anon_sym_type] = ACTIONS(2162), + [anon_sym_PIPE] = ACTIONS(3243), + [anon_sym_fn] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(3243), + [anon_sym_STAR] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_PERCENT] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3247), + [anon_sym_GT] = ACTIONS(3247), + [anon_sym_EQ_EQ] = ACTIONS(3247), + [anon_sym_BANG_EQ] = ACTIONS(3247), + [anon_sym_LT_EQ] = ACTIONS(3247), + [anon_sym_GT_EQ] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_union] = ACTIONS(2162), + [anon_sym_pub] = ACTIONS(2162), + [anon_sym_mut] = ACTIONS(2162), + [anon_sym_enum] = ACTIONS(2162), + [anon_sym_interface] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2162), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_QMARK] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(2162), + [anon_sym_spawn] = ACTIONS(2162), + [anon_sym_json_DOTdecode] = ACTIONS(2162), + [anon_sym_LBRACK2] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(3243), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_LT_DASH] = ACTIONS(2162), + [anon_sym_LT_LT] = ACTIONS(3245), + [anon_sym_GT_GT] = ACTIONS(3245), + [anon_sym_GT_GT_GT] = ACTIONS(3245), + [anon_sym_AMP_CARET] = ACTIONS(3245), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(2162), + [anon_sym_or] = ACTIONS(2162), + [sym_none] = ACTIONS(2162), + [sym_true] = ACTIONS(2162), + [sym_false] = ACTIONS(2162), + [sym_nil] = ACTIONS(2162), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_DOLLARif] = ACTIONS(2162), + [anon_sym_is] = ACTIONS(2162), + [anon_sym_BANGis] = ACTIONS(2162), + [anon_sym_in] = ACTIONS(3271), + [anon_sym_BANGin] = ACTIONS(3273), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_select] = ACTIONS(2162), + [anon_sym_lock] = ACTIONS(2162), + [anon_sym_rlock] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_sql] = ACTIONS(2162), + [sym_int_literal] = ACTIONS(2162), + [sym_float_literal] = ACTIONS(2162), + [sym_rune_literal] = ACTIONS(2162), + [anon_sym_AT] = ACTIONS(2162), + [anon_sym_shared] = ACTIONS(2162), + [anon_sym_map_LBRACK] = ACTIONS(2162), + [anon_sym_chan] = ACTIONS(2162), + [anon_sym_thread] = ACTIONS(2162), + [anon_sym_atomic] = ACTIONS(2162), + [anon_sym_assert] = ACTIONS(2162), + [anon_sym_defer] = ACTIONS(2162), + [anon_sym_goto] = ACTIONS(2162), + [anon_sym_break] = ACTIONS(2162), + [anon_sym_continue] = ACTIONS(2162), + [anon_sym_return] = ACTIONS(2162), + [anon_sym_DOLLARfor] = ACTIONS(2162), + [anon_sym_for] = ACTIONS(2162), + [anon_sym_POUND] = ACTIONS(2162), + [anon_sym_asm] = ACTIONS(2162), + [anon_sym_AT_LBRACK] = ACTIONS(2162), + [sym___double_quote] = ACTIONS(2162), + [sym___single_quote] = ACTIONS(2162), + [sym___c_double_quote] = ACTIONS(2162), + [sym___c_single_quote] = ACTIONS(2162), + [sym___r_double_quote] = ACTIONS(2162), + [sym___r_single_quote] = ACTIONS(2162), }, [976] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2218), - [sym_identifier] = ACTIONS(2220), - [anon_sym_LF] = ACTIONS(2220), - [anon_sym_CR] = ACTIONS(2220), - [anon_sym_CR_LF] = ACTIONS(2220), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(2220), - [anon_sym_COMMA] = ACTIONS(2220), - [anon_sym_const] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2220), - [anon_sym_type] = ACTIONS(2220), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_fn] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_GT] = ACTIONS(3241), - [anon_sym_EQ_EQ] = ACTIONS(3241), - [anon_sym_BANG_EQ] = ACTIONS(3241), - [anon_sym_LT_EQ] = ACTIONS(3241), - [anon_sym_GT_EQ] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2220), - [anon_sym_union] = ACTIONS(2220), - [anon_sym_pub] = ACTIONS(2220), - [anon_sym_mut] = ACTIONS(2220), - [anon_sym_enum] = ACTIONS(2220), - [anon_sym_interface] = ACTIONS(2220), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2220), - [anon_sym_spawn] = ACTIONS(2220), - [anon_sym_json_DOTdecode] = ACTIONS(2220), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2220), - [anon_sym_CARET] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(2220), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3255), - [anon_sym_PIPE_PIPE] = ACTIONS(3257), - [anon_sym_or] = ACTIONS(3259), - [sym_none] = ACTIONS(2220), - [sym_true] = ACTIONS(2220), - [sym_false] = ACTIONS(2220), - [sym_nil] = ACTIONS(2220), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2220), - [anon_sym_DOLLARif] = ACTIONS(2220), - [anon_sym_is] = ACTIONS(3261), - [anon_sym_BANGis] = ACTIONS(3263), - [anon_sym_in] = ACTIONS(3265), - [anon_sym_BANGin] = ACTIONS(3267), - [anon_sym_match] = ACTIONS(2220), - [anon_sym_select] = ACTIONS(2220), - [anon_sym_lock] = ACTIONS(2220), - [anon_sym_rlock] = ACTIONS(2220), - [anon_sym_unsafe] = ACTIONS(2220), - [anon_sym_sql] = ACTIONS(2220), - [sym_int_literal] = ACTIONS(2220), - [sym_float_literal] = ACTIONS(2220), - [sym_rune_literal] = ACTIONS(2220), - [anon_sym_AT] = ACTIONS(2220), - [anon_sym_shared] = ACTIONS(2220), - [anon_sym_map_LBRACK] = ACTIONS(2220), - [anon_sym_chan] = ACTIONS(2220), - [anon_sym_thread] = ACTIONS(2220), - [anon_sym_atomic] = ACTIONS(2220), - [anon_sym_assert] = ACTIONS(2220), - [anon_sym_defer] = ACTIONS(2220), - [anon_sym_goto] = ACTIONS(2220), - [anon_sym_break] = ACTIONS(2220), - [anon_sym_continue] = ACTIONS(2220), - [anon_sym_return] = ACTIONS(2220), - [anon_sym_DOLLARfor] = ACTIONS(2220), - [anon_sym_for] = ACTIONS(2220), - [anon_sym_POUND] = ACTIONS(2220), - [anon_sym_asm] = ACTIONS(2220), - [anon_sym_AT_LBRACK] = ACTIONS(2220), - [sym___double_quote] = ACTIONS(2220), - [sym___single_quote] = ACTIONS(2220), - [sym___c_double_quote] = ACTIONS(2220), - [sym___c_single_quote] = ACTIONS(2220), - [sym___r_double_quote] = ACTIONS(2220), - [sym___r_single_quote] = ACTIONS(2220), + [sym_type_parameters] = STATE(4109), + [sym_argument_list] = STATE(1029), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(2232), + [sym_identifier] = ACTIONS(2234), + [anon_sym_LF] = ACTIONS(2234), + [anon_sym_CR] = ACTIONS(2234), + [anon_sym_CR_LF] = ACTIONS(2234), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_as] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_COMMA] = ACTIONS(2234), + [anon_sym_const] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(2234), + [anon_sym_type] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(3243), + [anon_sym_fn] = ACTIONS(2234), + [anon_sym_PLUS] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(3243), + [anon_sym_STAR] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_PERCENT] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3247), + [anon_sym_GT] = ACTIONS(3247), + [anon_sym_EQ_EQ] = ACTIONS(3247), + [anon_sym_BANG_EQ] = ACTIONS(3247), + [anon_sym_LT_EQ] = ACTIONS(3247), + [anon_sym_GT_EQ] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_struct] = ACTIONS(2234), + [anon_sym_union] = ACTIONS(2234), + [anon_sym_pub] = ACTIONS(2234), + [anon_sym_mut] = ACTIONS(2234), + [anon_sym_enum] = ACTIONS(2234), + [anon_sym_interface] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_DASH_DASH] = ACTIONS(3253), + [anon_sym_QMARK] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(2234), + [anon_sym_spawn] = ACTIONS(2234), + [anon_sym_json_DOTdecode] = ACTIONS(2234), + [anon_sym_LBRACK2] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(2234), + [anon_sym_CARET] = ACTIONS(3243), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_LT_DASH] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(3245), + [anon_sym_GT_GT] = ACTIONS(3245), + [anon_sym_GT_GT_GT] = ACTIONS(3245), + [anon_sym_AMP_CARET] = ACTIONS(3245), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3263), + [anon_sym_or] = ACTIONS(3265), + [sym_none] = ACTIONS(2234), + [sym_true] = ACTIONS(2234), + [sym_false] = ACTIONS(2234), + [sym_nil] = ACTIONS(2234), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_DOLLARif] = ACTIONS(2234), + [anon_sym_is] = ACTIONS(3267), + [anon_sym_BANGis] = ACTIONS(3269), + [anon_sym_in] = ACTIONS(3271), + [anon_sym_BANGin] = ACTIONS(3273), + [anon_sym_match] = ACTIONS(2234), + [anon_sym_select] = ACTIONS(2234), + [anon_sym_lock] = ACTIONS(2234), + [anon_sym_rlock] = ACTIONS(2234), + [anon_sym_unsafe] = ACTIONS(2234), + [anon_sym_sql] = ACTIONS(2234), + [sym_int_literal] = ACTIONS(2234), + [sym_float_literal] = ACTIONS(2234), + [sym_rune_literal] = ACTIONS(2234), + [anon_sym_AT] = ACTIONS(2234), + [anon_sym_shared] = ACTIONS(2234), + [anon_sym_map_LBRACK] = ACTIONS(2234), + [anon_sym_chan] = ACTIONS(2234), + [anon_sym_thread] = ACTIONS(2234), + [anon_sym_atomic] = ACTIONS(2234), + [anon_sym_assert] = ACTIONS(2234), + [anon_sym_defer] = ACTIONS(2234), + [anon_sym_goto] = ACTIONS(2234), + [anon_sym_break] = ACTIONS(2234), + [anon_sym_continue] = ACTIONS(2234), + [anon_sym_return] = ACTIONS(2234), + [anon_sym_DOLLARfor] = ACTIONS(2234), + [anon_sym_for] = ACTIONS(2234), + [anon_sym_POUND] = ACTIONS(2234), + [anon_sym_asm] = ACTIONS(2234), + [anon_sym_AT_LBRACK] = ACTIONS(2234), + [sym___double_quote] = ACTIONS(2234), + [sym___single_quote] = ACTIONS(2234), + [sym___c_double_quote] = ACTIONS(2234), + [sym___c_single_quote] = ACTIONS(2234), + [sym___r_double_quote] = ACTIONS(2234), + [sym___r_single_quote] = ACTIONS(2234), }, [977] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2122), - [sym_identifier] = ACTIONS(2124), - [anon_sym_LF] = ACTIONS(2124), - [anon_sym_CR] = ACTIONS(2124), - [anon_sym_CR_LF] = ACTIONS(2124), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_COMMA] = ACTIONS(2124), - [anon_sym_const] = ACTIONS(2124), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2124), - [anon_sym_type] = ACTIONS(2124), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_fn] = ACTIONS(2124), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_GT] = ACTIONS(3241), - [anon_sym_EQ_EQ] = ACTIONS(3241), - [anon_sym_BANG_EQ] = ACTIONS(3241), - [anon_sym_LT_EQ] = ACTIONS(3241), - [anon_sym_GT_EQ] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2124), - [anon_sym_union] = ACTIONS(2124), - [anon_sym_pub] = ACTIONS(2124), - [anon_sym_mut] = ACTIONS(2124), - [anon_sym_enum] = ACTIONS(2124), - [anon_sym_interface] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2124), - [anon_sym_spawn] = ACTIONS(2124), - [anon_sym_json_DOTdecode] = ACTIONS(2124), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(2124), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3255), - [anon_sym_PIPE_PIPE] = ACTIONS(3257), - [anon_sym_or] = ACTIONS(3259), - [sym_none] = ACTIONS(2124), - [sym_true] = ACTIONS(2124), - [sym_false] = ACTIONS(2124), - [sym_nil] = ACTIONS(2124), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2124), - [anon_sym_DOLLARif] = ACTIONS(2124), - [anon_sym_is] = ACTIONS(3307), - [anon_sym_BANGis] = ACTIONS(3309), - [anon_sym_in] = ACTIONS(3265), - [anon_sym_BANGin] = ACTIONS(3267), - [anon_sym_match] = ACTIONS(2124), - [anon_sym_select] = ACTIONS(2124), - [anon_sym_lock] = ACTIONS(2124), - [anon_sym_rlock] = ACTIONS(2124), - [anon_sym_unsafe] = ACTIONS(2124), - [anon_sym_sql] = ACTIONS(2124), - [sym_int_literal] = ACTIONS(2124), - [sym_float_literal] = ACTIONS(2124), - [sym_rune_literal] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2124), - [anon_sym_shared] = ACTIONS(2124), - [anon_sym_map_LBRACK] = ACTIONS(2124), - [anon_sym_chan] = ACTIONS(2124), - [anon_sym_thread] = ACTIONS(2124), - [anon_sym_atomic] = ACTIONS(2124), - [anon_sym_assert] = ACTIONS(2124), - [anon_sym_defer] = ACTIONS(2124), - [anon_sym_goto] = ACTIONS(2124), - [anon_sym_break] = ACTIONS(2124), - [anon_sym_continue] = ACTIONS(2124), - [anon_sym_return] = ACTIONS(2124), - [anon_sym_DOLLARfor] = ACTIONS(2124), - [anon_sym_for] = ACTIONS(2124), - [anon_sym_POUND] = ACTIONS(2124), - [anon_sym_asm] = ACTIONS(2124), - [anon_sym_AT_LBRACK] = ACTIONS(2124), - [sym___double_quote] = ACTIONS(2124), - [sym___single_quote] = ACTIONS(2124), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2124), - [sym___r_double_quote] = ACTIONS(2124), - [sym___r_single_quote] = ACTIONS(2124), + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2359), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(617), + [anon_sym_LF] = ACTIONS(617), + [anon_sym_CR] = ACTIONS(617), + [anon_sym_CR_LF] = ACTIONS(617), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_DOT] = ACTIONS(617), + [anon_sym_as] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_RBRACE] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_fn] = ACTIONS(617), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(617), + [anon_sym_PERCENT] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(617), + [anon_sym_GT] = ACTIONS(617), + [anon_sym_EQ_EQ] = ACTIONS(617), + [anon_sym_BANG_EQ] = ACTIONS(617), + [anon_sym_LT_EQ] = ACTIONS(617), + [anon_sym_GT_EQ] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_struct] = ACTIONS(617), + [anon_sym_mut] = ACTIONS(617), + [anon_sym_PLUS_PLUS] = ACTIONS(617), + [anon_sym_DASH_DASH] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_go] = ACTIONS(617), + [anon_sym_spawn] = ACTIONS(617), + [anon_sym_json_DOTdecode] = ACTIONS(617), + [anon_sym_LBRACK2] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_CARET] = ACTIONS(617), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_LT_DASH] = ACTIONS(617), + [anon_sym_LT_LT] = ACTIONS(617), + [anon_sym_GT_GT] = ACTIONS(617), + [anon_sym_GT_GT_GT] = ACTIONS(617), + [anon_sym_AMP_CARET] = ACTIONS(617), + [anon_sym_AMP_AMP] = ACTIONS(617), + [anon_sym_PIPE_PIPE] = ACTIONS(617), + [anon_sym_or] = ACTIONS(617), + [sym_none] = ACTIONS(617), + [sym_true] = ACTIONS(617), + [sym_false] = ACTIONS(617), + [sym_nil] = ACTIONS(617), + [anon_sym_QMARK_DOT] = ACTIONS(617), + [anon_sym_POUND_LBRACK] = ACTIONS(617), + [anon_sym_if] = ACTIONS(617), + [anon_sym_DOLLARif] = ACTIONS(617), + [anon_sym_is] = ACTIONS(617), + [anon_sym_BANGis] = ACTIONS(617), + [anon_sym_in] = ACTIONS(617), + [anon_sym_BANGin] = ACTIONS(617), + [anon_sym_match] = ACTIONS(617), + [anon_sym_select] = ACTIONS(617), + [anon_sym_lock] = ACTIONS(617), + [anon_sym_rlock] = ACTIONS(617), + [anon_sym_unsafe] = ACTIONS(617), + [anon_sym_sql] = ACTIONS(617), + [sym_int_literal] = ACTIONS(617), + [sym_float_literal] = ACTIONS(617), + [sym_rune_literal] = ACTIONS(617), + [anon_sym_AT] = ACTIONS(617), + [anon_sym_shared] = ACTIONS(617), + [anon_sym_map_LBRACK] = ACTIONS(617), + [anon_sym_chan] = ACTIONS(617), + [anon_sym_thread] = ACTIONS(617), + [anon_sym_atomic] = ACTIONS(617), + [sym___double_quote] = ACTIONS(617), + [sym___single_quote] = ACTIONS(617), + [sym___c_double_quote] = ACTIONS(617), + [sym___c_single_quote] = ACTIONS(617), + [sym___r_double_quote] = ACTIONS(617), + [sym___r_single_quote] = ACTIONS(617), }, [978] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), + [sym_type_parameters] = STATE(4109), + [sym_argument_list] = STATE(1029), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(2222), + [sym_identifier] = ACTIONS(2224), + [anon_sym_LF] = ACTIONS(2224), + [anon_sym_CR] = ACTIONS(2224), + [anon_sym_CR_LF] = ACTIONS(2224), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_as] = ACTIONS(2224), + [anon_sym_LBRACE] = ACTIONS(2224), + [anon_sym_COMMA] = ACTIONS(2224), + [anon_sym_const] = ACTIONS(2224), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(2224), + [anon_sym_type] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_fn] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_SLASH] = ACTIONS(2224), + [anon_sym_PERCENT] = ACTIONS(2224), + [anon_sym_LT] = ACTIONS(2224), + [anon_sym_GT] = ACTIONS(2224), + [anon_sym_EQ_EQ] = ACTIONS(2224), + [anon_sym_BANG_EQ] = ACTIONS(2224), + [anon_sym_LT_EQ] = ACTIONS(2224), + [anon_sym_GT_EQ] = ACTIONS(2224), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_struct] = ACTIONS(2224), + [anon_sym_union] = ACTIONS(2224), + [anon_sym_pub] = ACTIONS(2224), + [anon_sym_mut] = ACTIONS(2224), + [anon_sym_enum] = ACTIONS(2224), + [anon_sym_interface] = ACTIONS(2224), + [anon_sym_PLUS_PLUS] = ACTIONS(2224), + [anon_sym_DASH_DASH] = ACTIONS(2224), + [anon_sym_QMARK] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(2224), + [anon_sym_spawn] = ACTIONS(2224), + [anon_sym_json_DOTdecode] = ACTIONS(2224), + [anon_sym_LBRACK2] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(2224), + [anon_sym_CARET] = ACTIONS(2224), + [anon_sym_AMP] = ACTIONS(2224), + [anon_sym_LT_DASH] = ACTIONS(2224), + [anon_sym_LT_LT] = ACTIONS(2224), + [anon_sym_GT_GT] = ACTIONS(2224), + [anon_sym_GT_GT_GT] = ACTIONS(2224), + [anon_sym_AMP_CARET] = ACTIONS(2224), + [anon_sym_AMP_AMP] = ACTIONS(2224), + [anon_sym_PIPE_PIPE] = ACTIONS(2224), + [anon_sym_or] = ACTIONS(2224), + [sym_none] = ACTIONS(2224), + [sym_true] = ACTIONS(2224), + [sym_false] = ACTIONS(2224), + [sym_nil] = ACTIONS(2224), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(2224), + [anon_sym_DOLLARif] = ACTIONS(2224), + [anon_sym_is] = ACTIONS(2224), + [anon_sym_BANGis] = ACTIONS(2224), + [anon_sym_in] = ACTIONS(2224), + [anon_sym_BANGin] = ACTIONS(2224), + [anon_sym_match] = ACTIONS(2224), + [anon_sym_select] = ACTIONS(2224), + [anon_sym_lock] = ACTIONS(2224), + [anon_sym_rlock] = ACTIONS(2224), + [anon_sym_unsafe] = ACTIONS(2224), + [anon_sym_sql] = ACTIONS(2224), + [sym_int_literal] = ACTIONS(2224), + [sym_float_literal] = ACTIONS(2224), + [sym_rune_literal] = ACTIONS(2224), + [anon_sym_AT] = ACTIONS(2224), + [anon_sym_shared] = ACTIONS(2224), + [anon_sym_map_LBRACK] = ACTIONS(2224), + [anon_sym_chan] = ACTIONS(2224), + [anon_sym_thread] = ACTIONS(2224), + [anon_sym_atomic] = ACTIONS(2224), + [anon_sym_assert] = ACTIONS(2224), + [anon_sym_defer] = ACTIONS(2224), + [anon_sym_goto] = ACTIONS(2224), + [anon_sym_break] = ACTIONS(2224), + [anon_sym_continue] = ACTIONS(2224), + [anon_sym_return] = ACTIONS(2224), + [anon_sym_DOLLARfor] = ACTIONS(2224), + [anon_sym_for] = ACTIONS(2224), + [anon_sym_POUND] = ACTIONS(2224), + [anon_sym_asm] = ACTIONS(2224), + [anon_sym_AT_LBRACK] = ACTIONS(2224), + [sym___double_quote] = ACTIONS(2224), + [sym___single_quote] = ACTIONS(2224), + [sym___c_double_quote] = ACTIONS(2224), + [sym___c_single_quote] = ACTIONS(2224), + [sym___r_double_quote] = ACTIONS(2224), + [sym___r_single_quote] = ACTIONS(2224), + }, + [979] = { + [sym_type_parameters] = STATE(4109), + [sym_argument_list] = STATE(1029), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(2154), + [sym_identifier] = ACTIONS(2156), + [anon_sym_LF] = ACTIONS(2156), + [anon_sym_CR] = ACTIONS(2156), + [anon_sym_CR_LF] = ACTIONS(2156), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_as] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_COMMA] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(2156), + [anon_sym_type] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(3243), + [anon_sym_fn] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(3243), + [anon_sym_STAR] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_PERCENT] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(2156), + [anon_sym_GT] = ACTIONS(2156), + [anon_sym_EQ_EQ] = ACTIONS(2156), + [anon_sym_BANG_EQ] = ACTIONS(2156), + [anon_sym_LT_EQ] = ACTIONS(2156), + [anon_sym_GT_EQ] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_struct] = ACTIONS(2156), + [anon_sym_union] = ACTIONS(2156), + [anon_sym_pub] = ACTIONS(2156), + [anon_sym_mut] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [anon_sym_interface] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_QMARK] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(2156), + [anon_sym_spawn] = ACTIONS(2156), + [anon_sym_json_DOTdecode] = ACTIONS(2156), + [anon_sym_LBRACK2] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(2156), + [anon_sym_CARET] = ACTIONS(3243), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_LT_DASH] = ACTIONS(2156), + [anon_sym_LT_LT] = ACTIONS(3245), + [anon_sym_GT_GT] = ACTIONS(3245), + [anon_sym_GT_GT_GT] = ACTIONS(3245), + [anon_sym_AMP_CARET] = ACTIONS(3245), + [anon_sym_AMP_AMP] = ACTIONS(2156), + [anon_sym_PIPE_PIPE] = ACTIONS(2156), + [anon_sym_or] = ACTIONS(2156), + [sym_none] = ACTIONS(2156), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [sym_nil] = ACTIONS(2156), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_DOLLARif] = ACTIONS(2156), + [anon_sym_is] = ACTIONS(2156), + [anon_sym_BANGis] = ACTIONS(2156), + [anon_sym_in] = ACTIONS(2156), + [anon_sym_BANGin] = ACTIONS(2156), + [anon_sym_match] = ACTIONS(2156), + [anon_sym_select] = ACTIONS(2156), + [anon_sym_lock] = ACTIONS(2156), + [anon_sym_rlock] = ACTIONS(2156), + [anon_sym_unsafe] = ACTIONS(2156), + [anon_sym_sql] = ACTIONS(2156), + [sym_int_literal] = ACTIONS(2156), + [sym_float_literal] = ACTIONS(2156), + [sym_rune_literal] = ACTIONS(2156), + [anon_sym_AT] = ACTIONS(2156), + [anon_sym_shared] = ACTIONS(2156), + [anon_sym_map_LBRACK] = ACTIONS(2156), + [anon_sym_chan] = ACTIONS(2156), + [anon_sym_thread] = ACTIONS(2156), + [anon_sym_atomic] = ACTIONS(2156), + [anon_sym_assert] = ACTIONS(2156), + [anon_sym_defer] = ACTIONS(2156), + [anon_sym_goto] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_DOLLARfor] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_POUND] = ACTIONS(2156), + [anon_sym_asm] = ACTIONS(2156), + [anon_sym_AT_LBRACK] = ACTIONS(2156), + [sym___double_quote] = ACTIONS(2156), + [sym___single_quote] = ACTIONS(2156), + [sym___c_double_quote] = ACTIONS(2156), + [sym___c_single_quote] = ACTIONS(2156), + [sym___r_double_quote] = ACTIONS(2156), + [sym___r_single_quote] = ACTIONS(2156), + }, + [980] = { + [sym_type_parameters] = STATE(4109), + [sym_argument_list] = STATE(1029), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(3309), + [sym_identifier] = ACTIONS(1716), + [anon_sym_LF] = ACTIONS(1716), + [anon_sym_CR] = ACTIONS(1716), + [anon_sym_CR_LF] = ACTIONS(1716), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_as] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(1716), + [anon_sym_type] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(3243), + [anon_sym_fn] = ACTIONS(1716), + [anon_sym_PLUS] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(3243), + [anon_sym_STAR] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_PERCENT] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3247), + [anon_sym_GT] = ACTIONS(3247), + [anon_sym_EQ_EQ] = ACTIONS(3247), + [anon_sym_BANG_EQ] = ACTIONS(3247), + [anon_sym_LT_EQ] = ACTIONS(3247), + [anon_sym_GT_EQ] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_struct] = ACTIONS(1716), + [anon_sym_union] = ACTIONS(1716), + [anon_sym_pub] = ACTIONS(1716), + [anon_sym_mut] = ACTIONS(1716), + [anon_sym_enum] = ACTIONS(1716), + [anon_sym_interface] = ACTIONS(1716), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_DASH_DASH] = ACTIONS(3253), + [anon_sym_QMARK] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(1716), + [anon_sym_spawn] = ACTIONS(1716), + [anon_sym_json_DOTdecode] = ACTIONS(1716), + [anon_sym_LBRACK2] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(1716), + [anon_sym_CARET] = ACTIONS(3243), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_LT_DASH] = ACTIONS(1716), + [anon_sym_LT_LT] = ACTIONS(3245), + [anon_sym_GT_GT] = ACTIONS(3245), + [anon_sym_GT_GT_GT] = ACTIONS(3245), + [anon_sym_AMP_CARET] = ACTIONS(3245), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3263), + [anon_sym_or] = ACTIONS(3265), + [sym_none] = ACTIONS(1716), + [sym_true] = ACTIONS(1716), + [sym_false] = ACTIONS(1716), + [sym_nil] = ACTIONS(1716), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(1716), + [anon_sym_DOLLARif] = ACTIONS(1716), + [anon_sym_is] = ACTIONS(3267), + [anon_sym_BANGis] = ACTIONS(3269), + [anon_sym_in] = ACTIONS(3271), + [anon_sym_BANGin] = ACTIONS(3273), + [anon_sym_match] = ACTIONS(1716), + [anon_sym_select] = ACTIONS(1716), + [anon_sym_lock] = ACTIONS(1716), + [anon_sym_rlock] = ACTIONS(1716), + [anon_sym_unsafe] = ACTIONS(1716), + [anon_sym_sql] = ACTIONS(1716), + [sym_int_literal] = ACTIONS(1716), + [sym_float_literal] = ACTIONS(1716), + [sym_rune_literal] = ACTIONS(1716), + [anon_sym_AT] = ACTIONS(1716), + [anon_sym_shared] = ACTIONS(1716), + [anon_sym_map_LBRACK] = ACTIONS(1716), + [anon_sym_chan] = ACTIONS(1716), + [anon_sym_thread] = ACTIONS(1716), + [anon_sym_atomic] = ACTIONS(1716), + [anon_sym_assert] = ACTIONS(1716), + [anon_sym_defer] = ACTIONS(1716), + [anon_sym_goto] = ACTIONS(1716), + [anon_sym_break] = ACTIONS(1716), + [anon_sym_continue] = ACTIONS(1716), + [anon_sym_return] = ACTIONS(1716), + [anon_sym_DOLLARfor] = ACTIONS(1716), + [anon_sym_for] = ACTIONS(1716), + [anon_sym_POUND] = ACTIONS(1716), + [anon_sym_asm] = ACTIONS(1716), + [anon_sym_AT_LBRACK] = ACTIONS(1716), + [sym___double_quote] = ACTIONS(1716), + [sym___single_quote] = ACTIONS(1716), + [sym___c_double_quote] = ACTIONS(1716), + [sym___c_single_quote] = ACTIONS(1716), + [sym___r_double_quote] = ACTIONS(1716), + [sym___r_single_quote] = ACTIONS(1716), + }, + [981] = { + [sym_type_parameters] = STATE(4109), + [sym_argument_list] = STATE(1029), + [sym_or_block] = STATE(1030), [ts_builtin_sym_end] = ACTIONS(3311), [sym_identifier] = ACTIONS(3313), [anon_sym_LF] = ACTIONS(3313), [anon_sym_CR] = ACTIONS(3313), [anon_sym_CR_LF] = ACTIONS(3313), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(3231), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_as] = ACTIONS(3237), [anon_sym_LBRACE] = ACTIONS(3313), + [anon_sym_COMMA] = ACTIONS(3315), [anon_sym_const] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_LPAREN] = ACTIONS(3241), [anon_sym___global] = ACTIONS(3313), [anon_sym_type] = ACTIONS(3313), - [anon_sym_PIPE] = ACTIONS(3315), + [anon_sym_PIPE] = ACTIONS(3243), [anon_sym_fn] = ACTIONS(3313), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_EQ_EQ] = ACTIONS(3319), - [anon_sym_BANG_EQ] = ACTIONS(3319), - [anon_sym_LT_EQ] = ACTIONS(3319), - [anon_sym_GT_EQ] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3243), + [anon_sym_PLUS] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(3243), + [anon_sym_STAR] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_PERCENT] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3247), + [anon_sym_GT] = ACTIONS(3247), + [anon_sym_EQ_EQ] = ACTIONS(3247), + [anon_sym_BANG_EQ] = ACTIONS(3247), + [anon_sym_LT_EQ] = ACTIONS(3247), + [anon_sym_GT_EQ] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3249), [anon_sym_struct] = ACTIONS(3313), [anon_sym_union] = ACTIONS(3313), [anon_sym_pub] = ACTIONS(3313), [anon_sym_mut] = ACTIONS(3313), [anon_sym_enum] = ACTIONS(3313), [anon_sym_interface] = ACTIONS(3313), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_DASH_DASH] = ACTIONS(3253), + [anon_sym_QMARK] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), [anon_sym_go] = ACTIONS(3313), [anon_sym_spawn] = ACTIONS(3313), [anon_sym_json_DOTdecode] = ACTIONS(3313), - [anon_sym_LBRACK2] = ACTIONS(3253), + [anon_sym_LBRACK2] = ACTIONS(3259), [anon_sym_TILDE] = ACTIONS(3313), - [anon_sym_CARET] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_CARET] = ACTIONS(3243), + [anon_sym_AMP] = ACTIONS(3245), [anon_sym_LT_DASH] = ACTIONS(3313), - [anon_sym_LT_LT] = ACTIONS(3317), - [anon_sym_GT_GT] = ACTIONS(3317), - [anon_sym_GT_GT_GT] = ACTIONS(3317), - [anon_sym_AMP_CARET] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_PIPE_PIPE] = ACTIONS(3323), - [anon_sym_or] = ACTIONS(3259), + [anon_sym_LT_LT] = ACTIONS(3245), + [anon_sym_GT_GT] = ACTIONS(3245), + [anon_sym_GT_GT_GT] = ACTIONS(3245), + [anon_sym_AMP_CARET] = ACTIONS(3245), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3263), + [anon_sym_or] = ACTIONS(3265), [sym_none] = ACTIONS(3313), [sym_true] = ACTIONS(3313), [sym_false] = ACTIONS(3313), [sym_nil] = ACTIONS(3313), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), [anon_sym_if] = ACTIONS(3313), [anon_sym_DOLLARif] = ACTIONS(3313), - [anon_sym_is] = ACTIONS(3261), - [anon_sym_BANGis] = ACTIONS(3263), - [anon_sym_in] = ACTIONS(3325), - [anon_sym_BANGin] = ACTIONS(3327), + [anon_sym_is] = ACTIONS(3267), + [anon_sym_BANGis] = ACTIONS(3269), + [anon_sym_in] = ACTIONS(3271), + [anon_sym_BANGin] = ACTIONS(3273), [anon_sym_match] = ACTIONS(3313), [anon_sym_select] = ACTIONS(3313), [anon_sym_lock] = ACTIONS(3313), @@ -138338,72 +138863,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3313), [sym___r_single_quote] = ACTIONS(3313), }, - [979] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), + [982] = { + [sym_type_parameters] = STATE(4109), + [sym_argument_list] = STATE(1029), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(2160), + [sym_identifier] = ACTIONS(2162), + [anon_sym_LF] = ACTIONS(2162), + [anon_sym_CR] = ACTIONS(2162), + [anon_sym_CR_LF] = ACTIONS(2162), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_as] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_const] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(2162), + [anon_sym_type] = ACTIONS(2162), + [anon_sym_PIPE] = ACTIONS(3317), + [anon_sym_fn] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3319), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_PERCENT] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3321), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_LT_EQ] = ACTIONS(3321), + [anon_sym_GT_EQ] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_union] = ACTIONS(2162), + [anon_sym_pub] = ACTIONS(2162), + [anon_sym_mut] = ACTIONS(2162), + [anon_sym_enum] = ACTIONS(2162), + [anon_sym_interface] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2162), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_QMARK] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(2162), + [anon_sym_spawn] = ACTIONS(2162), + [anon_sym_json_DOTdecode] = ACTIONS(2162), + [anon_sym_LBRACK2] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(3317), + [anon_sym_AMP] = ACTIONS(3319), + [anon_sym_LT_DASH] = ACTIONS(2162), + [anon_sym_LT_LT] = ACTIONS(3319), + [anon_sym_GT_GT] = ACTIONS(3319), + [anon_sym_GT_GT_GT] = ACTIONS(3319), + [anon_sym_AMP_CARET] = ACTIONS(3319), + [anon_sym_AMP_AMP] = ACTIONS(3323), + [anon_sym_PIPE_PIPE] = ACTIONS(2162), + [anon_sym_or] = ACTIONS(2162), + [sym_none] = ACTIONS(2162), + [sym_true] = ACTIONS(2162), + [sym_false] = ACTIONS(2162), + [sym_nil] = ACTIONS(2162), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_DOLLARif] = ACTIONS(2162), + [anon_sym_is] = ACTIONS(2162), + [anon_sym_BANGis] = ACTIONS(2162), + [anon_sym_in] = ACTIONS(3325), + [anon_sym_BANGin] = ACTIONS(3327), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_select] = ACTIONS(2162), + [anon_sym_lock] = ACTIONS(2162), + [anon_sym_rlock] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_sql] = ACTIONS(2162), + [sym_int_literal] = ACTIONS(2162), + [sym_float_literal] = ACTIONS(2162), + [sym_rune_literal] = ACTIONS(2162), + [anon_sym_AT] = ACTIONS(2162), + [anon_sym_shared] = ACTIONS(2162), + [anon_sym_map_LBRACK] = ACTIONS(2162), + [anon_sym_chan] = ACTIONS(2162), + [anon_sym_thread] = ACTIONS(2162), + [anon_sym_atomic] = ACTIONS(2162), + [anon_sym_assert] = ACTIONS(2162), + [anon_sym_defer] = ACTIONS(2162), + [anon_sym_goto] = ACTIONS(2162), + [anon_sym_break] = ACTIONS(2162), + [anon_sym_continue] = ACTIONS(2162), + [anon_sym_return] = ACTIONS(2162), + [anon_sym_DOLLARfor] = ACTIONS(2162), + [anon_sym_for] = ACTIONS(2162), + [anon_sym_POUND] = ACTIONS(2162), + [anon_sym_asm] = ACTIONS(2162), + [anon_sym_AT_LBRACK] = ACTIONS(2162), + [sym___double_quote] = ACTIONS(2162), + [sym___single_quote] = ACTIONS(2162), + [sym___c_double_quote] = ACTIONS(2162), + [sym___c_single_quote] = ACTIONS(2162), + [sym___r_double_quote] = ACTIONS(2162), + [sym___r_single_quote] = ACTIONS(2162), + }, + [983] = { + [sym_type_parameters] = STATE(4109), + [sym_argument_list] = STATE(1029), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(2142), + [sym_identifier] = ACTIONS(2144), + [anon_sym_LF] = ACTIONS(2144), + [anon_sym_CR] = ACTIONS(2144), + [anon_sym_CR_LF] = ACTIONS(2144), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_as] = ACTIONS(2144), + [anon_sym_LBRACE] = ACTIONS(2144), + [anon_sym_const] = ACTIONS(2144), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(2144), + [anon_sym_type] = ACTIONS(2144), + [anon_sym_PIPE] = ACTIONS(3317), + [anon_sym_fn] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3319), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_PERCENT] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(2144), + [anon_sym_GT] = ACTIONS(2144), + [anon_sym_EQ_EQ] = ACTIONS(2144), + [anon_sym_BANG_EQ] = ACTIONS(2144), + [anon_sym_LT_EQ] = ACTIONS(2144), + [anon_sym_GT_EQ] = ACTIONS(2144), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_struct] = ACTIONS(2144), + [anon_sym_union] = ACTIONS(2144), + [anon_sym_pub] = ACTIONS(2144), + [anon_sym_mut] = ACTIONS(2144), + [anon_sym_enum] = ACTIONS(2144), + [anon_sym_interface] = ACTIONS(2144), + [anon_sym_PLUS_PLUS] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2144), + [anon_sym_QMARK] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(2144), + [anon_sym_spawn] = ACTIONS(2144), + [anon_sym_json_DOTdecode] = ACTIONS(2144), + [anon_sym_LBRACK2] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_CARET] = ACTIONS(3317), + [anon_sym_AMP] = ACTIONS(3319), + [anon_sym_LT_DASH] = ACTIONS(2144), + [anon_sym_LT_LT] = ACTIONS(3319), + [anon_sym_GT_GT] = ACTIONS(3319), + [anon_sym_GT_GT_GT] = ACTIONS(3319), + [anon_sym_AMP_CARET] = ACTIONS(3319), + [anon_sym_AMP_AMP] = ACTIONS(2144), + [anon_sym_PIPE_PIPE] = ACTIONS(2144), + [anon_sym_or] = ACTIONS(2144), + [sym_none] = ACTIONS(2144), + [sym_true] = ACTIONS(2144), + [sym_false] = ACTIONS(2144), + [sym_nil] = ACTIONS(2144), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(2144), + [anon_sym_DOLLARif] = ACTIONS(2144), + [anon_sym_is] = ACTIONS(2144), + [anon_sym_BANGis] = ACTIONS(2144), + [anon_sym_in] = ACTIONS(2144), + [anon_sym_BANGin] = ACTIONS(2144), + [anon_sym_match] = ACTIONS(2144), + [anon_sym_select] = ACTIONS(2144), + [anon_sym_lock] = ACTIONS(2144), + [anon_sym_rlock] = ACTIONS(2144), + [anon_sym_unsafe] = ACTIONS(2144), + [anon_sym_sql] = ACTIONS(2144), + [sym_int_literal] = ACTIONS(2144), + [sym_float_literal] = ACTIONS(2144), + [sym_rune_literal] = ACTIONS(2144), + [anon_sym_AT] = ACTIONS(2144), + [anon_sym_shared] = ACTIONS(2144), + [anon_sym_map_LBRACK] = ACTIONS(2144), + [anon_sym_chan] = ACTIONS(2144), + [anon_sym_thread] = ACTIONS(2144), + [anon_sym_atomic] = ACTIONS(2144), + [anon_sym_assert] = ACTIONS(2144), + [anon_sym_defer] = ACTIONS(2144), + [anon_sym_goto] = ACTIONS(2144), + [anon_sym_break] = ACTIONS(2144), + [anon_sym_continue] = ACTIONS(2144), + [anon_sym_return] = ACTIONS(2144), + [anon_sym_DOLLARfor] = ACTIONS(2144), + [anon_sym_for] = ACTIONS(2144), + [anon_sym_POUND] = ACTIONS(2144), + [anon_sym_asm] = ACTIONS(2144), + [anon_sym_AT_LBRACK] = ACTIONS(2144), + [sym___double_quote] = ACTIONS(2144), + [sym___single_quote] = ACTIONS(2144), + [sym___c_double_quote] = ACTIONS(2144), + [sym___c_single_quote] = ACTIONS(2144), + [sym___r_double_quote] = ACTIONS(2144), + [sym___r_single_quote] = ACTIONS(2144), + }, + [984] = { + [sym_type_parameters] = STATE(4109), + [sym_argument_list] = STATE(1029), + [sym_or_block] = STATE(1030), [ts_builtin_sym_end] = ACTIONS(3329), [sym_identifier] = ACTIONS(3331), [anon_sym_LF] = ACTIONS(3331), [anon_sym_CR] = ACTIONS(3331), [anon_sym_CR_LF] = ACTIONS(3331), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(3231), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_as] = ACTIONS(3237), [anon_sym_LBRACE] = ACTIONS(3331), [anon_sym_const] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_LPAREN] = ACTIONS(3241), [anon_sym___global] = ACTIONS(3331), [anon_sym_type] = ACTIONS(3331), - [anon_sym_PIPE] = ACTIONS(3315), + [anon_sym_PIPE] = ACTIONS(3317), [anon_sym_fn] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_EQ_EQ] = ACTIONS(3319), - [anon_sym_BANG_EQ] = ACTIONS(3319), - [anon_sym_LT_EQ] = ACTIONS(3319), - [anon_sym_GT_EQ] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3243), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3319), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_PERCENT] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3321), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_LT_EQ] = ACTIONS(3321), + [anon_sym_GT_EQ] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3249), [anon_sym_struct] = ACTIONS(3331), [anon_sym_union] = ACTIONS(3331), [anon_sym_pub] = ACTIONS(3331), [anon_sym_mut] = ACTIONS(3331), [anon_sym_enum] = ACTIONS(3331), [anon_sym_interface] = ACTIONS(3331), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_DASH_DASH] = ACTIONS(3253), + [anon_sym_QMARK] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), [anon_sym_go] = ACTIONS(3331), [anon_sym_spawn] = ACTIONS(3331), [anon_sym_json_DOTdecode] = ACTIONS(3331), - [anon_sym_LBRACK2] = ACTIONS(3253), + [anon_sym_LBRACK2] = ACTIONS(3259), [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_CARET] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_CARET] = ACTIONS(3317), + [anon_sym_AMP] = ACTIONS(3319), [anon_sym_LT_DASH] = ACTIONS(3331), - [anon_sym_LT_LT] = ACTIONS(3317), - [anon_sym_GT_GT] = ACTIONS(3317), - [anon_sym_GT_GT_GT] = ACTIONS(3317), - [anon_sym_AMP_CARET] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_PIPE_PIPE] = ACTIONS(3323), - [anon_sym_or] = ACTIONS(3259), + [anon_sym_LT_LT] = ACTIONS(3319), + [anon_sym_GT_GT] = ACTIONS(3319), + [anon_sym_GT_GT_GT] = ACTIONS(3319), + [anon_sym_AMP_CARET] = ACTIONS(3319), + [anon_sym_AMP_AMP] = ACTIONS(3323), + [anon_sym_PIPE_PIPE] = ACTIONS(3333), + [anon_sym_or] = ACTIONS(3265), [sym_none] = ACTIONS(3331), [sym_true] = ACTIONS(3331), [sym_false] = ACTIONS(3331), [sym_nil] = ACTIONS(3331), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), [anon_sym_if] = ACTIONS(3331), [anon_sym_DOLLARif] = ACTIONS(3331), - [anon_sym_is] = ACTIONS(3261), - [anon_sym_BANGis] = ACTIONS(3263), + [anon_sym_is] = ACTIONS(3267), + [anon_sym_BANGis] = ACTIONS(3269), [anon_sym_in] = ACTIONS(3325), [anon_sym_BANGin] = ACTIONS(3327), [anon_sym_match] = ACTIONS(3331), @@ -138439,173 +139166,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3331), [sym___r_single_quote] = ACTIONS(3331), }, - [980] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(3333), - [sym_identifier] = ACTIONS(3335), - [anon_sym_LF] = ACTIONS(3335), - [anon_sym_CR] = ACTIONS(3335), - [anon_sym_CR_LF] = ACTIONS(3335), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3335), - [anon_sym_const] = ACTIONS(3335), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(3335), - [anon_sym_type] = ACTIONS(3335), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(3335), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_EQ_EQ] = ACTIONS(3319), - [anon_sym_BANG_EQ] = ACTIONS(3319), - [anon_sym_LT_EQ] = ACTIONS(3319), - [anon_sym_GT_EQ] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(3335), - [anon_sym_union] = ACTIONS(3335), - [anon_sym_pub] = ACTIONS(3335), - [anon_sym_mut] = ACTIONS(3335), - [anon_sym_enum] = ACTIONS(3335), - [anon_sym_interface] = ACTIONS(3335), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(3335), - [anon_sym_spawn] = ACTIONS(3335), - [anon_sym_json_DOTdecode] = ACTIONS(3335), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3335), - [anon_sym_CARET] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_LT_DASH] = ACTIONS(3335), - [anon_sym_LT_LT] = ACTIONS(3317), - [anon_sym_GT_GT] = ACTIONS(3317), - [anon_sym_GT_GT_GT] = ACTIONS(3317), - [anon_sym_AMP_CARET] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_PIPE_PIPE] = ACTIONS(3323), - [anon_sym_or] = ACTIONS(3259), - [sym_none] = ACTIONS(3335), - [sym_true] = ACTIONS(3335), - [sym_false] = ACTIONS(3335), - [sym_nil] = ACTIONS(3335), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3335), - [anon_sym_DOLLARif] = ACTIONS(3335), - [anon_sym_is] = ACTIONS(3261), - [anon_sym_BANGis] = ACTIONS(3263), - [anon_sym_in] = ACTIONS(3325), - [anon_sym_BANGin] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(3335), - [anon_sym_select] = ACTIONS(3335), - [anon_sym_lock] = ACTIONS(3335), - [anon_sym_rlock] = ACTIONS(3335), - [anon_sym_unsafe] = ACTIONS(3335), - [anon_sym_sql] = ACTIONS(3335), - [sym_int_literal] = ACTIONS(3335), - [sym_float_literal] = ACTIONS(3335), - [sym_rune_literal] = ACTIONS(3335), - [anon_sym_AT] = ACTIONS(3335), - [anon_sym_shared] = ACTIONS(3335), - [anon_sym_map_LBRACK] = ACTIONS(3335), - [anon_sym_chan] = ACTIONS(3335), - [anon_sym_thread] = ACTIONS(3335), - [anon_sym_atomic] = ACTIONS(3335), - [anon_sym_assert] = ACTIONS(3335), - [anon_sym_defer] = ACTIONS(3335), - [anon_sym_goto] = ACTIONS(3335), - [anon_sym_break] = ACTIONS(3335), - [anon_sym_continue] = ACTIONS(3335), - [anon_sym_return] = ACTIONS(3335), - [anon_sym_DOLLARfor] = ACTIONS(3335), - [anon_sym_for] = ACTIONS(3335), - [anon_sym_POUND] = ACTIONS(3335), - [anon_sym_asm] = ACTIONS(3335), - [anon_sym_AT_LBRACK] = ACTIONS(3335), - [sym___double_quote] = ACTIONS(3335), - [sym___single_quote] = ACTIONS(3335), - [sym___c_double_quote] = ACTIONS(3335), - [sym___c_single_quote] = ACTIONS(3335), - [sym___r_double_quote] = ACTIONS(3335), - [sym___r_single_quote] = ACTIONS(3335), + [985] = { + [sym_else_branch] = STATE(1059), + [ts_builtin_sym_end] = ACTIONS(2396), + [sym_identifier] = ACTIONS(2398), + [anon_sym_LF] = ACTIONS(2398), + [anon_sym_CR] = ACTIONS(2398), + [anon_sym_CR_LF] = ACTIONS(2398), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2398), + [anon_sym_as] = ACTIONS(2398), + [anon_sym_LBRACE] = ACTIONS(2398), + [anon_sym_COMMA] = ACTIONS(2398), + [anon_sym_const] = ACTIONS(2398), + [anon_sym_LPAREN] = ACTIONS(2398), + [anon_sym___global] = ACTIONS(2398), + [anon_sym_type] = ACTIONS(2398), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_fn] = ACTIONS(2398), + [anon_sym_PLUS] = ACTIONS(2398), + [anon_sym_DASH] = ACTIONS(2398), + [anon_sym_STAR] = ACTIONS(2398), + [anon_sym_SLASH] = ACTIONS(2398), + [anon_sym_PERCENT] = ACTIONS(2398), + [anon_sym_LT] = ACTIONS(2398), + [anon_sym_GT] = ACTIONS(2398), + [anon_sym_EQ_EQ] = ACTIONS(2398), + [anon_sym_BANG_EQ] = ACTIONS(2398), + [anon_sym_LT_EQ] = ACTIONS(2398), + [anon_sym_GT_EQ] = ACTIONS(2398), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_struct] = ACTIONS(2398), + [anon_sym_union] = ACTIONS(2398), + [anon_sym_pub] = ACTIONS(2398), + [anon_sym_mut] = ACTIONS(2398), + [anon_sym_enum] = ACTIONS(2398), + [anon_sym_interface] = ACTIONS(2398), + [anon_sym_PLUS_PLUS] = ACTIONS(2398), + [anon_sym_DASH_DASH] = ACTIONS(2398), + [anon_sym_QMARK] = ACTIONS(2398), + [anon_sym_BANG] = ACTIONS(2398), + [anon_sym_go] = ACTIONS(2398), + [anon_sym_spawn] = ACTIONS(2398), + [anon_sym_json_DOTdecode] = ACTIONS(2398), + [anon_sym_LBRACK2] = ACTIONS(2398), + [anon_sym_TILDE] = ACTIONS(2398), + [anon_sym_CARET] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), + [anon_sym_LT_DASH] = ACTIONS(2398), + [anon_sym_LT_LT] = ACTIONS(2398), + [anon_sym_GT_GT] = ACTIONS(2398), + [anon_sym_GT_GT_GT] = ACTIONS(2398), + [anon_sym_AMP_CARET] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [anon_sym_or] = ACTIONS(2398), + [sym_none] = ACTIONS(2398), + [sym_true] = ACTIONS(2398), + [sym_false] = ACTIONS(2398), + [sym_nil] = ACTIONS(2398), + [anon_sym_QMARK_DOT] = ACTIONS(2398), + [anon_sym_POUND_LBRACK] = ACTIONS(2398), + [anon_sym_if] = ACTIONS(2398), + [anon_sym_else] = ACTIONS(3335), + [anon_sym_DOLLARif] = ACTIONS(2398), + [anon_sym_is] = ACTIONS(2398), + [anon_sym_BANGis] = ACTIONS(2398), + [anon_sym_in] = ACTIONS(2398), + [anon_sym_BANGin] = ACTIONS(2398), + [anon_sym_match] = ACTIONS(2398), + [anon_sym_select] = ACTIONS(2398), + [anon_sym_lock] = ACTIONS(2398), + [anon_sym_rlock] = ACTIONS(2398), + [anon_sym_unsafe] = ACTIONS(2398), + [anon_sym_sql] = ACTIONS(2398), + [sym_int_literal] = ACTIONS(2398), + [sym_float_literal] = ACTIONS(2398), + [sym_rune_literal] = ACTIONS(2398), + [anon_sym_AT] = ACTIONS(2398), + [anon_sym_shared] = ACTIONS(2398), + [anon_sym_map_LBRACK] = ACTIONS(2398), + [anon_sym_chan] = ACTIONS(2398), + [anon_sym_thread] = ACTIONS(2398), + [anon_sym_atomic] = ACTIONS(2398), + [anon_sym_assert] = ACTIONS(2398), + [anon_sym_defer] = ACTIONS(2398), + [anon_sym_goto] = ACTIONS(2398), + [anon_sym_break] = ACTIONS(2398), + [anon_sym_continue] = ACTIONS(2398), + [anon_sym_return] = ACTIONS(2398), + [anon_sym_DOLLARfor] = ACTIONS(2398), + [anon_sym_for] = ACTIONS(2398), + [anon_sym_POUND] = ACTIONS(2398), + [anon_sym_asm] = ACTIONS(2398), + [anon_sym_AT_LBRACK] = ACTIONS(2398), + [sym___double_quote] = ACTIONS(2398), + [sym___single_quote] = ACTIONS(2398), + [sym___c_double_quote] = ACTIONS(2398), + [sym___c_single_quote] = ACTIONS(2398), + [sym___r_double_quote] = ACTIONS(2398), + [sym___r_single_quote] = ACTIONS(2398), }, - [981] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), + [986] = { + [sym_type_parameters] = STATE(4109), + [sym_argument_list] = STATE(1029), + [sym_or_block] = STATE(1030), [ts_builtin_sym_end] = ACTIONS(3337), [sym_identifier] = ACTIONS(3339), [anon_sym_LF] = ACTIONS(3339), [anon_sym_CR] = ACTIONS(3339), [anon_sym_CR_LF] = ACTIONS(3339), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(3231), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_as] = ACTIONS(3237), [anon_sym_LBRACE] = ACTIONS(3339), [anon_sym_const] = ACTIONS(3339), - [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_LPAREN] = ACTIONS(3241), [anon_sym___global] = ACTIONS(3339), [anon_sym_type] = ACTIONS(3339), - [anon_sym_PIPE] = ACTIONS(3315), + [anon_sym_PIPE] = ACTIONS(3317), [anon_sym_fn] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_STAR] = ACTIONS(3339), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_EQ_EQ] = ACTIONS(3319), - [anon_sym_BANG_EQ] = ACTIONS(3319), - [anon_sym_LT_EQ] = ACTIONS(3319), - [anon_sym_GT_EQ] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3243), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3319), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_PERCENT] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3321), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_LT_EQ] = ACTIONS(3321), + [anon_sym_GT_EQ] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3249), [anon_sym_struct] = ACTIONS(3339), [anon_sym_union] = ACTIONS(3339), [anon_sym_pub] = ACTIONS(3339), [anon_sym_mut] = ACTIONS(3339), [anon_sym_enum] = ACTIONS(3339), [anon_sym_interface] = ACTIONS(3339), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_DASH_DASH] = ACTIONS(3253), + [anon_sym_QMARK] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), [anon_sym_go] = ACTIONS(3339), [anon_sym_spawn] = ACTIONS(3339), [anon_sym_json_DOTdecode] = ACTIONS(3339), - [anon_sym_LBRACK2] = ACTIONS(3253), + [anon_sym_LBRACK2] = ACTIONS(3259), [anon_sym_TILDE] = ACTIONS(3339), - [anon_sym_CARET] = ACTIONS(3339), - [anon_sym_AMP] = ACTIONS(3339), + [anon_sym_CARET] = ACTIONS(3317), + [anon_sym_AMP] = ACTIONS(3319), [anon_sym_LT_DASH] = ACTIONS(3339), - [anon_sym_LT_LT] = ACTIONS(3317), - [anon_sym_GT_GT] = ACTIONS(3317), - [anon_sym_GT_GT_GT] = ACTIONS(3317), - [anon_sym_AMP_CARET] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_PIPE_PIPE] = ACTIONS(3323), - [anon_sym_or] = ACTIONS(3259), + [anon_sym_LT_LT] = ACTIONS(3319), + [anon_sym_GT_GT] = ACTIONS(3319), + [anon_sym_GT_GT_GT] = ACTIONS(3319), + [anon_sym_AMP_CARET] = ACTIONS(3319), + [anon_sym_AMP_AMP] = ACTIONS(3323), + [anon_sym_PIPE_PIPE] = ACTIONS(3333), + [anon_sym_or] = ACTIONS(3265), [sym_none] = ACTIONS(3339), [sym_true] = ACTIONS(3339), [sym_false] = ACTIONS(3339), [sym_nil] = ACTIONS(3339), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), [anon_sym_if] = ACTIONS(3339), [anon_sym_DOLLARif] = ACTIONS(3339), - [anon_sym_is] = ACTIONS(3261), - [anon_sym_BANGis] = ACTIONS(3263), + [anon_sym_is] = ACTIONS(3267), + [anon_sym_BANGis] = ACTIONS(3269), [anon_sym_in] = ACTIONS(3325), [anon_sym_BANGin] = ACTIONS(3327), [anon_sym_match] = ACTIONS(3339), @@ -138641,3604 +139368,4196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3339), [sym___r_single_quote] = ACTIONS(3339), }, - [982] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2106), - [sym_identifier] = ACTIONS(2108), - [anon_sym_LF] = ACTIONS(2108), - [anon_sym_CR] = ACTIONS(2108), - [anon_sym_CR_LF] = ACTIONS(2108), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2108), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_const] = ACTIONS(2108), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2108), - [anon_sym_type] = ACTIONS(2108), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(2108), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(2108), - [anon_sym_GT] = ACTIONS(2108), - [anon_sym_EQ_EQ] = ACTIONS(2108), - [anon_sym_BANG_EQ] = ACTIONS(2108), - [anon_sym_LT_EQ] = ACTIONS(2108), - [anon_sym_GT_EQ] = ACTIONS(2108), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2108), - [anon_sym_union] = ACTIONS(2108), - [anon_sym_pub] = ACTIONS(2108), - [anon_sym_mut] = ACTIONS(2108), - [anon_sym_enum] = ACTIONS(2108), - [anon_sym_interface] = ACTIONS(2108), - [anon_sym_PLUS_PLUS] = ACTIONS(2108), - [anon_sym_DASH_DASH] = ACTIONS(2108), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2108), - [anon_sym_spawn] = ACTIONS(2108), - [anon_sym_json_DOTdecode] = ACTIONS(2108), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2108), - [anon_sym_CARET] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_LT_DASH] = ACTIONS(2108), - [anon_sym_LT_LT] = ACTIONS(3317), - [anon_sym_GT_GT] = ACTIONS(3317), - [anon_sym_GT_GT_GT] = ACTIONS(3317), - [anon_sym_AMP_CARET] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(2108), - [anon_sym_PIPE_PIPE] = ACTIONS(2108), - [anon_sym_or] = ACTIONS(2108), - [sym_none] = ACTIONS(2108), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_nil] = ACTIONS(2108), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2108), - [anon_sym_DOLLARif] = ACTIONS(2108), - [anon_sym_is] = ACTIONS(2108), - [anon_sym_BANGis] = ACTIONS(2108), - [anon_sym_in] = ACTIONS(2108), - [anon_sym_BANGin] = ACTIONS(2108), - [anon_sym_match] = ACTIONS(2108), - [anon_sym_select] = ACTIONS(2108), - [anon_sym_lock] = ACTIONS(2108), - [anon_sym_rlock] = ACTIONS(2108), - [anon_sym_unsafe] = ACTIONS(2108), - [anon_sym_sql] = ACTIONS(2108), - [sym_int_literal] = ACTIONS(2108), - [sym_float_literal] = ACTIONS(2108), - [sym_rune_literal] = ACTIONS(2108), - [anon_sym_AT] = ACTIONS(2108), - [anon_sym_shared] = ACTIONS(2108), - [anon_sym_map_LBRACK] = ACTIONS(2108), - [anon_sym_chan] = ACTIONS(2108), - [anon_sym_thread] = ACTIONS(2108), - [anon_sym_atomic] = ACTIONS(2108), - [anon_sym_assert] = ACTIONS(2108), - [anon_sym_defer] = ACTIONS(2108), - [anon_sym_goto] = ACTIONS(2108), - [anon_sym_break] = ACTIONS(2108), - [anon_sym_continue] = ACTIONS(2108), - [anon_sym_return] = ACTIONS(2108), - [anon_sym_DOLLARfor] = ACTIONS(2108), - [anon_sym_for] = ACTIONS(2108), - [anon_sym_POUND] = ACTIONS(2108), - [anon_sym_asm] = ACTIONS(2108), - [anon_sym_AT_LBRACK] = ACTIONS(2108), - [sym___double_quote] = ACTIONS(2108), - [sym___single_quote] = ACTIONS(2108), - [sym___c_double_quote] = ACTIONS(2108), - [sym___c_single_quote] = ACTIONS(2108), - [sym___r_double_quote] = ACTIONS(2108), - [sym___r_single_quote] = ACTIONS(2108), - }, - [983] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_EQ_EQ] = ACTIONS(3319), - [anon_sym_BANG_EQ] = ACTIONS(3319), - [anon_sym_LT_EQ] = ACTIONS(3319), - [anon_sym_GT_EQ] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(3317), - [anon_sym_GT_GT] = ACTIONS(3317), - [anon_sym_GT_GT_GT] = ACTIONS(3317), - [anon_sym_AMP_CARET] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(3325), - [anon_sym_BANGin] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [anon_sym_assert] = ACTIONS(2076), - [anon_sym_defer] = ACTIONS(2076), - [anon_sym_goto] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_DOLLARfor] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_asm] = ACTIONS(2076), - [anon_sym_AT_LBRACK] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), - }, - [984] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2208), - [sym_identifier] = ACTIONS(2210), - [anon_sym_LF] = ACTIONS(2210), - [anon_sym_CR] = ACTIONS(2210), - [anon_sym_CR_LF] = ACTIONS(2210), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(2210), - [anon_sym_const] = ACTIONS(2210), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2210), - [anon_sym_type] = ACTIONS(2210), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(2210), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_EQ_EQ] = ACTIONS(3319), - [anon_sym_BANG_EQ] = ACTIONS(3319), - [anon_sym_LT_EQ] = ACTIONS(3319), - [anon_sym_GT_EQ] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2210), - [anon_sym_union] = ACTIONS(2210), - [anon_sym_pub] = ACTIONS(2210), - [anon_sym_mut] = ACTIONS(2210), - [anon_sym_enum] = ACTIONS(2210), - [anon_sym_interface] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2210), - [anon_sym_spawn] = ACTIONS(2210), - [anon_sym_json_DOTdecode] = ACTIONS(2210), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2210), - [anon_sym_CARET] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_LT_DASH] = ACTIONS(2210), - [anon_sym_LT_LT] = ACTIONS(3317), - [anon_sym_GT_GT] = ACTIONS(3317), - [anon_sym_GT_GT_GT] = ACTIONS(3317), - [anon_sym_AMP_CARET] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_PIPE_PIPE] = ACTIONS(3323), - [anon_sym_or] = ACTIONS(3259), - [sym_none] = ACTIONS(2210), - [sym_true] = ACTIONS(2210), - [sym_false] = ACTIONS(2210), - [sym_nil] = ACTIONS(2210), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2210), - [anon_sym_DOLLARif] = ACTIONS(2210), - [anon_sym_is] = ACTIONS(3261), - [anon_sym_BANGis] = ACTIONS(3263), - [anon_sym_in] = ACTIONS(3325), - [anon_sym_BANGin] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(2210), - [anon_sym_select] = ACTIONS(2210), - [anon_sym_lock] = ACTIONS(2210), - [anon_sym_rlock] = ACTIONS(2210), - [anon_sym_unsafe] = ACTIONS(2210), - [anon_sym_sql] = ACTIONS(2210), - [sym_int_literal] = ACTIONS(2210), - [sym_float_literal] = ACTIONS(2210), - [sym_rune_literal] = ACTIONS(2210), - [anon_sym_AT] = ACTIONS(2210), - [anon_sym_shared] = ACTIONS(2210), - [anon_sym_map_LBRACK] = ACTIONS(2210), - [anon_sym_chan] = ACTIONS(2210), - [anon_sym_thread] = ACTIONS(2210), - [anon_sym_atomic] = ACTIONS(2210), - [anon_sym_assert] = ACTIONS(2210), - [anon_sym_defer] = ACTIONS(2210), - [anon_sym_goto] = ACTIONS(2210), - [anon_sym_break] = ACTIONS(2210), - [anon_sym_continue] = ACTIONS(2210), - [anon_sym_return] = ACTIONS(2210), - [anon_sym_DOLLARfor] = ACTIONS(2210), - [anon_sym_for] = ACTIONS(2210), - [anon_sym_POUND] = ACTIONS(2210), - [anon_sym_asm] = ACTIONS(2210), - [anon_sym_AT_LBRACK] = ACTIONS(2210), - [sym___double_quote] = ACTIONS(2210), - [sym___single_quote] = ACTIONS(2210), - [sym___c_double_quote] = ACTIONS(2210), - [sym___c_single_quote] = ACTIONS(2210), - [sym___r_double_quote] = ACTIONS(2210), - [sym___r_single_quote] = ACTIONS(2210), - }, - [985] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2218), - [sym_identifier] = ACTIONS(2220), - [anon_sym_LF] = ACTIONS(2220), - [anon_sym_CR] = ACTIONS(2220), - [anon_sym_CR_LF] = ACTIONS(2220), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(2220), - [anon_sym_const] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2220), - [anon_sym_type] = ACTIONS(2220), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_EQ_EQ] = ACTIONS(3319), - [anon_sym_BANG_EQ] = ACTIONS(3319), - [anon_sym_LT_EQ] = ACTIONS(3319), - [anon_sym_GT_EQ] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2220), - [anon_sym_union] = ACTIONS(2220), - [anon_sym_pub] = ACTIONS(2220), - [anon_sym_mut] = ACTIONS(2220), - [anon_sym_enum] = ACTIONS(2220), - [anon_sym_interface] = ACTIONS(2220), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2220), - [anon_sym_spawn] = ACTIONS(2220), - [anon_sym_json_DOTdecode] = ACTIONS(2220), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2220), - [anon_sym_CARET] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_LT_DASH] = ACTIONS(2220), - [anon_sym_LT_LT] = ACTIONS(3317), - [anon_sym_GT_GT] = ACTIONS(3317), - [anon_sym_GT_GT_GT] = ACTIONS(3317), - [anon_sym_AMP_CARET] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_PIPE_PIPE] = ACTIONS(3323), - [anon_sym_or] = ACTIONS(3259), - [sym_none] = ACTIONS(2220), - [sym_true] = ACTIONS(2220), - [sym_false] = ACTIONS(2220), - [sym_nil] = ACTIONS(2220), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2220), - [anon_sym_DOLLARif] = ACTIONS(2220), - [anon_sym_is] = ACTIONS(3261), - [anon_sym_BANGis] = ACTIONS(3263), - [anon_sym_in] = ACTIONS(3325), - [anon_sym_BANGin] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(2220), - [anon_sym_select] = ACTIONS(2220), - [anon_sym_lock] = ACTIONS(2220), - [anon_sym_rlock] = ACTIONS(2220), - [anon_sym_unsafe] = ACTIONS(2220), - [anon_sym_sql] = ACTIONS(2220), - [sym_int_literal] = ACTIONS(2220), - [sym_float_literal] = ACTIONS(2220), - [sym_rune_literal] = ACTIONS(2220), - [anon_sym_AT] = ACTIONS(2220), - [anon_sym_shared] = ACTIONS(2220), - [anon_sym_map_LBRACK] = ACTIONS(2220), - [anon_sym_chan] = ACTIONS(2220), - [anon_sym_thread] = ACTIONS(2220), - [anon_sym_atomic] = ACTIONS(2220), - [anon_sym_assert] = ACTIONS(2220), - [anon_sym_defer] = ACTIONS(2220), - [anon_sym_goto] = ACTIONS(2220), - [anon_sym_break] = ACTIONS(2220), - [anon_sym_continue] = ACTIONS(2220), - [anon_sym_return] = ACTIONS(2220), - [anon_sym_DOLLARfor] = ACTIONS(2220), - [anon_sym_for] = ACTIONS(2220), - [anon_sym_POUND] = ACTIONS(2220), - [anon_sym_asm] = ACTIONS(2220), - [anon_sym_AT_LBRACK] = ACTIONS(2220), - [sym___double_quote] = ACTIONS(2220), - [sym___single_quote] = ACTIONS(2220), - [sym___c_double_quote] = ACTIONS(2220), - [sym___c_single_quote] = ACTIONS(2220), - [sym___r_double_quote] = ACTIONS(2220), - [sym___r_single_quote] = ACTIONS(2220), - }, - [986] = { - [sym_else_branch] = STATE(1025), - [ts_builtin_sym_end] = ACTIONS(2404), - [sym_identifier] = ACTIONS(2406), - [anon_sym_LF] = ACTIONS(2406), - [anon_sym_CR] = ACTIONS(2406), - [anon_sym_CR_LF] = ACTIONS(2406), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2406), - [anon_sym_as] = ACTIONS(2406), - [anon_sym_LBRACE] = ACTIONS(2406), - [anon_sym_COMMA] = ACTIONS(2406), - [anon_sym_const] = ACTIONS(2406), - [anon_sym_LPAREN] = ACTIONS(2406), - [anon_sym___global] = ACTIONS(2406), - [anon_sym_type] = ACTIONS(2406), - [anon_sym_PIPE] = ACTIONS(2406), - [anon_sym_fn] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2406), - [anon_sym_DASH] = ACTIONS(2406), - [anon_sym_STAR] = ACTIONS(2406), - [anon_sym_SLASH] = ACTIONS(2406), - [anon_sym_PERCENT] = ACTIONS(2406), - [anon_sym_LT] = ACTIONS(2406), - [anon_sym_GT] = ACTIONS(2406), - [anon_sym_EQ_EQ] = ACTIONS(2406), - [anon_sym_BANG_EQ] = ACTIONS(2406), - [anon_sym_LT_EQ] = ACTIONS(2406), - [anon_sym_GT_EQ] = ACTIONS(2406), - [anon_sym_LBRACK] = ACTIONS(2404), - [anon_sym_struct] = ACTIONS(2406), - [anon_sym_union] = ACTIONS(2406), - [anon_sym_pub] = ACTIONS(2406), - [anon_sym_mut] = ACTIONS(2406), - [anon_sym_enum] = ACTIONS(2406), - [anon_sym_interface] = ACTIONS(2406), - [anon_sym_PLUS_PLUS] = ACTIONS(2406), - [anon_sym_DASH_DASH] = ACTIONS(2406), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_BANG] = ACTIONS(2406), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2406), - [anon_sym_json_DOTdecode] = ACTIONS(2406), - [anon_sym_LBRACK2] = ACTIONS(2406), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_CARET] = ACTIONS(2406), - [anon_sym_AMP] = ACTIONS(2406), - [anon_sym_LT_DASH] = ACTIONS(2406), - [anon_sym_LT_LT] = ACTIONS(2406), - [anon_sym_GT_GT] = ACTIONS(2406), - [anon_sym_GT_GT_GT] = ACTIONS(2406), - [anon_sym_AMP_CARET] = ACTIONS(2406), - [anon_sym_AMP_AMP] = ACTIONS(2406), - [anon_sym_PIPE_PIPE] = ACTIONS(2406), - [anon_sym_or] = ACTIONS(2406), - [sym_none] = ACTIONS(2406), - [sym_true] = ACTIONS(2406), - [sym_false] = ACTIONS(2406), - [sym_nil] = ACTIONS(2406), - [anon_sym_QMARK_DOT] = ACTIONS(2406), - [anon_sym_POUND_LBRACK] = ACTIONS(2406), - [anon_sym_if] = ACTIONS(2406), - [anon_sym_else] = ACTIONS(3341), - [anon_sym_DOLLARif] = ACTIONS(2406), - [anon_sym_is] = ACTIONS(2406), - [anon_sym_BANGis] = ACTIONS(2406), - [anon_sym_in] = ACTIONS(2406), - [anon_sym_BANGin] = ACTIONS(2406), - [anon_sym_match] = ACTIONS(2406), - [anon_sym_select] = ACTIONS(2406), - [anon_sym_lock] = ACTIONS(2406), - [anon_sym_rlock] = ACTIONS(2406), - [anon_sym_unsafe] = ACTIONS(2406), - [anon_sym_sql] = ACTIONS(2406), - [sym_int_literal] = ACTIONS(2406), - [sym_float_literal] = ACTIONS(2406), - [sym_rune_literal] = ACTIONS(2406), - [anon_sym_AT] = ACTIONS(2406), - [anon_sym_shared] = ACTIONS(2406), - [anon_sym_map_LBRACK] = ACTIONS(2406), - [anon_sym_chan] = ACTIONS(2406), - [anon_sym_thread] = ACTIONS(2406), - [anon_sym_atomic] = ACTIONS(2406), - [anon_sym_assert] = ACTIONS(2406), - [anon_sym_defer] = ACTIONS(2406), - [anon_sym_goto] = ACTIONS(2406), - [anon_sym_break] = ACTIONS(2406), - [anon_sym_continue] = ACTIONS(2406), - [anon_sym_return] = ACTIONS(2406), - [anon_sym_DOLLARfor] = ACTIONS(2406), - [anon_sym_for] = ACTIONS(2406), - [anon_sym_POUND] = ACTIONS(2406), - [anon_sym_asm] = ACTIONS(2406), - [anon_sym_AT_LBRACK] = ACTIONS(2406), - [sym___double_quote] = ACTIONS(2406), - [sym___single_quote] = ACTIONS(2406), - [sym___c_double_quote] = ACTIONS(2406), - [sym___c_single_quote] = ACTIONS(2406), - [sym___r_double_quote] = ACTIONS(2406), - [sym___r_single_quote] = ACTIONS(2406), - }, [987] = { - [sym_else_branch] = STATE(1026), - [ts_builtin_sym_end] = ACTIONS(2398), - [sym_identifier] = ACTIONS(2400), - [anon_sym_LF] = ACTIONS(2400), - [anon_sym_CR] = ACTIONS(2400), - [anon_sym_CR_LF] = ACTIONS(2400), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2400), - [anon_sym_as] = ACTIONS(2400), - [anon_sym_LBRACE] = ACTIONS(2400), - [anon_sym_COMMA] = ACTIONS(2400), - [anon_sym_const] = ACTIONS(2400), - [anon_sym_LPAREN] = ACTIONS(2400), - [anon_sym___global] = ACTIONS(2400), - [anon_sym_type] = ACTIONS(2400), - [anon_sym_PIPE] = ACTIONS(2400), - [anon_sym_fn] = ACTIONS(2400), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2400), - [anon_sym_SLASH] = ACTIONS(2400), - [anon_sym_PERCENT] = ACTIONS(2400), - [anon_sym_LT] = ACTIONS(2400), - [anon_sym_GT] = ACTIONS(2400), - [anon_sym_EQ_EQ] = ACTIONS(2400), - [anon_sym_BANG_EQ] = ACTIONS(2400), - [anon_sym_LT_EQ] = ACTIONS(2400), - [anon_sym_GT_EQ] = ACTIONS(2400), - [anon_sym_LBRACK] = ACTIONS(2398), - [anon_sym_struct] = ACTIONS(2400), - [anon_sym_union] = ACTIONS(2400), - [anon_sym_pub] = ACTIONS(2400), - [anon_sym_mut] = ACTIONS(2400), - [anon_sym_enum] = ACTIONS(2400), - [anon_sym_interface] = ACTIONS(2400), - [anon_sym_PLUS_PLUS] = ACTIONS(2400), - [anon_sym_DASH_DASH] = ACTIONS(2400), - [anon_sym_QMARK] = ACTIONS(2400), - [anon_sym_BANG] = ACTIONS(2400), - [anon_sym_go] = ACTIONS(2400), - [anon_sym_spawn] = ACTIONS(2400), - [anon_sym_json_DOTdecode] = ACTIONS(2400), - [anon_sym_LBRACK2] = ACTIONS(2400), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2400), - [anon_sym_LT_DASH] = ACTIONS(2400), - [anon_sym_LT_LT] = ACTIONS(2400), - [anon_sym_GT_GT] = ACTIONS(2400), - [anon_sym_GT_GT_GT] = ACTIONS(2400), - [anon_sym_AMP_CARET] = ACTIONS(2400), - [anon_sym_AMP_AMP] = ACTIONS(2400), - [anon_sym_PIPE_PIPE] = ACTIONS(2400), - [anon_sym_or] = ACTIONS(2400), - [sym_none] = ACTIONS(2400), - [sym_true] = ACTIONS(2400), - [sym_false] = ACTIONS(2400), - [sym_nil] = ACTIONS(2400), - [anon_sym_QMARK_DOT] = ACTIONS(2400), - [anon_sym_POUND_LBRACK] = ACTIONS(2400), - [anon_sym_if] = ACTIONS(2400), - [anon_sym_else] = ACTIONS(3341), - [anon_sym_DOLLARif] = ACTIONS(2400), - [anon_sym_is] = ACTIONS(2400), - [anon_sym_BANGis] = ACTIONS(2400), - [anon_sym_in] = ACTIONS(2400), - [anon_sym_BANGin] = ACTIONS(2400), - [anon_sym_match] = ACTIONS(2400), - [anon_sym_select] = ACTIONS(2400), - [anon_sym_lock] = ACTIONS(2400), - [anon_sym_rlock] = ACTIONS(2400), - [anon_sym_unsafe] = ACTIONS(2400), - [anon_sym_sql] = ACTIONS(2400), - [sym_int_literal] = ACTIONS(2400), - [sym_float_literal] = ACTIONS(2400), - [sym_rune_literal] = ACTIONS(2400), - [anon_sym_AT] = ACTIONS(2400), - [anon_sym_shared] = ACTIONS(2400), - [anon_sym_map_LBRACK] = ACTIONS(2400), - [anon_sym_chan] = ACTIONS(2400), - [anon_sym_thread] = ACTIONS(2400), - [anon_sym_atomic] = ACTIONS(2400), - [anon_sym_assert] = ACTIONS(2400), - [anon_sym_defer] = ACTIONS(2400), - [anon_sym_goto] = ACTIONS(2400), - [anon_sym_break] = ACTIONS(2400), - [anon_sym_continue] = ACTIONS(2400), - [anon_sym_return] = ACTIONS(2400), - [anon_sym_DOLLARfor] = ACTIONS(2400), - [anon_sym_for] = ACTIONS(2400), - [anon_sym_POUND] = ACTIONS(2400), - [anon_sym_asm] = ACTIONS(2400), - [anon_sym_AT_LBRACK] = ACTIONS(2400), - [sym___double_quote] = ACTIONS(2400), - [sym___single_quote] = ACTIONS(2400), - [sym___c_double_quote] = ACTIONS(2400), - [sym___c_single_quote] = ACTIONS(2400), - [sym___r_double_quote] = ACTIONS(2400), - [sym___r_single_quote] = ACTIONS(2400), + [sym_type_parameters] = STATE(4109), + [sym_argument_list] = STATE(1029), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(2154), + [sym_identifier] = ACTIONS(2156), + [anon_sym_LF] = ACTIONS(2156), + [anon_sym_CR] = ACTIONS(2156), + [anon_sym_CR_LF] = ACTIONS(2156), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_as] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(2156), + [anon_sym_type] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(3317), + [anon_sym_fn] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3319), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_PERCENT] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(2156), + [anon_sym_GT] = ACTIONS(2156), + [anon_sym_EQ_EQ] = ACTIONS(2156), + [anon_sym_BANG_EQ] = ACTIONS(2156), + [anon_sym_LT_EQ] = ACTIONS(2156), + [anon_sym_GT_EQ] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_struct] = ACTIONS(2156), + [anon_sym_union] = ACTIONS(2156), + [anon_sym_pub] = ACTIONS(2156), + [anon_sym_mut] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [anon_sym_interface] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_QMARK] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(2156), + [anon_sym_spawn] = ACTIONS(2156), + [anon_sym_json_DOTdecode] = ACTIONS(2156), + [anon_sym_LBRACK2] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(2156), + [anon_sym_CARET] = ACTIONS(3317), + [anon_sym_AMP] = ACTIONS(3319), + [anon_sym_LT_DASH] = ACTIONS(2156), + [anon_sym_LT_LT] = ACTIONS(3319), + [anon_sym_GT_GT] = ACTIONS(3319), + [anon_sym_GT_GT_GT] = ACTIONS(3319), + [anon_sym_AMP_CARET] = ACTIONS(3319), + [anon_sym_AMP_AMP] = ACTIONS(2156), + [anon_sym_PIPE_PIPE] = ACTIONS(2156), + [anon_sym_or] = ACTIONS(2156), + [sym_none] = ACTIONS(2156), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [sym_nil] = ACTIONS(2156), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_DOLLARif] = ACTIONS(2156), + [anon_sym_is] = ACTIONS(2156), + [anon_sym_BANGis] = ACTIONS(2156), + [anon_sym_in] = ACTIONS(2156), + [anon_sym_BANGin] = ACTIONS(2156), + [anon_sym_match] = ACTIONS(2156), + [anon_sym_select] = ACTIONS(2156), + [anon_sym_lock] = ACTIONS(2156), + [anon_sym_rlock] = ACTIONS(2156), + [anon_sym_unsafe] = ACTIONS(2156), + [anon_sym_sql] = ACTIONS(2156), + [sym_int_literal] = ACTIONS(2156), + [sym_float_literal] = ACTIONS(2156), + [sym_rune_literal] = ACTIONS(2156), + [anon_sym_AT] = ACTIONS(2156), + [anon_sym_shared] = ACTIONS(2156), + [anon_sym_map_LBRACK] = ACTIONS(2156), + [anon_sym_chan] = ACTIONS(2156), + [anon_sym_thread] = ACTIONS(2156), + [anon_sym_atomic] = ACTIONS(2156), + [anon_sym_assert] = ACTIONS(2156), + [anon_sym_defer] = ACTIONS(2156), + [anon_sym_goto] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_DOLLARfor] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_POUND] = ACTIONS(2156), + [anon_sym_asm] = ACTIONS(2156), + [anon_sym_AT_LBRACK] = ACTIONS(2156), + [sym___double_quote] = ACTIONS(2156), + [sym___single_quote] = ACTIONS(2156), + [sym___c_double_quote] = ACTIONS(2156), + [sym___c_single_quote] = ACTIONS(2156), + [sym___r_double_quote] = ACTIONS(2156), + [sym___r_single_quote] = ACTIONS(2156), }, [988] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_EQ_EQ] = ACTIONS(3319), - [anon_sym_BANG_EQ] = ACTIONS(3319), - [anon_sym_LT_EQ] = ACTIONS(3319), - [anon_sym_GT_EQ] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(3317), - [anon_sym_GT_GT] = ACTIONS(3317), - [anon_sym_GT_GT_GT] = ACTIONS(3317), - [anon_sym_AMP_CARET] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), + [sym_type_parameters] = STATE(4109), + [sym_argument_list] = STATE(1029), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(3341), + [sym_identifier] = ACTIONS(3343), + [anon_sym_LF] = ACTIONS(3343), + [anon_sym_CR] = ACTIONS(3343), + [anon_sym_CR_LF] = ACTIONS(3343), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_as] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3343), + [anon_sym_const] = ACTIONS(3343), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(3343), + [anon_sym_type] = ACTIONS(3343), + [anon_sym_PIPE] = ACTIONS(3317), + [anon_sym_fn] = ACTIONS(3343), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3319), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_PERCENT] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3321), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_LT_EQ] = ACTIONS(3321), + [anon_sym_GT_EQ] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_struct] = ACTIONS(3343), + [anon_sym_union] = ACTIONS(3343), + [anon_sym_pub] = ACTIONS(3343), + [anon_sym_mut] = ACTIONS(3343), + [anon_sym_enum] = ACTIONS(3343), + [anon_sym_interface] = ACTIONS(3343), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_DASH_DASH] = ACTIONS(3253), + [anon_sym_QMARK] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(3343), + [anon_sym_spawn] = ACTIONS(3343), + [anon_sym_json_DOTdecode] = ACTIONS(3343), + [anon_sym_LBRACK2] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(3343), + [anon_sym_CARET] = ACTIONS(3317), + [anon_sym_AMP] = ACTIONS(3319), + [anon_sym_LT_DASH] = ACTIONS(3343), + [anon_sym_LT_LT] = ACTIONS(3319), + [anon_sym_GT_GT] = ACTIONS(3319), + [anon_sym_GT_GT_GT] = ACTIONS(3319), + [anon_sym_AMP_CARET] = ACTIONS(3319), + [anon_sym_AMP_AMP] = ACTIONS(3323), + [anon_sym_PIPE_PIPE] = ACTIONS(3333), + [anon_sym_or] = ACTIONS(3265), + [sym_none] = ACTIONS(3343), + [sym_true] = ACTIONS(3343), + [sym_false] = ACTIONS(3343), + [sym_nil] = ACTIONS(3343), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(3343), + [anon_sym_DOLLARif] = ACTIONS(3343), + [anon_sym_is] = ACTIONS(3267), + [anon_sym_BANGis] = ACTIONS(3269), [anon_sym_in] = ACTIONS(3325), [anon_sym_BANGin] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [anon_sym_assert] = ACTIONS(2076), - [anon_sym_defer] = ACTIONS(2076), - [anon_sym_goto] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_DOLLARfor] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_asm] = ACTIONS(2076), - [anon_sym_AT_LBRACK] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), + [anon_sym_match] = ACTIONS(3343), + [anon_sym_select] = ACTIONS(3343), + [anon_sym_lock] = ACTIONS(3343), + [anon_sym_rlock] = ACTIONS(3343), + [anon_sym_unsafe] = ACTIONS(3343), + [anon_sym_sql] = ACTIONS(3343), + [sym_int_literal] = ACTIONS(3343), + [sym_float_literal] = ACTIONS(3343), + [sym_rune_literal] = ACTIONS(3343), + [anon_sym_AT] = ACTIONS(3343), + [anon_sym_shared] = ACTIONS(3343), + [anon_sym_map_LBRACK] = ACTIONS(3343), + [anon_sym_chan] = ACTIONS(3343), + [anon_sym_thread] = ACTIONS(3343), + [anon_sym_atomic] = ACTIONS(3343), + [anon_sym_assert] = ACTIONS(3343), + [anon_sym_defer] = ACTIONS(3343), + [anon_sym_goto] = ACTIONS(3343), + [anon_sym_break] = ACTIONS(3343), + [anon_sym_continue] = ACTIONS(3343), + [anon_sym_return] = ACTIONS(3343), + [anon_sym_DOLLARfor] = ACTIONS(3343), + [anon_sym_for] = ACTIONS(3343), + [anon_sym_POUND] = ACTIONS(3343), + [anon_sym_asm] = ACTIONS(3343), + [anon_sym_AT_LBRACK] = ACTIONS(3343), + [sym___double_quote] = ACTIONS(3343), + [sym___single_quote] = ACTIONS(3343), + [sym___c_double_quote] = ACTIONS(3343), + [sym___c_single_quote] = ACTIONS(3343), + [sym___r_double_quote] = ACTIONS(3343), + [sym___r_single_quote] = ACTIONS(3343), }, [989] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(3317), - [anon_sym_GT_GT] = ACTIONS(3317), - [anon_sym_GT_GT_GT] = ACTIONS(3317), - [anon_sym_AMP_CARET] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [anon_sym_assert] = ACTIONS(2076), - [anon_sym_defer] = ACTIONS(2076), - [anon_sym_goto] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_DOLLARfor] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_asm] = ACTIONS(2076), - [anon_sym_AT_LBRACK] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), + [sym_type_parameters] = STATE(4109), + [sym_argument_list] = STATE(1029), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(2160), + [sym_identifier] = ACTIONS(2162), + [anon_sym_LF] = ACTIONS(2162), + [anon_sym_CR] = ACTIONS(2162), + [anon_sym_CR_LF] = ACTIONS(2162), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_as] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_const] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(2162), + [anon_sym_type] = ACTIONS(2162), + [anon_sym_PIPE] = ACTIONS(3317), + [anon_sym_fn] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3319), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_PERCENT] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3321), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_LT_EQ] = ACTIONS(3321), + [anon_sym_GT_EQ] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_union] = ACTIONS(2162), + [anon_sym_pub] = ACTIONS(2162), + [anon_sym_mut] = ACTIONS(2162), + [anon_sym_enum] = ACTIONS(2162), + [anon_sym_interface] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2162), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_QMARK] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(2162), + [anon_sym_spawn] = ACTIONS(2162), + [anon_sym_json_DOTdecode] = ACTIONS(2162), + [anon_sym_LBRACK2] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(3317), + [anon_sym_AMP] = ACTIONS(3319), + [anon_sym_LT_DASH] = ACTIONS(2162), + [anon_sym_LT_LT] = ACTIONS(3319), + [anon_sym_GT_GT] = ACTIONS(3319), + [anon_sym_GT_GT_GT] = ACTIONS(3319), + [anon_sym_AMP_CARET] = ACTIONS(3319), + [anon_sym_AMP_AMP] = ACTIONS(2162), + [anon_sym_PIPE_PIPE] = ACTIONS(2162), + [anon_sym_or] = ACTIONS(2162), + [sym_none] = ACTIONS(2162), + [sym_true] = ACTIONS(2162), + [sym_false] = ACTIONS(2162), + [sym_nil] = ACTIONS(2162), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_DOLLARif] = ACTIONS(2162), + [anon_sym_is] = ACTIONS(2162), + [anon_sym_BANGis] = ACTIONS(2162), + [anon_sym_in] = ACTIONS(3325), + [anon_sym_BANGin] = ACTIONS(3327), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_select] = ACTIONS(2162), + [anon_sym_lock] = ACTIONS(2162), + [anon_sym_rlock] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_sql] = ACTIONS(2162), + [sym_int_literal] = ACTIONS(2162), + [sym_float_literal] = ACTIONS(2162), + [sym_rune_literal] = ACTIONS(2162), + [anon_sym_AT] = ACTIONS(2162), + [anon_sym_shared] = ACTIONS(2162), + [anon_sym_map_LBRACK] = ACTIONS(2162), + [anon_sym_chan] = ACTIONS(2162), + [anon_sym_thread] = ACTIONS(2162), + [anon_sym_atomic] = ACTIONS(2162), + [anon_sym_assert] = ACTIONS(2162), + [anon_sym_defer] = ACTIONS(2162), + [anon_sym_goto] = ACTIONS(2162), + [anon_sym_break] = ACTIONS(2162), + [anon_sym_continue] = ACTIONS(2162), + [anon_sym_return] = ACTIONS(2162), + [anon_sym_DOLLARfor] = ACTIONS(2162), + [anon_sym_for] = ACTIONS(2162), + [anon_sym_POUND] = ACTIONS(2162), + [anon_sym_asm] = ACTIONS(2162), + [anon_sym_AT_LBRACK] = ACTIONS(2162), + [sym___double_quote] = ACTIONS(2162), + [sym___single_quote] = ACTIONS(2162), + [sym___c_double_quote] = ACTIONS(2162), + [sym___c_single_quote] = ACTIONS(2162), + [sym___r_double_quote] = ACTIONS(2162), + [sym___r_single_quote] = ACTIONS(2162), }, [990] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2076), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(3317), - [anon_sym_GT_GT] = ACTIONS(3317), - [anon_sym_GT_GT_GT] = ACTIONS(3317), - [anon_sym_AMP_CARET] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [anon_sym_assert] = ACTIONS(2076), - [anon_sym_defer] = ACTIONS(2076), - [anon_sym_goto] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_DOLLARfor] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_asm] = ACTIONS(2076), - [anon_sym_AT_LBRACK] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), + [sym_type_parameters] = STATE(4109), + [sym_argument_list] = STATE(1029), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(2160), + [sym_identifier] = ACTIONS(2162), + [anon_sym_LF] = ACTIONS(2162), + [anon_sym_CR] = ACTIONS(2162), + [anon_sym_CR_LF] = ACTIONS(2162), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_as] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_const] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(2162), + [anon_sym_type] = ACTIONS(2162), + [anon_sym_PIPE] = ACTIONS(3317), + [anon_sym_fn] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3319), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_PERCENT] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(2162), + [anon_sym_GT] = ACTIONS(2162), + [anon_sym_EQ_EQ] = ACTIONS(2162), + [anon_sym_BANG_EQ] = ACTIONS(2162), + [anon_sym_LT_EQ] = ACTIONS(2162), + [anon_sym_GT_EQ] = ACTIONS(2162), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_union] = ACTIONS(2162), + [anon_sym_pub] = ACTIONS(2162), + [anon_sym_mut] = ACTIONS(2162), + [anon_sym_enum] = ACTIONS(2162), + [anon_sym_interface] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2162), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_QMARK] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(2162), + [anon_sym_spawn] = ACTIONS(2162), + [anon_sym_json_DOTdecode] = ACTIONS(2162), + [anon_sym_LBRACK2] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(3317), + [anon_sym_AMP] = ACTIONS(3319), + [anon_sym_LT_DASH] = ACTIONS(2162), + [anon_sym_LT_LT] = ACTIONS(3319), + [anon_sym_GT_GT] = ACTIONS(3319), + [anon_sym_GT_GT_GT] = ACTIONS(3319), + [anon_sym_AMP_CARET] = ACTIONS(3319), + [anon_sym_AMP_AMP] = ACTIONS(2162), + [anon_sym_PIPE_PIPE] = ACTIONS(2162), + [anon_sym_or] = ACTIONS(2162), + [sym_none] = ACTIONS(2162), + [sym_true] = ACTIONS(2162), + [sym_false] = ACTIONS(2162), + [sym_nil] = ACTIONS(2162), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_DOLLARif] = ACTIONS(2162), + [anon_sym_is] = ACTIONS(2162), + [anon_sym_BANGis] = ACTIONS(2162), + [anon_sym_in] = ACTIONS(2162), + [anon_sym_BANGin] = ACTIONS(2162), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_select] = ACTIONS(2162), + [anon_sym_lock] = ACTIONS(2162), + [anon_sym_rlock] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_sql] = ACTIONS(2162), + [sym_int_literal] = ACTIONS(2162), + [sym_float_literal] = ACTIONS(2162), + [sym_rune_literal] = ACTIONS(2162), + [anon_sym_AT] = ACTIONS(2162), + [anon_sym_shared] = ACTIONS(2162), + [anon_sym_map_LBRACK] = ACTIONS(2162), + [anon_sym_chan] = ACTIONS(2162), + [anon_sym_thread] = ACTIONS(2162), + [anon_sym_atomic] = ACTIONS(2162), + [anon_sym_assert] = ACTIONS(2162), + [anon_sym_defer] = ACTIONS(2162), + [anon_sym_goto] = ACTIONS(2162), + [anon_sym_break] = ACTIONS(2162), + [anon_sym_continue] = ACTIONS(2162), + [anon_sym_return] = ACTIONS(2162), + [anon_sym_DOLLARfor] = ACTIONS(2162), + [anon_sym_for] = ACTIONS(2162), + [anon_sym_POUND] = ACTIONS(2162), + [anon_sym_asm] = ACTIONS(2162), + [anon_sym_AT_LBRACK] = ACTIONS(2162), + [sym___double_quote] = ACTIONS(2162), + [sym___single_quote] = ACTIONS(2162), + [sym___c_double_quote] = ACTIONS(2162), + [sym___c_single_quote] = ACTIONS(2162), + [sym___r_double_quote] = ACTIONS(2162), + [sym___r_single_quote] = ACTIONS(2162), }, [991] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2110), - [sym_identifier] = ACTIONS(2112), - [anon_sym_LF] = ACTIONS(2112), - [anon_sym_CR] = ACTIONS(2112), - [anon_sym_CR_LF] = ACTIONS(2112), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2112), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_const] = ACTIONS(2112), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2112), - [anon_sym_type] = ACTIONS(2112), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(2112), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(2112), - [anon_sym_GT] = ACTIONS(2112), - [anon_sym_EQ_EQ] = ACTIONS(2112), - [anon_sym_BANG_EQ] = ACTIONS(2112), - [anon_sym_LT_EQ] = ACTIONS(2112), - [anon_sym_GT_EQ] = ACTIONS(2112), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2112), - [anon_sym_union] = ACTIONS(2112), - [anon_sym_pub] = ACTIONS(2112), - [anon_sym_mut] = ACTIONS(2112), - [anon_sym_enum] = ACTIONS(2112), - [anon_sym_interface] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2112), - [anon_sym_spawn] = ACTIONS(2112), - [anon_sym_json_DOTdecode] = ACTIONS(2112), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2112), - [anon_sym_CARET] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_LT_DASH] = ACTIONS(2112), - [anon_sym_LT_LT] = ACTIONS(3317), - [anon_sym_GT_GT] = ACTIONS(3317), - [anon_sym_GT_GT_GT] = ACTIONS(3317), - [anon_sym_AMP_CARET] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(2112), - [anon_sym_PIPE_PIPE] = ACTIONS(2112), - [anon_sym_or] = ACTIONS(2112), - [sym_none] = ACTIONS(2112), - [sym_true] = ACTIONS(2112), - [sym_false] = ACTIONS(2112), - [sym_nil] = ACTIONS(2112), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2112), - [anon_sym_DOLLARif] = ACTIONS(2112), - [anon_sym_is] = ACTIONS(2112), - [anon_sym_BANGis] = ACTIONS(2112), - [anon_sym_in] = ACTIONS(2112), - [anon_sym_BANGin] = ACTIONS(2112), - [anon_sym_match] = ACTIONS(2112), - [anon_sym_select] = ACTIONS(2112), - [anon_sym_lock] = ACTIONS(2112), - [anon_sym_rlock] = ACTIONS(2112), - [anon_sym_unsafe] = ACTIONS(2112), - [anon_sym_sql] = ACTIONS(2112), - [sym_int_literal] = ACTIONS(2112), - [sym_float_literal] = ACTIONS(2112), - [sym_rune_literal] = ACTIONS(2112), - [anon_sym_AT] = ACTIONS(2112), - [anon_sym_shared] = ACTIONS(2112), - [anon_sym_map_LBRACK] = ACTIONS(2112), - [anon_sym_chan] = ACTIONS(2112), - [anon_sym_thread] = ACTIONS(2112), - [anon_sym_atomic] = ACTIONS(2112), - [anon_sym_assert] = ACTIONS(2112), - [anon_sym_defer] = ACTIONS(2112), - [anon_sym_goto] = ACTIONS(2112), - [anon_sym_break] = ACTIONS(2112), - [anon_sym_continue] = ACTIONS(2112), - [anon_sym_return] = ACTIONS(2112), - [anon_sym_DOLLARfor] = ACTIONS(2112), - [anon_sym_for] = ACTIONS(2112), - [anon_sym_POUND] = ACTIONS(2112), - [anon_sym_asm] = ACTIONS(2112), - [anon_sym_AT_LBRACK] = ACTIONS(2112), - [sym___double_quote] = ACTIONS(2112), - [sym___single_quote] = ACTIONS(2112), - [sym___c_double_quote] = ACTIONS(2112), - [sym___c_single_quote] = ACTIONS(2112), - [sym___r_double_quote] = ACTIONS(2112), - [sym___r_single_quote] = ACTIONS(2112), + [sym_type_parameters] = STATE(4109), + [sym_argument_list] = STATE(1029), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(2160), + [sym_identifier] = ACTIONS(2162), + [anon_sym_LF] = ACTIONS(2162), + [anon_sym_CR] = ACTIONS(2162), + [anon_sym_CR_LF] = ACTIONS(2162), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_as] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_const] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(2162), + [anon_sym_type] = ACTIONS(2162), + [anon_sym_PIPE] = ACTIONS(2162), + [anon_sym_fn] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(2162), + [anon_sym_DASH] = ACTIONS(2162), + [anon_sym_STAR] = ACTIONS(3319), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_PERCENT] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(2162), + [anon_sym_GT] = ACTIONS(2162), + [anon_sym_EQ_EQ] = ACTIONS(2162), + [anon_sym_BANG_EQ] = ACTIONS(2162), + [anon_sym_LT_EQ] = ACTIONS(2162), + [anon_sym_GT_EQ] = ACTIONS(2162), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_union] = ACTIONS(2162), + [anon_sym_pub] = ACTIONS(2162), + [anon_sym_mut] = ACTIONS(2162), + [anon_sym_enum] = ACTIONS(2162), + [anon_sym_interface] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2162), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_QMARK] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(2162), + [anon_sym_spawn] = ACTIONS(2162), + [anon_sym_json_DOTdecode] = ACTIONS(2162), + [anon_sym_LBRACK2] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(2162), + [anon_sym_AMP] = ACTIONS(3319), + [anon_sym_LT_DASH] = ACTIONS(2162), + [anon_sym_LT_LT] = ACTIONS(3319), + [anon_sym_GT_GT] = ACTIONS(3319), + [anon_sym_GT_GT_GT] = ACTIONS(3319), + [anon_sym_AMP_CARET] = ACTIONS(3319), + [anon_sym_AMP_AMP] = ACTIONS(2162), + [anon_sym_PIPE_PIPE] = ACTIONS(2162), + [anon_sym_or] = ACTIONS(2162), + [sym_none] = ACTIONS(2162), + [sym_true] = ACTIONS(2162), + [sym_false] = ACTIONS(2162), + [sym_nil] = ACTIONS(2162), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_DOLLARif] = ACTIONS(2162), + [anon_sym_is] = ACTIONS(2162), + [anon_sym_BANGis] = ACTIONS(2162), + [anon_sym_in] = ACTIONS(2162), + [anon_sym_BANGin] = ACTIONS(2162), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_select] = ACTIONS(2162), + [anon_sym_lock] = ACTIONS(2162), + [anon_sym_rlock] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_sql] = ACTIONS(2162), + [sym_int_literal] = ACTIONS(2162), + [sym_float_literal] = ACTIONS(2162), + [sym_rune_literal] = ACTIONS(2162), + [anon_sym_AT] = ACTIONS(2162), + [anon_sym_shared] = ACTIONS(2162), + [anon_sym_map_LBRACK] = ACTIONS(2162), + [anon_sym_chan] = ACTIONS(2162), + [anon_sym_thread] = ACTIONS(2162), + [anon_sym_atomic] = ACTIONS(2162), + [anon_sym_assert] = ACTIONS(2162), + [anon_sym_defer] = ACTIONS(2162), + [anon_sym_goto] = ACTIONS(2162), + [anon_sym_break] = ACTIONS(2162), + [anon_sym_continue] = ACTIONS(2162), + [anon_sym_return] = ACTIONS(2162), + [anon_sym_DOLLARfor] = ACTIONS(2162), + [anon_sym_for] = ACTIONS(2162), + [anon_sym_POUND] = ACTIONS(2162), + [anon_sym_asm] = ACTIONS(2162), + [anon_sym_AT_LBRACK] = ACTIONS(2162), + [sym___double_quote] = ACTIONS(2162), + [sym___single_quote] = ACTIONS(2162), + [sym___c_double_quote] = ACTIONS(2162), + [sym___c_single_quote] = ACTIONS(2162), + [sym___r_double_quote] = ACTIONS(2162), + [sym___r_single_quote] = ACTIONS(2162), }, [992] = { - [ts_builtin_sym_end] = ACTIONS(2698), - [sym_identifier] = ACTIONS(2700), - [anon_sym_LF] = ACTIONS(2700), - [anon_sym_CR] = ACTIONS(2700), - [anon_sym_CR_LF] = ACTIONS(2700), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_COMMA] = ACTIONS(2700), - [anon_sym_const] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym___global] = ACTIONS(2700), - [anon_sym_type] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_union] = ACTIONS(2700), - [anon_sym_pub] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_enum] = ACTIONS(2700), - [anon_sym_interface] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2700), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2700), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2700), - [anon_sym_AMP_CARET] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2700), - [anon_sym_POUND_LBRACK] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_DOLLARelse] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2700), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2700), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), - [sym_rune_literal] = ACTIONS(2700), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2700), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [anon_sym_assert] = ACTIONS(2700), - [anon_sym_defer] = ACTIONS(2700), - [anon_sym_goto] = ACTIONS(2700), - [anon_sym_break] = ACTIONS(2700), - [anon_sym_continue] = ACTIONS(2700), - [anon_sym_return] = ACTIONS(2700), - [anon_sym_DOLLARfor] = ACTIONS(2700), - [anon_sym_for] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(2700), - [anon_sym_asm] = ACTIONS(2700), - [anon_sym_AT_LBRACK] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2700), - [sym___single_quote] = ACTIONS(2700), - [sym___c_double_quote] = ACTIONS(2700), - [sym___c_single_quote] = ACTIONS(2700), - [sym___r_double_quote] = ACTIONS(2700), - [sym___r_single_quote] = ACTIONS(2700), + [sym_else_branch] = STATE(1058), + [ts_builtin_sym_end] = ACTIONS(2390), + [sym_identifier] = ACTIONS(2392), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_CR] = ACTIONS(2392), + [anon_sym_CR_LF] = ACTIONS(2392), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2392), + [anon_sym_as] = ACTIONS(2392), + [anon_sym_LBRACE] = ACTIONS(2392), + [anon_sym_COMMA] = ACTIONS(2392), + [anon_sym_const] = ACTIONS(2392), + [anon_sym_LPAREN] = ACTIONS(2392), + [anon_sym___global] = ACTIONS(2392), + [anon_sym_type] = ACTIONS(2392), + [anon_sym_PIPE] = ACTIONS(2392), + [anon_sym_fn] = ACTIONS(2392), + [anon_sym_PLUS] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2392), + [anon_sym_STAR] = ACTIONS(2392), + [anon_sym_SLASH] = ACTIONS(2392), + [anon_sym_PERCENT] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2392), + [anon_sym_GT] = ACTIONS(2392), + [anon_sym_EQ_EQ] = ACTIONS(2392), + [anon_sym_BANG_EQ] = ACTIONS(2392), + [anon_sym_LT_EQ] = ACTIONS(2392), + [anon_sym_GT_EQ] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(2390), + [anon_sym_struct] = ACTIONS(2392), + [anon_sym_union] = ACTIONS(2392), + [anon_sym_pub] = ACTIONS(2392), + [anon_sym_mut] = ACTIONS(2392), + [anon_sym_enum] = ACTIONS(2392), + [anon_sym_interface] = ACTIONS(2392), + [anon_sym_PLUS_PLUS] = ACTIONS(2392), + [anon_sym_DASH_DASH] = ACTIONS(2392), + [anon_sym_QMARK] = ACTIONS(2392), + [anon_sym_BANG] = ACTIONS(2392), + [anon_sym_go] = ACTIONS(2392), + [anon_sym_spawn] = ACTIONS(2392), + [anon_sym_json_DOTdecode] = ACTIONS(2392), + [anon_sym_LBRACK2] = ACTIONS(2392), + [anon_sym_TILDE] = ACTIONS(2392), + [anon_sym_CARET] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2392), + [anon_sym_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2392), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_GT_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_CARET] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_or] = ACTIONS(2392), + [sym_none] = ACTIONS(2392), + [sym_true] = ACTIONS(2392), + [sym_false] = ACTIONS(2392), + [sym_nil] = ACTIONS(2392), + [anon_sym_QMARK_DOT] = ACTIONS(2392), + [anon_sym_POUND_LBRACK] = ACTIONS(2392), + [anon_sym_if] = ACTIONS(2392), + [anon_sym_else] = ACTIONS(3335), + [anon_sym_DOLLARif] = ACTIONS(2392), + [anon_sym_is] = ACTIONS(2392), + [anon_sym_BANGis] = ACTIONS(2392), + [anon_sym_in] = ACTIONS(2392), + [anon_sym_BANGin] = ACTIONS(2392), + [anon_sym_match] = ACTIONS(2392), + [anon_sym_select] = ACTIONS(2392), + [anon_sym_lock] = ACTIONS(2392), + [anon_sym_rlock] = ACTIONS(2392), + [anon_sym_unsafe] = ACTIONS(2392), + [anon_sym_sql] = ACTIONS(2392), + [sym_int_literal] = ACTIONS(2392), + [sym_float_literal] = ACTIONS(2392), + [sym_rune_literal] = ACTIONS(2392), + [anon_sym_AT] = ACTIONS(2392), + [anon_sym_shared] = ACTIONS(2392), + [anon_sym_map_LBRACK] = ACTIONS(2392), + [anon_sym_chan] = ACTIONS(2392), + [anon_sym_thread] = ACTIONS(2392), + [anon_sym_atomic] = ACTIONS(2392), + [anon_sym_assert] = ACTIONS(2392), + [anon_sym_defer] = ACTIONS(2392), + [anon_sym_goto] = ACTIONS(2392), + [anon_sym_break] = ACTIONS(2392), + [anon_sym_continue] = ACTIONS(2392), + [anon_sym_return] = ACTIONS(2392), + [anon_sym_DOLLARfor] = ACTIONS(2392), + [anon_sym_for] = ACTIONS(2392), + [anon_sym_POUND] = ACTIONS(2392), + [anon_sym_asm] = ACTIONS(2392), + [anon_sym_AT_LBRACK] = ACTIONS(2392), + [sym___double_quote] = ACTIONS(2392), + [sym___single_quote] = ACTIONS(2392), + [sym___c_double_quote] = ACTIONS(2392), + [sym___c_single_quote] = ACTIONS(2392), + [sym___r_double_quote] = ACTIONS(2392), + [sym___r_single_quote] = ACTIONS(2392), }, [993] = { - [ts_builtin_sym_end] = ACTIONS(2738), - [sym_identifier] = ACTIONS(2740), - [anon_sym_LF] = ACTIONS(2740), - [anon_sym_CR] = ACTIONS(2740), - [anon_sym_CR_LF] = ACTIONS(2740), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2740), - [anon_sym_as] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_COMMA] = ACTIONS(2740), - [anon_sym_const] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym___global] = ACTIONS(2740), - [anon_sym_type] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_fn] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_STAR] = ACTIONS(2740), - [anon_sym_SLASH] = ACTIONS(2740), - [anon_sym_PERCENT] = ACTIONS(2740), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_GT] = ACTIONS(2740), - [anon_sym_EQ_EQ] = ACTIONS(2740), - [anon_sym_BANG_EQ] = ACTIONS(2740), - [anon_sym_LT_EQ] = ACTIONS(2740), - [anon_sym_GT_EQ] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_struct] = ACTIONS(2740), - [anon_sym_union] = ACTIONS(2740), - [anon_sym_pub] = ACTIONS(2740), - [anon_sym_mut] = ACTIONS(2740), - [anon_sym_enum] = ACTIONS(2740), - [anon_sym_interface] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2740), - [anon_sym_DASH_DASH] = ACTIONS(2740), - [anon_sym_QMARK] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2740), - [anon_sym_go] = ACTIONS(2740), - [anon_sym_spawn] = ACTIONS(2740), - [anon_sym_json_DOTdecode] = ACTIONS(2740), - [anon_sym_LBRACK2] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2740), - [anon_sym_CARET] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), - [anon_sym_LT_DASH] = ACTIONS(2740), - [anon_sym_LT_LT] = ACTIONS(2740), - [anon_sym_GT_GT] = ACTIONS(2740), - [anon_sym_GT_GT_GT] = ACTIONS(2740), - [anon_sym_AMP_CARET] = ACTIONS(2740), - [anon_sym_AMP_AMP] = ACTIONS(2740), - [anon_sym_PIPE_PIPE] = ACTIONS(2740), - [anon_sym_or] = ACTIONS(2740), - [sym_none] = ACTIONS(2740), - [sym_true] = ACTIONS(2740), - [sym_false] = ACTIONS(2740), - [sym_nil] = ACTIONS(2740), - [anon_sym_QMARK_DOT] = ACTIONS(2740), - [anon_sym_POUND_LBRACK] = ACTIONS(2740), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_DOLLARif] = ACTIONS(2740), - [anon_sym_DOLLARelse] = ACTIONS(3343), - [anon_sym_is] = ACTIONS(2740), - [anon_sym_BANGis] = ACTIONS(2740), - [anon_sym_in] = ACTIONS(2740), - [anon_sym_BANGin] = ACTIONS(2740), - [anon_sym_match] = ACTIONS(2740), - [anon_sym_select] = ACTIONS(2740), - [anon_sym_lock] = ACTIONS(2740), - [anon_sym_rlock] = ACTIONS(2740), - [anon_sym_unsafe] = ACTIONS(2740), - [anon_sym_sql] = ACTIONS(2740), - [sym_int_literal] = ACTIONS(2740), - [sym_float_literal] = ACTIONS(2740), - [sym_rune_literal] = ACTIONS(2740), - [anon_sym_AT] = ACTIONS(2740), - [anon_sym_shared] = ACTIONS(2740), - [anon_sym_map_LBRACK] = ACTIONS(2740), - [anon_sym_chan] = ACTIONS(2740), - [anon_sym_thread] = ACTIONS(2740), - [anon_sym_atomic] = ACTIONS(2740), - [anon_sym_assert] = ACTIONS(2740), - [anon_sym_defer] = ACTIONS(2740), - [anon_sym_goto] = ACTIONS(2740), - [anon_sym_break] = ACTIONS(2740), - [anon_sym_continue] = ACTIONS(2740), - [anon_sym_return] = ACTIONS(2740), - [anon_sym_DOLLARfor] = ACTIONS(2740), - [anon_sym_for] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(2740), - [anon_sym_asm] = ACTIONS(2740), - [anon_sym_AT_LBRACK] = ACTIONS(2740), - [sym___double_quote] = ACTIONS(2740), - [sym___single_quote] = ACTIONS(2740), - [sym___c_double_quote] = ACTIONS(2740), - [sym___c_single_quote] = ACTIONS(2740), - [sym___r_double_quote] = ACTIONS(2740), - [sym___r_single_quote] = ACTIONS(2740), + [sym_type_parameters] = STATE(4109), + [sym_argument_list] = STATE(1029), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(2050), + [sym_identifier] = ACTIONS(2052), + [anon_sym_LF] = ACTIONS(2052), + [anon_sym_CR] = ACTIONS(2052), + [anon_sym_CR_LF] = ACTIONS(2052), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_as] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(2052), + [anon_sym_const] = ACTIONS(2052), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(2052), + [anon_sym_type] = ACTIONS(2052), + [anon_sym_PIPE] = ACTIONS(3317), + [anon_sym_fn] = ACTIONS(2052), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3319), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_PERCENT] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3321), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_LT_EQ] = ACTIONS(3321), + [anon_sym_GT_EQ] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_struct] = ACTIONS(2052), + [anon_sym_union] = ACTIONS(2052), + [anon_sym_pub] = ACTIONS(2052), + [anon_sym_mut] = ACTIONS(2052), + [anon_sym_enum] = ACTIONS(2052), + [anon_sym_interface] = ACTIONS(2052), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_DASH_DASH] = ACTIONS(3253), + [anon_sym_QMARK] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(2052), + [anon_sym_spawn] = ACTIONS(2052), + [anon_sym_json_DOTdecode] = ACTIONS(2052), + [anon_sym_LBRACK2] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(2052), + [anon_sym_CARET] = ACTIONS(3317), + [anon_sym_AMP] = ACTIONS(3319), + [anon_sym_LT_DASH] = ACTIONS(2052), + [anon_sym_LT_LT] = ACTIONS(3319), + [anon_sym_GT_GT] = ACTIONS(3319), + [anon_sym_GT_GT_GT] = ACTIONS(3319), + [anon_sym_AMP_CARET] = ACTIONS(3319), + [anon_sym_AMP_AMP] = ACTIONS(3323), + [anon_sym_PIPE_PIPE] = ACTIONS(3333), + [anon_sym_or] = ACTIONS(3265), + [sym_none] = ACTIONS(2052), + [sym_true] = ACTIONS(2052), + [sym_false] = ACTIONS(2052), + [sym_nil] = ACTIONS(2052), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(2052), + [anon_sym_DOLLARif] = ACTIONS(2052), + [anon_sym_is] = ACTIONS(3267), + [anon_sym_BANGis] = ACTIONS(3269), + [anon_sym_in] = ACTIONS(3325), + [anon_sym_BANGin] = ACTIONS(3327), + [anon_sym_match] = ACTIONS(2052), + [anon_sym_select] = ACTIONS(2052), + [anon_sym_lock] = ACTIONS(2052), + [anon_sym_rlock] = ACTIONS(2052), + [anon_sym_unsafe] = ACTIONS(2052), + [anon_sym_sql] = ACTIONS(2052), + [sym_int_literal] = ACTIONS(2052), + [sym_float_literal] = ACTIONS(2052), + [sym_rune_literal] = ACTIONS(2052), + [anon_sym_AT] = ACTIONS(2052), + [anon_sym_shared] = ACTIONS(2052), + [anon_sym_map_LBRACK] = ACTIONS(2052), + [anon_sym_chan] = ACTIONS(2052), + [anon_sym_thread] = ACTIONS(2052), + [anon_sym_atomic] = ACTIONS(2052), + [anon_sym_assert] = ACTIONS(2052), + [anon_sym_defer] = ACTIONS(2052), + [anon_sym_goto] = ACTIONS(2052), + [anon_sym_break] = ACTIONS(2052), + [anon_sym_continue] = ACTIONS(2052), + [anon_sym_return] = ACTIONS(2052), + [anon_sym_DOLLARfor] = ACTIONS(2052), + [anon_sym_for] = ACTIONS(2052), + [anon_sym_POUND] = ACTIONS(2052), + [anon_sym_asm] = ACTIONS(2052), + [anon_sym_AT_LBRACK] = ACTIONS(2052), + [sym___double_quote] = ACTIONS(2052), + [sym___single_quote] = ACTIONS(2052), + [sym___c_double_quote] = ACTIONS(2052), + [sym___c_single_quote] = ACTIONS(2052), + [sym___r_double_quote] = ACTIONS(2052), + [sym___r_single_quote] = ACTIONS(2052), }, [994] = { - [sym_type_parameters] = STATE(1077), - [ts_builtin_sym_end] = ACTIONS(2702), - [sym_identifier] = ACTIONS(2704), - [anon_sym_LF] = ACTIONS(2704), - [anon_sym_CR] = ACTIONS(2704), - [anon_sym_CR_LF] = ACTIONS(2704), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_as] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_COMMA] = ACTIONS(2704), - [anon_sym_const] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym___global] = ACTIONS(2704), - [anon_sym_type] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_SLASH] = ACTIONS(2704), - [anon_sym_PERCENT] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_EQ_EQ] = ACTIONS(2704), - [anon_sym_BANG_EQ] = ACTIONS(2704), - [anon_sym_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_EQ] = ACTIONS(2704), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_union] = ACTIONS(2704), - [anon_sym_pub] = ACTIONS(2704), - [anon_sym_mut] = ACTIONS(2704), - [anon_sym_enum] = ACTIONS(2704), - [anon_sym_interface] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_go] = ACTIONS(2704), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2704), - [anon_sym_LBRACK2] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_CARET] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_LT_DASH] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2704), - [anon_sym_GT_GT] = ACTIONS(2704), - [anon_sym_GT_GT_GT] = ACTIONS(2704), - [anon_sym_AMP_CARET] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_PIPE_PIPE] = ACTIONS(2704), - [anon_sym_or] = ACTIONS(2704), - [sym_none] = ACTIONS(2704), - [sym_true] = ACTIONS(2704), - [sym_false] = ACTIONS(2704), - [sym_nil] = ACTIONS(2704), - [anon_sym_QMARK_DOT] = ACTIONS(2704), - [anon_sym_POUND_LBRACK] = ACTIONS(2704), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_DOLLARif] = ACTIONS(2704), - [anon_sym_is] = ACTIONS(2704), - [anon_sym_BANGis] = ACTIONS(2704), - [anon_sym_in] = ACTIONS(2704), - [anon_sym_BANGin] = ACTIONS(2704), - [anon_sym_match] = ACTIONS(2704), - [anon_sym_select] = ACTIONS(2704), - [anon_sym_lock] = ACTIONS(2704), - [anon_sym_rlock] = ACTIONS(2704), - [anon_sym_unsafe] = ACTIONS(2704), - [anon_sym_sql] = ACTIONS(2704), - [sym_int_literal] = ACTIONS(2704), - [sym_float_literal] = ACTIONS(2704), - [sym_rune_literal] = ACTIONS(2704), - [anon_sym_AT] = ACTIONS(2704), - [anon_sym_shared] = ACTIONS(2704), - [anon_sym_map_LBRACK] = ACTIONS(2704), - [anon_sym_chan] = ACTIONS(2704), - [anon_sym_thread] = ACTIONS(2704), - [anon_sym_atomic] = ACTIONS(2704), - [anon_sym_assert] = ACTIONS(2704), - [anon_sym_defer] = ACTIONS(2704), - [anon_sym_goto] = ACTIONS(2704), - [anon_sym_break] = ACTIONS(2704), - [anon_sym_continue] = ACTIONS(2704), - [anon_sym_return] = ACTIONS(2704), - [anon_sym_DOLLARfor] = ACTIONS(2704), - [anon_sym_for] = ACTIONS(2704), - [anon_sym_POUND] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2704), - [anon_sym_AT_LBRACK] = ACTIONS(2704), - [sym___double_quote] = ACTIONS(2704), - [sym___single_quote] = ACTIONS(2704), - [sym___c_double_quote] = ACTIONS(2704), - [sym___c_single_quote] = ACTIONS(2704), - [sym___r_double_quote] = ACTIONS(2704), - [sym___r_single_quote] = ACTIONS(2704), + [sym_type_parameters] = STATE(4109), + [sym_argument_list] = STATE(1029), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(2232), + [sym_identifier] = ACTIONS(2234), + [anon_sym_LF] = ACTIONS(2234), + [anon_sym_CR] = ACTIONS(2234), + [anon_sym_CR_LF] = ACTIONS(2234), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_as] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_const] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(2234), + [anon_sym_type] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(3317), + [anon_sym_fn] = ACTIONS(2234), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3319), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_PERCENT] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3321), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_LT_EQ] = ACTIONS(3321), + [anon_sym_GT_EQ] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_struct] = ACTIONS(2234), + [anon_sym_union] = ACTIONS(2234), + [anon_sym_pub] = ACTIONS(2234), + [anon_sym_mut] = ACTIONS(2234), + [anon_sym_enum] = ACTIONS(2234), + [anon_sym_interface] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_DASH_DASH] = ACTIONS(3253), + [anon_sym_QMARK] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(2234), + [anon_sym_spawn] = ACTIONS(2234), + [anon_sym_json_DOTdecode] = ACTIONS(2234), + [anon_sym_LBRACK2] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(2234), + [anon_sym_CARET] = ACTIONS(3317), + [anon_sym_AMP] = ACTIONS(3319), + [anon_sym_LT_DASH] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(3319), + [anon_sym_GT_GT] = ACTIONS(3319), + [anon_sym_GT_GT_GT] = ACTIONS(3319), + [anon_sym_AMP_CARET] = ACTIONS(3319), + [anon_sym_AMP_AMP] = ACTIONS(3323), + [anon_sym_PIPE_PIPE] = ACTIONS(3333), + [anon_sym_or] = ACTIONS(3265), + [sym_none] = ACTIONS(2234), + [sym_true] = ACTIONS(2234), + [sym_false] = ACTIONS(2234), + [sym_nil] = ACTIONS(2234), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_DOLLARif] = ACTIONS(2234), + [anon_sym_is] = ACTIONS(3267), + [anon_sym_BANGis] = ACTIONS(3269), + [anon_sym_in] = ACTIONS(3325), + [anon_sym_BANGin] = ACTIONS(3327), + [anon_sym_match] = ACTIONS(2234), + [anon_sym_select] = ACTIONS(2234), + [anon_sym_lock] = ACTIONS(2234), + [anon_sym_rlock] = ACTIONS(2234), + [anon_sym_unsafe] = ACTIONS(2234), + [anon_sym_sql] = ACTIONS(2234), + [sym_int_literal] = ACTIONS(2234), + [sym_float_literal] = ACTIONS(2234), + [sym_rune_literal] = ACTIONS(2234), + [anon_sym_AT] = ACTIONS(2234), + [anon_sym_shared] = ACTIONS(2234), + [anon_sym_map_LBRACK] = ACTIONS(2234), + [anon_sym_chan] = ACTIONS(2234), + [anon_sym_thread] = ACTIONS(2234), + [anon_sym_atomic] = ACTIONS(2234), + [anon_sym_assert] = ACTIONS(2234), + [anon_sym_defer] = ACTIONS(2234), + [anon_sym_goto] = ACTIONS(2234), + [anon_sym_break] = ACTIONS(2234), + [anon_sym_continue] = ACTIONS(2234), + [anon_sym_return] = ACTIONS(2234), + [anon_sym_DOLLARfor] = ACTIONS(2234), + [anon_sym_for] = ACTIONS(2234), + [anon_sym_POUND] = ACTIONS(2234), + [anon_sym_asm] = ACTIONS(2234), + [anon_sym_AT_LBRACK] = ACTIONS(2234), + [sym___double_quote] = ACTIONS(2234), + [sym___single_quote] = ACTIONS(2234), + [sym___c_double_quote] = ACTIONS(2234), + [sym___c_single_quote] = ACTIONS(2234), + [sym___r_double_quote] = ACTIONS(2234), + [sym___r_single_quote] = ACTIONS(2234), }, [995] = { - [ts_builtin_sym_end] = ACTIONS(2698), - [sym_identifier] = ACTIONS(2700), - [anon_sym_LF] = ACTIONS(2700), - [anon_sym_CR] = ACTIONS(2700), - [anon_sym_CR_LF] = ACTIONS(2700), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_COMMA] = ACTIONS(2700), - [anon_sym_const] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym___global] = ACTIONS(2700), - [anon_sym_type] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_union] = ACTIONS(2700), - [anon_sym_pub] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_enum] = ACTIONS(2700), - [anon_sym_interface] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2700), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2700), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2700), - [anon_sym_AMP_CARET] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2700), - [anon_sym_POUND_LBRACK] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_else] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2700), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2700), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), - [sym_rune_literal] = ACTIONS(2700), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2700), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [anon_sym_assert] = ACTIONS(2700), - [anon_sym_defer] = ACTIONS(2700), - [anon_sym_goto] = ACTIONS(2700), - [anon_sym_break] = ACTIONS(2700), - [anon_sym_continue] = ACTIONS(2700), - [anon_sym_return] = ACTIONS(2700), - [anon_sym_DOLLARfor] = ACTIONS(2700), - [anon_sym_for] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(2700), - [anon_sym_asm] = ACTIONS(2700), - [anon_sym_AT_LBRACK] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2700), - [sym___single_quote] = ACTIONS(2700), - [sym___c_double_quote] = ACTIONS(2700), - [sym___c_single_quote] = ACTIONS(2700), - [sym___r_double_quote] = ACTIONS(2700), - [sym___r_single_quote] = ACTIONS(2700), + [sym_type_parameters] = STATE(4109), + [sym_argument_list] = STATE(1029), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(3345), + [sym_identifier] = ACTIONS(3347), + [anon_sym_LF] = ACTIONS(3347), + [anon_sym_CR] = ACTIONS(3347), + [anon_sym_CR_LF] = ACTIONS(3347), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3235), + [anon_sym_as] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3347), + [anon_sym_const] = ACTIONS(3347), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(3347), + [anon_sym_type] = ACTIONS(3347), + [anon_sym_PIPE] = ACTIONS(3317), + [anon_sym_fn] = ACTIONS(3347), + [anon_sym_PLUS] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(3347), + [anon_sym_STAR] = ACTIONS(3347), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_PERCENT] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3321), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_LT_EQ] = ACTIONS(3321), + [anon_sym_GT_EQ] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_struct] = ACTIONS(3347), + [anon_sym_union] = ACTIONS(3347), + [anon_sym_pub] = ACTIONS(3347), + [anon_sym_mut] = ACTIONS(3347), + [anon_sym_enum] = ACTIONS(3347), + [anon_sym_interface] = ACTIONS(3347), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_DASH_DASH] = ACTIONS(3253), + [anon_sym_QMARK] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(3347), + [anon_sym_spawn] = ACTIONS(3347), + [anon_sym_json_DOTdecode] = ACTIONS(3347), + [anon_sym_LBRACK2] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(3347), + [anon_sym_CARET] = ACTIONS(3347), + [anon_sym_AMP] = ACTIONS(3347), + [anon_sym_LT_DASH] = ACTIONS(3347), + [anon_sym_LT_LT] = ACTIONS(3319), + [anon_sym_GT_GT] = ACTIONS(3319), + [anon_sym_GT_GT_GT] = ACTIONS(3319), + [anon_sym_AMP_CARET] = ACTIONS(3319), + [anon_sym_AMP_AMP] = ACTIONS(3323), + [anon_sym_PIPE_PIPE] = ACTIONS(3333), + [anon_sym_or] = ACTIONS(3265), + [sym_none] = ACTIONS(3347), + [sym_true] = ACTIONS(3347), + [sym_false] = ACTIONS(3347), + [sym_nil] = ACTIONS(3347), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(3347), + [anon_sym_DOLLARif] = ACTIONS(3347), + [anon_sym_is] = ACTIONS(3267), + [anon_sym_BANGis] = ACTIONS(3269), + [anon_sym_in] = ACTIONS(3325), + [anon_sym_BANGin] = ACTIONS(3327), + [anon_sym_match] = ACTIONS(3347), + [anon_sym_select] = ACTIONS(3347), + [anon_sym_lock] = ACTIONS(3347), + [anon_sym_rlock] = ACTIONS(3347), + [anon_sym_unsafe] = ACTIONS(3347), + [anon_sym_sql] = ACTIONS(3347), + [sym_int_literal] = ACTIONS(3347), + [sym_float_literal] = ACTIONS(3347), + [sym_rune_literal] = ACTIONS(3347), + [anon_sym_AT] = ACTIONS(3347), + [anon_sym_shared] = ACTIONS(3347), + [anon_sym_map_LBRACK] = ACTIONS(3347), + [anon_sym_chan] = ACTIONS(3347), + [anon_sym_thread] = ACTIONS(3347), + [anon_sym_atomic] = ACTIONS(3347), + [anon_sym_assert] = ACTIONS(3347), + [anon_sym_defer] = ACTIONS(3347), + [anon_sym_goto] = ACTIONS(3347), + [anon_sym_break] = ACTIONS(3347), + [anon_sym_continue] = ACTIONS(3347), + [anon_sym_return] = ACTIONS(3347), + [anon_sym_DOLLARfor] = ACTIONS(3347), + [anon_sym_for] = ACTIONS(3347), + [anon_sym_POUND] = ACTIONS(3347), + [anon_sym_asm] = ACTIONS(3347), + [anon_sym_AT_LBRACK] = ACTIONS(3347), + [sym___double_quote] = ACTIONS(3347), + [sym___single_quote] = ACTIONS(3347), + [sym___c_double_quote] = ACTIONS(3347), + [sym___c_single_quote] = ACTIONS(3347), + [sym___r_double_quote] = ACTIONS(3347), + [sym___r_single_quote] = ACTIONS(3347), }, [996] = { - [ts_builtin_sym_end] = ACTIONS(2728), - [sym_identifier] = ACTIONS(2730), - [anon_sym_LF] = ACTIONS(2730), - [anon_sym_CR] = ACTIONS(2730), - [anon_sym_CR_LF] = ACTIONS(2730), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2730), - [anon_sym_as] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_COMMA] = ACTIONS(2730), - [anon_sym_const] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym___global] = ACTIONS(2730), - [anon_sym_type] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_fn] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2730), - [anon_sym_SLASH] = ACTIONS(2730), - [anon_sym_PERCENT] = ACTIONS(2730), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_GT] = ACTIONS(2730), - [anon_sym_EQ_EQ] = ACTIONS(2730), - [anon_sym_BANG_EQ] = ACTIONS(2730), - [anon_sym_LT_EQ] = ACTIONS(2730), - [anon_sym_GT_EQ] = ACTIONS(2730), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_struct] = ACTIONS(2730), - [anon_sym_union] = ACTIONS(2730), - [anon_sym_pub] = ACTIONS(2730), - [anon_sym_mut] = ACTIONS(2730), - [anon_sym_enum] = ACTIONS(2730), - [anon_sym_interface] = ACTIONS(2730), - [anon_sym_PLUS_PLUS] = ACTIONS(2730), - [anon_sym_DASH_DASH] = ACTIONS(2730), - [anon_sym_QMARK] = ACTIONS(2730), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_go] = ACTIONS(2730), - [anon_sym_spawn] = ACTIONS(2730), - [anon_sym_json_DOTdecode] = ACTIONS(2730), - [anon_sym_LBRACK2] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2730), - [anon_sym_CARET] = ACTIONS(2730), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_LT_DASH] = ACTIONS(2730), - [anon_sym_LT_LT] = ACTIONS(2730), - [anon_sym_GT_GT] = ACTIONS(2730), - [anon_sym_GT_GT_GT] = ACTIONS(2730), - [anon_sym_AMP_CARET] = ACTIONS(2730), - [anon_sym_AMP_AMP] = ACTIONS(2730), - [anon_sym_PIPE_PIPE] = ACTIONS(2730), - [anon_sym_or] = ACTIONS(2730), - [sym_none] = ACTIONS(2730), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_nil] = ACTIONS(2730), - [anon_sym_QMARK_DOT] = ACTIONS(2730), - [anon_sym_POUND_LBRACK] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_else] = ACTIONS(2730), - [anon_sym_DOLLARif] = ACTIONS(2730), - [anon_sym_is] = ACTIONS(2730), - [anon_sym_BANGis] = ACTIONS(2730), - [anon_sym_in] = ACTIONS(2730), - [anon_sym_BANGin] = ACTIONS(2730), - [anon_sym_match] = ACTIONS(2730), - [anon_sym_select] = ACTIONS(2730), - [anon_sym_lock] = ACTIONS(2730), - [anon_sym_rlock] = ACTIONS(2730), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2730), - [sym_int_literal] = ACTIONS(2730), - [sym_float_literal] = ACTIONS(2730), - [sym_rune_literal] = ACTIONS(2730), - [anon_sym_AT] = ACTIONS(2730), - [anon_sym_shared] = ACTIONS(2730), - [anon_sym_map_LBRACK] = ACTIONS(2730), - [anon_sym_chan] = ACTIONS(2730), - [anon_sym_thread] = ACTIONS(2730), - [anon_sym_atomic] = ACTIONS(2730), - [anon_sym_assert] = ACTIONS(2730), - [anon_sym_defer] = ACTIONS(2730), - [anon_sym_goto] = ACTIONS(2730), - [anon_sym_break] = ACTIONS(2730), - [anon_sym_continue] = ACTIONS(2730), - [anon_sym_return] = ACTIONS(2730), - [anon_sym_DOLLARfor] = ACTIONS(2730), - [anon_sym_for] = ACTIONS(2730), - [anon_sym_POUND] = ACTIONS(2730), - [anon_sym_asm] = ACTIONS(2730), - [anon_sym_AT_LBRACK] = ACTIONS(2730), - [sym___double_quote] = ACTIONS(2730), - [sym___single_quote] = ACTIONS(2730), - [sym___c_double_quote] = ACTIONS(2730), - [sym___c_single_quote] = ACTIONS(2730), - [sym___r_double_quote] = ACTIONS(2730), - [sym___r_single_quote] = ACTIONS(2730), + [ts_builtin_sym_end] = ACTIONS(2692), + [sym_identifier] = ACTIONS(2694), + [anon_sym_LF] = ACTIONS(2694), + [anon_sym_CR] = ACTIONS(2694), + [anon_sym_CR_LF] = ACTIONS(2694), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2694), + [anon_sym_as] = ACTIONS(2694), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_COMMA] = ACTIONS(2694), + [anon_sym_const] = ACTIONS(2694), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym___global] = ACTIONS(2694), + [anon_sym_type] = ACTIONS(2694), + [anon_sym_PIPE] = ACTIONS(2694), + [anon_sym_fn] = ACTIONS(2694), + [anon_sym_PLUS] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(2694), + [anon_sym_SLASH] = ACTIONS(2694), + [anon_sym_PERCENT] = ACTIONS(2694), + [anon_sym_LT] = ACTIONS(2694), + [anon_sym_GT] = ACTIONS(2694), + [anon_sym_EQ_EQ] = ACTIONS(2694), + [anon_sym_BANG_EQ] = ACTIONS(2694), + [anon_sym_LT_EQ] = ACTIONS(2694), + [anon_sym_GT_EQ] = ACTIONS(2694), + [anon_sym_LBRACK] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2694), + [anon_sym_union] = ACTIONS(2694), + [anon_sym_pub] = ACTIONS(2694), + [anon_sym_mut] = ACTIONS(2694), + [anon_sym_enum] = ACTIONS(2694), + [anon_sym_interface] = ACTIONS(2694), + [anon_sym_PLUS_PLUS] = ACTIONS(2694), + [anon_sym_DASH_DASH] = ACTIONS(2694), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_BANG] = ACTIONS(2694), + [anon_sym_go] = ACTIONS(2694), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2694), + [anon_sym_LBRACK2] = ACTIONS(2694), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_CARET] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2694), + [anon_sym_LT_DASH] = ACTIONS(2694), + [anon_sym_LT_LT] = ACTIONS(2694), + [anon_sym_GT_GT] = ACTIONS(2694), + [anon_sym_GT_GT_GT] = ACTIONS(2694), + [anon_sym_AMP_CARET] = ACTIONS(2694), + [anon_sym_AMP_AMP] = ACTIONS(2694), + [anon_sym_PIPE_PIPE] = ACTIONS(2694), + [anon_sym_or] = ACTIONS(2694), + [sym_none] = ACTIONS(2694), + [sym_true] = ACTIONS(2694), + [sym_false] = ACTIONS(2694), + [sym_nil] = ACTIONS(2694), + [anon_sym_QMARK_DOT] = ACTIONS(2694), + [anon_sym_POUND_LBRACK] = ACTIONS(2694), + [anon_sym_if] = ACTIONS(2694), + [anon_sym_DOLLARif] = ACTIONS(2694), + [anon_sym_DOLLARelse] = ACTIONS(2694), + [anon_sym_is] = ACTIONS(2694), + [anon_sym_BANGis] = ACTIONS(2694), + [anon_sym_in] = ACTIONS(2694), + [anon_sym_BANGin] = ACTIONS(2694), + [anon_sym_match] = ACTIONS(2694), + [anon_sym_select] = ACTIONS(2694), + [anon_sym_lock] = ACTIONS(2694), + [anon_sym_rlock] = ACTIONS(2694), + [anon_sym_unsafe] = ACTIONS(2694), + [anon_sym_sql] = ACTIONS(2694), + [sym_int_literal] = ACTIONS(2694), + [sym_float_literal] = ACTIONS(2694), + [sym_rune_literal] = ACTIONS(2694), + [anon_sym_AT] = ACTIONS(2694), + [anon_sym_shared] = ACTIONS(2694), + [anon_sym_map_LBRACK] = ACTIONS(2694), + [anon_sym_chan] = ACTIONS(2694), + [anon_sym_thread] = ACTIONS(2694), + [anon_sym_atomic] = ACTIONS(2694), + [anon_sym_assert] = ACTIONS(2694), + [anon_sym_defer] = ACTIONS(2694), + [anon_sym_goto] = ACTIONS(2694), + [anon_sym_break] = ACTIONS(2694), + [anon_sym_continue] = ACTIONS(2694), + [anon_sym_return] = ACTIONS(2694), + [anon_sym_DOLLARfor] = ACTIONS(2694), + [anon_sym_for] = ACTIONS(2694), + [anon_sym_POUND] = ACTIONS(2694), + [anon_sym_asm] = ACTIONS(2694), + [anon_sym_AT_LBRACK] = ACTIONS(2694), + [sym___double_quote] = ACTIONS(2694), + [sym___single_quote] = ACTIONS(2694), + [sym___c_double_quote] = ACTIONS(2694), + [sym___c_single_quote] = ACTIONS(2694), + [sym___r_double_quote] = ACTIONS(2694), + [sym___r_single_quote] = ACTIONS(2694), }, [997] = { - [ts_builtin_sym_end] = ACTIONS(2732), - [sym_identifier] = ACTIONS(2734), - [anon_sym_LF] = ACTIONS(2734), - [anon_sym_CR] = ACTIONS(2734), - [anon_sym_CR_LF] = ACTIONS(2734), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2734), - [anon_sym_as] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_COMMA] = ACTIONS(2734), - [anon_sym_const] = ACTIONS(2734), - [anon_sym_LPAREN] = ACTIONS(2734), - [anon_sym___global] = ACTIONS(2734), - [anon_sym_type] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_fn] = ACTIONS(2734), - [anon_sym_PLUS] = ACTIONS(2734), - [anon_sym_DASH] = ACTIONS(2734), - [anon_sym_STAR] = ACTIONS(2734), - [anon_sym_SLASH] = ACTIONS(2734), - [anon_sym_PERCENT] = ACTIONS(2734), - [anon_sym_LT] = ACTIONS(2734), - [anon_sym_GT] = ACTIONS(2734), - [anon_sym_EQ_EQ] = ACTIONS(2734), - [anon_sym_BANG_EQ] = ACTIONS(2734), - [anon_sym_LT_EQ] = ACTIONS(2734), - [anon_sym_GT_EQ] = ACTIONS(2734), - [anon_sym_LBRACK] = ACTIONS(2732), - [anon_sym_struct] = ACTIONS(2734), - [anon_sym_union] = ACTIONS(2734), - [anon_sym_pub] = ACTIONS(2734), - [anon_sym_mut] = ACTIONS(2734), - [anon_sym_enum] = ACTIONS(2734), - [anon_sym_interface] = ACTIONS(2734), - [anon_sym_PLUS_PLUS] = ACTIONS(2734), - [anon_sym_DASH_DASH] = ACTIONS(2734), - [anon_sym_QMARK] = ACTIONS(2734), - [anon_sym_BANG] = ACTIONS(2734), - [anon_sym_go] = ACTIONS(2734), - [anon_sym_spawn] = ACTIONS(2734), - [anon_sym_json_DOTdecode] = ACTIONS(2734), - [anon_sym_LBRACK2] = ACTIONS(2734), - [anon_sym_TILDE] = ACTIONS(2734), - [anon_sym_CARET] = ACTIONS(2734), - [anon_sym_AMP] = ACTIONS(2734), - [anon_sym_LT_DASH] = ACTIONS(2734), - [anon_sym_LT_LT] = ACTIONS(2734), - [anon_sym_GT_GT] = ACTIONS(2734), - [anon_sym_GT_GT_GT] = ACTIONS(2734), - [anon_sym_AMP_CARET] = ACTIONS(2734), - [anon_sym_AMP_AMP] = ACTIONS(2734), - [anon_sym_PIPE_PIPE] = ACTIONS(2734), - [anon_sym_or] = ACTIONS(2734), - [sym_none] = ACTIONS(2734), - [sym_true] = ACTIONS(2734), - [sym_false] = ACTIONS(2734), - [sym_nil] = ACTIONS(2734), - [anon_sym_QMARK_DOT] = ACTIONS(2734), - [anon_sym_POUND_LBRACK] = ACTIONS(2734), - [anon_sym_if] = ACTIONS(2734), - [anon_sym_DOLLARif] = ACTIONS(2734), - [anon_sym_DOLLARelse] = ACTIONS(3345), - [anon_sym_is] = ACTIONS(2734), - [anon_sym_BANGis] = ACTIONS(2734), - [anon_sym_in] = ACTIONS(2734), - [anon_sym_BANGin] = ACTIONS(2734), - [anon_sym_match] = ACTIONS(2734), - [anon_sym_select] = ACTIONS(2734), - [anon_sym_lock] = ACTIONS(2734), - [anon_sym_rlock] = ACTIONS(2734), - [anon_sym_unsafe] = ACTIONS(2734), - [anon_sym_sql] = ACTIONS(2734), - [sym_int_literal] = ACTIONS(2734), - [sym_float_literal] = ACTIONS(2734), - [sym_rune_literal] = ACTIONS(2734), - [anon_sym_AT] = ACTIONS(2734), - [anon_sym_shared] = ACTIONS(2734), - [anon_sym_map_LBRACK] = ACTIONS(2734), - [anon_sym_chan] = ACTIONS(2734), - [anon_sym_thread] = ACTIONS(2734), - [anon_sym_atomic] = ACTIONS(2734), - [anon_sym_assert] = ACTIONS(2734), - [anon_sym_defer] = ACTIONS(2734), - [anon_sym_goto] = ACTIONS(2734), - [anon_sym_break] = ACTIONS(2734), - [anon_sym_continue] = ACTIONS(2734), - [anon_sym_return] = ACTIONS(2734), - [anon_sym_DOLLARfor] = ACTIONS(2734), - [anon_sym_for] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(2734), - [anon_sym_asm] = ACTIONS(2734), - [anon_sym_AT_LBRACK] = ACTIONS(2734), - [sym___double_quote] = ACTIONS(2734), - [sym___single_quote] = ACTIONS(2734), - [sym___c_double_quote] = ACTIONS(2734), - [sym___c_single_quote] = ACTIONS(2734), - [sym___r_double_quote] = ACTIONS(2734), - [sym___r_single_quote] = ACTIONS(2734), + [ts_builtin_sym_end] = ACTIONS(2756), + [sym_identifier] = ACTIONS(2758), + [anon_sym_LF] = ACTIONS(2758), + [anon_sym_CR] = ACTIONS(2758), + [anon_sym_CR_LF] = ACTIONS(2758), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2758), + [anon_sym_as] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2758), + [anon_sym_const] = ACTIONS(2758), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym___global] = ACTIONS(2758), + [anon_sym_type] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_fn] = ACTIONS(2758), + [anon_sym_PLUS] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_STAR] = ACTIONS(2758), + [anon_sym_SLASH] = ACTIONS(2758), + [anon_sym_PERCENT] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2758), + [anon_sym_GT] = ACTIONS(2758), + [anon_sym_EQ_EQ] = ACTIONS(2758), + [anon_sym_BANG_EQ] = ACTIONS(2758), + [anon_sym_LT_EQ] = ACTIONS(2758), + [anon_sym_GT_EQ] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(2758), + [anon_sym_union] = ACTIONS(2758), + [anon_sym_pub] = ACTIONS(2758), + [anon_sym_mut] = ACTIONS(2758), + [anon_sym_enum] = ACTIONS(2758), + [anon_sym_interface] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_QMARK] = ACTIONS(2758), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_go] = ACTIONS(2758), + [anon_sym_spawn] = ACTIONS(2758), + [anon_sym_json_DOTdecode] = ACTIONS(2758), + [anon_sym_LBRACK2] = ACTIONS(2758), + [anon_sym_TILDE] = ACTIONS(2758), + [anon_sym_CARET] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_LT_DASH] = ACTIONS(2758), + [anon_sym_LT_LT] = ACTIONS(2758), + [anon_sym_GT_GT] = ACTIONS(2758), + [anon_sym_GT_GT_GT] = ACTIONS(2758), + [anon_sym_AMP_CARET] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_or] = ACTIONS(2758), + [sym_none] = ACTIONS(2758), + [sym_true] = ACTIONS(2758), + [sym_false] = ACTIONS(2758), + [sym_nil] = ACTIONS(2758), + [anon_sym_QMARK_DOT] = ACTIONS(2758), + [anon_sym_POUND_LBRACK] = ACTIONS(2758), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_DOLLARif] = ACTIONS(2758), + [anon_sym_DOLLARelse] = ACTIONS(3349), + [anon_sym_is] = ACTIONS(2758), + [anon_sym_BANGis] = ACTIONS(2758), + [anon_sym_in] = ACTIONS(2758), + [anon_sym_BANGin] = ACTIONS(2758), + [anon_sym_match] = ACTIONS(2758), + [anon_sym_select] = ACTIONS(2758), + [anon_sym_lock] = ACTIONS(2758), + [anon_sym_rlock] = ACTIONS(2758), + [anon_sym_unsafe] = ACTIONS(2758), + [anon_sym_sql] = ACTIONS(2758), + [sym_int_literal] = ACTIONS(2758), + [sym_float_literal] = ACTIONS(2758), + [sym_rune_literal] = ACTIONS(2758), + [anon_sym_AT] = ACTIONS(2758), + [anon_sym_shared] = ACTIONS(2758), + [anon_sym_map_LBRACK] = ACTIONS(2758), + [anon_sym_chan] = ACTIONS(2758), + [anon_sym_thread] = ACTIONS(2758), + [anon_sym_atomic] = ACTIONS(2758), + [anon_sym_assert] = ACTIONS(2758), + [anon_sym_defer] = ACTIONS(2758), + [anon_sym_goto] = ACTIONS(2758), + [anon_sym_break] = ACTIONS(2758), + [anon_sym_continue] = ACTIONS(2758), + [anon_sym_return] = ACTIONS(2758), + [anon_sym_DOLLARfor] = ACTIONS(2758), + [anon_sym_for] = ACTIONS(2758), + [anon_sym_POUND] = ACTIONS(2758), + [anon_sym_asm] = ACTIONS(2758), + [anon_sym_AT_LBRACK] = ACTIONS(2758), + [sym___double_quote] = ACTIONS(2758), + [sym___single_quote] = ACTIONS(2758), + [sym___c_double_quote] = ACTIONS(2758), + [sym___c_single_quote] = ACTIONS(2758), + [sym___r_double_quote] = ACTIONS(2758), + [sym___r_single_quote] = ACTIONS(2758), }, [998] = { - [ts_builtin_sym_end] = ACTIONS(2728), - [sym_identifier] = ACTIONS(2730), - [anon_sym_LF] = ACTIONS(2730), - [anon_sym_CR] = ACTIONS(2730), - [anon_sym_CR_LF] = ACTIONS(2730), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2730), - [anon_sym_as] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_COMMA] = ACTIONS(2730), - [anon_sym_const] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym___global] = ACTIONS(2730), - [anon_sym_type] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_fn] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2730), - [anon_sym_SLASH] = ACTIONS(2730), - [anon_sym_PERCENT] = ACTIONS(2730), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_GT] = ACTIONS(2730), - [anon_sym_EQ_EQ] = ACTIONS(2730), - [anon_sym_BANG_EQ] = ACTIONS(2730), - [anon_sym_LT_EQ] = ACTIONS(2730), - [anon_sym_GT_EQ] = ACTIONS(2730), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_struct] = ACTIONS(2730), - [anon_sym_union] = ACTIONS(2730), - [anon_sym_pub] = ACTIONS(2730), - [anon_sym_mut] = ACTIONS(2730), - [anon_sym_enum] = ACTIONS(2730), - [anon_sym_interface] = ACTIONS(2730), - [anon_sym_PLUS_PLUS] = ACTIONS(2730), - [anon_sym_DASH_DASH] = ACTIONS(2730), - [anon_sym_QMARK] = ACTIONS(2730), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_go] = ACTIONS(2730), - [anon_sym_spawn] = ACTIONS(2730), - [anon_sym_json_DOTdecode] = ACTIONS(2730), - [anon_sym_LBRACK2] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2730), - [anon_sym_CARET] = ACTIONS(2730), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_LT_DASH] = ACTIONS(2730), - [anon_sym_LT_LT] = ACTIONS(2730), - [anon_sym_GT_GT] = ACTIONS(2730), - [anon_sym_GT_GT_GT] = ACTIONS(2730), - [anon_sym_AMP_CARET] = ACTIONS(2730), - [anon_sym_AMP_AMP] = ACTIONS(2730), - [anon_sym_PIPE_PIPE] = ACTIONS(2730), - [anon_sym_or] = ACTIONS(2730), - [sym_none] = ACTIONS(2730), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_nil] = ACTIONS(2730), - [anon_sym_QMARK_DOT] = ACTIONS(2730), - [anon_sym_POUND_LBRACK] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_DOLLARif] = ACTIONS(2730), - [anon_sym_DOLLARelse] = ACTIONS(2730), - [anon_sym_is] = ACTIONS(2730), - [anon_sym_BANGis] = ACTIONS(2730), - [anon_sym_in] = ACTIONS(2730), - [anon_sym_BANGin] = ACTIONS(2730), - [anon_sym_match] = ACTIONS(2730), - [anon_sym_select] = ACTIONS(2730), - [anon_sym_lock] = ACTIONS(2730), - [anon_sym_rlock] = ACTIONS(2730), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2730), - [sym_int_literal] = ACTIONS(2730), - [sym_float_literal] = ACTIONS(2730), - [sym_rune_literal] = ACTIONS(2730), - [anon_sym_AT] = ACTIONS(2730), - [anon_sym_shared] = ACTIONS(2730), - [anon_sym_map_LBRACK] = ACTIONS(2730), - [anon_sym_chan] = ACTIONS(2730), - [anon_sym_thread] = ACTIONS(2730), - [anon_sym_atomic] = ACTIONS(2730), - [anon_sym_assert] = ACTIONS(2730), - [anon_sym_defer] = ACTIONS(2730), - [anon_sym_goto] = ACTIONS(2730), - [anon_sym_break] = ACTIONS(2730), - [anon_sym_continue] = ACTIONS(2730), - [anon_sym_return] = ACTIONS(2730), - [anon_sym_DOLLARfor] = ACTIONS(2730), - [anon_sym_for] = ACTIONS(2730), - [anon_sym_POUND] = ACTIONS(2730), - [anon_sym_asm] = ACTIONS(2730), - [anon_sym_AT_LBRACK] = ACTIONS(2730), - [sym___double_quote] = ACTIONS(2730), - [sym___single_quote] = ACTIONS(2730), - [sym___c_double_quote] = ACTIONS(2730), - [sym___c_single_quote] = ACTIONS(2730), - [sym___r_double_quote] = ACTIONS(2730), - [sym___r_single_quote] = ACTIONS(2730), + [ts_builtin_sym_end] = ACTIONS(2614), + [sym_identifier] = ACTIONS(2616), + [anon_sym_LF] = ACTIONS(2616), + [anon_sym_CR] = ACTIONS(2616), + [anon_sym_CR_LF] = ACTIONS(2616), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2616), + [anon_sym_as] = ACTIONS(2616), + [anon_sym_LBRACE] = ACTIONS(2616), + [anon_sym_COMMA] = ACTIONS(2616), + [anon_sym_const] = ACTIONS(2616), + [anon_sym_LPAREN] = ACTIONS(2616), + [anon_sym___global] = ACTIONS(2616), + [anon_sym_type] = ACTIONS(2616), + [anon_sym_PIPE] = ACTIONS(2616), + [anon_sym_fn] = ACTIONS(2616), + [anon_sym_PLUS] = ACTIONS(2616), + [anon_sym_DASH] = ACTIONS(2616), + [anon_sym_STAR] = ACTIONS(2616), + [anon_sym_SLASH] = ACTIONS(2616), + [anon_sym_PERCENT] = ACTIONS(2616), + [anon_sym_LT] = ACTIONS(2616), + [anon_sym_GT] = ACTIONS(2616), + [anon_sym_EQ_EQ] = ACTIONS(2616), + [anon_sym_BANG_EQ] = ACTIONS(2616), + [anon_sym_LT_EQ] = ACTIONS(2616), + [anon_sym_GT_EQ] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(2614), + [anon_sym_struct] = ACTIONS(2616), + [anon_sym_union] = ACTIONS(2616), + [anon_sym_pub] = ACTIONS(2616), + [anon_sym_mut] = ACTIONS(2616), + [anon_sym_enum] = ACTIONS(2616), + [anon_sym_interface] = ACTIONS(2616), + [anon_sym_PLUS_PLUS] = ACTIONS(2616), + [anon_sym_DASH_DASH] = ACTIONS(2616), + [anon_sym_QMARK] = ACTIONS(2616), + [anon_sym_BANG] = ACTIONS(2616), + [anon_sym_go] = ACTIONS(2616), + [anon_sym_spawn] = ACTIONS(2616), + [anon_sym_json_DOTdecode] = ACTIONS(2616), + [anon_sym_LBRACK2] = ACTIONS(2616), + [anon_sym_TILDE] = ACTIONS(2616), + [anon_sym_CARET] = ACTIONS(2616), + [anon_sym_AMP] = ACTIONS(2616), + [anon_sym_LT_DASH] = ACTIONS(2616), + [anon_sym_LT_LT] = ACTIONS(2616), + [anon_sym_GT_GT] = ACTIONS(2616), + [anon_sym_GT_GT_GT] = ACTIONS(2616), + [anon_sym_AMP_CARET] = ACTIONS(2616), + [anon_sym_AMP_AMP] = ACTIONS(2616), + [anon_sym_PIPE_PIPE] = ACTIONS(2616), + [anon_sym_or] = ACTIONS(2616), + [sym_none] = ACTIONS(2616), + [sym_true] = ACTIONS(2616), + [sym_false] = ACTIONS(2616), + [sym_nil] = ACTIONS(2616), + [anon_sym_QMARK_DOT] = ACTIONS(2616), + [anon_sym_POUND_LBRACK] = ACTIONS(2616), + [anon_sym_if] = ACTIONS(2616), + [anon_sym_DOLLARif] = ACTIONS(2616), + [anon_sym_DOLLARelse] = ACTIONS(3351), + [anon_sym_is] = ACTIONS(2616), + [anon_sym_BANGis] = ACTIONS(2616), + [anon_sym_in] = ACTIONS(2616), + [anon_sym_BANGin] = ACTIONS(2616), + [anon_sym_match] = ACTIONS(2616), + [anon_sym_select] = ACTIONS(2616), + [anon_sym_lock] = ACTIONS(2616), + [anon_sym_rlock] = ACTIONS(2616), + [anon_sym_unsafe] = ACTIONS(2616), + [anon_sym_sql] = ACTIONS(2616), + [sym_int_literal] = ACTIONS(2616), + [sym_float_literal] = ACTIONS(2616), + [sym_rune_literal] = ACTIONS(2616), + [anon_sym_AT] = ACTIONS(2616), + [anon_sym_shared] = ACTIONS(2616), + [anon_sym_map_LBRACK] = ACTIONS(2616), + [anon_sym_chan] = ACTIONS(2616), + [anon_sym_thread] = ACTIONS(2616), + [anon_sym_atomic] = ACTIONS(2616), + [anon_sym_assert] = ACTIONS(2616), + [anon_sym_defer] = ACTIONS(2616), + [anon_sym_goto] = ACTIONS(2616), + [anon_sym_break] = ACTIONS(2616), + [anon_sym_continue] = ACTIONS(2616), + [anon_sym_return] = ACTIONS(2616), + [anon_sym_DOLLARfor] = ACTIONS(2616), + [anon_sym_for] = ACTIONS(2616), + [anon_sym_POUND] = ACTIONS(2616), + [anon_sym_asm] = ACTIONS(2616), + [anon_sym_AT_LBRACK] = ACTIONS(2616), + [sym___double_quote] = ACTIONS(2616), + [sym___single_quote] = ACTIONS(2616), + [sym___c_double_quote] = ACTIONS(2616), + [sym___c_single_quote] = ACTIONS(2616), + [sym___r_double_quote] = ACTIONS(2616), + [sym___r_single_quote] = ACTIONS(2616), }, [999] = { - [ts_builtin_sym_end] = ACTIONS(2969), - [sym_identifier] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2971), - [anon_sym_CR] = ACTIONS(2971), - [anon_sym_CR_LF] = ACTIONS(2971), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2973), - [anon_sym_as] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_const] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym___global] = ACTIONS(2971), - [anon_sym_type] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(2973), - [anon_sym_fn] = ACTIONS(2971), - [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(2976), - [anon_sym_struct] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(2971), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_mut] = ACTIONS(2971), - [anon_sym_enum] = ACTIONS(2971), - [anon_sym_interface] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_BANG] = ACTIONS(2973), - [anon_sym_go] = ACTIONS(2971), - [anon_sym_spawn] = ACTIONS(2971), - [anon_sym_json_DOTdecode] = ACTIONS(2971), - [anon_sym_LBRACK2] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_CARET] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2971), - [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(2971), - [sym_true] = ACTIONS(2971), - [sym_false] = ACTIONS(2971), - [sym_nil] = ACTIONS(2971), - [anon_sym_QMARK_DOT] = ACTIONS(2973), - [anon_sym_POUND_LBRACK] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2971), - [anon_sym_DOLLARif] = ACTIONS(2971), - [anon_sym_is] = ACTIONS(2973), - [anon_sym_BANGis] = ACTIONS(2973), - [anon_sym_in] = ACTIONS(2973), - [anon_sym_BANGin] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [anon_sym_lock] = ACTIONS(2971), - [anon_sym_rlock] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(2971), - [anon_sym_sql] = ACTIONS(2971), - [sym_int_literal] = ACTIONS(2971), - [sym_float_literal] = ACTIONS(2971), - [sym_rune_literal] = ACTIONS(2971), - [anon_sym_AT] = ACTIONS(2971), - [anon_sym_shared] = ACTIONS(2971), - [anon_sym_map_LBRACK] = ACTIONS(2971), - [anon_sym_chan] = ACTIONS(2971), - [anon_sym_thread] = ACTIONS(2971), - [anon_sym_atomic] = ACTIONS(2971), - [anon_sym_assert] = ACTIONS(2971), - [anon_sym_defer] = ACTIONS(2971), - [anon_sym_goto] = ACTIONS(2971), - [anon_sym_break] = ACTIONS(2971), - [anon_sym_continue] = ACTIONS(2971), - [anon_sym_return] = ACTIONS(2971), - [anon_sym_DOLLARfor] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2971), - [anon_sym_POUND] = ACTIONS(2971), - [anon_sym_asm] = ACTIONS(2971), - [anon_sym_AT_LBRACK] = ACTIONS(2971), - [sym___double_quote] = ACTIONS(2971), - [sym___single_quote] = ACTIONS(2971), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2971), - [sym___r_double_quote] = ACTIONS(2971), - [sym___r_single_quote] = ACTIONS(2971), + [ts_builtin_sym_end] = ACTIONS(2734), + [sym_identifier] = ACTIONS(2736), + [anon_sym_LF] = ACTIONS(2736), + [anon_sym_CR] = ACTIONS(2736), + [anon_sym_CR_LF] = ACTIONS(2736), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2736), + [anon_sym_as] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2736), + [anon_sym_COMMA] = ACTIONS(2736), + [anon_sym_const] = ACTIONS(2736), + [anon_sym_LPAREN] = ACTIONS(2736), + [anon_sym___global] = ACTIONS(2736), + [anon_sym_type] = ACTIONS(2736), + [anon_sym_PIPE] = ACTIONS(2736), + [anon_sym_fn] = ACTIONS(2736), + [anon_sym_PLUS] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2736), + [anon_sym_STAR] = ACTIONS(2736), + [anon_sym_SLASH] = ACTIONS(2736), + [anon_sym_PERCENT] = ACTIONS(2736), + [anon_sym_LT] = ACTIONS(2736), + [anon_sym_GT] = ACTIONS(2736), + [anon_sym_EQ_EQ] = ACTIONS(2736), + [anon_sym_BANG_EQ] = ACTIONS(2736), + [anon_sym_LT_EQ] = ACTIONS(2736), + [anon_sym_GT_EQ] = ACTIONS(2736), + [anon_sym_LBRACK] = ACTIONS(2734), + [anon_sym_struct] = ACTIONS(2736), + [anon_sym_union] = ACTIONS(2736), + [anon_sym_pub] = ACTIONS(2736), + [anon_sym_mut] = ACTIONS(2736), + [anon_sym_enum] = ACTIONS(2736), + [anon_sym_interface] = ACTIONS(2736), + [anon_sym_PLUS_PLUS] = ACTIONS(2736), + [anon_sym_DASH_DASH] = ACTIONS(2736), + [anon_sym_QMARK] = ACTIONS(2736), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_go] = ACTIONS(2736), + [anon_sym_spawn] = ACTIONS(2736), + [anon_sym_json_DOTdecode] = ACTIONS(2736), + [anon_sym_LBRACK2] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_CARET] = ACTIONS(2736), + [anon_sym_AMP] = ACTIONS(2736), + [anon_sym_LT_DASH] = ACTIONS(2736), + [anon_sym_LT_LT] = ACTIONS(2736), + [anon_sym_GT_GT] = ACTIONS(2736), + [anon_sym_GT_GT_GT] = ACTIONS(2736), + [anon_sym_AMP_CARET] = ACTIONS(2736), + [anon_sym_AMP_AMP] = ACTIONS(2736), + [anon_sym_PIPE_PIPE] = ACTIONS(2736), + [anon_sym_or] = ACTIONS(2736), + [sym_none] = ACTIONS(2736), + [sym_true] = ACTIONS(2736), + [sym_false] = ACTIONS(2736), + [sym_nil] = ACTIONS(2736), + [anon_sym_QMARK_DOT] = ACTIONS(2736), + [anon_sym_POUND_LBRACK] = ACTIONS(2736), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_else] = ACTIONS(2736), + [anon_sym_DOLLARif] = ACTIONS(2736), + [anon_sym_is] = ACTIONS(2736), + [anon_sym_BANGis] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2736), + [anon_sym_BANGin] = ACTIONS(2736), + [anon_sym_match] = ACTIONS(2736), + [anon_sym_select] = ACTIONS(2736), + [anon_sym_lock] = ACTIONS(2736), + [anon_sym_rlock] = ACTIONS(2736), + [anon_sym_unsafe] = ACTIONS(2736), + [anon_sym_sql] = ACTIONS(2736), + [sym_int_literal] = ACTIONS(2736), + [sym_float_literal] = ACTIONS(2736), + [sym_rune_literal] = ACTIONS(2736), + [anon_sym_AT] = ACTIONS(2736), + [anon_sym_shared] = ACTIONS(2736), + [anon_sym_map_LBRACK] = ACTIONS(2736), + [anon_sym_chan] = ACTIONS(2736), + [anon_sym_thread] = ACTIONS(2736), + [anon_sym_atomic] = ACTIONS(2736), + [anon_sym_assert] = ACTIONS(2736), + [anon_sym_defer] = ACTIONS(2736), + [anon_sym_goto] = ACTIONS(2736), + [anon_sym_break] = ACTIONS(2736), + [anon_sym_continue] = ACTIONS(2736), + [anon_sym_return] = ACTIONS(2736), + [anon_sym_DOLLARfor] = ACTIONS(2736), + [anon_sym_for] = ACTIONS(2736), + [anon_sym_POUND] = ACTIONS(2736), + [anon_sym_asm] = ACTIONS(2736), + [anon_sym_AT_LBRACK] = ACTIONS(2736), + [sym___double_quote] = ACTIONS(2736), + [sym___single_quote] = ACTIONS(2736), + [sym___c_double_quote] = ACTIONS(2736), + [sym___c_single_quote] = ACTIONS(2736), + [sym___r_double_quote] = ACTIONS(2736), + [sym___r_single_quote] = ACTIONS(2736), }, [1000] = { - [ts_builtin_sym_end] = ACTIONS(2830), - [sym_identifier] = ACTIONS(2832), - [anon_sym_LF] = ACTIONS(2832), - [anon_sym_CR] = ACTIONS(2832), - [anon_sym_CR_LF] = ACTIONS(2832), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2832), - [anon_sym_as] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym_const] = ACTIONS(2832), - [anon_sym_LPAREN] = ACTIONS(2832), - [anon_sym___global] = ACTIONS(2832), - [anon_sym_type] = ACTIONS(2832), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_fn] = ACTIONS(2832), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2832), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_PERCENT] = ACTIONS(2832), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_EQ_EQ] = ACTIONS(2832), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_LT_EQ] = ACTIONS(2832), - [anon_sym_GT_EQ] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_struct] = ACTIONS(2832), - [anon_sym_union] = ACTIONS(2832), - [anon_sym_pub] = ACTIONS(2832), - [anon_sym_mut] = ACTIONS(2832), - [anon_sym_enum] = ACTIONS(2832), - [anon_sym_interface] = ACTIONS(2832), - [anon_sym_PLUS_PLUS] = ACTIONS(2832), - [anon_sym_DASH_DASH] = ACTIONS(2832), - [anon_sym_QMARK] = ACTIONS(2832), - [anon_sym_BANG] = ACTIONS(2832), - [anon_sym_go] = ACTIONS(2832), - [anon_sym_spawn] = ACTIONS(2832), - [anon_sym_json_DOTdecode] = ACTIONS(2832), - [anon_sym_LBRACK2] = ACTIONS(2832), - [anon_sym_TILDE] = ACTIONS(2832), - [anon_sym_CARET] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2832), - [anon_sym_LT_DASH] = ACTIONS(2832), - [anon_sym_LT_LT] = ACTIONS(2832), - [anon_sym_GT_GT] = ACTIONS(2832), - [anon_sym_GT_GT_GT] = ACTIONS(2832), - [anon_sym_AMP_CARET] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(2832), - [anon_sym_PIPE_PIPE] = ACTIONS(2832), - [anon_sym_or] = ACTIONS(2832), - [sym_none] = ACTIONS(2832), - [sym_true] = ACTIONS(2832), - [sym_false] = ACTIONS(2832), - [sym_nil] = ACTIONS(2832), - [anon_sym_QMARK_DOT] = ACTIONS(2832), - [anon_sym_POUND_LBRACK] = ACTIONS(2832), - [anon_sym_if] = ACTIONS(2832), - [anon_sym_DOLLARif] = ACTIONS(2832), - [anon_sym_is] = ACTIONS(2832), - [anon_sym_BANGis] = ACTIONS(2832), - [anon_sym_in] = ACTIONS(2832), - [anon_sym_BANGin] = ACTIONS(2832), - [anon_sym_match] = ACTIONS(2832), - [anon_sym_select] = ACTIONS(2832), - [anon_sym_lock] = ACTIONS(2832), - [anon_sym_rlock] = ACTIONS(2832), - [anon_sym_unsafe] = ACTIONS(2832), - [anon_sym_sql] = ACTIONS(2832), - [sym_int_literal] = ACTIONS(2832), - [sym_float_literal] = ACTIONS(2832), - [sym_rune_literal] = ACTIONS(2832), - [anon_sym_AT] = ACTIONS(2832), - [anon_sym_shared] = ACTIONS(2832), - [anon_sym_map_LBRACK] = ACTIONS(2832), - [anon_sym_chan] = ACTIONS(2832), - [anon_sym_thread] = ACTIONS(2832), - [anon_sym_atomic] = ACTIONS(2832), - [anon_sym_assert] = ACTIONS(2832), - [anon_sym_defer] = ACTIONS(2832), - [anon_sym_goto] = ACTIONS(2832), - [anon_sym_break] = ACTIONS(2832), - [anon_sym_continue] = ACTIONS(2832), - [anon_sym_return] = ACTIONS(2832), - [anon_sym_DOLLARfor] = ACTIONS(2832), - [anon_sym_for] = ACTIONS(2832), - [anon_sym_POUND] = ACTIONS(2832), - [anon_sym_asm] = ACTIONS(2832), - [anon_sym_AT_LBRACK] = ACTIONS(2832), - [sym___double_quote] = ACTIONS(2832), - [sym___single_quote] = ACTIONS(2832), - [sym___c_double_quote] = ACTIONS(2832), - [sym___c_single_quote] = ACTIONS(2832), - [sym___r_double_quote] = ACTIONS(2832), - [sym___r_single_quote] = ACTIONS(2832), + [ts_builtin_sym_end] = ACTIONS(2692), + [sym_identifier] = ACTIONS(2694), + [anon_sym_LF] = ACTIONS(2694), + [anon_sym_CR] = ACTIONS(2694), + [anon_sym_CR_LF] = ACTIONS(2694), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2694), + [anon_sym_as] = ACTIONS(2694), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_COMMA] = ACTIONS(2694), + [anon_sym_const] = ACTIONS(2694), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym___global] = ACTIONS(2694), + [anon_sym_type] = ACTIONS(2694), + [anon_sym_PIPE] = ACTIONS(2694), + [anon_sym_fn] = ACTIONS(2694), + [anon_sym_PLUS] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(2694), + [anon_sym_SLASH] = ACTIONS(2694), + [anon_sym_PERCENT] = ACTIONS(2694), + [anon_sym_LT] = ACTIONS(2694), + [anon_sym_GT] = ACTIONS(2694), + [anon_sym_EQ_EQ] = ACTIONS(2694), + [anon_sym_BANG_EQ] = ACTIONS(2694), + [anon_sym_LT_EQ] = ACTIONS(2694), + [anon_sym_GT_EQ] = ACTIONS(2694), + [anon_sym_LBRACK] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2694), + [anon_sym_union] = ACTIONS(2694), + [anon_sym_pub] = ACTIONS(2694), + [anon_sym_mut] = ACTIONS(2694), + [anon_sym_enum] = ACTIONS(2694), + [anon_sym_interface] = ACTIONS(2694), + [anon_sym_PLUS_PLUS] = ACTIONS(2694), + [anon_sym_DASH_DASH] = ACTIONS(2694), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_BANG] = ACTIONS(2694), + [anon_sym_go] = ACTIONS(2694), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2694), + [anon_sym_LBRACK2] = ACTIONS(2694), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_CARET] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2694), + [anon_sym_LT_DASH] = ACTIONS(2694), + [anon_sym_LT_LT] = ACTIONS(2694), + [anon_sym_GT_GT] = ACTIONS(2694), + [anon_sym_GT_GT_GT] = ACTIONS(2694), + [anon_sym_AMP_CARET] = ACTIONS(2694), + [anon_sym_AMP_AMP] = ACTIONS(2694), + [anon_sym_PIPE_PIPE] = ACTIONS(2694), + [anon_sym_or] = ACTIONS(2694), + [sym_none] = ACTIONS(2694), + [sym_true] = ACTIONS(2694), + [sym_false] = ACTIONS(2694), + [sym_nil] = ACTIONS(2694), + [anon_sym_QMARK_DOT] = ACTIONS(2694), + [anon_sym_POUND_LBRACK] = ACTIONS(2694), + [anon_sym_if] = ACTIONS(2694), + [anon_sym_else] = ACTIONS(2694), + [anon_sym_DOLLARif] = ACTIONS(2694), + [anon_sym_is] = ACTIONS(2694), + [anon_sym_BANGis] = ACTIONS(2694), + [anon_sym_in] = ACTIONS(2694), + [anon_sym_BANGin] = ACTIONS(2694), + [anon_sym_match] = ACTIONS(2694), + [anon_sym_select] = ACTIONS(2694), + [anon_sym_lock] = ACTIONS(2694), + [anon_sym_rlock] = ACTIONS(2694), + [anon_sym_unsafe] = ACTIONS(2694), + [anon_sym_sql] = ACTIONS(2694), + [sym_int_literal] = ACTIONS(2694), + [sym_float_literal] = ACTIONS(2694), + [sym_rune_literal] = ACTIONS(2694), + [anon_sym_AT] = ACTIONS(2694), + [anon_sym_shared] = ACTIONS(2694), + [anon_sym_map_LBRACK] = ACTIONS(2694), + [anon_sym_chan] = ACTIONS(2694), + [anon_sym_thread] = ACTIONS(2694), + [anon_sym_atomic] = ACTIONS(2694), + [anon_sym_assert] = ACTIONS(2694), + [anon_sym_defer] = ACTIONS(2694), + [anon_sym_goto] = ACTIONS(2694), + [anon_sym_break] = ACTIONS(2694), + [anon_sym_continue] = ACTIONS(2694), + [anon_sym_return] = ACTIONS(2694), + [anon_sym_DOLLARfor] = ACTIONS(2694), + [anon_sym_for] = ACTIONS(2694), + [anon_sym_POUND] = ACTIONS(2694), + [anon_sym_asm] = ACTIONS(2694), + [anon_sym_AT_LBRACK] = ACTIONS(2694), + [sym___double_quote] = ACTIONS(2694), + [sym___single_quote] = ACTIONS(2694), + [sym___c_double_quote] = ACTIONS(2694), + [sym___c_single_quote] = ACTIONS(2694), + [sym___r_double_quote] = ACTIONS(2694), + [sym___r_single_quote] = ACTIONS(2694), }, [1001] = { - [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), - [sym_comment] = ACTIONS(487), - [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_AT] = 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), - [sym___double_quote] = ACTIONS(3021), - [sym___single_quote] = ACTIONS(3021), - [sym___c_double_quote] = ACTIONS(3021), - [sym___c_single_quote] = ACTIONS(3021), - [sym___r_double_quote] = ACTIONS(3021), - [sym___r_single_quote] = ACTIONS(3021), + [ts_builtin_sym_end] = ACTIONS(2734), + [sym_identifier] = ACTIONS(2736), + [anon_sym_LF] = ACTIONS(2736), + [anon_sym_CR] = ACTIONS(2736), + [anon_sym_CR_LF] = ACTIONS(2736), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2736), + [anon_sym_as] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2736), + [anon_sym_COMMA] = ACTIONS(2736), + [anon_sym_const] = ACTIONS(2736), + [anon_sym_LPAREN] = ACTIONS(2736), + [anon_sym___global] = ACTIONS(2736), + [anon_sym_type] = ACTIONS(2736), + [anon_sym_PIPE] = ACTIONS(2736), + [anon_sym_fn] = ACTIONS(2736), + [anon_sym_PLUS] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2736), + [anon_sym_STAR] = ACTIONS(2736), + [anon_sym_SLASH] = ACTIONS(2736), + [anon_sym_PERCENT] = ACTIONS(2736), + [anon_sym_LT] = ACTIONS(2736), + [anon_sym_GT] = ACTIONS(2736), + [anon_sym_EQ_EQ] = ACTIONS(2736), + [anon_sym_BANG_EQ] = ACTIONS(2736), + [anon_sym_LT_EQ] = ACTIONS(2736), + [anon_sym_GT_EQ] = ACTIONS(2736), + [anon_sym_LBRACK] = ACTIONS(2734), + [anon_sym_struct] = ACTIONS(2736), + [anon_sym_union] = ACTIONS(2736), + [anon_sym_pub] = ACTIONS(2736), + [anon_sym_mut] = ACTIONS(2736), + [anon_sym_enum] = ACTIONS(2736), + [anon_sym_interface] = ACTIONS(2736), + [anon_sym_PLUS_PLUS] = ACTIONS(2736), + [anon_sym_DASH_DASH] = ACTIONS(2736), + [anon_sym_QMARK] = ACTIONS(2736), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_go] = ACTIONS(2736), + [anon_sym_spawn] = ACTIONS(2736), + [anon_sym_json_DOTdecode] = ACTIONS(2736), + [anon_sym_LBRACK2] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_CARET] = ACTIONS(2736), + [anon_sym_AMP] = ACTIONS(2736), + [anon_sym_LT_DASH] = ACTIONS(2736), + [anon_sym_LT_LT] = ACTIONS(2736), + [anon_sym_GT_GT] = ACTIONS(2736), + [anon_sym_GT_GT_GT] = ACTIONS(2736), + [anon_sym_AMP_CARET] = ACTIONS(2736), + [anon_sym_AMP_AMP] = ACTIONS(2736), + [anon_sym_PIPE_PIPE] = ACTIONS(2736), + [anon_sym_or] = ACTIONS(2736), + [sym_none] = ACTIONS(2736), + [sym_true] = ACTIONS(2736), + [sym_false] = ACTIONS(2736), + [sym_nil] = ACTIONS(2736), + [anon_sym_QMARK_DOT] = ACTIONS(2736), + [anon_sym_POUND_LBRACK] = ACTIONS(2736), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_DOLLARif] = ACTIONS(2736), + [anon_sym_DOLLARelse] = ACTIONS(2736), + [anon_sym_is] = ACTIONS(2736), + [anon_sym_BANGis] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2736), + [anon_sym_BANGin] = ACTIONS(2736), + [anon_sym_match] = ACTIONS(2736), + [anon_sym_select] = ACTIONS(2736), + [anon_sym_lock] = ACTIONS(2736), + [anon_sym_rlock] = ACTIONS(2736), + [anon_sym_unsafe] = ACTIONS(2736), + [anon_sym_sql] = ACTIONS(2736), + [sym_int_literal] = ACTIONS(2736), + [sym_float_literal] = ACTIONS(2736), + [sym_rune_literal] = ACTIONS(2736), + [anon_sym_AT] = ACTIONS(2736), + [anon_sym_shared] = ACTIONS(2736), + [anon_sym_map_LBRACK] = ACTIONS(2736), + [anon_sym_chan] = ACTIONS(2736), + [anon_sym_thread] = ACTIONS(2736), + [anon_sym_atomic] = ACTIONS(2736), + [anon_sym_assert] = ACTIONS(2736), + [anon_sym_defer] = ACTIONS(2736), + [anon_sym_goto] = ACTIONS(2736), + [anon_sym_break] = ACTIONS(2736), + [anon_sym_continue] = ACTIONS(2736), + [anon_sym_return] = ACTIONS(2736), + [anon_sym_DOLLARfor] = ACTIONS(2736), + [anon_sym_for] = ACTIONS(2736), + [anon_sym_POUND] = ACTIONS(2736), + [anon_sym_asm] = ACTIONS(2736), + [anon_sym_AT_LBRACK] = ACTIONS(2736), + [sym___double_quote] = ACTIONS(2736), + [sym___single_quote] = ACTIONS(2736), + [sym___c_double_quote] = ACTIONS(2736), + [sym___c_single_quote] = ACTIONS(2736), + [sym___r_double_quote] = ACTIONS(2736), + [sym___r_single_quote] = ACTIONS(2736), }, [1002] = { - [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), - [sym_comment] = ACTIONS(487), - [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_AT] = 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), - [sym___double_quote] = ACTIONS(3025), - [sym___single_quote] = ACTIONS(3025), - [sym___c_double_quote] = ACTIONS(3025), - [sym___c_single_quote] = ACTIONS(3025), - [sym___r_double_quote] = ACTIONS(3025), - [sym___r_single_quote] = ACTIONS(3025), + [sym_type_parameters] = STATE(1096), + [ts_builtin_sym_end] = ACTIONS(2762), + [sym_identifier] = ACTIONS(2764), + [anon_sym_LF] = ACTIONS(2764), + [anon_sym_CR] = ACTIONS(2764), + [anon_sym_CR_LF] = ACTIONS(2764), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2764), + [anon_sym_as] = ACTIONS(2764), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_COMMA] = ACTIONS(2764), + [anon_sym_const] = ACTIONS(2764), + [anon_sym_LPAREN] = ACTIONS(2764), + [anon_sym___global] = ACTIONS(2764), + [anon_sym_type] = ACTIONS(2764), + [anon_sym_PIPE] = ACTIONS(2764), + [anon_sym_fn] = ACTIONS(2764), + [anon_sym_PLUS] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2764), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_SLASH] = ACTIONS(2764), + [anon_sym_PERCENT] = ACTIONS(2764), + [anon_sym_LT] = ACTIONS(2764), + [anon_sym_GT] = ACTIONS(2764), + [anon_sym_EQ_EQ] = ACTIONS(2764), + [anon_sym_BANG_EQ] = ACTIONS(2764), + [anon_sym_LT_EQ] = ACTIONS(2764), + [anon_sym_GT_EQ] = ACTIONS(2764), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2764), + [anon_sym_union] = ACTIONS(2764), + [anon_sym_pub] = ACTIONS(2764), + [anon_sym_mut] = ACTIONS(2764), + [anon_sym_enum] = ACTIONS(2764), + [anon_sym_interface] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_QMARK] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_go] = ACTIONS(2764), + [anon_sym_spawn] = ACTIONS(2764), + [anon_sym_json_DOTdecode] = ACTIONS(2764), + [anon_sym_LBRACK2] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_CARET] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_LT_DASH] = ACTIONS(2764), + [anon_sym_LT_LT] = ACTIONS(2764), + [anon_sym_GT_GT] = ACTIONS(2764), + [anon_sym_GT_GT_GT] = ACTIONS(2764), + [anon_sym_AMP_CARET] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_PIPE_PIPE] = ACTIONS(2764), + [anon_sym_or] = ACTIONS(2764), + [sym_none] = ACTIONS(2764), + [sym_true] = ACTIONS(2764), + [sym_false] = ACTIONS(2764), + [sym_nil] = ACTIONS(2764), + [anon_sym_QMARK_DOT] = ACTIONS(2764), + [anon_sym_POUND_LBRACK] = ACTIONS(2764), + [anon_sym_if] = ACTIONS(2764), + [anon_sym_DOLLARif] = ACTIONS(2764), + [anon_sym_is] = ACTIONS(2764), + [anon_sym_BANGis] = ACTIONS(2764), + [anon_sym_in] = ACTIONS(2764), + [anon_sym_BANGin] = ACTIONS(2764), + [anon_sym_match] = ACTIONS(2764), + [anon_sym_select] = ACTIONS(2764), + [anon_sym_lock] = ACTIONS(2764), + [anon_sym_rlock] = ACTIONS(2764), + [anon_sym_unsafe] = ACTIONS(2764), + [anon_sym_sql] = ACTIONS(2764), + [sym_int_literal] = ACTIONS(2764), + [sym_float_literal] = ACTIONS(2764), + [sym_rune_literal] = ACTIONS(2764), + [anon_sym_AT] = ACTIONS(2764), + [anon_sym_shared] = ACTIONS(2764), + [anon_sym_map_LBRACK] = ACTIONS(2764), + [anon_sym_chan] = ACTIONS(2764), + [anon_sym_thread] = ACTIONS(2764), + [anon_sym_atomic] = ACTIONS(2764), + [anon_sym_assert] = ACTIONS(2764), + [anon_sym_defer] = ACTIONS(2764), + [anon_sym_goto] = ACTIONS(2764), + [anon_sym_break] = ACTIONS(2764), + [anon_sym_continue] = ACTIONS(2764), + [anon_sym_return] = ACTIONS(2764), + [anon_sym_DOLLARfor] = ACTIONS(2764), + [anon_sym_for] = ACTIONS(2764), + [anon_sym_POUND] = ACTIONS(2764), + [anon_sym_asm] = ACTIONS(2764), + [anon_sym_AT_LBRACK] = ACTIONS(2764), + [sym___double_quote] = ACTIONS(2764), + [sym___single_quote] = ACTIONS(2764), + [sym___c_double_quote] = ACTIONS(2764), + [sym___c_single_quote] = ACTIONS(2764), + [sym___r_double_quote] = ACTIONS(2764), + [sym___r_single_quote] = ACTIONS(2764), }, [1003] = { - [ts_builtin_sym_end] = ACTIONS(2929), - [sym_identifier] = ACTIONS(2931), - [anon_sym_LF] = ACTIONS(2931), - [anon_sym_CR] = ACTIONS(2931), - [anon_sym_CR_LF] = ACTIONS(2931), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2931), - [anon_sym_as] = ACTIONS(2931), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_COMMA] = ACTIONS(2931), - [anon_sym_const] = ACTIONS(2931), - [anon_sym_LPAREN] = ACTIONS(2931), - [anon_sym___global] = ACTIONS(2931), - [anon_sym_type] = ACTIONS(2931), - [anon_sym_PIPE] = ACTIONS(2931), - [anon_sym_fn] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2931), - [anon_sym_STAR] = ACTIONS(2931), - [anon_sym_SLASH] = ACTIONS(2931), - [anon_sym_PERCENT] = ACTIONS(2931), - [anon_sym_LT] = ACTIONS(2931), - [anon_sym_GT] = ACTIONS(2931), - [anon_sym_EQ_EQ] = ACTIONS(2931), - [anon_sym_BANG_EQ] = ACTIONS(2931), - [anon_sym_LT_EQ] = ACTIONS(2931), - [anon_sym_GT_EQ] = ACTIONS(2931), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_union] = ACTIONS(2931), - [anon_sym_pub] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(2931), - [anon_sym_enum] = ACTIONS(2931), - [anon_sym_interface] = ACTIONS(2931), - [anon_sym_PLUS_PLUS] = ACTIONS(2931), - [anon_sym_DASH_DASH] = ACTIONS(2931), - [anon_sym_QMARK] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2931), - [anon_sym_go] = ACTIONS(2931), - [anon_sym_spawn] = ACTIONS(2931), - [anon_sym_json_DOTdecode] = ACTIONS(2931), - [anon_sym_LBRACK2] = ACTIONS(2931), - [anon_sym_TILDE] = ACTIONS(2931), - [anon_sym_CARET] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(2931), - [anon_sym_LT_DASH] = ACTIONS(2931), - [anon_sym_LT_LT] = ACTIONS(2931), - [anon_sym_GT_GT] = ACTIONS(2931), - [anon_sym_GT_GT_GT] = ACTIONS(2931), - [anon_sym_AMP_CARET] = ACTIONS(2931), - [anon_sym_AMP_AMP] = ACTIONS(2931), - [anon_sym_PIPE_PIPE] = ACTIONS(2931), - [anon_sym_or] = ACTIONS(2931), - [sym_none] = ACTIONS(2931), - [sym_true] = ACTIONS(2931), - [sym_false] = ACTIONS(2931), - [sym_nil] = ACTIONS(2931), - [anon_sym_QMARK_DOT] = ACTIONS(2931), - [anon_sym_POUND_LBRACK] = ACTIONS(2931), - [anon_sym_if] = ACTIONS(2931), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_BANGis] = ACTIONS(2931), - [anon_sym_in] = ACTIONS(2931), - [anon_sym_BANGin] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2931), - [anon_sym_select] = ACTIONS(2931), - [anon_sym_lock] = ACTIONS(2931), - [anon_sym_rlock] = ACTIONS(2931), - [anon_sym_unsafe] = ACTIONS(2931), - [anon_sym_sql] = ACTIONS(2931), - [sym_int_literal] = ACTIONS(2931), - [sym_float_literal] = ACTIONS(2931), - [sym_rune_literal] = ACTIONS(2931), - [anon_sym_AT] = ACTIONS(2931), - [anon_sym_shared] = ACTIONS(2931), - [anon_sym_map_LBRACK] = ACTIONS(2931), - [anon_sym_chan] = ACTIONS(2931), - [anon_sym_thread] = ACTIONS(2931), - [anon_sym_atomic] = ACTIONS(2931), - [anon_sym_assert] = ACTIONS(2931), - [anon_sym_defer] = ACTIONS(2931), - [anon_sym_goto] = ACTIONS(2931), - [anon_sym_break] = ACTIONS(2931), - [anon_sym_continue] = ACTIONS(2931), - [anon_sym_return] = ACTIONS(2931), - [anon_sym_DOLLARfor] = ACTIONS(2931), - [anon_sym_for] = ACTIONS(2931), - [anon_sym_POUND] = ACTIONS(2931), - [anon_sym_asm] = ACTIONS(2931), - [anon_sym_AT_LBRACK] = ACTIONS(2931), - [sym___double_quote] = ACTIONS(2931), - [sym___single_quote] = ACTIONS(2931), - [sym___c_double_quote] = ACTIONS(2931), - [sym___c_single_quote] = ACTIONS(2931), - [sym___r_double_quote] = ACTIONS(2931), - [sym___r_single_quote] = ACTIONS(2931), - }, - [1004] = { - [ts_builtin_sym_end] = ACTIONS(3191), - [sym_identifier] = ACTIONS(3193), - [anon_sym_LF] = ACTIONS(3193), - [anon_sym_CR] = ACTIONS(3193), - [anon_sym_CR_LF] = ACTIONS(3193), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3193), - [anon_sym_as] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_COMMA] = ACTIONS(3193), - [anon_sym_const] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym___global] = ACTIONS(3193), - [anon_sym_type] = ACTIONS(3193), - [anon_sym_PIPE] = ACTIONS(3193), - [anon_sym_fn] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(3193), - [anon_sym_SLASH] = ACTIONS(3193), - [anon_sym_PERCENT] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(3193), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_LT_EQ] = ACTIONS(3193), - [anon_sym_GT_EQ] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3191), - [anon_sym_struct] = ACTIONS(3193), - [anon_sym_union] = ACTIONS(3193), - [anon_sym_pub] = ACTIONS(3193), - [anon_sym_mut] = ACTIONS(3193), - [anon_sym_enum] = ACTIONS(3193), - [anon_sym_interface] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3193), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [anon_sym_QMARK] = ACTIONS(3193), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_go] = ACTIONS(3193), - [anon_sym_spawn] = ACTIONS(3193), - [anon_sym_json_DOTdecode] = ACTIONS(3193), - [anon_sym_LBRACK2] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_CARET] = ACTIONS(3193), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT_DASH] = ACTIONS(3193), - [anon_sym_LT_LT] = ACTIONS(3193), - [anon_sym_GT_GT] = ACTIONS(3193), - [anon_sym_GT_GT_GT] = ACTIONS(3193), - [anon_sym_AMP_CARET] = ACTIONS(3193), - [anon_sym_AMP_AMP] = ACTIONS(3193), - [anon_sym_PIPE_PIPE] = ACTIONS(3193), - [anon_sym_or] = ACTIONS(3193), - [sym_none] = ACTIONS(3193), - [sym_true] = ACTIONS(3193), - [sym_false] = ACTIONS(3193), - [sym_nil] = ACTIONS(3193), - [anon_sym_QMARK_DOT] = ACTIONS(3193), - [anon_sym_POUND_LBRACK] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_DOLLARif] = ACTIONS(3193), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3193), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_BANGin] = ACTIONS(3193), - [anon_sym_match] = ACTIONS(3193), - [anon_sym_select] = ACTIONS(3193), - [anon_sym_lock] = ACTIONS(3193), - [anon_sym_rlock] = ACTIONS(3193), - [anon_sym_unsafe] = ACTIONS(3193), - [anon_sym_sql] = ACTIONS(3193), - [sym_int_literal] = ACTIONS(3193), - [sym_float_literal] = ACTIONS(3193), - [sym_rune_literal] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(3193), - [anon_sym_shared] = ACTIONS(3193), - [anon_sym_map_LBRACK] = ACTIONS(3193), - [anon_sym_chan] = ACTIONS(3193), - [anon_sym_thread] = ACTIONS(3193), - [anon_sym_atomic] = ACTIONS(3193), - [anon_sym_assert] = ACTIONS(3193), - [anon_sym_defer] = ACTIONS(3193), - [anon_sym_goto] = ACTIONS(3193), - [anon_sym_break] = ACTIONS(3193), - [anon_sym_continue] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3193), - [anon_sym_DOLLARfor] = ACTIONS(3193), - [anon_sym_for] = ACTIONS(3193), - [anon_sym_POUND] = ACTIONS(3193), - [anon_sym_asm] = ACTIONS(3193), - [anon_sym_AT_LBRACK] = ACTIONS(3193), - [sym___double_quote] = ACTIONS(3193), - [sym___single_quote] = ACTIONS(3193), - [sym___c_double_quote] = ACTIONS(3193), - [sym___c_single_quote] = ACTIONS(3193), - [sym___r_double_quote] = ACTIONS(3193), - [sym___r_single_quote] = ACTIONS(3193), - }, - [1005] = { - [ts_builtin_sym_end] = ACTIONS(2846), - [sym_identifier] = ACTIONS(2848), - [anon_sym_LF] = ACTIONS(2848), - [anon_sym_CR] = ACTIONS(2848), - [anon_sym_CR_LF] = ACTIONS(2848), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2848), - [anon_sym_as] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2848), - [anon_sym_COMMA] = ACTIONS(2848), - [anon_sym_const] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym___global] = ACTIONS(2848), - [anon_sym_type] = ACTIONS(2848), - [anon_sym_PIPE] = ACTIONS(2848), - [anon_sym_fn] = ACTIONS(2848), - [anon_sym_PLUS] = ACTIONS(2848), - [anon_sym_DASH] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2848), - [anon_sym_SLASH] = ACTIONS(2848), - [anon_sym_PERCENT] = ACTIONS(2848), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_GT] = ACTIONS(2848), - [anon_sym_EQ_EQ] = ACTIONS(2848), - [anon_sym_BANG_EQ] = ACTIONS(2848), - [anon_sym_LT_EQ] = ACTIONS(2848), - [anon_sym_GT_EQ] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2846), - [anon_sym_struct] = ACTIONS(2848), - [anon_sym_union] = ACTIONS(2848), - [anon_sym_pub] = ACTIONS(2848), - [anon_sym_mut] = ACTIONS(2848), - [anon_sym_enum] = ACTIONS(2848), - [anon_sym_interface] = ACTIONS(2848), - [anon_sym_PLUS_PLUS] = ACTIONS(2848), - [anon_sym_DASH_DASH] = ACTIONS(2848), - [anon_sym_QMARK] = ACTIONS(2848), - [anon_sym_BANG] = ACTIONS(2848), - [anon_sym_go] = ACTIONS(2848), - [anon_sym_spawn] = ACTIONS(2848), - [anon_sym_json_DOTdecode] = ACTIONS(2848), - [anon_sym_LBRACK2] = ACTIONS(2848), - [anon_sym_TILDE] = ACTIONS(2848), - [anon_sym_CARET] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2848), - [anon_sym_LT_DASH] = ACTIONS(2848), - [anon_sym_LT_LT] = ACTIONS(2848), - [anon_sym_GT_GT] = ACTIONS(2848), - [anon_sym_GT_GT_GT] = ACTIONS(2848), - [anon_sym_AMP_CARET] = ACTIONS(2848), - [anon_sym_AMP_AMP] = ACTIONS(2848), - [anon_sym_PIPE_PIPE] = ACTIONS(2848), - [anon_sym_or] = ACTIONS(2848), - [sym_none] = ACTIONS(2848), - [sym_true] = ACTIONS(2848), - [sym_false] = ACTIONS(2848), - [sym_nil] = ACTIONS(2848), - [anon_sym_QMARK_DOT] = ACTIONS(2848), - [anon_sym_POUND_LBRACK] = ACTIONS(2848), - [anon_sym_if] = ACTIONS(2848), - [anon_sym_DOLLARif] = ACTIONS(2848), - [anon_sym_is] = ACTIONS(2848), - [anon_sym_BANGis] = ACTIONS(2848), - [anon_sym_in] = ACTIONS(2848), - [anon_sym_BANGin] = ACTIONS(2848), - [anon_sym_match] = ACTIONS(2848), - [anon_sym_select] = ACTIONS(2848), - [anon_sym_lock] = ACTIONS(2848), - [anon_sym_rlock] = ACTIONS(2848), - [anon_sym_unsafe] = ACTIONS(2848), - [anon_sym_sql] = ACTIONS(2848), - [sym_int_literal] = ACTIONS(2848), - [sym_float_literal] = ACTIONS(2848), - [sym_rune_literal] = ACTIONS(2848), - [anon_sym_AT] = ACTIONS(2848), - [anon_sym_shared] = ACTIONS(2848), - [anon_sym_map_LBRACK] = ACTIONS(2848), - [anon_sym_chan] = ACTIONS(2848), - [anon_sym_thread] = ACTIONS(2848), - [anon_sym_atomic] = ACTIONS(2848), - [anon_sym_assert] = ACTIONS(2848), - [anon_sym_defer] = ACTIONS(2848), - [anon_sym_goto] = ACTIONS(2848), - [anon_sym_break] = ACTIONS(2848), - [anon_sym_continue] = ACTIONS(2848), - [anon_sym_return] = ACTIONS(2848), - [anon_sym_DOLLARfor] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2848), - [anon_sym_POUND] = ACTIONS(2848), - [anon_sym_asm] = ACTIONS(2848), - [anon_sym_AT_LBRACK] = ACTIONS(2848), - [sym___double_quote] = ACTIONS(2848), - [sym___single_quote] = ACTIONS(2848), - [sym___c_double_quote] = ACTIONS(2848), - [sym___c_single_quote] = ACTIONS(2848), - [sym___r_double_quote] = ACTIONS(2848), - [sym___r_single_quote] = ACTIONS(2848), + [ts_builtin_sym_end] = ACTIONS(3123), + [sym_identifier] = ACTIONS(3125), + [anon_sym_LF] = ACTIONS(3125), + [anon_sym_CR] = ACTIONS(3125), + [anon_sym_CR_LF] = ACTIONS(3125), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3125), + [anon_sym_as] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(3125), + [anon_sym_COMMA] = ACTIONS(3125), + [anon_sym_const] = ACTIONS(3125), + [anon_sym_LPAREN] = ACTIONS(3125), + [anon_sym___global] = ACTIONS(3125), + [anon_sym_type] = ACTIONS(3125), + [anon_sym_PIPE] = ACTIONS(3125), + [anon_sym_fn] = ACTIONS(3125), + [anon_sym_PLUS] = ACTIONS(3125), + [anon_sym_DASH] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(3125), + [anon_sym_SLASH] = ACTIONS(3125), + [anon_sym_PERCENT] = ACTIONS(3125), + [anon_sym_LT] = ACTIONS(3125), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_EQ] = ACTIONS(3125), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_struct] = ACTIONS(3125), + [anon_sym_union] = ACTIONS(3125), + [anon_sym_pub] = ACTIONS(3125), + [anon_sym_mut] = ACTIONS(3125), + [anon_sym_enum] = ACTIONS(3125), + [anon_sym_interface] = ACTIONS(3125), + [anon_sym_PLUS_PLUS] = ACTIONS(3125), + [anon_sym_DASH_DASH] = ACTIONS(3125), + [anon_sym_QMARK] = ACTIONS(3125), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_go] = ACTIONS(3125), + [anon_sym_spawn] = ACTIONS(3125), + [anon_sym_json_DOTdecode] = ACTIONS(3125), + [anon_sym_LBRACK2] = ACTIONS(3125), + [anon_sym_TILDE] = ACTIONS(3125), + [anon_sym_CARET] = ACTIONS(3125), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_LT_DASH] = ACTIONS(3125), + [anon_sym_LT_LT] = ACTIONS(3125), + [anon_sym_GT_GT] = ACTIONS(3125), + [anon_sym_GT_GT_GT] = ACTIONS(3125), + [anon_sym_AMP_CARET] = ACTIONS(3125), + [anon_sym_AMP_AMP] = ACTIONS(3125), + [anon_sym_PIPE_PIPE] = ACTIONS(3125), + [anon_sym_or] = ACTIONS(3125), + [sym_none] = ACTIONS(3125), + [sym_true] = ACTIONS(3125), + [sym_false] = ACTIONS(3125), + [sym_nil] = ACTIONS(3125), + [anon_sym_QMARK_DOT] = ACTIONS(3125), + [anon_sym_POUND_LBRACK] = ACTIONS(3125), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_DOLLARif] = ACTIONS(3125), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3125), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_BANGin] = ACTIONS(3125), + [anon_sym_match] = ACTIONS(3125), + [anon_sym_select] = ACTIONS(3125), + [anon_sym_lock] = ACTIONS(3125), + [anon_sym_rlock] = ACTIONS(3125), + [anon_sym_unsafe] = ACTIONS(3125), + [anon_sym_sql] = ACTIONS(3125), + [sym_int_literal] = ACTIONS(3125), + [sym_float_literal] = ACTIONS(3125), + [sym_rune_literal] = ACTIONS(3125), + [anon_sym_AT] = ACTIONS(3125), + [anon_sym_shared] = ACTIONS(3125), + [anon_sym_map_LBRACK] = ACTIONS(3125), + [anon_sym_chan] = ACTIONS(3125), + [anon_sym_thread] = ACTIONS(3125), + [anon_sym_atomic] = ACTIONS(3125), + [anon_sym_assert] = ACTIONS(3125), + [anon_sym_defer] = ACTIONS(3125), + [anon_sym_goto] = ACTIONS(3125), + [anon_sym_break] = ACTIONS(3125), + [anon_sym_continue] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3125), + [anon_sym_DOLLARfor] = ACTIONS(3125), + [anon_sym_for] = ACTIONS(3125), + [anon_sym_POUND] = ACTIONS(3125), + [anon_sym_asm] = ACTIONS(3125), + [anon_sym_AT_LBRACK] = ACTIONS(3125), + [sym___double_quote] = ACTIONS(3125), + [sym___single_quote] = ACTIONS(3125), + [sym___c_double_quote] = ACTIONS(3125), + [sym___c_single_quote] = ACTIONS(3125), + [sym___r_double_quote] = ACTIONS(3125), + [sym___r_single_quote] = ACTIONS(3125), + }, + [1004] = { + [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), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3054), + [sym___single_quote] = ACTIONS(3054), + [sym___c_double_quote] = ACTIONS(3054), + [sym___c_single_quote] = ACTIONS(3054), + [sym___r_double_quote] = ACTIONS(3054), + [sym___r_single_quote] = ACTIONS(3054), + }, + [1005] = { + [ts_builtin_sym_end] = ACTIONS(3116), + [sym_identifier] = ACTIONS(3118), + [anon_sym_LF] = ACTIONS(3118), + [anon_sym_CR] = ACTIONS(3118), + [anon_sym_CR_LF] = ACTIONS(3118), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3120), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_COMMA] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym___global] = ACTIONS(3118), + [anon_sym_type] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_fn] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), + [anon_sym_pub] = ACTIONS(3118), + [anon_sym_mut] = ACTIONS(3118), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_interface] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3118), + [anon_sym_DASH_DASH] = ACTIONS(3118), + [anon_sym_QMARK] = ACTIONS(3118), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_go] = ACTIONS(3118), + [anon_sym_spawn] = ACTIONS(3118), + [anon_sym_json_DOTdecode] = ACTIONS(3118), + [anon_sym_LBRACK2] = ACTIONS(3118), + [anon_sym_TILDE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_LT_DASH] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym_GT_GT_GT] = ACTIONS(3118), + [anon_sym_AMP_CARET] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3118), + [anon_sym_or] = ACTIONS(3118), + [sym_none] = ACTIONS(3118), + [sym_true] = ACTIONS(3118), + [sym_false] = ACTIONS(3118), + [sym_nil] = ACTIONS(3118), + [anon_sym_QMARK_DOT] = ACTIONS(3118), + [anon_sym_POUND_LBRACK] = ACTIONS(3118), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_DOLLARif] = ACTIONS(3118), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3118), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_BANGin] = ACTIONS(3118), + [anon_sym_match] = ACTIONS(3118), + [anon_sym_select] = ACTIONS(3118), + [anon_sym_lock] = ACTIONS(3118), + [anon_sym_rlock] = ACTIONS(3118), + [anon_sym_unsafe] = ACTIONS(3118), + [anon_sym_sql] = ACTIONS(3118), + [sym_int_literal] = ACTIONS(3118), + [sym_float_literal] = ACTIONS(3118), + [sym_rune_literal] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3118), + [anon_sym_shared] = ACTIONS(3118), + [anon_sym_map_LBRACK] = ACTIONS(3118), + [anon_sym_chan] = ACTIONS(3118), + [anon_sym_thread] = ACTIONS(3118), + [anon_sym_atomic] = ACTIONS(3118), + [anon_sym_assert] = ACTIONS(3118), + [anon_sym_defer] = ACTIONS(3118), + [anon_sym_goto] = ACTIONS(3118), + [anon_sym_break] = ACTIONS(3118), + [anon_sym_continue] = ACTIONS(3118), + [anon_sym_return] = ACTIONS(3118), + [anon_sym_DOLLARfor] = ACTIONS(3118), + [anon_sym_for] = ACTIONS(3118), + [anon_sym_POUND] = ACTIONS(3118), + [anon_sym_asm] = ACTIONS(3118), + [anon_sym_AT_LBRACK] = ACTIONS(3118), + [sym___double_quote] = ACTIONS(3118), + [sym___single_quote] = ACTIONS(3118), + [sym___c_double_quote] = ACTIONS(3118), + [sym___c_single_quote] = ACTIONS(3118), + [sym___r_double_quote] = ACTIONS(3118), + [sym___r_single_quote] = ACTIONS(3118), }, [1006] = { - [ts_builtin_sym_end] = ACTIONS(3015), - [sym_identifier] = ACTIONS(3017), - [anon_sym_LF] = ACTIONS(3017), - [anon_sym_CR] = ACTIONS(3017), - [anon_sym_CR_LF] = ACTIONS(3017), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_as] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_COMMA] = ACTIONS(3017), - [anon_sym_const] = ACTIONS(3017), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym___global] = ACTIONS(3017), - [anon_sym_type] = ACTIONS(3017), - [anon_sym_PIPE] = ACTIONS(3017), - [anon_sym_fn] = ACTIONS(3017), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_SLASH] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3017), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_LT_EQ] = ACTIONS(3017), - [anon_sym_GT_EQ] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_struct] = ACTIONS(3017), - [anon_sym_union] = ACTIONS(3017), - [anon_sym_pub] = ACTIONS(3017), - [anon_sym_mut] = ACTIONS(3017), - [anon_sym_enum] = ACTIONS(3017), - [anon_sym_interface] = ACTIONS(3017), - [anon_sym_PLUS_PLUS] = ACTIONS(3017), - [anon_sym_DASH_DASH] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3017), - [anon_sym_go] = ACTIONS(3017), - [anon_sym_spawn] = ACTIONS(3017), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3017), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), - [anon_sym_LT_LT] = ACTIONS(3017), - [anon_sym_GT_GT] = ACTIONS(3017), - [anon_sym_GT_GT_GT] = ACTIONS(3017), - [anon_sym_AMP_CARET] = ACTIONS(3017), - [anon_sym_AMP_AMP] = ACTIONS(3017), - [anon_sym_PIPE_PIPE] = ACTIONS(3017), - [anon_sym_or] = ACTIONS(3017), - [sym_none] = ACTIONS(3017), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_nil] = ACTIONS(3017), - [anon_sym_QMARK_DOT] = ACTIONS(3017), - [anon_sym_POUND_LBRACK] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_DOLLARif] = ACTIONS(3017), - [anon_sym_is] = ACTIONS(3017), - [anon_sym_BANGis] = ACTIONS(3017), - [anon_sym_in] = ACTIONS(3017), - [anon_sym_BANGin] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_select] = ACTIONS(3017), - [anon_sym_lock] = ACTIONS(3017), - [anon_sym_rlock] = ACTIONS(3017), - [anon_sym_unsafe] = ACTIONS(3017), - [anon_sym_sql] = ACTIONS(3017), - [sym_int_literal] = ACTIONS(3017), - [sym_float_literal] = ACTIONS(3017), - [sym_rune_literal] = ACTIONS(3017), - [anon_sym_AT] = ACTIONS(3017), - [anon_sym_shared] = ACTIONS(3017), - [anon_sym_map_LBRACK] = ACTIONS(3017), - [anon_sym_chan] = ACTIONS(3017), - [anon_sym_thread] = ACTIONS(3017), - [anon_sym_atomic] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_defer] = ACTIONS(3017), - [anon_sym_goto] = ACTIONS(3017), - [anon_sym_break] = ACTIONS(3017), - [anon_sym_continue] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_DOLLARfor] = ACTIONS(3017), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_POUND] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3017), - [anon_sym_AT_LBRACK] = ACTIONS(3017), - [sym___double_quote] = ACTIONS(3017), - [sym___single_quote] = ACTIONS(3017), - [sym___c_double_quote] = ACTIONS(3017), - [sym___c_single_quote] = ACTIONS(3017), - [sym___r_double_quote] = ACTIONS(3017), - [sym___r_single_quote] = ACTIONS(3017), + [ts_builtin_sym_end] = ACTIONS(2786), + [sym_identifier] = ACTIONS(2784), + [anon_sym_LF] = ACTIONS(2784), + [anon_sym_CR] = ACTIONS(2784), + [anon_sym_CR_LF] = ACTIONS(2784), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2784), + [anon_sym_as] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2784), + [anon_sym_COMMA] = ACTIONS(2784), + [anon_sym_const] = ACTIONS(2784), + [anon_sym_LPAREN] = ACTIONS(2784), + [anon_sym___global] = ACTIONS(2784), + [anon_sym_type] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_fn] = ACTIONS(2784), + [anon_sym_PLUS] = ACTIONS(2784), + [anon_sym_DASH] = ACTIONS(2784), + [anon_sym_STAR] = ACTIONS(2784), + [anon_sym_SLASH] = ACTIONS(2784), + [anon_sym_PERCENT] = ACTIONS(2784), + [anon_sym_LT] = ACTIONS(2784), + [anon_sym_GT] = ACTIONS(2784), + [anon_sym_EQ_EQ] = ACTIONS(2784), + [anon_sym_BANG_EQ] = ACTIONS(2784), + [anon_sym_LT_EQ] = ACTIONS(2784), + [anon_sym_GT_EQ] = ACTIONS(2784), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym_struct] = ACTIONS(2784), + [anon_sym_union] = ACTIONS(2784), + [anon_sym_pub] = ACTIONS(2784), + [anon_sym_mut] = ACTIONS(2784), + [anon_sym_enum] = ACTIONS(2784), + [anon_sym_interface] = ACTIONS(2784), + [anon_sym_PLUS_PLUS] = ACTIONS(2784), + [anon_sym_DASH_DASH] = ACTIONS(2784), + [anon_sym_QMARK] = ACTIONS(2784), + [anon_sym_BANG] = ACTIONS(2784), + [anon_sym_go] = ACTIONS(2784), + [anon_sym_spawn] = ACTIONS(2784), + [anon_sym_json_DOTdecode] = ACTIONS(2784), + [anon_sym_LBRACK2] = ACTIONS(2784), + [anon_sym_TILDE] = ACTIONS(2784), + [anon_sym_CARET] = ACTIONS(2784), + [anon_sym_AMP] = ACTIONS(2784), + [anon_sym_LT_DASH] = ACTIONS(2784), + [anon_sym_LT_LT] = ACTIONS(2784), + [anon_sym_GT_GT] = ACTIONS(2784), + [anon_sym_GT_GT_GT] = ACTIONS(2784), + [anon_sym_AMP_CARET] = ACTIONS(2784), + [anon_sym_AMP_AMP] = ACTIONS(2784), + [anon_sym_PIPE_PIPE] = ACTIONS(2784), + [anon_sym_or] = ACTIONS(2784), + [sym_none] = ACTIONS(2784), + [sym_true] = ACTIONS(2784), + [sym_false] = ACTIONS(2784), + [sym_nil] = ACTIONS(2784), + [anon_sym_QMARK_DOT] = ACTIONS(2784), + [anon_sym_POUND_LBRACK] = ACTIONS(2784), + [anon_sym_if] = ACTIONS(2784), + [anon_sym_DOLLARif] = ACTIONS(2784), + [anon_sym_is] = ACTIONS(2784), + [anon_sym_BANGis] = ACTIONS(2784), + [anon_sym_in] = ACTIONS(2784), + [anon_sym_BANGin] = ACTIONS(2784), + [anon_sym_match] = ACTIONS(2784), + [anon_sym_select] = ACTIONS(2784), + [anon_sym_lock] = ACTIONS(2784), + [anon_sym_rlock] = ACTIONS(2784), + [anon_sym_unsafe] = ACTIONS(2784), + [anon_sym_sql] = ACTIONS(2784), + [sym_int_literal] = ACTIONS(2784), + [sym_float_literal] = ACTIONS(2784), + [sym_rune_literal] = ACTIONS(2784), + [anon_sym_AT] = ACTIONS(2784), + [anon_sym_shared] = ACTIONS(2784), + [anon_sym_map_LBRACK] = ACTIONS(2784), + [anon_sym_chan] = ACTIONS(2784), + [anon_sym_thread] = ACTIONS(2784), + [anon_sym_atomic] = ACTIONS(2784), + [anon_sym_assert] = ACTIONS(2784), + [anon_sym_defer] = ACTIONS(2784), + [anon_sym_goto] = ACTIONS(2784), + [anon_sym_break] = ACTIONS(2784), + [anon_sym_continue] = ACTIONS(2784), + [anon_sym_return] = ACTIONS(2784), + [anon_sym_DOLLARfor] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(2784), + [anon_sym_asm] = ACTIONS(2784), + [anon_sym_AT_LBRACK] = ACTIONS(2784), + [sym___double_quote] = ACTIONS(2784), + [sym___single_quote] = ACTIONS(2784), + [sym___c_double_quote] = ACTIONS(2784), + [sym___c_single_quote] = ACTIONS(2784), + [sym___r_double_quote] = ACTIONS(2784), + [sym___r_single_quote] = ACTIONS(2784), }, [1007] = { - [ts_builtin_sym_end] = ACTIONS(3011), - [sym_identifier] = ACTIONS(3013), - [anon_sym_LF] = ACTIONS(3013), - [anon_sym_CR] = ACTIONS(3013), - [anon_sym_CR_LF] = ACTIONS(3013), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3013), - [anon_sym_as] = ACTIONS(3013), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_COMMA] = ACTIONS(3013), - [anon_sym_const] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym___global] = ACTIONS(3013), - [anon_sym_type] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3013), - [anon_sym_fn] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_SLASH] = ACTIONS(3013), - [anon_sym_PERCENT] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3013), - [anon_sym_GT] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3011), - [anon_sym_struct] = ACTIONS(3013), - [anon_sym_union] = ACTIONS(3013), - [anon_sym_pub] = ACTIONS(3013), - [anon_sym_mut] = ACTIONS(3013), - [anon_sym_enum] = ACTIONS(3013), - [anon_sym_interface] = ACTIONS(3013), - [anon_sym_PLUS_PLUS] = ACTIONS(3013), - [anon_sym_DASH_DASH] = ACTIONS(3013), - [anon_sym_QMARK] = ACTIONS(3013), - [anon_sym_BANG] = ACTIONS(3013), - [anon_sym_go] = ACTIONS(3013), - [anon_sym_spawn] = ACTIONS(3013), - [anon_sym_json_DOTdecode] = ACTIONS(3013), - [anon_sym_LBRACK2] = ACTIONS(3013), - [anon_sym_TILDE] = ACTIONS(3013), - [anon_sym_CARET] = ACTIONS(3013), - [anon_sym_AMP] = ACTIONS(3013), - [anon_sym_LT_DASH] = ACTIONS(3013), - [anon_sym_LT_LT] = ACTIONS(3013), - [anon_sym_GT_GT] = ACTIONS(3013), - [anon_sym_GT_GT_GT] = ACTIONS(3013), - [anon_sym_AMP_CARET] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_or] = ACTIONS(3013), - [sym_none] = ACTIONS(3013), - [sym_true] = ACTIONS(3013), - [sym_false] = ACTIONS(3013), - [sym_nil] = ACTIONS(3013), - [anon_sym_QMARK_DOT] = ACTIONS(3013), - [anon_sym_POUND_LBRACK] = ACTIONS(3013), - [anon_sym_if] = ACTIONS(3013), - [anon_sym_DOLLARif] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3013), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_in] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_match] = ACTIONS(3013), - [anon_sym_select] = ACTIONS(3013), - [anon_sym_lock] = ACTIONS(3013), - [anon_sym_rlock] = ACTIONS(3013), - [anon_sym_unsafe] = ACTIONS(3013), - [anon_sym_sql] = ACTIONS(3013), - [sym_int_literal] = ACTIONS(3013), - [sym_float_literal] = ACTIONS(3013), - [sym_rune_literal] = ACTIONS(3013), - [anon_sym_AT] = ACTIONS(3013), - [anon_sym_shared] = ACTIONS(3013), - [anon_sym_map_LBRACK] = ACTIONS(3013), - [anon_sym_chan] = ACTIONS(3013), - [anon_sym_thread] = ACTIONS(3013), - [anon_sym_atomic] = ACTIONS(3013), - [anon_sym_assert] = ACTIONS(3013), - [anon_sym_defer] = ACTIONS(3013), - [anon_sym_goto] = ACTIONS(3013), - [anon_sym_break] = ACTIONS(3013), - [anon_sym_continue] = ACTIONS(3013), - [anon_sym_return] = ACTIONS(3013), - [anon_sym_DOLLARfor] = ACTIONS(3013), - [anon_sym_for] = ACTIONS(3013), - [anon_sym_POUND] = ACTIONS(3013), - [anon_sym_asm] = ACTIONS(3013), - [anon_sym_AT_LBRACK] = ACTIONS(3013), - [sym___double_quote] = ACTIONS(3013), - [sym___single_quote] = ACTIONS(3013), - [sym___c_double_quote] = ACTIONS(3013), - [sym___c_single_quote] = ACTIONS(3013), - [sym___r_double_quote] = ACTIONS(3013), - [sym___r_single_quote] = ACTIONS(3013), + [ts_builtin_sym_end] = ACTIONS(2692), + [sym_identifier] = ACTIONS(2694), + [anon_sym_LF] = ACTIONS(2694), + [anon_sym_CR] = ACTIONS(2694), + [anon_sym_CR_LF] = ACTIONS(2694), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2694), + [anon_sym_as] = ACTIONS(2694), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_COMMA] = ACTIONS(2784), + [anon_sym_const] = ACTIONS(2694), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym___global] = ACTIONS(2694), + [anon_sym_type] = ACTIONS(2694), + [anon_sym_PIPE] = ACTIONS(2694), + [anon_sym_fn] = ACTIONS(2694), + [anon_sym_PLUS] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(2694), + [anon_sym_SLASH] = ACTIONS(2694), + [anon_sym_PERCENT] = ACTIONS(2694), + [anon_sym_LT] = ACTIONS(2694), + [anon_sym_GT] = ACTIONS(2694), + [anon_sym_EQ_EQ] = ACTIONS(2694), + [anon_sym_BANG_EQ] = ACTIONS(2694), + [anon_sym_LT_EQ] = ACTIONS(2694), + [anon_sym_GT_EQ] = ACTIONS(2694), + [anon_sym_LBRACK] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2694), + [anon_sym_union] = ACTIONS(2694), + [anon_sym_pub] = ACTIONS(2694), + [anon_sym_mut] = ACTIONS(2694), + [anon_sym_enum] = ACTIONS(2694), + [anon_sym_interface] = ACTIONS(2694), + [anon_sym_PLUS_PLUS] = ACTIONS(2694), + [anon_sym_DASH_DASH] = ACTIONS(2694), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_BANG] = ACTIONS(2694), + [anon_sym_go] = ACTIONS(2694), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2694), + [anon_sym_LBRACK2] = ACTIONS(2694), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_CARET] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2694), + [anon_sym_LT_DASH] = ACTIONS(2694), + [anon_sym_LT_LT] = ACTIONS(2694), + [anon_sym_GT_GT] = ACTIONS(2694), + [anon_sym_GT_GT_GT] = ACTIONS(2694), + [anon_sym_AMP_CARET] = ACTIONS(2694), + [anon_sym_AMP_AMP] = ACTIONS(2694), + [anon_sym_PIPE_PIPE] = ACTIONS(2694), + [anon_sym_or] = ACTIONS(2694), + [sym_none] = ACTIONS(2694), + [sym_true] = ACTIONS(2694), + [sym_false] = ACTIONS(2694), + [sym_nil] = ACTIONS(2694), + [anon_sym_QMARK_DOT] = ACTIONS(2694), + [anon_sym_POUND_LBRACK] = ACTIONS(2694), + [anon_sym_if] = ACTIONS(2694), + [anon_sym_DOLLARif] = ACTIONS(2694), + [anon_sym_is] = ACTIONS(2694), + [anon_sym_BANGis] = ACTIONS(2694), + [anon_sym_in] = ACTIONS(2694), + [anon_sym_BANGin] = ACTIONS(2694), + [anon_sym_match] = ACTIONS(2694), + [anon_sym_select] = ACTIONS(2694), + [anon_sym_lock] = ACTIONS(2694), + [anon_sym_rlock] = ACTIONS(2694), + [anon_sym_unsafe] = ACTIONS(2694), + [anon_sym_sql] = ACTIONS(2694), + [sym_int_literal] = ACTIONS(2694), + [sym_float_literal] = ACTIONS(2694), + [sym_rune_literal] = ACTIONS(2694), + [anon_sym_AT] = ACTIONS(2694), + [anon_sym_shared] = ACTIONS(2694), + [anon_sym_map_LBRACK] = ACTIONS(2694), + [anon_sym_chan] = ACTIONS(2694), + [anon_sym_thread] = ACTIONS(2694), + [anon_sym_atomic] = ACTIONS(2694), + [anon_sym_assert] = ACTIONS(2694), + [anon_sym_defer] = ACTIONS(2694), + [anon_sym_goto] = ACTIONS(2694), + [anon_sym_break] = ACTIONS(2694), + [anon_sym_continue] = ACTIONS(2694), + [anon_sym_return] = ACTIONS(2694), + [anon_sym_DOLLARfor] = ACTIONS(2694), + [anon_sym_for] = ACTIONS(2694), + [anon_sym_POUND] = ACTIONS(2694), + [anon_sym_asm] = ACTIONS(2694), + [anon_sym_AT_LBRACK] = ACTIONS(2694), + [sym___double_quote] = ACTIONS(2694), + [sym___single_quote] = ACTIONS(2694), + [sym___c_double_quote] = ACTIONS(2694), + [sym___c_single_quote] = ACTIONS(2694), + [sym___r_double_quote] = ACTIONS(2694), + [sym___r_single_quote] = ACTIONS(2694), }, [1008] = { - [ts_builtin_sym_end] = ACTIONS(2921), - [sym_identifier] = ACTIONS(2923), - [anon_sym_LF] = ACTIONS(2923), - [anon_sym_CR] = ACTIONS(2923), - [anon_sym_CR_LF] = ACTIONS(2923), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2923), - [anon_sym_as] = ACTIONS(2923), - [anon_sym_LBRACE] = ACTIONS(2923), - [anon_sym_COMMA] = ACTIONS(2923), - [anon_sym_const] = ACTIONS(2923), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym___global] = ACTIONS(2923), - [anon_sym_type] = ACTIONS(2923), - [anon_sym_PIPE] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2923), - [anon_sym_PLUS] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2923), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_SLASH] = ACTIONS(2923), - [anon_sym_PERCENT] = ACTIONS(2923), - [anon_sym_LT] = ACTIONS(2923), - [anon_sym_GT] = ACTIONS(2923), - [anon_sym_EQ_EQ] = ACTIONS(2923), - [anon_sym_BANG_EQ] = ACTIONS(2923), - [anon_sym_LT_EQ] = ACTIONS(2923), - [anon_sym_GT_EQ] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_union] = ACTIONS(2923), - [anon_sym_pub] = ACTIONS(2923), - [anon_sym_mut] = ACTIONS(2923), - [anon_sym_enum] = ACTIONS(2923), - [anon_sym_interface] = ACTIONS(2923), - [anon_sym_PLUS_PLUS] = ACTIONS(2923), - [anon_sym_DASH_DASH] = ACTIONS(2923), - [anon_sym_QMARK] = ACTIONS(2923), - [anon_sym_BANG] = ACTIONS(2923), - [anon_sym_go] = ACTIONS(2923), - [anon_sym_spawn] = ACTIONS(2923), - [anon_sym_json_DOTdecode] = ACTIONS(2923), - [anon_sym_LBRACK2] = ACTIONS(2923), - [anon_sym_TILDE] = ACTIONS(2923), - [anon_sym_CARET] = ACTIONS(2923), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_LT_DASH] = ACTIONS(2923), - [anon_sym_LT_LT] = ACTIONS(2923), - [anon_sym_GT_GT] = ACTIONS(2923), - [anon_sym_GT_GT_GT] = ACTIONS(2923), - [anon_sym_AMP_CARET] = ACTIONS(2923), - [anon_sym_AMP_AMP] = ACTIONS(2923), - [anon_sym_PIPE_PIPE] = ACTIONS(2923), - [anon_sym_or] = ACTIONS(2923), - [sym_none] = ACTIONS(2923), - [sym_true] = ACTIONS(2923), - [sym_false] = ACTIONS(2923), - [sym_nil] = ACTIONS(2923), - [anon_sym_QMARK_DOT] = ACTIONS(2923), - [anon_sym_POUND_LBRACK] = ACTIONS(2923), - [anon_sym_if] = ACTIONS(2923), - [anon_sym_DOLLARif] = ACTIONS(2923), - [anon_sym_is] = ACTIONS(2923), - [anon_sym_BANGis] = ACTIONS(2923), - [anon_sym_in] = ACTIONS(2923), - [anon_sym_BANGin] = ACTIONS(2923), - [anon_sym_match] = ACTIONS(2923), - [anon_sym_select] = ACTIONS(2923), - [anon_sym_lock] = ACTIONS(2923), - [anon_sym_rlock] = ACTIONS(2923), - [anon_sym_unsafe] = ACTIONS(2923), - [anon_sym_sql] = ACTIONS(2923), - [sym_int_literal] = ACTIONS(2923), - [sym_float_literal] = ACTIONS(2923), - [sym_rune_literal] = ACTIONS(2923), - [anon_sym_AT] = ACTIONS(2923), - [anon_sym_shared] = ACTIONS(2923), - [anon_sym_map_LBRACK] = ACTIONS(2923), - [anon_sym_chan] = ACTIONS(2923), - [anon_sym_thread] = ACTIONS(2923), - [anon_sym_atomic] = ACTIONS(2923), - [anon_sym_assert] = ACTIONS(2923), - [anon_sym_defer] = ACTIONS(2923), - [anon_sym_goto] = ACTIONS(2923), - [anon_sym_break] = ACTIONS(2923), - [anon_sym_continue] = ACTIONS(2923), - [anon_sym_return] = ACTIONS(2923), - [anon_sym_DOLLARfor] = ACTIONS(2923), - [anon_sym_for] = ACTIONS(2923), - [anon_sym_POUND] = ACTIONS(2923), - [anon_sym_asm] = ACTIONS(2923), - [anon_sym_AT_LBRACK] = ACTIONS(2923), - [sym___double_quote] = ACTIONS(2923), - [sym___single_quote] = ACTIONS(2923), - [sym___c_double_quote] = ACTIONS(2923), - [sym___c_single_quote] = ACTIONS(2923), - [sym___r_double_quote] = ACTIONS(2923), - [sym___r_single_quote] = ACTIONS(2923), + [ts_builtin_sym_end] = ACTIONS(2844), + [sym_identifier] = ACTIONS(2846), + [anon_sym_LF] = ACTIONS(2846), + [anon_sym_CR] = ACTIONS(2846), + [anon_sym_CR_LF] = ACTIONS(2846), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2742), + [anon_sym_as] = ACTIONS(2846), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_COMMA] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(2846), + [anon_sym_LPAREN] = ACTIONS(2846), + [anon_sym___global] = ACTIONS(2846), + [anon_sym_type] = ACTIONS(2846), + [anon_sym_PIPE] = ACTIONS(2846), + [anon_sym_fn] = ACTIONS(2846), + [anon_sym_PLUS] = ACTIONS(2846), + [anon_sym_DASH] = ACTIONS(2846), + [anon_sym_STAR] = ACTIONS(2846), + [anon_sym_SLASH] = ACTIONS(2846), + [anon_sym_PERCENT] = ACTIONS(2846), + [anon_sym_LT] = ACTIONS(2846), + [anon_sym_GT] = ACTIONS(2846), + [anon_sym_EQ_EQ] = ACTIONS(2846), + [anon_sym_BANG_EQ] = ACTIONS(2846), + [anon_sym_LT_EQ] = ACTIONS(2846), + [anon_sym_GT_EQ] = ACTIONS(2846), + [anon_sym_LBRACK] = ACTIONS(2844), + [anon_sym_struct] = ACTIONS(2846), + [anon_sym_union] = ACTIONS(2846), + [anon_sym_pub] = ACTIONS(2846), + [anon_sym_mut] = ACTIONS(2846), + [anon_sym_enum] = ACTIONS(2846), + [anon_sym_interface] = ACTIONS(2846), + [anon_sym_PLUS_PLUS] = ACTIONS(2846), + [anon_sym_DASH_DASH] = ACTIONS(2846), + [anon_sym_QMARK] = ACTIONS(2846), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_go] = ACTIONS(2846), + [anon_sym_spawn] = ACTIONS(2846), + [anon_sym_json_DOTdecode] = ACTIONS(2846), + [anon_sym_LBRACK2] = ACTIONS(2846), + [anon_sym_TILDE] = ACTIONS(2846), + [anon_sym_CARET] = ACTIONS(2846), + [anon_sym_AMP] = ACTIONS(2846), + [anon_sym_LT_DASH] = ACTIONS(2846), + [anon_sym_LT_LT] = ACTIONS(2846), + [anon_sym_GT_GT] = ACTIONS(2846), + [anon_sym_GT_GT_GT] = ACTIONS(2846), + [anon_sym_AMP_CARET] = ACTIONS(2846), + [anon_sym_AMP_AMP] = ACTIONS(2846), + [anon_sym_PIPE_PIPE] = ACTIONS(2846), + [anon_sym_or] = ACTIONS(2846), + [sym_none] = ACTIONS(2846), + [sym_true] = ACTIONS(2846), + [sym_false] = ACTIONS(2846), + [sym_nil] = ACTIONS(2846), + [anon_sym_QMARK_DOT] = ACTIONS(2846), + [anon_sym_POUND_LBRACK] = ACTIONS(2846), + [anon_sym_if] = ACTIONS(2846), + [anon_sym_DOLLARif] = ACTIONS(2846), + [anon_sym_is] = ACTIONS(2846), + [anon_sym_BANGis] = ACTIONS(2846), + [anon_sym_in] = ACTIONS(2846), + [anon_sym_BANGin] = ACTIONS(2846), + [anon_sym_match] = ACTIONS(2846), + [anon_sym_select] = ACTIONS(2846), + [anon_sym_lock] = ACTIONS(2846), + [anon_sym_rlock] = ACTIONS(2846), + [anon_sym_unsafe] = ACTIONS(2846), + [anon_sym_sql] = ACTIONS(2846), + [sym_int_literal] = ACTIONS(2846), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2846), + [anon_sym_shared] = ACTIONS(2846), + [anon_sym_map_LBRACK] = ACTIONS(2846), + [anon_sym_chan] = ACTIONS(2846), + [anon_sym_thread] = ACTIONS(2846), + [anon_sym_atomic] = ACTIONS(2846), + [anon_sym_assert] = ACTIONS(2846), + [anon_sym_defer] = ACTIONS(2846), + [anon_sym_goto] = ACTIONS(2846), + [anon_sym_break] = ACTIONS(2846), + [anon_sym_continue] = ACTIONS(2846), + [anon_sym_return] = ACTIONS(2846), + [anon_sym_DOLLARfor] = ACTIONS(2846), + [anon_sym_for] = ACTIONS(2846), + [anon_sym_POUND] = ACTIONS(2846), + [anon_sym_asm] = ACTIONS(2846), + [anon_sym_AT_LBRACK] = ACTIONS(2846), + [sym___double_quote] = ACTIONS(2846), + [sym___single_quote] = ACTIONS(2846), + [sym___c_double_quote] = ACTIONS(2846), + [sym___c_single_quote] = ACTIONS(2846), + [sym___r_double_quote] = ACTIONS(2846), + [sym___r_single_quote] = ACTIONS(2846), }, [1009] = { - [ts_builtin_sym_end] = ACTIONS(2866), - [sym_identifier] = ACTIONS(2868), - [anon_sym_LF] = ACTIONS(2868), - [anon_sym_CR] = ACTIONS(2868), - [anon_sym_CR_LF] = ACTIONS(2868), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2868), - [anon_sym_as] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2868), - [anon_sym_COMMA] = ACTIONS(2868), - [anon_sym_const] = ACTIONS(2868), - [anon_sym_LPAREN] = ACTIONS(2868), - [anon_sym___global] = ACTIONS(2868), - [anon_sym_type] = ACTIONS(2868), - [anon_sym_PIPE] = ACTIONS(2868), - [anon_sym_fn] = ACTIONS(2868), - [anon_sym_PLUS] = ACTIONS(2868), - [anon_sym_DASH] = ACTIONS(2868), - [anon_sym_STAR] = ACTIONS(2868), - [anon_sym_SLASH] = ACTIONS(2868), - [anon_sym_PERCENT] = ACTIONS(2868), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_GT] = ACTIONS(2868), - [anon_sym_EQ_EQ] = ACTIONS(2868), - [anon_sym_BANG_EQ] = ACTIONS(2868), - [anon_sym_LT_EQ] = ACTIONS(2868), - [anon_sym_GT_EQ] = ACTIONS(2868), - [anon_sym_LBRACK] = ACTIONS(2866), - [anon_sym_struct] = ACTIONS(2868), - [anon_sym_union] = ACTIONS(2868), - [anon_sym_pub] = ACTIONS(2868), - [anon_sym_mut] = ACTIONS(2868), - [anon_sym_enum] = ACTIONS(2868), - [anon_sym_interface] = ACTIONS(2868), - [anon_sym_PLUS_PLUS] = ACTIONS(2868), - [anon_sym_DASH_DASH] = ACTIONS(2868), - [anon_sym_QMARK] = ACTIONS(2868), - [anon_sym_BANG] = ACTIONS(2868), - [anon_sym_go] = ACTIONS(2868), - [anon_sym_spawn] = ACTIONS(2868), - [anon_sym_json_DOTdecode] = ACTIONS(2868), - [anon_sym_LBRACK2] = ACTIONS(2868), - [anon_sym_TILDE] = ACTIONS(2868), - [anon_sym_CARET] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2868), - [anon_sym_LT_DASH] = ACTIONS(2868), - [anon_sym_LT_LT] = ACTIONS(2868), - [anon_sym_GT_GT] = ACTIONS(2868), - [anon_sym_GT_GT_GT] = ACTIONS(2868), - [anon_sym_AMP_CARET] = ACTIONS(2868), - [anon_sym_AMP_AMP] = ACTIONS(2868), - [anon_sym_PIPE_PIPE] = ACTIONS(2868), - [anon_sym_or] = ACTIONS(2868), - [sym_none] = ACTIONS(2868), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_nil] = ACTIONS(2868), - [anon_sym_QMARK_DOT] = ACTIONS(2868), - [anon_sym_POUND_LBRACK] = ACTIONS(2868), - [anon_sym_if] = ACTIONS(2868), - [anon_sym_DOLLARif] = ACTIONS(2868), - [anon_sym_is] = ACTIONS(2868), - [anon_sym_BANGis] = ACTIONS(2868), - [anon_sym_in] = ACTIONS(2868), - [anon_sym_BANGin] = ACTIONS(2868), - [anon_sym_match] = ACTIONS(2868), - [anon_sym_select] = ACTIONS(2868), - [anon_sym_lock] = ACTIONS(2868), - [anon_sym_rlock] = ACTIONS(2868), - [anon_sym_unsafe] = ACTIONS(2868), - [anon_sym_sql] = ACTIONS(2868), - [sym_int_literal] = ACTIONS(2868), - [sym_float_literal] = ACTIONS(2868), - [sym_rune_literal] = ACTIONS(2868), - [anon_sym_AT] = ACTIONS(2868), - [anon_sym_shared] = ACTIONS(2868), - [anon_sym_map_LBRACK] = ACTIONS(2868), - [anon_sym_chan] = ACTIONS(2868), - [anon_sym_thread] = ACTIONS(2868), - [anon_sym_atomic] = ACTIONS(2868), - [anon_sym_assert] = ACTIONS(2868), - [anon_sym_defer] = ACTIONS(2868), - [anon_sym_goto] = ACTIONS(2868), - [anon_sym_break] = ACTIONS(2868), - [anon_sym_continue] = ACTIONS(2868), - [anon_sym_return] = ACTIONS(2868), - [anon_sym_DOLLARfor] = ACTIONS(2868), - [anon_sym_for] = ACTIONS(2868), - [anon_sym_POUND] = ACTIONS(2868), - [anon_sym_asm] = ACTIONS(2868), - [anon_sym_AT_LBRACK] = ACTIONS(2868), - [sym___double_quote] = ACTIONS(2868), - [sym___single_quote] = ACTIONS(2868), - [sym___c_double_quote] = ACTIONS(2868), - [sym___c_single_quote] = ACTIONS(2868), - [sym___r_double_quote] = ACTIONS(2868), - [sym___r_single_quote] = ACTIONS(2868), + [ts_builtin_sym_end] = ACTIONS(3000), + [sym_identifier] = ACTIONS(3002), + [anon_sym_LF] = ACTIONS(3002), + [anon_sym_CR] = ACTIONS(3002), + [anon_sym_CR_LF] = ACTIONS(3002), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3002), + [anon_sym_as] = ACTIONS(3002), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(3002), + [anon_sym_const] = ACTIONS(3002), + [anon_sym_LPAREN] = ACTIONS(3002), + [anon_sym___global] = ACTIONS(3002), + [anon_sym_type] = ACTIONS(3002), + [anon_sym_PIPE] = ACTIONS(3002), + [anon_sym_fn] = ACTIONS(3002), + [anon_sym_PLUS] = ACTIONS(3002), + [anon_sym_DASH] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(3002), + [anon_sym_SLASH] = ACTIONS(3002), + [anon_sym_PERCENT] = ACTIONS(3002), + [anon_sym_LT] = ACTIONS(3002), + [anon_sym_GT] = ACTIONS(3002), + [anon_sym_EQ_EQ] = ACTIONS(3002), + [anon_sym_BANG_EQ] = ACTIONS(3002), + [anon_sym_LT_EQ] = ACTIONS(3002), + [anon_sym_GT_EQ] = ACTIONS(3002), + [anon_sym_LBRACK] = ACTIONS(3000), + [anon_sym_struct] = ACTIONS(3002), + [anon_sym_union] = ACTIONS(3002), + [anon_sym_pub] = ACTIONS(3002), + [anon_sym_mut] = ACTIONS(3002), + [anon_sym_enum] = ACTIONS(3002), + [anon_sym_interface] = ACTIONS(3002), + [anon_sym_PLUS_PLUS] = ACTIONS(3002), + [anon_sym_DASH_DASH] = ACTIONS(3002), + [anon_sym_QMARK] = ACTIONS(3002), + [anon_sym_BANG] = ACTIONS(3002), + [anon_sym_go] = ACTIONS(3002), + [anon_sym_spawn] = ACTIONS(3002), + [anon_sym_json_DOTdecode] = ACTIONS(3002), + [anon_sym_LBRACK2] = ACTIONS(3002), + [anon_sym_TILDE] = ACTIONS(3002), + [anon_sym_CARET] = ACTIONS(3002), + [anon_sym_AMP] = ACTIONS(3002), + [anon_sym_LT_DASH] = ACTIONS(3002), + [anon_sym_LT_LT] = ACTIONS(3002), + [anon_sym_GT_GT] = ACTIONS(3002), + [anon_sym_GT_GT_GT] = ACTIONS(3002), + [anon_sym_AMP_CARET] = ACTIONS(3002), + [anon_sym_AMP_AMP] = ACTIONS(3002), + [anon_sym_PIPE_PIPE] = ACTIONS(3002), + [anon_sym_or] = ACTIONS(3002), + [sym_none] = ACTIONS(3002), + [sym_true] = ACTIONS(3002), + [sym_false] = ACTIONS(3002), + [sym_nil] = ACTIONS(3002), + [anon_sym_QMARK_DOT] = ACTIONS(3002), + [anon_sym_POUND_LBRACK] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3002), + [anon_sym_DOLLARif] = ACTIONS(3002), + [anon_sym_is] = ACTIONS(3002), + [anon_sym_BANGis] = ACTIONS(3002), + [anon_sym_in] = ACTIONS(3002), + [anon_sym_BANGin] = ACTIONS(3002), + [anon_sym_match] = ACTIONS(3002), + [anon_sym_select] = ACTIONS(3002), + [anon_sym_lock] = ACTIONS(3002), + [anon_sym_rlock] = ACTIONS(3002), + [anon_sym_unsafe] = ACTIONS(3002), + [anon_sym_sql] = ACTIONS(3002), + [sym_int_literal] = ACTIONS(3002), + [sym_float_literal] = ACTIONS(3002), + [sym_rune_literal] = ACTIONS(3002), + [anon_sym_AT] = ACTIONS(3002), + [anon_sym_shared] = ACTIONS(3002), + [anon_sym_map_LBRACK] = ACTIONS(3002), + [anon_sym_chan] = ACTIONS(3002), + [anon_sym_thread] = ACTIONS(3002), + [anon_sym_atomic] = ACTIONS(3002), + [anon_sym_assert] = ACTIONS(3002), + [anon_sym_defer] = ACTIONS(3002), + [anon_sym_goto] = ACTIONS(3002), + [anon_sym_break] = ACTIONS(3002), + [anon_sym_continue] = ACTIONS(3002), + [anon_sym_return] = ACTIONS(3002), + [anon_sym_DOLLARfor] = ACTIONS(3002), + [anon_sym_for] = ACTIONS(3002), + [anon_sym_POUND] = ACTIONS(3002), + [anon_sym_asm] = ACTIONS(3002), + [anon_sym_AT_LBRACK] = ACTIONS(3002), + [sym___double_quote] = ACTIONS(3002), + [sym___single_quote] = ACTIONS(3002), + [sym___c_double_quote] = ACTIONS(3002), + [sym___c_single_quote] = ACTIONS(3002), + [sym___r_double_quote] = ACTIONS(3002), + [sym___r_single_quote] = ACTIONS(3002), }, [1010] = { - [ts_builtin_sym_end] = ACTIONS(2850), - [sym_identifier] = ACTIONS(2852), - [anon_sym_LF] = ACTIONS(2852), - [anon_sym_CR] = ACTIONS(2852), - [anon_sym_CR_LF] = ACTIONS(2852), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2852), - [anon_sym_as] = ACTIONS(2852), - [anon_sym_LBRACE] = ACTIONS(2852), - [anon_sym_COMMA] = ACTIONS(2852), - [anon_sym_const] = ACTIONS(2852), - [anon_sym_LPAREN] = ACTIONS(2852), - [anon_sym___global] = ACTIONS(2852), - [anon_sym_type] = ACTIONS(2852), - [anon_sym_PIPE] = ACTIONS(2852), - [anon_sym_fn] = ACTIONS(2852), - [anon_sym_PLUS] = ACTIONS(2852), - [anon_sym_DASH] = ACTIONS(2852), - [anon_sym_STAR] = ACTIONS(2852), - [anon_sym_SLASH] = ACTIONS(2852), - [anon_sym_PERCENT] = ACTIONS(2852), - [anon_sym_LT] = ACTIONS(2852), - [anon_sym_GT] = ACTIONS(2852), - [anon_sym_EQ_EQ] = ACTIONS(2852), - [anon_sym_BANG_EQ] = ACTIONS(2852), - [anon_sym_LT_EQ] = ACTIONS(2852), - [anon_sym_GT_EQ] = ACTIONS(2852), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_struct] = ACTIONS(2852), - [anon_sym_union] = ACTIONS(2852), - [anon_sym_pub] = ACTIONS(2852), - [anon_sym_mut] = ACTIONS(2852), - [anon_sym_enum] = ACTIONS(2852), - [anon_sym_interface] = ACTIONS(2852), - [anon_sym_PLUS_PLUS] = ACTIONS(2852), - [anon_sym_DASH_DASH] = ACTIONS(2852), - [anon_sym_QMARK] = ACTIONS(2852), - [anon_sym_BANG] = ACTIONS(2852), - [anon_sym_go] = ACTIONS(2852), - [anon_sym_spawn] = ACTIONS(2852), - [anon_sym_json_DOTdecode] = ACTIONS(2852), - [anon_sym_LBRACK2] = ACTIONS(2852), - [anon_sym_TILDE] = ACTIONS(2852), - [anon_sym_CARET] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2852), - [anon_sym_LT_DASH] = ACTIONS(2852), - [anon_sym_LT_LT] = ACTIONS(2852), - [anon_sym_GT_GT] = ACTIONS(2852), - [anon_sym_GT_GT_GT] = ACTIONS(2852), - [anon_sym_AMP_CARET] = ACTIONS(2852), - [anon_sym_AMP_AMP] = ACTIONS(2852), - [anon_sym_PIPE_PIPE] = ACTIONS(2852), - [anon_sym_or] = ACTIONS(2852), - [sym_none] = ACTIONS(2852), - [sym_true] = ACTIONS(2852), - [sym_false] = ACTIONS(2852), - [sym_nil] = ACTIONS(2852), - [anon_sym_QMARK_DOT] = ACTIONS(2852), - [anon_sym_POUND_LBRACK] = ACTIONS(2852), - [anon_sym_if] = ACTIONS(2852), - [anon_sym_DOLLARif] = ACTIONS(2852), - [anon_sym_is] = ACTIONS(2852), - [anon_sym_BANGis] = ACTIONS(2852), - [anon_sym_in] = ACTIONS(2852), - [anon_sym_BANGin] = ACTIONS(2852), - [anon_sym_match] = ACTIONS(2852), - [anon_sym_select] = ACTIONS(2852), - [anon_sym_lock] = ACTIONS(2852), - [anon_sym_rlock] = ACTIONS(2852), - [anon_sym_unsafe] = ACTIONS(2852), - [anon_sym_sql] = ACTIONS(2852), - [sym_int_literal] = ACTIONS(2852), - [sym_float_literal] = ACTIONS(2852), - [sym_rune_literal] = ACTIONS(2852), - [anon_sym_AT] = ACTIONS(2852), - [anon_sym_shared] = ACTIONS(2852), - [anon_sym_map_LBRACK] = ACTIONS(2852), - [anon_sym_chan] = ACTIONS(2852), - [anon_sym_thread] = ACTIONS(2852), - [anon_sym_atomic] = ACTIONS(2852), - [anon_sym_assert] = ACTIONS(2852), - [anon_sym_defer] = ACTIONS(2852), - [anon_sym_goto] = ACTIONS(2852), - [anon_sym_break] = ACTIONS(2852), - [anon_sym_continue] = ACTIONS(2852), - [anon_sym_return] = ACTIONS(2852), - [anon_sym_DOLLARfor] = ACTIONS(2852), - [anon_sym_for] = ACTIONS(2852), - [anon_sym_POUND] = ACTIONS(2852), - [anon_sym_asm] = ACTIONS(2852), - [anon_sym_AT_LBRACK] = ACTIONS(2852), - [sym___double_quote] = ACTIONS(2852), - [sym___single_quote] = ACTIONS(2852), - [sym___c_double_quote] = ACTIONS(2852), - [sym___c_single_quote] = ACTIONS(2852), - [sym___r_double_quote] = ACTIONS(2852), - [sym___r_single_quote] = ACTIONS(2852), + [ts_builtin_sym_end] = ACTIONS(2840), + [sym_identifier] = ACTIONS(2842), + [anon_sym_LF] = ACTIONS(2842), + [anon_sym_CR] = ACTIONS(2842), + [anon_sym_CR_LF] = ACTIONS(2842), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2842), + [anon_sym_as] = ACTIONS(2842), + [anon_sym_LBRACE] = ACTIONS(2842), + [anon_sym_COMMA] = ACTIONS(2842), + [anon_sym_const] = ACTIONS(2842), + [anon_sym_LPAREN] = ACTIONS(2842), + [anon_sym___global] = ACTIONS(2842), + [anon_sym_type] = ACTIONS(2842), + [anon_sym_PIPE] = ACTIONS(2842), + [anon_sym_fn] = ACTIONS(2842), + [anon_sym_PLUS] = ACTIONS(2842), + [anon_sym_DASH] = ACTIONS(2842), + [anon_sym_STAR] = ACTIONS(2842), + [anon_sym_SLASH] = ACTIONS(2842), + [anon_sym_PERCENT] = ACTIONS(2842), + [anon_sym_LT] = ACTIONS(2842), + [anon_sym_GT] = ACTIONS(2842), + [anon_sym_EQ_EQ] = ACTIONS(2842), + [anon_sym_BANG_EQ] = ACTIONS(2842), + [anon_sym_LT_EQ] = ACTIONS(2842), + [anon_sym_GT_EQ] = ACTIONS(2842), + [anon_sym_LBRACK] = ACTIONS(2840), + [anon_sym_struct] = ACTIONS(2842), + [anon_sym_union] = ACTIONS(2842), + [anon_sym_pub] = ACTIONS(2842), + [anon_sym_mut] = ACTIONS(2842), + [anon_sym_enum] = ACTIONS(2842), + [anon_sym_interface] = ACTIONS(2842), + [anon_sym_PLUS_PLUS] = ACTIONS(2842), + [anon_sym_DASH_DASH] = ACTIONS(2842), + [anon_sym_QMARK] = ACTIONS(2842), + [anon_sym_BANG] = ACTIONS(2842), + [anon_sym_go] = ACTIONS(2842), + [anon_sym_spawn] = ACTIONS(2842), + [anon_sym_json_DOTdecode] = ACTIONS(2842), + [anon_sym_LBRACK2] = ACTIONS(2842), + [anon_sym_TILDE] = ACTIONS(2842), + [anon_sym_CARET] = ACTIONS(2842), + [anon_sym_AMP] = ACTIONS(2842), + [anon_sym_LT_DASH] = ACTIONS(2842), + [anon_sym_LT_LT] = ACTIONS(2842), + [anon_sym_GT_GT] = ACTIONS(2842), + [anon_sym_GT_GT_GT] = ACTIONS(2842), + [anon_sym_AMP_CARET] = ACTIONS(2842), + [anon_sym_AMP_AMP] = ACTIONS(2842), + [anon_sym_PIPE_PIPE] = ACTIONS(2842), + [anon_sym_or] = ACTIONS(2842), + [sym_none] = ACTIONS(2842), + [sym_true] = ACTIONS(2842), + [sym_false] = ACTIONS(2842), + [sym_nil] = ACTIONS(2842), + [anon_sym_QMARK_DOT] = ACTIONS(2842), + [anon_sym_POUND_LBRACK] = ACTIONS(2842), + [anon_sym_if] = ACTIONS(2842), + [anon_sym_DOLLARif] = ACTIONS(2842), + [anon_sym_is] = ACTIONS(2842), + [anon_sym_BANGis] = ACTIONS(2842), + [anon_sym_in] = ACTIONS(2842), + [anon_sym_BANGin] = ACTIONS(2842), + [anon_sym_match] = ACTIONS(2842), + [anon_sym_select] = ACTIONS(2842), + [anon_sym_lock] = ACTIONS(2842), + [anon_sym_rlock] = ACTIONS(2842), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2842), + [sym_int_literal] = ACTIONS(2842), + [sym_float_literal] = ACTIONS(2842), + [sym_rune_literal] = ACTIONS(2842), + [anon_sym_AT] = ACTIONS(2842), + [anon_sym_shared] = ACTIONS(2842), + [anon_sym_map_LBRACK] = ACTIONS(2842), + [anon_sym_chan] = ACTIONS(2842), + [anon_sym_thread] = ACTIONS(2842), + [anon_sym_atomic] = ACTIONS(2842), + [anon_sym_assert] = ACTIONS(2842), + [anon_sym_defer] = ACTIONS(2842), + [anon_sym_goto] = ACTIONS(2842), + [anon_sym_break] = ACTIONS(2842), + [anon_sym_continue] = ACTIONS(2842), + [anon_sym_return] = ACTIONS(2842), + [anon_sym_DOLLARfor] = ACTIONS(2842), + [anon_sym_for] = ACTIONS(2842), + [anon_sym_POUND] = ACTIONS(2842), + [anon_sym_asm] = ACTIONS(2842), + [anon_sym_AT_LBRACK] = ACTIONS(2842), + [sym___double_quote] = ACTIONS(2842), + [sym___single_quote] = ACTIONS(2842), + [sym___c_double_quote] = ACTIONS(2842), + [sym___c_single_quote] = ACTIONS(2842), + [sym___r_double_quote] = ACTIONS(2842), + [sym___r_single_quote] = ACTIONS(2842), }, [1011] = { - [ts_builtin_sym_end] = ACTIONS(2698), - [sym_identifier] = ACTIONS(2700), - [anon_sym_LF] = ACTIONS(2700), - [anon_sym_CR] = ACTIONS(2700), - [anon_sym_CR_LF] = ACTIONS(2700), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_COMMA] = ACTIONS(2700), - [anon_sym_const] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym___global] = ACTIONS(2700), - [anon_sym_type] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_union] = ACTIONS(2700), - [anon_sym_pub] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_enum] = ACTIONS(2700), - [anon_sym_interface] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2700), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2700), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2700), - [anon_sym_AMP_CARET] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2700), - [anon_sym_POUND_LBRACK] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2700), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2700), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), - [sym_rune_literal] = ACTIONS(2700), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2700), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [anon_sym_assert] = ACTIONS(2700), - [anon_sym_defer] = ACTIONS(2700), - [anon_sym_goto] = ACTIONS(2700), - [anon_sym_break] = ACTIONS(2700), - [anon_sym_continue] = ACTIONS(2700), - [anon_sym_return] = ACTIONS(2700), - [anon_sym_DOLLARfor] = ACTIONS(2700), - [anon_sym_for] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(2700), - [anon_sym_asm] = ACTIONS(2700), - [anon_sym_AT_LBRACK] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2700), - [sym___single_quote] = ACTIONS(2700), - [sym___c_double_quote] = ACTIONS(2700), - [sym___c_single_quote] = ACTIONS(2700), - [sym___r_double_quote] = ACTIONS(2700), - [sym___r_single_quote] = ACTIONS(2700), + [ts_builtin_sym_end] = ACTIONS(2990), + [sym_identifier] = ACTIONS(2992), + [anon_sym_LF] = ACTIONS(2992), + [anon_sym_CR] = ACTIONS(2992), + [anon_sym_CR_LF] = ACTIONS(2992), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2994), + [anon_sym_as] = ACTIONS(2994), + [anon_sym_LBRACE] = ACTIONS(2992), + [anon_sym_COMMA] = ACTIONS(2992), + [anon_sym_const] = ACTIONS(2992), + [anon_sym_LPAREN] = ACTIONS(2994), + [anon_sym___global] = ACTIONS(2992), + [anon_sym_type] = ACTIONS(2992), + [anon_sym_PIPE] = ACTIONS(2994), + [anon_sym_fn] = ACTIONS(2992), + [anon_sym_PLUS] = ACTIONS(2994), + [anon_sym_DASH] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2994), + [anon_sym_SLASH] = ACTIONS(2994), + [anon_sym_PERCENT] = ACTIONS(2994), + [anon_sym_LT] = ACTIONS(2994), + [anon_sym_GT] = ACTIONS(2994), + [anon_sym_EQ_EQ] = ACTIONS(2994), + [anon_sym_BANG_EQ] = ACTIONS(2994), + [anon_sym_LT_EQ] = ACTIONS(2994), + [anon_sym_GT_EQ] = ACTIONS(2994), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_struct] = ACTIONS(2992), + [anon_sym_union] = ACTIONS(2992), + [anon_sym_pub] = ACTIONS(2992), + [anon_sym_mut] = ACTIONS(2992), + [anon_sym_enum] = ACTIONS(2992), + [anon_sym_interface] = ACTIONS(2992), + [anon_sym_PLUS_PLUS] = ACTIONS(2994), + [anon_sym_DASH_DASH] = ACTIONS(2994), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_BANG] = ACTIONS(2994), + [anon_sym_go] = ACTIONS(2992), + [anon_sym_spawn] = ACTIONS(2992), + [anon_sym_json_DOTdecode] = ACTIONS(2992), + [anon_sym_LBRACK2] = ACTIONS(2994), + [anon_sym_TILDE] = ACTIONS(2992), + [anon_sym_CARET] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2994), + [anon_sym_LT_DASH] = ACTIONS(2992), + [anon_sym_LT_LT] = ACTIONS(2994), + [anon_sym_GT_GT] = ACTIONS(2994), + [anon_sym_GT_GT_GT] = ACTIONS(2994), + [anon_sym_AMP_CARET] = ACTIONS(2994), + [anon_sym_AMP_AMP] = ACTIONS(2994), + [anon_sym_PIPE_PIPE] = ACTIONS(2994), + [anon_sym_or] = ACTIONS(2994), + [sym_none] = ACTIONS(2992), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [sym_nil] = ACTIONS(2992), + [anon_sym_QMARK_DOT] = ACTIONS(2994), + [anon_sym_POUND_LBRACK] = ACTIONS(2994), + [anon_sym_if] = ACTIONS(2992), + [anon_sym_DOLLARif] = ACTIONS(2992), + [anon_sym_is] = ACTIONS(2994), + [anon_sym_BANGis] = ACTIONS(2994), + [anon_sym_in] = ACTIONS(2994), + [anon_sym_BANGin] = ACTIONS(2994), + [anon_sym_match] = ACTIONS(2992), + [anon_sym_select] = ACTIONS(2992), + [anon_sym_lock] = ACTIONS(2992), + [anon_sym_rlock] = ACTIONS(2992), + [anon_sym_unsafe] = ACTIONS(2992), + [anon_sym_sql] = ACTIONS(2992), + [sym_int_literal] = ACTIONS(2992), + [sym_float_literal] = ACTIONS(2992), + [sym_rune_literal] = ACTIONS(2992), + [anon_sym_AT] = ACTIONS(2992), + [anon_sym_shared] = ACTIONS(2992), + [anon_sym_map_LBRACK] = ACTIONS(2992), + [anon_sym_chan] = ACTIONS(2992), + [anon_sym_thread] = ACTIONS(2992), + [anon_sym_atomic] = ACTIONS(2992), + [anon_sym_assert] = ACTIONS(2992), + [anon_sym_defer] = ACTIONS(2992), + [anon_sym_goto] = ACTIONS(2992), + [anon_sym_break] = ACTIONS(2992), + [anon_sym_continue] = ACTIONS(2992), + [anon_sym_return] = ACTIONS(2992), + [anon_sym_DOLLARfor] = ACTIONS(2992), + [anon_sym_for] = ACTIONS(2992), + [anon_sym_POUND] = ACTIONS(2992), + [anon_sym_asm] = ACTIONS(2992), + [anon_sym_AT_LBRACK] = ACTIONS(2992), + [sym___double_quote] = ACTIONS(2992), + [sym___single_quote] = ACTIONS(2992), + [sym___c_double_quote] = ACTIONS(2992), + [sym___c_single_quote] = ACTIONS(2992), + [sym___r_double_quote] = ACTIONS(2992), + [sym___r_single_quote] = ACTIONS(2992), }, [1012] = { - [ts_builtin_sym_end] = ACTIONS(2826), - [sym_identifier] = ACTIONS(2828), - [anon_sym_LF] = ACTIONS(2828), - [anon_sym_CR] = ACTIONS(2828), - [anon_sym_CR_LF] = ACTIONS(2828), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2828), - [anon_sym_as] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2828), - [anon_sym_COMMA] = ACTIONS(2828), - [anon_sym_const] = ACTIONS(2828), - [anon_sym_LPAREN] = ACTIONS(2828), - [anon_sym___global] = ACTIONS(2828), - [anon_sym_type] = ACTIONS(2828), - [anon_sym_PIPE] = ACTIONS(2828), - [anon_sym_fn] = ACTIONS(2828), - [anon_sym_PLUS] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_SLASH] = ACTIONS(2828), - [anon_sym_PERCENT] = ACTIONS(2828), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_GT] = ACTIONS(2828), - [anon_sym_EQ_EQ] = ACTIONS(2828), - [anon_sym_BANG_EQ] = ACTIONS(2828), - [anon_sym_LT_EQ] = ACTIONS(2828), - [anon_sym_GT_EQ] = ACTIONS(2828), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2828), - [anon_sym_union] = ACTIONS(2828), - [anon_sym_pub] = ACTIONS(2828), - [anon_sym_mut] = ACTIONS(2828), - [anon_sym_enum] = ACTIONS(2828), - [anon_sym_interface] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2828), - [anon_sym_DASH_DASH] = ACTIONS(2828), - [anon_sym_QMARK] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_go] = ACTIONS(2828), - [anon_sym_spawn] = ACTIONS(2828), - [anon_sym_json_DOTdecode] = ACTIONS(2828), - [anon_sym_LBRACK2] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_CARET] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2828), - [anon_sym_LT_DASH] = ACTIONS(2828), - [anon_sym_LT_LT] = ACTIONS(2828), - [anon_sym_GT_GT] = ACTIONS(2828), - [anon_sym_GT_GT_GT] = ACTIONS(2828), - [anon_sym_AMP_CARET] = ACTIONS(2828), - [anon_sym_AMP_AMP] = ACTIONS(2828), - [anon_sym_PIPE_PIPE] = ACTIONS(2828), - [anon_sym_or] = ACTIONS(2828), - [sym_none] = ACTIONS(2828), - [sym_true] = ACTIONS(2828), - [sym_false] = ACTIONS(2828), - [sym_nil] = ACTIONS(2828), - [anon_sym_QMARK_DOT] = ACTIONS(2828), - [anon_sym_POUND_LBRACK] = ACTIONS(2828), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_DOLLARif] = ACTIONS(2828), - [anon_sym_is] = ACTIONS(2828), - [anon_sym_BANGis] = ACTIONS(2828), - [anon_sym_in] = ACTIONS(2828), - [anon_sym_BANGin] = ACTIONS(2828), - [anon_sym_match] = ACTIONS(2828), - [anon_sym_select] = ACTIONS(2828), - [anon_sym_lock] = ACTIONS(2828), - [anon_sym_rlock] = ACTIONS(2828), - [anon_sym_unsafe] = ACTIONS(2828), - [anon_sym_sql] = ACTIONS(2828), - [sym_int_literal] = ACTIONS(2828), - [sym_float_literal] = ACTIONS(2828), - [sym_rune_literal] = ACTIONS(2828), - [anon_sym_AT] = ACTIONS(2828), - [anon_sym_shared] = ACTIONS(2828), - [anon_sym_map_LBRACK] = ACTIONS(2828), - [anon_sym_chan] = ACTIONS(2828), - [anon_sym_thread] = ACTIONS(2828), - [anon_sym_atomic] = ACTIONS(2828), - [anon_sym_assert] = ACTIONS(2828), - [anon_sym_defer] = ACTIONS(2828), - [anon_sym_goto] = ACTIONS(2828), - [anon_sym_break] = ACTIONS(2828), - [anon_sym_continue] = ACTIONS(2828), - [anon_sym_return] = ACTIONS(2828), - [anon_sym_DOLLARfor] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2828), - [anon_sym_POUND] = ACTIONS(2828), - [anon_sym_asm] = ACTIONS(2828), - [anon_sym_AT_LBRACK] = ACTIONS(2828), - [sym___double_quote] = ACTIONS(2828), - [sym___single_quote] = ACTIONS(2828), - [sym___c_double_quote] = ACTIONS(2828), - [sym___c_single_quote] = ACTIONS(2828), - [sym___r_double_quote] = ACTIONS(2828), - [sym___r_single_quote] = ACTIONS(2828), + [ts_builtin_sym_end] = ACTIONS(2980), + [sym_identifier] = ACTIONS(2982), + [anon_sym_LF] = ACTIONS(2982), + [anon_sym_CR] = ACTIONS(2982), + [anon_sym_CR_LF] = ACTIONS(2982), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2984), + [anon_sym_as] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_COMMA] = ACTIONS(2982), + [anon_sym_const] = ACTIONS(2982), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym___global] = ACTIONS(2982), + [anon_sym_type] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2984), + [anon_sym_fn] = ACTIONS(2982), + [anon_sym_PLUS] = ACTIONS(2984), + [anon_sym_DASH] = ACTIONS(2984), + [anon_sym_STAR] = ACTIONS(2984), + [anon_sym_SLASH] = ACTIONS(2984), + [anon_sym_PERCENT] = ACTIONS(2984), + [anon_sym_LT] = ACTIONS(2984), + [anon_sym_GT] = ACTIONS(2984), + [anon_sym_EQ_EQ] = ACTIONS(2984), + [anon_sym_BANG_EQ] = ACTIONS(2984), + [anon_sym_LT_EQ] = ACTIONS(2984), + [anon_sym_GT_EQ] = ACTIONS(2984), + [anon_sym_LBRACK] = ACTIONS(2987), + [anon_sym_struct] = ACTIONS(2982), + [anon_sym_union] = ACTIONS(2982), + [anon_sym_pub] = ACTIONS(2982), + [anon_sym_mut] = ACTIONS(2982), + [anon_sym_enum] = ACTIONS(2982), + [anon_sym_interface] = ACTIONS(2982), + [anon_sym_PLUS_PLUS] = ACTIONS(2984), + [anon_sym_DASH_DASH] = ACTIONS(2984), + [anon_sym_QMARK] = ACTIONS(2984), + [anon_sym_BANG] = ACTIONS(2984), + [anon_sym_go] = ACTIONS(2982), + [anon_sym_spawn] = ACTIONS(2982), + [anon_sym_json_DOTdecode] = ACTIONS(2982), + [anon_sym_LBRACK2] = ACTIONS(2984), + [anon_sym_TILDE] = ACTIONS(2982), + [anon_sym_CARET] = ACTIONS(2984), + [anon_sym_AMP] = ACTIONS(2984), + [anon_sym_LT_DASH] = ACTIONS(2982), + [anon_sym_LT_LT] = ACTIONS(2984), + [anon_sym_GT_GT] = ACTIONS(2984), + [anon_sym_GT_GT_GT] = ACTIONS(2984), + [anon_sym_AMP_CARET] = ACTIONS(2984), + [anon_sym_AMP_AMP] = ACTIONS(2984), + [anon_sym_PIPE_PIPE] = ACTIONS(2984), + [anon_sym_or] = ACTIONS(2984), + [sym_none] = ACTIONS(2982), + [sym_true] = ACTIONS(2982), + [sym_false] = ACTIONS(2982), + [sym_nil] = ACTIONS(2982), + [anon_sym_QMARK_DOT] = ACTIONS(2984), + [anon_sym_POUND_LBRACK] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2982), + [anon_sym_DOLLARif] = ACTIONS(2982), + [anon_sym_is] = ACTIONS(2984), + [anon_sym_BANGis] = ACTIONS(2984), + [anon_sym_in] = ACTIONS(2984), + [anon_sym_BANGin] = ACTIONS(2984), + [anon_sym_match] = ACTIONS(2982), + [anon_sym_select] = ACTIONS(2982), + [anon_sym_lock] = ACTIONS(2982), + [anon_sym_rlock] = ACTIONS(2982), + [anon_sym_unsafe] = ACTIONS(2982), + [anon_sym_sql] = ACTIONS(2982), + [sym_int_literal] = ACTIONS(2982), + [sym_float_literal] = ACTIONS(2982), + [sym_rune_literal] = ACTIONS(2982), + [anon_sym_AT] = ACTIONS(2982), + [anon_sym_shared] = ACTIONS(2982), + [anon_sym_map_LBRACK] = ACTIONS(2982), + [anon_sym_chan] = ACTIONS(2982), + [anon_sym_thread] = ACTIONS(2982), + [anon_sym_atomic] = ACTIONS(2982), + [anon_sym_assert] = ACTIONS(2982), + [anon_sym_defer] = ACTIONS(2982), + [anon_sym_goto] = ACTIONS(2982), + [anon_sym_break] = ACTIONS(2982), + [anon_sym_continue] = ACTIONS(2982), + [anon_sym_return] = ACTIONS(2982), + [anon_sym_DOLLARfor] = ACTIONS(2982), + [anon_sym_for] = ACTIONS(2982), + [anon_sym_POUND] = ACTIONS(2982), + [anon_sym_asm] = ACTIONS(2982), + [anon_sym_AT_LBRACK] = ACTIONS(2982), + [sym___double_quote] = ACTIONS(2982), + [sym___single_quote] = ACTIONS(2982), + [sym___c_double_quote] = ACTIONS(2982), + [sym___c_single_quote] = ACTIONS(2982), + [sym___r_double_quote] = ACTIONS(2982), + [sym___r_single_quote] = ACTIONS(2982), }, [1013] = { - [ts_builtin_sym_end] = ACTIONS(2905), - [sym_identifier] = ACTIONS(2907), - [anon_sym_LF] = ACTIONS(2907), - [anon_sym_CR] = ACTIONS(2907), - [anon_sym_CR_LF] = ACTIONS(2907), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2907), - [anon_sym_as] = ACTIONS(2907), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_COMMA] = ACTIONS(2907), - [anon_sym_const] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym___global] = ACTIONS(2907), - [anon_sym_type] = ACTIONS(2907), - [anon_sym_PIPE] = ACTIONS(2907), - [anon_sym_fn] = ACTIONS(2907), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_SLASH] = ACTIONS(2907), - [anon_sym_PERCENT] = ACTIONS(2907), - [anon_sym_LT] = ACTIONS(2907), - [anon_sym_GT] = ACTIONS(2907), - [anon_sym_EQ_EQ] = ACTIONS(2907), - [anon_sym_BANG_EQ] = ACTIONS(2907), - [anon_sym_LT_EQ] = ACTIONS(2907), - [anon_sym_GT_EQ] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2907), - [anon_sym_union] = ACTIONS(2907), - [anon_sym_pub] = ACTIONS(2907), - [anon_sym_mut] = ACTIONS(2907), - [anon_sym_enum] = ACTIONS(2907), - [anon_sym_interface] = ACTIONS(2907), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_QMARK] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_go] = ACTIONS(2907), - [anon_sym_spawn] = ACTIONS(2907), - [anon_sym_json_DOTdecode] = ACTIONS(2907), - [anon_sym_LBRACK2] = ACTIONS(2907), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_LT_DASH] = ACTIONS(2907), - [anon_sym_LT_LT] = ACTIONS(2907), - [anon_sym_GT_GT] = ACTIONS(2907), - [anon_sym_GT_GT_GT] = ACTIONS(2907), - [anon_sym_AMP_CARET] = ACTIONS(2907), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_PIPE_PIPE] = ACTIONS(2907), - [anon_sym_or] = ACTIONS(2907), - [sym_none] = ACTIONS(2907), - [sym_true] = ACTIONS(2907), - [sym_false] = ACTIONS(2907), - [sym_nil] = ACTIONS(2907), - [anon_sym_QMARK_DOT] = ACTIONS(2907), - [anon_sym_POUND_LBRACK] = ACTIONS(2907), - [anon_sym_if] = ACTIONS(2907), - [anon_sym_DOLLARif] = ACTIONS(2907), - [anon_sym_is] = ACTIONS(2907), - [anon_sym_BANGis] = ACTIONS(2907), - [anon_sym_in] = ACTIONS(2907), - [anon_sym_BANGin] = ACTIONS(2907), - [anon_sym_match] = ACTIONS(2907), - [anon_sym_select] = ACTIONS(2907), - [anon_sym_lock] = ACTIONS(2907), - [anon_sym_rlock] = ACTIONS(2907), - [anon_sym_unsafe] = ACTIONS(2907), - [anon_sym_sql] = ACTIONS(2907), - [sym_int_literal] = ACTIONS(2907), - [sym_float_literal] = ACTIONS(2907), - [sym_rune_literal] = ACTIONS(2907), - [anon_sym_AT] = ACTIONS(2907), - [anon_sym_shared] = ACTIONS(2907), - [anon_sym_map_LBRACK] = ACTIONS(2907), - [anon_sym_chan] = ACTIONS(2907), - [anon_sym_thread] = ACTIONS(2907), - [anon_sym_atomic] = ACTIONS(2907), - [anon_sym_assert] = ACTIONS(2907), - [anon_sym_defer] = ACTIONS(2907), - [anon_sym_goto] = ACTIONS(2907), - [anon_sym_break] = ACTIONS(2907), - [anon_sym_continue] = ACTIONS(2907), - [anon_sym_return] = ACTIONS(2907), - [anon_sym_DOLLARfor] = ACTIONS(2907), - [anon_sym_for] = ACTIONS(2907), - [anon_sym_POUND] = ACTIONS(2907), - [anon_sym_asm] = ACTIONS(2907), - [anon_sym_AT_LBRACK] = ACTIONS(2907), - [sym___double_quote] = ACTIONS(2907), - [sym___single_quote] = ACTIONS(2907), - [sym___c_double_quote] = ACTIONS(2907), - [sym___c_single_quote] = ACTIONS(2907), - [sym___r_double_quote] = ACTIONS(2907), - [sym___r_single_quote] = ACTIONS(2907), + [ts_builtin_sym_end] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3171), + [anon_sym_LF] = ACTIONS(3171), + [anon_sym_CR] = ACTIONS(3171), + [anon_sym_CR_LF] = ACTIONS(3171), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3171), + [anon_sym_as] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_COMMA] = ACTIONS(3171), + [anon_sym_const] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym___global] = ACTIONS(3171), + [anon_sym_type] = ACTIONS(3171), + [anon_sym_PIPE] = ACTIONS(3171), + [anon_sym_fn] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_SLASH] = ACTIONS(3171), + [anon_sym_PERCENT] = ACTIONS(3171), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3171), + [anon_sym_EQ_EQ] = ACTIONS(3171), + [anon_sym_BANG_EQ] = ACTIONS(3171), + [anon_sym_LT_EQ] = ACTIONS(3171), + [anon_sym_GT_EQ] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_struct] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_pub] = ACTIONS(3171), + [anon_sym_mut] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3171), + [anon_sym_interface] = ACTIONS(3171), + [anon_sym_PLUS_PLUS] = ACTIONS(3171), + [anon_sym_DASH_DASH] = ACTIONS(3171), + [anon_sym_QMARK] = ACTIONS(3171), + [anon_sym_BANG] = ACTIONS(3171), + [anon_sym_go] = ACTIONS(3171), + [anon_sym_spawn] = ACTIONS(3171), + [anon_sym_json_DOTdecode] = ACTIONS(3171), + [anon_sym_LBRACK2] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3171), + [anon_sym_CARET] = ACTIONS(3171), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_LT_DASH] = ACTIONS(3171), + [anon_sym_LT_LT] = ACTIONS(3171), + [anon_sym_GT_GT] = ACTIONS(3171), + [anon_sym_GT_GT_GT] = ACTIONS(3171), + [anon_sym_AMP_CARET] = ACTIONS(3171), + [anon_sym_AMP_AMP] = ACTIONS(3171), + [anon_sym_PIPE_PIPE] = ACTIONS(3171), + [anon_sym_or] = ACTIONS(3171), + [sym_none] = ACTIONS(3171), + [sym_true] = ACTIONS(3171), + [sym_false] = ACTIONS(3171), + [sym_nil] = ACTIONS(3171), + [anon_sym_QMARK_DOT] = ACTIONS(3171), + [anon_sym_POUND_LBRACK] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_DOLLARif] = ACTIONS(3171), + [anon_sym_is] = ACTIONS(3171), + [anon_sym_BANGis] = ACTIONS(3171), + [anon_sym_in] = ACTIONS(3171), + [anon_sym_BANGin] = ACTIONS(3171), + [anon_sym_match] = ACTIONS(3171), + [anon_sym_select] = ACTIONS(3171), + [anon_sym_lock] = ACTIONS(3171), + [anon_sym_rlock] = ACTIONS(3171), + [anon_sym_unsafe] = ACTIONS(3171), + [anon_sym_sql] = ACTIONS(3171), + [sym_int_literal] = ACTIONS(3171), + [sym_float_literal] = ACTIONS(3171), + [sym_rune_literal] = ACTIONS(3171), + [anon_sym_AT] = ACTIONS(3171), + [anon_sym_shared] = ACTIONS(3171), + [anon_sym_map_LBRACK] = ACTIONS(3171), + [anon_sym_chan] = ACTIONS(3171), + [anon_sym_thread] = ACTIONS(3171), + [anon_sym_atomic] = ACTIONS(3171), + [anon_sym_assert] = ACTIONS(3171), + [anon_sym_defer] = ACTIONS(3171), + [anon_sym_goto] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_DOLLARfor] = ACTIONS(3171), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_POUND] = ACTIONS(3171), + [anon_sym_asm] = ACTIONS(3171), + [anon_sym_AT_LBRACK] = ACTIONS(3171), + [sym___double_quote] = ACTIONS(3171), + [sym___single_quote] = ACTIONS(3171), + [sym___c_double_quote] = ACTIONS(3171), + [sym___c_single_quote] = ACTIONS(3171), + [sym___r_double_quote] = ACTIONS(3171), + [sym___r_single_quote] = ACTIONS(3171), }, [1014] = { - [ts_builtin_sym_end] = ACTIONS(2814), - [sym_identifier] = ACTIONS(2816), - [anon_sym_LF] = ACTIONS(2816), - [anon_sym_CR] = ACTIONS(2816), - [anon_sym_CR_LF] = ACTIONS(2816), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2816), - [anon_sym_as] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2816), - [anon_sym_COMMA] = ACTIONS(2816), - [anon_sym_const] = ACTIONS(2816), - [anon_sym_LPAREN] = ACTIONS(2816), - [anon_sym___global] = ACTIONS(2816), - [anon_sym_type] = ACTIONS(2816), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_fn] = ACTIONS(2816), - [anon_sym_PLUS] = ACTIONS(2816), - [anon_sym_DASH] = ACTIONS(2816), - [anon_sym_STAR] = ACTIONS(2816), - [anon_sym_SLASH] = ACTIONS(2816), - [anon_sym_PERCENT] = ACTIONS(2816), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_EQ_EQ] = ACTIONS(2816), - [anon_sym_BANG_EQ] = ACTIONS(2816), - [anon_sym_LT_EQ] = ACTIONS(2816), - [anon_sym_GT_EQ] = ACTIONS(2816), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_struct] = ACTIONS(2816), - [anon_sym_union] = ACTIONS(2816), - [anon_sym_pub] = ACTIONS(2816), - [anon_sym_mut] = ACTIONS(2816), - [anon_sym_enum] = ACTIONS(2816), - [anon_sym_interface] = ACTIONS(2816), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_DASH_DASH] = ACTIONS(2816), - [anon_sym_QMARK] = ACTIONS(2816), - [anon_sym_BANG] = ACTIONS(2816), - [anon_sym_go] = ACTIONS(2816), - [anon_sym_spawn] = ACTIONS(2816), - [anon_sym_json_DOTdecode] = ACTIONS(2816), - [anon_sym_LBRACK2] = ACTIONS(2816), - [anon_sym_TILDE] = ACTIONS(2816), - [anon_sym_CARET] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2816), - [anon_sym_LT_DASH] = ACTIONS(2816), - [anon_sym_LT_LT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(2816), - [anon_sym_GT_GT_GT] = ACTIONS(2816), - [anon_sym_AMP_CARET] = ACTIONS(2816), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_PIPE_PIPE] = ACTIONS(2816), - [anon_sym_or] = ACTIONS(2816), - [sym_none] = ACTIONS(2816), - [sym_true] = ACTIONS(2816), - [sym_false] = ACTIONS(2816), - [sym_nil] = ACTIONS(2816), - [anon_sym_QMARK_DOT] = ACTIONS(2816), - [anon_sym_POUND_LBRACK] = ACTIONS(2816), - [anon_sym_if] = ACTIONS(2816), - [anon_sym_DOLLARif] = ACTIONS(2816), - [anon_sym_is] = ACTIONS(2816), - [anon_sym_BANGis] = ACTIONS(2816), - [anon_sym_in] = ACTIONS(2816), - [anon_sym_BANGin] = ACTIONS(2816), - [anon_sym_match] = ACTIONS(2816), - [anon_sym_select] = ACTIONS(2816), - [anon_sym_lock] = ACTIONS(2816), - [anon_sym_rlock] = ACTIONS(2816), - [anon_sym_unsafe] = ACTIONS(2816), - [anon_sym_sql] = ACTIONS(2816), - [sym_int_literal] = ACTIONS(2816), - [sym_float_literal] = ACTIONS(2816), - [sym_rune_literal] = ACTIONS(2816), - [anon_sym_AT] = ACTIONS(2816), - [anon_sym_shared] = ACTIONS(2816), - [anon_sym_map_LBRACK] = ACTIONS(2816), - [anon_sym_chan] = ACTIONS(2816), - [anon_sym_thread] = ACTIONS(2816), - [anon_sym_atomic] = ACTIONS(2816), - [anon_sym_assert] = ACTIONS(2816), - [anon_sym_defer] = ACTIONS(2816), - [anon_sym_goto] = ACTIONS(2816), - [anon_sym_break] = ACTIONS(2816), - [anon_sym_continue] = ACTIONS(2816), - [anon_sym_return] = ACTIONS(2816), - [anon_sym_DOLLARfor] = ACTIONS(2816), - [anon_sym_for] = ACTIONS(2816), - [anon_sym_POUND] = ACTIONS(2816), - [anon_sym_asm] = ACTIONS(2816), - [anon_sym_AT_LBRACK] = ACTIONS(2816), - [sym___double_quote] = ACTIONS(2816), - [sym___single_quote] = ACTIONS(2816), - [sym___c_double_quote] = ACTIONS(2816), - [sym___c_single_quote] = ACTIONS(2816), - [sym___r_double_quote] = ACTIONS(2816), - [sym___r_single_quote] = ACTIONS(2816), + [ts_builtin_sym_end] = ACTIONS(2792), + [sym_identifier] = ACTIONS(2794), + [anon_sym_LF] = ACTIONS(2794), + [anon_sym_CR] = ACTIONS(2794), + [anon_sym_CR_LF] = ACTIONS(2794), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2794), + [anon_sym_as] = ACTIONS(2794), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_COMMA] = ACTIONS(2794), + [anon_sym_const] = ACTIONS(2794), + [anon_sym_LPAREN] = ACTIONS(2794), + [anon_sym___global] = ACTIONS(2794), + [anon_sym_type] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_fn] = ACTIONS(2794), + [anon_sym_PLUS] = ACTIONS(2794), + [anon_sym_DASH] = ACTIONS(2794), + [anon_sym_STAR] = ACTIONS(2794), + [anon_sym_SLASH] = ACTIONS(2794), + [anon_sym_PERCENT] = ACTIONS(2794), + [anon_sym_LT] = ACTIONS(2794), + [anon_sym_GT] = ACTIONS(2794), + [anon_sym_EQ_EQ] = ACTIONS(2794), + [anon_sym_BANG_EQ] = ACTIONS(2794), + [anon_sym_LT_EQ] = ACTIONS(2794), + [anon_sym_GT_EQ] = ACTIONS(2794), + [anon_sym_LBRACK] = ACTIONS(2792), + [anon_sym_struct] = ACTIONS(2794), + [anon_sym_union] = ACTIONS(2794), + [anon_sym_pub] = ACTIONS(2794), + [anon_sym_mut] = ACTIONS(2794), + [anon_sym_enum] = ACTIONS(2794), + [anon_sym_interface] = ACTIONS(2794), + [anon_sym_PLUS_PLUS] = ACTIONS(2794), + [anon_sym_DASH_DASH] = ACTIONS(2794), + [anon_sym_QMARK] = ACTIONS(2794), + [anon_sym_BANG] = ACTIONS(2794), + [anon_sym_go] = ACTIONS(2794), + [anon_sym_spawn] = ACTIONS(2794), + [anon_sym_json_DOTdecode] = ACTIONS(2794), + [anon_sym_LBRACK2] = ACTIONS(2794), + [anon_sym_TILDE] = ACTIONS(2794), + [anon_sym_CARET] = ACTIONS(2794), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_LT_DASH] = ACTIONS(2794), + [anon_sym_LT_LT] = ACTIONS(2794), + [anon_sym_GT_GT] = ACTIONS(2794), + [anon_sym_GT_GT_GT] = ACTIONS(2794), + [anon_sym_AMP_CARET] = ACTIONS(2794), + [anon_sym_AMP_AMP] = ACTIONS(2794), + [anon_sym_PIPE_PIPE] = ACTIONS(2794), + [anon_sym_or] = ACTIONS(2794), + [sym_none] = ACTIONS(2794), + [sym_true] = ACTIONS(2794), + [sym_false] = ACTIONS(2794), + [sym_nil] = ACTIONS(2794), + [anon_sym_QMARK_DOT] = ACTIONS(2794), + [anon_sym_POUND_LBRACK] = ACTIONS(2794), + [anon_sym_if] = ACTIONS(2794), + [anon_sym_DOLLARif] = ACTIONS(2794), + [anon_sym_is] = ACTIONS(2794), + [anon_sym_BANGis] = ACTIONS(2794), + [anon_sym_in] = ACTIONS(2794), + [anon_sym_BANGin] = ACTIONS(2794), + [anon_sym_match] = ACTIONS(2794), + [anon_sym_select] = ACTIONS(2794), + [anon_sym_lock] = ACTIONS(2794), + [anon_sym_rlock] = ACTIONS(2794), + [anon_sym_unsafe] = ACTIONS(2794), + [anon_sym_sql] = ACTIONS(2794), + [sym_int_literal] = ACTIONS(2794), + [sym_float_literal] = ACTIONS(2794), + [sym_rune_literal] = ACTIONS(2794), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_shared] = ACTIONS(2794), + [anon_sym_map_LBRACK] = ACTIONS(2794), + [anon_sym_chan] = ACTIONS(2794), + [anon_sym_thread] = ACTIONS(2794), + [anon_sym_atomic] = ACTIONS(2794), + [anon_sym_assert] = ACTIONS(2794), + [anon_sym_defer] = ACTIONS(2794), + [anon_sym_goto] = ACTIONS(2794), + [anon_sym_break] = ACTIONS(2794), + [anon_sym_continue] = ACTIONS(2794), + [anon_sym_return] = ACTIONS(2794), + [anon_sym_DOLLARfor] = ACTIONS(2794), + [anon_sym_for] = ACTIONS(2794), + [anon_sym_POUND] = ACTIONS(2794), + [anon_sym_asm] = ACTIONS(2794), + [anon_sym_AT_LBRACK] = ACTIONS(2794), + [sym___double_quote] = ACTIONS(2794), + [sym___single_quote] = ACTIONS(2794), + [sym___c_double_quote] = ACTIONS(2794), + [sym___c_single_quote] = ACTIONS(2794), + [sym___r_double_quote] = ACTIONS(2794), + [sym___r_single_quote] = ACTIONS(2794), }, [1015] = { - [ts_builtin_sym_end] = ACTIONS(2802), - [sym_identifier] = ACTIONS(2804), - [anon_sym_LF] = ACTIONS(2804), - [anon_sym_CR] = ACTIONS(2804), - [anon_sym_CR_LF] = ACTIONS(2804), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2804), - [anon_sym_as] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_const] = ACTIONS(2804), - [anon_sym_LPAREN] = ACTIONS(2804), - [anon_sym___global] = ACTIONS(2804), - [anon_sym_type] = ACTIONS(2804), - [anon_sym_PIPE] = ACTIONS(2804), - [anon_sym_fn] = ACTIONS(2804), - [anon_sym_PLUS] = ACTIONS(2804), - [anon_sym_DASH] = ACTIONS(2804), - [anon_sym_STAR] = ACTIONS(2804), - [anon_sym_SLASH] = ACTIONS(2804), - [anon_sym_PERCENT] = ACTIONS(2804), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_GT] = ACTIONS(2804), - [anon_sym_EQ_EQ] = ACTIONS(2804), - [anon_sym_BANG_EQ] = ACTIONS(2804), - [anon_sym_LT_EQ] = ACTIONS(2804), - [anon_sym_GT_EQ] = ACTIONS(2804), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_struct] = ACTIONS(2804), - [anon_sym_union] = ACTIONS(2804), - [anon_sym_pub] = ACTIONS(2804), - [anon_sym_mut] = ACTIONS(2804), - [anon_sym_enum] = ACTIONS(2804), - [anon_sym_interface] = ACTIONS(2804), - [anon_sym_PLUS_PLUS] = ACTIONS(2804), - [anon_sym_DASH_DASH] = ACTIONS(2804), - [anon_sym_QMARK] = ACTIONS(2804), - [anon_sym_BANG] = ACTIONS(2804), - [anon_sym_go] = ACTIONS(2804), - [anon_sym_spawn] = ACTIONS(2804), - [anon_sym_json_DOTdecode] = ACTIONS(2804), - [anon_sym_LBRACK2] = ACTIONS(2804), - [anon_sym_TILDE] = ACTIONS(2804), - [anon_sym_CARET] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2804), - [anon_sym_LT_DASH] = ACTIONS(2804), - [anon_sym_LT_LT] = ACTIONS(2804), - [anon_sym_GT_GT] = ACTIONS(2804), - [anon_sym_GT_GT_GT] = ACTIONS(2804), - [anon_sym_AMP_CARET] = ACTIONS(2804), - [anon_sym_AMP_AMP] = ACTIONS(2804), - [anon_sym_PIPE_PIPE] = ACTIONS(2804), - [anon_sym_or] = ACTIONS(2804), - [sym_none] = ACTIONS(2804), - [sym_true] = ACTIONS(2804), - [sym_false] = ACTIONS(2804), - [sym_nil] = ACTIONS(2804), - [anon_sym_QMARK_DOT] = ACTIONS(2804), - [anon_sym_POUND_LBRACK] = ACTIONS(2804), - [anon_sym_if] = ACTIONS(2804), - [anon_sym_DOLLARif] = ACTIONS(2804), - [anon_sym_is] = ACTIONS(2804), - [anon_sym_BANGis] = ACTIONS(2804), - [anon_sym_in] = ACTIONS(2804), - [anon_sym_BANGin] = ACTIONS(2804), - [anon_sym_match] = ACTIONS(2804), - [anon_sym_select] = ACTIONS(2804), - [anon_sym_lock] = ACTIONS(2804), - [anon_sym_rlock] = ACTIONS(2804), - [anon_sym_unsafe] = ACTIONS(2804), - [anon_sym_sql] = ACTIONS(2804), - [sym_int_literal] = ACTIONS(2804), - [sym_float_literal] = ACTIONS(2804), - [sym_rune_literal] = ACTIONS(2804), - [anon_sym_AT] = ACTIONS(2804), - [anon_sym_shared] = ACTIONS(2804), - [anon_sym_map_LBRACK] = ACTIONS(2804), - [anon_sym_chan] = ACTIONS(2804), - [anon_sym_thread] = ACTIONS(2804), - [anon_sym_atomic] = ACTIONS(2804), - [anon_sym_assert] = ACTIONS(2804), - [anon_sym_defer] = ACTIONS(2804), - [anon_sym_goto] = ACTIONS(2804), - [anon_sym_break] = ACTIONS(2804), - [anon_sym_continue] = ACTIONS(2804), - [anon_sym_return] = ACTIONS(2804), - [anon_sym_DOLLARfor] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2804), - [anon_sym_POUND] = ACTIONS(2804), - [anon_sym_asm] = ACTIONS(2804), - [anon_sym_AT_LBRACK] = ACTIONS(2804), - [sym___double_quote] = ACTIONS(2804), - [sym___single_quote] = ACTIONS(2804), - [sym___c_double_quote] = ACTIONS(2804), - [sym___c_single_quote] = ACTIONS(2804), - [sym___r_double_quote] = ACTIONS(2804), - [sym___r_single_quote] = ACTIONS(2804), + [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), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3018), + [sym___single_quote] = ACTIONS(3018), + [sym___c_double_quote] = ACTIONS(3018), + [sym___c_single_quote] = ACTIONS(3018), + [sym___r_double_quote] = ACTIONS(3018), + [sym___r_single_quote] = ACTIONS(3018), }, [1016] = { - [ts_builtin_sym_end] = ACTIONS(2897), - [sym_identifier] = ACTIONS(2899), - [anon_sym_LF] = ACTIONS(2899), - [anon_sym_CR] = ACTIONS(2899), - [anon_sym_CR_LF] = ACTIONS(2899), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_as] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_COMMA] = ACTIONS(2899), - [anon_sym_const] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2899), - [anon_sym___global] = ACTIONS(2899), - [anon_sym_type] = ACTIONS(2899), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_fn] = ACTIONS(2899), - [anon_sym_PLUS] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_STAR] = ACTIONS(2899), - [anon_sym_SLASH] = ACTIONS(2899), - [anon_sym_PERCENT] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_GT] = ACTIONS(2899), - [anon_sym_EQ_EQ] = ACTIONS(2899), - [anon_sym_BANG_EQ] = ACTIONS(2899), - [anon_sym_LT_EQ] = ACTIONS(2899), - [anon_sym_GT_EQ] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_struct] = ACTIONS(2899), - [anon_sym_union] = ACTIONS(2899), - [anon_sym_pub] = ACTIONS(2899), - [anon_sym_mut] = ACTIONS(2899), - [anon_sym_enum] = ACTIONS(2899), - [anon_sym_interface] = ACTIONS(2899), - [anon_sym_PLUS_PLUS] = ACTIONS(2899), - [anon_sym_DASH_DASH] = ACTIONS(2899), - [anon_sym_QMARK] = ACTIONS(2899), - [anon_sym_BANG] = ACTIONS(2899), - [anon_sym_go] = ACTIONS(2899), - [anon_sym_spawn] = ACTIONS(2899), - [anon_sym_json_DOTdecode] = ACTIONS(2899), - [anon_sym_LBRACK2] = ACTIONS(2899), - [anon_sym_TILDE] = ACTIONS(2899), - [anon_sym_CARET] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_LT_DASH] = ACTIONS(2899), - [anon_sym_LT_LT] = ACTIONS(2899), - [anon_sym_GT_GT] = ACTIONS(2899), - [anon_sym_GT_GT_GT] = ACTIONS(2899), - [anon_sym_AMP_CARET] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_PIPE_PIPE] = ACTIONS(2899), - [anon_sym_or] = ACTIONS(2899), - [sym_none] = ACTIONS(2899), - [sym_true] = ACTIONS(2899), - [sym_false] = ACTIONS(2899), - [sym_nil] = ACTIONS(2899), - [anon_sym_QMARK_DOT] = ACTIONS(2899), - [anon_sym_POUND_LBRACK] = ACTIONS(2899), - [anon_sym_if] = ACTIONS(2899), - [anon_sym_DOLLARif] = ACTIONS(2899), - [anon_sym_is] = ACTIONS(2899), - [anon_sym_BANGis] = ACTIONS(2899), - [anon_sym_in] = ACTIONS(2899), - [anon_sym_BANGin] = ACTIONS(2899), - [anon_sym_match] = ACTIONS(2899), - [anon_sym_select] = ACTIONS(2899), - [anon_sym_lock] = ACTIONS(2899), - [anon_sym_rlock] = ACTIONS(2899), - [anon_sym_unsafe] = ACTIONS(2899), - [anon_sym_sql] = ACTIONS(2899), - [sym_int_literal] = ACTIONS(2899), - [sym_float_literal] = ACTIONS(2899), - [sym_rune_literal] = ACTIONS(2899), - [anon_sym_AT] = ACTIONS(2899), - [anon_sym_shared] = ACTIONS(2899), - [anon_sym_map_LBRACK] = ACTIONS(2899), - [anon_sym_chan] = ACTIONS(2899), - [anon_sym_thread] = ACTIONS(2899), - [anon_sym_atomic] = ACTIONS(2899), - [anon_sym_assert] = ACTIONS(2899), - [anon_sym_defer] = ACTIONS(2899), - [anon_sym_goto] = ACTIONS(2899), - [anon_sym_break] = ACTIONS(2899), - [anon_sym_continue] = ACTIONS(2899), - [anon_sym_return] = ACTIONS(2899), - [anon_sym_DOLLARfor] = ACTIONS(2899), - [anon_sym_for] = ACTIONS(2899), - [anon_sym_POUND] = ACTIONS(2899), - [anon_sym_asm] = ACTIONS(2899), - [anon_sym_AT_LBRACK] = ACTIONS(2899), - [sym___double_quote] = ACTIONS(2899), - [sym___single_quote] = ACTIONS(2899), - [sym___c_double_quote] = ACTIONS(2899), - [sym___c_single_quote] = ACTIONS(2899), - [sym___r_double_quote] = ACTIONS(2899), - [sym___r_single_quote] = ACTIONS(2899), - }, - [1017] = { - [ts_builtin_sym_end] = ACTIONS(2874), - [sym_identifier] = ACTIONS(2876), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_CR] = ACTIONS(2876), - [anon_sym_CR_LF] = ACTIONS(2876), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2876), - [anon_sym_as] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2876), - [anon_sym_COMMA] = ACTIONS(2876), - [anon_sym_const] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2876), - [anon_sym___global] = ACTIONS(2876), - [anon_sym_type] = ACTIONS(2876), - [anon_sym_PIPE] = ACTIONS(2876), - [anon_sym_fn] = ACTIONS(2876), - [anon_sym_PLUS] = ACTIONS(2876), - [anon_sym_DASH] = ACTIONS(2876), - [anon_sym_STAR] = ACTIONS(2876), - [anon_sym_SLASH] = ACTIONS(2876), - [anon_sym_PERCENT] = ACTIONS(2876), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_GT] = ACTIONS(2876), - [anon_sym_EQ_EQ] = ACTIONS(2876), - [anon_sym_BANG_EQ] = ACTIONS(2876), - [anon_sym_LT_EQ] = ACTIONS(2876), - [anon_sym_GT_EQ] = ACTIONS(2876), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_struct] = ACTIONS(2876), - [anon_sym_union] = ACTIONS(2876), - [anon_sym_pub] = ACTIONS(2876), - [anon_sym_mut] = ACTIONS(2876), - [anon_sym_enum] = ACTIONS(2876), - [anon_sym_interface] = ACTIONS(2876), - [anon_sym_PLUS_PLUS] = ACTIONS(2876), - [anon_sym_DASH_DASH] = ACTIONS(2876), - [anon_sym_QMARK] = ACTIONS(2876), - [anon_sym_BANG] = ACTIONS(2876), - [anon_sym_go] = ACTIONS(2876), - [anon_sym_spawn] = ACTIONS(2876), - [anon_sym_json_DOTdecode] = ACTIONS(2876), - [anon_sym_LBRACK2] = ACTIONS(2876), - [anon_sym_TILDE] = ACTIONS(2876), - [anon_sym_CARET] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2876), - [anon_sym_LT_DASH] = ACTIONS(2876), - [anon_sym_LT_LT] = ACTIONS(2876), - [anon_sym_GT_GT] = ACTIONS(2876), - [anon_sym_GT_GT_GT] = ACTIONS(2876), - [anon_sym_AMP_CARET] = ACTIONS(2876), - [anon_sym_AMP_AMP] = ACTIONS(2876), - [anon_sym_PIPE_PIPE] = ACTIONS(2876), - [anon_sym_or] = ACTIONS(2876), - [sym_none] = ACTIONS(2876), - [sym_true] = ACTIONS(2876), - [sym_false] = ACTIONS(2876), - [sym_nil] = ACTIONS(2876), - [anon_sym_QMARK_DOT] = ACTIONS(2876), - [anon_sym_POUND_LBRACK] = ACTIONS(2876), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_DOLLARif] = ACTIONS(2876), - [anon_sym_is] = ACTIONS(2876), - [anon_sym_BANGis] = ACTIONS(2876), - [anon_sym_in] = ACTIONS(2876), - [anon_sym_BANGin] = ACTIONS(2876), - [anon_sym_match] = ACTIONS(2876), - [anon_sym_select] = ACTIONS(2876), - [anon_sym_lock] = ACTIONS(2876), - [anon_sym_rlock] = ACTIONS(2876), - [anon_sym_unsafe] = ACTIONS(2876), - [anon_sym_sql] = ACTIONS(2876), - [sym_int_literal] = ACTIONS(2876), - [sym_float_literal] = ACTIONS(2876), - [sym_rune_literal] = ACTIONS(2876), - [anon_sym_AT] = ACTIONS(2876), - [anon_sym_shared] = ACTIONS(2876), - [anon_sym_map_LBRACK] = ACTIONS(2876), - [anon_sym_chan] = ACTIONS(2876), - [anon_sym_thread] = ACTIONS(2876), - [anon_sym_atomic] = ACTIONS(2876), - [anon_sym_assert] = ACTIONS(2876), - [anon_sym_defer] = ACTIONS(2876), - [anon_sym_goto] = ACTIONS(2876), - [anon_sym_break] = ACTIONS(2876), - [anon_sym_continue] = ACTIONS(2876), - [anon_sym_return] = ACTIONS(2876), - [anon_sym_DOLLARfor] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2876), - [anon_sym_POUND] = ACTIONS(2876), - [anon_sym_asm] = ACTIONS(2876), - [anon_sym_AT_LBRACK] = ACTIONS(2876), - [sym___double_quote] = ACTIONS(2876), - [sym___single_quote] = ACTIONS(2876), - [sym___c_double_quote] = ACTIONS(2876), - [sym___c_single_quote] = ACTIONS(2876), - [sym___r_double_quote] = ACTIONS(2876), - [sym___r_single_quote] = ACTIONS(2876), + [ts_builtin_sym_end] = ACTIONS(2848), + [sym_identifier] = ACTIONS(2850), + [anon_sym_LF] = ACTIONS(2850), + [anon_sym_CR] = ACTIONS(2850), + [anon_sym_CR_LF] = ACTIONS(2850), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2850), + [anon_sym_as] = ACTIONS(2850), + [anon_sym_LBRACE] = ACTIONS(2850), + [anon_sym_COMMA] = ACTIONS(2850), + [anon_sym_const] = ACTIONS(2850), + [anon_sym_LPAREN] = ACTIONS(2850), + [anon_sym___global] = ACTIONS(2850), + [anon_sym_type] = ACTIONS(2850), + [anon_sym_PIPE] = ACTIONS(2850), + [anon_sym_fn] = ACTIONS(2850), + [anon_sym_PLUS] = ACTIONS(2850), + [anon_sym_DASH] = ACTIONS(2850), + [anon_sym_STAR] = ACTIONS(2850), + [anon_sym_SLASH] = ACTIONS(2850), + [anon_sym_PERCENT] = ACTIONS(2850), + [anon_sym_LT] = ACTIONS(2850), + [anon_sym_GT] = ACTIONS(2850), + [anon_sym_EQ_EQ] = ACTIONS(2850), + [anon_sym_BANG_EQ] = ACTIONS(2850), + [anon_sym_LT_EQ] = ACTIONS(2850), + [anon_sym_GT_EQ] = ACTIONS(2850), + [anon_sym_LBRACK] = ACTIONS(2848), + [anon_sym_struct] = ACTIONS(2850), + [anon_sym_union] = ACTIONS(2850), + [anon_sym_pub] = ACTIONS(2850), + [anon_sym_mut] = ACTIONS(2850), + [anon_sym_enum] = ACTIONS(2850), + [anon_sym_interface] = ACTIONS(2850), + [anon_sym_PLUS_PLUS] = ACTIONS(2850), + [anon_sym_DASH_DASH] = ACTIONS(2850), + [anon_sym_QMARK] = ACTIONS(2850), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_go] = ACTIONS(2850), + [anon_sym_spawn] = ACTIONS(2850), + [anon_sym_json_DOTdecode] = ACTIONS(2850), + [anon_sym_LBRACK2] = ACTIONS(2850), + [anon_sym_TILDE] = ACTIONS(2850), + [anon_sym_CARET] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2850), + [anon_sym_LT_DASH] = ACTIONS(2850), + [anon_sym_LT_LT] = ACTIONS(2850), + [anon_sym_GT_GT] = ACTIONS(2850), + [anon_sym_GT_GT_GT] = ACTIONS(2850), + [anon_sym_AMP_CARET] = ACTIONS(2850), + [anon_sym_AMP_AMP] = ACTIONS(2850), + [anon_sym_PIPE_PIPE] = ACTIONS(2850), + [anon_sym_or] = ACTIONS(2850), + [sym_none] = ACTIONS(2850), + [sym_true] = ACTIONS(2850), + [sym_false] = ACTIONS(2850), + [sym_nil] = ACTIONS(2850), + [anon_sym_QMARK_DOT] = ACTIONS(2850), + [anon_sym_POUND_LBRACK] = ACTIONS(2850), + [anon_sym_if] = ACTIONS(2850), + [anon_sym_DOLLARif] = ACTIONS(2850), + [anon_sym_is] = ACTIONS(2850), + [anon_sym_BANGis] = ACTIONS(2850), + [anon_sym_in] = ACTIONS(2850), + [anon_sym_BANGin] = ACTIONS(2850), + [anon_sym_match] = ACTIONS(2850), + [anon_sym_select] = ACTIONS(2850), + [anon_sym_lock] = ACTIONS(2850), + [anon_sym_rlock] = ACTIONS(2850), + [anon_sym_unsafe] = ACTIONS(2850), + [anon_sym_sql] = ACTIONS(2850), + [sym_int_literal] = ACTIONS(2850), + [sym_float_literal] = ACTIONS(2850), + [sym_rune_literal] = ACTIONS(2850), + [anon_sym_AT] = ACTIONS(2850), + [anon_sym_shared] = ACTIONS(2850), + [anon_sym_map_LBRACK] = ACTIONS(2850), + [anon_sym_chan] = ACTIONS(2850), + [anon_sym_thread] = ACTIONS(2850), + [anon_sym_atomic] = ACTIONS(2850), + [anon_sym_assert] = ACTIONS(2850), + [anon_sym_defer] = ACTIONS(2850), + [anon_sym_goto] = ACTIONS(2850), + [anon_sym_break] = ACTIONS(2850), + [anon_sym_continue] = ACTIONS(2850), + [anon_sym_return] = ACTIONS(2850), + [anon_sym_DOLLARfor] = ACTIONS(2850), + [anon_sym_for] = ACTIONS(2850), + [anon_sym_POUND] = ACTIONS(2850), + [anon_sym_asm] = ACTIONS(2850), + [anon_sym_AT_LBRACK] = ACTIONS(2850), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2850), + [sym___c_double_quote] = ACTIONS(2850), + [sym___c_single_quote] = ACTIONS(2850), + [sym___r_double_quote] = ACTIONS(2850), + [sym___r_single_quote] = ACTIONS(2850), + }, + [1017] = { + [ts_builtin_sym_end] = ACTIONS(2888), + [sym_identifier] = ACTIONS(2890), + [anon_sym_LF] = ACTIONS(2890), + [anon_sym_CR] = ACTIONS(2890), + [anon_sym_CR_LF] = ACTIONS(2890), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2890), + [anon_sym_as] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2890), + [anon_sym_COMMA] = ACTIONS(2890), + [anon_sym_const] = ACTIONS(2890), + [anon_sym_LPAREN] = ACTIONS(2890), + [anon_sym___global] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2890), + [anon_sym_PIPE] = ACTIONS(2890), + [anon_sym_fn] = ACTIONS(2890), + [anon_sym_PLUS] = ACTIONS(2890), + [anon_sym_DASH] = ACTIONS(2890), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SLASH] = ACTIONS(2890), + [anon_sym_PERCENT] = ACTIONS(2890), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_GT] = ACTIONS(2890), + [anon_sym_EQ_EQ] = ACTIONS(2890), + [anon_sym_BANG_EQ] = ACTIONS(2890), + [anon_sym_LT_EQ] = ACTIONS(2890), + [anon_sym_GT_EQ] = ACTIONS(2890), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_struct] = ACTIONS(2890), + [anon_sym_union] = ACTIONS(2890), + [anon_sym_pub] = ACTIONS(2890), + [anon_sym_mut] = ACTIONS(2890), + [anon_sym_enum] = ACTIONS(2890), + [anon_sym_interface] = ACTIONS(2890), + [anon_sym_PLUS_PLUS] = ACTIONS(2890), + [anon_sym_DASH_DASH] = ACTIONS(2890), + [anon_sym_QMARK] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2890), + [anon_sym_go] = ACTIONS(2890), + [anon_sym_spawn] = ACTIONS(2890), + [anon_sym_json_DOTdecode] = ACTIONS(2890), + [anon_sym_LBRACK2] = ACTIONS(2890), + [anon_sym_TILDE] = ACTIONS(2890), + [anon_sym_CARET] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2890), + [anon_sym_LT_DASH] = ACTIONS(2890), + [anon_sym_LT_LT] = ACTIONS(2890), + [anon_sym_GT_GT] = ACTIONS(2890), + [anon_sym_GT_GT_GT] = ACTIONS(2890), + [anon_sym_AMP_CARET] = ACTIONS(2890), + [anon_sym_AMP_AMP] = ACTIONS(2890), + [anon_sym_PIPE_PIPE] = ACTIONS(2890), + [anon_sym_or] = ACTIONS(2890), + [sym_none] = ACTIONS(2890), + [sym_true] = ACTIONS(2890), + [sym_false] = ACTIONS(2890), + [sym_nil] = ACTIONS(2890), + [anon_sym_QMARK_DOT] = ACTIONS(2890), + [anon_sym_POUND_LBRACK] = ACTIONS(2890), + [anon_sym_if] = ACTIONS(2890), + [anon_sym_DOLLARif] = ACTIONS(2890), + [anon_sym_is] = ACTIONS(2890), + [anon_sym_BANGis] = ACTIONS(2890), + [anon_sym_in] = ACTIONS(2890), + [anon_sym_BANGin] = ACTIONS(2890), + [anon_sym_match] = ACTIONS(2890), + [anon_sym_select] = ACTIONS(2890), + [anon_sym_lock] = ACTIONS(2890), + [anon_sym_rlock] = ACTIONS(2890), + [anon_sym_unsafe] = ACTIONS(2890), + [anon_sym_sql] = ACTIONS(2890), + [sym_int_literal] = ACTIONS(2890), + [sym_float_literal] = ACTIONS(2890), + [sym_rune_literal] = ACTIONS(2890), + [anon_sym_AT] = ACTIONS(2890), + [anon_sym_shared] = ACTIONS(2890), + [anon_sym_map_LBRACK] = ACTIONS(2890), + [anon_sym_chan] = ACTIONS(2890), + [anon_sym_thread] = ACTIONS(2890), + [anon_sym_atomic] = ACTIONS(2890), + [anon_sym_assert] = ACTIONS(2890), + [anon_sym_defer] = ACTIONS(2890), + [anon_sym_goto] = ACTIONS(2890), + [anon_sym_break] = ACTIONS(2890), + [anon_sym_continue] = ACTIONS(2890), + [anon_sym_return] = ACTIONS(2890), + [anon_sym_DOLLARfor] = ACTIONS(2890), + [anon_sym_for] = ACTIONS(2890), + [anon_sym_POUND] = ACTIONS(2890), + [anon_sym_asm] = ACTIONS(2890), + [anon_sym_AT_LBRACK] = ACTIONS(2890), + [sym___double_quote] = ACTIONS(2890), + [sym___single_quote] = ACTIONS(2890), + [sym___c_double_quote] = ACTIONS(2890), + [sym___c_single_quote] = ACTIONS(2890), + [sym___r_double_quote] = ACTIONS(2890), + [sym___r_single_quote] = ACTIONS(2890), }, [1018] = { + [ts_builtin_sym_end] = ACTIONS(2896), + [sym_identifier] = ACTIONS(2898), + [anon_sym_LF] = ACTIONS(2898), + [anon_sym_CR] = ACTIONS(2898), + [anon_sym_CR_LF] = ACTIONS(2898), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2898), + [anon_sym_as] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(2898), + [anon_sym_COMMA] = ACTIONS(2898), + [anon_sym_const] = ACTIONS(2898), + [anon_sym_LPAREN] = ACTIONS(2898), + [anon_sym___global] = ACTIONS(2898), + [anon_sym_type] = ACTIONS(2898), + [anon_sym_PIPE] = ACTIONS(2898), + [anon_sym_fn] = ACTIONS(2898), + [anon_sym_PLUS] = ACTIONS(2898), + [anon_sym_DASH] = ACTIONS(2898), + [anon_sym_STAR] = ACTIONS(2898), + [anon_sym_SLASH] = ACTIONS(2898), + [anon_sym_PERCENT] = ACTIONS(2898), + [anon_sym_LT] = ACTIONS(2898), + [anon_sym_GT] = ACTIONS(2898), + [anon_sym_EQ_EQ] = ACTIONS(2898), + [anon_sym_BANG_EQ] = ACTIONS(2898), + [anon_sym_LT_EQ] = ACTIONS(2898), + [anon_sym_GT_EQ] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2896), + [anon_sym_struct] = ACTIONS(2898), + [anon_sym_union] = ACTIONS(2898), + [anon_sym_pub] = ACTIONS(2898), + [anon_sym_mut] = ACTIONS(2898), + [anon_sym_enum] = ACTIONS(2898), + [anon_sym_interface] = ACTIONS(2898), + [anon_sym_PLUS_PLUS] = ACTIONS(2898), + [anon_sym_DASH_DASH] = ACTIONS(2898), + [anon_sym_QMARK] = ACTIONS(2898), + [anon_sym_BANG] = ACTIONS(2898), + [anon_sym_go] = ACTIONS(2898), + [anon_sym_spawn] = ACTIONS(2898), + [anon_sym_json_DOTdecode] = ACTIONS(2898), + [anon_sym_LBRACK2] = ACTIONS(2898), + [anon_sym_TILDE] = ACTIONS(2898), + [anon_sym_CARET] = ACTIONS(2898), + [anon_sym_AMP] = ACTIONS(2898), + [anon_sym_LT_DASH] = ACTIONS(2898), + [anon_sym_LT_LT] = ACTIONS(2898), + [anon_sym_GT_GT] = ACTIONS(2898), + [anon_sym_GT_GT_GT] = ACTIONS(2898), + [anon_sym_AMP_CARET] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2898), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [sym_none] = ACTIONS(2898), + [sym_true] = ACTIONS(2898), + [sym_false] = ACTIONS(2898), + [sym_nil] = ACTIONS(2898), + [anon_sym_QMARK_DOT] = ACTIONS(2898), + [anon_sym_POUND_LBRACK] = ACTIONS(2898), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_DOLLARif] = ACTIONS(2898), + [anon_sym_is] = ACTIONS(2898), + [anon_sym_BANGis] = ACTIONS(2898), + [anon_sym_in] = ACTIONS(2898), + [anon_sym_BANGin] = ACTIONS(2898), + [anon_sym_match] = ACTIONS(2898), + [anon_sym_select] = ACTIONS(2898), + [anon_sym_lock] = ACTIONS(2898), + [anon_sym_rlock] = ACTIONS(2898), + [anon_sym_unsafe] = ACTIONS(2898), + [anon_sym_sql] = ACTIONS(2898), + [sym_int_literal] = ACTIONS(2898), + [sym_float_literal] = ACTIONS(2898), + [sym_rune_literal] = ACTIONS(2898), + [anon_sym_AT] = ACTIONS(2898), + [anon_sym_shared] = ACTIONS(2898), + [anon_sym_map_LBRACK] = ACTIONS(2898), + [anon_sym_chan] = ACTIONS(2898), + [anon_sym_thread] = ACTIONS(2898), + [anon_sym_atomic] = ACTIONS(2898), + [anon_sym_assert] = ACTIONS(2898), + [anon_sym_defer] = ACTIONS(2898), + [anon_sym_goto] = ACTIONS(2898), + [anon_sym_break] = ACTIONS(2898), + [anon_sym_continue] = ACTIONS(2898), + [anon_sym_return] = ACTIONS(2898), + [anon_sym_DOLLARfor] = ACTIONS(2898), + [anon_sym_for] = ACTIONS(2898), + [anon_sym_POUND] = ACTIONS(2898), + [anon_sym_asm] = ACTIONS(2898), + [anon_sym_AT_LBRACK] = ACTIONS(2898), + [sym___double_quote] = ACTIONS(2898), + [sym___single_quote] = ACTIONS(2898), + [sym___c_double_quote] = ACTIONS(2898), + [sym___c_single_quote] = ACTIONS(2898), + [sym___r_double_quote] = ACTIONS(2898), + [sym___r_single_quote] = ACTIONS(2898), + }, + [1019] = { + [ts_builtin_sym_end] = ACTIONS(2900), + [sym_identifier] = ACTIONS(2902), + [anon_sym_LF] = ACTIONS(2902), + [anon_sym_CR] = ACTIONS(2902), + [anon_sym_CR_LF] = ACTIONS(2902), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2902), + [anon_sym_as] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_COMMA] = ACTIONS(2902), + [anon_sym_const] = ACTIONS(2902), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym___global] = ACTIONS(2902), + [anon_sym_type] = ACTIONS(2902), + [anon_sym_PIPE] = ACTIONS(2902), + [anon_sym_fn] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(2902), + [anon_sym_SLASH] = ACTIONS(2902), + [anon_sym_PERCENT] = ACTIONS(2902), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_GT] = ACTIONS(2902), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2902), + [anon_sym_GT_EQ] = ACTIONS(2902), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_struct] = ACTIONS(2902), + [anon_sym_union] = ACTIONS(2902), + [anon_sym_pub] = ACTIONS(2902), + [anon_sym_mut] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2902), + [anon_sym_interface] = ACTIONS(2902), + [anon_sym_PLUS_PLUS] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(2902), + [anon_sym_QMARK] = ACTIONS(2902), + [anon_sym_BANG] = ACTIONS(2902), + [anon_sym_go] = ACTIONS(2902), + [anon_sym_spawn] = ACTIONS(2902), + [anon_sym_json_DOTdecode] = ACTIONS(2902), + [anon_sym_LBRACK2] = ACTIONS(2902), + [anon_sym_TILDE] = ACTIONS(2902), + [anon_sym_CARET] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_LT_DASH] = ACTIONS(2902), + [anon_sym_LT_LT] = ACTIONS(2902), + [anon_sym_GT_GT] = ACTIONS(2902), + [anon_sym_GT_GT_GT] = ACTIONS(2902), + [anon_sym_AMP_CARET] = ACTIONS(2902), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_PIPE_PIPE] = ACTIONS(2902), + [anon_sym_or] = ACTIONS(2902), + [sym_none] = ACTIONS(2902), + [sym_true] = ACTIONS(2902), + [sym_false] = ACTIONS(2902), + [sym_nil] = ACTIONS(2902), + [anon_sym_QMARK_DOT] = ACTIONS(2902), + [anon_sym_POUND_LBRACK] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_DOLLARif] = ACTIONS(2902), + [anon_sym_is] = ACTIONS(2902), + [anon_sym_BANGis] = ACTIONS(2902), + [anon_sym_in] = ACTIONS(2902), + [anon_sym_BANGin] = ACTIONS(2902), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_select] = ACTIONS(2902), + [anon_sym_lock] = ACTIONS(2902), + [anon_sym_rlock] = ACTIONS(2902), + [anon_sym_unsafe] = ACTIONS(2902), + [anon_sym_sql] = ACTIONS(2902), + [sym_int_literal] = ACTIONS(2902), + [sym_float_literal] = ACTIONS(2902), + [sym_rune_literal] = ACTIONS(2902), + [anon_sym_AT] = ACTIONS(2902), + [anon_sym_shared] = ACTIONS(2902), + [anon_sym_map_LBRACK] = ACTIONS(2902), + [anon_sym_chan] = ACTIONS(2902), + [anon_sym_thread] = ACTIONS(2902), + [anon_sym_atomic] = ACTIONS(2902), + [anon_sym_assert] = ACTIONS(2902), + [anon_sym_defer] = ACTIONS(2902), + [anon_sym_goto] = ACTIONS(2902), + [anon_sym_break] = ACTIONS(2902), + [anon_sym_continue] = ACTIONS(2902), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_DOLLARfor] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_POUND] = ACTIONS(2902), + [anon_sym_asm] = ACTIONS(2902), + [anon_sym_AT_LBRACK] = ACTIONS(2902), + [sym___double_quote] = ACTIONS(2902), + [sym___single_quote] = ACTIONS(2902), + [sym___c_double_quote] = ACTIONS(2902), + [sym___c_single_quote] = ACTIONS(2902), + [sym___r_double_quote] = ACTIONS(2902), + [sym___r_single_quote] = ACTIONS(2902), + }, + [1020] = { + [ts_builtin_sym_end] = ACTIONS(2928), + [sym_identifier] = ACTIONS(2930), + [anon_sym_LF] = ACTIONS(2930), + [anon_sym_CR] = ACTIONS(2930), + [anon_sym_CR_LF] = ACTIONS(2930), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2930), + [anon_sym_as] = ACTIONS(2930), + [anon_sym_LBRACE] = ACTIONS(2930), + [anon_sym_COMMA] = ACTIONS(2930), + [anon_sym_const] = ACTIONS(2930), + [anon_sym_LPAREN] = ACTIONS(2930), + [anon_sym___global] = ACTIONS(2930), + [anon_sym_type] = ACTIONS(2930), + [anon_sym_PIPE] = ACTIONS(2930), + [anon_sym_fn] = ACTIONS(2930), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_STAR] = ACTIONS(2930), + [anon_sym_SLASH] = ACTIONS(2930), + [anon_sym_PERCENT] = ACTIONS(2930), + [anon_sym_LT] = ACTIONS(2930), + [anon_sym_GT] = ACTIONS(2930), + [anon_sym_EQ_EQ] = ACTIONS(2930), + [anon_sym_BANG_EQ] = ACTIONS(2930), + [anon_sym_LT_EQ] = ACTIONS(2930), + [anon_sym_GT_EQ] = ACTIONS(2930), + [anon_sym_LBRACK] = ACTIONS(2928), + [anon_sym_struct] = ACTIONS(2930), + [anon_sym_union] = ACTIONS(2930), + [anon_sym_pub] = ACTIONS(2930), + [anon_sym_mut] = ACTIONS(2930), + [anon_sym_enum] = ACTIONS(2930), + [anon_sym_interface] = ACTIONS(2930), + [anon_sym_PLUS_PLUS] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2930), + [anon_sym_QMARK] = ACTIONS(2930), + [anon_sym_BANG] = ACTIONS(2930), + [anon_sym_go] = ACTIONS(2930), + [anon_sym_spawn] = ACTIONS(2930), + [anon_sym_json_DOTdecode] = ACTIONS(2930), + [anon_sym_LBRACK2] = ACTIONS(2930), + [anon_sym_TILDE] = ACTIONS(2930), + [anon_sym_CARET] = ACTIONS(2930), + [anon_sym_AMP] = ACTIONS(2930), + [anon_sym_LT_DASH] = ACTIONS(2930), + [anon_sym_LT_LT] = ACTIONS(2930), + [anon_sym_GT_GT] = ACTIONS(2930), + [anon_sym_GT_GT_GT] = ACTIONS(2930), + [anon_sym_AMP_CARET] = ACTIONS(2930), + [anon_sym_AMP_AMP] = ACTIONS(2930), + [anon_sym_PIPE_PIPE] = ACTIONS(2930), + [anon_sym_or] = ACTIONS(2930), + [sym_none] = ACTIONS(2930), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [sym_nil] = ACTIONS(2930), + [anon_sym_QMARK_DOT] = ACTIONS(2930), + [anon_sym_POUND_LBRACK] = ACTIONS(2930), + [anon_sym_if] = ACTIONS(2930), + [anon_sym_DOLLARif] = ACTIONS(2930), + [anon_sym_is] = ACTIONS(2930), + [anon_sym_BANGis] = ACTIONS(2930), + [anon_sym_in] = ACTIONS(2930), + [anon_sym_BANGin] = ACTIONS(2930), + [anon_sym_match] = ACTIONS(2930), + [anon_sym_select] = ACTIONS(2930), + [anon_sym_lock] = ACTIONS(2930), + [anon_sym_rlock] = ACTIONS(2930), + [anon_sym_unsafe] = ACTIONS(2930), + [anon_sym_sql] = ACTIONS(2930), + [sym_int_literal] = ACTIONS(2930), + [sym_float_literal] = ACTIONS(2930), + [sym_rune_literal] = ACTIONS(2930), + [anon_sym_AT] = ACTIONS(2930), + [anon_sym_shared] = ACTIONS(2930), + [anon_sym_map_LBRACK] = ACTIONS(2930), + [anon_sym_chan] = ACTIONS(2930), + [anon_sym_thread] = ACTIONS(2930), + [anon_sym_atomic] = ACTIONS(2930), + [anon_sym_assert] = ACTIONS(2930), + [anon_sym_defer] = ACTIONS(2930), + [anon_sym_goto] = ACTIONS(2930), + [anon_sym_break] = ACTIONS(2930), + [anon_sym_continue] = ACTIONS(2930), + [anon_sym_return] = ACTIONS(2930), + [anon_sym_DOLLARfor] = ACTIONS(2930), + [anon_sym_for] = ACTIONS(2930), + [anon_sym_POUND] = ACTIONS(2930), + [anon_sym_asm] = ACTIONS(2930), + [anon_sym_AT_LBRACK] = ACTIONS(2930), + [sym___double_quote] = ACTIONS(2930), + [sym___single_quote] = ACTIONS(2930), + [sym___c_double_quote] = ACTIONS(2930), + [sym___c_single_quote] = ACTIONS(2930), + [sym___r_double_quote] = ACTIONS(2930), + [sym___r_single_quote] = ACTIONS(2930), + }, + [1021] = { + [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), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3058), + [sym___single_quote] = ACTIONS(3058), + [sym___c_double_quote] = ACTIONS(3058), + [sym___c_single_quote] = ACTIONS(3058), + [sym___r_double_quote] = ACTIONS(3058), + [sym___r_single_quote] = ACTIONS(3058), + }, + [1022] = { + [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), + [sym_comment] = ACTIONS(493), + [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_AT] = 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), + [sym___double_quote] = ACTIONS(3066), + [sym___single_quote] = ACTIONS(3066), + [sym___c_double_quote] = ACTIONS(3066), + [sym___c_single_quote] = ACTIONS(3066), + [sym___r_double_quote] = ACTIONS(3066), + [sym___r_single_quote] = ACTIONS(3066), + }, + [1023] = { + [ts_builtin_sym_end] = ACTIONS(3072), + [sym_identifier] = ACTIONS(3074), + [anon_sym_LF] = ACTIONS(3074), + [anon_sym_CR] = ACTIONS(3074), + [anon_sym_CR_LF] = ACTIONS(3074), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3074), + [anon_sym_as] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3074), + [anon_sym_COMMA] = ACTIONS(3074), + [anon_sym_const] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3074), + [anon_sym___global] = ACTIONS(3074), + [anon_sym_type] = ACTIONS(3074), + [anon_sym_PIPE] = ACTIONS(3074), + [anon_sym_fn] = ACTIONS(3074), + [anon_sym_PLUS] = ACTIONS(3074), + [anon_sym_DASH] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(3074), + [anon_sym_SLASH] = ACTIONS(3074), + [anon_sym_PERCENT] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(3074), + [anon_sym_GT] = ACTIONS(3074), + [anon_sym_EQ_EQ] = ACTIONS(3074), + [anon_sym_BANG_EQ] = ACTIONS(3074), + [anon_sym_LT_EQ] = ACTIONS(3074), + [anon_sym_GT_EQ] = ACTIONS(3074), + [anon_sym_LBRACK] = ACTIONS(3072), + [anon_sym_struct] = ACTIONS(3074), + [anon_sym_union] = ACTIONS(3074), + [anon_sym_pub] = ACTIONS(3074), + [anon_sym_mut] = ACTIONS(3074), + [anon_sym_enum] = ACTIONS(3074), + [anon_sym_interface] = ACTIONS(3074), + [anon_sym_PLUS_PLUS] = ACTIONS(3074), + [anon_sym_DASH_DASH] = ACTIONS(3074), + [anon_sym_QMARK] = ACTIONS(3074), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_go] = ACTIONS(3074), + [anon_sym_spawn] = ACTIONS(3074), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3074), + [anon_sym_TILDE] = ACTIONS(3074), + [anon_sym_CARET] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3074), + [anon_sym_LT_DASH] = ACTIONS(3074), + [anon_sym_LT_LT] = ACTIONS(3074), + [anon_sym_GT_GT] = ACTIONS(3074), + [anon_sym_GT_GT_GT] = ACTIONS(3074), + [anon_sym_AMP_CARET] = ACTIONS(3074), + [anon_sym_AMP_AMP] = ACTIONS(3074), + [anon_sym_PIPE_PIPE] = ACTIONS(3074), + [anon_sym_or] = ACTIONS(3074), + [sym_none] = ACTIONS(3074), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [sym_nil] = ACTIONS(3074), + [anon_sym_QMARK_DOT] = ACTIONS(3074), + [anon_sym_POUND_LBRACK] = ACTIONS(3074), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_DOLLARif] = ACTIONS(3074), + [anon_sym_is] = ACTIONS(3074), + [anon_sym_BANGis] = ACTIONS(3074), + [anon_sym_in] = ACTIONS(3074), + [anon_sym_BANGin] = ACTIONS(3074), + [anon_sym_match] = ACTIONS(3074), + [anon_sym_select] = ACTIONS(3074), + [anon_sym_lock] = ACTIONS(3074), + [anon_sym_rlock] = ACTIONS(3074), + [anon_sym_unsafe] = ACTIONS(3074), + [anon_sym_sql] = ACTIONS(3074), + [sym_int_literal] = ACTIONS(3074), + [sym_float_literal] = ACTIONS(3074), + [sym_rune_literal] = ACTIONS(3074), + [anon_sym_AT] = ACTIONS(3074), + [anon_sym_shared] = ACTIONS(3074), + [anon_sym_map_LBRACK] = ACTIONS(3074), + [anon_sym_chan] = ACTIONS(3074), + [anon_sym_thread] = ACTIONS(3074), + [anon_sym_atomic] = ACTIONS(3074), + [anon_sym_assert] = ACTIONS(3074), + [anon_sym_defer] = ACTIONS(3074), + [anon_sym_goto] = ACTIONS(3074), + [anon_sym_break] = ACTIONS(3074), + [anon_sym_continue] = ACTIONS(3074), + [anon_sym_return] = ACTIONS(3074), + [anon_sym_DOLLARfor] = ACTIONS(3074), + [anon_sym_for] = ACTIONS(3074), + [anon_sym_POUND] = ACTIONS(3074), + [anon_sym_asm] = ACTIONS(3074), + [anon_sym_AT_LBRACK] = ACTIONS(3074), + [sym___double_quote] = ACTIONS(3074), + [sym___single_quote] = ACTIONS(3074), + [sym___c_double_quote] = ACTIONS(3074), + [sym___c_single_quote] = ACTIONS(3074), + [sym___r_double_quote] = ACTIONS(3074), + [sym___r_single_quote] = ACTIONS(3074), + }, + [1024] = { + [ts_builtin_sym_end] = ACTIONS(2976), + [sym_identifier] = ACTIONS(2978), + [anon_sym_LF] = ACTIONS(2978), + [anon_sym_CR] = ACTIONS(2978), + [anon_sym_CR_LF] = ACTIONS(2978), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2978), + [anon_sym_as] = ACTIONS(2978), + [anon_sym_LBRACE] = ACTIONS(2978), + [anon_sym_COMMA] = ACTIONS(2978), + [anon_sym_const] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2978), + [anon_sym___global] = ACTIONS(2978), + [anon_sym_type] = ACTIONS(2978), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_fn] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2978), + [anon_sym_DASH] = ACTIONS(2978), + [anon_sym_STAR] = ACTIONS(2978), + [anon_sym_SLASH] = ACTIONS(2978), + [anon_sym_PERCENT] = ACTIONS(2978), + [anon_sym_LT] = ACTIONS(2978), + [anon_sym_GT] = ACTIONS(2978), + [anon_sym_EQ_EQ] = ACTIONS(2978), + [anon_sym_BANG_EQ] = ACTIONS(2978), + [anon_sym_LT_EQ] = ACTIONS(2978), + [anon_sym_GT_EQ] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2976), + [anon_sym_struct] = ACTIONS(2978), + [anon_sym_union] = ACTIONS(2978), + [anon_sym_pub] = ACTIONS(2978), + [anon_sym_mut] = ACTIONS(2978), + [anon_sym_enum] = ACTIONS(2978), + [anon_sym_interface] = ACTIONS(2978), + [anon_sym_PLUS_PLUS] = ACTIONS(2978), + [anon_sym_DASH_DASH] = ACTIONS(2978), + [anon_sym_QMARK] = ACTIONS(2978), + [anon_sym_BANG] = ACTIONS(2978), + [anon_sym_go] = ACTIONS(2978), + [anon_sym_spawn] = ACTIONS(2978), + [anon_sym_json_DOTdecode] = ACTIONS(2978), + [anon_sym_LBRACK2] = ACTIONS(2978), + [anon_sym_TILDE] = ACTIONS(2978), + [anon_sym_CARET] = ACTIONS(2978), + [anon_sym_AMP] = ACTIONS(2978), + [anon_sym_LT_DASH] = ACTIONS(2978), + [anon_sym_LT_LT] = ACTIONS(2978), + [anon_sym_GT_GT] = ACTIONS(2978), + [anon_sym_GT_GT_GT] = ACTIONS(2978), + [anon_sym_AMP_CARET] = ACTIONS(2978), + [anon_sym_AMP_AMP] = ACTIONS(2978), + [anon_sym_PIPE_PIPE] = ACTIONS(2978), + [anon_sym_or] = ACTIONS(2978), + [sym_none] = ACTIONS(2978), + [sym_true] = ACTIONS(2978), + [sym_false] = ACTIONS(2978), + [sym_nil] = ACTIONS(2978), + [anon_sym_QMARK_DOT] = ACTIONS(2978), + [anon_sym_POUND_LBRACK] = ACTIONS(2978), + [anon_sym_if] = ACTIONS(2978), + [anon_sym_DOLLARif] = ACTIONS(2978), + [anon_sym_is] = ACTIONS(2978), + [anon_sym_BANGis] = ACTIONS(2978), + [anon_sym_in] = ACTIONS(2978), + [anon_sym_BANGin] = ACTIONS(2978), + [anon_sym_match] = ACTIONS(2978), + [anon_sym_select] = ACTIONS(2978), + [anon_sym_lock] = ACTIONS(2978), + [anon_sym_rlock] = ACTIONS(2978), + [anon_sym_unsafe] = ACTIONS(2978), + [anon_sym_sql] = ACTIONS(2978), + [sym_int_literal] = ACTIONS(2978), + [sym_float_literal] = ACTIONS(2978), + [sym_rune_literal] = ACTIONS(2978), + [anon_sym_AT] = ACTIONS(2978), + [anon_sym_shared] = ACTIONS(2978), + [anon_sym_map_LBRACK] = ACTIONS(2978), + [anon_sym_chan] = ACTIONS(2978), + [anon_sym_thread] = ACTIONS(2978), + [anon_sym_atomic] = ACTIONS(2978), + [anon_sym_assert] = ACTIONS(2978), + [anon_sym_defer] = ACTIONS(2978), + [anon_sym_goto] = ACTIONS(2978), + [anon_sym_break] = ACTIONS(2978), + [anon_sym_continue] = ACTIONS(2978), + [anon_sym_return] = ACTIONS(2978), + [anon_sym_DOLLARfor] = ACTIONS(2978), + [anon_sym_for] = ACTIONS(2978), + [anon_sym_POUND] = ACTIONS(2978), + [anon_sym_asm] = ACTIONS(2978), + [anon_sym_AT_LBRACK] = ACTIONS(2978), + [sym___double_quote] = ACTIONS(2978), + [sym___single_quote] = ACTIONS(2978), + [sym___c_double_quote] = ACTIONS(2978), + [sym___c_single_quote] = ACTIONS(2978), + [sym___r_double_quote] = ACTIONS(2978), + [sym___r_single_quote] = ACTIONS(2978), + }, + [1025] = { + [ts_builtin_sym_end] = ACTIONS(2788), + [sym_identifier] = ACTIONS(2790), + [anon_sym_LF] = ACTIONS(2790), + [anon_sym_CR] = ACTIONS(2790), + [anon_sym_CR_LF] = ACTIONS(2790), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2790), + [anon_sym_as] = ACTIONS(2790), + [anon_sym_LBRACE] = ACTIONS(2790), + [anon_sym_COMMA] = ACTIONS(2790), + [anon_sym_const] = ACTIONS(2790), + [anon_sym_LPAREN] = ACTIONS(2790), + [anon_sym___global] = ACTIONS(2790), + [anon_sym_type] = ACTIONS(2790), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_fn] = ACTIONS(2790), + [anon_sym_PLUS] = ACTIONS(2790), + [anon_sym_DASH] = ACTIONS(2790), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_SLASH] = ACTIONS(2790), + [anon_sym_PERCENT] = ACTIONS(2790), + [anon_sym_LT] = ACTIONS(2790), + [anon_sym_GT] = ACTIONS(2790), + [anon_sym_EQ_EQ] = ACTIONS(2790), + [anon_sym_BANG_EQ] = ACTIONS(2790), + [anon_sym_LT_EQ] = ACTIONS(2790), + [anon_sym_GT_EQ] = ACTIONS(2790), + [anon_sym_LBRACK] = ACTIONS(2788), + [anon_sym_struct] = ACTIONS(2790), + [anon_sym_union] = ACTIONS(2790), + [anon_sym_pub] = ACTIONS(2790), + [anon_sym_mut] = ACTIONS(2790), + [anon_sym_enum] = ACTIONS(2790), + [anon_sym_interface] = ACTIONS(2790), + [anon_sym_PLUS_PLUS] = ACTIONS(2790), + [anon_sym_DASH_DASH] = ACTIONS(2790), + [anon_sym_QMARK] = ACTIONS(2790), + [anon_sym_BANG] = ACTIONS(2790), + [anon_sym_go] = ACTIONS(2790), + [anon_sym_spawn] = ACTIONS(2790), + [anon_sym_json_DOTdecode] = ACTIONS(2790), + [anon_sym_LBRACK2] = ACTIONS(2790), + [anon_sym_TILDE] = ACTIONS(2790), + [anon_sym_CARET] = ACTIONS(2790), + [anon_sym_AMP] = ACTIONS(2790), + [anon_sym_LT_DASH] = ACTIONS(2790), + [anon_sym_LT_LT] = ACTIONS(2790), + [anon_sym_GT_GT] = ACTIONS(2790), + [anon_sym_GT_GT_GT] = ACTIONS(2790), + [anon_sym_AMP_CARET] = ACTIONS(2790), + [anon_sym_AMP_AMP] = ACTIONS(2790), + [anon_sym_PIPE_PIPE] = ACTIONS(2790), + [anon_sym_or] = ACTIONS(2790), + [sym_none] = ACTIONS(2790), + [sym_true] = ACTIONS(2790), + [sym_false] = ACTIONS(2790), + [sym_nil] = ACTIONS(2790), + [anon_sym_QMARK_DOT] = ACTIONS(2790), + [anon_sym_POUND_LBRACK] = ACTIONS(2790), + [anon_sym_if] = ACTIONS(2790), + [anon_sym_DOLLARif] = ACTIONS(2790), + [anon_sym_is] = ACTIONS(2790), + [anon_sym_BANGis] = ACTIONS(2790), + [anon_sym_in] = ACTIONS(2790), + [anon_sym_BANGin] = ACTIONS(2790), + [anon_sym_match] = ACTIONS(2790), + [anon_sym_select] = ACTIONS(2790), + [anon_sym_lock] = ACTIONS(2790), + [anon_sym_rlock] = ACTIONS(2790), + [anon_sym_unsafe] = ACTIONS(2790), + [anon_sym_sql] = ACTIONS(2790), + [sym_int_literal] = ACTIONS(2790), + [sym_float_literal] = ACTIONS(2790), + [sym_rune_literal] = ACTIONS(2790), + [anon_sym_AT] = ACTIONS(2790), + [anon_sym_shared] = ACTIONS(2790), + [anon_sym_map_LBRACK] = ACTIONS(2790), + [anon_sym_chan] = ACTIONS(2790), + [anon_sym_thread] = ACTIONS(2790), + [anon_sym_atomic] = ACTIONS(2790), + [anon_sym_assert] = ACTIONS(2790), + [anon_sym_defer] = ACTIONS(2790), + [anon_sym_goto] = ACTIONS(2790), + [anon_sym_break] = ACTIONS(2790), + [anon_sym_continue] = ACTIONS(2790), + [anon_sym_return] = ACTIONS(2790), + [anon_sym_DOLLARfor] = ACTIONS(2790), + [anon_sym_for] = ACTIONS(2790), + [anon_sym_POUND] = ACTIONS(2790), + [anon_sym_asm] = ACTIONS(2790), + [anon_sym_AT_LBRACK] = ACTIONS(2790), + [sym___double_quote] = ACTIONS(2790), + [sym___single_quote] = ACTIONS(2790), + [sym___c_double_quote] = ACTIONS(2790), + [sym___c_single_quote] = ACTIONS(2790), + [sym___r_double_quote] = ACTIONS(2790), + [sym___r_single_quote] = ACTIONS(2790), + }, + [1026] = { + [ts_builtin_sym_end] = ACTIONS(3088), + [sym_identifier] = ACTIONS(3090), + [anon_sym_LF] = ACTIONS(3090), + [anon_sym_CR] = ACTIONS(3090), + [anon_sym_CR_LF] = ACTIONS(3090), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3090), + [anon_sym_as] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_const] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3090), + [anon_sym___global] = ACTIONS(3090), + [anon_sym_type] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3090), + [anon_sym_fn] = ACTIONS(3090), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3090), + [anon_sym_SLASH] = ACTIONS(3090), + [anon_sym_PERCENT] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(3090), + [anon_sym_GT] = ACTIONS(3090), + [anon_sym_EQ_EQ] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(3090), + [anon_sym_LT_EQ] = ACTIONS(3090), + [anon_sym_GT_EQ] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3088), + [anon_sym_struct] = ACTIONS(3090), + [anon_sym_union] = ACTIONS(3090), + [anon_sym_pub] = ACTIONS(3090), + [anon_sym_mut] = ACTIONS(3090), + [anon_sym_enum] = ACTIONS(3090), + [anon_sym_interface] = ACTIONS(3090), + [anon_sym_PLUS_PLUS] = ACTIONS(3090), + [anon_sym_DASH_DASH] = ACTIONS(3090), + [anon_sym_QMARK] = ACTIONS(3090), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_go] = ACTIONS(3090), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(3090), + [anon_sym_LBRACK2] = ACTIONS(3090), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3090), + [anon_sym_LT_DASH] = ACTIONS(3090), + [anon_sym_LT_LT] = ACTIONS(3090), + [anon_sym_GT_GT] = ACTIONS(3090), + [anon_sym_GT_GT_GT] = ACTIONS(3090), + [anon_sym_AMP_CARET] = ACTIONS(3090), + [anon_sym_AMP_AMP] = ACTIONS(3090), + [anon_sym_PIPE_PIPE] = ACTIONS(3090), + [anon_sym_or] = ACTIONS(3090), + [sym_none] = ACTIONS(3090), + [sym_true] = ACTIONS(3090), + [sym_false] = ACTIONS(3090), + [sym_nil] = ACTIONS(3090), + [anon_sym_QMARK_DOT] = ACTIONS(3090), + [anon_sym_POUND_LBRACK] = ACTIONS(3090), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_DOLLARif] = ACTIONS(3090), + [anon_sym_is] = ACTIONS(3090), + [anon_sym_BANGis] = ACTIONS(3090), + [anon_sym_in] = ACTIONS(3090), + [anon_sym_BANGin] = ACTIONS(3090), + [anon_sym_match] = ACTIONS(3090), + [anon_sym_select] = ACTIONS(3090), + [anon_sym_lock] = ACTIONS(3090), + [anon_sym_rlock] = ACTIONS(3090), + [anon_sym_unsafe] = ACTIONS(3090), + [anon_sym_sql] = ACTIONS(3090), + [sym_int_literal] = ACTIONS(3090), + [sym_float_literal] = ACTIONS(3090), + [sym_rune_literal] = ACTIONS(3090), + [anon_sym_AT] = ACTIONS(3090), + [anon_sym_shared] = ACTIONS(3090), + [anon_sym_map_LBRACK] = ACTIONS(3090), + [anon_sym_chan] = ACTIONS(3090), + [anon_sym_thread] = ACTIONS(3090), + [anon_sym_atomic] = ACTIONS(3090), + [anon_sym_assert] = ACTIONS(3090), + [anon_sym_defer] = ACTIONS(3090), + [anon_sym_goto] = ACTIONS(3090), + [anon_sym_break] = ACTIONS(3090), + [anon_sym_continue] = ACTIONS(3090), + [anon_sym_return] = ACTIONS(3090), + [anon_sym_DOLLARfor] = ACTIONS(3090), + [anon_sym_for] = ACTIONS(3090), + [anon_sym_POUND] = ACTIONS(3090), + [anon_sym_asm] = ACTIONS(3090), + [anon_sym_AT_LBRACK] = ACTIONS(3090), + [sym___double_quote] = ACTIONS(3090), + [sym___single_quote] = ACTIONS(3090), + [sym___c_double_quote] = ACTIONS(3090), + [sym___c_single_quote] = ACTIONS(3090), + [sym___r_double_quote] = ACTIONS(3090), + [sym___r_single_quote] = ACTIONS(3090), + }, + [1027] = { + [ts_builtin_sym_end] = ACTIONS(3096), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LF] = ACTIONS(3098), + [anon_sym_CR] = ACTIONS(3098), + [anon_sym_CR_LF] = ACTIONS(3098), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3098), + [anon_sym_as] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_const] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3098), + [anon_sym___global] = ACTIONS(3098), + [anon_sym_type] = ACTIONS(3098), + [anon_sym_PIPE] = ACTIONS(3098), + [anon_sym_fn] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_DASH] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_PERCENT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(3096), + [anon_sym_struct] = ACTIONS(3098), + [anon_sym_union] = ACTIONS(3098), + [anon_sym_pub] = ACTIONS(3098), + [anon_sym_mut] = ACTIONS(3098), + [anon_sym_enum] = ACTIONS(3098), + [anon_sym_interface] = ACTIONS(3098), + [anon_sym_PLUS_PLUS] = ACTIONS(3098), + [anon_sym_DASH_DASH] = ACTIONS(3098), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_BANG] = ACTIONS(3098), + [anon_sym_go] = ACTIONS(3098), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(3098), + [anon_sym_LBRACK2] = ACTIONS(3098), + [anon_sym_TILDE] = ACTIONS(3098), + [anon_sym_CARET] = ACTIONS(3098), + [anon_sym_AMP] = ACTIONS(3098), + [anon_sym_LT_DASH] = ACTIONS(3098), + [anon_sym_LT_LT] = ACTIONS(3098), + [anon_sym_GT_GT] = ACTIONS(3098), + [anon_sym_GT_GT_GT] = ACTIONS(3098), + [anon_sym_AMP_CARET] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_or] = ACTIONS(3098), + [sym_none] = ACTIONS(3098), + [sym_true] = ACTIONS(3098), + [sym_false] = ACTIONS(3098), + [sym_nil] = ACTIONS(3098), + [anon_sym_QMARK_DOT] = ACTIONS(3098), + [anon_sym_POUND_LBRACK] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3098), + [anon_sym_DOLLARif] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3098), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_in] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_match] = ACTIONS(3098), + [anon_sym_select] = ACTIONS(3098), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(3098), + [anon_sym_sql] = ACTIONS(3098), + [sym_int_literal] = ACTIONS(3098), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [anon_sym_AT] = ACTIONS(3098), + [anon_sym_shared] = ACTIONS(3098), + [anon_sym_map_LBRACK] = ACTIONS(3098), + [anon_sym_chan] = ACTIONS(3098), + [anon_sym_thread] = ACTIONS(3098), + [anon_sym_atomic] = ACTIONS(3098), + [anon_sym_assert] = ACTIONS(3098), + [anon_sym_defer] = ACTIONS(3098), + [anon_sym_goto] = ACTIONS(3098), + [anon_sym_break] = ACTIONS(3098), + [anon_sym_continue] = ACTIONS(3098), + [anon_sym_return] = ACTIONS(3098), + [anon_sym_DOLLARfor] = ACTIONS(3098), + [anon_sym_for] = ACTIONS(3098), + [anon_sym_POUND] = ACTIONS(3098), + [anon_sym_asm] = ACTIONS(3098), + [anon_sym_AT_LBRACK] = ACTIONS(3098), + [sym___double_quote] = ACTIONS(3098), + [sym___single_quote] = ACTIONS(3098), + [sym___c_double_quote] = ACTIONS(3098), + [sym___c_single_quote] = ACTIONS(3098), + [sym___r_double_quote] = ACTIONS(3098), + [sym___r_single_quote] = ACTIONS(3098), + }, + [1028] = { + [ts_builtin_sym_end] = ACTIONS(3108), + [sym_identifier] = ACTIONS(3110), + [anon_sym_LF] = ACTIONS(3110), + [anon_sym_CR] = ACTIONS(3110), + [anon_sym_CR_LF] = ACTIONS(3110), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3110), + [anon_sym_as] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3110), + [anon_sym_COMMA] = ACTIONS(3110), + [anon_sym_const] = ACTIONS(3110), + [anon_sym_LPAREN] = ACTIONS(3110), + [anon_sym___global] = ACTIONS(3110), + [anon_sym_type] = ACTIONS(3110), + [anon_sym_PIPE] = ACTIONS(3110), + [anon_sym_fn] = ACTIONS(3110), + [anon_sym_PLUS] = ACTIONS(3110), + [anon_sym_DASH] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_SLASH] = ACTIONS(3110), + [anon_sym_PERCENT] = ACTIONS(3110), + [anon_sym_LT] = ACTIONS(3110), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_LT_EQ] = ACTIONS(3110), + [anon_sym_GT_EQ] = ACTIONS(3110), + [anon_sym_LBRACK] = ACTIONS(3108), + [anon_sym_struct] = ACTIONS(3110), + [anon_sym_union] = ACTIONS(3110), + [anon_sym_pub] = ACTIONS(3110), + [anon_sym_mut] = ACTIONS(3110), + [anon_sym_enum] = ACTIONS(3110), + [anon_sym_interface] = ACTIONS(3110), + [anon_sym_PLUS_PLUS] = ACTIONS(3110), + [anon_sym_DASH_DASH] = ACTIONS(3110), + [anon_sym_QMARK] = ACTIONS(3110), + [anon_sym_BANG] = ACTIONS(3110), + [anon_sym_go] = ACTIONS(3110), + [anon_sym_spawn] = ACTIONS(3110), + [anon_sym_json_DOTdecode] = ACTIONS(3110), + [anon_sym_LBRACK2] = ACTIONS(3110), + [anon_sym_TILDE] = ACTIONS(3110), + [anon_sym_CARET] = ACTIONS(3110), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_LT_DASH] = ACTIONS(3110), + [anon_sym_LT_LT] = ACTIONS(3110), + [anon_sym_GT_GT] = ACTIONS(3110), + [anon_sym_GT_GT_GT] = ACTIONS(3110), + [anon_sym_AMP_CARET] = ACTIONS(3110), + [anon_sym_AMP_AMP] = ACTIONS(3110), + [anon_sym_PIPE_PIPE] = ACTIONS(3110), + [anon_sym_or] = ACTIONS(3110), + [sym_none] = ACTIONS(3110), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [sym_nil] = ACTIONS(3110), + [anon_sym_QMARK_DOT] = ACTIONS(3110), + [anon_sym_POUND_LBRACK] = ACTIONS(3110), + [anon_sym_if] = ACTIONS(3110), + [anon_sym_DOLLARif] = ACTIONS(3110), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3110), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_BANGin] = ACTIONS(3110), + [anon_sym_match] = ACTIONS(3110), + [anon_sym_select] = ACTIONS(3110), + [anon_sym_lock] = ACTIONS(3110), + [anon_sym_rlock] = ACTIONS(3110), + [anon_sym_unsafe] = ACTIONS(3110), + [anon_sym_sql] = ACTIONS(3110), + [sym_int_literal] = ACTIONS(3110), + [sym_float_literal] = ACTIONS(3110), + [sym_rune_literal] = ACTIONS(3110), + [anon_sym_AT] = ACTIONS(3110), + [anon_sym_shared] = ACTIONS(3110), + [anon_sym_map_LBRACK] = ACTIONS(3110), + [anon_sym_chan] = ACTIONS(3110), + [anon_sym_thread] = ACTIONS(3110), + [anon_sym_atomic] = ACTIONS(3110), + [anon_sym_assert] = ACTIONS(3110), + [anon_sym_defer] = ACTIONS(3110), + [anon_sym_goto] = ACTIONS(3110), + [anon_sym_break] = ACTIONS(3110), + [anon_sym_continue] = ACTIONS(3110), + [anon_sym_return] = ACTIONS(3110), + [anon_sym_DOLLARfor] = ACTIONS(3110), + [anon_sym_for] = ACTIONS(3110), + [anon_sym_POUND] = ACTIONS(3110), + [anon_sym_asm] = ACTIONS(3110), + [anon_sym_AT_LBRACK] = ACTIONS(3110), + [sym___double_quote] = ACTIONS(3110), + [sym___single_quote] = ACTIONS(3110), + [sym___c_double_quote] = ACTIONS(3110), + [sym___c_single_quote] = ACTIONS(3110), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3110), + }, + [1029] = { [ts_builtin_sym_end] = ACTIONS(3135), [sym_identifier] = ACTIONS(3137), [anon_sym_LF] = ACTIONS(3137), [anon_sym_CR] = ACTIONS(3137), [anon_sym_CR_LF] = ACTIONS(3137), - [sym_comment] = ACTIONS(487), + [sym_comment] = ACTIONS(493), [anon_sym_DOT] = ACTIONS(3137), [anon_sym_as] = ACTIONS(3137), [anon_sym_LBRACE] = ACTIONS(3137), @@ -142331,7636 +143650,5359 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3137), [sym___r_single_quote] = ACTIONS(3137), }, - [1019] = { - [ts_builtin_sym_end] = ACTIONS(2870), - [sym_identifier] = ACTIONS(2872), - [anon_sym_LF] = ACTIONS(2872), - [anon_sym_CR] = ACTIONS(2872), - [anon_sym_CR_LF] = ACTIONS(2872), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2872), - [anon_sym_as] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2872), - [anon_sym_COMMA] = ACTIONS(2872), - [anon_sym_const] = ACTIONS(2872), - [anon_sym_LPAREN] = ACTIONS(2872), - [anon_sym___global] = ACTIONS(2872), - [anon_sym_type] = ACTIONS(2872), - [anon_sym_PIPE] = ACTIONS(2872), - [anon_sym_fn] = ACTIONS(2872), - [anon_sym_PLUS] = ACTIONS(2872), - [anon_sym_DASH] = ACTIONS(2872), - [anon_sym_STAR] = ACTIONS(2872), - [anon_sym_SLASH] = ACTIONS(2872), - [anon_sym_PERCENT] = ACTIONS(2872), - [anon_sym_LT] = ACTIONS(2872), - [anon_sym_GT] = ACTIONS(2872), - [anon_sym_EQ_EQ] = ACTIONS(2872), - [anon_sym_BANG_EQ] = ACTIONS(2872), - [anon_sym_LT_EQ] = ACTIONS(2872), - [anon_sym_GT_EQ] = ACTIONS(2872), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_struct] = ACTIONS(2872), - [anon_sym_union] = ACTIONS(2872), - [anon_sym_pub] = ACTIONS(2872), - [anon_sym_mut] = ACTIONS(2872), - [anon_sym_enum] = ACTIONS(2872), - [anon_sym_interface] = ACTIONS(2872), - [anon_sym_PLUS_PLUS] = ACTIONS(2872), - [anon_sym_DASH_DASH] = ACTIONS(2872), - [anon_sym_QMARK] = ACTIONS(2872), - [anon_sym_BANG] = ACTIONS(2872), - [anon_sym_go] = ACTIONS(2872), - [anon_sym_spawn] = ACTIONS(2872), - [anon_sym_json_DOTdecode] = ACTIONS(2872), - [anon_sym_LBRACK2] = ACTIONS(2872), - [anon_sym_TILDE] = ACTIONS(2872), - [anon_sym_CARET] = ACTIONS(2872), - [anon_sym_AMP] = ACTIONS(2872), - [anon_sym_LT_DASH] = ACTIONS(2872), - [anon_sym_LT_LT] = ACTIONS(2872), - [anon_sym_GT_GT] = ACTIONS(2872), - [anon_sym_GT_GT_GT] = ACTIONS(2872), - [anon_sym_AMP_CARET] = ACTIONS(2872), - [anon_sym_AMP_AMP] = ACTIONS(2872), - [anon_sym_PIPE_PIPE] = ACTIONS(2872), - [anon_sym_or] = ACTIONS(2872), - [sym_none] = ACTIONS(2872), - [sym_true] = ACTIONS(2872), - [sym_false] = ACTIONS(2872), - [sym_nil] = ACTIONS(2872), - [anon_sym_QMARK_DOT] = ACTIONS(2872), - [anon_sym_POUND_LBRACK] = ACTIONS(2872), - [anon_sym_if] = ACTIONS(2872), - [anon_sym_DOLLARif] = ACTIONS(2872), - [anon_sym_is] = ACTIONS(2872), - [anon_sym_BANGis] = ACTIONS(2872), - [anon_sym_in] = ACTIONS(2872), - [anon_sym_BANGin] = ACTIONS(2872), - [anon_sym_match] = ACTIONS(2872), - [anon_sym_select] = ACTIONS(2872), - [anon_sym_lock] = ACTIONS(2872), - [anon_sym_rlock] = ACTIONS(2872), - [anon_sym_unsafe] = ACTIONS(2872), - [anon_sym_sql] = ACTIONS(2872), - [sym_int_literal] = ACTIONS(2872), - [sym_float_literal] = ACTIONS(2872), - [sym_rune_literal] = ACTIONS(2872), - [anon_sym_AT] = ACTIONS(2872), - [anon_sym_shared] = ACTIONS(2872), - [anon_sym_map_LBRACK] = ACTIONS(2872), - [anon_sym_chan] = ACTIONS(2872), - [anon_sym_thread] = ACTIONS(2872), - [anon_sym_atomic] = ACTIONS(2872), - [anon_sym_assert] = ACTIONS(2872), - [anon_sym_defer] = ACTIONS(2872), - [anon_sym_goto] = ACTIONS(2872), - [anon_sym_break] = ACTIONS(2872), - [anon_sym_continue] = ACTIONS(2872), - [anon_sym_return] = ACTIONS(2872), - [anon_sym_DOLLARfor] = ACTIONS(2872), - [anon_sym_for] = ACTIONS(2872), - [anon_sym_POUND] = ACTIONS(2872), - [anon_sym_asm] = ACTIONS(2872), - [anon_sym_AT_LBRACK] = ACTIONS(2872), - [sym___double_quote] = ACTIONS(2872), - [sym___single_quote] = ACTIONS(2872), - [sym___c_double_quote] = ACTIONS(2872), - [sym___c_single_quote] = ACTIONS(2872), - [sym___r_double_quote] = ACTIONS(2872), - [sym___r_single_quote] = ACTIONS(2872), + [1030] = { + [ts_builtin_sym_end] = ACTIONS(3145), + [sym_identifier] = ACTIONS(3147), + [anon_sym_LF] = ACTIONS(3147), + [anon_sym_CR] = ACTIONS(3147), + [anon_sym_CR_LF] = ACTIONS(3147), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3147), + [anon_sym_as] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_COMMA] = ACTIONS(3147), + [anon_sym_const] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym___global] = ACTIONS(3147), + [anon_sym_type] = ACTIONS(3147), + [anon_sym_PIPE] = ACTIONS(3147), + [anon_sym_fn] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_SLASH] = ACTIONS(3147), + [anon_sym_PERCENT] = ACTIONS(3147), + [anon_sym_LT] = ACTIONS(3147), + [anon_sym_GT] = ACTIONS(3147), + [anon_sym_EQ_EQ] = ACTIONS(3147), + [anon_sym_BANG_EQ] = ACTIONS(3147), + [anon_sym_LT_EQ] = ACTIONS(3147), + [anon_sym_GT_EQ] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3145), + [anon_sym_struct] = ACTIONS(3147), + [anon_sym_union] = ACTIONS(3147), + [anon_sym_pub] = ACTIONS(3147), + [anon_sym_mut] = ACTIONS(3147), + [anon_sym_enum] = ACTIONS(3147), + [anon_sym_interface] = ACTIONS(3147), + [anon_sym_PLUS_PLUS] = ACTIONS(3147), + [anon_sym_DASH_DASH] = ACTIONS(3147), + [anon_sym_QMARK] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3147), + [anon_sym_go] = ACTIONS(3147), + [anon_sym_spawn] = ACTIONS(3147), + [anon_sym_json_DOTdecode] = ACTIONS(3147), + [anon_sym_LBRACK2] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3147), + [anon_sym_CARET] = ACTIONS(3147), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym_LT_DASH] = ACTIONS(3147), + [anon_sym_LT_LT] = ACTIONS(3147), + [anon_sym_GT_GT] = ACTIONS(3147), + [anon_sym_GT_GT_GT] = ACTIONS(3147), + [anon_sym_AMP_CARET] = ACTIONS(3147), + [anon_sym_AMP_AMP] = ACTIONS(3147), + [anon_sym_PIPE_PIPE] = ACTIONS(3147), + [anon_sym_or] = ACTIONS(3147), + [sym_none] = ACTIONS(3147), + [sym_true] = ACTIONS(3147), + [sym_false] = ACTIONS(3147), + [sym_nil] = ACTIONS(3147), + [anon_sym_QMARK_DOT] = ACTIONS(3147), + [anon_sym_POUND_LBRACK] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_DOLLARif] = ACTIONS(3147), + [anon_sym_is] = ACTIONS(3147), + [anon_sym_BANGis] = ACTIONS(3147), + [anon_sym_in] = ACTIONS(3147), + [anon_sym_BANGin] = ACTIONS(3147), + [anon_sym_match] = ACTIONS(3147), + [anon_sym_select] = ACTIONS(3147), + [anon_sym_lock] = ACTIONS(3147), + [anon_sym_rlock] = ACTIONS(3147), + [anon_sym_unsafe] = ACTIONS(3147), + [anon_sym_sql] = ACTIONS(3147), + [sym_int_literal] = ACTIONS(3147), + [sym_float_literal] = ACTIONS(3147), + [sym_rune_literal] = ACTIONS(3147), + [anon_sym_AT] = ACTIONS(3147), + [anon_sym_shared] = ACTIONS(3147), + [anon_sym_map_LBRACK] = ACTIONS(3147), + [anon_sym_chan] = ACTIONS(3147), + [anon_sym_thread] = ACTIONS(3147), + [anon_sym_atomic] = ACTIONS(3147), + [anon_sym_assert] = ACTIONS(3147), + [anon_sym_defer] = ACTIONS(3147), + [anon_sym_goto] = ACTIONS(3147), + [anon_sym_break] = ACTIONS(3147), + [anon_sym_continue] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3147), + [anon_sym_DOLLARfor] = ACTIONS(3147), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_POUND] = ACTIONS(3147), + [anon_sym_asm] = ACTIONS(3147), + [anon_sym_AT_LBRACK] = ACTIONS(3147), + [sym___double_quote] = ACTIONS(3147), + [sym___single_quote] = ACTIONS(3147), + [sym___c_double_quote] = ACTIONS(3147), + [sym___c_single_quote] = ACTIONS(3147), + [sym___r_double_quote] = ACTIONS(3147), + [sym___r_single_quote] = ACTIONS(3147), }, - [1020] = { - [ts_builtin_sym_end] = ACTIONS(2798), - [sym_identifier] = ACTIONS(2800), - [anon_sym_LF] = ACTIONS(2800), - [anon_sym_CR] = ACTIONS(2800), - [anon_sym_CR_LF] = ACTIONS(2800), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2800), - [anon_sym_as] = ACTIONS(2800), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_COMMA] = ACTIONS(2800), - [anon_sym_const] = ACTIONS(2800), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym___global] = ACTIONS(2800), - [anon_sym_type] = ACTIONS(2800), - [anon_sym_PIPE] = ACTIONS(2800), - [anon_sym_fn] = ACTIONS(2800), - [anon_sym_PLUS] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(2800), - [anon_sym_STAR] = ACTIONS(2800), - [anon_sym_SLASH] = ACTIONS(2800), - [anon_sym_PERCENT] = ACTIONS(2800), - [anon_sym_LT] = ACTIONS(2800), - [anon_sym_GT] = ACTIONS(2800), - [anon_sym_EQ_EQ] = ACTIONS(2800), - [anon_sym_BANG_EQ] = ACTIONS(2800), - [anon_sym_LT_EQ] = ACTIONS(2800), - [anon_sym_GT_EQ] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2798), - [anon_sym_struct] = ACTIONS(2800), - [anon_sym_union] = ACTIONS(2800), - [anon_sym_pub] = ACTIONS(2800), - [anon_sym_mut] = ACTIONS(2800), - [anon_sym_enum] = ACTIONS(2800), - [anon_sym_interface] = ACTIONS(2800), - [anon_sym_PLUS_PLUS] = ACTIONS(2800), - [anon_sym_DASH_DASH] = ACTIONS(2800), - [anon_sym_QMARK] = ACTIONS(2800), - [anon_sym_BANG] = ACTIONS(2800), - [anon_sym_go] = ACTIONS(2800), - [anon_sym_spawn] = ACTIONS(2800), - [anon_sym_json_DOTdecode] = ACTIONS(2800), - [anon_sym_LBRACK2] = ACTIONS(2800), - [anon_sym_TILDE] = ACTIONS(2800), - [anon_sym_CARET] = ACTIONS(2800), - [anon_sym_AMP] = ACTIONS(2800), - [anon_sym_LT_DASH] = ACTIONS(2800), - [anon_sym_LT_LT] = ACTIONS(2800), - [anon_sym_GT_GT] = ACTIONS(2800), - [anon_sym_GT_GT_GT] = ACTIONS(2800), - [anon_sym_AMP_CARET] = ACTIONS(2800), - [anon_sym_AMP_AMP] = ACTIONS(2800), - [anon_sym_PIPE_PIPE] = ACTIONS(2800), - [anon_sym_or] = ACTIONS(2800), - [sym_none] = ACTIONS(2800), - [sym_true] = ACTIONS(2800), - [sym_false] = ACTIONS(2800), - [sym_nil] = ACTIONS(2800), - [anon_sym_QMARK_DOT] = ACTIONS(2800), - [anon_sym_POUND_LBRACK] = ACTIONS(2800), - [anon_sym_if] = ACTIONS(2800), - [anon_sym_DOLLARif] = ACTIONS(2800), - [anon_sym_is] = ACTIONS(2800), - [anon_sym_BANGis] = ACTIONS(2800), - [anon_sym_in] = ACTIONS(2800), - [anon_sym_BANGin] = ACTIONS(2800), - [anon_sym_match] = ACTIONS(2800), - [anon_sym_select] = ACTIONS(2800), - [anon_sym_lock] = ACTIONS(2800), - [anon_sym_rlock] = ACTIONS(2800), - [anon_sym_unsafe] = ACTIONS(2800), - [anon_sym_sql] = ACTIONS(2800), - [sym_int_literal] = ACTIONS(2800), - [sym_float_literal] = ACTIONS(2800), - [sym_rune_literal] = ACTIONS(2800), - [anon_sym_AT] = ACTIONS(2800), - [anon_sym_shared] = ACTIONS(2800), - [anon_sym_map_LBRACK] = ACTIONS(2800), - [anon_sym_chan] = ACTIONS(2800), - [anon_sym_thread] = ACTIONS(2800), - [anon_sym_atomic] = ACTIONS(2800), - [anon_sym_assert] = ACTIONS(2800), - [anon_sym_defer] = ACTIONS(2800), - [anon_sym_goto] = ACTIONS(2800), - [anon_sym_break] = ACTIONS(2800), - [anon_sym_continue] = ACTIONS(2800), - [anon_sym_return] = ACTIONS(2800), - [anon_sym_DOLLARfor] = ACTIONS(2800), - [anon_sym_for] = ACTIONS(2800), - [anon_sym_POUND] = ACTIONS(2800), - [anon_sym_asm] = ACTIONS(2800), - [anon_sym_AT_LBRACK] = ACTIONS(2800), - [sym___double_quote] = ACTIONS(2800), - [sym___single_quote] = ACTIONS(2800), - [sym___c_double_quote] = ACTIONS(2800), - [sym___c_single_quote] = ACTIONS(2800), - [sym___r_double_quote] = ACTIONS(2800), - [sym___r_single_quote] = ACTIONS(2800), + [1031] = { + [ts_builtin_sym_end] = ACTIONS(3161), + [sym_identifier] = ACTIONS(3163), + [anon_sym_LF] = ACTIONS(3163), + [anon_sym_CR] = ACTIONS(3163), + [anon_sym_CR_LF] = ACTIONS(3163), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3163), + [anon_sym_as] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_COMMA] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_LPAREN] = ACTIONS(3163), + [anon_sym___global] = ACTIONS(3163), + [anon_sym_type] = ACTIONS(3163), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_fn] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_SLASH] = ACTIONS(3163), + [anon_sym_PERCENT] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(3163), + [anon_sym_GT] = ACTIONS(3163), + [anon_sym_EQ_EQ] = ACTIONS(3163), + [anon_sym_BANG_EQ] = ACTIONS(3163), + [anon_sym_LT_EQ] = ACTIONS(3163), + [anon_sym_GT_EQ] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_struct] = ACTIONS(3163), + [anon_sym_union] = ACTIONS(3163), + [anon_sym_pub] = ACTIONS(3163), + [anon_sym_mut] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [anon_sym_interface] = ACTIONS(3163), + [anon_sym_PLUS_PLUS] = ACTIONS(3163), + [anon_sym_DASH_DASH] = ACTIONS(3163), + [anon_sym_QMARK] = ACTIONS(3163), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_go] = ACTIONS(3163), + [anon_sym_spawn] = ACTIONS(3163), + [anon_sym_json_DOTdecode] = ACTIONS(3163), + [anon_sym_LBRACK2] = ACTIONS(3163), + [anon_sym_TILDE] = ACTIONS(3163), + [anon_sym_CARET] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LT_DASH] = ACTIONS(3163), + [anon_sym_LT_LT] = ACTIONS(3163), + [anon_sym_GT_GT] = ACTIONS(3163), + [anon_sym_GT_GT_GT] = ACTIONS(3163), + [anon_sym_AMP_CARET] = ACTIONS(3163), + [anon_sym_AMP_AMP] = ACTIONS(3163), + [anon_sym_PIPE_PIPE] = ACTIONS(3163), + [anon_sym_or] = ACTIONS(3163), + [sym_none] = ACTIONS(3163), + [sym_true] = ACTIONS(3163), + [sym_false] = ACTIONS(3163), + [sym_nil] = ACTIONS(3163), + [anon_sym_QMARK_DOT] = ACTIONS(3163), + [anon_sym_POUND_LBRACK] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_DOLLARif] = ACTIONS(3163), + [anon_sym_is] = ACTIONS(3163), + [anon_sym_BANGis] = ACTIONS(3163), + [anon_sym_in] = ACTIONS(3163), + [anon_sym_BANGin] = ACTIONS(3163), + [anon_sym_match] = ACTIONS(3163), + [anon_sym_select] = ACTIONS(3163), + [anon_sym_lock] = ACTIONS(3163), + [anon_sym_rlock] = ACTIONS(3163), + [anon_sym_unsafe] = ACTIONS(3163), + [anon_sym_sql] = ACTIONS(3163), + [sym_int_literal] = ACTIONS(3163), + [sym_float_literal] = ACTIONS(3163), + [sym_rune_literal] = ACTIONS(3163), + [anon_sym_AT] = ACTIONS(3163), + [anon_sym_shared] = ACTIONS(3163), + [anon_sym_map_LBRACK] = ACTIONS(3163), + [anon_sym_chan] = ACTIONS(3163), + [anon_sym_thread] = ACTIONS(3163), + [anon_sym_atomic] = ACTIONS(3163), + [anon_sym_assert] = ACTIONS(3163), + [anon_sym_defer] = ACTIONS(3163), + [anon_sym_goto] = ACTIONS(3163), + [anon_sym_break] = ACTIONS(3163), + [anon_sym_continue] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_DOLLARfor] = ACTIONS(3163), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_POUND] = ACTIONS(3163), + [anon_sym_asm] = ACTIONS(3163), + [anon_sym_AT_LBRACK] = ACTIONS(3163), + [sym___double_quote] = ACTIONS(3163), + [sym___single_quote] = ACTIONS(3163), + [sym___c_double_quote] = ACTIONS(3163), + [sym___c_single_quote] = ACTIONS(3163), + [sym___r_double_quote] = ACTIONS(3163), + [sym___r_single_quote] = ACTIONS(3163), }, - [1021] = { - [ts_builtin_sym_end] = ACTIONS(3143), - [sym_identifier] = ACTIONS(3145), - [anon_sym_LF] = ACTIONS(3145), - [anon_sym_CR] = ACTIONS(3145), - [anon_sym_CR_LF] = ACTIONS(3145), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3145), - [anon_sym_as] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_COMMA] = ACTIONS(3145), - [anon_sym_const] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym___global] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_PIPE] = ACTIONS(3145), - [anon_sym_fn] = ACTIONS(3145), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3145), - [anon_sym_SLASH] = ACTIONS(3145), - [anon_sym_PERCENT] = ACTIONS(3145), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_GT] = ACTIONS(3145), - [anon_sym_EQ_EQ] = ACTIONS(3145), - [anon_sym_BANG_EQ] = ACTIONS(3145), - [anon_sym_LT_EQ] = ACTIONS(3145), - [anon_sym_GT_EQ] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_struct] = ACTIONS(3145), - [anon_sym_union] = ACTIONS(3145), - [anon_sym_pub] = ACTIONS(3145), - [anon_sym_mut] = ACTIONS(3145), - [anon_sym_enum] = ACTIONS(3145), - [anon_sym_interface] = ACTIONS(3145), - [anon_sym_PLUS_PLUS] = ACTIONS(3145), - [anon_sym_DASH_DASH] = ACTIONS(3145), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_go] = ACTIONS(3145), - [anon_sym_spawn] = ACTIONS(3145), - [anon_sym_json_DOTdecode] = ACTIONS(3145), - [anon_sym_LBRACK2] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_CARET] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_LT_DASH] = ACTIONS(3145), - [anon_sym_LT_LT] = ACTIONS(3145), - [anon_sym_GT_GT] = ACTIONS(3145), - [anon_sym_GT_GT_GT] = ACTIONS(3145), - [anon_sym_AMP_CARET] = ACTIONS(3145), - [anon_sym_AMP_AMP] = ACTIONS(3145), - [anon_sym_PIPE_PIPE] = ACTIONS(3145), - [anon_sym_or] = ACTIONS(3145), - [sym_none] = ACTIONS(3145), - [sym_true] = ACTIONS(3145), - [sym_false] = ACTIONS(3145), - [sym_nil] = ACTIONS(3145), - [anon_sym_QMARK_DOT] = ACTIONS(3145), - [anon_sym_POUND_LBRACK] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_DOLLARif] = ACTIONS(3145), - [anon_sym_is] = ACTIONS(3145), - [anon_sym_BANGis] = ACTIONS(3145), - [anon_sym_in] = ACTIONS(3145), - [anon_sym_BANGin] = ACTIONS(3145), - [anon_sym_match] = ACTIONS(3145), - [anon_sym_select] = ACTIONS(3145), - [anon_sym_lock] = ACTIONS(3145), - [anon_sym_rlock] = ACTIONS(3145), - [anon_sym_unsafe] = ACTIONS(3145), - [anon_sym_sql] = ACTIONS(3145), - [sym_int_literal] = ACTIONS(3145), - [sym_float_literal] = ACTIONS(3145), - [sym_rune_literal] = ACTIONS(3145), - [anon_sym_AT] = ACTIONS(3145), - [anon_sym_shared] = ACTIONS(3145), - [anon_sym_map_LBRACK] = ACTIONS(3145), - [anon_sym_chan] = ACTIONS(3145), - [anon_sym_thread] = ACTIONS(3145), - [anon_sym_atomic] = ACTIONS(3145), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_defer] = ACTIONS(3145), - [anon_sym_goto] = ACTIONS(3145), - [anon_sym_break] = ACTIONS(3145), - [anon_sym_continue] = ACTIONS(3145), - [anon_sym_return] = ACTIONS(3145), - [anon_sym_DOLLARfor] = ACTIONS(3145), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(3145), - [anon_sym_asm] = ACTIONS(3145), - [anon_sym_AT_LBRACK] = ACTIONS(3145), - [sym___double_quote] = ACTIONS(3145), - [sym___single_quote] = ACTIONS(3145), - [sym___c_double_quote] = ACTIONS(3145), - [sym___c_single_quote] = ACTIONS(3145), - [sym___r_double_quote] = ACTIONS(3145), - [sym___r_single_quote] = ACTIONS(3145), + [1032] = { + [ts_builtin_sym_end] = ACTIONS(3193), + [sym_identifier] = ACTIONS(3195), + [anon_sym_LF] = ACTIONS(3195), + [anon_sym_CR] = ACTIONS(3195), + [anon_sym_CR_LF] = ACTIONS(3195), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3195), + [anon_sym_as] = ACTIONS(3195), + [anon_sym_LBRACE] = ACTIONS(3195), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_const] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3195), + [anon_sym___global] = ACTIONS(3195), + [anon_sym_type] = ACTIONS(3195), + [anon_sym_PIPE] = ACTIONS(3195), + [anon_sym_fn] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3195), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3195), + [anon_sym_SLASH] = ACTIONS(3195), + [anon_sym_PERCENT] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_struct] = ACTIONS(3195), + [anon_sym_union] = ACTIONS(3195), + [anon_sym_pub] = ACTIONS(3195), + [anon_sym_mut] = ACTIONS(3195), + [anon_sym_enum] = ACTIONS(3195), + [anon_sym_interface] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_DASH_DASH] = ACTIONS(3195), + [anon_sym_QMARK] = ACTIONS(3195), + [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_go] = ACTIONS(3195), + [anon_sym_spawn] = ACTIONS(3195), + [anon_sym_json_DOTdecode] = ACTIONS(3195), + [anon_sym_LBRACK2] = ACTIONS(3195), + [anon_sym_TILDE] = ACTIONS(3195), + [anon_sym_CARET] = ACTIONS(3195), + [anon_sym_AMP] = ACTIONS(3195), + [anon_sym_LT_DASH] = ACTIONS(3195), + [anon_sym_LT_LT] = ACTIONS(3195), + [anon_sym_GT_GT] = ACTIONS(3195), + [anon_sym_GT_GT_GT] = ACTIONS(3195), + [anon_sym_AMP_CARET] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_or] = ACTIONS(3195), + [sym_none] = ACTIONS(3195), + [sym_true] = ACTIONS(3195), + [sym_false] = ACTIONS(3195), + [sym_nil] = ACTIONS(3195), + [anon_sym_QMARK_DOT] = ACTIONS(3195), + [anon_sym_POUND_LBRACK] = ACTIONS(3195), + [anon_sym_if] = ACTIONS(3195), + [anon_sym_DOLLARif] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3195), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_in] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_match] = ACTIONS(3195), + [anon_sym_select] = ACTIONS(3195), + [anon_sym_lock] = ACTIONS(3195), + [anon_sym_rlock] = ACTIONS(3195), + [anon_sym_unsafe] = ACTIONS(3195), + [anon_sym_sql] = ACTIONS(3195), + [sym_int_literal] = ACTIONS(3195), + [sym_float_literal] = ACTIONS(3195), + [sym_rune_literal] = ACTIONS(3195), + [anon_sym_AT] = ACTIONS(3195), + [anon_sym_shared] = ACTIONS(3195), + [anon_sym_map_LBRACK] = ACTIONS(3195), + [anon_sym_chan] = ACTIONS(3195), + [anon_sym_thread] = ACTIONS(3195), + [anon_sym_atomic] = ACTIONS(3195), + [anon_sym_assert] = ACTIONS(3195), + [anon_sym_defer] = ACTIONS(3195), + [anon_sym_goto] = ACTIONS(3195), + [anon_sym_break] = ACTIONS(3195), + [anon_sym_continue] = ACTIONS(3195), + [anon_sym_return] = ACTIONS(3195), + [anon_sym_DOLLARfor] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(3195), + [anon_sym_POUND] = ACTIONS(3195), + [anon_sym_asm] = ACTIONS(3195), + [anon_sym_AT_LBRACK] = ACTIONS(3195), + [sym___double_quote] = ACTIONS(3195), + [sym___single_quote] = ACTIONS(3195), + [sym___c_double_quote] = ACTIONS(3195), + [sym___c_single_quote] = ACTIONS(3195), + [sym___r_double_quote] = ACTIONS(3195), + [sym___r_single_quote] = ACTIONS(3195), }, - [1022] = { - [ts_builtin_sym_end] = ACTIONS(3067), - [sym_identifier] = ACTIONS(3069), - [anon_sym_LF] = ACTIONS(3069), - [anon_sym_CR] = ACTIONS(3069), - [anon_sym_CR_LF] = ACTIONS(3069), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3069), - [anon_sym_as] = ACTIONS(3069), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_COMMA] = ACTIONS(3069), - [anon_sym_const] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3069), - [anon_sym___global] = ACTIONS(3069), - [anon_sym_type] = ACTIONS(3069), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_fn] = ACTIONS(3069), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_SLASH] = ACTIONS(3069), - [anon_sym_PERCENT] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_EQ_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ] = ACTIONS(3069), - [anon_sym_LT_EQ] = ACTIONS(3069), - [anon_sym_GT_EQ] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_struct] = ACTIONS(3069), - [anon_sym_union] = ACTIONS(3069), - [anon_sym_pub] = ACTIONS(3069), - [anon_sym_mut] = ACTIONS(3069), - [anon_sym_enum] = ACTIONS(3069), - [anon_sym_interface] = ACTIONS(3069), - [anon_sym_PLUS_PLUS] = ACTIONS(3069), - [anon_sym_DASH_DASH] = ACTIONS(3069), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_BANG] = ACTIONS(3069), - [anon_sym_go] = ACTIONS(3069), - [anon_sym_spawn] = ACTIONS(3069), - [anon_sym_json_DOTdecode] = ACTIONS(3069), - [anon_sym_LBRACK2] = ACTIONS(3069), - [anon_sym_TILDE] = ACTIONS(3069), - [anon_sym_CARET] = ACTIONS(3069), - [anon_sym_AMP] = ACTIONS(3069), - [anon_sym_LT_DASH] = ACTIONS(3069), - [anon_sym_LT_LT] = ACTIONS(3069), - [anon_sym_GT_GT] = ACTIONS(3069), - [anon_sym_GT_GT_GT] = ACTIONS(3069), - [anon_sym_AMP_CARET] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_or] = ACTIONS(3069), - [sym_none] = ACTIONS(3069), - [sym_true] = ACTIONS(3069), - [sym_false] = ACTIONS(3069), - [sym_nil] = ACTIONS(3069), - [anon_sym_QMARK_DOT] = ACTIONS(3069), - [anon_sym_POUND_LBRACK] = ACTIONS(3069), - [anon_sym_if] = ACTIONS(3069), - [anon_sym_DOLLARif] = ACTIONS(3069), - [anon_sym_is] = ACTIONS(3069), - [anon_sym_BANGis] = ACTIONS(3069), - [anon_sym_in] = ACTIONS(3069), - [anon_sym_BANGin] = ACTIONS(3069), - [anon_sym_match] = ACTIONS(3069), - [anon_sym_select] = ACTIONS(3069), - [anon_sym_lock] = ACTIONS(3069), - [anon_sym_rlock] = ACTIONS(3069), - [anon_sym_unsafe] = ACTIONS(3069), - [anon_sym_sql] = ACTIONS(3069), - [sym_int_literal] = ACTIONS(3069), - [sym_float_literal] = ACTIONS(3069), - [sym_rune_literal] = ACTIONS(3069), - [anon_sym_AT] = ACTIONS(3069), - [anon_sym_shared] = ACTIONS(3069), - [anon_sym_map_LBRACK] = ACTIONS(3069), - [anon_sym_chan] = ACTIONS(3069), - [anon_sym_thread] = ACTIONS(3069), - [anon_sym_atomic] = ACTIONS(3069), - [anon_sym_assert] = ACTIONS(3069), - [anon_sym_defer] = ACTIONS(3069), - [anon_sym_goto] = ACTIONS(3069), - [anon_sym_break] = ACTIONS(3069), - [anon_sym_continue] = ACTIONS(3069), - [anon_sym_return] = ACTIONS(3069), - [anon_sym_DOLLARfor] = ACTIONS(3069), - [anon_sym_for] = ACTIONS(3069), - [anon_sym_POUND] = ACTIONS(3069), - [anon_sym_asm] = ACTIONS(3069), - [anon_sym_AT_LBRACK] = ACTIONS(3069), - [sym___double_quote] = ACTIONS(3069), - [sym___single_quote] = ACTIONS(3069), - [sym___c_double_quote] = ACTIONS(3069), - [sym___c_single_quote] = ACTIONS(3069), - [sym___r_double_quote] = ACTIONS(3069), - [sym___r_single_quote] = ACTIONS(3069), + [1033] = { + [ts_builtin_sym_end] = ACTIONS(3181), + [sym_identifier] = ACTIONS(3183), + [anon_sym_LF] = ACTIONS(3183), + [anon_sym_CR] = ACTIONS(3183), + [anon_sym_CR_LF] = ACTIONS(3183), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3183), + [anon_sym_as] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_COMMA] = ACTIONS(3183), + [anon_sym_const] = ACTIONS(3183), + [anon_sym_LPAREN] = ACTIONS(3183), + [anon_sym___global] = ACTIONS(3183), + [anon_sym_type] = ACTIONS(3183), + [anon_sym_PIPE] = ACTIONS(3183), + [anon_sym_fn] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3183), + [anon_sym_SLASH] = ACTIONS(3183), + [anon_sym_PERCENT] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT_EQ] = ACTIONS(3183), + [anon_sym_LBRACK] = ACTIONS(3181), + [anon_sym_struct] = ACTIONS(3183), + [anon_sym_union] = ACTIONS(3183), + [anon_sym_pub] = ACTIONS(3183), + [anon_sym_mut] = ACTIONS(3183), + [anon_sym_enum] = ACTIONS(3183), + [anon_sym_interface] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_DASH_DASH] = ACTIONS(3183), + [anon_sym_QMARK] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_go] = ACTIONS(3183), + [anon_sym_spawn] = ACTIONS(3183), + [anon_sym_json_DOTdecode] = ACTIONS(3183), + [anon_sym_LBRACK2] = ACTIONS(3183), + [anon_sym_TILDE] = ACTIONS(3183), + [anon_sym_CARET] = ACTIONS(3183), + [anon_sym_AMP] = ACTIONS(3183), + [anon_sym_LT_DASH] = ACTIONS(3183), + [anon_sym_LT_LT] = ACTIONS(3183), + [anon_sym_GT_GT] = ACTIONS(3183), + [anon_sym_GT_GT_GT] = ACTIONS(3183), + [anon_sym_AMP_CARET] = ACTIONS(3183), + [anon_sym_AMP_AMP] = ACTIONS(3183), + [anon_sym_PIPE_PIPE] = ACTIONS(3183), + [anon_sym_or] = ACTIONS(3183), + [sym_none] = ACTIONS(3183), + [sym_true] = ACTIONS(3183), + [sym_false] = ACTIONS(3183), + [sym_nil] = ACTIONS(3183), + [anon_sym_QMARK_DOT] = ACTIONS(3183), + [anon_sym_POUND_LBRACK] = ACTIONS(3183), + [anon_sym_if] = ACTIONS(3183), + [anon_sym_DOLLARif] = ACTIONS(3183), + [anon_sym_is] = ACTIONS(3183), + [anon_sym_BANGis] = ACTIONS(3183), + [anon_sym_in] = ACTIONS(3183), + [anon_sym_BANGin] = ACTIONS(3183), + [anon_sym_match] = ACTIONS(3183), + [anon_sym_select] = ACTIONS(3183), + [anon_sym_lock] = ACTIONS(3183), + [anon_sym_rlock] = ACTIONS(3183), + [anon_sym_unsafe] = ACTIONS(3183), + [anon_sym_sql] = ACTIONS(3183), + [sym_int_literal] = ACTIONS(3183), + [sym_float_literal] = ACTIONS(3183), + [sym_rune_literal] = ACTIONS(3183), + [anon_sym_AT] = ACTIONS(3183), + [anon_sym_shared] = ACTIONS(3183), + [anon_sym_map_LBRACK] = ACTIONS(3183), + [anon_sym_chan] = ACTIONS(3183), + [anon_sym_thread] = ACTIONS(3183), + [anon_sym_atomic] = ACTIONS(3183), + [anon_sym_assert] = ACTIONS(3183), + [anon_sym_defer] = ACTIONS(3183), + [anon_sym_goto] = ACTIONS(3183), + [anon_sym_break] = ACTIONS(3183), + [anon_sym_continue] = ACTIONS(3183), + [anon_sym_return] = ACTIONS(3183), + [anon_sym_DOLLARfor] = ACTIONS(3183), + [anon_sym_for] = ACTIONS(3183), + [anon_sym_POUND] = ACTIONS(3183), + [anon_sym_asm] = ACTIONS(3183), + [anon_sym_AT_LBRACK] = ACTIONS(3183), + [sym___double_quote] = ACTIONS(3183), + [sym___single_quote] = ACTIONS(3183), + [sym___c_double_quote] = ACTIONS(3183), + [sym___c_single_quote] = ACTIONS(3183), + [sym___r_double_quote] = ACTIONS(3183), + [sym___r_single_quote] = ACTIONS(3183), }, - [1023] = { - [ts_builtin_sym_end] = ACTIONS(2983), - [sym_identifier] = ACTIONS(2985), - [anon_sym_LF] = ACTIONS(2985), - [anon_sym_CR] = ACTIONS(2985), - [anon_sym_CR_LF] = ACTIONS(2985), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2985), - [anon_sym_as] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2985), - [anon_sym_COMMA] = ACTIONS(2985), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2985), - [anon_sym___global] = ACTIONS(2985), - [anon_sym_type] = ACTIONS(2985), - [anon_sym_PIPE] = ACTIONS(2985), - [anon_sym_fn] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_SLASH] = ACTIONS(2985), - [anon_sym_PERCENT] = ACTIONS(2985), - [anon_sym_LT] = ACTIONS(2985), - [anon_sym_GT] = ACTIONS(2985), - [anon_sym_EQ_EQ] = ACTIONS(2985), - [anon_sym_BANG_EQ] = ACTIONS(2985), - [anon_sym_LT_EQ] = ACTIONS(2985), - [anon_sym_GT_EQ] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_union] = ACTIONS(2985), - [anon_sym_pub] = ACTIONS(2985), - [anon_sym_mut] = ACTIONS(2985), - [anon_sym_enum] = ACTIONS(2985), - [anon_sym_interface] = ACTIONS(2985), - [anon_sym_PLUS_PLUS] = ACTIONS(2985), - [anon_sym_DASH_DASH] = ACTIONS(2985), - [anon_sym_QMARK] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_go] = ACTIONS(2985), - [anon_sym_spawn] = ACTIONS(2985), - [anon_sym_json_DOTdecode] = ACTIONS(2985), - [anon_sym_LBRACK2] = ACTIONS(2985), - [anon_sym_TILDE] = ACTIONS(2985), - [anon_sym_CARET] = ACTIONS(2985), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_LT_DASH] = ACTIONS(2985), - [anon_sym_LT_LT] = ACTIONS(2985), - [anon_sym_GT_GT] = ACTIONS(2985), - [anon_sym_GT_GT_GT] = ACTIONS(2985), - [anon_sym_AMP_CARET] = ACTIONS(2985), - [anon_sym_AMP_AMP] = ACTIONS(2985), - [anon_sym_PIPE_PIPE] = ACTIONS(2985), - [anon_sym_or] = ACTIONS(2985), - [sym_none] = ACTIONS(2985), - [sym_true] = ACTIONS(2985), - [sym_false] = ACTIONS(2985), - [sym_nil] = ACTIONS(2985), - [anon_sym_QMARK_DOT] = ACTIONS(2985), - [anon_sym_POUND_LBRACK] = ACTIONS(2985), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_DOLLARif] = ACTIONS(2985), - [anon_sym_is] = ACTIONS(2985), - [anon_sym_BANGis] = ACTIONS(2985), - [anon_sym_in] = ACTIONS(2985), - [anon_sym_BANGin] = ACTIONS(2985), - [anon_sym_match] = ACTIONS(2985), - [anon_sym_select] = ACTIONS(2985), - [anon_sym_lock] = ACTIONS(2985), - [anon_sym_rlock] = ACTIONS(2985), - [anon_sym_unsafe] = ACTIONS(2985), - [anon_sym_sql] = ACTIONS(2985), - [sym_int_literal] = ACTIONS(2985), - [sym_float_literal] = ACTIONS(2985), - [sym_rune_literal] = ACTIONS(2985), - [anon_sym_AT] = ACTIONS(2985), - [anon_sym_shared] = ACTIONS(2985), - [anon_sym_map_LBRACK] = ACTIONS(2985), - [anon_sym_chan] = ACTIONS(2985), - [anon_sym_thread] = ACTIONS(2985), - [anon_sym_atomic] = ACTIONS(2985), - [anon_sym_assert] = ACTIONS(2985), - [anon_sym_defer] = ACTIONS(2985), - [anon_sym_goto] = ACTIONS(2985), - [anon_sym_break] = ACTIONS(2985), - [anon_sym_continue] = ACTIONS(2985), - [anon_sym_return] = ACTIONS(2985), - [anon_sym_DOLLARfor] = ACTIONS(2985), - [anon_sym_for] = ACTIONS(2985), - [anon_sym_POUND] = ACTIONS(2985), - [anon_sym_asm] = ACTIONS(2985), - [anon_sym_AT_LBRACK] = ACTIONS(2985), - [sym___double_quote] = ACTIONS(2985), - [sym___single_quote] = ACTIONS(2985), - [sym___c_double_quote] = ACTIONS(2985), - [sym___c_single_quote] = ACTIONS(2985), - [sym___r_double_quote] = ACTIONS(2985), - [sym___r_single_quote] = ACTIONS(2985), + [1034] = { + [ts_builtin_sym_end] = ACTIONS(3173), + [sym_identifier] = ACTIONS(3175), + [anon_sym_LF] = ACTIONS(3175), + [anon_sym_CR] = ACTIONS(3175), + [anon_sym_CR_LF] = ACTIONS(3175), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3175), + [anon_sym_as] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(3175), + [anon_sym_COMMA] = ACTIONS(3175), + [anon_sym_const] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym___global] = ACTIONS(3175), + [anon_sym_type] = ACTIONS(3175), + [anon_sym_PIPE] = ACTIONS(3175), + [anon_sym_fn] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3175), + [anon_sym_SLASH] = ACTIONS(3175), + [anon_sym_PERCENT] = ACTIONS(3175), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_LT_EQ] = ACTIONS(3175), + [anon_sym_GT_EQ] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3173), + [anon_sym_struct] = ACTIONS(3175), + [anon_sym_union] = ACTIONS(3175), + [anon_sym_pub] = ACTIONS(3175), + [anon_sym_mut] = ACTIONS(3175), + [anon_sym_enum] = ACTIONS(3175), + [anon_sym_interface] = ACTIONS(3175), + [anon_sym_PLUS_PLUS] = ACTIONS(3175), + [anon_sym_DASH_DASH] = ACTIONS(3175), + [anon_sym_QMARK] = ACTIONS(3175), + [anon_sym_BANG] = ACTIONS(3175), + [anon_sym_go] = ACTIONS(3175), + [anon_sym_spawn] = ACTIONS(3175), + [anon_sym_json_DOTdecode] = ACTIONS(3175), + [anon_sym_LBRACK2] = ACTIONS(3175), + [anon_sym_TILDE] = ACTIONS(3175), + [anon_sym_CARET] = ACTIONS(3175), + [anon_sym_AMP] = ACTIONS(3175), + [anon_sym_LT_DASH] = ACTIONS(3175), + [anon_sym_LT_LT] = ACTIONS(3175), + [anon_sym_GT_GT] = ACTIONS(3175), + [anon_sym_GT_GT_GT] = ACTIONS(3175), + [anon_sym_AMP_CARET] = ACTIONS(3175), + [anon_sym_AMP_AMP] = ACTIONS(3175), + [anon_sym_PIPE_PIPE] = ACTIONS(3175), + [anon_sym_or] = ACTIONS(3175), + [sym_none] = ACTIONS(3175), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_nil] = ACTIONS(3175), + [anon_sym_QMARK_DOT] = ACTIONS(3175), + [anon_sym_POUND_LBRACK] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_DOLLARif] = ACTIONS(3175), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3175), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_BANGin] = ACTIONS(3175), + [anon_sym_match] = ACTIONS(3175), + [anon_sym_select] = ACTIONS(3175), + [anon_sym_lock] = ACTIONS(3175), + [anon_sym_rlock] = ACTIONS(3175), + [anon_sym_unsafe] = ACTIONS(3175), + [anon_sym_sql] = ACTIONS(3175), + [sym_int_literal] = ACTIONS(3175), + [sym_float_literal] = ACTIONS(3175), + [sym_rune_literal] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(3175), + [anon_sym_shared] = ACTIONS(3175), + [anon_sym_map_LBRACK] = ACTIONS(3175), + [anon_sym_chan] = ACTIONS(3175), + [anon_sym_thread] = ACTIONS(3175), + [anon_sym_atomic] = ACTIONS(3175), + [anon_sym_assert] = ACTIONS(3175), + [anon_sym_defer] = ACTIONS(3175), + [anon_sym_goto] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_DOLLARfor] = ACTIONS(3175), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_POUND] = ACTIONS(3175), + [anon_sym_asm] = ACTIONS(3175), + [anon_sym_AT_LBRACK] = ACTIONS(3175), + [sym___double_quote] = ACTIONS(3175), + [sym___single_quote] = ACTIONS(3175), + [sym___c_double_quote] = ACTIONS(3175), + [sym___c_single_quote] = ACTIONS(3175), + [sym___r_double_quote] = ACTIONS(3175), + [sym___r_single_quote] = ACTIONS(3175), }, - [1024] = { - [ts_builtin_sym_end] = ACTIONS(2979), - [sym_identifier] = ACTIONS(2981), - [anon_sym_LF] = ACTIONS(2981), - [anon_sym_CR] = ACTIONS(2981), - [anon_sym_CR_LF] = ACTIONS(2981), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_as] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_COMMA] = ACTIONS(2981), - [anon_sym_const] = ACTIONS(2981), - [anon_sym_LPAREN] = ACTIONS(2981), - [anon_sym___global] = ACTIONS(2981), - [anon_sym_type] = ACTIONS(2981), - [anon_sym_PIPE] = ACTIONS(2981), - [anon_sym_fn] = ACTIONS(2981), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2981), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_EQ_EQ] = ACTIONS(2981), - [anon_sym_BANG_EQ] = ACTIONS(2981), - [anon_sym_LT_EQ] = ACTIONS(2981), - [anon_sym_GT_EQ] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(2981), - [anon_sym_union] = ACTIONS(2981), - [anon_sym_pub] = ACTIONS(2981), - [anon_sym_mut] = ACTIONS(2981), - [anon_sym_enum] = ACTIONS(2981), - [anon_sym_interface] = ACTIONS(2981), - [anon_sym_PLUS_PLUS] = ACTIONS(2981), - [anon_sym_DASH_DASH] = ACTIONS(2981), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2981), - [anon_sym_spawn] = ACTIONS(2981), - [anon_sym_json_DOTdecode] = ACTIONS(2981), - [anon_sym_LBRACK2] = ACTIONS(2981), - [anon_sym_TILDE] = ACTIONS(2981), - [anon_sym_CARET] = ACTIONS(2981), - [anon_sym_AMP] = ACTIONS(2981), - [anon_sym_LT_DASH] = ACTIONS(2981), - [anon_sym_LT_LT] = ACTIONS(2981), - [anon_sym_GT_GT] = ACTIONS(2981), - [anon_sym_GT_GT_GT] = ACTIONS(2981), - [anon_sym_AMP_CARET] = ACTIONS(2981), - [anon_sym_AMP_AMP] = ACTIONS(2981), - [anon_sym_PIPE_PIPE] = ACTIONS(2981), - [anon_sym_or] = ACTIONS(2981), - [sym_none] = ACTIONS(2981), - [sym_true] = ACTIONS(2981), - [sym_false] = ACTIONS(2981), - [sym_nil] = ACTIONS(2981), - [anon_sym_QMARK_DOT] = ACTIONS(2981), - [anon_sym_POUND_LBRACK] = ACTIONS(2981), - [anon_sym_if] = ACTIONS(2981), - [anon_sym_DOLLARif] = ACTIONS(2981), - [anon_sym_is] = ACTIONS(2981), - [anon_sym_BANGis] = ACTIONS(2981), - [anon_sym_in] = ACTIONS(2981), - [anon_sym_BANGin] = ACTIONS(2981), - [anon_sym_match] = ACTIONS(2981), - [anon_sym_select] = ACTIONS(2981), - [anon_sym_lock] = ACTIONS(2981), - [anon_sym_rlock] = ACTIONS(2981), - [anon_sym_unsafe] = ACTIONS(2981), - [anon_sym_sql] = ACTIONS(2981), - [sym_int_literal] = ACTIONS(2981), - [sym_float_literal] = ACTIONS(2981), - [sym_rune_literal] = ACTIONS(2981), - [anon_sym_AT] = ACTIONS(2981), - [anon_sym_shared] = ACTIONS(2981), - [anon_sym_map_LBRACK] = ACTIONS(2981), - [anon_sym_chan] = ACTIONS(2981), - [anon_sym_thread] = ACTIONS(2981), - [anon_sym_atomic] = ACTIONS(2981), - [anon_sym_assert] = ACTIONS(2981), - [anon_sym_defer] = ACTIONS(2981), - [anon_sym_goto] = ACTIONS(2981), - [anon_sym_break] = ACTIONS(2981), - [anon_sym_continue] = ACTIONS(2981), - [anon_sym_return] = ACTIONS(2981), - [anon_sym_DOLLARfor] = ACTIONS(2981), - [anon_sym_for] = ACTIONS(2981), - [anon_sym_POUND] = ACTIONS(2981), - [anon_sym_asm] = ACTIONS(2981), - [anon_sym_AT_LBRACK] = ACTIONS(2981), - [sym___double_quote] = ACTIONS(2981), - [sym___single_quote] = ACTIONS(2981), - [sym___c_double_quote] = ACTIONS(2981), - [sym___c_single_quote] = ACTIONS(2981), - [sym___r_double_quote] = ACTIONS(2981), - [sym___r_single_quote] = ACTIONS(2981), + [1035] = { + [ts_builtin_sym_end] = ACTIONS(3139), + [sym_identifier] = ACTIONS(3141), + [anon_sym_LF] = ACTIONS(3141), + [anon_sym_CR] = ACTIONS(3141), + [anon_sym_CR_LF] = ACTIONS(3141), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3141), + [anon_sym_as] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3141), + [anon_sym_COMMA] = ACTIONS(3141), + [anon_sym_const] = ACTIONS(3141), + [anon_sym_LPAREN] = ACTIONS(3141), + [anon_sym___global] = ACTIONS(3141), + [anon_sym_type] = ACTIONS(3141), + [anon_sym_PIPE] = ACTIONS(3141), + [anon_sym_fn] = ACTIONS(3141), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(3141), + [anon_sym_PERCENT] = ACTIONS(3141), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_GT] = ACTIONS(3141), + [anon_sym_EQ_EQ] = ACTIONS(3141), + [anon_sym_BANG_EQ] = ACTIONS(3141), + [anon_sym_LT_EQ] = ACTIONS(3141), + [anon_sym_GT_EQ] = ACTIONS(3141), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_struct] = ACTIONS(3141), + [anon_sym_union] = ACTIONS(3141), + [anon_sym_pub] = ACTIONS(3141), + [anon_sym_mut] = ACTIONS(3141), + [anon_sym_enum] = ACTIONS(3141), + [anon_sym_interface] = ACTIONS(3141), + [anon_sym_PLUS_PLUS] = ACTIONS(3141), + [anon_sym_DASH_DASH] = ACTIONS(3141), + [anon_sym_QMARK] = ACTIONS(3141), + [anon_sym_BANG] = ACTIONS(3353), + [anon_sym_go] = ACTIONS(3141), + [anon_sym_spawn] = ACTIONS(3141), + [anon_sym_json_DOTdecode] = ACTIONS(3141), + [anon_sym_LBRACK2] = ACTIONS(3141), + [anon_sym_TILDE] = ACTIONS(3141), + [anon_sym_CARET] = ACTIONS(3141), + [anon_sym_AMP] = ACTIONS(3141), + [anon_sym_LT_DASH] = ACTIONS(3141), + [anon_sym_LT_LT] = ACTIONS(3141), + [anon_sym_GT_GT] = ACTIONS(3141), + [anon_sym_GT_GT_GT] = ACTIONS(3141), + [anon_sym_AMP_CARET] = ACTIONS(3141), + [anon_sym_AMP_AMP] = ACTIONS(3141), + [anon_sym_PIPE_PIPE] = ACTIONS(3141), + [anon_sym_or] = ACTIONS(3141), + [sym_none] = ACTIONS(3141), + [sym_true] = ACTIONS(3141), + [sym_false] = ACTIONS(3141), + [sym_nil] = ACTIONS(3141), + [anon_sym_QMARK_DOT] = ACTIONS(3141), + [anon_sym_POUND_LBRACK] = ACTIONS(3141), + [anon_sym_if] = ACTIONS(3141), + [anon_sym_DOLLARif] = ACTIONS(3141), + [anon_sym_is] = ACTIONS(3141), + [anon_sym_BANGis] = ACTIONS(3141), + [anon_sym_in] = ACTIONS(3141), + [anon_sym_BANGin] = ACTIONS(3141), + [anon_sym_match] = ACTIONS(3141), + [anon_sym_select] = ACTIONS(3141), + [anon_sym_lock] = ACTIONS(3141), + [anon_sym_rlock] = ACTIONS(3141), + [anon_sym_unsafe] = ACTIONS(3141), + [anon_sym_sql] = ACTIONS(3141), + [sym_int_literal] = ACTIONS(3141), + [sym_float_literal] = ACTIONS(3141), + [sym_rune_literal] = ACTIONS(3141), + [anon_sym_AT] = ACTIONS(3141), + [anon_sym_shared] = ACTIONS(3141), + [anon_sym_map_LBRACK] = ACTIONS(3141), + [anon_sym_chan] = ACTIONS(3141), + [anon_sym_thread] = ACTIONS(3141), + [anon_sym_atomic] = ACTIONS(3141), + [anon_sym_assert] = ACTIONS(3141), + [anon_sym_defer] = ACTIONS(3141), + [anon_sym_goto] = ACTIONS(3141), + [anon_sym_break] = ACTIONS(3141), + [anon_sym_continue] = ACTIONS(3141), + [anon_sym_return] = ACTIONS(3141), + [anon_sym_DOLLARfor] = ACTIONS(3141), + [anon_sym_for] = ACTIONS(3141), + [anon_sym_POUND] = ACTIONS(3141), + [anon_sym_asm] = ACTIONS(3141), + [anon_sym_AT_LBRACK] = ACTIONS(3141), + [sym___double_quote] = ACTIONS(3141), + [sym___single_quote] = ACTIONS(3141), + [sym___c_double_quote] = ACTIONS(3141), + [sym___c_single_quote] = ACTIONS(3141), + [sym___r_double_quote] = ACTIONS(3141), + [sym___r_single_quote] = ACTIONS(3141), }, - [1025] = { - [ts_builtin_sym_end] = ACTIONS(3083), - [sym_identifier] = ACTIONS(3085), - [anon_sym_LF] = ACTIONS(3085), - [anon_sym_CR] = ACTIONS(3085), - [anon_sym_CR_LF] = ACTIONS(3085), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3085), - [anon_sym_as] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_COMMA] = ACTIONS(3085), - [anon_sym_const] = ACTIONS(3085), - [anon_sym_LPAREN] = ACTIONS(3085), - [anon_sym___global] = ACTIONS(3085), - [anon_sym_type] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_fn] = ACTIONS(3085), - [anon_sym_PLUS] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(3085), - [anon_sym_SLASH] = ACTIONS(3085), - [anon_sym_PERCENT] = ACTIONS(3085), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_GT] = ACTIONS(3085), - [anon_sym_EQ_EQ] = ACTIONS(3085), - [anon_sym_BANG_EQ] = ACTIONS(3085), - [anon_sym_LT_EQ] = ACTIONS(3085), - [anon_sym_GT_EQ] = ACTIONS(3085), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_struct] = ACTIONS(3085), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_pub] = ACTIONS(3085), - [anon_sym_mut] = ACTIONS(3085), - [anon_sym_enum] = ACTIONS(3085), - [anon_sym_interface] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_QMARK] = ACTIONS(3085), - [anon_sym_BANG] = ACTIONS(3085), - [anon_sym_go] = ACTIONS(3085), - [anon_sym_spawn] = ACTIONS(3085), - [anon_sym_json_DOTdecode] = ACTIONS(3085), - [anon_sym_LBRACK2] = ACTIONS(3085), - [anon_sym_TILDE] = ACTIONS(3085), - [anon_sym_CARET] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_LT_DASH] = ACTIONS(3085), - [anon_sym_LT_LT] = ACTIONS(3085), - [anon_sym_GT_GT] = ACTIONS(3085), - [anon_sym_GT_GT_GT] = ACTIONS(3085), - [anon_sym_AMP_CARET] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_PIPE_PIPE] = ACTIONS(3085), - [anon_sym_or] = ACTIONS(3085), - [sym_none] = ACTIONS(3085), - [sym_true] = ACTIONS(3085), - [sym_false] = ACTIONS(3085), - [sym_nil] = ACTIONS(3085), - [anon_sym_QMARK_DOT] = ACTIONS(3085), - [anon_sym_POUND_LBRACK] = ACTIONS(3085), - [anon_sym_if] = ACTIONS(3085), - [anon_sym_DOLLARif] = ACTIONS(3085), - [anon_sym_is] = ACTIONS(3085), - [anon_sym_BANGis] = ACTIONS(3085), - [anon_sym_in] = ACTIONS(3085), - [anon_sym_BANGin] = ACTIONS(3085), - [anon_sym_match] = ACTIONS(3085), - [anon_sym_select] = ACTIONS(3085), - [anon_sym_lock] = ACTIONS(3085), - [anon_sym_rlock] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(3085), - [anon_sym_sql] = ACTIONS(3085), - [sym_int_literal] = ACTIONS(3085), - [sym_float_literal] = ACTIONS(3085), - [sym_rune_literal] = ACTIONS(3085), - [anon_sym_AT] = ACTIONS(3085), - [anon_sym_shared] = ACTIONS(3085), - [anon_sym_map_LBRACK] = ACTIONS(3085), - [anon_sym_chan] = ACTIONS(3085), - [anon_sym_thread] = ACTIONS(3085), - [anon_sym_atomic] = ACTIONS(3085), - [anon_sym_assert] = ACTIONS(3085), - [anon_sym_defer] = ACTIONS(3085), - [anon_sym_goto] = ACTIONS(3085), - [anon_sym_break] = ACTIONS(3085), - [anon_sym_continue] = ACTIONS(3085), - [anon_sym_return] = ACTIONS(3085), - [anon_sym_DOLLARfor] = ACTIONS(3085), - [anon_sym_for] = ACTIONS(3085), - [anon_sym_POUND] = ACTIONS(3085), - [anon_sym_asm] = ACTIONS(3085), - [anon_sym_AT_LBRACK] = ACTIONS(3085), - [sym___double_quote] = ACTIONS(3085), - [sym___single_quote] = ACTIONS(3085), - [sym___c_double_quote] = ACTIONS(3085), - [sym___c_single_quote] = ACTIONS(3085), - [sym___r_double_quote] = ACTIONS(3085), - [sym___r_single_quote] = ACTIONS(3085), + [1036] = { + [ts_builtin_sym_end] = ACTIONS(2964), + [sym_identifier] = ACTIONS(2966), + [anon_sym_LF] = ACTIONS(2966), + [anon_sym_CR] = ACTIONS(2966), + [anon_sym_CR_LF] = ACTIONS(2966), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2966), + [anon_sym_as] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2966), + [anon_sym___global] = ACTIONS(2966), + [anon_sym_type] = ACTIONS(2966), + [anon_sym_PIPE] = ACTIONS(2966), + [anon_sym_fn] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_STAR] = ACTIONS(2966), + [anon_sym_SLASH] = ACTIONS(2966), + [anon_sym_PERCENT] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_GT] = ACTIONS(2966), + [anon_sym_EQ_EQ] = ACTIONS(2966), + [anon_sym_BANG_EQ] = ACTIONS(2966), + [anon_sym_LT_EQ] = ACTIONS(2966), + [anon_sym_GT_EQ] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_struct] = ACTIONS(2966), + [anon_sym_union] = ACTIONS(2966), + [anon_sym_pub] = ACTIONS(2966), + [anon_sym_mut] = ACTIONS(2966), + [anon_sym_enum] = ACTIONS(2966), + [anon_sym_interface] = ACTIONS(2966), + [anon_sym_PLUS_PLUS] = ACTIONS(2966), + [anon_sym_DASH_DASH] = ACTIONS(2966), + [anon_sym_QMARK] = ACTIONS(2966), + [anon_sym_BANG] = ACTIONS(2966), + [anon_sym_go] = ACTIONS(2966), + [anon_sym_spawn] = ACTIONS(2966), + [anon_sym_json_DOTdecode] = ACTIONS(2966), + [anon_sym_LBRACK2] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2966), + [anon_sym_CARET] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_LT_DASH] = ACTIONS(2966), + [anon_sym_LT_LT] = ACTIONS(2966), + [anon_sym_GT_GT] = ACTIONS(2966), + [anon_sym_GT_GT_GT] = ACTIONS(2966), + [anon_sym_AMP_CARET] = ACTIONS(2966), + [anon_sym_AMP_AMP] = ACTIONS(2966), + [anon_sym_PIPE_PIPE] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2966), + [sym_none] = ACTIONS(2966), + [sym_true] = ACTIONS(2966), + [sym_false] = ACTIONS(2966), + [sym_nil] = ACTIONS(2966), + [anon_sym_QMARK_DOT] = ACTIONS(2966), + [anon_sym_POUND_LBRACK] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_DOLLARif] = ACTIONS(2966), + [anon_sym_is] = ACTIONS(2966), + [anon_sym_BANGis] = ACTIONS(2966), + [anon_sym_in] = ACTIONS(2966), + [anon_sym_BANGin] = ACTIONS(2966), + [anon_sym_match] = ACTIONS(2966), + [anon_sym_select] = ACTIONS(2966), + [anon_sym_lock] = ACTIONS(2966), + [anon_sym_rlock] = ACTIONS(2966), + [anon_sym_unsafe] = ACTIONS(2966), + [anon_sym_sql] = ACTIONS(2966), + [sym_int_literal] = ACTIONS(2966), + [sym_float_literal] = ACTIONS(2966), + [sym_rune_literal] = ACTIONS(2966), + [anon_sym_AT] = ACTIONS(2966), + [anon_sym_shared] = ACTIONS(2966), + [anon_sym_map_LBRACK] = ACTIONS(2966), + [anon_sym_chan] = ACTIONS(2966), + [anon_sym_thread] = ACTIONS(2966), + [anon_sym_atomic] = ACTIONS(2966), + [anon_sym_assert] = ACTIONS(2966), + [anon_sym_defer] = ACTIONS(2966), + [anon_sym_goto] = ACTIONS(2966), + [anon_sym_break] = ACTIONS(2966), + [anon_sym_continue] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_DOLLARfor] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_POUND] = ACTIONS(2966), + [anon_sym_asm] = ACTIONS(2966), + [anon_sym_AT_LBRACK] = ACTIONS(2966), + [sym___double_quote] = ACTIONS(2966), + [sym___single_quote] = ACTIONS(2966), + [sym___c_double_quote] = ACTIONS(2966), + [sym___c_single_quote] = ACTIONS(2966), + [sym___r_double_quote] = ACTIONS(2966), + [sym___r_single_quote] = ACTIONS(2966), }, - [1026] = { - [ts_builtin_sym_end] = ACTIONS(2999), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LF] = ACTIONS(3001), - [anon_sym_CR] = ACTIONS(3001), - [anon_sym_CR_LF] = ACTIONS(3001), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3001), - [anon_sym_as] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3001), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym___global] = ACTIONS(3001), - [anon_sym_type] = ACTIONS(3001), - [anon_sym_PIPE] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(3001), - [anon_sym_SLASH] = ACTIONS(3001), - [anon_sym_PERCENT] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_GT] = ACTIONS(3001), - [anon_sym_EQ_EQ] = ACTIONS(3001), - [anon_sym_BANG_EQ] = ACTIONS(3001), - [anon_sym_LT_EQ] = ACTIONS(3001), - [anon_sym_GT_EQ] = ACTIONS(3001), - [anon_sym_LBRACK] = ACTIONS(2999), - [anon_sym_struct] = ACTIONS(3001), - [anon_sym_union] = ACTIONS(3001), - [anon_sym_pub] = ACTIONS(3001), - [anon_sym_mut] = ACTIONS(3001), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_interface] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_QMARK] = ACTIONS(3001), - [anon_sym_BANG] = ACTIONS(3001), - [anon_sym_go] = ACTIONS(3001), - [anon_sym_spawn] = ACTIONS(3001), - [anon_sym_json_DOTdecode] = ACTIONS(3001), - [anon_sym_LBRACK2] = ACTIONS(3001), - [anon_sym_TILDE] = ACTIONS(3001), - [anon_sym_CARET] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3001), - [anon_sym_LT_DASH] = ACTIONS(3001), - [anon_sym_LT_LT] = ACTIONS(3001), - [anon_sym_GT_GT] = ACTIONS(3001), - [anon_sym_GT_GT_GT] = ACTIONS(3001), - [anon_sym_AMP_CARET] = ACTIONS(3001), - [anon_sym_AMP_AMP] = ACTIONS(3001), - [anon_sym_PIPE_PIPE] = ACTIONS(3001), - [anon_sym_or] = ACTIONS(3001), - [sym_none] = ACTIONS(3001), - [sym_true] = ACTIONS(3001), - [sym_false] = ACTIONS(3001), - [sym_nil] = ACTIONS(3001), - [anon_sym_QMARK_DOT] = ACTIONS(3001), - [anon_sym_POUND_LBRACK] = ACTIONS(3001), - [anon_sym_if] = ACTIONS(3001), - [anon_sym_DOLLARif] = ACTIONS(3001), - [anon_sym_is] = ACTIONS(3001), - [anon_sym_BANGis] = ACTIONS(3001), - [anon_sym_in] = ACTIONS(3001), - [anon_sym_BANGin] = ACTIONS(3001), - [anon_sym_match] = ACTIONS(3001), - [anon_sym_select] = ACTIONS(3001), - [anon_sym_lock] = ACTIONS(3001), - [anon_sym_rlock] = ACTIONS(3001), - [anon_sym_unsafe] = ACTIONS(3001), - [anon_sym_sql] = ACTIONS(3001), - [sym_int_literal] = ACTIONS(3001), - [sym_float_literal] = ACTIONS(3001), - [sym_rune_literal] = ACTIONS(3001), - [anon_sym_AT] = ACTIONS(3001), - [anon_sym_shared] = ACTIONS(3001), - [anon_sym_map_LBRACK] = ACTIONS(3001), - [anon_sym_chan] = ACTIONS(3001), - [anon_sym_thread] = ACTIONS(3001), - [anon_sym_atomic] = ACTIONS(3001), - [anon_sym_assert] = ACTIONS(3001), - [anon_sym_defer] = ACTIONS(3001), - [anon_sym_goto] = ACTIONS(3001), - [anon_sym_break] = ACTIONS(3001), - [anon_sym_continue] = ACTIONS(3001), - [anon_sym_return] = ACTIONS(3001), - [anon_sym_DOLLARfor] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3001), - [anon_sym_POUND] = ACTIONS(3001), - [anon_sym_asm] = ACTIONS(3001), - [anon_sym_AT_LBRACK] = ACTIONS(3001), - [sym___double_quote] = ACTIONS(3001), - [sym___single_quote] = ACTIONS(3001), - [sym___c_double_quote] = ACTIONS(3001), - [sym___c_single_quote] = ACTIONS(3001), - [sym___r_double_quote] = ACTIONS(3001), - [sym___r_single_quote] = ACTIONS(3001), - }, - [1027] = { - [ts_builtin_sym_end] = ACTIONS(2862), - [sym_identifier] = ACTIONS(2864), - [anon_sym_LF] = ACTIONS(2864), - [anon_sym_CR] = ACTIONS(2864), - [anon_sym_CR_LF] = ACTIONS(2864), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2864), - [anon_sym_as] = ACTIONS(2864), - [anon_sym_LBRACE] = ACTIONS(2864), - [anon_sym_COMMA] = ACTIONS(2864), - [anon_sym_const] = ACTIONS(2864), - [anon_sym_LPAREN] = ACTIONS(2864), - [anon_sym___global] = ACTIONS(2864), - [anon_sym_type] = ACTIONS(2864), - [anon_sym_PIPE] = ACTIONS(2864), - [anon_sym_fn] = ACTIONS(2864), - [anon_sym_PLUS] = ACTIONS(2864), - [anon_sym_DASH] = ACTIONS(2864), - [anon_sym_STAR] = ACTIONS(2864), - [anon_sym_SLASH] = ACTIONS(2864), - [anon_sym_PERCENT] = ACTIONS(2864), - [anon_sym_LT] = ACTIONS(2864), - [anon_sym_GT] = ACTIONS(2864), - [anon_sym_EQ_EQ] = ACTIONS(2864), - [anon_sym_BANG_EQ] = ACTIONS(2864), - [anon_sym_LT_EQ] = ACTIONS(2864), - [anon_sym_GT_EQ] = ACTIONS(2864), - [anon_sym_LBRACK] = ACTIONS(2862), - [anon_sym_struct] = ACTIONS(2864), - [anon_sym_union] = ACTIONS(2864), - [anon_sym_pub] = ACTIONS(2864), - [anon_sym_mut] = ACTIONS(2864), - [anon_sym_enum] = ACTIONS(2864), - [anon_sym_interface] = ACTIONS(2864), - [anon_sym_PLUS_PLUS] = ACTIONS(2864), - [anon_sym_DASH_DASH] = ACTIONS(2864), - [anon_sym_QMARK] = ACTIONS(2864), - [anon_sym_BANG] = ACTIONS(2864), - [anon_sym_go] = ACTIONS(2864), - [anon_sym_spawn] = ACTIONS(2864), - [anon_sym_json_DOTdecode] = ACTIONS(2864), - [anon_sym_LBRACK2] = ACTIONS(2864), - [anon_sym_TILDE] = ACTIONS(2864), - [anon_sym_CARET] = ACTIONS(2864), - [anon_sym_AMP] = ACTIONS(2864), - [anon_sym_LT_DASH] = ACTIONS(2864), - [anon_sym_LT_LT] = ACTIONS(2864), - [anon_sym_GT_GT] = ACTIONS(2864), - [anon_sym_GT_GT_GT] = ACTIONS(2864), - [anon_sym_AMP_CARET] = ACTIONS(2864), - [anon_sym_AMP_AMP] = ACTIONS(2864), - [anon_sym_PIPE_PIPE] = ACTIONS(2864), - [anon_sym_or] = ACTIONS(2864), - [sym_none] = ACTIONS(2864), - [sym_true] = ACTIONS(2864), - [sym_false] = ACTIONS(2864), - [sym_nil] = ACTIONS(2864), - [anon_sym_QMARK_DOT] = ACTIONS(2864), - [anon_sym_POUND_LBRACK] = ACTIONS(2864), - [anon_sym_if] = ACTIONS(2864), - [anon_sym_DOLLARif] = ACTIONS(2864), - [anon_sym_is] = ACTIONS(2864), - [anon_sym_BANGis] = ACTIONS(2864), - [anon_sym_in] = ACTIONS(2864), - [anon_sym_BANGin] = ACTIONS(2864), - [anon_sym_match] = ACTIONS(2864), - [anon_sym_select] = ACTIONS(2864), - [anon_sym_lock] = ACTIONS(2864), - [anon_sym_rlock] = ACTIONS(2864), - [anon_sym_unsafe] = ACTIONS(2864), - [anon_sym_sql] = ACTIONS(2864), - [sym_int_literal] = ACTIONS(2864), - [sym_float_literal] = ACTIONS(2864), - [sym_rune_literal] = ACTIONS(2864), - [anon_sym_AT] = ACTIONS(2864), - [anon_sym_shared] = ACTIONS(2864), - [anon_sym_map_LBRACK] = ACTIONS(2864), - [anon_sym_chan] = ACTIONS(2864), - [anon_sym_thread] = ACTIONS(2864), - [anon_sym_atomic] = ACTIONS(2864), - [anon_sym_assert] = ACTIONS(2864), - [anon_sym_defer] = ACTIONS(2864), - [anon_sym_goto] = ACTIONS(2864), - [anon_sym_break] = ACTIONS(2864), - [anon_sym_continue] = ACTIONS(2864), - [anon_sym_return] = ACTIONS(2864), - [anon_sym_DOLLARfor] = ACTIONS(2864), - [anon_sym_for] = ACTIONS(2864), - [anon_sym_POUND] = ACTIONS(2864), - [anon_sym_asm] = ACTIONS(2864), - [anon_sym_AT_LBRACK] = ACTIONS(2864), - [sym___double_quote] = ACTIONS(2864), - [sym___single_quote] = ACTIONS(2864), - [sym___c_double_quote] = ACTIONS(2864), - [sym___c_single_quote] = ACTIONS(2864), - [sym___r_double_quote] = ACTIONS(2864), - [sym___r_single_quote] = ACTIONS(2864), - }, - [1028] = { - [ts_builtin_sym_end] = ACTIONS(2834), - [sym_identifier] = ACTIONS(2836), - [anon_sym_LF] = ACTIONS(2836), - [anon_sym_CR] = ACTIONS(2836), - [anon_sym_CR_LF] = ACTIONS(2836), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2836), - [anon_sym_as] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2836), - [anon_sym_COMMA] = ACTIONS(2836), - [anon_sym_const] = ACTIONS(2836), - [anon_sym_LPAREN] = ACTIONS(2836), - [anon_sym___global] = ACTIONS(2836), - [anon_sym_type] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_fn] = ACTIONS(2836), - [anon_sym_PLUS] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2836), - [anon_sym_STAR] = ACTIONS(2836), - [anon_sym_SLASH] = ACTIONS(2836), - [anon_sym_PERCENT] = ACTIONS(2836), - [anon_sym_LT] = ACTIONS(2836), - [anon_sym_GT] = ACTIONS(2836), - [anon_sym_EQ_EQ] = ACTIONS(2836), - [anon_sym_BANG_EQ] = ACTIONS(2836), - [anon_sym_LT_EQ] = ACTIONS(2836), - [anon_sym_GT_EQ] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_struct] = ACTIONS(2836), - [anon_sym_union] = ACTIONS(2836), - [anon_sym_pub] = ACTIONS(2836), - [anon_sym_mut] = ACTIONS(2836), - [anon_sym_enum] = ACTIONS(2836), - [anon_sym_interface] = ACTIONS(2836), - [anon_sym_PLUS_PLUS] = ACTIONS(2836), - [anon_sym_DASH_DASH] = ACTIONS(2836), - [anon_sym_QMARK] = ACTIONS(2836), - [anon_sym_BANG] = ACTIONS(2836), - [anon_sym_go] = ACTIONS(2836), - [anon_sym_spawn] = ACTIONS(2836), - [anon_sym_json_DOTdecode] = ACTIONS(2836), - [anon_sym_LBRACK2] = ACTIONS(2836), - [anon_sym_TILDE] = ACTIONS(2836), - [anon_sym_CARET] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2836), - [anon_sym_LT_DASH] = ACTIONS(2836), - [anon_sym_LT_LT] = ACTIONS(2836), - [anon_sym_GT_GT] = ACTIONS(2836), - [anon_sym_GT_GT_GT] = ACTIONS(2836), - [anon_sym_AMP_CARET] = ACTIONS(2836), - [anon_sym_AMP_AMP] = ACTIONS(2836), - [anon_sym_PIPE_PIPE] = ACTIONS(2836), - [anon_sym_or] = ACTIONS(2836), - [sym_none] = ACTIONS(2836), - [sym_true] = ACTIONS(2836), - [sym_false] = ACTIONS(2836), - [sym_nil] = ACTIONS(2836), - [anon_sym_QMARK_DOT] = ACTIONS(2836), - [anon_sym_POUND_LBRACK] = ACTIONS(2836), - [anon_sym_if] = ACTIONS(2836), - [anon_sym_DOLLARif] = ACTIONS(2836), - [anon_sym_is] = ACTIONS(2836), - [anon_sym_BANGis] = ACTIONS(2836), - [anon_sym_in] = ACTIONS(2836), - [anon_sym_BANGin] = ACTIONS(2836), - [anon_sym_match] = ACTIONS(2836), - [anon_sym_select] = ACTIONS(2836), - [anon_sym_lock] = ACTIONS(2836), - [anon_sym_rlock] = ACTIONS(2836), - [anon_sym_unsafe] = ACTIONS(2836), - [anon_sym_sql] = ACTIONS(2836), - [sym_int_literal] = ACTIONS(2836), - [sym_float_literal] = ACTIONS(2836), - [sym_rune_literal] = ACTIONS(2836), - [anon_sym_AT] = ACTIONS(2836), - [anon_sym_shared] = ACTIONS(2836), - [anon_sym_map_LBRACK] = ACTIONS(2836), - [anon_sym_chan] = ACTIONS(2836), - [anon_sym_thread] = ACTIONS(2836), - [anon_sym_atomic] = ACTIONS(2836), - [anon_sym_assert] = ACTIONS(2836), - [anon_sym_defer] = ACTIONS(2836), - [anon_sym_goto] = ACTIONS(2836), - [anon_sym_break] = ACTIONS(2836), - [anon_sym_continue] = ACTIONS(2836), - [anon_sym_return] = ACTIONS(2836), - [anon_sym_DOLLARfor] = ACTIONS(2836), - [anon_sym_for] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(2836), - [anon_sym_asm] = ACTIONS(2836), - [anon_sym_AT_LBRACK] = ACTIONS(2836), - [sym___double_quote] = ACTIONS(2836), - [sym___single_quote] = ACTIONS(2836), - [sym___c_double_quote] = ACTIONS(2836), - [sym___c_single_quote] = ACTIONS(2836), - [sym___r_double_quote] = ACTIONS(2836), - [sym___r_single_quote] = ACTIONS(2836), - }, - [1029] = { - [ts_builtin_sym_end] = ACTIONS(2790), - [sym_identifier] = ACTIONS(2792), - [anon_sym_LF] = ACTIONS(2792), - [anon_sym_CR] = ACTIONS(2792), - [anon_sym_CR_LF] = ACTIONS(2792), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2792), - [anon_sym_as] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_COMMA] = ACTIONS(2792), - [anon_sym_const] = ACTIONS(2792), - [anon_sym_LPAREN] = ACTIONS(2792), - [anon_sym___global] = ACTIONS(2792), - [anon_sym_type] = ACTIONS(2792), - [anon_sym_PIPE] = ACTIONS(2792), - [anon_sym_fn] = ACTIONS(2792), - [anon_sym_PLUS] = ACTIONS(2792), - [anon_sym_DASH] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(2792), - [anon_sym_SLASH] = ACTIONS(2792), - [anon_sym_PERCENT] = ACTIONS(2792), - [anon_sym_LT] = ACTIONS(2792), - [anon_sym_GT] = ACTIONS(2792), - [anon_sym_EQ_EQ] = ACTIONS(2792), - [anon_sym_BANG_EQ] = ACTIONS(2792), - [anon_sym_LT_EQ] = ACTIONS(2792), - [anon_sym_GT_EQ] = ACTIONS(2792), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_struct] = ACTIONS(2792), - [anon_sym_union] = ACTIONS(2792), - [anon_sym_pub] = ACTIONS(2792), - [anon_sym_mut] = ACTIONS(2792), - [anon_sym_enum] = ACTIONS(2792), - [anon_sym_interface] = ACTIONS(2792), - [anon_sym_PLUS_PLUS] = ACTIONS(2792), - [anon_sym_DASH_DASH] = ACTIONS(2792), - [anon_sym_QMARK] = ACTIONS(2792), - [anon_sym_BANG] = ACTIONS(2792), - [anon_sym_go] = ACTIONS(2792), - [anon_sym_spawn] = ACTIONS(2792), - [anon_sym_json_DOTdecode] = ACTIONS(2792), - [anon_sym_LBRACK2] = ACTIONS(2792), - [anon_sym_TILDE] = ACTIONS(2792), - [anon_sym_CARET] = ACTIONS(2792), - [anon_sym_AMP] = ACTIONS(2792), - [anon_sym_LT_DASH] = ACTIONS(2792), - [anon_sym_LT_LT] = ACTIONS(2792), - [anon_sym_GT_GT] = ACTIONS(2792), - [anon_sym_GT_GT_GT] = ACTIONS(2792), - [anon_sym_AMP_CARET] = ACTIONS(2792), - [anon_sym_AMP_AMP] = ACTIONS(2792), - [anon_sym_PIPE_PIPE] = ACTIONS(2792), - [anon_sym_or] = ACTIONS(2792), - [sym_none] = ACTIONS(2792), - [sym_true] = ACTIONS(2792), - [sym_false] = ACTIONS(2792), - [sym_nil] = ACTIONS(2792), - [anon_sym_QMARK_DOT] = ACTIONS(2792), - [anon_sym_POUND_LBRACK] = ACTIONS(2792), - [anon_sym_if] = ACTIONS(2792), - [anon_sym_DOLLARif] = ACTIONS(2792), - [anon_sym_is] = ACTIONS(2792), - [anon_sym_BANGis] = ACTIONS(2792), - [anon_sym_in] = ACTIONS(2792), - [anon_sym_BANGin] = ACTIONS(2792), - [anon_sym_match] = ACTIONS(2792), - [anon_sym_select] = ACTIONS(2792), - [anon_sym_lock] = ACTIONS(2792), - [anon_sym_rlock] = ACTIONS(2792), - [anon_sym_unsafe] = ACTIONS(2792), - [anon_sym_sql] = ACTIONS(2792), - [sym_int_literal] = ACTIONS(2792), - [sym_float_literal] = ACTIONS(2792), - [sym_rune_literal] = ACTIONS(2792), - [anon_sym_AT] = ACTIONS(2792), - [anon_sym_shared] = ACTIONS(2792), - [anon_sym_map_LBRACK] = ACTIONS(2792), - [anon_sym_chan] = ACTIONS(2792), - [anon_sym_thread] = ACTIONS(2792), - [anon_sym_atomic] = ACTIONS(2792), - [anon_sym_assert] = ACTIONS(2792), - [anon_sym_defer] = ACTIONS(2792), - [anon_sym_goto] = ACTIONS(2792), - [anon_sym_break] = ACTIONS(2792), - [anon_sym_continue] = ACTIONS(2792), - [anon_sym_return] = ACTIONS(2792), - [anon_sym_DOLLARfor] = ACTIONS(2792), - [anon_sym_for] = ACTIONS(2792), - [anon_sym_POUND] = ACTIONS(2792), - [anon_sym_asm] = ACTIONS(2792), - [anon_sym_AT_LBRACK] = ACTIONS(2792), - [sym___double_quote] = ACTIONS(2792), - [sym___single_quote] = ACTIONS(2792), - [sym___c_double_quote] = ACTIONS(2792), - [sym___c_single_quote] = ACTIONS(2792), - [sym___r_double_quote] = ACTIONS(2792), - [sym___r_single_quote] = ACTIONS(2792), - }, - [1030] = { - [ts_builtin_sym_end] = ACTIONS(3075), - [sym_identifier] = ACTIONS(3077), - [anon_sym_LF] = ACTIONS(3077), - [anon_sym_CR] = ACTIONS(3077), - [anon_sym_CR_LF] = ACTIONS(3077), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3077), - [anon_sym_as] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(3077), - [anon_sym_COMMA] = ACTIONS(3077), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3077), - [anon_sym___global] = ACTIONS(3077), - [anon_sym_type] = ACTIONS(3077), - [anon_sym_PIPE] = ACTIONS(3077), - [anon_sym_fn] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3077), - [anon_sym_SLASH] = ACTIONS(3077), - [anon_sym_PERCENT] = ACTIONS(3077), - [anon_sym_LT] = ACTIONS(3077), - [anon_sym_GT] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3077), - [anon_sym_BANG_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_pub] = ACTIONS(3077), - [anon_sym_mut] = ACTIONS(3077), - [anon_sym_enum] = ACTIONS(3077), - [anon_sym_interface] = ACTIONS(3077), - [anon_sym_PLUS_PLUS] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3077), - [anon_sym_BANG] = ACTIONS(3077), - [anon_sym_go] = ACTIONS(3077), - [anon_sym_spawn] = ACTIONS(3077), - [anon_sym_json_DOTdecode] = ACTIONS(3077), - [anon_sym_LBRACK2] = ACTIONS(3077), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_CARET] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3077), - [anon_sym_LT_LT] = ACTIONS(3077), - [anon_sym_GT_GT] = ACTIONS(3077), - [anon_sym_GT_GT_GT] = ACTIONS(3077), - [anon_sym_AMP_CARET] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_or] = ACTIONS(3077), - [sym_none] = ACTIONS(3077), - [sym_true] = ACTIONS(3077), - [sym_false] = ACTIONS(3077), - [sym_nil] = ACTIONS(3077), - [anon_sym_QMARK_DOT] = ACTIONS(3077), - [anon_sym_POUND_LBRACK] = ACTIONS(3077), - [anon_sym_if] = ACTIONS(3077), - [anon_sym_DOLLARif] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3077), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_in] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_match] = ACTIONS(3077), - [anon_sym_select] = ACTIONS(3077), - [anon_sym_lock] = ACTIONS(3077), - [anon_sym_rlock] = ACTIONS(3077), - [anon_sym_unsafe] = ACTIONS(3077), - [anon_sym_sql] = ACTIONS(3077), - [sym_int_literal] = ACTIONS(3077), - [sym_float_literal] = ACTIONS(3077), - [sym_rune_literal] = ACTIONS(3077), - [anon_sym_AT] = ACTIONS(3077), - [anon_sym_shared] = ACTIONS(3077), - [anon_sym_map_LBRACK] = ACTIONS(3077), - [anon_sym_chan] = ACTIONS(3077), - [anon_sym_thread] = ACTIONS(3077), - [anon_sym_atomic] = ACTIONS(3077), - [anon_sym_assert] = ACTIONS(3077), - [anon_sym_defer] = ACTIONS(3077), - [anon_sym_goto] = ACTIONS(3077), - [anon_sym_break] = ACTIONS(3077), - [anon_sym_continue] = ACTIONS(3077), - [anon_sym_return] = ACTIONS(3077), - [anon_sym_DOLLARfor] = ACTIONS(3077), - [anon_sym_for] = ACTIONS(3077), - [anon_sym_POUND] = ACTIONS(3077), - [anon_sym_asm] = ACTIONS(3077), - [anon_sym_AT_LBRACK] = ACTIONS(3077), - [sym___double_quote] = ACTIONS(3077), - [sym___single_quote] = ACTIONS(3077), - [sym___c_double_quote] = ACTIONS(3077), - [sym___c_single_quote] = ACTIONS(3077), - [sym___r_double_quote] = ACTIONS(3077), - [sym___r_single_quote] = ACTIONS(3077), - }, - [1031] = { - [ts_builtin_sym_end] = ACTIONS(3123), - [sym_identifier] = ACTIONS(3125), - [anon_sym_LF] = ACTIONS(3125), - [anon_sym_CR] = ACTIONS(3125), - [anon_sym_CR_LF] = ACTIONS(3125), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3125), - [anon_sym_as] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3125), - [anon_sym_COMMA] = ACTIONS(3125), - [anon_sym_const] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym___global] = ACTIONS(3125), - [anon_sym_type] = ACTIONS(3125), - [anon_sym_PIPE] = ACTIONS(3125), - [anon_sym_fn] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3125), - [anon_sym_SLASH] = ACTIONS(3125), - [anon_sym_PERCENT] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3125), - [anon_sym_GT] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_struct] = ACTIONS(3125), - [anon_sym_union] = ACTIONS(3125), - [anon_sym_pub] = ACTIONS(3125), - [anon_sym_mut] = ACTIONS(3125), - [anon_sym_enum] = ACTIONS(3125), - [anon_sym_interface] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3125), - [anon_sym_DASH_DASH] = ACTIONS(3125), - [anon_sym_QMARK] = ACTIONS(3125), - [anon_sym_BANG] = ACTIONS(3125), - [anon_sym_go] = ACTIONS(3125), - [anon_sym_spawn] = ACTIONS(3125), - [anon_sym_json_DOTdecode] = ACTIONS(3125), - [anon_sym_LBRACK2] = ACTIONS(3125), - [anon_sym_TILDE] = ACTIONS(3125), - [anon_sym_CARET] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3125), - [anon_sym_LT_DASH] = ACTIONS(3125), - [anon_sym_LT_LT] = ACTIONS(3125), - [anon_sym_GT_GT] = ACTIONS(3125), - [anon_sym_GT_GT_GT] = ACTIONS(3125), - [anon_sym_AMP_CARET] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_or] = ACTIONS(3125), - [sym_none] = ACTIONS(3125), - [sym_true] = ACTIONS(3125), - [sym_false] = ACTIONS(3125), - [sym_nil] = ACTIONS(3125), - [anon_sym_QMARK_DOT] = ACTIONS(3125), - [anon_sym_POUND_LBRACK] = ACTIONS(3125), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_DOLLARif] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3125), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_in] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_match] = ACTIONS(3125), - [anon_sym_select] = ACTIONS(3125), - [anon_sym_lock] = ACTIONS(3125), - [anon_sym_rlock] = ACTIONS(3125), - [anon_sym_unsafe] = ACTIONS(3125), - [anon_sym_sql] = ACTIONS(3125), - [sym_int_literal] = ACTIONS(3125), - [sym_float_literal] = ACTIONS(3125), - [sym_rune_literal] = ACTIONS(3125), - [anon_sym_AT] = ACTIONS(3125), - [anon_sym_shared] = ACTIONS(3125), - [anon_sym_map_LBRACK] = ACTIONS(3125), - [anon_sym_chan] = ACTIONS(3125), - [anon_sym_thread] = ACTIONS(3125), - [anon_sym_atomic] = ACTIONS(3125), - [anon_sym_assert] = ACTIONS(3125), - [anon_sym_defer] = ACTIONS(3125), - [anon_sym_goto] = ACTIONS(3125), - [anon_sym_break] = ACTIONS(3125), - [anon_sym_continue] = ACTIONS(3125), - [anon_sym_return] = ACTIONS(3125), - [anon_sym_DOLLARfor] = ACTIONS(3125), - [anon_sym_for] = ACTIONS(3125), - [anon_sym_POUND] = ACTIONS(3125), - [anon_sym_asm] = ACTIONS(3125), - [anon_sym_AT_LBRACK] = ACTIONS(3125), - [sym___double_quote] = ACTIONS(3125), - [sym___single_quote] = ACTIONS(3125), - [sym___c_double_quote] = ACTIONS(3125), - [sym___c_single_quote] = ACTIONS(3125), - [sym___r_double_quote] = ACTIONS(3125), - [sym___r_single_quote] = ACTIONS(3125), - }, - [1032] = { - [ts_builtin_sym_end] = ACTIONS(3115), - [sym_identifier] = ACTIONS(3117), - [anon_sym_LF] = ACTIONS(3117), - [anon_sym_CR] = ACTIONS(3117), - [anon_sym_CR_LF] = ACTIONS(3117), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3117), - [anon_sym_as] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_COMMA] = ACTIONS(3117), - [anon_sym_const] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3117), - [anon_sym___global] = ACTIONS(3117), - [anon_sym_type] = ACTIONS(3117), - [anon_sym_PIPE] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_SLASH] = ACTIONS(3117), - [anon_sym_PERCENT] = ACTIONS(3117), - [anon_sym_LT] = ACTIONS(3117), - [anon_sym_GT] = ACTIONS(3117), - [anon_sym_EQ_EQ] = ACTIONS(3117), - [anon_sym_BANG_EQ] = ACTIONS(3117), - [anon_sym_LT_EQ] = ACTIONS(3117), - [anon_sym_GT_EQ] = ACTIONS(3117), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_struct] = ACTIONS(3117), - [anon_sym_union] = ACTIONS(3117), - [anon_sym_pub] = ACTIONS(3117), - [anon_sym_mut] = ACTIONS(3117), - [anon_sym_enum] = ACTIONS(3117), - [anon_sym_interface] = ACTIONS(3117), - [anon_sym_PLUS_PLUS] = ACTIONS(3117), - [anon_sym_DASH_DASH] = ACTIONS(3117), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3117), - [anon_sym_go] = ACTIONS(3117), - [anon_sym_spawn] = ACTIONS(3117), - [anon_sym_json_DOTdecode] = ACTIONS(3117), - [anon_sym_LBRACK2] = ACTIONS(3117), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_CARET] = ACTIONS(3117), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_LT_DASH] = ACTIONS(3117), - [anon_sym_LT_LT] = ACTIONS(3117), - [anon_sym_GT_GT] = ACTIONS(3117), - [anon_sym_GT_GT_GT] = ACTIONS(3117), - [anon_sym_AMP_CARET] = ACTIONS(3117), - [anon_sym_AMP_AMP] = ACTIONS(3117), - [anon_sym_PIPE_PIPE] = ACTIONS(3117), - [anon_sym_or] = ACTIONS(3117), - [sym_none] = ACTIONS(3117), - [sym_true] = ACTIONS(3117), - [sym_false] = ACTIONS(3117), - [sym_nil] = ACTIONS(3117), - [anon_sym_QMARK_DOT] = ACTIONS(3117), - [anon_sym_POUND_LBRACK] = ACTIONS(3117), - [anon_sym_if] = ACTIONS(3117), - [anon_sym_DOLLARif] = ACTIONS(3117), - [anon_sym_is] = ACTIONS(3117), - [anon_sym_BANGis] = ACTIONS(3117), - [anon_sym_in] = ACTIONS(3117), - [anon_sym_BANGin] = ACTIONS(3117), - [anon_sym_match] = ACTIONS(3117), - [anon_sym_select] = ACTIONS(3117), - [anon_sym_lock] = ACTIONS(3117), - [anon_sym_rlock] = ACTIONS(3117), - [anon_sym_unsafe] = ACTIONS(3117), - [anon_sym_sql] = ACTIONS(3117), - [sym_int_literal] = ACTIONS(3117), - [sym_float_literal] = ACTIONS(3117), - [sym_rune_literal] = ACTIONS(3117), - [anon_sym_AT] = ACTIONS(3117), - [anon_sym_shared] = ACTIONS(3117), - [anon_sym_map_LBRACK] = ACTIONS(3117), - [anon_sym_chan] = ACTIONS(3117), - [anon_sym_thread] = ACTIONS(3117), - [anon_sym_atomic] = ACTIONS(3117), - [anon_sym_assert] = ACTIONS(3117), - [anon_sym_defer] = ACTIONS(3117), - [anon_sym_goto] = ACTIONS(3117), - [anon_sym_break] = ACTIONS(3117), - [anon_sym_continue] = ACTIONS(3117), - [anon_sym_return] = ACTIONS(3117), - [anon_sym_DOLLARfor] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(3117), - [anon_sym_POUND] = ACTIONS(3117), - [anon_sym_asm] = ACTIONS(3117), - [anon_sym_AT_LBRACK] = ACTIONS(3117), - [sym___double_quote] = ACTIONS(3117), - [sym___single_quote] = ACTIONS(3117), - [sym___c_double_quote] = ACTIONS(3117), - [sym___c_single_quote] = ACTIONS(3117), - [sym___r_double_quote] = ACTIONS(3117), - [sym___r_single_quote] = ACTIONS(3117), - }, - [1033] = { - [ts_builtin_sym_end] = ACTIONS(3091), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LF] = ACTIONS(3093), - [anon_sym_CR] = ACTIONS(3093), - [anon_sym_CR_LF] = ACTIONS(3093), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_as] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(3093), - [anon_sym_const] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym___global] = ACTIONS(3093), - [anon_sym_type] = ACTIONS(3093), - [anon_sym_PIPE] = ACTIONS(3093), - [anon_sym_fn] = ACTIONS(3093), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_SLASH] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3093), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3093), - [anon_sym_EQ_EQ] = ACTIONS(3093), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_LT_EQ] = ACTIONS(3093), - [anon_sym_GT_EQ] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(3093), - [anon_sym_union] = ACTIONS(3093), - [anon_sym_pub] = ACTIONS(3093), - [anon_sym_mut] = ACTIONS(3093), - [anon_sym_enum] = ACTIONS(3093), - [anon_sym_interface] = ACTIONS(3093), - [anon_sym_PLUS_PLUS] = ACTIONS(3093), - [anon_sym_DASH_DASH] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_go] = ACTIONS(3093), - [anon_sym_spawn] = ACTIONS(3093), - [anon_sym_json_DOTdecode] = ACTIONS(3093), - [anon_sym_LBRACK2] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3093), - [anon_sym_CARET] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_LT_DASH] = ACTIONS(3093), - [anon_sym_LT_LT] = ACTIONS(3093), - [anon_sym_GT_GT] = ACTIONS(3093), - [anon_sym_GT_GT_GT] = ACTIONS(3093), - [anon_sym_AMP_CARET] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_PIPE_PIPE] = ACTIONS(3093), - [anon_sym_or] = ACTIONS(3093), - [sym_none] = ACTIONS(3093), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [sym_nil] = ACTIONS(3093), - [anon_sym_QMARK_DOT] = ACTIONS(3093), - [anon_sym_POUND_LBRACK] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_DOLLARif] = ACTIONS(3093), - [anon_sym_is] = ACTIONS(3093), - [anon_sym_BANGis] = ACTIONS(3093), - [anon_sym_in] = ACTIONS(3093), - [anon_sym_BANGin] = ACTIONS(3093), - [anon_sym_match] = ACTIONS(3093), - [anon_sym_select] = ACTIONS(3093), - [anon_sym_lock] = ACTIONS(3093), - [anon_sym_rlock] = ACTIONS(3093), - [anon_sym_unsafe] = ACTIONS(3093), - [anon_sym_sql] = ACTIONS(3093), - [sym_int_literal] = ACTIONS(3093), - [sym_float_literal] = ACTIONS(3093), - [sym_rune_literal] = ACTIONS(3093), - [anon_sym_AT] = ACTIONS(3093), - [anon_sym_shared] = ACTIONS(3093), - [anon_sym_map_LBRACK] = ACTIONS(3093), - [anon_sym_chan] = ACTIONS(3093), - [anon_sym_thread] = ACTIONS(3093), - [anon_sym_atomic] = ACTIONS(3093), - [anon_sym_assert] = ACTIONS(3093), - [anon_sym_defer] = ACTIONS(3093), - [anon_sym_goto] = ACTIONS(3093), - [anon_sym_break] = ACTIONS(3093), - [anon_sym_continue] = ACTIONS(3093), - [anon_sym_return] = ACTIONS(3093), - [anon_sym_DOLLARfor] = ACTIONS(3093), - [anon_sym_for] = ACTIONS(3093), - [anon_sym_POUND] = ACTIONS(3093), - [anon_sym_asm] = ACTIONS(3093), - [anon_sym_AT_LBRACK] = ACTIONS(3093), - [sym___double_quote] = ACTIONS(3093), - [sym___single_quote] = ACTIONS(3093), - [sym___c_double_quote] = ACTIONS(3093), - [sym___c_single_quote] = ACTIONS(3093), - [sym___r_double_quote] = ACTIONS(3093), - [sym___r_single_quote] = ACTIONS(3093), - }, - [1034] = { - [ts_builtin_sym_end] = ACTIONS(3087), - [sym_identifier] = ACTIONS(3089), - [anon_sym_LF] = ACTIONS(3089), - [anon_sym_CR] = ACTIONS(3089), - [anon_sym_CR_LF] = ACTIONS(3089), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3089), - [anon_sym_as] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_const] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3089), - [anon_sym___global] = ACTIONS(3089), - [anon_sym_type] = ACTIONS(3089), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_fn] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(3089), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_LT_EQ] = ACTIONS(3089), - [anon_sym_GT_EQ] = ACTIONS(3089), - [anon_sym_LBRACK] = ACTIONS(3087), - [anon_sym_struct] = ACTIONS(3089), - [anon_sym_union] = ACTIONS(3089), - [anon_sym_pub] = ACTIONS(3089), - [anon_sym_mut] = ACTIONS(3089), - [anon_sym_enum] = ACTIONS(3089), - [anon_sym_interface] = ACTIONS(3089), - [anon_sym_PLUS_PLUS] = ACTIONS(3089), - [anon_sym_DASH_DASH] = ACTIONS(3089), - [anon_sym_QMARK] = ACTIONS(3089), - [anon_sym_BANG] = ACTIONS(3089), - [anon_sym_go] = ACTIONS(3089), - [anon_sym_spawn] = ACTIONS(3089), - [anon_sym_json_DOTdecode] = ACTIONS(3089), - [anon_sym_LBRACK2] = ACTIONS(3089), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_LT_DASH] = ACTIONS(3089), - [anon_sym_LT_LT] = ACTIONS(3089), - [anon_sym_GT_GT] = ACTIONS(3089), - [anon_sym_GT_GT_GT] = ACTIONS(3089), - [anon_sym_AMP_CARET] = ACTIONS(3089), - [anon_sym_AMP_AMP] = ACTIONS(3089), - [anon_sym_PIPE_PIPE] = ACTIONS(3089), - [anon_sym_or] = ACTIONS(3089), - [sym_none] = ACTIONS(3089), - [sym_true] = ACTIONS(3089), - [sym_false] = ACTIONS(3089), - [sym_nil] = ACTIONS(3089), - [anon_sym_QMARK_DOT] = ACTIONS(3089), - [anon_sym_POUND_LBRACK] = ACTIONS(3089), - [anon_sym_if] = ACTIONS(3089), - [anon_sym_DOLLARif] = ACTIONS(3089), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3089), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_BANGin] = ACTIONS(3089), - [anon_sym_match] = ACTIONS(3089), - [anon_sym_select] = ACTIONS(3089), - [anon_sym_lock] = ACTIONS(3089), - [anon_sym_rlock] = ACTIONS(3089), - [anon_sym_unsafe] = ACTIONS(3089), - [anon_sym_sql] = ACTIONS(3089), - [sym_int_literal] = ACTIONS(3089), - [sym_float_literal] = ACTIONS(3089), - [sym_rune_literal] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(3089), - [anon_sym_shared] = ACTIONS(3089), - [anon_sym_map_LBRACK] = ACTIONS(3089), - [anon_sym_chan] = ACTIONS(3089), - [anon_sym_thread] = ACTIONS(3089), - [anon_sym_atomic] = ACTIONS(3089), - [anon_sym_assert] = ACTIONS(3089), - [anon_sym_defer] = ACTIONS(3089), - [anon_sym_goto] = ACTIONS(3089), - [anon_sym_break] = ACTIONS(3089), - [anon_sym_continue] = ACTIONS(3089), - [anon_sym_return] = ACTIONS(3089), - [anon_sym_DOLLARfor] = ACTIONS(3089), - [anon_sym_for] = ACTIONS(3089), - [anon_sym_POUND] = ACTIONS(3089), - [anon_sym_asm] = ACTIONS(3089), - [anon_sym_AT_LBRACK] = ACTIONS(3089), - [sym___double_quote] = ACTIONS(3089), - [sym___single_quote] = ACTIONS(3089), - [sym___c_double_quote] = ACTIONS(3089), - [sym___c_single_quote] = ACTIONS(3089), - [sym___r_double_quote] = ACTIONS(3089), - [sym___r_single_quote] = ACTIONS(3089), - }, - [1035] = { - [ts_builtin_sym_end] = ACTIONS(2786), - [sym_identifier] = ACTIONS(2788), - [anon_sym_LF] = ACTIONS(2788), - [anon_sym_CR] = ACTIONS(2788), - [anon_sym_CR_LF] = ACTIONS(2788), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2788), - [anon_sym_as] = ACTIONS(2788), - [anon_sym_LBRACE] = ACTIONS(2788), - [anon_sym_COMMA] = ACTIONS(2788), - [anon_sym_const] = ACTIONS(2788), - [anon_sym_LPAREN] = ACTIONS(2788), - [anon_sym___global] = ACTIONS(2788), - [anon_sym_type] = ACTIONS(2788), - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_fn] = ACTIONS(2788), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_STAR] = ACTIONS(2788), - [anon_sym_SLASH] = ACTIONS(2788), - [anon_sym_PERCENT] = ACTIONS(2788), - [anon_sym_LT] = ACTIONS(2788), - [anon_sym_GT] = ACTIONS(2788), - [anon_sym_EQ_EQ] = ACTIONS(2788), - [anon_sym_BANG_EQ] = ACTIONS(2788), - [anon_sym_LT_EQ] = ACTIONS(2788), - [anon_sym_GT_EQ] = ACTIONS(2788), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2788), - [anon_sym_union] = ACTIONS(2788), - [anon_sym_pub] = ACTIONS(2788), - [anon_sym_mut] = ACTIONS(2788), - [anon_sym_enum] = ACTIONS(2788), - [anon_sym_interface] = ACTIONS(2788), - [anon_sym_PLUS_PLUS] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2788), - [anon_sym_QMARK] = ACTIONS(2788), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_go] = ACTIONS(2788), - [anon_sym_spawn] = ACTIONS(2788), - [anon_sym_json_DOTdecode] = ACTIONS(2788), - [anon_sym_LBRACK2] = ACTIONS(2788), - [anon_sym_TILDE] = ACTIONS(2788), - [anon_sym_CARET] = ACTIONS(2788), - [anon_sym_AMP] = ACTIONS(2788), - [anon_sym_LT_DASH] = ACTIONS(2788), - [anon_sym_LT_LT] = ACTIONS(2788), - [anon_sym_GT_GT] = ACTIONS(2788), - [anon_sym_GT_GT_GT] = ACTIONS(2788), - [anon_sym_AMP_CARET] = ACTIONS(2788), - [anon_sym_AMP_AMP] = ACTIONS(2788), - [anon_sym_PIPE_PIPE] = ACTIONS(2788), - [anon_sym_or] = ACTIONS(2788), - [sym_none] = ACTIONS(2788), - [sym_true] = ACTIONS(2788), - [sym_false] = ACTIONS(2788), - [sym_nil] = ACTIONS(2788), - [anon_sym_QMARK_DOT] = ACTIONS(2788), - [anon_sym_POUND_LBRACK] = ACTIONS(2788), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_DOLLARif] = ACTIONS(2788), - [anon_sym_is] = ACTIONS(2788), - [anon_sym_BANGis] = ACTIONS(2788), - [anon_sym_in] = ACTIONS(2788), - [anon_sym_BANGin] = ACTIONS(2788), - [anon_sym_match] = ACTIONS(2788), - [anon_sym_select] = ACTIONS(2788), - [anon_sym_lock] = ACTIONS(2788), - [anon_sym_rlock] = ACTIONS(2788), - [anon_sym_unsafe] = ACTIONS(2788), - [anon_sym_sql] = ACTIONS(2788), - [sym_int_literal] = ACTIONS(2788), - [sym_float_literal] = ACTIONS(2788), - [sym_rune_literal] = ACTIONS(2788), - [anon_sym_AT] = ACTIONS(2788), - [anon_sym_shared] = ACTIONS(2788), - [anon_sym_map_LBRACK] = ACTIONS(2788), - [anon_sym_chan] = ACTIONS(2788), - [anon_sym_thread] = ACTIONS(2788), - [anon_sym_atomic] = ACTIONS(2788), - [anon_sym_assert] = ACTIONS(2788), - [anon_sym_defer] = ACTIONS(2788), - [anon_sym_goto] = ACTIONS(2788), - [anon_sym_break] = ACTIONS(2788), - [anon_sym_continue] = ACTIONS(2788), - [anon_sym_return] = ACTIONS(2788), - [anon_sym_DOLLARfor] = ACTIONS(2788), - [anon_sym_for] = ACTIONS(2788), - [anon_sym_POUND] = ACTIONS(2788), - [anon_sym_asm] = ACTIONS(2788), - [anon_sym_AT_LBRACK] = ACTIONS(2788), - [sym___double_quote] = ACTIONS(2788), - [sym___single_quote] = ACTIONS(2788), - [sym___c_double_quote] = ACTIONS(2788), - [sym___c_single_quote] = ACTIONS(2788), - [sym___r_double_quote] = ACTIONS(2788), - [sym___r_single_quote] = ACTIONS(2788), - }, - [1036] = { - [ts_builtin_sym_end] = ACTIONS(3003), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LF] = ACTIONS(3005), - [anon_sym_CR] = ACTIONS(3005), - [anon_sym_CR_LF] = ACTIONS(3005), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_as] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3005), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_const] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym___global] = ACTIONS(3005), - [anon_sym_type] = ACTIONS(3005), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_fn] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_SLASH] = ACTIONS(3005), - [anon_sym_PERCENT] = ACTIONS(3005), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_LT_EQ] = ACTIONS(3005), - [anon_sym_GT_EQ] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3005), - [anon_sym_pub] = ACTIONS(3005), - [anon_sym_mut] = ACTIONS(3005), - [anon_sym_enum] = ACTIONS(3005), - [anon_sym_interface] = ACTIONS(3005), - [anon_sym_PLUS_PLUS] = ACTIONS(3005), - [anon_sym_DASH_DASH] = ACTIONS(3005), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_go] = ACTIONS(3005), - [anon_sym_spawn] = ACTIONS(3005), - [anon_sym_json_DOTdecode] = ACTIONS(3005), - [anon_sym_LBRACK2] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3005), - [anon_sym_LT_DASH] = ACTIONS(3005), - [anon_sym_LT_LT] = ACTIONS(3005), - [anon_sym_GT_GT] = ACTIONS(3005), - [anon_sym_GT_GT_GT] = ACTIONS(3005), - [anon_sym_AMP_CARET] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(3005), - [anon_sym_PIPE_PIPE] = ACTIONS(3005), - [anon_sym_or] = ACTIONS(3005), - [sym_none] = ACTIONS(3005), - [sym_true] = ACTIONS(3005), - [sym_false] = ACTIONS(3005), - [sym_nil] = ACTIONS(3005), - [anon_sym_QMARK_DOT] = ACTIONS(3005), - [anon_sym_POUND_LBRACK] = ACTIONS(3005), - [anon_sym_if] = ACTIONS(3005), - [anon_sym_DOLLARif] = ACTIONS(3005), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3005), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_BANGin] = ACTIONS(3005), - [anon_sym_match] = ACTIONS(3005), - [anon_sym_select] = ACTIONS(3005), - [anon_sym_lock] = ACTIONS(3005), - [anon_sym_rlock] = ACTIONS(3005), - [anon_sym_unsafe] = ACTIONS(3005), - [anon_sym_sql] = ACTIONS(3005), - [sym_int_literal] = ACTIONS(3005), - [sym_float_literal] = ACTIONS(3005), - [sym_rune_literal] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(3005), - [anon_sym_shared] = ACTIONS(3005), - [anon_sym_map_LBRACK] = ACTIONS(3005), - [anon_sym_chan] = ACTIONS(3005), - [anon_sym_thread] = ACTIONS(3005), - [anon_sym_atomic] = ACTIONS(3005), - [anon_sym_assert] = ACTIONS(3005), - [anon_sym_defer] = ACTIONS(3005), - [anon_sym_goto] = ACTIONS(3005), - [anon_sym_break] = ACTIONS(3005), - [anon_sym_continue] = ACTIONS(3005), - [anon_sym_return] = ACTIONS(3005), - [anon_sym_DOLLARfor] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3005), - [anon_sym_POUND] = ACTIONS(3005), - [anon_sym_asm] = ACTIONS(3005), - [anon_sym_AT_LBRACK] = ACTIONS(3005), - [sym___double_quote] = ACTIONS(3005), - [sym___single_quote] = ACTIONS(3005), - [sym___c_double_quote] = ACTIONS(3005), - [sym___c_single_quote] = ACTIONS(3005), - [sym___r_double_quote] = ACTIONS(3005), - [sym___r_single_quote] = ACTIONS(3005), - }, - [1037] = { - [ts_builtin_sym_end] = ACTIONS(2995), - [sym_identifier] = ACTIONS(2997), - [anon_sym_LF] = ACTIONS(2997), - [anon_sym_CR] = ACTIONS(2997), - [anon_sym_CR_LF] = ACTIONS(2997), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_as] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(2997), - [anon_sym_const] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(2997), - [anon_sym___global] = ACTIONS(2997), - [anon_sym_type] = ACTIONS(2997), - [anon_sym_PIPE] = ACTIONS(2997), - [anon_sym_fn] = ACTIONS(2997), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_STAR] = ACTIONS(2997), - [anon_sym_SLASH] = ACTIONS(2997), - [anon_sym_PERCENT] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(2997), - [anon_sym_EQ_EQ] = ACTIONS(2997), - [anon_sym_BANG_EQ] = ACTIONS(2997), - [anon_sym_LT_EQ] = ACTIONS(2997), - [anon_sym_GT_EQ] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_struct] = ACTIONS(2997), - [anon_sym_union] = ACTIONS(2997), - [anon_sym_pub] = ACTIONS(2997), - [anon_sym_mut] = ACTIONS(2997), - [anon_sym_enum] = ACTIONS(2997), - [anon_sym_interface] = ACTIONS(2997), - [anon_sym_PLUS_PLUS] = ACTIONS(2997), - [anon_sym_DASH_DASH] = ACTIONS(2997), - [anon_sym_QMARK] = ACTIONS(2997), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_go] = ACTIONS(2997), - [anon_sym_spawn] = ACTIONS(2997), - [anon_sym_json_DOTdecode] = ACTIONS(2997), - [anon_sym_LBRACK2] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_CARET] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_LT_DASH] = ACTIONS(2997), - [anon_sym_LT_LT] = ACTIONS(2997), - [anon_sym_GT_GT] = ACTIONS(2997), - [anon_sym_GT_GT_GT] = ACTIONS(2997), - [anon_sym_AMP_CARET] = ACTIONS(2997), - [anon_sym_AMP_AMP] = ACTIONS(2997), - [anon_sym_PIPE_PIPE] = ACTIONS(2997), - [anon_sym_or] = ACTIONS(2997), - [sym_none] = ACTIONS(2997), - [sym_true] = ACTIONS(2997), - [sym_false] = ACTIONS(2997), - [sym_nil] = ACTIONS(2997), - [anon_sym_QMARK_DOT] = ACTIONS(2997), - [anon_sym_POUND_LBRACK] = ACTIONS(2997), - [anon_sym_if] = ACTIONS(2997), - [anon_sym_DOLLARif] = ACTIONS(2997), - [anon_sym_is] = ACTIONS(2997), - [anon_sym_BANGis] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(2997), - [anon_sym_BANGin] = ACTIONS(2997), - [anon_sym_match] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [anon_sym_lock] = ACTIONS(2997), - [anon_sym_rlock] = ACTIONS(2997), - [anon_sym_unsafe] = ACTIONS(2997), - [anon_sym_sql] = ACTIONS(2997), - [sym_int_literal] = ACTIONS(2997), - [sym_float_literal] = ACTIONS(2997), - [sym_rune_literal] = ACTIONS(2997), - [anon_sym_AT] = ACTIONS(2997), - [anon_sym_shared] = ACTIONS(2997), - [anon_sym_map_LBRACK] = ACTIONS(2997), - [anon_sym_chan] = ACTIONS(2997), - [anon_sym_thread] = ACTIONS(2997), - [anon_sym_atomic] = ACTIONS(2997), - [anon_sym_assert] = ACTIONS(2997), - [anon_sym_defer] = ACTIONS(2997), - [anon_sym_goto] = ACTIONS(2997), - [anon_sym_break] = ACTIONS(2997), - [anon_sym_continue] = ACTIONS(2997), - [anon_sym_return] = ACTIONS(2997), - [anon_sym_DOLLARfor] = ACTIONS(2997), - [anon_sym_for] = ACTIONS(2997), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_asm] = ACTIONS(2997), - [anon_sym_AT_LBRACK] = ACTIONS(2997), - [sym___double_quote] = ACTIONS(2997), - [sym___single_quote] = ACTIONS(2997), - [sym___c_double_quote] = ACTIONS(2997), - [sym___c_single_quote] = ACTIONS(2997), - [sym___r_double_quote] = ACTIONS(2997), - [sym___r_single_quote] = ACTIONS(2997), + [1037] = { + [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), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3014), + [sym___single_quote] = ACTIONS(3014), + [sym___c_double_quote] = ACTIONS(3014), + [sym___c_single_quote] = ACTIONS(3014), + [sym___r_double_quote] = ACTIONS(3014), + [sym___r_single_quote] = ACTIONS(3014), }, [1038] = { - [ts_builtin_sym_end] = ACTIONS(3131), - [sym_identifier] = ACTIONS(3133), - [anon_sym_LF] = ACTIONS(3133), - [anon_sym_CR] = ACTIONS(3133), - [anon_sym_CR_LF] = ACTIONS(3133), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3133), - [anon_sym_as] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_const] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym___global] = ACTIONS(3133), - [anon_sym_type] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3133), - [anon_sym_fn] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_SLASH] = ACTIONS(3133), - [anon_sym_PERCENT] = ACTIONS(3133), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_GT] = ACTIONS(3133), - [anon_sym_EQ_EQ] = ACTIONS(3133), - [anon_sym_BANG_EQ] = ACTIONS(3133), - [anon_sym_LT_EQ] = ACTIONS(3133), - [anon_sym_GT_EQ] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_struct] = ACTIONS(3133), - [anon_sym_union] = ACTIONS(3133), - [anon_sym_pub] = ACTIONS(3133), - [anon_sym_mut] = ACTIONS(3133), - [anon_sym_enum] = ACTIONS(3133), - [anon_sym_interface] = ACTIONS(3133), - [anon_sym_PLUS_PLUS] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3133), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_go] = ACTIONS(3133), - [anon_sym_spawn] = ACTIONS(3133), - [anon_sym_json_DOTdecode] = ACTIONS(3133), - [anon_sym_LBRACK2] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_CARET] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_LT_DASH] = ACTIONS(3133), - [anon_sym_LT_LT] = ACTIONS(3133), - [anon_sym_GT_GT] = ACTIONS(3133), - [anon_sym_GT_GT_GT] = ACTIONS(3133), - [anon_sym_AMP_CARET] = ACTIONS(3133), - [anon_sym_AMP_AMP] = ACTIONS(3133), - [anon_sym_PIPE_PIPE] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3133), - [sym_none] = ACTIONS(3133), - [sym_true] = ACTIONS(3133), - [sym_false] = ACTIONS(3133), - [sym_nil] = ACTIONS(3133), - [anon_sym_QMARK_DOT] = ACTIONS(3133), - [anon_sym_POUND_LBRACK] = ACTIONS(3133), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_DOLLARif] = ACTIONS(3133), - [anon_sym_is] = ACTIONS(3133), - [anon_sym_BANGis] = ACTIONS(3133), - [anon_sym_in] = ACTIONS(3133), - [anon_sym_BANGin] = ACTIONS(3133), - [anon_sym_match] = ACTIONS(3133), - [anon_sym_select] = ACTIONS(3133), - [anon_sym_lock] = ACTIONS(3133), - [anon_sym_rlock] = ACTIONS(3133), - [anon_sym_unsafe] = ACTIONS(3133), - [anon_sym_sql] = ACTIONS(3133), - [sym_int_literal] = ACTIONS(3133), - [sym_float_literal] = ACTIONS(3133), - [sym_rune_literal] = ACTIONS(3133), - [anon_sym_AT] = ACTIONS(3133), - [anon_sym_shared] = ACTIONS(3133), - [anon_sym_map_LBRACK] = ACTIONS(3133), - [anon_sym_chan] = ACTIONS(3133), - [anon_sym_thread] = ACTIONS(3133), - [anon_sym_atomic] = ACTIONS(3133), - [anon_sym_assert] = ACTIONS(3133), - [anon_sym_defer] = ACTIONS(3133), - [anon_sym_goto] = ACTIONS(3133), - [anon_sym_break] = ACTIONS(3133), - [anon_sym_continue] = ACTIONS(3133), - [anon_sym_return] = ACTIONS(3133), - [anon_sym_DOLLARfor] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3133), - [anon_sym_POUND] = ACTIONS(3133), - [anon_sym_asm] = ACTIONS(3133), - [anon_sym_AT_LBRACK] = ACTIONS(3133), - [sym___double_quote] = ACTIONS(3133), - [sym___single_quote] = ACTIONS(3133), - [sym___c_double_quote] = ACTIONS(3133), - [sym___c_single_quote] = ACTIONS(3133), - [sym___r_double_quote] = ACTIONS(3133), - [sym___r_single_quote] = ACTIONS(3133), + [ts_builtin_sym_end] = ACTIONS(2968), + [sym_identifier] = ACTIONS(2970), + [anon_sym_LF] = ACTIONS(2970), + [anon_sym_CR] = ACTIONS(2970), + [anon_sym_CR_LF] = ACTIONS(2970), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2970), + [anon_sym_as] = ACTIONS(2970), + [anon_sym_LBRACE] = ACTIONS(2970), + [anon_sym_COMMA] = ACTIONS(2970), + [anon_sym_const] = ACTIONS(2970), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym___global] = ACTIONS(2970), + [anon_sym_type] = ACTIONS(2970), + [anon_sym_PIPE] = ACTIONS(2970), + [anon_sym_fn] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2970), + [anon_sym_DASH] = ACTIONS(2970), + [anon_sym_STAR] = ACTIONS(2970), + [anon_sym_SLASH] = ACTIONS(2970), + [anon_sym_PERCENT] = ACTIONS(2970), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_GT] = ACTIONS(2970), + [anon_sym_EQ_EQ] = ACTIONS(2970), + [anon_sym_BANG_EQ] = ACTIONS(2970), + [anon_sym_LT_EQ] = ACTIONS(2970), + [anon_sym_GT_EQ] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2968), + [anon_sym_struct] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_pub] = ACTIONS(2970), + [anon_sym_mut] = ACTIONS(2970), + [anon_sym_enum] = ACTIONS(2970), + [anon_sym_interface] = ACTIONS(2970), + [anon_sym_PLUS_PLUS] = ACTIONS(2970), + [anon_sym_DASH_DASH] = ACTIONS(2970), + [anon_sym_QMARK] = ACTIONS(2970), + [anon_sym_BANG] = ACTIONS(2970), + [anon_sym_go] = ACTIONS(2970), + [anon_sym_spawn] = ACTIONS(2970), + [anon_sym_json_DOTdecode] = ACTIONS(2970), + [anon_sym_LBRACK2] = ACTIONS(2970), + [anon_sym_TILDE] = ACTIONS(2970), + [anon_sym_CARET] = ACTIONS(2970), + [anon_sym_AMP] = ACTIONS(2970), + [anon_sym_LT_DASH] = ACTIONS(2970), + [anon_sym_LT_LT] = ACTIONS(2970), + [anon_sym_GT_GT] = ACTIONS(2970), + [anon_sym_GT_GT_GT] = ACTIONS(2970), + [anon_sym_AMP_CARET] = ACTIONS(2970), + [anon_sym_AMP_AMP] = ACTIONS(2970), + [anon_sym_PIPE_PIPE] = ACTIONS(2970), + [anon_sym_or] = ACTIONS(2970), + [sym_none] = ACTIONS(2970), + [sym_true] = ACTIONS(2970), + [sym_false] = ACTIONS(2970), + [sym_nil] = ACTIONS(2970), + [anon_sym_QMARK_DOT] = ACTIONS(2970), + [anon_sym_POUND_LBRACK] = ACTIONS(2970), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_DOLLARif] = ACTIONS(2970), + [anon_sym_is] = ACTIONS(2970), + [anon_sym_BANGis] = ACTIONS(2970), + [anon_sym_in] = ACTIONS(2970), + [anon_sym_BANGin] = ACTIONS(2970), + [anon_sym_match] = ACTIONS(2970), + [anon_sym_select] = ACTIONS(2970), + [anon_sym_lock] = ACTIONS(2970), + [anon_sym_rlock] = ACTIONS(2970), + [anon_sym_unsafe] = ACTIONS(2970), + [anon_sym_sql] = ACTIONS(2970), + [sym_int_literal] = ACTIONS(2970), + [sym_float_literal] = ACTIONS(2970), + [sym_rune_literal] = ACTIONS(2970), + [anon_sym_AT] = ACTIONS(2970), + [anon_sym_shared] = ACTIONS(2970), + [anon_sym_map_LBRACK] = ACTIONS(2970), + [anon_sym_chan] = ACTIONS(2970), + [anon_sym_thread] = ACTIONS(2970), + [anon_sym_atomic] = ACTIONS(2970), + [anon_sym_assert] = ACTIONS(2970), + [anon_sym_defer] = ACTIONS(2970), + [anon_sym_goto] = ACTIONS(2970), + [anon_sym_break] = ACTIONS(2970), + [anon_sym_continue] = ACTIONS(2970), + [anon_sym_return] = ACTIONS(2970), + [anon_sym_DOLLARfor] = ACTIONS(2970), + [anon_sym_for] = ACTIONS(2970), + [anon_sym_POUND] = ACTIONS(2970), + [anon_sym_asm] = ACTIONS(2970), + [anon_sym_AT_LBRACK] = ACTIONS(2970), + [sym___double_quote] = ACTIONS(2970), + [sym___single_quote] = ACTIONS(2970), + [sym___c_double_quote] = ACTIONS(2970), + [sym___c_single_quote] = ACTIONS(2970), + [sym___r_double_quote] = ACTIONS(2970), + [sym___r_single_quote] = ACTIONS(2970), }, [1039] = { - [ts_builtin_sym_end] = ACTIONS(3071), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LF] = ACTIONS(3073), - [anon_sym_CR] = ACTIONS(3073), - [anon_sym_CR_LF] = ACTIONS(3073), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_as] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3073), - [anon_sym_const] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym___global] = ACTIONS(3073), - [anon_sym_type] = ACTIONS(3073), - [anon_sym_PIPE] = ACTIONS(3073), - [anon_sym_fn] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_SLASH] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_struct] = ACTIONS(3073), - [anon_sym_union] = ACTIONS(3073), - [anon_sym_pub] = ACTIONS(3073), - [anon_sym_mut] = ACTIONS(3073), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_interface] = ACTIONS(3073), - [anon_sym_PLUS_PLUS] = ACTIONS(3073), - [anon_sym_DASH_DASH] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_go] = ACTIONS(3073), - [anon_sym_spawn] = ACTIONS(3073), - [anon_sym_json_DOTdecode] = ACTIONS(3073), - [anon_sym_LBRACK2] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3073), - [anon_sym_CARET] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3073), - [anon_sym_LT_LT] = ACTIONS(3073), - [anon_sym_GT_GT] = ACTIONS(3073), - [anon_sym_GT_GT_GT] = ACTIONS(3073), - [anon_sym_AMP_CARET] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_or] = ACTIONS(3073), - [sym_none] = ACTIONS(3073), - [sym_true] = ACTIONS(3073), - [sym_false] = ACTIONS(3073), - [sym_nil] = ACTIONS(3073), - [anon_sym_QMARK_DOT] = ACTIONS(3073), - [anon_sym_POUND_LBRACK] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_DOLLARif] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3073), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_in] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_select] = ACTIONS(3073), - [anon_sym_lock] = ACTIONS(3073), - [anon_sym_rlock] = ACTIONS(3073), - [anon_sym_unsafe] = ACTIONS(3073), - [anon_sym_sql] = ACTIONS(3073), - [sym_int_literal] = ACTIONS(3073), - [sym_float_literal] = ACTIONS(3073), - [sym_rune_literal] = ACTIONS(3073), - [anon_sym_AT] = ACTIONS(3073), - [anon_sym_shared] = ACTIONS(3073), - [anon_sym_map_LBRACK] = ACTIONS(3073), - [anon_sym_chan] = ACTIONS(3073), - [anon_sym_thread] = ACTIONS(3073), - [anon_sym_atomic] = ACTIONS(3073), - [anon_sym_assert] = ACTIONS(3073), - [anon_sym_defer] = ACTIONS(3073), - [anon_sym_goto] = ACTIONS(3073), - [anon_sym_break] = ACTIONS(3073), - [anon_sym_continue] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_DOLLARfor] = ACTIONS(3073), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_POUND] = ACTIONS(3073), - [anon_sym_asm] = ACTIONS(3073), - [anon_sym_AT_LBRACK] = ACTIONS(3073), - [sym___double_quote] = ACTIONS(3073), - [sym___single_quote] = ACTIONS(3073), - [sym___c_double_quote] = ACTIONS(3073), - [sym___c_single_quote] = ACTIONS(3073), - [sym___r_double_quote] = ACTIONS(3073), - [sym___r_single_quote] = ACTIONS(3073), + [ts_builtin_sym_end] = ACTIONS(3004), + [sym_identifier] = ACTIONS(3006), + [anon_sym_LF] = ACTIONS(3006), + [anon_sym_CR] = ACTIONS(3006), + [anon_sym_CR_LF] = ACTIONS(3006), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3006), + [anon_sym_as] = ACTIONS(3006), + [anon_sym_LBRACE] = ACTIONS(3006), + [anon_sym_COMMA] = ACTIONS(3006), + [anon_sym_const] = ACTIONS(3006), + [anon_sym_LPAREN] = ACTIONS(3006), + [anon_sym___global] = ACTIONS(3006), + [anon_sym_type] = ACTIONS(3006), + [anon_sym_PIPE] = ACTIONS(3006), + [anon_sym_fn] = ACTIONS(3006), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_SLASH] = ACTIONS(3006), + [anon_sym_PERCENT] = ACTIONS(3006), + [anon_sym_LT] = ACTIONS(3006), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_EQ_EQ] = ACTIONS(3006), + [anon_sym_BANG_EQ] = ACTIONS(3006), + [anon_sym_LT_EQ] = ACTIONS(3006), + [anon_sym_GT_EQ] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3004), + [anon_sym_struct] = ACTIONS(3006), + [anon_sym_union] = ACTIONS(3006), + [anon_sym_pub] = ACTIONS(3006), + [anon_sym_mut] = ACTIONS(3006), + [anon_sym_enum] = ACTIONS(3006), + [anon_sym_interface] = ACTIONS(3006), + [anon_sym_PLUS_PLUS] = ACTIONS(3006), + [anon_sym_DASH_DASH] = ACTIONS(3006), + [anon_sym_QMARK] = ACTIONS(3006), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_go] = ACTIONS(3006), + [anon_sym_spawn] = ACTIONS(3006), + [anon_sym_json_DOTdecode] = ACTIONS(3006), + [anon_sym_LBRACK2] = ACTIONS(3006), + [anon_sym_TILDE] = ACTIONS(3006), + [anon_sym_CARET] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3006), + [anon_sym_LT_DASH] = ACTIONS(3006), + [anon_sym_LT_LT] = ACTIONS(3006), + [anon_sym_GT_GT] = ACTIONS(3006), + [anon_sym_GT_GT_GT] = ACTIONS(3006), + [anon_sym_AMP_CARET] = ACTIONS(3006), + [anon_sym_AMP_AMP] = ACTIONS(3006), + [anon_sym_PIPE_PIPE] = ACTIONS(3006), + [anon_sym_or] = ACTIONS(3006), + [sym_none] = ACTIONS(3006), + [sym_true] = ACTIONS(3006), + [sym_false] = ACTIONS(3006), + [sym_nil] = ACTIONS(3006), + [anon_sym_QMARK_DOT] = ACTIONS(3006), + [anon_sym_POUND_LBRACK] = ACTIONS(3006), + [anon_sym_if] = ACTIONS(3006), + [anon_sym_DOLLARif] = ACTIONS(3006), + [anon_sym_is] = ACTIONS(3006), + [anon_sym_BANGis] = ACTIONS(3006), + [anon_sym_in] = ACTIONS(3006), + [anon_sym_BANGin] = ACTIONS(3006), + [anon_sym_match] = ACTIONS(3006), + [anon_sym_select] = ACTIONS(3006), + [anon_sym_lock] = ACTIONS(3006), + [anon_sym_rlock] = ACTIONS(3006), + [anon_sym_unsafe] = ACTIONS(3006), + [anon_sym_sql] = ACTIONS(3006), + [sym_int_literal] = ACTIONS(3006), + [sym_float_literal] = ACTIONS(3006), + [sym_rune_literal] = ACTIONS(3006), + [anon_sym_AT] = ACTIONS(3006), + [anon_sym_shared] = ACTIONS(3006), + [anon_sym_map_LBRACK] = ACTIONS(3006), + [anon_sym_chan] = ACTIONS(3006), + [anon_sym_thread] = ACTIONS(3006), + [anon_sym_atomic] = ACTIONS(3006), + [anon_sym_assert] = ACTIONS(3006), + [anon_sym_defer] = ACTIONS(3006), + [anon_sym_goto] = ACTIONS(3006), + [anon_sym_break] = ACTIONS(3006), + [anon_sym_continue] = ACTIONS(3006), + [anon_sym_return] = ACTIONS(3006), + [anon_sym_DOLLARfor] = ACTIONS(3006), + [anon_sym_for] = ACTIONS(3006), + [anon_sym_POUND] = ACTIONS(3006), + [anon_sym_asm] = ACTIONS(3006), + [anon_sym_AT_LBRACK] = ACTIONS(3006), + [sym___double_quote] = ACTIONS(3006), + [sym___single_quote] = ACTIONS(3006), + [sym___c_double_quote] = ACTIONS(3006), + [sym___c_single_quote] = ACTIONS(3006), + [sym___r_double_quote] = ACTIONS(3006), + [sym___r_single_quote] = ACTIONS(3006), }, [1040] = { - [ts_builtin_sym_end] = ACTIONS(2858), - [sym_identifier] = ACTIONS(2860), - [anon_sym_LF] = ACTIONS(2860), - [anon_sym_CR] = ACTIONS(2860), - [anon_sym_CR_LF] = ACTIONS(2860), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2860), - [anon_sym_as] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2860), - [anon_sym_COMMA] = ACTIONS(2860), - [anon_sym_const] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(2860), - [anon_sym___global] = ACTIONS(2860), - [anon_sym_type] = ACTIONS(2860), - [anon_sym_PIPE] = ACTIONS(2860), - [anon_sym_fn] = ACTIONS(2860), - [anon_sym_PLUS] = ACTIONS(2860), - [anon_sym_DASH] = ACTIONS(2860), - [anon_sym_STAR] = ACTIONS(2860), - [anon_sym_SLASH] = ACTIONS(2860), - [anon_sym_PERCENT] = ACTIONS(2860), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_GT] = ACTIONS(2860), - [anon_sym_EQ_EQ] = ACTIONS(2860), - [anon_sym_BANG_EQ] = ACTIONS(2860), - [anon_sym_LT_EQ] = ACTIONS(2860), - [anon_sym_GT_EQ] = ACTIONS(2860), - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_struct] = ACTIONS(2860), - [anon_sym_union] = ACTIONS(2860), - [anon_sym_pub] = ACTIONS(2860), - [anon_sym_mut] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2860), - [anon_sym_interface] = ACTIONS(2860), - [anon_sym_PLUS_PLUS] = ACTIONS(2860), - [anon_sym_DASH_DASH] = ACTIONS(2860), - [anon_sym_QMARK] = ACTIONS(2860), - [anon_sym_BANG] = ACTIONS(2860), - [anon_sym_go] = ACTIONS(2860), - [anon_sym_spawn] = ACTIONS(2860), - [anon_sym_json_DOTdecode] = ACTIONS(2860), - [anon_sym_LBRACK2] = ACTIONS(2860), - [anon_sym_TILDE] = ACTIONS(2860), - [anon_sym_CARET] = ACTIONS(2860), - [anon_sym_AMP] = ACTIONS(2860), - [anon_sym_LT_DASH] = ACTIONS(2860), - [anon_sym_LT_LT] = ACTIONS(2860), - [anon_sym_GT_GT] = ACTIONS(2860), - [anon_sym_GT_GT_GT] = ACTIONS(2860), - [anon_sym_AMP_CARET] = ACTIONS(2860), - [anon_sym_AMP_AMP] = ACTIONS(2860), - [anon_sym_PIPE_PIPE] = ACTIONS(2860), - [anon_sym_or] = ACTIONS(2860), - [sym_none] = ACTIONS(2860), - [sym_true] = ACTIONS(2860), - [sym_false] = ACTIONS(2860), - [sym_nil] = ACTIONS(2860), - [anon_sym_QMARK_DOT] = ACTIONS(2860), - [anon_sym_POUND_LBRACK] = ACTIONS(2860), - [anon_sym_if] = ACTIONS(2860), - [anon_sym_DOLLARif] = ACTIONS(2860), - [anon_sym_is] = ACTIONS(2860), - [anon_sym_BANGis] = ACTIONS(2860), - [anon_sym_in] = ACTIONS(2860), - [anon_sym_BANGin] = ACTIONS(2860), - [anon_sym_match] = ACTIONS(2860), - [anon_sym_select] = ACTIONS(2860), - [anon_sym_lock] = ACTIONS(2860), - [anon_sym_rlock] = ACTIONS(2860), - [anon_sym_unsafe] = ACTIONS(2860), - [anon_sym_sql] = ACTIONS(2860), - [sym_int_literal] = ACTIONS(2860), - [sym_float_literal] = ACTIONS(2860), - [sym_rune_literal] = ACTIONS(2860), - [anon_sym_AT] = ACTIONS(2860), - [anon_sym_shared] = ACTIONS(2860), - [anon_sym_map_LBRACK] = ACTIONS(2860), - [anon_sym_chan] = ACTIONS(2860), - [anon_sym_thread] = ACTIONS(2860), - [anon_sym_atomic] = ACTIONS(2860), - [anon_sym_assert] = ACTIONS(2860), - [anon_sym_defer] = ACTIONS(2860), - [anon_sym_goto] = ACTIONS(2860), - [anon_sym_break] = ACTIONS(2860), - [anon_sym_continue] = ACTIONS(2860), - [anon_sym_return] = ACTIONS(2860), - [anon_sym_DOLLARfor] = ACTIONS(2860), - [anon_sym_for] = ACTIONS(2860), - [anon_sym_POUND] = ACTIONS(2860), - [anon_sym_asm] = ACTIONS(2860), - [anon_sym_AT_LBRACK] = ACTIONS(2860), - [sym___double_quote] = ACTIONS(2860), - [sym___single_quote] = ACTIONS(2860), - [sym___c_double_quote] = ACTIONS(2860), - [sym___c_single_quote] = ACTIONS(2860), - [sym___r_double_quote] = ACTIONS(2860), - [sym___r_single_quote] = ACTIONS(2860), + [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), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3010), + [sym___single_quote] = ACTIONS(3010), + [sym___c_double_quote] = ACTIONS(3010), + [sym___c_single_quote] = ACTIONS(3010), + [sym___r_double_quote] = ACTIONS(3010), + [sym___r_single_quote] = ACTIONS(3010), }, [1041] = { - [ts_builtin_sym_end] = ACTIONS(2806), - [sym_identifier] = ACTIONS(2808), - [anon_sym_LF] = ACTIONS(2808), - [anon_sym_CR] = ACTIONS(2808), - [anon_sym_CR_LF] = ACTIONS(2808), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2808), - [anon_sym_as] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_const] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2808), - [anon_sym___global] = ACTIONS(2808), - [anon_sym_type] = ACTIONS(2808), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_fn] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_SLASH] = ACTIONS(2808), - [anon_sym_PERCENT] = ACTIONS(2808), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_GT] = ACTIONS(2808), - [anon_sym_EQ_EQ] = ACTIONS(2808), - [anon_sym_BANG_EQ] = ACTIONS(2808), - [anon_sym_LT_EQ] = ACTIONS(2808), - [anon_sym_GT_EQ] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_struct] = ACTIONS(2808), - [anon_sym_union] = ACTIONS(2808), - [anon_sym_pub] = ACTIONS(2808), - [anon_sym_mut] = ACTIONS(2808), - [anon_sym_enum] = ACTIONS(2808), - [anon_sym_interface] = ACTIONS(2808), - [anon_sym_PLUS_PLUS] = ACTIONS(2808), - [anon_sym_DASH_DASH] = ACTIONS(2808), - [anon_sym_QMARK] = ACTIONS(2808), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_go] = ACTIONS(2808), - [anon_sym_spawn] = ACTIONS(2808), - [anon_sym_json_DOTdecode] = ACTIONS(2808), - [anon_sym_LBRACK2] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_CARET] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2808), - [anon_sym_LT_DASH] = ACTIONS(2808), - [anon_sym_LT_LT] = ACTIONS(2808), - [anon_sym_GT_GT] = ACTIONS(2808), - [anon_sym_GT_GT_GT] = ACTIONS(2808), - [anon_sym_AMP_CARET] = ACTIONS(2808), - [anon_sym_AMP_AMP] = ACTIONS(2808), - [anon_sym_PIPE_PIPE] = ACTIONS(2808), - [anon_sym_or] = ACTIONS(2808), - [sym_none] = ACTIONS(2808), - [sym_true] = ACTIONS(2808), - [sym_false] = ACTIONS(2808), - [sym_nil] = ACTIONS(2808), - [anon_sym_QMARK_DOT] = ACTIONS(2808), - [anon_sym_POUND_LBRACK] = ACTIONS(2808), - [anon_sym_if] = ACTIONS(2808), - [anon_sym_DOLLARif] = ACTIONS(2808), - [anon_sym_is] = ACTIONS(2808), - [anon_sym_BANGis] = ACTIONS(2808), - [anon_sym_in] = ACTIONS(2808), - [anon_sym_BANGin] = ACTIONS(2808), - [anon_sym_match] = ACTIONS(2808), - [anon_sym_select] = ACTIONS(2808), - [anon_sym_lock] = ACTIONS(2808), - [anon_sym_rlock] = ACTIONS(2808), - [anon_sym_unsafe] = ACTIONS(2808), - [anon_sym_sql] = ACTIONS(2808), - [sym_int_literal] = ACTIONS(2808), - [sym_float_literal] = ACTIONS(2808), - [sym_rune_literal] = ACTIONS(2808), - [anon_sym_AT] = ACTIONS(2808), - [anon_sym_shared] = ACTIONS(2808), - [anon_sym_map_LBRACK] = ACTIONS(2808), - [anon_sym_chan] = ACTIONS(2808), - [anon_sym_thread] = ACTIONS(2808), - [anon_sym_atomic] = ACTIONS(2808), - [anon_sym_assert] = ACTIONS(2808), - [anon_sym_defer] = ACTIONS(2808), - [anon_sym_goto] = ACTIONS(2808), - [anon_sym_break] = ACTIONS(2808), - [anon_sym_continue] = ACTIONS(2808), - [anon_sym_return] = ACTIONS(2808), - [anon_sym_DOLLARfor] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2808), - [anon_sym_POUND] = ACTIONS(2808), - [anon_sym_asm] = ACTIONS(2808), - [anon_sym_AT_LBRACK] = ACTIONS(2808), - [sym___double_quote] = ACTIONS(2808), - [sym___single_quote] = ACTIONS(2808), - [sym___c_double_quote] = ACTIONS(2808), - [sym___c_single_quote] = ACTIONS(2808), - [sym___r_double_quote] = ACTIONS(2808), - [sym___r_single_quote] = ACTIONS(2808), + [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), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3050), + [sym___single_quote] = ACTIONS(3050), + [sym___c_double_quote] = ACTIONS(3050), + [sym___c_single_quote] = ACTIONS(3050), + [sym___r_double_quote] = ACTIONS(3050), + [sym___r_single_quote] = ACTIONS(3050), }, [1042] = { - [ts_builtin_sym_end] = ACTIONS(2941), - [sym_identifier] = ACTIONS(2943), - [anon_sym_LF] = ACTIONS(2943), - [anon_sym_CR] = ACTIONS(2943), - [anon_sym_CR_LF] = ACTIONS(2943), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2943), - [anon_sym_as] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2943), - [anon_sym_COMMA] = ACTIONS(2943), - [anon_sym_const] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2943), - [anon_sym___global] = ACTIONS(2943), - [anon_sym_type] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2943), - [anon_sym_fn] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_SLASH] = ACTIONS(2943), - [anon_sym_PERCENT] = ACTIONS(2943), - [anon_sym_LT] = ACTIONS(2943), - [anon_sym_GT] = ACTIONS(2943), - [anon_sym_EQ_EQ] = ACTIONS(2943), - [anon_sym_BANG_EQ] = ACTIONS(2943), - [anon_sym_LT_EQ] = ACTIONS(2943), - [anon_sym_GT_EQ] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_struct] = ACTIONS(2943), - [anon_sym_union] = ACTIONS(2943), - [anon_sym_pub] = ACTIONS(2943), - [anon_sym_mut] = ACTIONS(2943), - [anon_sym_enum] = ACTIONS(2943), - [anon_sym_interface] = ACTIONS(2943), - [anon_sym_PLUS_PLUS] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(2943), - [anon_sym_QMARK] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(3347), - [anon_sym_go] = ACTIONS(2943), - [anon_sym_spawn] = ACTIONS(2943), - [anon_sym_json_DOTdecode] = ACTIONS(2943), - [anon_sym_LBRACK2] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_CARET] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_LT_DASH] = ACTIONS(2943), - [anon_sym_LT_LT] = ACTIONS(2943), - [anon_sym_GT_GT] = ACTIONS(2943), - [anon_sym_GT_GT_GT] = ACTIONS(2943), - [anon_sym_AMP_CARET] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2943), - [anon_sym_PIPE_PIPE] = ACTIONS(2943), - [anon_sym_or] = ACTIONS(2943), - [sym_none] = ACTIONS(2943), - [sym_true] = ACTIONS(2943), - [sym_false] = ACTIONS(2943), - [sym_nil] = ACTIONS(2943), - [anon_sym_QMARK_DOT] = ACTIONS(2943), - [anon_sym_POUND_LBRACK] = ACTIONS(2943), - [anon_sym_if] = ACTIONS(2943), - [anon_sym_DOLLARif] = ACTIONS(2943), - [anon_sym_is] = ACTIONS(2943), - [anon_sym_BANGis] = ACTIONS(2943), - [anon_sym_in] = ACTIONS(2943), - [anon_sym_BANGin] = ACTIONS(2943), - [anon_sym_match] = ACTIONS(2943), - [anon_sym_select] = ACTIONS(2943), - [anon_sym_lock] = ACTIONS(2943), - [anon_sym_rlock] = ACTIONS(2943), - [anon_sym_unsafe] = ACTIONS(2943), - [anon_sym_sql] = ACTIONS(2943), - [sym_int_literal] = ACTIONS(2943), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [anon_sym_AT] = ACTIONS(2943), - [anon_sym_shared] = ACTIONS(2943), - [anon_sym_map_LBRACK] = ACTIONS(2943), - [anon_sym_chan] = ACTIONS(2943), - [anon_sym_thread] = ACTIONS(2943), - [anon_sym_atomic] = ACTIONS(2943), - [anon_sym_assert] = ACTIONS(2943), - [anon_sym_defer] = ACTIONS(2943), - [anon_sym_goto] = ACTIONS(2943), - [anon_sym_break] = ACTIONS(2943), - [anon_sym_continue] = ACTIONS(2943), - [anon_sym_return] = ACTIONS(2943), - [anon_sym_DOLLARfor] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2943), - [anon_sym_POUND] = ACTIONS(2943), - [anon_sym_asm] = ACTIONS(2943), - [anon_sym_AT_LBRACK] = ACTIONS(2943), - [sym___double_quote] = ACTIONS(2943), - [sym___single_quote] = ACTIONS(2943), - [sym___c_double_quote] = ACTIONS(2943), - [sym___c_single_quote] = ACTIONS(2943), - [sym___r_double_quote] = ACTIONS(2943), - [sym___r_single_quote] = ACTIONS(2943), + [ts_builtin_sym_end] = ACTIONS(3092), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LF] = ACTIONS(3094), + [anon_sym_CR] = ACTIONS(3094), + [anon_sym_CR_LF] = ACTIONS(3094), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3094), + [anon_sym_as] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_COMMA] = ACTIONS(3094), + [anon_sym_const] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3094), + [anon_sym___global] = ACTIONS(3094), + [anon_sym_type] = ACTIONS(3094), + [anon_sym_PIPE] = ACTIONS(3094), + [anon_sym_fn] = ACTIONS(3094), + [anon_sym_PLUS] = ACTIONS(3094), + [anon_sym_DASH] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(3094), + [anon_sym_SLASH] = ACTIONS(3094), + [anon_sym_PERCENT] = ACTIONS(3094), + [anon_sym_LT] = ACTIONS(3094), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_LT_EQ] = ACTIONS(3094), + [anon_sym_GT_EQ] = ACTIONS(3094), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(3094), + [anon_sym_union] = ACTIONS(3094), + [anon_sym_pub] = ACTIONS(3094), + [anon_sym_mut] = ACTIONS(3094), + [anon_sym_enum] = ACTIONS(3094), + [anon_sym_interface] = ACTIONS(3094), + [anon_sym_PLUS_PLUS] = ACTIONS(3094), + [anon_sym_DASH_DASH] = ACTIONS(3094), + [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3094), + [anon_sym_spawn] = ACTIONS(3094), + [anon_sym_json_DOTdecode] = ACTIONS(3094), + [anon_sym_LBRACK2] = ACTIONS(3094), + [anon_sym_TILDE] = ACTIONS(3094), + [anon_sym_CARET] = ACTIONS(3094), + [anon_sym_AMP] = ACTIONS(3094), + [anon_sym_LT_DASH] = ACTIONS(3094), + [anon_sym_LT_LT] = ACTIONS(3094), + [anon_sym_GT_GT] = ACTIONS(3094), + [anon_sym_GT_GT_GT] = ACTIONS(3094), + [anon_sym_AMP_CARET] = ACTIONS(3094), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_PIPE_PIPE] = ACTIONS(3094), + [anon_sym_or] = ACTIONS(3094), + [sym_none] = ACTIONS(3094), + [sym_true] = ACTIONS(3094), + [sym_false] = ACTIONS(3094), + [sym_nil] = ACTIONS(3094), + [anon_sym_QMARK_DOT] = ACTIONS(3094), + [anon_sym_POUND_LBRACK] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3094), + [anon_sym_DOLLARif] = ACTIONS(3094), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3094), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_BANGin] = ACTIONS(3094), + [anon_sym_match] = ACTIONS(3094), + [anon_sym_select] = ACTIONS(3094), + [anon_sym_lock] = ACTIONS(3094), + [anon_sym_rlock] = ACTIONS(3094), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3094), + [sym_int_literal] = ACTIONS(3094), + [sym_float_literal] = ACTIONS(3094), + [sym_rune_literal] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(3094), + [anon_sym_shared] = ACTIONS(3094), + [anon_sym_map_LBRACK] = ACTIONS(3094), + [anon_sym_chan] = ACTIONS(3094), + [anon_sym_thread] = ACTIONS(3094), + [anon_sym_atomic] = ACTIONS(3094), + [anon_sym_assert] = ACTIONS(3094), + [anon_sym_defer] = ACTIONS(3094), + [anon_sym_goto] = ACTIONS(3094), + [anon_sym_break] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(3094), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_DOLLARfor] = ACTIONS(3094), + [anon_sym_for] = ACTIONS(3094), + [anon_sym_POUND] = ACTIONS(3094), + [anon_sym_asm] = ACTIONS(3094), + [anon_sym_AT_LBRACK] = ACTIONS(3094), + [sym___double_quote] = ACTIONS(3094), + [sym___single_quote] = ACTIONS(3094), + [sym___c_double_quote] = ACTIONS(3094), + [sym___c_single_quote] = ACTIONS(3094), + [sym___r_double_quote] = ACTIONS(3094), + [sym___r_single_quote] = ACTIONS(3094), }, [1043] = { - [ts_builtin_sym_end] = ACTIONS(3103), - [sym_identifier] = ACTIONS(3105), - [anon_sym_LF] = ACTIONS(3105), - [anon_sym_CR] = ACTIONS(3105), - [anon_sym_CR_LF] = ACTIONS(3105), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3105), - [anon_sym_as] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(3105), - [anon_sym_COMMA] = ACTIONS(3105), - [anon_sym_const] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3105), - [anon_sym___global] = ACTIONS(3105), - [anon_sym_type] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3105), - [anon_sym_fn] = ACTIONS(3105), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_SLASH] = ACTIONS(3105), - [anon_sym_PERCENT] = ACTIONS(3105), - [anon_sym_LT] = ACTIONS(3105), - [anon_sym_GT] = ACTIONS(3105), - [anon_sym_EQ_EQ] = ACTIONS(3105), - [anon_sym_BANG_EQ] = ACTIONS(3105), - [anon_sym_LT_EQ] = ACTIONS(3105), - [anon_sym_GT_EQ] = ACTIONS(3105), - [anon_sym_LBRACK] = ACTIONS(3103), - [anon_sym_struct] = ACTIONS(3105), - [anon_sym_union] = ACTIONS(3105), - [anon_sym_pub] = ACTIONS(3105), - [anon_sym_mut] = ACTIONS(3105), - [anon_sym_enum] = ACTIONS(3105), - [anon_sym_interface] = ACTIONS(3105), - [anon_sym_PLUS_PLUS] = ACTIONS(3105), - [anon_sym_DASH_DASH] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3105), - [anon_sym_go] = ACTIONS(3105), - [anon_sym_spawn] = ACTIONS(3105), - [anon_sym_json_DOTdecode] = ACTIONS(3105), - [anon_sym_LBRACK2] = ACTIONS(3105), - [anon_sym_TILDE] = ACTIONS(3105), - [anon_sym_CARET] = ACTIONS(3105), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_LT_DASH] = ACTIONS(3105), - [anon_sym_LT_LT] = ACTIONS(3105), - [anon_sym_GT_GT] = ACTIONS(3105), - [anon_sym_GT_GT_GT] = ACTIONS(3105), - [anon_sym_AMP_CARET] = ACTIONS(3105), - [anon_sym_AMP_AMP] = ACTIONS(3105), - [anon_sym_PIPE_PIPE] = ACTIONS(3105), - [anon_sym_or] = ACTIONS(3105), - [sym_none] = ACTIONS(3105), - [sym_true] = ACTIONS(3105), - [sym_false] = ACTIONS(3105), - [sym_nil] = ACTIONS(3105), - [anon_sym_QMARK_DOT] = ACTIONS(3105), - [anon_sym_POUND_LBRACK] = ACTIONS(3105), - [anon_sym_if] = ACTIONS(3105), - [anon_sym_DOLLARif] = ACTIONS(3105), - [anon_sym_is] = ACTIONS(3105), - [anon_sym_BANGis] = ACTIONS(3105), - [anon_sym_in] = ACTIONS(3105), - [anon_sym_BANGin] = ACTIONS(3105), - [anon_sym_match] = ACTIONS(3105), - [anon_sym_select] = ACTIONS(3105), - [anon_sym_lock] = ACTIONS(3105), - [anon_sym_rlock] = ACTIONS(3105), - [anon_sym_unsafe] = ACTIONS(3105), - [anon_sym_sql] = ACTIONS(3105), - [sym_int_literal] = ACTIONS(3105), - [sym_float_literal] = ACTIONS(3105), - [sym_rune_literal] = ACTIONS(3105), - [anon_sym_AT] = ACTIONS(3105), - [anon_sym_shared] = ACTIONS(3105), - [anon_sym_map_LBRACK] = ACTIONS(3105), - [anon_sym_chan] = ACTIONS(3105), - [anon_sym_thread] = ACTIONS(3105), - [anon_sym_atomic] = ACTIONS(3105), - [anon_sym_assert] = ACTIONS(3105), - [anon_sym_defer] = ACTIONS(3105), - [anon_sym_goto] = ACTIONS(3105), - [anon_sym_break] = ACTIONS(3105), - [anon_sym_continue] = ACTIONS(3105), - [anon_sym_return] = ACTIONS(3105), - [anon_sym_DOLLARfor] = ACTIONS(3105), - [anon_sym_for] = ACTIONS(3105), - [anon_sym_POUND] = ACTIONS(3105), - [anon_sym_asm] = ACTIONS(3105), - [anon_sym_AT_LBRACK] = ACTIONS(3105), - [sym___double_quote] = ACTIONS(3105), - [sym___single_quote] = ACTIONS(3105), - [sym___c_double_quote] = ACTIONS(3105), - [sym___c_single_quote] = ACTIONS(3105), - [sym___r_double_quote] = ACTIONS(3105), - [sym___r_single_quote] = ACTIONS(3105), + [ts_builtin_sym_end] = ACTIONS(2920), + [sym_identifier] = ACTIONS(2922), + [anon_sym_LF] = ACTIONS(2922), + [anon_sym_CR] = ACTIONS(2922), + [anon_sym_CR_LF] = ACTIONS(2922), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2922), + [anon_sym_as] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2922), + [anon_sym_COMMA] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(2922), + [anon_sym_LPAREN] = ACTIONS(2922), + [anon_sym___global] = ACTIONS(2922), + [anon_sym_type] = ACTIONS(2922), + [anon_sym_PIPE] = ACTIONS(2922), + [anon_sym_fn] = ACTIONS(2922), + [anon_sym_PLUS] = ACTIONS(2922), + [anon_sym_DASH] = ACTIONS(2922), + [anon_sym_STAR] = ACTIONS(2922), + [anon_sym_SLASH] = ACTIONS(2922), + [anon_sym_PERCENT] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_GT] = ACTIONS(2922), + [anon_sym_EQ_EQ] = ACTIONS(2922), + [anon_sym_BANG_EQ] = ACTIONS(2922), + [anon_sym_LT_EQ] = ACTIONS(2922), + [anon_sym_GT_EQ] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2920), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_pub] = ACTIONS(2922), + [anon_sym_mut] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_interface] = ACTIONS(2922), + [anon_sym_PLUS_PLUS] = ACTIONS(2922), + [anon_sym_DASH_DASH] = ACTIONS(2922), + [anon_sym_QMARK] = ACTIONS(2922), + [anon_sym_BANG] = ACTIONS(2922), + [anon_sym_go] = ACTIONS(2922), + [anon_sym_spawn] = ACTIONS(2922), + [anon_sym_json_DOTdecode] = ACTIONS(2922), + [anon_sym_LBRACK2] = ACTIONS(2922), + [anon_sym_TILDE] = ACTIONS(2922), + [anon_sym_CARET] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2922), + [anon_sym_LT_DASH] = ACTIONS(2922), + [anon_sym_LT_LT] = ACTIONS(2922), + [anon_sym_GT_GT] = ACTIONS(2922), + [anon_sym_GT_GT_GT] = ACTIONS(2922), + [anon_sym_AMP_CARET] = ACTIONS(2922), + [anon_sym_AMP_AMP] = ACTIONS(2922), + [anon_sym_PIPE_PIPE] = ACTIONS(2922), + [anon_sym_or] = ACTIONS(2922), + [sym_none] = ACTIONS(2922), + [sym_true] = ACTIONS(2922), + [sym_false] = ACTIONS(2922), + [sym_nil] = ACTIONS(2922), + [anon_sym_QMARK_DOT] = ACTIONS(2922), + [anon_sym_POUND_LBRACK] = ACTIONS(2922), + [anon_sym_if] = ACTIONS(2922), + [anon_sym_DOLLARif] = ACTIONS(2922), + [anon_sym_is] = ACTIONS(2922), + [anon_sym_BANGis] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(2922), + [anon_sym_BANGin] = ACTIONS(2922), + [anon_sym_match] = ACTIONS(2922), + [anon_sym_select] = ACTIONS(2922), + [anon_sym_lock] = ACTIONS(2922), + [anon_sym_rlock] = ACTIONS(2922), + [anon_sym_unsafe] = ACTIONS(2922), + [anon_sym_sql] = ACTIONS(2922), + [sym_int_literal] = ACTIONS(2922), + [sym_float_literal] = ACTIONS(2922), + [sym_rune_literal] = ACTIONS(2922), + [anon_sym_AT] = ACTIONS(2922), + [anon_sym_shared] = ACTIONS(2922), + [anon_sym_map_LBRACK] = ACTIONS(2922), + [anon_sym_chan] = ACTIONS(2922), + [anon_sym_thread] = ACTIONS(2922), + [anon_sym_atomic] = ACTIONS(2922), + [anon_sym_assert] = ACTIONS(2922), + [anon_sym_defer] = ACTIONS(2922), + [anon_sym_goto] = ACTIONS(2922), + [anon_sym_break] = ACTIONS(2922), + [anon_sym_continue] = ACTIONS(2922), + [anon_sym_return] = ACTIONS(2922), + [anon_sym_DOLLARfor] = ACTIONS(2922), + [anon_sym_for] = ACTIONS(2922), + [anon_sym_POUND] = ACTIONS(2922), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym_AT_LBRACK] = ACTIONS(2922), + [sym___double_quote] = ACTIONS(2922), + [sym___single_quote] = ACTIONS(2922), + [sym___c_double_quote] = ACTIONS(2922), + [sym___c_single_quote] = ACTIONS(2922), + [sym___r_double_quote] = ACTIONS(2922), + [sym___r_single_quote] = ACTIONS(2922), }, [1044] = { - [ts_builtin_sym_end] = ACTIONS(3099), - [sym_identifier] = ACTIONS(3101), - [anon_sym_LF] = ACTIONS(3101), - [anon_sym_CR] = ACTIONS(3101), - [anon_sym_CR_LF] = ACTIONS(3101), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_as] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_COMMA] = ACTIONS(3101), - [anon_sym_const] = ACTIONS(3101), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym___global] = ACTIONS(3101), - [anon_sym_type] = ACTIONS(3101), - [anon_sym_PIPE] = ACTIONS(3101), - [anon_sym_fn] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_SLASH] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3101), - [anon_sym_LT] = ACTIONS(3101), - [anon_sym_GT] = ACTIONS(3101), - [anon_sym_EQ_EQ] = ACTIONS(3101), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_LT_EQ] = ACTIONS(3101), - [anon_sym_GT_EQ] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3101), - [anon_sym_union] = ACTIONS(3101), - [anon_sym_pub] = ACTIONS(3101), - [anon_sym_mut] = ACTIONS(3101), - [anon_sym_enum] = ACTIONS(3101), - [anon_sym_interface] = ACTIONS(3101), - [anon_sym_PLUS_PLUS] = ACTIONS(3101), - [anon_sym_DASH_DASH] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_BANG] = ACTIONS(3101), - [anon_sym_go] = ACTIONS(3101), - [anon_sym_spawn] = ACTIONS(3101), - [anon_sym_json_DOTdecode] = ACTIONS(3101), - [anon_sym_LBRACK2] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_CARET] = ACTIONS(3101), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_LT_DASH] = ACTIONS(3101), - [anon_sym_LT_LT] = ACTIONS(3101), - [anon_sym_GT_GT] = ACTIONS(3101), - [anon_sym_GT_GT_GT] = ACTIONS(3101), - [anon_sym_AMP_CARET] = ACTIONS(3101), - [anon_sym_AMP_AMP] = ACTIONS(3101), - [anon_sym_PIPE_PIPE] = ACTIONS(3101), - [anon_sym_or] = ACTIONS(3101), - [sym_none] = ACTIONS(3101), - [sym_true] = ACTIONS(3101), - [sym_false] = ACTIONS(3101), - [sym_nil] = ACTIONS(3101), - [anon_sym_QMARK_DOT] = ACTIONS(3101), - [anon_sym_POUND_LBRACK] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_DOLLARif] = ACTIONS(3101), - [anon_sym_is] = ACTIONS(3101), - [anon_sym_BANGis] = ACTIONS(3101), - [anon_sym_in] = ACTIONS(3101), - [anon_sym_BANGin] = ACTIONS(3101), - [anon_sym_match] = ACTIONS(3101), - [anon_sym_select] = ACTIONS(3101), - [anon_sym_lock] = ACTIONS(3101), - [anon_sym_rlock] = ACTIONS(3101), - [anon_sym_unsafe] = ACTIONS(3101), - [anon_sym_sql] = ACTIONS(3101), - [sym_int_literal] = ACTIONS(3101), - [sym_float_literal] = ACTIONS(3101), - [sym_rune_literal] = ACTIONS(3101), - [anon_sym_AT] = ACTIONS(3101), - [anon_sym_shared] = ACTIONS(3101), - [anon_sym_map_LBRACK] = ACTIONS(3101), - [anon_sym_chan] = ACTIONS(3101), - [anon_sym_thread] = ACTIONS(3101), - [anon_sym_atomic] = ACTIONS(3101), - [anon_sym_assert] = ACTIONS(3101), - [anon_sym_defer] = ACTIONS(3101), - [anon_sym_goto] = ACTIONS(3101), - [anon_sym_break] = ACTIONS(3101), - [anon_sym_continue] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_DOLLARfor] = ACTIONS(3101), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_POUND] = ACTIONS(3101), - [anon_sym_asm] = ACTIONS(3101), - [anon_sym_AT_LBRACK] = ACTIONS(3101), - [sym___double_quote] = ACTIONS(3101), - [sym___single_quote] = ACTIONS(3101), - [sym___c_double_quote] = ACTIONS(3101), - [sym___c_single_quote] = ACTIONS(3101), - [sym___r_double_quote] = ACTIONS(3101), - [sym___r_single_quote] = ACTIONS(3101), + [ts_builtin_sym_end] = ACTIONS(2816), + [sym_identifier] = ACTIONS(2818), + [anon_sym_LF] = ACTIONS(2818), + [anon_sym_CR] = ACTIONS(2818), + [anon_sym_CR_LF] = ACTIONS(2818), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2818), + [anon_sym_as] = ACTIONS(2818), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_COMMA] = ACTIONS(2818), + [anon_sym_const] = ACTIONS(2818), + [anon_sym_LPAREN] = ACTIONS(2818), + [anon_sym___global] = ACTIONS(2818), + [anon_sym_type] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_fn] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2818), + [anon_sym_DASH] = ACTIONS(2818), + [anon_sym_STAR] = ACTIONS(2818), + [anon_sym_SLASH] = ACTIONS(2818), + [anon_sym_PERCENT] = ACTIONS(2818), + [anon_sym_LT] = ACTIONS(2818), + [anon_sym_GT] = ACTIONS(2818), + [anon_sym_EQ_EQ] = ACTIONS(2818), + [anon_sym_BANG_EQ] = ACTIONS(2818), + [anon_sym_LT_EQ] = ACTIONS(2818), + [anon_sym_GT_EQ] = ACTIONS(2818), + [anon_sym_LBRACK] = ACTIONS(2816), + [anon_sym_struct] = ACTIONS(2818), + [anon_sym_union] = ACTIONS(2818), + [anon_sym_pub] = ACTIONS(2818), + [anon_sym_mut] = ACTIONS(2818), + [anon_sym_enum] = ACTIONS(2818), + [anon_sym_interface] = ACTIONS(2818), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_DASH_DASH] = ACTIONS(2818), + [anon_sym_QMARK] = ACTIONS(2818), + [anon_sym_BANG] = ACTIONS(2818), + [anon_sym_go] = ACTIONS(2818), + [anon_sym_spawn] = ACTIONS(2818), + [anon_sym_json_DOTdecode] = ACTIONS(2818), + [anon_sym_LBRACK2] = ACTIONS(2818), + [anon_sym_TILDE] = ACTIONS(2818), + [anon_sym_CARET] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2818), + [anon_sym_LT_DASH] = ACTIONS(2818), + [anon_sym_LT_LT] = ACTIONS(2818), + [anon_sym_GT_GT] = ACTIONS(2818), + [anon_sym_GT_GT_GT] = ACTIONS(2818), + [anon_sym_AMP_CARET] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2818), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_or] = ACTIONS(2818), + [sym_none] = ACTIONS(2818), + [sym_true] = ACTIONS(2818), + [sym_false] = ACTIONS(2818), + [sym_nil] = ACTIONS(2818), + [anon_sym_QMARK_DOT] = ACTIONS(2818), + [anon_sym_POUND_LBRACK] = ACTIONS(2818), + [anon_sym_if] = ACTIONS(2818), + [anon_sym_DOLLARif] = ACTIONS(2818), + [anon_sym_is] = ACTIONS(2818), + [anon_sym_BANGis] = ACTIONS(2818), + [anon_sym_in] = ACTIONS(2818), + [anon_sym_BANGin] = ACTIONS(2818), + [anon_sym_match] = ACTIONS(2818), + [anon_sym_select] = ACTIONS(2818), + [anon_sym_lock] = ACTIONS(2818), + [anon_sym_rlock] = ACTIONS(2818), + [anon_sym_unsafe] = ACTIONS(2818), + [anon_sym_sql] = ACTIONS(2818), + [sym_int_literal] = ACTIONS(2818), + [sym_float_literal] = ACTIONS(2818), + [sym_rune_literal] = ACTIONS(2818), + [anon_sym_AT] = ACTIONS(2818), + [anon_sym_shared] = ACTIONS(2818), + [anon_sym_map_LBRACK] = ACTIONS(2818), + [anon_sym_chan] = ACTIONS(2818), + [anon_sym_thread] = ACTIONS(2818), + [anon_sym_atomic] = ACTIONS(2818), + [anon_sym_assert] = ACTIONS(2818), + [anon_sym_defer] = ACTIONS(2818), + [anon_sym_goto] = ACTIONS(2818), + [anon_sym_break] = ACTIONS(2818), + [anon_sym_continue] = ACTIONS(2818), + [anon_sym_return] = ACTIONS(2818), + [anon_sym_DOLLARfor] = ACTIONS(2818), + [anon_sym_for] = ACTIONS(2818), + [anon_sym_POUND] = ACTIONS(2818), + [anon_sym_asm] = ACTIONS(2818), + [anon_sym_AT_LBRACK] = ACTIONS(2818), + [sym___double_quote] = ACTIONS(2818), + [sym___single_quote] = ACTIONS(2818), + [sym___c_double_quote] = ACTIONS(2818), + [sym___c_single_quote] = ACTIONS(2818), + [sym___r_double_quote] = ACTIONS(2818), + [sym___r_single_quote] = ACTIONS(2818), }, [1045] = { - [ts_builtin_sym_end] = ACTIONS(2909), - [sym_identifier] = ACTIONS(2911), - [anon_sym_LF] = ACTIONS(2911), - [anon_sym_CR] = ACTIONS(2911), - [anon_sym_CR_LF] = ACTIONS(2911), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2911), - [anon_sym_as] = ACTIONS(2911), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_COMMA] = ACTIONS(2911), - [anon_sym_const] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym___global] = ACTIONS(2911), - [anon_sym_type] = ACTIONS(2911), - [anon_sym_PIPE] = ACTIONS(2911), - [anon_sym_fn] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2911), - [anon_sym_DASH] = ACTIONS(2911), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_SLASH] = ACTIONS(2911), - [anon_sym_PERCENT] = ACTIONS(2911), - [anon_sym_LT] = ACTIONS(2911), - [anon_sym_GT] = ACTIONS(2911), - [anon_sym_EQ_EQ] = ACTIONS(2911), - [anon_sym_BANG_EQ] = ACTIONS(2911), - [anon_sym_LT_EQ] = ACTIONS(2911), - [anon_sym_GT_EQ] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_union] = ACTIONS(2911), - [anon_sym_pub] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(2911), - [anon_sym_enum] = ACTIONS(2911), - [anon_sym_interface] = ACTIONS(2911), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_QMARK] = ACTIONS(2911), - [anon_sym_BANG] = ACTIONS(2911), - [anon_sym_go] = ACTIONS(2911), - [anon_sym_spawn] = ACTIONS(2911), - [anon_sym_json_DOTdecode] = ACTIONS(2911), - [anon_sym_LBRACK2] = ACTIONS(2911), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_CARET] = ACTIONS(2911), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_LT_DASH] = ACTIONS(2911), - [anon_sym_LT_LT] = ACTIONS(2911), - [anon_sym_GT_GT] = ACTIONS(2911), - [anon_sym_GT_GT_GT] = ACTIONS(2911), - [anon_sym_AMP_CARET] = ACTIONS(2911), - [anon_sym_AMP_AMP] = ACTIONS(2911), - [anon_sym_PIPE_PIPE] = ACTIONS(2911), - [anon_sym_or] = ACTIONS(2911), - [sym_none] = ACTIONS(2911), - [sym_true] = ACTIONS(2911), - [sym_false] = ACTIONS(2911), - [sym_nil] = ACTIONS(2911), - [anon_sym_QMARK_DOT] = ACTIONS(2911), - [anon_sym_POUND_LBRACK] = ACTIONS(2911), - [anon_sym_if] = ACTIONS(2911), - [anon_sym_DOLLARif] = ACTIONS(2911), - [anon_sym_is] = ACTIONS(2911), - [anon_sym_BANGis] = ACTIONS(2911), - [anon_sym_in] = ACTIONS(2911), - [anon_sym_BANGin] = ACTIONS(2911), - [anon_sym_match] = ACTIONS(2911), - [anon_sym_select] = ACTIONS(2911), - [anon_sym_lock] = ACTIONS(2911), - [anon_sym_rlock] = ACTIONS(2911), - [anon_sym_unsafe] = ACTIONS(2911), - [anon_sym_sql] = ACTIONS(2911), - [sym_int_literal] = ACTIONS(2911), - [sym_float_literal] = ACTIONS(2911), - [sym_rune_literal] = ACTIONS(2911), - [anon_sym_AT] = ACTIONS(2911), - [anon_sym_shared] = ACTIONS(2911), - [anon_sym_map_LBRACK] = ACTIONS(2911), - [anon_sym_chan] = ACTIONS(2911), - [anon_sym_thread] = ACTIONS(2911), - [anon_sym_atomic] = ACTIONS(2911), - [anon_sym_assert] = ACTIONS(2911), - [anon_sym_defer] = ACTIONS(2911), - [anon_sym_goto] = ACTIONS(2911), - [anon_sym_break] = ACTIONS(2911), - [anon_sym_continue] = ACTIONS(2911), - [anon_sym_return] = ACTIONS(2911), - [anon_sym_DOLLARfor] = ACTIONS(2911), - [anon_sym_for] = ACTIONS(2911), - [anon_sym_POUND] = ACTIONS(2911), - [anon_sym_asm] = ACTIONS(2911), - [anon_sym_AT_LBRACK] = ACTIONS(2911), - [sym___double_quote] = ACTIONS(2911), - [sym___single_quote] = ACTIONS(2911), - [sym___c_double_quote] = ACTIONS(2911), - [sym___c_single_quote] = ACTIONS(2911), - [sym___r_double_quote] = ACTIONS(2911), - [sym___r_single_quote] = ACTIONS(2911), + [ts_builtin_sym_end] = ACTIONS(2860), + [sym_identifier] = ACTIONS(2862), + [anon_sym_LF] = ACTIONS(2862), + [anon_sym_CR] = ACTIONS(2862), + [anon_sym_CR_LF] = ACTIONS(2862), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_as] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_COMMA] = ACTIONS(2862), + [anon_sym_const] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2862), + [anon_sym___global] = ACTIONS(2862), + [anon_sym_type] = ACTIONS(2862), + [anon_sym_PIPE] = ACTIONS(2862), + [anon_sym_fn] = ACTIONS(2862), + [anon_sym_PLUS] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2862), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_SLASH] = ACTIONS(2862), + [anon_sym_PERCENT] = ACTIONS(2862), + [anon_sym_LT] = ACTIONS(2862), + [anon_sym_GT] = ACTIONS(2862), + [anon_sym_EQ_EQ] = ACTIONS(2862), + [anon_sym_BANG_EQ] = ACTIONS(2862), + [anon_sym_LT_EQ] = ACTIONS(2862), + [anon_sym_GT_EQ] = ACTIONS(2862), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2862), + [anon_sym_union] = ACTIONS(2862), + [anon_sym_pub] = ACTIONS(2862), + [anon_sym_mut] = ACTIONS(2862), + [anon_sym_enum] = ACTIONS(2862), + [anon_sym_interface] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_QMARK] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_go] = ACTIONS(2862), + [anon_sym_spawn] = ACTIONS(2862), + [anon_sym_json_DOTdecode] = ACTIONS(2862), + [anon_sym_LBRACK2] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_CARET] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_LT_DASH] = ACTIONS(2862), + [anon_sym_LT_LT] = ACTIONS(2862), + [anon_sym_GT_GT] = ACTIONS(2862), + [anon_sym_GT_GT_GT] = ACTIONS(2862), + [anon_sym_AMP_CARET] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_PIPE_PIPE] = ACTIONS(2862), + [anon_sym_or] = ACTIONS(2862), + [sym_none] = ACTIONS(2862), + [sym_true] = ACTIONS(2862), + [sym_false] = ACTIONS(2862), + [sym_nil] = ACTIONS(2862), + [anon_sym_QMARK_DOT] = ACTIONS(2862), + [anon_sym_POUND_LBRACK] = ACTIONS(2862), + [anon_sym_if] = ACTIONS(2862), + [anon_sym_DOLLARif] = ACTIONS(2862), + [anon_sym_is] = ACTIONS(2862), + [anon_sym_BANGis] = ACTIONS(2862), + [anon_sym_in] = ACTIONS(2862), + [anon_sym_BANGin] = ACTIONS(2862), + [anon_sym_match] = ACTIONS(2862), + [anon_sym_select] = ACTIONS(2862), + [anon_sym_lock] = ACTIONS(2862), + [anon_sym_rlock] = ACTIONS(2862), + [anon_sym_unsafe] = ACTIONS(2862), + [anon_sym_sql] = ACTIONS(2862), + [sym_int_literal] = ACTIONS(2862), + [sym_float_literal] = ACTIONS(2862), + [sym_rune_literal] = ACTIONS(2862), + [anon_sym_AT] = ACTIONS(2862), + [anon_sym_shared] = ACTIONS(2862), + [anon_sym_map_LBRACK] = ACTIONS(2862), + [anon_sym_chan] = ACTIONS(2862), + [anon_sym_thread] = ACTIONS(2862), + [anon_sym_atomic] = ACTIONS(2862), + [anon_sym_assert] = ACTIONS(2862), + [anon_sym_defer] = ACTIONS(2862), + [anon_sym_goto] = ACTIONS(2862), + [anon_sym_break] = ACTIONS(2862), + [anon_sym_continue] = ACTIONS(2862), + [anon_sym_return] = ACTIONS(2862), + [anon_sym_DOLLARfor] = ACTIONS(2862), + [anon_sym_for] = ACTIONS(2862), + [anon_sym_POUND] = ACTIONS(2862), + [anon_sym_asm] = ACTIONS(2862), + [anon_sym_AT_LBRACK] = ACTIONS(2862), + [sym___double_quote] = ACTIONS(2862), + [sym___single_quote] = ACTIONS(2862), + [sym___c_double_quote] = ACTIONS(2862), + [sym___c_single_quote] = ACTIONS(2862), + [sym___r_double_quote] = ACTIONS(2862), + [sym___r_single_quote] = ACTIONS(2862), }, [1046] = { - [ts_builtin_sym_end] = ACTIONS(2961), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LF] = ACTIONS(2963), - [anon_sym_CR] = ACTIONS(2963), - [anon_sym_CR_LF] = ACTIONS(2963), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_as] = ACTIONS(2963), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_COMMA] = ACTIONS(2963), - [anon_sym_const] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym___global] = ACTIONS(2963), - [anon_sym_type] = ACTIONS(2963), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_fn] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_STAR] = ACTIONS(2963), - [anon_sym_SLASH] = ACTIONS(2963), - [anon_sym_PERCENT] = ACTIONS(2963), - [anon_sym_LT] = ACTIONS(2963), - [anon_sym_GT] = ACTIONS(2963), - [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(2961), - [anon_sym_struct] = ACTIONS(2963), - [anon_sym_union] = ACTIONS(2963), - [anon_sym_pub] = ACTIONS(2963), - [anon_sym_mut] = ACTIONS(2963), - [anon_sym_enum] = ACTIONS(2963), - [anon_sym_interface] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2963), - [anon_sym_DASH_DASH] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_BANG] = ACTIONS(2963), - [anon_sym_go] = ACTIONS(2963), - [anon_sym_spawn] = ACTIONS(2963), - [anon_sym_json_DOTdecode] = ACTIONS(2963), - [anon_sym_LBRACK2] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2963), - [anon_sym_CARET] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_LT_DASH] = ACTIONS(2963), - [anon_sym_LT_LT] = ACTIONS(2963), - [anon_sym_GT_GT] = ACTIONS(2963), - [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(2963), - [sym_none] = ACTIONS(2963), - [sym_true] = ACTIONS(2963), - [sym_false] = ACTIONS(2963), - [sym_nil] = ACTIONS(2963), - [anon_sym_QMARK_DOT] = ACTIONS(2963), - [anon_sym_POUND_LBRACK] = ACTIONS(2963), - [anon_sym_if] = ACTIONS(2963), - [anon_sym_DOLLARif] = ACTIONS(2963), - [anon_sym_is] = ACTIONS(2963), - [anon_sym_BANGis] = ACTIONS(2963), - [anon_sym_in] = ACTIONS(2963), - [anon_sym_BANGin] = ACTIONS(2963), - [anon_sym_match] = ACTIONS(2963), - [anon_sym_select] = ACTIONS(2963), - [anon_sym_lock] = ACTIONS(2963), - [anon_sym_rlock] = ACTIONS(2963), - [anon_sym_unsafe] = ACTIONS(2963), - [anon_sym_sql] = ACTIONS(2963), - [sym_int_literal] = ACTIONS(2963), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [anon_sym_AT] = ACTIONS(2963), - [anon_sym_shared] = ACTIONS(2963), - [anon_sym_map_LBRACK] = ACTIONS(2963), - [anon_sym_chan] = ACTIONS(2963), - [anon_sym_thread] = ACTIONS(2963), - [anon_sym_atomic] = ACTIONS(2963), - [anon_sym_assert] = ACTIONS(2963), - [anon_sym_defer] = ACTIONS(2963), - [anon_sym_goto] = ACTIONS(2963), - [anon_sym_break] = ACTIONS(2963), - [anon_sym_continue] = ACTIONS(2963), - [anon_sym_return] = ACTIONS(2963), - [anon_sym_DOLLARfor] = ACTIONS(2963), - [anon_sym_for] = ACTIONS(2963), - [anon_sym_POUND] = ACTIONS(2963), - [anon_sym_asm] = ACTIONS(2963), - [anon_sym_AT_LBRACK] = ACTIONS(2963), - [sym___double_quote] = ACTIONS(2963), - [sym___single_quote] = ACTIONS(2963), - [sym___c_double_quote] = ACTIONS(2963), - [sym___c_single_quote] = ACTIONS(2963), - [sym___r_double_quote] = ACTIONS(2963), - [sym___r_single_quote] = ACTIONS(2963), - }, - [1047] = { - [ts_builtin_sym_end] = ACTIONS(3151), - [sym_identifier] = ACTIONS(3153), - [anon_sym_LF] = ACTIONS(3153), - [anon_sym_CR] = ACTIONS(3153), - [anon_sym_CR_LF] = ACTIONS(3153), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_as] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_COMMA] = ACTIONS(3153), - [anon_sym_const] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym___global] = ACTIONS(3153), - [anon_sym_type] = ACTIONS(3153), - [anon_sym_PIPE] = ACTIONS(3153), - [anon_sym_fn] = ACTIONS(3153), - [anon_sym_PLUS] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3153), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_SLASH] = ACTIONS(3153), - [anon_sym_PERCENT] = ACTIONS(3153), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3153), - [anon_sym_EQ_EQ] = ACTIONS(3153), - [anon_sym_BANG_EQ] = ACTIONS(3153), - [anon_sym_LT_EQ] = ACTIONS(3153), - [anon_sym_GT_EQ] = ACTIONS(3153), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_struct] = ACTIONS(3153), - [anon_sym_union] = ACTIONS(3153), - [anon_sym_pub] = ACTIONS(3153), - [anon_sym_mut] = ACTIONS(3153), - [anon_sym_enum] = ACTIONS(3153), - [anon_sym_interface] = ACTIONS(3153), - [anon_sym_PLUS_PLUS] = ACTIONS(3153), - [anon_sym_DASH_DASH] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_go] = ACTIONS(3153), - [anon_sym_spawn] = ACTIONS(3153), - [anon_sym_json_DOTdecode] = ACTIONS(3153), - [anon_sym_LBRACK2] = ACTIONS(3153), - [anon_sym_TILDE] = ACTIONS(3153), - [anon_sym_CARET] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3153), - [anon_sym_LT_DASH] = ACTIONS(3153), - [anon_sym_LT_LT] = ACTIONS(3153), - [anon_sym_GT_GT] = ACTIONS(3153), - [anon_sym_GT_GT_GT] = ACTIONS(3153), - [anon_sym_AMP_CARET] = ACTIONS(3153), - [anon_sym_AMP_AMP] = ACTIONS(3153), - [anon_sym_PIPE_PIPE] = ACTIONS(3153), - [anon_sym_or] = ACTIONS(3153), - [sym_none] = ACTIONS(3153), - [sym_true] = ACTIONS(3153), - [sym_false] = ACTIONS(3153), - [sym_nil] = ACTIONS(3153), - [anon_sym_QMARK_DOT] = ACTIONS(3153), - [anon_sym_POUND_LBRACK] = ACTIONS(3153), - [anon_sym_if] = ACTIONS(3153), - [anon_sym_DOLLARif] = ACTIONS(3153), - [anon_sym_is] = ACTIONS(3153), - [anon_sym_BANGis] = ACTIONS(3153), - [anon_sym_in] = ACTIONS(3153), - [anon_sym_BANGin] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(3153), - [anon_sym_select] = ACTIONS(3153), - [anon_sym_lock] = ACTIONS(3153), - [anon_sym_rlock] = ACTIONS(3153), - [anon_sym_unsafe] = ACTIONS(3153), - [anon_sym_sql] = ACTIONS(3153), - [sym_int_literal] = ACTIONS(3153), - [sym_float_literal] = ACTIONS(3153), - [sym_rune_literal] = ACTIONS(3153), - [anon_sym_AT] = ACTIONS(3153), - [anon_sym_shared] = ACTIONS(3153), - [anon_sym_map_LBRACK] = ACTIONS(3153), - [anon_sym_chan] = ACTIONS(3153), - [anon_sym_thread] = ACTIONS(3153), - [anon_sym_atomic] = ACTIONS(3153), - [anon_sym_assert] = ACTIONS(3153), - [anon_sym_defer] = ACTIONS(3153), - [anon_sym_goto] = ACTIONS(3153), - [anon_sym_break] = ACTIONS(3153), - [anon_sym_continue] = ACTIONS(3153), - [anon_sym_return] = ACTIONS(3153), - [anon_sym_DOLLARfor] = ACTIONS(3153), - [anon_sym_for] = ACTIONS(3153), - [anon_sym_POUND] = ACTIONS(3153), - [anon_sym_asm] = ACTIONS(3153), - [anon_sym_AT_LBRACK] = ACTIONS(3153), - [sym___double_quote] = ACTIONS(3153), - [sym___single_quote] = ACTIONS(3153), - [sym___c_double_quote] = ACTIONS(3153), - [sym___c_single_quote] = ACTIONS(3153), - [sym___r_double_quote] = ACTIONS(3153), - [sym___r_single_quote] = ACTIONS(3153), + [ts_builtin_sym_end] = ACTIONS(2868), + [sym_identifier] = ACTIONS(2870), + [anon_sym_LF] = ACTIONS(2870), + [anon_sym_CR] = ACTIONS(2870), + [anon_sym_CR_LF] = ACTIONS(2870), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2870), + [anon_sym_as] = ACTIONS(2870), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_COMMA] = ACTIONS(2870), + [anon_sym_const] = ACTIONS(2870), + [anon_sym_LPAREN] = ACTIONS(2870), + [anon_sym___global] = ACTIONS(2870), + [anon_sym_type] = ACTIONS(2870), + [anon_sym_PIPE] = ACTIONS(2870), + [anon_sym_fn] = ACTIONS(2870), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_SLASH] = ACTIONS(2870), + [anon_sym_PERCENT] = ACTIONS(2870), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_GT] = ACTIONS(2870), + [anon_sym_EQ_EQ] = ACTIONS(2870), + [anon_sym_BANG_EQ] = ACTIONS(2870), + [anon_sym_LT_EQ] = ACTIONS(2870), + [anon_sym_GT_EQ] = ACTIONS(2870), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2870), + [anon_sym_union] = ACTIONS(2870), + [anon_sym_pub] = ACTIONS(2870), + [anon_sym_mut] = ACTIONS(2870), + [anon_sym_enum] = ACTIONS(2870), + [anon_sym_interface] = ACTIONS(2870), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_QMARK] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_go] = ACTIONS(2870), + [anon_sym_spawn] = ACTIONS(2870), + [anon_sym_json_DOTdecode] = ACTIONS(2870), + [anon_sym_LBRACK2] = ACTIONS(2870), + [anon_sym_TILDE] = ACTIONS(2870), + [anon_sym_CARET] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2870), + [anon_sym_LT_DASH] = ACTIONS(2870), + [anon_sym_LT_LT] = ACTIONS(2870), + [anon_sym_GT_GT] = ACTIONS(2870), + [anon_sym_GT_GT_GT] = ACTIONS(2870), + [anon_sym_AMP_CARET] = ACTIONS(2870), + [anon_sym_AMP_AMP] = ACTIONS(2870), + [anon_sym_PIPE_PIPE] = ACTIONS(2870), + [anon_sym_or] = ACTIONS(2870), + [sym_none] = ACTIONS(2870), + [sym_true] = ACTIONS(2870), + [sym_false] = ACTIONS(2870), + [sym_nil] = ACTIONS(2870), + [anon_sym_QMARK_DOT] = ACTIONS(2870), + [anon_sym_POUND_LBRACK] = ACTIONS(2870), + [anon_sym_if] = ACTIONS(2870), + [anon_sym_DOLLARif] = ACTIONS(2870), + [anon_sym_is] = ACTIONS(2870), + [anon_sym_BANGis] = ACTIONS(2870), + [anon_sym_in] = ACTIONS(2870), + [anon_sym_BANGin] = ACTIONS(2870), + [anon_sym_match] = ACTIONS(2870), + [anon_sym_select] = ACTIONS(2870), + [anon_sym_lock] = ACTIONS(2870), + [anon_sym_rlock] = ACTIONS(2870), + [anon_sym_unsafe] = ACTIONS(2870), + [anon_sym_sql] = ACTIONS(2870), + [sym_int_literal] = ACTIONS(2870), + [sym_float_literal] = ACTIONS(2870), + [sym_rune_literal] = ACTIONS(2870), + [anon_sym_AT] = ACTIONS(2870), + [anon_sym_shared] = ACTIONS(2870), + [anon_sym_map_LBRACK] = ACTIONS(2870), + [anon_sym_chan] = ACTIONS(2870), + [anon_sym_thread] = ACTIONS(2870), + [anon_sym_atomic] = ACTIONS(2870), + [anon_sym_assert] = ACTIONS(2870), + [anon_sym_defer] = ACTIONS(2870), + [anon_sym_goto] = ACTIONS(2870), + [anon_sym_break] = ACTIONS(2870), + [anon_sym_continue] = ACTIONS(2870), + [anon_sym_return] = ACTIONS(2870), + [anon_sym_DOLLARfor] = ACTIONS(2870), + [anon_sym_for] = ACTIONS(2870), + [anon_sym_POUND] = ACTIONS(2870), + [anon_sym_asm] = ACTIONS(2870), + [anon_sym_AT_LBRACK] = ACTIONS(2870), + [sym___double_quote] = ACTIONS(2870), + [sym___single_quote] = ACTIONS(2870), + [sym___c_double_quote] = ACTIONS(2870), + [sym___c_single_quote] = ACTIONS(2870), + [sym___r_double_quote] = ACTIONS(2870), + [sym___r_single_quote] = ACTIONS(2870), + }, + [1047] = { + [ts_builtin_sym_end] = ACTIONS(2932), + [sym_identifier] = ACTIONS(2934), + [anon_sym_LF] = ACTIONS(2934), + [anon_sym_CR] = ACTIONS(2934), + [anon_sym_CR_LF] = ACTIONS(2934), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2934), + [anon_sym_as] = ACTIONS(2934), + [anon_sym_LBRACE] = ACTIONS(2934), + [anon_sym_COMMA] = ACTIONS(2934), + [anon_sym_const] = ACTIONS(2934), + [anon_sym_LPAREN] = ACTIONS(2934), + [anon_sym___global] = ACTIONS(2934), + [anon_sym_type] = ACTIONS(2934), + [anon_sym_PIPE] = ACTIONS(2934), + [anon_sym_fn] = ACTIONS(2934), + [anon_sym_PLUS] = ACTIONS(2934), + [anon_sym_DASH] = ACTIONS(2934), + [anon_sym_STAR] = ACTIONS(2934), + [anon_sym_SLASH] = ACTIONS(2934), + [anon_sym_PERCENT] = ACTIONS(2934), + [anon_sym_LT] = ACTIONS(2934), + [anon_sym_GT] = ACTIONS(2934), + [anon_sym_EQ_EQ] = ACTIONS(2934), + [anon_sym_BANG_EQ] = ACTIONS(2934), + [anon_sym_LT_EQ] = ACTIONS(2934), + [anon_sym_GT_EQ] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2932), + [anon_sym_struct] = ACTIONS(2934), + [anon_sym_union] = ACTIONS(2934), + [anon_sym_pub] = ACTIONS(2934), + [anon_sym_mut] = ACTIONS(2934), + [anon_sym_enum] = ACTIONS(2934), + [anon_sym_interface] = ACTIONS(2934), + [anon_sym_PLUS_PLUS] = ACTIONS(2934), + [anon_sym_DASH_DASH] = ACTIONS(2934), + [anon_sym_QMARK] = ACTIONS(2934), + [anon_sym_BANG] = ACTIONS(2934), + [anon_sym_go] = ACTIONS(2934), + [anon_sym_spawn] = ACTIONS(2934), + [anon_sym_json_DOTdecode] = ACTIONS(2934), + [anon_sym_LBRACK2] = ACTIONS(2934), + [anon_sym_TILDE] = ACTIONS(2934), + [anon_sym_CARET] = ACTIONS(2934), + [anon_sym_AMP] = ACTIONS(2934), + [anon_sym_LT_DASH] = ACTIONS(2934), + [anon_sym_LT_LT] = ACTIONS(2934), + [anon_sym_GT_GT] = ACTIONS(2934), + [anon_sym_GT_GT_GT] = ACTIONS(2934), + [anon_sym_AMP_CARET] = ACTIONS(2934), + [anon_sym_AMP_AMP] = ACTIONS(2934), + [anon_sym_PIPE_PIPE] = ACTIONS(2934), + [anon_sym_or] = ACTIONS(2934), + [sym_none] = ACTIONS(2934), + [sym_true] = ACTIONS(2934), + [sym_false] = ACTIONS(2934), + [sym_nil] = ACTIONS(2934), + [anon_sym_QMARK_DOT] = ACTIONS(2934), + [anon_sym_POUND_LBRACK] = ACTIONS(2934), + [anon_sym_if] = ACTIONS(2934), + [anon_sym_DOLLARif] = ACTIONS(2934), + [anon_sym_is] = ACTIONS(2934), + [anon_sym_BANGis] = ACTIONS(2934), + [anon_sym_in] = ACTIONS(2934), + [anon_sym_BANGin] = ACTIONS(2934), + [anon_sym_match] = ACTIONS(2934), + [anon_sym_select] = ACTIONS(2934), + [anon_sym_lock] = ACTIONS(2934), + [anon_sym_rlock] = ACTIONS(2934), + [anon_sym_unsafe] = ACTIONS(2934), + [anon_sym_sql] = ACTIONS(2934), + [sym_int_literal] = ACTIONS(2934), + [sym_float_literal] = ACTIONS(2934), + [sym_rune_literal] = ACTIONS(2934), + [anon_sym_AT] = ACTIONS(2934), + [anon_sym_shared] = ACTIONS(2934), + [anon_sym_map_LBRACK] = ACTIONS(2934), + [anon_sym_chan] = ACTIONS(2934), + [anon_sym_thread] = ACTIONS(2934), + [anon_sym_atomic] = ACTIONS(2934), + [anon_sym_assert] = ACTIONS(2934), + [anon_sym_defer] = ACTIONS(2934), + [anon_sym_goto] = ACTIONS(2934), + [anon_sym_break] = ACTIONS(2934), + [anon_sym_continue] = ACTIONS(2934), + [anon_sym_return] = ACTIONS(2934), + [anon_sym_DOLLARfor] = ACTIONS(2934), + [anon_sym_for] = ACTIONS(2934), + [anon_sym_POUND] = ACTIONS(2934), + [anon_sym_asm] = ACTIONS(2934), + [anon_sym_AT_LBRACK] = ACTIONS(2934), + [sym___double_quote] = ACTIONS(2934), + [sym___single_quote] = ACTIONS(2934), + [sym___c_double_quote] = ACTIONS(2934), + [sym___c_single_quote] = ACTIONS(2934), + [sym___r_double_quote] = ACTIONS(2934), + [sym___r_single_quote] = ACTIONS(2934), }, [1048] = { - [ts_builtin_sym_end] = ACTIONS(3159), - [sym_identifier] = ACTIONS(3161), - [anon_sym_LF] = ACTIONS(3161), - [anon_sym_CR] = ACTIONS(3161), - [anon_sym_CR_LF] = ACTIONS(3161), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3161), - [anon_sym_as] = ACTIONS(3161), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_COMMA] = ACTIONS(3161), - [anon_sym_const] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym___global] = ACTIONS(3161), - [anon_sym_type] = ACTIONS(3161), - [anon_sym_PIPE] = ACTIONS(3161), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_SLASH] = ACTIONS(3161), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(3161), - [anon_sym_GT] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_struct] = ACTIONS(3161), - [anon_sym_union] = ACTIONS(3161), - [anon_sym_pub] = ACTIONS(3161), - [anon_sym_mut] = ACTIONS(3161), - [anon_sym_enum] = ACTIONS(3161), - [anon_sym_interface] = ACTIONS(3161), - [anon_sym_PLUS_PLUS] = ACTIONS(3161), - [anon_sym_DASH_DASH] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(3161), - [anon_sym_go] = ACTIONS(3161), - [anon_sym_spawn] = ACTIONS(3161), - [anon_sym_json_DOTdecode] = ACTIONS(3161), - [anon_sym_LBRACK2] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_CARET] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_LT_DASH] = ACTIONS(3161), - [anon_sym_LT_LT] = ACTIONS(3161), - [anon_sym_GT_GT] = ACTIONS(3161), - [anon_sym_GT_GT_GT] = ACTIONS(3161), - [anon_sym_AMP_CARET] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_or] = ACTIONS(3161), - [sym_none] = ACTIONS(3161), - [sym_true] = ACTIONS(3161), - [sym_false] = ACTIONS(3161), - [sym_nil] = ACTIONS(3161), - [anon_sym_QMARK_DOT] = ACTIONS(3161), - [anon_sym_POUND_LBRACK] = ACTIONS(3161), - [anon_sym_if] = ACTIONS(3161), - [anon_sym_DOLLARif] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3161), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_in] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_match] = ACTIONS(3161), - [anon_sym_select] = ACTIONS(3161), - [anon_sym_lock] = ACTIONS(3161), - [anon_sym_rlock] = ACTIONS(3161), - [anon_sym_unsafe] = ACTIONS(3161), - [anon_sym_sql] = ACTIONS(3161), - [sym_int_literal] = ACTIONS(3161), - [sym_float_literal] = ACTIONS(3161), - [sym_rune_literal] = ACTIONS(3161), - [anon_sym_AT] = ACTIONS(3161), - [anon_sym_shared] = ACTIONS(3161), - [anon_sym_map_LBRACK] = ACTIONS(3161), - [anon_sym_chan] = ACTIONS(3161), - [anon_sym_thread] = ACTIONS(3161), - [anon_sym_atomic] = ACTIONS(3161), - [anon_sym_assert] = ACTIONS(3161), - [anon_sym_defer] = ACTIONS(3161), - [anon_sym_goto] = ACTIONS(3161), - [anon_sym_break] = ACTIONS(3161), - [anon_sym_continue] = ACTIONS(3161), - [anon_sym_return] = ACTIONS(3161), - [anon_sym_DOLLARfor] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(3161), - [anon_sym_POUND] = ACTIONS(3161), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym_AT_LBRACK] = ACTIONS(3161), - [sym___double_quote] = ACTIONS(3161), - [sym___single_quote] = ACTIONS(3161), - [sym___c_double_quote] = ACTIONS(3161), - [sym___c_single_quote] = ACTIONS(3161), - [sym___r_double_quote] = ACTIONS(3161), - [sym___r_single_quote] = ACTIONS(3161), + [ts_builtin_sym_end] = ACTIONS(2960), + [sym_identifier] = ACTIONS(2962), + [anon_sym_LF] = ACTIONS(2962), + [anon_sym_CR] = ACTIONS(2962), + [anon_sym_CR_LF] = ACTIONS(2962), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2962), + [anon_sym_as] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_COMMA] = ACTIONS(2962), + [anon_sym_const] = ACTIONS(2962), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym___global] = ACTIONS(2962), + [anon_sym_type] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(2962), + [anon_sym_fn] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_SLASH] = ACTIONS(2962), + [anon_sym_PERCENT] = ACTIONS(2962), + [anon_sym_LT] = ACTIONS(2962), + [anon_sym_GT] = ACTIONS(2962), + [anon_sym_EQ_EQ] = ACTIONS(2962), + [anon_sym_BANG_EQ] = ACTIONS(2962), + [anon_sym_LT_EQ] = ACTIONS(2962), + [anon_sym_GT_EQ] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2960), + [anon_sym_struct] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_pub] = ACTIONS(2962), + [anon_sym_mut] = ACTIONS(2962), + [anon_sym_enum] = ACTIONS(2962), + [anon_sym_interface] = ACTIONS(2962), + [anon_sym_PLUS_PLUS] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(2962), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_go] = ACTIONS(2962), + [anon_sym_spawn] = ACTIONS(2962), + [anon_sym_json_DOTdecode] = ACTIONS(2962), + [anon_sym_LBRACK2] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_CARET] = ACTIONS(2962), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_LT_DASH] = ACTIONS(2962), + [anon_sym_LT_LT] = ACTIONS(2962), + [anon_sym_GT_GT] = ACTIONS(2962), + [anon_sym_GT_GT_GT] = ACTIONS(2962), + [anon_sym_AMP_CARET] = ACTIONS(2962), + [anon_sym_AMP_AMP] = ACTIONS(2962), + [anon_sym_PIPE_PIPE] = ACTIONS(2962), + [anon_sym_or] = ACTIONS(2962), + [sym_none] = ACTIONS(2962), + [sym_true] = ACTIONS(2962), + [sym_false] = ACTIONS(2962), + [sym_nil] = ACTIONS(2962), + [anon_sym_QMARK_DOT] = ACTIONS(2962), + [anon_sym_POUND_LBRACK] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_DOLLARif] = ACTIONS(2962), + [anon_sym_is] = ACTIONS(2962), + [anon_sym_BANGis] = ACTIONS(2962), + [anon_sym_in] = ACTIONS(2962), + [anon_sym_BANGin] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_select] = ACTIONS(2962), + [anon_sym_lock] = ACTIONS(2962), + [anon_sym_rlock] = ACTIONS(2962), + [anon_sym_unsafe] = ACTIONS(2962), + [anon_sym_sql] = ACTIONS(2962), + [sym_int_literal] = ACTIONS(2962), + [sym_float_literal] = ACTIONS(2962), + [sym_rune_literal] = ACTIONS(2962), + [anon_sym_AT] = ACTIONS(2962), + [anon_sym_shared] = ACTIONS(2962), + [anon_sym_map_LBRACK] = ACTIONS(2962), + [anon_sym_chan] = ACTIONS(2962), + [anon_sym_thread] = ACTIONS(2962), + [anon_sym_atomic] = ACTIONS(2962), + [anon_sym_assert] = ACTIONS(2962), + [anon_sym_defer] = ACTIONS(2962), + [anon_sym_goto] = ACTIONS(2962), + [anon_sym_break] = ACTIONS(2962), + [anon_sym_continue] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_DOLLARfor] = ACTIONS(2962), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_POUND] = ACTIONS(2962), + [anon_sym_asm] = ACTIONS(2962), + [anon_sym_AT_LBRACK] = ACTIONS(2962), + [sym___double_quote] = ACTIONS(2962), + [sym___single_quote] = ACTIONS(2962), + [sym___c_double_quote] = ACTIONS(2962), + [sym___c_single_quote] = ACTIONS(2962), + [sym___r_double_quote] = ACTIONS(2962), + [sym___r_single_quote] = ACTIONS(2962), }, [1049] = { - [ts_builtin_sym_end] = ACTIONS(2810), - [sym_identifier] = ACTIONS(2812), - [anon_sym_LF] = ACTIONS(2812), - [anon_sym_CR] = ACTIONS(2812), - [anon_sym_CR_LF] = ACTIONS(2812), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2812), - [anon_sym_as] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2812), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_const] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2812), - [anon_sym___global] = ACTIONS(2812), - [anon_sym_type] = ACTIONS(2812), - [anon_sym_PIPE] = ACTIONS(2812), - [anon_sym_fn] = ACTIONS(2812), - [anon_sym_PLUS] = ACTIONS(2812), - [anon_sym_DASH] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(2812), - [anon_sym_SLASH] = ACTIONS(2812), - [anon_sym_PERCENT] = ACTIONS(2812), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_GT] = ACTIONS(2812), - [anon_sym_EQ_EQ] = ACTIONS(2812), - [anon_sym_BANG_EQ] = ACTIONS(2812), - [anon_sym_LT_EQ] = ACTIONS(2812), - [anon_sym_GT_EQ] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_struct] = ACTIONS(2812), - [anon_sym_union] = ACTIONS(2812), - [anon_sym_pub] = ACTIONS(2812), - [anon_sym_mut] = ACTIONS(2812), - [anon_sym_enum] = ACTIONS(2812), - [anon_sym_interface] = ACTIONS(2812), - [anon_sym_PLUS_PLUS] = ACTIONS(2812), - [anon_sym_DASH_DASH] = ACTIONS(2812), - [anon_sym_QMARK] = ACTIONS(2812), - [anon_sym_BANG] = ACTIONS(2812), - [anon_sym_go] = ACTIONS(2812), - [anon_sym_spawn] = ACTIONS(2812), - [anon_sym_json_DOTdecode] = ACTIONS(2812), - [anon_sym_LBRACK2] = ACTIONS(2812), - [anon_sym_TILDE] = ACTIONS(2812), - [anon_sym_CARET] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2812), - [anon_sym_LT_DASH] = ACTIONS(2812), - [anon_sym_LT_LT] = ACTIONS(2812), - [anon_sym_GT_GT] = ACTIONS(2812), - [anon_sym_GT_GT_GT] = ACTIONS(2812), - [anon_sym_AMP_CARET] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2812), - [anon_sym_PIPE_PIPE] = ACTIONS(2812), - [anon_sym_or] = ACTIONS(2812), - [sym_none] = ACTIONS(2812), - [sym_true] = ACTIONS(2812), - [sym_false] = ACTIONS(2812), - [sym_nil] = ACTIONS(2812), - [anon_sym_QMARK_DOT] = ACTIONS(2812), - [anon_sym_POUND_LBRACK] = ACTIONS(2812), - [anon_sym_if] = ACTIONS(2812), - [anon_sym_DOLLARif] = ACTIONS(2812), - [anon_sym_is] = ACTIONS(2812), - [anon_sym_BANGis] = ACTIONS(2812), - [anon_sym_in] = ACTIONS(2812), - [anon_sym_BANGin] = ACTIONS(2812), - [anon_sym_match] = ACTIONS(2812), - [anon_sym_select] = ACTIONS(2812), - [anon_sym_lock] = ACTIONS(2812), - [anon_sym_rlock] = ACTIONS(2812), - [anon_sym_unsafe] = ACTIONS(2812), - [anon_sym_sql] = ACTIONS(2812), - [sym_int_literal] = ACTIONS(2812), - [sym_float_literal] = ACTIONS(2812), - [sym_rune_literal] = ACTIONS(2812), - [anon_sym_AT] = ACTIONS(2812), - [anon_sym_shared] = ACTIONS(2812), - [anon_sym_map_LBRACK] = ACTIONS(2812), - [anon_sym_chan] = ACTIONS(2812), - [anon_sym_thread] = ACTIONS(2812), - [anon_sym_atomic] = ACTIONS(2812), - [anon_sym_assert] = ACTIONS(2812), - [anon_sym_defer] = ACTIONS(2812), - [anon_sym_goto] = ACTIONS(2812), - [anon_sym_break] = ACTIONS(2812), - [anon_sym_continue] = ACTIONS(2812), - [anon_sym_return] = ACTIONS(2812), - [anon_sym_DOLLARfor] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2812), - [anon_sym_POUND] = ACTIONS(2812), - [anon_sym_asm] = ACTIONS(2812), - [anon_sym_AT_LBRACK] = ACTIONS(2812), - [sym___double_quote] = ACTIONS(2812), - [sym___single_quote] = ACTIONS(2812), - [sym___c_double_quote] = ACTIONS(2812), - [sym___c_single_quote] = ACTIONS(2812), - [sym___r_double_quote] = ACTIONS(2812), - [sym___r_single_quote] = ACTIONS(2812), + [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), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3022), + [sym___single_quote] = ACTIONS(3022), + [sym___c_double_quote] = ACTIONS(3022), + [sym___c_single_quote] = ACTIONS(3022), + [sym___r_double_quote] = ACTIONS(3022), + [sym___r_single_quote] = ACTIONS(3022), }, [1050] = { - [ts_builtin_sym_end] = ACTIONS(3187), - [sym_identifier] = ACTIONS(3189), - [anon_sym_LF] = ACTIONS(3189), - [anon_sym_CR] = ACTIONS(3189), - [anon_sym_CR_LF] = ACTIONS(3189), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_as] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3189), - [anon_sym_const] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym___global] = ACTIONS(3189), - [anon_sym_type] = ACTIONS(3189), - [anon_sym_PIPE] = ACTIONS(3189), - [anon_sym_fn] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_SLASH] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3189), - [anon_sym_GT] = ACTIONS(3189), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3187), - [anon_sym_struct] = ACTIONS(3189), - [anon_sym_union] = ACTIONS(3189), - [anon_sym_pub] = ACTIONS(3189), - [anon_sym_mut] = ACTIONS(3189), - [anon_sym_enum] = ACTIONS(3189), - [anon_sym_interface] = ACTIONS(3189), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3189), - [anon_sym_go] = ACTIONS(3189), - [anon_sym_spawn] = ACTIONS(3189), - [anon_sym_json_DOTdecode] = ACTIONS(3189), - [anon_sym_LBRACK2] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3189), - [anon_sym_CARET] = ACTIONS(3189), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_LT_LT] = ACTIONS(3189), - [anon_sym_GT_GT] = ACTIONS(3189), - [anon_sym_GT_GT_GT] = ACTIONS(3189), - [anon_sym_AMP_CARET] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3189), - [sym_none] = ACTIONS(3189), - [sym_true] = ACTIONS(3189), - [sym_false] = ACTIONS(3189), - [sym_nil] = ACTIONS(3189), - [anon_sym_QMARK_DOT] = ACTIONS(3189), - [anon_sym_POUND_LBRACK] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_DOLLARif] = ACTIONS(3189), - [anon_sym_is] = ACTIONS(3189), - [anon_sym_BANGis] = ACTIONS(3189), - [anon_sym_in] = ACTIONS(3189), - [anon_sym_BANGin] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_select] = ACTIONS(3189), - [anon_sym_lock] = ACTIONS(3189), - [anon_sym_rlock] = ACTIONS(3189), - [anon_sym_unsafe] = ACTIONS(3189), - [anon_sym_sql] = ACTIONS(3189), - [sym_int_literal] = ACTIONS(3189), - [sym_float_literal] = ACTIONS(3189), - [sym_rune_literal] = ACTIONS(3189), - [anon_sym_AT] = ACTIONS(3189), - [anon_sym_shared] = ACTIONS(3189), - [anon_sym_map_LBRACK] = ACTIONS(3189), - [anon_sym_chan] = ACTIONS(3189), - [anon_sym_thread] = ACTIONS(3189), - [anon_sym_atomic] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_defer] = ACTIONS(3189), - [anon_sym_goto] = ACTIONS(3189), - [anon_sym_break] = ACTIONS(3189), - [anon_sym_continue] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_DOLLARfor] = ACTIONS(3189), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_POUND] = ACTIONS(3189), - [anon_sym_asm] = ACTIONS(3189), - [anon_sym_AT_LBRACK] = ACTIONS(3189), - [sym___double_quote] = ACTIONS(3189), - [sym___single_quote] = ACTIONS(3189), - [sym___c_double_quote] = ACTIONS(3189), - [sym___c_single_quote] = ACTIONS(3189), - [sym___r_double_quote] = ACTIONS(3189), - [sym___r_single_quote] = ACTIONS(3189), + [ts_builtin_sym_end] = ACTIONS(3185), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LF] = ACTIONS(3187), + [anon_sym_CR] = ACTIONS(3187), + [anon_sym_CR_LF] = ACTIONS(3187), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3187), + [anon_sym_as] = ACTIONS(3187), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_COMMA] = ACTIONS(3187), + [anon_sym_const] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3187), + [anon_sym___global] = ACTIONS(3187), + [anon_sym_type] = ACTIONS(3187), + [anon_sym_PIPE] = ACTIONS(3187), + [anon_sym_fn] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [anon_sym_STAR] = ACTIONS(3187), + [anon_sym_SLASH] = ACTIONS(3187), + [anon_sym_PERCENT] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_GT] = ACTIONS(3187), + [anon_sym_EQ_EQ] = ACTIONS(3187), + [anon_sym_BANG_EQ] = ACTIONS(3187), + [anon_sym_LT_EQ] = ACTIONS(3187), + [anon_sym_GT_EQ] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3185), + [anon_sym_struct] = ACTIONS(3187), + [anon_sym_union] = ACTIONS(3187), + [anon_sym_pub] = ACTIONS(3187), + [anon_sym_mut] = ACTIONS(3187), + [anon_sym_enum] = ACTIONS(3187), + [anon_sym_interface] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3187), + [anon_sym_DASH_DASH] = ACTIONS(3187), + [anon_sym_QMARK] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_go] = ACTIONS(3187), + [anon_sym_spawn] = ACTIONS(3187), + [anon_sym_json_DOTdecode] = ACTIONS(3187), + [anon_sym_LBRACK2] = ACTIONS(3187), + [anon_sym_TILDE] = ACTIONS(3187), + [anon_sym_CARET] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_LT_DASH] = ACTIONS(3187), + [anon_sym_LT_LT] = ACTIONS(3187), + [anon_sym_GT_GT] = ACTIONS(3187), + [anon_sym_GT_GT_GT] = ACTIONS(3187), + [anon_sym_AMP_CARET] = ACTIONS(3187), + [anon_sym_AMP_AMP] = ACTIONS(3187), + [anon_sym_PIPE_PIPE] = ACTIONS(3187), + [anon_sym_or] = ACTIONS(3187), + [sym_none] = ACTIONS(3187), + [sym_true] = ACTIONS(3187), + [sym_false] = ACTIONS(3187), + [sym_nil] = ACTIONS(3187), + [anon_sym_QMARK_DOT] = ACTIONS(3187), + [anon_sym_POUND_LBRACK] = ACTIONS(3187), + [anon_sym_if] = ACTIONS(3187), + [anon_sym_DOLLARif] = ACTIONS(3187), + [anon_sym_is] = ACTIONS(3187), + [anon_sym_BANGis] = ACTIONS(3187), + [anon_sym_in] = ACTIONS(3187), + [anon_sym_BANGin] = ACTIONS(3187), + [anon_sym_match] = ACTIONS(3187), + [anon_sym_select] = ACTIONS(3187), + [anon_sym_lock] = ACTIONS(3187), + [anon_sym_rlock] = ACTIONS(3187), + [anon_sym_unsafe] = ACTIONS(3187), + [anon_sym_sql] = ACTIONS(3187), + [sym_int_literal] = ACTIONS(3187), + [sym_float_literal] = ACTIONS(3187), + [sym_rune_literal] = ACTIONS(3187), + [anon_sym_AT] = ACTIONS(3187), + [anon_sym_shared] = ACTIONS(3187), + [anon_sym_map_LBRACK] = ACTIONS(3187), + [anon_sym_chan] = ACTIONS(3187), + [anon_sym_thread] = ACTIONS(3187), + [anon_sym_atomic] = ACTIONS(3187), + [anon_sym_assert] = ACTIONS(3187), + [anon_sym_defer] = ACTIONS(3187), + [anon_sym_goto] = ACTIONS(3187), + [anon_sym_break] = ACTIONS(3187), + [anon_sym_continue] = ACTIONS(3187), + [anon_sym_return] = ACTIONS(3187), + [anon_sym_DOLLARfor] = ACTIONS(3187), + [anon_sym_for] = ACTIONS(3187), + [anon_sym_POUND] = ACTIONS(3187), + [anon_sym_asm] = ACTIONS(3187), + [anon_sym_AT_LBRACK] = ACTIONS(3187), + [sym___double_quote] = ACTIONS(3187), + [sym___single_quote] = ACTIONS(3187), + [sym___c_double_quote] = ACTIONS(3187), + [sym___c_single_quote] = ACTIONS(3187), + [sym___r_double_quote] = ACTIONS(3187), + [sym___r_single_quote] = ACTIONS(3187), }, [1051] = { - [ts_builtin_sym_end] = ACTIONS(3183), - [sym_identifier] = ACTIONS(3185), - [anon_sym_LF] = ACTIONS(3185), - [anon_sym_CR] = ACTIONS(3185), - [anon_sym_CR_LF] = ACTIONS(3185), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3185), - [anon_sym_as] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_COMMA] = ACTIONS(3185), - [anon_sym_const] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym___global] = ACTIONS(3185), - [anon_sym_type] = ACTIONS(3185), - [anon_sym_PIPE] = ACTIONS(3185), - [anon_sym_fn] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_SLASH] = ACTIONS(3185), - [anon_sym_PERCENT] = ACTIONS(3185), - [anon_sym_LT] = ACTIONS(3185), - [anon_sym_GT] = ACTIONS(3185), - [anon_sym_EQ_EQ] = ACTIONS(3185), - [anon_sym_BANG_EQ] = ACTIONS(3185), - [anon_sym_LT_EQ] = ACTIONS(3185), - [anon_sym_GT_EQ] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3183), - [anon_sym_struct] = ACTIONS(3185), - [anon_sym_union] = ACTIONS(3185), - [anon_sym_pub] = ACTIONS(3185), - [anon_sym_mut] = ACTIONS(3185), - [anon_sym_enum] = ACTIONS(3185), - [anon_sym_interface] = ACTIONS(3185), - [anon_sym_PLUS_PLUS] = ACTIONS(3185), - [anon_sym_DASH_DASH] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_go] = ACTIONS(3185), - [anon_sym_spawn] = ACTIONS(3185), - [anon_sym_json_DOTdecode] = ACTIONS(3185), - [anon_sym_LBRACK2] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_CARET] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_LT_DASH] = ACTIONS(3185), - [anon_sym_LT_LT] = ACTIONS(3185), - [anon_sym_GT_GT] = ACTIONS(3185), - [anon_sym_GT_GT_GT] = ACTIONS(3185), - [anon_sym_AMP_CARET] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_PIPE_PIPE] = ACTIONS(3185), - [anon_sym_or] = ACTIONS(3185), - [sym_none] = ACTIONS(3185), - [sym_true] = ACTIONS(3185), - [sym_false] = ACTIONS(3185), - [sym_nil] = ACTIONS(3185), - [anon_sym_QMARK_DOT] = ACTIONS(3185), - [anon_sym_POUND_LBRACK] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_DOLLARif] = ACTIONS(3185), - [anon_sym_is] = ACTIONS(3185), - [anon_sym_BANGis] = ACTIONS(3185), - [anon_sym_in] = ACTIONS(3185), - [anon_sym_BANGin] = ACTIONS(3185), - [anon_sym_match] = ACTIONS(3185), - [anon_sym_select] = ACTIONS(3185), - [anon_sym_lock] = ACTIONS(3185), - [anon_sym_rlock] = ACTIONS(3185), - [anon_sym_unsafe] = ACTIONS(3185), - [anon_sym_sql] = ACTIONS(3185), - [sym_int_literal] = ACTIONS(3185), - [sym_float_literal] = ACTIONS(3185), - [sym_rune_literal] = ACTIONS(3185), - [anon_sym_AT] = ACTIONS(3185), - [anon_sym_shared] = ACTIONS(3185), - [anon_sym_map_LBRACK] = ACTIONS(3185), - [anon_sym_chan] = ACTIONS(3185), - [anon_sym_thread] = ACTIONS(3185), - [anon_sym_atomic] = ACTIONS(3185), - [anon_sym_assert] = ACTIONS(3185), - [anon_sym_defer] = ACTIONS(3185), - [anon_sym_goto] = ACTIONS(3185), - [anon_sym_break] = ACTIONS(3185), - [anon_sym_continue] = ACTIONS(3185), - [anon_sym_return] = ACTIONS(3185), - [anon_sym_DOLLARfor] = ACTIONS(3185), - [anon_sym_for] = ACTIONS(3185), - [anon_sym_POUND] = ACTIONS(3185), - [anon_sym_asm] = ACTIONS(3185), - [anon_sym_AT_LBRACK] = ACTIONS(3185), - [sym___double_quote] = ACTIONS(3185), - [sym___single_quote] = ACTIONS(3185), - [sym___c_double_quote] = ACTIONS(3185), - [sym___c_single_quote] = ACTIONS(3185), - [sym___r_double_quote] = ACTIONS(3185), - [sym___r_single_quote] = ACTIONS(3185), + [ts_builtin_sym_end] = ACTIONS(3189), + [sym_identifier] = ACTIONS(3191), + [anon_sym_LF] = ACTIONS(3191), + [anon_sym_CR] = ACTIONS(3191), + [anon_sym_CR_LF] = ACTIONS(3191), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3191), + [anon_sym_as] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(3191), + [anon_sym_COMMA] = ACTIONS(3191), + [anon_sym_const] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3191), + [anon_sym___global] = ACTIONS(3191), + [anon_sym_type] = ACTIONS(3191), + [anon_sym_PIPE] = ACTIONS(3191), + [anon_sym_fn] = ACTIONS(3191), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_STAR] = ACTIONS(3191), + [anon_sym_SLASH] = ACTIONS(3191), + [anon_sym_PERCENT] = ACTIONS(3191), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_GT] = ACTIONS(3191), + [anon_sym_EQ_EQ] = ACTIONS(3191), + [anon_sym_BANG_EQ] = ACTIONS(3191), + [anon_sym_LT_EQ] = ACTIONS(3191), + [anon_sym_GT_EQ] = ACTIONS(3191), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_struct] = ACTIONS(3191), + [anon_sym_union] = ACTIONS(3191), + [anon_sym_pub] = ACTIONS(3191), + [anon_sym_mut] = ACTIONS(3191), + [anon_sym_enum] = ACTIONS(3191), + [anon_sym_interface] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3191), + [anon_sym_DASH_DASH] = ACTIONS(3191), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_go] = ACTIONS(3191), + [anon_sym_spawn] = ACTIONS(3191), + [anon_sym_json_DOTdecode] = ACTIONS(3191), + [anon_sym_LBRACK2] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3191), + [anon_sym_CARET] = ACTIONS(3191), + [anon_sym_AMP] = ACTIONS(3191), + [anon_sym_LT_DASH] = ACTIONS(3191), + [anon_sym_LT_LT] = ACTIONS(3191), + [anon_sym_GT_GT] = ACTIONS(3191), + [anon_sym_GT_GT_GT] = ACTIONS(3191), + [anon_sym_AMP_CARET] = ACTIONS(3191), + [anon_sym_AMP_AMP] = ACTIONS(3191), + [anon_sym_PIPE_PIPE] = ACTIONS(3191), + [anon_sym_or] = ACTIONS(3191), + [sym_none] = ACTIONS(3191), + [sym_true] = ACTIONS(3191), + [sym_false] = ACTIONS(3191), + [sym_nil] = ACTIONS(3191), + [anon_sym_QMARK_DOT] = ACTIONS(3191), + [anon_sym_POUND_LBRACK] = ACTIONS(3191), + [anon_sym_if] = ACTIONS(3191), + [anon_sym_DOLLARif] = ACTIONS(3191), + [anon_sym_is] = ACTIONS(3191), + [anon_sym_BANGis] = ACTIONS(3191), + [anon_sym_in] = ACTIONS(3191), + [anon_sym_BANGin] = ACTIONS(3191), + [anon_sym_match] = ACTIONS(3191), + [anon_sym_select] = ACTIONS(3191), + [anon_sym_lock] = ACTIONS(3191), + [anon_sym_rlock] = ACTIONS(3191), + [anon_sym_unsafe] = ACTIONS(3191), + [anon_sym_sql] = ACTIONS(3191), + [sym_int_literal] = ACTIONS(3191), + [sym_float_literal] = ACTIONS(3191), + [sym_rune_literal] = ACTIONS(3191), + [anon_sym_AT] = ACTIONS(3191), + [anon_sym_shared] = ACTIONS(3191), + [anon_sym_map_LBRACK] = ACTIONS(3191), + [anon_sym_chan] = ACTIONS(3191), + [anon_sym_thread] = ACTIONS(3191), + [anon_sym_atomic] = ACTIONS(3191), + [anon_sym_assert] = ACTIONS(3191), + [anon_sym_defer] = ACTIONS(3191), + [anon_sym_goto] = ACTIONS(3191), + [anon_sym_break] = ACTIONS(3191), + [anon_sym_continue] = ACTIONS(3191), + [anon_sym_return] = ACTIONS(3191), + [anon_sym_DOLLARfor] = ACTIONS(3191), + [anon_sym_for] = ACTIONS(3191), + [anon_sym_POUND] = ACTIONS(3191), + [anon_sym_asm] = ACTIONS(3191), + [anon_sym_AT_LBRACK] = ACTIONS(3191), + [sym___double_quote] = ACTIONS(3191), + [sym___single_quote] = ACTIONS(3191), + [sym___c_double_quote] = ACTIONS(3191), + [sym___c_single_quote] = ACTIONS(3191), + [sym___r_double_quote] = ACTIONS(3191), + [sym___r_single_quote] = ACTIONS(3191), }, [1052] = { - [ts_builtin_sym_end] = ACTIONS(2794), - [sym_identifier] = ACTIONS(2796), - [anon_sym_LF] = ACTIONS(2796), - [anon_sym_CR] = ACTIONS(2796), - [anon_sym_CR_LF] = ACTIONS(2796), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2796), - [anon_sym_as] = ACTIONS(2796), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_COMMA] = ACTIONS(2796), - [anon_sym_const] = ACTIONS(2796), - [anon_sym_LPAREN] = ACTIONS(2796), - [anon_sym___global] = ACTIONS(2796), - [anon_sym_type] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(2796), - [anon_sym_fn] = ACTIONS(2796), - [anon_sym_PLUS] = ACTIONS(2796), - [anon_sym_DASH] = ACTIONS(2796), - [anon_sym_STAR] = ACTIONS(2796), - [anon_sym_SLASH] = ACTIONS(2796), - [anon_sym_PERCENT] = ACTIONS(2796), - [anon_sym_LT] = ACTIONS(2796), - [anon_sym_GT] = ACTIONS(2796), - [anon_sym_EQ_EQ] = ACTIONS(2796), - [anon_sym_BANG_EQ] = ACTIONS(2796), - [anon_sym_LT_EQ] = ACTIONS(2796), - [anon_sym_GT_EQ] = ACTIONS(2796), - [anon_sym_LBRACK] = ACTIONS(2794), - [anon_sym_struct] = ACTIONS(2796), - [anon_sym_union] = ACTIONS(2796), - [anon_sym_pub] = ACTIONS(2796), - [anon_sym_mut] = ACTIONS(2796), - [anon_sym_enum] = ACTIONS(2796), - [anon_sym_interface] = ACTIONS(2796), - [anon_sym_PLUS_PLUS] = ACTIONS(2796), - [anon_sym_DASH_DASH] = ACTIONS(2796), - [anon_sym_QMARK] = ACTIONS(2796), - [anon_sym_BANG] = ACTIONS(2796), - [anon_sym_go] = ACTIONS(2796), - [anon_sym_spawn] = ACTIONS(2796), - [anon_sym_json_DOTdecode] = ACTIONS(2796), - [anon_sym_LBRACK2] = ACTIONS(2796), - [anon_sym_TILDE] = ACTIONS(2796), - [anon_sym_CARET] = ACTIONS(2796), - [anon_sym_AMP] = ACTIONS(2796), - [anon_sym_LT_DASH] = ACTIONS(2796), - [anon_sym_LT_LT] = ACTIONS(2796), - [anon_sym_GT_GT] = ACTIONS(2796), - [anon_sym_GT_GT_GT] = ACTIONS(2796), - [anon_sym_AMP_CARET] = ACTIONS(2796), - [anon_sym_AMP_AMP] = ACTIONS(2796), - [anon_sym_PIPE_PIPE] = ACTIONS(2796), - [anon_sym_or] = ACTIONS(2796), - [sym_none] = ACTIONS(2796), - [sym_true] = ACTIONS(2796), - [sym_false] = ACTIONS(2796), - [sym_nil] = ACTIONS(2796), - [anon_sym_QMARK_DOT] = ACTIONS(2796), - [anon_sym_POUND_LBRACK] = ACTIONS(2796), - [anon_sym_if] = ACTIONS(2796), - [anon_sym_DOLLARif] = ACTIONS(2796), - [anon_sym_is] = ACTIONS(2796), - [anon_sym_BANGis] = ACTIONS(2796), - [anon_sym_in] = ACTIONS(2796), - [anon_sym_BANGin] = ACTIONS(2796), - [anon_sym_match] = ACTIONS(2796), - [anon_sym_select] = ACTIONS(2796), - [anon_sym_lock] = ACTIONS(2796), - [anon_sym_rlock] = ACTIONS(2796), - [anon_sym_unsafe] = ACTIONS(2796), - [anon_sym_sql] = ACTIONS(2796), - [sym_int_literal] = ACTIONS(2796), - [sym_float_literal] = ACTIONS(2796), - [sym_rune_literal] = ACTIONS(2796), - [anon_sym_AT] = ACTIONS(2796), - [anon_sym_shared] = ACTIONS(2796), - [anon_sym_map_LBRACK] = ACTIONS(2796), - [anon_sym_chan] = ACTIONS(2796), - [anon_sym_thread] = ACTIONS(2796), - [anon_sym_atomic] = ACTIONS(2796), - [anon_sym_assert] = ACTIONS(2796), - [anon_sym_defer] = ACTIONS(2796), - [anon_sym_goto] = ACTIONS(2796), - [anon_sym_break] = ACTIONS(2796), - [anon_sym_continue] = ACTIONS(2796), - [anon_sym_return] = ACTIONS(2796), - [anon_sym_DOLLARfor] = ACTIONS(2796), - [anon_sym_for] = ACTIONS(2796), - [anon_sym_POUND] = ACTIONS(2796), - [anon_sym_asm] = ACTIONS(2796), - [anon_sym_AT_LBRACK] = ACTIONS(2796), - [sym___double_quote] = ACTIONS(2796), - [sym___single_quote] = ACTIONS(2796), - [sym___c_double_quote] = ACTIONS(2796), - [sym___c_single_quote] = ACTIONS(2796), - [sym___r_double_quote] = ACTIONS(2796), - [sym___r_single_quote] = ACTIONS(2796), + [ts_builtin_sym_end] = ACTIONS(3197), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LF] = ACTIONS(3199), + [anon_sym_CR] = ACTIONS(3199), + [anon_sym_CR_LF] = ACTIONS(3199), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3199), + [anon_sym_as] = ACTIONS(3199), + [anon_sym_LBRACE] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_const] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3199), + [anon_sym___global] = ACTIONS(3199), + [anon_sym_type] = ACTIONS(3199), + [anon_sym_PIPE] = ACTIONS(3199), + [anon_sym_fn] = ACTIONS(3199), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3199), + [anon_sym_STAR] = ACTIONS(3199), + [anon_sym_SLASH] = ACTIONS(3199), + [anon_sym_PERCENT] = ACTIONS(3199), + [anon_sym_LT] = ACTIONS(3199), + [anon_sym_GT] = ACTIONS(3199), + [anon_sym_EQ_EQ] = ACTIONS(3199), + [anon_sym_BANG_EQ] = ACTIONS(3199), + [anon_sym_LT_EQ] = ACTIONS(3199), + [anon_sym_GT_EQ] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_struct] = ACTIONS(3199), + [anon_sym_union] = ACTIONS(3199), + [anon_sym_pub] = ACTIONS(3199), + [anon_sym_mut] = ACTIONS(3199), + [anon_sym_enum] = ACTIONS(3199), + [anon_sym_interface] = ACTIONS(3199), + [anon_sym_PLUS_PLUS] = ACTIONS(3199), + [anon_sym_DASH_DASH] = ACTIONS(3199), + [anon_sym_QMARK] = ACTIONS(3199), + [anon_sym_BANG] = ACTIONS(3199), + [anon_sym_go] = ACTIONS(3199), + [anon_sym_spawn] = ACTIONS(3199), + [anon_sym_json_DOTdecode] = ACTIONS(3199), + [anon_sym_LBRACK2] = ACTIONS(3199), + [anon_sym_TILDE] = ACTIONS(3199), + [anon_sym_CARET] = ACTIONS(3199), + [anon_sym_AMP] = ACTIONS(3199), + [anon_sym_LT_DASH] = ACTIONS(3199), + [anon_sym_LT_LT] = ACTIONS(3199), + [anon_sym_GT_GT] = ACTIONS(3199), + [anon_sym_GT_GT_GT] = ACTIONS(3199), + [anon_sym_AMP_CARET] = ACTIONS(3199), + [anon_sym_AMP_AMP] = ACTIONS(3199), + [anon_sym_PIPE_PIPE] = ACTIONS(3199), + [anon_sym_or] = ACTIONS(3199), + [sym_none] = ACTIONS(3199), + [sym_true] = ACTIONS(3199), + [sym_false] = ACTIONS(3199), + [sym_nil] = ACTIONS(3199), + [anon_sym_QMARK_DOT] = ACTIONS(3199), + [anon_sym_POUND_LBRACK] = ACTIONS(3199), + [anon_sym_if] = ACTIONS(3199), + [anon_sym_DOLLARif] = ACTIONS(3199), + [anon_sym_is] = ACTIONS(3199), + [anon_sym_BANGis] = ACTIONS(3199), + [anon_sym_in] = ACTIONS(3199), + [anon_sym_BANGin] = ACTIONS(3199), + [anon_sym_match] = ACTIONS(3199), + [anon_sym_select] = ACTIONS(3199), + [anon_sym_lock] = ACTIONS(3199), + [anon_sym_rlock] = ACTIONS(3199), + [anon_sym_unsafe] = ACTIONS(3199), + [anon_sym_sql] = ACTIONS(3199), + [sym_int_literal] = ACTIONS(3199), + [sym_float_literal] = ACTIONS(3199), + [sym_rune_literal] = ACTIONS(3199), + [anon_sym_AT] = ACTIONS(3199), + [anon_sym_shared] = ACTIONS(3199), + [anon_sym_map_LBRACK] = ACTIONS(3199), + [anon_sym_chan] = ACTIONS(3199), + [anon_sym_thread] = ACTIONS(3199), + [anon_sym_atomic] = ACTIONS(3199), + [anon_sym_assert] = ACTIONS(3199), + [anon_sym_defer] = ACTIONS(3199), + [anon_sym_goto] = ACTIONS(3199), + [anon_sym_break] = ACTIONS(3199), + [anon_sym_continue] = ACTIONS(3199), + [anon_sym_return] = ACTIONS(3199), + [anon_sym_DOLLARfor] = ACTIONS(3199), + [anon_sym_for] = ACTIONS(3199), + [anon_sym_POUND] = ACTIONS(3199), + [anon_sym_asm] = ACTIONS(3199), + [anon_sym_AT_LBRACK] = ACTIONS(3199), + [sym___double_quote] = ACTIONS(3199), + [sym___single_quote] = ACTIONS(3199), + [sym___c_double_quote] = ACTIONS(3199), + [sym___c_single_quote] = ACTIONS(3199), + [sym___r_double_quote] = ACTIONS(3199), + [sym___r_single_quote] = ACTIONS(3199), }, [1053] = { - [ts_builtin_sym_end] = ACTIONS(2818), - [sym_identifier] = ACTIONS(2820), - [anon_sym_LF] = ACTIONS(2820), - [anon_sym_CR] = ACTIONS(2820), - [anon_sym_CR_LF] = ACTIONS(2820), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2820), - [anon_sym_as] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2820), - [anon_sym_COMMA] = ACTIONS(2820), - [anon_sym_const] = ACTIONS(2820), - [anon_sym_LPAREN] = ACTIONS(2820), - [anon_sym___global] = ACTIONS(2820), - [anon_sym_type] = ACTIONS(2820), - [anon_sym_PIPE] = ACTIONS(2820), - [anon_sym_fn] = ACTIONS(2820), - [anon_sym_PLUS] = ACTIONS(2820), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_STAR] = ACTIONS(2820), - [anon_sym_SLASH] = ACTIONS(2820), - [anon_sym_PERCENT] = ACTIONS(2820), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_GT] = ACTIONS(2820), - [anon_sym_EQ_EQ] = ACTIONS(2820), - [anon_sym_BANG_EQ] = ACTIONS(2820), - [anon_sym_LT_EQ] = ACTIONS(2820), - [anon_sym_GT_EQ] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2820), - [anon_sym_union] = ACTIONS(2820), - [anon_sym_pub] = ACTIONS(2820), - [anon_sym_mut] = ACTIONS(2820), - [anon_sym_enum] = ACTIONS(2820), - [anon_sym_interface] = ACTIONS(2820), - [anon_sym_PLUS_PLUS] = ACTIONS(2820), - [anon_sym_DASH_DASH] = ACTIONS(2820), - [anon_sym_QMARK] = ACTIONS(2820), - [anon_sym_BANG] = ACTIONS(2820), - [anon_sym_go] = ACTIONS(2820), - [anon_sym_spawn] = ACTIONS(2820), - [anon_sym_json_DOTdecode] = ACTIONS(2820), - [anon_sym_LBRACK2] = ACTIONS(2820), - [anon_sym_TILDE] = ACTIONS(2820), - [anon_sym_CARET] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2820), - [anon_sym_LT_DASH] = ACTIONS(2820), - [anon_sym_LT_LT] = ACTIONS(2820), - [anon_sym_GT_GT] = ACTIONS(2820), - [anon_sym_GT_GT_GT] = ACTIONS(2820), - [anon_sym_AMP_CARET] = ACTIONS(2820), - [anon_sym_AMP_AMP] = ACTIONS(2820), - [anon_sym_PIPE_PIPE] = ACTIONS(2820), - [anon_sym_or] = ACTIONS(2820), - [sym_none] = ACTIONS(2820), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [sym_nil] = ACTIONS(2820), - [anon_sym_QMARK_DOT] = ACTIONS(2820), - [anon_sym_POUND_LBRACK] = ACTIONS(2820), - [anon_sym_if] = ACTIONS(2820), - [anon_sym_DOLLARif] = ACTIONS(2820), - [anon_sym_is] = ACTIONS(2820), - [anon_sym_BANGis] = ACTIONS(2820), - [anon_sym_in] = ACTIONS(2820), - [anon_sym_BANGin] = ACTIONS(2820), - [anon_sym_match] = ACTIONS(2820), - [anon_sym_select] = ACTIONS(2820), - [anon_sym_lock] = ACTIONS(2820), - [anon_sym_rlock] = ACTIONS(2820), - [anon_sym_unsafe] = ACTIONS(2820), - [anon_sym_sql] = ACTIONS(2820), - [sym_int_literal] = ACTIONS(2820), - [sym_float_literal] = ACTIONS(2820), - [sym_rune_literal] = ACTIONS(2820), - [anon_sym_AT] = ACTIONS(2820), - [anon_sym_shared] = ACTIONS(2820), - [anon_sym_map_LBRACK] = ACTIONS(2820), - [anon_sym_chan] = ACTIONS(2820), - [anon_sym_thread] = ACTIONS(2820), - [anon_sym_atomic] = ACTIONS(2820), - [anon_sym_assert] = ACTIONS(2820), - [anon_sym_defer] = ACTIONS(2820), - [anon_sym_goto] = ACTIONS(2820), - [anon_sym_break] = ACTIONS(2820), - [anon_sym_continue] = ACTIONS(2820), - [anon_sym_return] = ACTIONS(2820), - [anon_sym_DOLLARfor] = ACTIONS(2820), - [anon_sym_for] = ACTIONS(2820), - [anon_sym_POUND] = ACTIONS(2820), - [anon_sym_asm] = ACTIONS(2820), - [anon_sym_AT_LBRACK] = ACTIONS(2820), - [sym___double_quote] = ACTIONS(2820), - [sym___single_quote] = ACTIONS(2820), - [sym___c_double_quote] = ACTIONS(2820), - [sym___c_single_quote] = ACTIONS(2820), - [sym___r_double_quote] = ACTIONS(2820), - [sym___r_single_quote] = ACTIONS(2820), + [ts_builtin_sym_end] = ACTIONS(3201), + [sym_identifier] = ACTIONS(3203), + [anon_sym_LF] = ACTIONS(3203), + [anon_sym_CR] = ACTIONS(3203), + [anon_sym_CR_LF] = ACTIONS(3203), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3203), + [anon_sym_as] = ACTIONS(3203), + [anon_sym_LBRACE] = ACTIONS(3203), + [anon_sym_COMMA] = ACTIONS(3203), + [anon_sym_const] = ACTIONS(3203), + [anon_sym_LPAREN] = ACTIONS(3203), + [anon_sym___global] = ACTIONS(3203), + [anon_sym_type] = ACTIONS(3203), + [anon_sym_PIPE] = ACTIONS(3203), + [anon_sym_fn] = ACTIONS(3203), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_STAR] = ACTIONS(3203), + [anon_sym_SLASH] = ACTIONS(3203), + [anon_sym_PERCENT] = ACTIONS(3203), + [anon_sym_LT] = ACTIONS(3203), + [anon_sym_GT] = ACTIONS(3203), + [anon_sym_EQ_EQ] = ACTIONS(3203), + [anon_sym_BANG_EQ] = ACTIONS(3203), + [anon_sym_LT_EQ] = ACTIONS(3203), + [anon_sym_GT_EQ] = ACTIONS(3203), + [anon_sym_LBRACK] = ACTIONS(3201), + [anon_sym_struct] = ACTIONS(3203), + [anon_sym_union] = ACTIONS(3203), + [anon_sym_pub] = ACTIONS(3203), + [anon_sym_mut] = ACTIONS(3203), + [anon_sym_enum] = ACTIONS(3203), + [anon_sym_interface] = ACTIONS(3203), + [anon_sym_PLUS_PLUS] = ACTIONS(3203), + [anon_sym_DASH_DASH] = ACTIONS(3203), + [anon_sym_QMARK] = ACTIONS(3203), + [anon_sym_BANG] = ACTIONS(3203), + [anon_sym_go] = ACTIONS(3203), + [anon_sym_spawn] = ACTIONS(3203), + [anon_sym_json_DOTdecode] = ACTIONS(3203), + [anon_sym_LBRACK2] = ACTIONS(3203), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_CARET] = ACTIONS(3203), + [anon_sym_AMP] = ACTIONS(3203), + [anon_sym_LT_DASH] = ACTIONS(3203), + [anon_sym_LT_LT] = ACTIONS(3203), + [anon_sym_GT_GT] = ACTIONS(3203), + [anon_sym_GT_GT_GT] = ACTIONS(3203), + [anon_sym_AMP_CARET] = ACTIONS(3203), + [anon_sym_AMP_AMP] = ACTIONS(3203), + [anon_sym_PIPE_PIPE] = ACTIONS(3203), + [anon_sym_or] = ACTIONS(3203), + [sym_none] = ACTIONS(3203), + [sym_true] = ACTIONS(3203), + [sym_false] = ACTIONS(3203), + [sym_nil] = ACTIONS(3203), + [anon_sym_QMARK_DOT] = ACTIONS(3203), + [anon_sym_POUND_LBRACK] = ACTIONS(3203), + [anon_sym_if] = ACTIONS(3203), + [anon_sym_DOLLARif] = ACTIONS(3203), + [anon_sym_is] = ACTIONS(3203), + [anon_sym_BANGis] = ACTIONS(3203), + [anon_sym_in] = ACTIONS(3203), + [anon_sym_BANGin] = ACTIONS(3203), + [anon_sym_match] = ACTIONS(3203), + [anon_sym_select] = ACTIONS(3203), + [anon_sym_lock] = ACTIONS(3203), + [anon_sym_rlock] = ACTIONS(3203), + [anon_sym_unsafe] = ACTIONS(3203), + [anon_sym_sql] = ACTIONS(3203), + [sym_int_literal] = ACTIONS(3203), + [sym_float_literal] = ACTIONS(3203), + [sym_rune_literal] = ACTIONS(3203), + [anon_sym_AT] = ACTIONS(3203), + [anon_sym_shared] = ACTIONS(3203), + [anon_sym_map_LBRACK] = ACTIONS(3203), + [anon_sym_chan] = ACTIONS(3203), + [anon_sym_thread] = ACTIONS(3203), + [anon_sym_atomic] = ACTIONS(3203), + [anon_sym_assert] = ACTIONS(3203), + [anon_sym_defer] = ACTIONS(3203), + [anon_sym_goto] = ACTIONS(3203), + [anon_sym_break] = ACTIONS(3203), + [anon_sym_continue] = ACTIONS(3203), + [anon_sym_return] = ACTIONS(3203), + [anon_sym_DOLLARfor] = ACTIONS(3203), + [anon_sym_for] = ACTIONS(3203), + [anon_sym_POUND] = ACTIONS(3203), + [anon_sym_asm] = ACTIONS(3203), + [anon_sym_AT_LBRACK] = ACTIONS(3203), + [sym___double_quote] = ACTIONS(3203), + [sym___single_quote] = ACTIONS(3203), + [sym___c_double_quote] = ACTIONS(3203), + [sym___c_single_quote] = ACTIONS(3203), + [sym___r_double_quote] = ACTIONS(3203), + [sym___r_single_quote] = ACTIONS(3203), }, [1054] = { - [ts_builtin_sym_end] = ACTIONS(2822), - [sym_identifier] = ACTIONS(2824), - [anon_sym_LF] = ACTIONS(2824), - [anon_sym_CR] = ACTIONS(2824), - [anon_sym_CR_LF] = ACTIONS(2824), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2824), - [anon_sym_as] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2824), - [anon_sym_COMMA] = ACTIONS(2824), - [anon_sym_const] = ACTIONS(2824), - [anon_sym_LPAREN] = ACTIONS(2824), - [anon_sym___global] = ACTIONS(2824), - [anon_sym_type] = ACTIONS(2824), - [anon_sym_PIPE] = ACTIONS(2824), - [anon_sym_fn] = ACTIONS(2824), - [anon_sym_PLUS] = ACTIONS(2824), - [anon_sym_DASH] = ACTIONS(2824), - [anon_sym_STAR] = ACTIONS(2824), - [anon_sym_SLASH] = ACTIONS(2824), - [anon_sym_PERCENT] = ACTIONS(2824), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_GT] = ACTIONS(2824), - [anon_sym_EQ_EQ] = ACTIONS(2824), - [anon_sym_BANG_EQ] = ACTIONS(2824), - [anon_sym_LT_EQ] = ACTIONS(2824), - [anon_sym_GT_EQ] = ACTIONS(2824), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_struct] = ACTIONS(2824), - [anon_sym_union] = ACTIONS(2824), - [anon_sym_pub] = ACTIONS(2824), - [anon_sym_mut] = ACTIONS(2824), - [anon_sym_enum] = ACTIONS(2824), - [anon_sym_interface] = ACTIONS(2824), - [anon_sym_PLUS_PLUS] = ACTIONS(2824), - [anon_sym_DASH_DASH] = ACTIONS(2824), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_BANG] = ACTIONS(2824), - [anon_sym_go] = ACTIONS(2824), - [anon_sym_spawn] = ACTIONS(2824), - [anon_sym_json_DOTdecode] = ACTIONS(2824), - [anon_sym_LBRACK2] = ACTIONS(2824), - [anon_sym_TILDE] = ACTIONS(2824), - [anon_sym_CARET] = ACTIONS(2824), - [anon_sym_AMP] = ACTIONS(2824), - [anon_sym_LT_DASH] = ACTIONS(2824), - [anon_sym_LT_LT] = ACTIONS(2824), - [anon_sym_GT_GT] = ACTIONS(2824), - [anon_sym_GT_GT_GT] = ACTIONS(2824), - [anon_sym_AMP_CARET] = ACTIONS(2824), - [anon_sym_AMP_AMP] = ACTIONS(2824), - [anon_sym_PIPE_PIPE] = ACTIONS(2824), - [anon_sym_or] = ACTIONS(2824), - [sym_none] = ACTIONS(2824), - [sym_true] = ACTIONS(2824), - [sym_false] = ACTIONS(2824), - [sym_nil] = ACTIONS(2824), - [anon_sym_QMARK_DOT] = ACTIONS(2824), - [anon_sym_POUND_LBRACK] = ACTIONS(2824), - [anon_sym_if] = ACTIONS(2824), - [anon_sym_DOLLARif] = ACTIONS(2824), - [anon_sym_is] = ACTIONS(2824), - [anon_sym_BANGis] = ACTIONS(2824), - [anon_sym_in] = ACTIONS(2824), - [anon_sym_BANGin] = ACTIONS(2824), - [anon_sym_match] = ACTIONS(2824), - [anon_sym_select] = ACTIONS(2824), - [anon_sym_lock] = ACTIONS(2824), - [anon_sym_rlock] = ACTIONS(2824), - [anon_sym_unsafe] = ACTIONS(2824), - [anon_sym_sql] = ACTIONS(2824), - [sym_int_literal] = ACTIONS(2824), - [sym_float_literal] = ACTIONS(2824), - [sym_rune_literal] = ACTIONS(2824), - [anon_sym_AT] = ACTIONS(2824), - [anon_sym_shared] = ACTIONS(2824), - [anon_sym_map_LBRACK] = ACTIONS(2824), - [anon_sym_chan] = ACTIONS(2824), - [anon_sym_thread] = ACTIONS(2824), - [anon_sym_atomic] = ACTIONS(2824), - [anon_sym_assert] = ACTIONS(2824), - [anon_sym_defer] = ACTIONS(2824), - [anon_sym_goto] = ACTIONS(2824), - [anon_sym_break] = ACTIONS(2824), - [anon_sym_continue] = ACTIONS(2824), - [anon_sym_return] = ACTIONS(2824), - [anon_sym_DOLLARfor] = ACTIONS(2824), - [anon_sym_for] = ACTIONS(2824), - [anon_sym_POUND] = ACTIONS(2824), - [anon_sym_asm] = ACTIONS(2824), - [anon_sym_AT_LBRACK] = ACTIONS(2824), - [sym___double_quote] = ACTIONS(2824), - [sym___single_quote] = ACTIONS(2824), - [sym___c_double_quote] = ACTIONS(2824), - [sym___c_single_quote] = ACTIONS(2824), - [sym___r_double_quote] = ACTIONS(2824), - [sym___r_single_quote] = ACTIONS(2824), + [ts_builtin_sym_end] = ACTIONS(3177), + [sym_identifier] = ACTIONS(3179), + [anon_sym_LF] = ACTIONS(3179), + [anon_sym_CR] = ACTIONS(3179), + [anon_sym_CR_LF] = ACTIONS(3179), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3179), + [anon_sym_as] = ACTIONS(3179), + [anon_sym_LBRACE] = ACTIONS(3179), + [anon_sym_COMMA] = ACTIONS(3179), + [anon_sym_const] = ACTIONS(3179), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym___global] = ACTIONS(3179), + [anon_sym_type] = ACTIONS(3179), + [anon_sym_PIPE] = ACTIONS(3179), + [anon_sym_fn] = ACTIONS(3179), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3179), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_SLASH] = ACTIONS(3179), + [anon_sym_PERCENT] = ACTIONS(3179), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3179), + [anon_sym_EQ_EQ] = ACTIONS(3179), + [anon_sym_BANG_EQ] = ACTIONS(3179), + [anon_sym_LT_EQ] = ACTIONS(3179), + [anon_sym_GT_EQ] = ACTIONS(3179), + [anon_sym_LBRACK] = ACTIONS(3177), + [anon_sym_struct] = ACTIONS(3179), + [anon_sym_union] = ACTIONS(3179), + [anon_sym_pub] = ACTIONS(3179), + [anon_sym_mut] = ACTIONS(3179), + [anon_sym_enum] = ACTIONS(3179), + [anon_sym_interface] = ACTIONS(3179), + [anon_sym_PLUS_PLUS] = ACTIONS(3179), + [anon_sym_DASH_DASH] = ACTIONS(3179), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_BANG] = ACTIONS(3179), + [anon_sym_go] = ACTIONS(3179), + [anon_sym_spawn] = ACTIONS(3179), + [anon_sym_json_DOTdecode] = ACTIONS(3179), + [anon_sym_LBRACK2] = ACTIONS(3179), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_CARET] = ACTIONS(3179), + [anon_sym_AMP] = ACTIONS(3179), + [anon_sym_LT_DASH] = ACTIONS(3179), + [anon_sym_LT_LT] = ACTIONS(3179), + [anon_sym_GT_GT] = ACTIONS(3179), + [anon_sym_GT_GT_GT] = ACTIONS(3179), + [anon_sym_AMP_CARET] = ACTIONS(3179), + [anon_sym_AMP_AMP] = ACTIONS(3179), + [anon_sym_PIPE_PIPE] = ACTIONS(3179), + [anon_sym_or] = ACTIONS(3179), + [sym_none] = ACTIONS(3179), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_nil] = ACTIONS(3179), + [anon_sym_QMARK_DOT] = ACTIONS(3179), + [anon_sym_POUND_LBRACK] = ACTIONS(3179), + [anon_sym_if] = ACTIONS(3179), + [anon_sym_DOLLARif] = ACTIONS(3179), + [anon_sym_is] = ACTIONS(3179), + [anon_sym_BANGis] = ACTIONS(3179), + [anon_sym_in] = ACTIONS(3179), + [anon_sym_BANGin] = ACTIONS(3179), + [anon_sym_match] = ACTIONS(3179), + [anon_sym_select] = ACTIONS(3179), + [anon_sym_lock] = ACTIONS(3179), + [anon_sym_rlock] = ACTIONS(3179), + [anon_sym_unsafe] = ACTIONS(3179), + [anon_sym_sql] = ACTIONS(3179), + [sym_int_literal] = ACTIONS(3179), + [sym_float_literal] = ACTIONS(3179), + [sym_rune_literal] = ACTIONS(3179), + [anon_sym_AT] = ACTIONS(3179), + [anon_sym_shared] = ACTIONS(3179), + [anon_sym_map_LBRACK] = ACTIONS(3179), + [anon_sym_chan] = ACTIONS(3179), + [anon_sym_thread] = ACTIONS(3179), + [anon_sym_atomic] = ACTIONS(3179), + [anon_sym_assert] = ACTIONS(3179), + [anon_sym_defer] = ACTIONS(3179), + [anon_sym_goto] = ACTIONS(3179), + [anon_sym_break] = ACTIONS(3179), + [anon_sym_continue] = ACTIONS(3179), + [anon_sym_return] = ACTIONS(3179), + [anon_sym_DOLLARfor] = ACTIONS(3179), + [anon_sym_for] = ACTIONS(3179), + [anon_sym_POUND] = ACTIONS(3179), + [anon_sym_asm] = ACTIONS(3179), + [anon_sym_AT_LBRACK] = ACTIONS(3179), + [sym___double_quote] = ACTIONS(3179), + [sym___single_quote] = ACTIONS(3179), + [sym___c_double_quote] = ACTIONS(3179), + [sym___c_single_quote] = ACTIONS(3179), + [sym___r_double_quote] = ACTIONS(3179), + [sym___r_single_quote] = ACTIONS(3179), }, [1055] = { - [ts_builtin_sym_end] = ACTIONS(3179), - [sym_identifier] = ACTIONS(3181), - [anon_sym_LF] = ACTIONS(3181), - [anon_sym_CR] = ACTIONS(3181), - [anon_sym_CR_LF] = ACTIONS(3181), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3181), - [anon_sym_as] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3181), - [anon_sym_COMMA] = ACTIONS(3181), - [anon_sym_const] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3181), - [anon_sym___global] = ACTIONS(3181), - [anon_sym_type] = ACTIONS(3181), - [anon_sym_PIPE] = ACTIONS(3181), - [anon_sym_fn] = ACTIONS(3181), - [anon_sym_PLUS] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3181), - [anon_sym_SLASH] = ACTIONS(3181), - [anon_sym_PERCENT] = ACTIONS(3181), - [anon_sym_LT] = ACTIONS(3181), - [anon_sym_GT] = ACTIONS(3181), - [anon_sym_EQ_EQ] = ACTIONS(3181), - [anon_sym_BANG_EQ] = ACTIONS(3181), - [anon_sym_LT_EQ] = ACTIONS(3181), - [anon_sym_GT_EQ] = ACTIONS(3181), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_struct] = ACTIONS(3181), - [anon_sym_union] = ACTIONS(3181), - [anon_sym_pub] = ACTIONS(3181), - [anon_sym_mut] = ACTIONS(3181), - [anon_sym_enum] = ACTIONS(3181), - [anon_sym_interface] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_BANG] = ACTIONS(3181), - [anon_sym_go] = ACTIONS(3181), - [anon_sym_spawn] = ACTIONS(3181), - [anon_sym_json_DOTdecode] = ACTIONS(3181), - [anon_sym_LBRACK2] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_CARET] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3181), - [anon_sym_LT_DASH] = ACTIONS(3181), - [anon_sym_LT_LT] = ACTIONS(3181), - [anon_sym_GT_GT] = ACTIONS(3181), - [anon_sym_GT_GT_GT] = ACTIONS(3181), - [anon_sym_AMP_CARET] = ACTIONS(3181), - [anon_sym_AMP_AMP] = ACTIONS(3181), - [anon_sym_PIPE_PIPE] = ACTIONS(3181), - [anon_sym_or] = ACTIONS(3181), - [sym_none] = ACTIONS(3181), - [sym_true] = ACTIONS(3181), - [sym_false] = ACTIONS(3181), - [sym_nil] = ACTIONS(3181), - [anon_sym_QMARK_DOT] = ACTIONS(3181), - [anon_sym_POUND_LBRACK] = ACTIONS(3181), - [anon_sym_if] = ACTIONS(3181), - [anon_sym_DOLLARif] = ACTIONS(3181), - [anon_sym_is] = ACTIONS(3181), - [anon_sym_BANGis] = ACTIONS(3181), - [anon_sym_in] = ACTIONS(3181), - [anon_sym_BANGin] = ACTIONS(3181), - [anon_sym_match] = ACTIONS(3181), - [anon_sym_select] = ACTIONS(3181), - [anon_sym_lock] = ACTIONS(3181), - [anon_sym_rlock] = ACTIONS(3181), - [anon_sym_unsafe] = ACTIONS(3181), - [anon_sym_sql] = ACTIONS(3181), - [sym_int_literal] = ACTIONS(3181), - [sym_float_literal] = ACTIONS(3181), - [sym_rune_literal] = ACTIONS(3181), - [anon_sym_AT] = ACTIONS(3181), - [anon_sym_shared] = ACTIONS(3181), - [anon_sym_map_LBRACK] = ACTIONS(3181), - [anon_sym_chan] = ACTIONS(3181), - [anon_sym_thread] = ACTIONS(3181), - [anon_sym_atomic] = ACTIONS(3181), - [anon_sym_assert] = ACTIONS(3181), - [anon_sym_defer] = ACTIONS(3181), - [anon_sym_goto] = ACTIONS(3181), - [anon_sym_break] = ACTIONS(3181), - [anon_sym_continue] = ACTIONS(3181), - [anon_sym_return] = ACTIONS(3181), - [anon_sym_DOLLARfor] = ACTIONS(3181), - [anon_sym_for] = ACTIONS(3181), - [anon_sym_POUND] = ACTIONS(3181), - [anon_sym_asm] = ACTIONS(3181), - [anon_sym_AT_LBRACK] = ACTIONS(3181), - [sym___double_quote] = ACTIONS(3181), - [sym___single_quote] = ACTIONS(3181), - [sym___c_double_quote] = ACTIONS(3181), - [sym___c_single_quote] = ACTIONS(3181), - [sym___r_double_quote] = ACTIONS(3181), - [sym___r_single_quote] = ACTIONS(3181), + [ts_builtin_sym_end] = ACTIONS(2997), + [sym_identifier] = ACTIONS(2994), + [anon_sym_LF] = ACTIONS(2994), + [anon_sym_CR] = ACTIONS(2994), + [anon_sym_CR_LF] = ACTIONS(2994), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2994), + [anon_sym_as] = ACTIONS(2994), + [anon_sym_LBRACE] = ACTIONS(2994), + [anon_sym_COMMA] = ACTIONS(2994), + [anon_sym_const] = ACTIONS(2994), + [anon_sym_LPAREN] = ACTIONS(2994), + [anon_sym___global] = ACTIONS(2994), + [anon_sym_type] = ACTIONS(2994), + [anon_sym_PIPE] = ACTIONS(2994), + [anon_sym_fn] = ACTIONS(2994), + [anon_sym_PLUS] = ACTIONS(2994), + [anon_sym_DASH] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2994), + [anon_sym_SLASH] = ACTIONS(2994), + [anon_sym_PERCENT] = ACTIONS(2994), + [anon_sym_LT] = ACTIONS(2994), + [anon_sym_GT] = ACTIONS(2994), + [anon_sym_EQ_EQ] = ACTIONS(2994), + [anon_sym_BANG_EQ] = ACTIONS(2994), + [anon_sym_LT_EQ] = ACTIONS(2994), + [anon_sym_GT_EQ] = ACTIONS(2994), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_struct] = ACTIONS(2994), + [anon_sym_union] = ACTIONS(2994), + [anon_sym_pub] = ACTIONS(2994), + [anon_sym_mut] = ACTIONS(2994), + [anon_sym_enum] = ACTIONS(2994), + [anon_sym_interface] = ACTIONS(2994), + [anon_sym_PLUS_PLUS] = ACTIONS(2994), + [anon_sym_DASH_DASH] = ACTIONS(2994), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_BANG] = ACTIONS(2994), + [anon_sym_go] = ACTIONS(2994), + [anon_sym_spawn] = ACTIONS(2994), + [anon_sym_json_DOTdecode] = ACTIONS(2994), + [anon_sym_LBRACK2] = ACTIONS(2994), + [anon_sym_TILDE] = ACTIONS(2994), + [anon_sym_CARET] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2994), + [anon_sym_LT_DASH] = ACTIONS(2994), + [anon_sym_LT_LT] = ACTIONS(2994), + [anon_sym_GT_GT] = ACTIONS(2994), + [anon_sym_GT_GT_GT] = ACTIONS(2994), + [anon_sym_AMP_CARET] = ACTIONS(2994), + [anon_sym_AMP_AMP] = ACTIONS(2994), + [anon_sym_PIPE_PIPE] = ACTIONS(2994), + [anon_sym_or] = ACTIONS(2994), + [sym_none] = ACTIONS(2994), + [sym_true] = ACTIONS(2994), + [sym_false] = ACTIONS(2994), + [sym_nil] = ACTIONS(2994), + [anon_sym_QMARK_DOT] = ACTIONS(2994), + [anon_sym_POUND_LBRACK] = ACTIONS(2994), + [anon_sym_if] = ACTIONS(2994), + [anon_sym_DOLLARif] = ACTIONS(2994), + [anon_sym_is] = ACTIONS(2994), + [anon_sym_BANGis] = ACTIONS(2994), + [anon_sym_in] = ACTIONS(2994), + [anon_sym_BANGin] = ACTIONS(2994), + [anon_sym_match] = ACTIONS(2994), + [anon_sym_select] = ACTIONS(2994), + [anon_sym_lock] = ACTIONS(2994), + [anon_sym_rlock] = ACTIONS(2994), + [anon_sym_unsafe] = ACTIONS(2994), + [anon_sym_sql] = ACTIONS(2994), + [sym_int_literal] = ACTIONS(2994), + [sym_float_literal] = ACTIONS(2994), + [sym_rune_literal] = ACTIONS(2994), + [anon_sym_AT] = ACTIONS(2994), + [anon_sym_shared] = ACTIONS(2994), + [anon_sym_map_LBRACK] = ACTIONS(2994), + [anon_sym_chan] = ACTIONS(2994), + [anon_sym_thread] = ACTIONS(2994), + [anon_sym_atomic] = ACTIONS(2994), + [anon_sym_assert] = ACTIONS(2994), + [anon_sym_defer] = ACTIONS(2994), + [anon_sym_goto] = ACTIONS(2994), + [anon_sym_break] = ACTIONS(2994), + [anon_sym_continue] = ACTIONS(2994), + [anon_sym_return] = ACTIONS(2994), + [anon_sym_DOLLARfor] = ACTIONS(2994), + [anon_sym_for] = ACTIONS(2994), + [anon_sym_POUND] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2994), + [anon_sym_AT_LBRACK] = ACTIONS(2994), + [sym___double_quote] = ACTIONS(2994), + [sym___single_quote] = ACTIONS(2994), + [sym___c_double_quote] = ACTIONS(2994), + [sym___c_single_quote] = ACTIONS(2994), + [sym___r_double_quote] = ACTIONS(2994), + [sym___r_single_quote] = ACTIONS(2994), }, [1056] = { - [ts_builtin_sym_end] = ACTIONS(3147), - [sym_identifier] = ACTIONS(3149), - [anon_sym_LF] = ACTIONS(3149), - [anon_sym_CR] = ACTIONS(3149), - [anon_sym_CR_LF] = ACTIONS(3149), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3149), - [anon_sym_as] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_COMMA] = ACTIONS(3149), - [anon_sym_const] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3149), - [anon_sym___global] = ACTIONS(3149), - [anon_sym_type] = ACTIONS(3149), - [anon_sym_PIPE] = ACTIONS(3149), - [anon_sym_fn] = ACTIONS(3149), - [anon_sym_PLUS] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3149), - [anon_sym_SLASH] = ACTIONS(3149), - [anon_sym_PERCENT] = ACTIONS(3149), - [anon_sym_LT] = ACTIONS(3149), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_LT_EQ] = ACTIONS(3149), - [anon_sym_GT_EQ] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_struct] = ACTIONS(3149), - [anon_sym_union] = ACTIONS(3149), - [anon_sym_pub] = ACTIONS(3149), - [anon_sym_mut] = ACTIONS(3149), - [anon_sym_enum] = ACTIONS(3149), - [anon_sym_interface] = ACTIONS(3149), - [anon_sym_PLUS_PLUS] = ACTIONS(3149), - [anon_sym_DASH_DASH] = ACTIONS(3149), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_BANG] = ACTIONS(3149), - [anon_sym_go] = ACTIONS(3149), - [anon_sym_spawn] = ACTIONS(3149), - [anon_sym_json_DOTdecode] = ACTIONS(3149), - [anon_sym_LBRACK2] = ACTIONS(3149), - [anon_sym_TILDE] = ACTIONS(3149), - [anon_sym_CARET] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_LT_DASH] = ACTIONS(3149), - [anon_sym_LT_LT] = ACTIONS(3149), - [anon_sym_GT_GT] = ACTIONS(3149), - [anon_sym_GT_GT_GT] = ACTIONS(3149), - [anon_sym_AMP_CARET] = ACTIONS(3149), - [anon_sym_AMP_AMP] = ACTIONS(3149), - [anon_sym_PIPE_PIPE] = ACTIONS(3149), - [anon_sym_or] = ACTIONS(3149), - [sym_none] = ACTIONS(3149), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_nil] = ACTIONS(3149), - [anon_sym_QMARK_DOT] = ACTIONS(3149), - [anon_sym_POUND_LBRACK] = ACTIONS(3149), - [anon_sym_if] = ACTIONS(3149), - [anon_sym_DOLLARif] = ACTIONS(3149), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3149), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_BANGin] = ACTIONS(3149), - [anon_sym_match] = ACTIONS(3149), - [anon_sym_select] = ACTIONS(3149), - [anon_sym_lock] = ACTIONS(3149), - [anon_sym_rlock] = ACTIONS(3149), - [anon_sym_unsafe] = ACTIONS(3149), - [anon_sym_sql] = ACTIONS(3149), - [sym_int_literal] = ACTIONS(3149), - [sym_float_literal] = ACTIONS(3149), - [sym_rune_literal] = ACTIONS(3149), - [anon_sym_AT] = ACTIONS(3149), - [anon_sym_shared] = ACTIONS(3149), - [anon_sym_map_LBRACK] = ACTIONS(3149), - [anon_sym_chan] = ACTIONS(3149), - [anon_sym_thread] = ACTIONS(3149), - [anon_sym_atomic] = ACTIONS(3149), - [anon_sym_assert] = ACTIONS(3149), - [anon_sym_defer] = ACTIONS(3149), - [anon_sym_goto] = ACTIONS(3149), - [anon_sym_break] = ACTIONS(3149), - [anon_sym_continue] = ACTIONS(3149), - [anon_sym_return] = ACTIONS(3149), - [anon_sym_DOLLARfor] = ACTIONS(3149), - [anon_sym_for] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(3149), - [anon_sym_asm] = ACTIONS(3149), - [anon_sym_AT_LBRACK] = ACTIONS(3149), - [sym___double_quote] = ACTIONS(3149), - [sym___single_quote] = ACTIONS(3149), - [sym___c_double_quote] = ACTIONS(3149), - [sym___c_single_quote] = ACTIONS(3149), - [sym___r_double_quote] = ACTIONS(3149), - [sym___r_single_quote] = ACTIONS(3149), + [ts_builtin_sym_end] = ACTIONS(2987), + [sym_identifier] = ACTIONS(2984), + [anon_sym_LF] = ACTIONS(2984), + [anon_sym_CR] = ACTIONS(2984), + [anon_sym_CR_LF] = ACTIONS(2984), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2984), + [anon_sym_as] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2984), + [anon_sym_COMMA] = ACTIONS(2984), + [anon_sym_const] = ACTIONS(2984), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym___global] = ACTIONS(2984), + [anon_sym_type] = ACTIONS(2984), + [anon_sym_PIPE] = ACTIONS(2984), + [anon_sym_fn] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2984), + [anon_sym_DASH] = ACTIONS(2984), + [anon_sym_STAR] = ACTIONS(2984), + [anon_sym_SLASH] = ACTIONS(2984), + [anon_sym_PERCENT] = ACTIONS(2984), + [anon_sym_LT] = ACTIONS(2984), + [anon_sym_GT] = ACTIONS(2984), + [anon_sym_EQ_EQ] = ACTIONS(2984), + [anon_sym_BANG_EQ] = ACTIONS(2984), + [anon_sym_LT_EQ] = ACTIONS(2984), + [anon_sym_GT_EQ] = ACTIONS(2984), + [anon_sym_LBRACK] = ACTIONS(2987), + [anon_sym_struct] = ACTIONS(2984), + [anon_sym_union] = ACTIONS(2984), + [anon_sym_pub] = ACTIONS(2984), + [anon_sym_mut] = ACTIONS(2984), + [anon_sym_enum] = ACTIONS(2984), + [anon_sym_interface] = ACTIONS(2984), + [anon_sym_PLUS_PLUS] = ACTIONS(2984), + [anon_sym_DASH_DASH] = ACTIONS(2984), + [anon_sym_QMARK] = ACTIONS(2984), + [anon_sym_BANG] = ACTIONS(2984), + [anon_sym_go] = ACTIONS(2984), + [anon_sym_spawn] = ACTIONS(2984), + [anon_sym_json_DOTdecode] = ACTIONS(2984), + [anon_sym_LBRACK2] = ACTIONS(2984), + [anon_sym_TILDE] = ACTIONS(2984), + [anon_sym_CARET] = ACTIONS(2984), + [anon_sym_AMP] = ACTIONS(2984), + [anon_sym_LT_DASH] = ACTIONS(2984), + [anon_sym_LT_LT] = ACTIONS(2984), + [anon_sym_GT_GT] = ACTIONS(2984), + [anon_sym_GT_GT_GT] = ACTIONS(2984), + [anon_sym_AMP_CARET] = ACTIONS(2984), + [anon_sym_AMP_AMP] = ACTIONS(2984), + [anon_sym_PIPE_PIPE] = ACTIONS(2984), + [anon_sym_or] = ACTIONS(2984), + [sym_none] = ACTIONS(2984), + [sym_true] = ACTIONS(2984), + [sym_false] = ACTIONS(2984), + [sym_nil] = ACTIONS(2984), + [anon_sym_QMARK_DOT] = ACTIONS(2984), + [anon_sym_POUND_LBRACK] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_DOLLARif] = ACTIONS(2984), + [anon_sym_is] = ACTIONS(2984), + [anon_sym_BANGis] = ACTIONS(2984), + [anon_sym_in] = ACTIONS(2984), + [anon_sym_BANGin] = ACTIONS(2984), + [anon_sym_match] = ACTIONS(2984), + [anon_sym_select] = ACTIONS(2984), + [anon_sym_lock] = ACTIONS(2984), + [anon_sym_rlock] = ACTIONS(2984), + [anon_sym_unsafe] = ACTIONS(2984), + [anon_sym_sql] = ACTIONS(2984), + [sym_int_literal] = ACTIONS(2984), + [sym_float_literal] = ACTIONS(2984), + [sym_rune_literal] = ACTIONS(2984), + [anon_sym_AT] = ACTIONS(2984), + [anon_sym_shared] = ACTIONS(2984), + [anon_sym_map_LBRACK] = ACTIONS(2984), + [anon_sym_chan] = ACTIONS(2984), + [anon_sym_thread] = ACTIONS(2984), + [anon_sym_atomic] = ACTIONS(2984), + [anon_sym_assert] = ACTIONS(2984), + [anon_sym_defer] = ACTIONS(2984), + [anon_sym_goto] = ACTIONS(2984), + [anon_sym_break] = ACTIONS(2984), + [anon_sym_continue] = ACTIONS(2984), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_DOLLARfor] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2984), + [anon_sym_POUND] = ACTIONS(2984), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym_AT_LBRACK] = ACTIONS(2984), + [sym___double_quote] = ACTIONS(2984), + [sym___single_quote] = ACTIONS(2984), + [sym___c_double_quote] = ACTIONS(2984), + [sym___c_single_quote] = ACTIONS(2984), + [sym___r_double_quote] = ACTIONS(2984), + [sym___r_single_quote] = ACTIONS(2984), }, [1057] = { - [ts_builtin_sym_end] = ACTIONS(3063), - [sym_identifier] = ACTIONS(3065), - [anon_sym_LF] = ACTIONS(3065), - [anon_sym_CR] = ACTIONS(3065), - [anon_sym_CR_LF] = ACTIONS(3065), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3065), - [anon_sym_as] = ACTIONS(3065), - [anon_sym_LBRACE] = ACTIONS(3065), - [anon_sym_COMMA] = ACTIONS(3065), - [anon_sym_const] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(3065), - [anon_sym___global] = ACTIONS(3065), - [anon_sym_type] = ACTIONS(3065), - [anon_sym_PIPE] = ACTIONS(3065), - [anon_sym_fn] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_SLASH] = ACTIONS(3065), - [anon_sym_PERCENT] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3065), - [anon_sym_GT] = ACTIONS(3065), - [anon_sym_EQ_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_LT_EQ] = ACTIONS(3065), - [anon_sym_GT_EQ] = ACTIONS(3065), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3065), - [anon_sym_union] = ACTIONS(3065), - [anon_sym_pub] = ACTIONS(3065), - [anon_sym_mut] = ACTIONS(3065), - [anon_sym_enum] = ACTIONS(3065), - [anon_sym_interface] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_DASH_DASH] = ACTIONS(3065), - [anon_sym_QMARK] = ACTIONS(3065), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_go] = ACTIONS(3065), - [anon_sym_spawn] = ACTIONS(3065), - [anon_sym_json_DOTdecode] = ACTIONS(3065), - [anon_sym_LBRACK2] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_CARET] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3065), - [anon_sym_LT_DASH] = ACTIONS(3065), - [anon_sym_LT_LT] = ACTIONS(3065), - [anon_sym_GT_GT] = ACTIONS(3065), - [anon_sym_GT_GT_GT] = ACTIONS(3065), - [anon_sym_AMP_CARET] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_PIPE_PIPE] = ACTIONS(3065), - [anon_sym_or] = ACTIONS(3065), - [sym_none] = ACTIONS(3065), - [sym_true] = ACTIONS(3065), - [sym_false] = ACTIONS(3065), - [sym_nil] = ACTIONS(3065), - [anon_sym_QMARK_DOT] = ACTIONS(3065), - [anon_sym_POUND_LBRACK] = ACTIONS(3065), - [anon_sym_if] = ACTIONS(3065), - [anon_sym_DOLLARif] = ACTIONS(3065), - [anon_sym_is] = ACTIONS(3065), - [anon_sym_BANGis] = ACTIONS(3065), - [anon_sym_in] = ACTIONS(3065), - [anon_sym_BANGin] = ACTIONS(3065), - [anon_sym_match] = ACTIONS(3065), - [anon_sym_select] = ACTIONS(3065), - [anon_sym_lock] = ACTIONS(3065), - [anon_sym_rlock] = ACTIONS(3065), - [anon_sym_unsafe] = ACTIONS(3065), - [anon_sym_sql] = ACTIONS(3065), - [sym_int_literal] = ACTIONS(3065), - [sym_float_literal] = ACTIONS(3065), - [sym_rune_literal] = ACTIONS(3065), - [anon_sym_AT] = ACTIONS(3065), - [anon_sym_shared] = ACTIONS(3065), - [anon_sym_map_LBRACK] = ACTIONS(3065), - [anon_sym_chan] = ACTIONS(3065), - [anon_sym_thread] = ACTIONS(3065), - [anon_sym_atomic] = ACTIONS(3065), - [anon_sym_assert] = ACTIONS(3065), - [anon_sym_defer] = ACTIONS(3065), - [anon_sym_goto] = ACTIONS(3065), - [anon_sym_break] = ACTIONS(3065), - [anon_sym_continue] = ACTIONS(3065), - [anon_sym_return] = ACTIONS(3065), - [anon_sym_DOLLARfor] = ACTIONS(3065), - [anon_sym_for] = ACTIONS(3065), - [anon_sym_POUND] = ACTIONS(3065), - [anon_sym_asm] = ACTIONS(3065), - [anon_sym_AT_LBRACK] = ACTIONS(3065), - [sym___double_quote] = ACTIONS(3065), - [sym___single_quote] = ACTIONS(3065), - [sym___c_double_quote] = ACTIONS(3065), - [sym___c_single_quote] = ACTIONS(3065), - [sym___r_double_quote] = ACTIONS(3065), - [sym___r_single_quote] = ACTIONS(3065), + [ts_builtin_sym_end] = ACTIONS(3165), + [sym_identifier] = ACTIONS(3167), + [anon_sym_LF] = ACTIONS(3167), + [anon_sym_CR] = ACTIONS(3167), + [anon_sym_CR_LF] = ACTIONS(3167), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3167), + [anon_sym_as] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_COMMA] = ACTIONS(3167), + [anon_sym_const] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym___global] = ACTIONS(3167), + [anon_sym_type] = ACTIONS(3167), + [anon_sym_PIPE] = ACTIONS(3167), + [anon_sym_fn] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(3167), + [anon_sym_SLASH] = ACTIONS(3167), + [anon_sym_PERCENT] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_GT] = ACTIONS(3167), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_BANG_EQ] = ACTIONS(3167), + [anon_sym_LT_EQ] = ACTIONS(3167), + [anon_sym_GT_EQ] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_struct] = ACTIONS(3167), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_pub] = ACTIONS(3167), + [anon_sym_mut] = ACTIONS(3167), + [anon_sym_enum] = ACTIONS(3167), + [anon_sym_interface] = ACTIONS(3167), + [anon_sym_PLUS_PLUS] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3167), + [anon_sym_QMARK] = ACTIONS(3167), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_go] = ACTIONS(3167), + [anon_sym_spawn] = ACTIONS(3167), + [anon_sym_json_DOTdecode] = ACTIONS(3167), + [anon_sym_LBRACK2] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_CARET] = ACTIONS(3167), + [anon_sym_AMP] = ACTIONS(3167), + [anon_sym_LT_DASH] = ACTIONS(3167), + [anon_sym_LT_LT] = ACTIONS(3167), + [anon_sym_GT_GT] = ACTIONS(3167), + [anon_sym_GT_GT_GT] = ACTIONS(3167), + [anon_sym_AMP_CARET] = ACTIONS(3167), + [anon_sym_AMP_AMP] = ACTIONS(3167), + [anon_sym_PIPE_PIPE] = ACTIONS(3167), + [anon_sym_or] = ACTIONS(3167), + [sym_none] = ACTIONS(3167), + [sym_true] = ACTIONS(3167), + [sym_false] = ACTIONS(3167), + [sym_nil] = ACTIONS(3167), + [anon_sym_QMARK_DOT] = ACTIONS(3167), + [anon_sym_POUND_LBRACK] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_DOLLARif] = ACTIONS(3167), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_BANGis] = ACTIONS(3167), + [anon_sym_in] = ACTIONS(3167), + [anon_sym_BANGin] = ACTIONS(3167), + [anon_sym_match] = ACTIONS(3167), + [anon_sym_select] = ACTIONS(3167), + [anon_sym_lock] = ACTIONS(3167), + [anon_sym_rlock] = ACTIONS(3167), + [anon_sym_unsafe] = ACTIONS(3167), + [anon_sym_sql] = ACTIONS(3167), + [sym_int_literal] = ACTIONS(3167), + [sym_float_literal] = ACTIONS(3167), + [sym_rune_literal] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(3167), + [anon_sym_shared] = ACTIONS(3167), + [anon_sym_map_LBRACK] = ACTIONS(3167), + [anon_sym_chan] = ACTIONS(3167), + [anon_sym_thread] = ACTIONS(3167), + [anon_sym_atomic] = ACTIONS(3167), + [anon_sym_assert] = ACTIONS(3167), + [anon_sym_defer] = ACTIONS(3167), + [anon_sym_goto] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_DOLLARfor] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_POUND] = ACTIONS(3167), + [anon_sym_asm] = ACTIONS(3167), + [anon_sym_AT_LBRACK] = ACTIONS(3167), + [sym___double_quote] = ACTIONS(3167), + [sym___single_quote] = ACTIONS(3167), + [sym___c_double_quote] = ACTIONS(3167), + [sym___c_single_quote] = ACTIONS(3167), + [sym___r_double_quote] = ACTIONS(3167), + [sym___r_single_quote] = ACTIONS(3167), }, [1058] = { - [ts_builtin_sym_end] = ACTIONS(3051), - [sym_identifier] = ACTIONS(3053), - [anon_sym_LF] = ACTIONS(3053), - [anon_sym_CR] = ACTIONS(3053), - [anon_sym_CR_LF] = ACTIONS(3053), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3053), - [anon_sym_as] = ACTIONS(3053), - [anon_sym_LBRACE] = ACTIONS(3053), - [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym___global] = ACTIONS(3053), - [anon_sym_type] = ACTIONS(3053), - [anon_sym_PIPE] = ACTIONS(3053), - [anon_sym_fn] = ACTIONS(3053), - [anon_sym_PLUS] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3053), - [anon_sym_STAR] = ACTIONS(3053), - [anon_sym_SLASH] = ACTIONS(3053), - [anon_sym_PERCENT] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(3053), - [anon_sym_GT] = ACTIONS(3053), - [anon_sym_EQ_EQ] = ACTIONS(3053), - [anon_sym_BANG_EQ] = ACTIONS(3053), - [anon_sym_LT_EQ] = ACTIONS(3053), - [anon_sym_GT_EQ] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3051), - [anon_sym_struct] = ACTIONS(3053), - [anon_sym_union] = ACTIONS(3053), - [anon_sym_pub] = ACTIONS(3053), - [anon_sym_mut] = ACTIONS(3053), - [anon_sym_enum] = ACTIONS(3053), - [anon_sym_interface] = ACTIONS(3053), - [anon_sym_PLUS_PLUS] = ACTIONS(3053), - [anon_sym_DASH_DASH] = ACTIONS(3053), - [anon_sym_QMARK] = ACTIONS(3053), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_go] = ACTIONS(3053), - [anon_sym_spawn] = ACTIONS(3053), - [anon_sym_json_DOTdecode] = ACTIONS(3053), - [anon_sym_LBRACK2] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_CARET] = ACTIONS(3053), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_LT_DASH] = ACTIONS(3053), - [anon_sym_LT_LT] = ACTIONS(3053), - [anon_sym_GT_GT] = ACTIONS(3053), - [anon_sym_GT_GT_GT] = ACTIONS(3053), - [anon_sym_AMP_CARET] = ACTIONS(3053), - [anon_sym_AMP_AMP] = ACTIONS(3053), - [anon_sym_PIPE_PIPE] = ACTIONS(3053), - [anon_sym_or] = ACTIONS(3053), - [sym_none] = ACTIONS(3053), - [sym_true] = ACTIONS(3053), - [sym_false] = ACTIONS(3053), - [sym_nil] = ACTIONS(3053), - [anon_sym_QMARK_DOT] = ACTIONS(3053), - [anon_sym_POUND_LBRACK] = ACTIONS(3053), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_DOLLARif] = ACTIONS(3053), - [anon_sym_is] = ACTIONS(3053), - [anon_sym_BANGis] = ACTIONS(3053), - [anon_sym_in] = ACTIONS(3053), - [anon_sym_BANGin] = ACTIONS(3053), - [anon_sym_match] = ACTIONS(3053), - [anon_sym_select] = ACTIONS(3053), - [anon_sym_lock] = ACTIONS(3053), - [anon_sym_rlock] = ACTIONS(3053), - [anon_sym_unsafe] = ACTIONS(3053), - [anon_sym_sql] = ACTIONS(3053), - [sym_int_literal] = ACTIONS(3053), - [sym_float_literal] = ACTIONS(3053), - [sym_rune_literal] = ACTIONS(3053), - [anon_sym_AT] = ACTIONS(3053), - [anon_sym_shared] = ACTIONS(3053), - [anon_sym_map_LBRACK] = ACTIONS(3053), - [anon_sym_chan] = ACTIONS(3053), - [anon_sym_thread] = ACTIONS(3053), - [anon_sym_atomic] = ACTIONS(3053), - [anon_sym_assert] = ACTIONS(3053), - [anon_sym_defer] = ACTIONS(3053), - [anon_sym_goto] = ACTIONS(3053), - [anon_sym_break] = ACTIONS(3053), - [anon_sym_continue] = ACTIONS(3053), - [anon_sym_return] = ACTIONS(3053), - [anon_sym_DOLLARfor] = ACTIONS(3053), - [anon_sym_for] = ACTIONS(3053), - [anon_sym_POUND] = ACTIONS(3053), - [anon_sym_asm] = ACTIONS(3053), - [anon_sym_AT_LBRACK] = ACTIONS(3053), - [sym___double_quote] = ACTIONS(3053), - [sym___single_quote] = ACTIONS(3053), - [sym___c_double_quote] = ACTIONS(3053), - [sym___c_single_quote] = ACTIONS(3053), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3053), + [ts_builtin_sym_end] = ACTIONS(3157), + [sym_identifier] = ACTIONS(3159), + [anon_sym_LF] = ACTIONS(3159), + [anon_sym_CR] = ACTIONS(3159), + [anon_sym_CR_LF] = ACTIONS(3159), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3159), + [anon_sym_as] = ACTIONS(3159), + [anon_sym_LBRACE] = ACTIONS(3159), + [anon_sym_COMMA] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym___global] = ACTIONS(3159), + [anon_sym_type] = ACTIONS(3159), + [anon_sym_PIPE] = ACTIONS(3159), + [anon_sym_fn] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3159), + [anon_sym_SLASH] = ACTIONS(3159), + [anon_sym_PERCENT] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(3159), + [anon_sym_GT] = ACTIONS(3159), + [anon_sym_EQ_EQ] = ACTIONS(3159), + [anon_sym_BANG_EQ] = ACTIONS(3159), + [anon_sym_LT_EQ] = ACTIONS(3159), + [anon_sym_GT_EQ] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_struct] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3159), + [anon_sym_pub] = ACTIONS(3159), + [anon_sym_mut] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3159), + [anon_sym_interface] = ACTIONS(3159), + [anon_sym_PLUS_PLUS] = ACTIONS(3159), + [anon_sym_DASH_DASH] = ACTIONS(3159), + [anon_sym_QMARK] = ACTIONS(3159), + [anon_sym_BANG] = ACTIONS(3159), + [anon_sym_go] = ACTIONS(3159), + [anon_sym_spawn] = ACTIONS(3159), + [anon_sym_json_DOTdecode] = ACTIONS(3159), + [anon_sym_LBRACK2] = ACTIONS(3159), + [anon_sym_TILDE] = ACTIONS(3159), + [anon_sym_CARET] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LT_DASH] = ACTIONS(3159), + [anon_sym_LT_LT] = ACTIONS(3159), + [anon_sym_GT_GT] = ACTIONS(3159), + [anon_sym_GT_GT_GT] = ACTIONS(3159), + [anon_sym_AMP_CARET] = ACTIONS(3159), + [anon_sym_AMP_AMP] = ACTIONS(3159), + [anon_sym_PIPE_PIPE] = ACTIONS(3159), + [anon_sym_or] = ACTIONS(3159), + [sym_none] = ACTIONS(3159), + [sym_true] = ACTIONS(3159), + [sym_false] = ACTIONS(3159), + [sym_nil] = ACTIONS(3159), + [anon_sym_QMARK_DOT] = ACTIONS(3159), + [anon_sym_POUND_LBRACK] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_DOLLARif] = ACTIONS(3159), + [anon_sym_is] = ACTIONS(3159), + [anon_sym_BANGis] = ACTIONS(3159), + [anon_sym_in] = ACTIONS(3159), + [anon_sym_BANGin] = ACTIONS(3159), + [anon_sym_match] = ACTIONS(3159), + [anon_sym_select] = ACTIONS(3159), + [anon_sym_lock] = ACTIONS(3159), + [anon_sym_rlock] = ACTIONS(3159), + [anon_sym_unsafe] = ACTIONS(3159), + [anon_sym_sql] = ACTIONS(3159), + [sym_int_literal] = ACTIONS(3159), + [sym_float_literal] = ACTIONS(3159), + [sym_rune_literal] = ACTIONS(3159), + [anon_sym_AT] = ACTIONS(3159), + [anon_sym_shared] = ACTIONS(3159), + [anon_sym_map_LBRACK] = ACTIONS(3159), + [anon_sym_chan] = ACTIONS(3159), + [anon_sym_thread] = ACTIONS(3159), + [anon_sym_atomic] = ACTIONS(3159), + [anon_sym_assert] = ACTIONS(3159), + [anon_sym_defer] = ACTIONS(3159), + [anon_sym_goto] = ACTIONS(3159), + [anon_sym_break] = ACTIONS(3159), + [anon_sym_continue] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_DOLLARfor] = ACTIONS(3159), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_POUND] = ACTIONS(3159), + [anon_sym_asm] = ACTIONS(3159), + [anon_sym_AT_LBRACK] = ACTIONS(3159), + [sym___double_quote] = ACTIONS(3159), + [sym___single_quote] = ACTIONS(3159), + [sym___c_double_quote] = ACTIONS(3159), + [sym___c_single_quote] = ACTIONS(3159), + [sym___r_double_quote] = ACTIONS(3159), + [sym___r_single_quote] = ACTIONS(3159), }, [1059] = { - [ts_builtin_sym_end] = ACTIONS(2987), - [sym_identifier] = ACTIONS(2989), - [anon_sym_LF] = ACTIONS(2989), - [anon_sym_CR] = ACTIONS(2989), - [anon_sym_CR_LF] = ACTIONS(2989), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2989), - [anon_sym_as] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2989), - [anon_sym_COMMA] = ACTIONS(2989), - [anon_sym_const] = ACTIONS(2989), - [anon_sym_LPAREN] = ACTIONS(2989), - [anon_sym___global] = ACTIONS(2989), - [anon_sym_type] = ACTIONS(2989), - [anon_sym_PIPE] = ACTIONS(2989), - [anon_sym_fn] = ACTIONS(2989), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2989), - [anon_sym_SLASH] = ACTIONS(2989), - [anon_sym_PERCENT] = ACTIONS(2989), - [anon_sym_LT] = ACTIONS(2989), - [anon_sym_GT] = ACTIONS(2989), - [anon_sym_EQ_EQ] = ACTIONS(2989), - [anon_sym_BANG_EQ] = ACTIONS(2989), - [anon_sym_LT_EQ] = ACTIONS(2989), - [anon_sym_GT_EQ] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_union] = ACTIONS(2989), - [anon_sym_pub] = ACTIONS(2989), - [anon_sym_mut] = ACTIONS(2989), - [anon_sym_enum] = ACTIONS(2989), - [anon_sym_interface] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_go] = ACTIONS(2989), - [anon_sym_spawn] = ACTIONS(2989), - [anon_sym_json_DOTdecode] = ACTIONS(2989), - [anon_sym_LBRACK2] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_CARET] = ACTIONS(2989), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_LT_DASH] = ACTIONS(2989), - [anon_sym_LT_LT] = ACTIONS(2989), - [anon_sym_GT_GT] = ACTIONS(2989), - [anon_sym_GT_GT_GT] = ACTIONS(2989), - [anon_sym_AMP_CARET] = ACTIONS(2989), - [anon_sym_AMP_AMP] = ACTIONS(2989), - [anon_sym_PIPE_PIPE] = ACTIONS(2989), - [anon_sym_or] = ACTIONS(2989), - [sym_none] = ACTIONS(2989), - [sym_true] = ACTIONS(2989), - [sym_false] = ACTIONS(2989), - [sym_nil] = ACTIONS(2989), - [anon_sym_QMARK_DOT] = ACTIONS(2989), - [anon_sym_POUND_LBRACK] = ACTIONS(2989), - [anon_sym_if] = ACTIONS(2989), - [anon_sym_DOLLARif] = ACTIONS(2989), - [anon_sym_is] = ACTIONS(2989), - [anon_sym_BANGis] = ACTIONS(2989), - [anon_sym_in] = ACTIONS(2989), - [anon_sym_BANGin] = ACTIONS(2989), - [anon_sym_match] = ACTIONS(2989), - [anon_sym_select] = ACTIONS(2989), - [anon_sym_lock] = ACTIONS(2989), - [anon_sym_rlock] = ACTIONS(2989), - [anon_sym_unsafe] = ACTIONS(2989), - [anon_sym_sql] = ACTIONS(2989), - [sym_int_literal] = ACTIONS(2989), - [sym_float_literal] = ACTIONS(2989), - [sym_rune_literal] = ACTIONS(2989), - [anon_sym_AT] = ACTIONS(2989), - [anon_sym_shared] = ACTIONS(2989), - [anon_sym_map_LBRACK] = ACTIONS(2989), - [anon_sym_chan] = ACTIONS(2989), - [anon_sym_thread] = ACTIONS(2989), - [anon_sym_atomic] = ACTIONS(2989), - [anon_sym_assert] = ACTIONS(2989), - [anon_sym_defer] = ACTIONS(2989), - [anon_sym_goto] = ACTIONS(2989), - [anon_sym_break] = ACTIONS(2989), - [anon_sym_continue] = ACTIONS(2989), - [anon_sym_return] = ACTIONS(2989), - [anon_sym_DOLLARfor] = ACTIONS(2989), - [anon_sym_for] = ACTIONS(2989), - [anon_sym_POUND] = ACTIONS(2989), - [anon_sym_asm] = ACTIONS(2989), - [anon_sym_AT_LBRACK] = ACTIONS(2989), - [sym___double_quote] = ACTIONS(2989), - [sym___single_quote] = ACTIONS(2989), - [sym___c_double_quote] = ACTIONS(2989), - [sym___c_single_quote] = ACTIONS(2989), - [sym___r_double_quote] = ACTIONS(2989), - [sym___r_single_quote] = ACTIONS(2989), + [ts_builtin_sym_end] = ACTIONS(3153), + [sym_identifier] = ACTIONS(3155), + [anon_sym_LF] = ACTIONS(3155), + [anon_sym_CR] = ACTIONS(3155), + [anon_sym_CR_LF] = ACTIONS(3155), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3155), + [anon_sym_as] = ACTIONS(3155), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_COMMA] = ACTIONS(3155), + [anon_sym_const] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym___global] = ACTIONS(3155), + [anon_sym_type] = ACTIONS(3155), + [anon_sym_PIPE] = ACTIONS(3155), + [anon_sym_fn] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_SLASH] = ACTIONS(3155), + [anon_sym_PERCENT] = ACTIONS(3155), + [anon_sym_LT] = ACTIONS(3155), + [anon_sym_GT] = ACTIONS(3155), + [anon_sym_EQ_EQ] = ACTIONS(3155), + [anon_sym_BANG_EQ] = ACTIONS(3155), + [anon_sym_LT_EQ] = ACTIONS(3155), + [anon_sym_GT_EQ] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3153), + [anon_sym_struct] = ACTIONS(3155), + [anon_sym_union] = ACTIONS(3155), + [anon_sym_pub] = ACTIONS(3155), + [anon_sym_mut] = ACTIONS(3155), + [anon_sym_enum] = ACTIONS(3155), + [anon_sym_interface] = ACTIONS(3155), + [anon_sym_PLUS_PLUS] = ACTIONS(3155), + [anon_sym_DASH_DASH] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3155), + [anon_sym_go] = ACTIONS(3155), + [anon_sym_spawn] = ACTIONS(3155), + [anon_sym_json_DOTdecode] = ACTIONS(3155), + [anon_sym_LBRACK2] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_CARET] = ACTIONS(3155), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_LT_DASH] = ACTIONS(3155), + [anon_sym_LT_LT] = ACTIONS(3155), + [anon_sym_GT_GT] = ACTIONS(3155), + [anon_sym_GT_GT_GT] = ACTIONS(3155), + [anon_sym_AMP_CARET] = ACTIONS(3155), + [anon_sym_AMP_AMP] = ACTIONS(3155), + [anon_sym_PIPE_PIPE] = ACTIONS(3155), + [anon_sym_or] = ACTIONS(3155), + [sym_none] = ACTIONS(3155), + [sym_true] = ACTIONS(3155), + [sym_false] = ACTIONS(3155), + [sym_nil] = ACTIONS(3155), + [anon_sym_QMARK_DOT] = ACTIONS(3155), + [anon_sym_POUND_LBRACK] = ACTIONS(3155), + [anon_sym_if] = ACTIONS(3155), + [anon_sym_DOLLARif] = ACTIONS(3155), + [anon_sym_is] = ACTIONS(3155), + [anon_sym_BANGis] = ACTIONS(3155), + [anon_sym_in] = ACTIONS(3155), + [anon_sym_BANGin] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3155), + [anon_sym_select] = ACTIONS(3155), + [anon_sym_lock] = ACTIONS(3155), + [anon_sym_rlock] = ACTIONS(3155), + [anon_sym_unsafe] = ACTIONS(3155), + [anon_sym_sql] = ACTIONS(3155), + [sym_int_literal] = ACTIONS(3155), + [sym_float_literal] = ACTIONS(3155), + [sym_rune_literal] = ACTIONS(3155), + [anon_sym_AT] = ACTIONS(3155), + [anon_sym_shared] = ACTIONS(3155), + [anon_sym_map_LBRACK] = ACTIONS(3155), + [anon_sym_chan] = ACTIONS(3155), + [anon_sym_thread] = ACTIONS(3155), + [anon_sym_atomic] = ACTIONS(3155), + [anon_sym_assert] = ACTIONS(3155), + [anon_sym_defer] = ACTIONS(3155), + [anon_sym_goto] = ACTIONS(3155), + [anon_sym_break] = ACTIONS(3155), + [anon_sym_continue] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3155), + [anon_sym_DOLLARfor] = ACTIONS(3155), + [anon_sym_for] = ACTIONS(3155), + [anon_sym_POUND] = ACTIONS(3155), + [anon_sym_asm] = ACTIONS(3155), + [anon_sym_AT_LBRACK] = ACTIONS(3155), + [sym___double_quote] = ACTIONS(3155), + [sym___single_quote] = ACTIONS(3155), + [sym___c_double_quote] = ACTIONS(3155), + [sym___c_single_quote] = ACTIONS(3155), + [sym___r_double_quote] = ACTIONS(3155), + [sym___r_single_quote] = ACTIONS(3155), }, [1060] = { - [ts_builtin_sym_end] = ACTIONS(2702), - [sym_identifier] = ACTIONS(2704), - [anon_sym_LF] = ACTIONS(2704), - [anon_sym_CR] = ACTIONS(2704), - [anon_sym_CR_LF] = ACTIONS(2704), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_as] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_COMMA] = ACTIONS(2704), - [anon_sym_const] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym___global] = ACTIONS(2704), - [anon_sym_type] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_SLASH] = ACTIONS(2704), - [anon_sym_PERCENT] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_EQ_EQ] = ACTIONS(2704), - [anon_sym_BANG_EQ] = ACTIONS(2704), - [anon_sym_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_EQ] = ACTIONS(2704), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_union] = ACTIONS(2704), - [anon_sym_pub] = ACTIONS(2704), - [anon_sym_mut] = ACTIONS(2704), - [anon_sym_enum] = ACTIONS(2704), - [anon_sym_interface] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_go] = ACTIONS(2704), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2704), - [anon_sym_LBRACK2] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_CARET] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_LT_DASH] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2704), - [anon_sym_GT_GT] = ACTIONS(2704), - [anon_sym_GT_GT_GT] = ACTIONS(2704), - [anon_sym_AMP_CARET] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_PIPE_PIPE] = ACTIONS(2704), - [anon_sym_or] = ACTIONS(2704), - [sym_none] = ACTIONS(2704), - [sym_true] = ACTIONS(2704), - [sym_false] = ACTIONS(2704), - [sym_nil] = ACTIONS(2704), - [anon_sym_QMARK_DOT] = ACTIONS(2704), - [anon_sym_POUND_LBRACK] = ACTIONS(2704), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_DOLLARif] = ACTIONS(2704), - [anon_sym_is] = ACTIONS(2704), - [anon_sym_BANGis] = ACTIONS(2704), - [anon_sym_in] = ACTIONS(2704), - [anon_sym_BANGin] = ACTIONS(2704), - [anon_sym_match] = ACTIONS(2704), - [anon_sym_select] = ACTIONS(2704), - [anon_sym_lock] = ACTIONS(2704), - [anon_sym_rlock] = ACTIONS(2704), - [anon_sym_unsafe] = ACTIONS(2704), - [anon_sym_sql] = ACTIONS(2704), - [sym_int_literal] = ACTIONS(2704), - [sym_float_literal] = ACTIONS(2704), - [sym_rune_literal] = ACTIONS(2704), - [anon_sym_AT] = ACTIONS(2704), - [anon_sym_shared] = ACTIONS(2704), - [anon_sym_map_LBRACK] = ACTIONS(2704), - [anon_sym_chan] = ACTIONS(2704), - [anon_sym_thread] = ACTIONS(2704), - [anon_sym_atomic] = ACTIONS(2704), - [anon_sym_assert] = ACTIONS(2704), - [anon_sym_defer] = ACTIONS(2704), - [anon_sym_goto] = ACTIONS(2704), - [anon_sym_break] = ACTIONS(2704), - [anon_sym_continue] = ACTIONS(2704), - [anon_sym_return] = ACTIONS(2704), - [anon_sym_DOLLARfor] = ACTIONS(2704), - [anon_sym_for] = ACTIONS(2704), - [anon_sym_POUND] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2704), - [anon_sym_AT_LBRACK] = ACTIONS(2704), - [sym___double_quote] = ACTIONS(2704), - [sym___single_quote] = ACTIONS(2704), - [sym___c_double_quote] = ACTIONS(2704), - [sym___c_single_quote] = ACTIONS(2704), - [sym___r_double_quote] = ACTIONS(2704), - [sym___r_single_quote] = ACTIONS(2704), + [ts_builtin_sym_end] = ACTIONS(3149), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LF] = ACTIONS(3151), + [anon_sym_CR] = ACTIONS(3151), + [anon_sym_CR_LF] = ACTIONS(3151), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3151), + [anon_sym_as] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_COMMA] = ACTIONS(3151), + [anon_sym_const] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym___global] = ACTIONS(3151), + [anon_sym_type] = ACTIONS(3151), + [anon_sym_PIPE] = ACTIONS(3151), + [anon_sym_fn] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_SLASH] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(3151), + [anon_sym_GT] = ACTIONS(3151), + [anon_sym_EQ_EQ] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3151), + [anon_sym_LT_EQ] = ACTIONS(3151), + [anon_sym_GT_EQ] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_struct] = ACTIONS(3151), + [anon_sym_union] = ACTIONS(3151), + [anon_sym_pub] = ACTIONS(3151), + [anon_sym_mut] = ACTIONS(3151), + [anon_sym_enum] = ACTIONS(3151), + [anon_sym_interface] = ACTIONS(3151), + [anon_sym_PLUS_PLUS] = ACTIONS(3151), + [anon_sym_DASH_DASH] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3151), + [anon_sym_BANG] = ACTIONS(3151), + [anon_sym_go] = ACTIONS(3151), + [anon_sym_spawn] = ACTIONS(3151), + [anon_sym_json_DOTdecode] = ACTIONS(3151), + [anon_sym_LBRACK2] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3151), + [anon_sym_CARET] = ACTIONS(3151), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LT_DASH] = ACTIONS(3151), + [anon_sym_LT_LT] = ACTIONS(3151), + [anon_sym_GT_GT] = ACTIONS(3151), + [anon_sym_GT_GT_GT] = ACTIONS(3151), + [anon_sym_AMP_CARET] = ACTIONS(3151), + [anon_sym_AMP_AMP] = ACTIONS(3151), + [anon_sym_PIPE_PIPE] = ACTIONS(3151), + [anon_sym_or] = ACTIONS(3151), + [sym_none] = ACTIONS(3151), + [sym_true] = ACTIONS(3151), + [sym_false] = ACTIONS(3151), + [sym_nil] = ACTIONS(3151), + [anon_sym_QMARK_DOT] = ACTIONS(3151), + [anon_sym_POUND_LBRACK] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_DOLLARif] = ACTIONS(3151), + [anon_sym_is] = ACTIONS(3151), + [anon_sym_BANGis] = ACTIONS(3151), + [anon_sym_in] = ACTIONS(3151), + [anon_sym_BANGin] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(3151), + [anon_sym_select] = ACTIONS(3151), + [anon_sym_lock] = ACTIONS(3151), + [anon_sym_rlock] = ACTIONS(3151), + [anon_sym_unsafe] = ACTIONS(3151), + [anon_sym_sql] = ACTIONS(3151), + [sym_int_literal] = ACTIONS(3151), + [sym_float_literal] = ACTIONS(3151), + [sym_rune_literal] = ACTIONS(3151), + [anon_sym_AT] = ACTIONS(3151), + [anon_sym_shared] = ACTIONS(3151), + [anon_sym_map_LBRACK] = ACTIONS(3151), + [anon_sym_chan] = ACTIONS(3151), + [anon_sym_thread] = ACTIONS(3151), + [anon_sym_atomic] = ACTIONS(3151), + [anon_sym_assert] = ACTIONS(3151), + [anon_sym_defer] = ACTIONS(3151), + [anon_sym_goto] = ACTIONS(3151), + [anon_sym_break] = ACTIONS(3151), + [anon_sym_continue] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_DOLLARfor] = ACTIONS(3151), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_POUND] = ACTIONS(3151), + [anon_sym_asm] = ACTIONS(3151), + [anon_sym_AT_LBRACK] = ACTIONS(3151), + [sym___double_quote] = ACTIONS(3151), + [sym___single_quote] = ACTIONS(3151), + [sym___c_double_quote] = ACTIONS(3151), + [sym___c_single_quote] = ACTIONS(3151), + [sym___r_double_quote] = ACTIONS(3151), + [sym___r_single_quote] = ACTIONS(3151), }, [1061] = { - [ts_builtin_sym_end] = ACTIONS(2770), - [sym_identifier] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2772), - [anon_sym_CR] = ACTIONS(2772), - [anon_sym_CR_LF] = ACTIONS(2772), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_as] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_COMMA] = ACTIONS(2772), - [anon_sym_const] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym___global] = ACTIONS(2772), - [anon_sym_type] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2772), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_PERCENT] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2772), - [anon_sym_BANG_EQ] = ACTIONS(2772), - [anon_sym_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_EQ] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_union] = ACTIONS(2772), - [anon_sym_pub] = ACTIONS(2772), - [anon_sym_mut] = ACTIONS(2772), - [anon_sym_enum] = ACTIONS(2772), - [anon_sym_interface] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [anon_sym_QMARK] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2772), - [anon_sym_json_DOTdecode] = ACTIONS(2772), - [anon_sym_LBRACK2] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_LT_DASH] = ACTIONS(2772), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_GT_GT_GT] = ACTIONS(2772), - [anon_sym_AMP_CARET] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_PIPE_PIPE] = ACTIONS(2772), - [anon_sym_or] = ACTIONS(2772), - [sym_none] = ACTIONS(2772), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_nil] = ACTIONS(2772), - [anon_sym_QMARK_DOT] = ACTIONS(2772), - [anon_sym_POUND_LBRACK] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_DOLLARif] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_BANGis] = ACTIONS(2772), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_BANGin] = ACTIONS(2772), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_select] = ACTIONS(2772), - [anon_sym_lock] = ACTIONS(2772), - [anon_sym_rlock] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_sql] = ACTIONS(2772), - [sym_int_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2772), - [sym_rune_literal] = ACTIONS(2772), - [anon_sym_AT] = ACTIONS(2772), - [anon_sym_shared] = ACTIONS(2772), - [anon_sym_map_LBRACK] = ACTIONS(2772), - [anon_sym_chan] = ACTIONS(2772), - [anon_sym_thread] = ACTIONS(2772), - [anon_sym_atomic] = ACTIONS(2772), - [anon_sym_assert] = ACTIONS(2772), - [anon_sym_defer] = ACTIONS(2772), - [anon_sym_goto] = ACTIONS(2772), - [anon_sym_break] = ACTIONS(2772), - [anon_sym_continue] = ACTIONS(2772), - [anon_sym_return] = ACTIONS(2772), - [anon_sym_DOLLARfor] = ACTIONS(2772), - [anon_sym_for] = ACTIONS(2772), - [anon_sym_POUND] = ACTIONS(2772), - [anon_sym_asm] = ACTIONS(2772), - [anon_sym_AT_LBRACK] = ACTIONS(2772), - [sym___double_quote] = ACTIONS(2772), - [sym___single_quote] = ACTIONS(2772), - [sym___c_double_quote] = ACTIONS(2772), - [sym___c_single_quote] = ACTIONS(2772), - [sym___r_double_quote] = ACTIONS(2772), - [sym___r_single_quote] = ACTIONS(2772), + [ts_builtin_sym_end] = ACTIONS(3131), + [sym_identifier] = ACTIONS(3133), + [anon_sym_LF] = ACTIONS(3133), + [anon_sym_CR] = ACTIONS(3133), + [anon_sym_CR_LF] = ACTIONS(3133), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3133), + [anon_sym_as] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3133), + [anon_sym_COMMA] = ACTIONS(3133), + [anon_sym_const] = ACTIONS(3133), + [anon_sym_LPAREN] = ACTIONS(3133), + [anon_sym___global] = ACTIONS(3133), + [anon_sym_type] = ACTIONS(3133), + [anon_sym_PIPE] = ACTIONS(3133), + [anon_sym_fn] = ACTIONS(3133), + [anon_sym_PLUS] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(3133), + [anon_sym_SLASH] = ACTIONS(3133), + [anon_sym_PERCENT] = ACTIONS(3133), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_LT_EQ] = ACTIONS(3133), + [anon_sym_GT_EQ] = ACTIONS(3133), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_struct] = ACTIONS(3133), + [anon_sym_union] = ACTIONS(3133), + [anon_sym_pub] = ACTIONS(3133), + [anon_sym_mut] = ACTIONS(3133), + [anon_sym_enum] = ACTIONS(3133), + [anon_sym_interface] = ACTIONS(3133), + [anon_sym_PLUS_PLUS] = ACTIONS(3133), + [anon_sym_DASH_DASH] = ACTIONS(3133), + [anon_sym_QMARK] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_go] = ACTIONS(3133), + [anon_sym_spawn] = ACTIONS(3133), + [anon_sym_json_DOTdecode] = ACTIONS(3133), + [anon_sym_LBRACK2] = ACTIONS(3133), + [anon_sym_TILDE] = ACTIONS(3133), + [anon_sym_CARET] = ACTIONS(3133), + [anon_sym_AMP] = ACTIONS(3133), + [anon_sym_LT_DASH] = ACTIONS(3133), + [anon_sym_LT_LT] = ACTIONS(3133), + [anon_sym_GT_GT] = ACTIONS(3133), + [anon_sym_GT_GT_GT] = ACTIONS(3133), + [anon_sym_AMP_CARET] = ACTIONS(3133), + [anon_sym_AMP_AMP] = ACTIONS(3133), + [anon_sym_PIPE_PIPE] = ACTIONS(3133), + [anon_sym_or] = ACTIONS(3133), + [sym_none] = ACTIONS(3133), + [sym_true] = ACTIONS(3133), + [sym_false] = ACTIONS(3133), + [sym_nil] = ACTIONS(3133), + [anon_sym_QMARK_DOT] = ACTIONS(3133), + [anon_sym_POUND_LBRACK] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_DOLLARif] = ACTIONS(3133), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3133), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_BANGin] = ACTIONS(3133), + [anon_sym_match] = ACTIONS(3133), + [anon_sym_select] = ACTIONS(3133), + [anon_sym_lock] = ACTIONS(3133), + [anon_sym_rlock] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(3133), + [anon_sym_sql] = ACTIONS(3133), + [sym_int_literal] = ACTIONS(3133), + [sym_float_literal] = ACTIONS(3133), + [sym_rune_literal] = ACTIONS(3133), + [anon_sym_AT] = ACTIONS(3133), + [anon_sym_shared] = ACTIONS(3133), + [anon_sym_map_LBRACK] = ACTIONS(3133), + [anon_sym_chan] = ACTIONS(3133), + [anon_sym_thread] = ACTIONS(3133), + [anon_sym_atomic] = ACTIONS(3133), + [anon_sym_assert] = ACTIONS(3133), + [anon_sym_defer] = ACTIONS(3133), + [anon_sym_goto] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_DOLLARfor] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3133), + [anon_sym_POUND] = ACTIONS(3133), + [anon_sym_asm] = ACTIONS(3133), + [anon_sym_AT_LBRACK] = ACTIONS(3133), + [sym___double_quote] = ACTIONS(3133), + [sym___single_quote] = ACTIONS(3133), + [sym___c_double_quote] = ACTIONS(3133), + [sym___c_single_quote] = ACTIONS(3133), + [sym___r_double_quote] = ACTIONS(3133), + [sym___r_single_quote] = ACTIONS(3133), }, [1062] = { - [ts_builtin_sym_end] = ACTIONS(3043), - [sym_identifier] = ACTIONS(3045), - [anon_sym_LF] = ACTIONS(3045), - [anon_sym_CR] = ACTIONS(3045), - [anon_sym_CR_LF] = ACTIONS(3045), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3045), - [anon_sym_as] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_const] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3045), - [anon_sym___global] = ACTIONS(3045), - [anon_sym_type] = ACTIONS(3045), - [anon_sym_PIPE] = ACTIONS(3045), - [anon_sym_fn] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3045), - [anon_sym_SLASH] = ACTIONS(3045), - [anon_sym_PERCENT] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(3045), - [anon_sym_GT] = ACTIONS(3045), - [anon_sym_EQ_EQ] = ACTIONS(3045), - [anon_sym_BANG_EQ] = ACTIONS(3045), - [anon_sym_LT_EQ] = ACTIONS(3045), - [anon_sym_GT_EQ] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_struct] = ACTIONS(3045), - [anon_sym_union] = ACTIONS(3045), - [anon_sym_pub] = ACTIONS(3045), - [anon_sym_mut] = ACTIONS(3045), - [anon_sym_enum] = ACTIONS(3045), - [anon_sym_interface] = ACTIONS(3045), - [anon_sym_PLUS_PLUS] = ACTIONS(3045), - [anon_sym_DASH_DASH] = ACTIONS(3045), - [anon_sym_QMARK] = ACTIONS(3045), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_go] = ACTIONS(3045), - [anon_sym_spawn] = ACTIONS(3045), - [anon_sym_json_DOTdecode] = ACTIONS(3045), - [anon_sym_LBRACK2] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_CARET] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3045), - [anon_sym_LT_DASH] = ACTIONS(3045), - [anon_sym_LT_LT] = ACTIONS(3045), - [anon_sym_GT_GT] = ACTIONS(3045), - [anon_sym_GT_GT_GT] = ACTIONS(3045), - [anon_sym_AMP_CARET] = ACTIONS(3045), - [anon_sym_AMP_AMP] = ACTIONS(3045), - [anon_sym_PIPE_PIPE] = ACTIONS(3045), - [anon_sym_or] = ACTIONS(3045), - [sym_none] = ACTIONS(3045), - [sym_true] = ACTIONS(3045), - [sym_false] = ACTIONS(3045), - [sym_nil] = ACTIONS(3045), - [anon_sym_QMARK_DOT] = ACTIONS(3045), - [anon_sym_POUND_LBRACK] = ACTIONS(3045), - [anon_sym_if] = ACTIONS(3045), - [anon_sym_DOLLARif] = ACTIONS(3045), - [anon_sym_is] = ACTIONS(3045), - [anon_sym_BANGis] = ACTIONS(3045), - [anon_sym_in] = ACTIONS(3045), - [anon_sym_BANGin] = ACTIONS(3045), - [anon_sym_match] = ACTIONS(3045), - [anon_sym_select] = ACTIONS(3045), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(3045), - [anon_sym_sql] = ACTIONS(3045), - [sym_int_literal] = ACTIONS(3045), - [sym_float_literal] = ACTIONS(3045), - [sym_rune_literal] = ACTIONS(3045), - [anon_sym_AT] = ACTIONS(3045), - [anon_sym_shared] = ACTIONS(3045), - [anon_sym_map_LBRACK] = ACTIONS(3045), - [anon_sym_chan] = ACTIONS(3045), - [anon_sym_thread] = ACTIONS(3045), - [anon_sym_atomic] = ACTIONS(3045), - [anon_sym_assert] = ACTIONS(3045), - [anon_sym_defer] = ACTIONS(3045), - [anon_sym_goto] = ACTIONS(3045), - [anon_sym_break] = ACTIONS(3045), - [anon_sym_continue] = ACTIONS(3045), - [anon_sym_return] = ACTIONS(3045), - [anon_sym_DOLLARfor] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3045), - [anon_sym_POUND] = ACTIONS(3045), - [anon_sym_asm] = ACTIONS(3045), - [anon_sym_AT_LBRACK] = ACTIONS(3045), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3045), - [sym___c_double_quote] = ACTIONS(3045), - [sym___c_single_quote] = ACTIONS(3045), - [sym___r_double_quote] = ACTIONS(3045), - [sym___r_single_quote] = ACTIONS(3045), + [ts_builtin_sym_end] = ACTIONS(3112), + [sym_identifier] = ACTIONS(3114), + [anon_sym_LF] = ACTIONS(3114), + [anon_sym_CR] = ACTIONS(3114), + [anon_sym_CR_LF] = ACTIONS(3114), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3114), + [anon_sym_as] = ACTIONS(3114), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_COMMA] = ACTIONS(3114), + [anon_sym_const] = ACTIONS(3114), + [anon_sym_LPAREN] = ACTIONS(3114), + [anon_sym___global] = ACTIONS(3114), + [anon_sym_type] = ACTIONS(3114), + [anon_sym_PIPE] = ACTIONS(3114), + [anon_sym_fn] = ACTIONS(3114), + [anon_sym_PLUS] = ACTIONS(3114), + [anon_sym_DASH] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(3114), + [anon_sym_SLASH] = ACTIONS(3114), + [anon_sym_PERCENT] = ACTIONS(3114), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_GT] = ACTIONS(3114), + [anon_sym_EQ_EQ] = ACTIONS(3114), + [anon_sym_BANG_EQ] = ACTIONS(3114), + [anon_sym_LT_EQ] = ACTIONS(3114), + [anon_sym_GT_EQ] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(3112), + [anon_sym_struct] = ACTIONS(3114), + [anon_sym_union] = ACTIONS(3114), + [anon_sym_pub] = ACTIONS(3114), + [anon_sym_mut] = ACTIONS(3114), + [anon_sym_enum] = ACTIONS(3114), + [anon_sym_interface] = ACTIONS(3114), + [anon_sym_PLUS_PLUS] = ACTIONS(3114), + [anon_sym_DASH_DASH] = ACTIONS(3114), + [anon_sym_QMARK] = ACTIONS(3114), + [anon_sym_BANG] = ACTIONS(3114), + [anon_sym_go] = ACTIONS(3114), + [anon_sym_spawn] = ACTIONS(3114), + [anon_sym_json_DOTdecode] = ACTIONS(3114), + [anon_sym_LBRACK2] = ACTIONS(3114), + [anon_sym_TILDE] = ACTIONS(3114), + [anon_sym_CARET] = ACTIONS(3114), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_LT_DASH] = ACTIONS(3114), + [anon_sym_LT_LT] = ACTIONS(3114), + [anon_sym_GT_GT] = ACTIONS(3114), + [anon_sym_GT_GT_GT] = ACTIONS(3114), + [anon_sym_AMP_CARET] = ACTIONS(3114), + [anon_sym_AMP_AMP] = ACTIONS(3114), + [anon_sym_PIPE_PIPE] = ACTIONS(3114), + [anon_sym_or] = ACTIONS(3114), + [sym_none] = ACTIONS(3114), + [sym_true] = ACTIONS(3114), + [sym_false] = ACTIONS(3114), + [sym_nil] = ACTIONS(3114), + [anon_sym_QMARK_DOT] = ACTIONS(3114), + [anon_sym_POUND_LBRACK] = ACTIONS(3114), + [anon_sym_if] = ACTIONS(3114), + [anon_sym_DOLLARif] = ACTIONS(3114), + [anon_sym_is] = ACTIONS(3114), + [anon_sym_BANGis] = ACTIONS(3114), + [anon_sym_in] = ACTIONS(3114), + [anon_sym_BANGin] = ACTIONS(3114), + [anon_sym_match] = ACTIONS(3114), + [anon_sym_select] = ACTIONS(3114), + [anon_sym_lock] = ACTIONS(3114), + [anon_sym_rlock] = ACTIONS(3114), + [anon_sym_unsafe] = ACTIONS(3114), + [anon_sym_sql] = ACTIONS(3114), + [sym_int_literal] = ACTIONS(3114), + [sym_float_literal] = ACTIONS(3114), + [sym_rune_literal] = ACTIONS(3114), + [anon_sym_AT] = ACTIONS(3114), + [anon_sym_shared] = ACTIONS(3114), + [anon_sym_map_LBRACK] = ACTIONS(3114), + [anon_sym_chan] = ACTIONS(3114), + [anon_sym_thread] = ACTIONS(3114), + [anon_sym_atomic] = ACTIONS(3114), + [anon_sym_assert] = ACTIONS(3114), + [anon_sym_defer] = ACTIONS(3114), + [anon_sym_goto] = ACTIONS(3114), + [anon_sym_break] = ACTIONS(3114), + [anon_sym_continue] = ACTIONS(3114), + [anon_sym_return] = ACTIONS(3114), + [anon_sym_DOLLARfor] = ACTIONS(3114), + [anon_sym_for] = ACTIONS(3114), + [anon_sym_POUND] = ACTIONS(3114), + [anon_sym_asm] = ACTIONS(3114), + [anon_sym_AT_LBRACK] = ACTIONS(3114), + [sym___double_quote] = ACTIONS(3114), + [sym___single_quote] = ACTIONS(3114), + [sym___c_double_quote] = ACTIONS(3114), + [sym___c_single_quote] = ACTIONS(3114), + [sym___r_double_quote] = ACTIONS(3114), + [sym___r_single_quote] = ACTIONS(3114), }, [1063] = { - [ts_builtin_sym_end] = ACTIONS(3035), - [sym_identifier] = ACTIONS(3037), - [anon_sym_LF] = ACTIONS(3037), - [anon_sym_CR] = ACTIONS(3037), - [anon_sym_CR_LF] = ACTIONS(3037), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_as] = ACTIONS(3037), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3037), - [anon_sym_const] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym___global] = ACTIONS(3037), - [anon_sym_type] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3037), - [anon_sym_fn] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_STAR] = ACTIONS(3037), - [anon_sym_SLASH] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(3037), - [anon_sym_GT] = ACTIONS(3037), - [anon_sym_EQ_EQ] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_LT_EQ] = ACTIONS(3037), - [anon_sym_GT_EQ] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_struct] = ACTIONS(3037), - [anon_sym_union] = ACTIONS(3037), - [anon_sym_pub] = ACTIONS(3037), - [anon_sym_mut] = ACTIONS(3037), - [anon_sym_enum] = ACTIONS(3037), - [anon_sym_interface] = ACTIONS(3037), - [anon_sym_PLUS_PLUS] = ACTIONS(3037), - [anon_sym_DASH_DASH] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_BANG] = ACTIONS(3037), - [anon_sym_go] = ACTIONS(3037), - [anon_sym_spawn] = ACTIONS(3037), - [anon_sym_json_DOTdecode] = ACTIONS(3037), - [anon_sym_LBRACK2] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3037), - [anon_sym_CARET] = ACTIONS(3037), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_LT_LT] = ACTIONS(3037), - [anon_sym_GT_GT] = ACTIONS(3037), - [anon_sym_GT_GT_GT] = ACTIONS(3037), - [anon_sym_AMP_CARET] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_or] = ACTIONS(3037), - [sym_none] = ACTIONS(3037), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [sym_nil] = ACTIONS(3037), - [anon_sym_QMARK_DOT] = ACTIONS(3037), - [anon_sym_POUND_LBRACK] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_DOLLARif] = ACTIONS(3037), - [anon_sym_is] = ACTIONS(3037), - [anon_sym_BANGis] = ACTIONS(3037), - [anon_sym_in] = ACTIONS(3037), - [anon_sym_BANGin] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_select] = ACTIONS(3037), - [anon_sym_lock] = ACTIONS(3037), - [anon_sym_rlock] = ACTIONS(3037), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3037), - [sym_int_literal] = ACTIONS(3037), - [sym_float_literal] = ACTIONS(3037), - [sym_rune_literal] = ACTIONS(3037), - [anon_sym_AT] = ACTIONS(3037), - [anon_sym_shared] = ACTIONS(3037), - [anon_sym_map_LBRACK] = ACTIONS(3037), - [anon_sym_chan] = ACTIONS(3037), - [anon_sym_thread] = ACTIONS(3037), - [anon_sym_atomic] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_defer] = ACTIONS(3037), - [anon_sym_goto] = ACTIONS(3037), - [anon_sym_break] = ACTIONS(3037), - [anon_sym_continue] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_DOLLARfor] = ACTIONS(3037), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_POUND] = ACTIONS(3037), - [anon_sym_asm] = ACTIONS(3037), - [anon_sym_AT_LBRACK] = ACTIONS(3037), - [sym___double_quote] = ACTIONS(3037), - [sym___single_quote] = ACTIONS(3037), - [sym___c_double_quote] = ACTIONS(3037), - [sym___c_single_quote] = ACTIONS(3037), - [sym___r_double_quote] = ACTIONS(3037), - [sym___r_single_quote] = ACTIONS(3037), + [ts_builtin_sym_end] = ACTIONS(3100), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LF] = ACTIONS(3102), + [anon_sym_CR] = ACTIONS(3102), + [anon_sym_CR_LF] = ACTIONS(3102), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3102), + [anon_sym_as] = ACTIONS(3102), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_COMMA] = ACTIONS(3102), + [anon_sym_const] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(3102), + [anon_sym___global] = ACTIONS(3102), + [anon_sym_type] = ACTIONS(3102), + [anon_sym_PIPE] = ACTIONS(3102), + [anon_sym_fn] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3102), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_SLASH] = ACTIONS(3102), + [anon_sym_PERCENT] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3102), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_EQ_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3102), + [anon_sym_LBRACK] = ACTIONS(3100), + [anon_sym_struct] = ACTIONS(3102), + [anon_sym_union] = ACTIONS(3102), + [anon_sym_pub] = ACTIONS(3102), + [anon_sym_mut] = ACTIONS(3102), + [anon_sym_enum] = ACTIONS(3102), + [anon_sym_interface] = ACTIONS(3102), + [anon_sym_PLUS_PLUS] = ACTIONS(3102), + [anon_sym_DASH_DASH] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3102), + [anon_sym_BANG] = ACTIONS(3102), + [anon_sym_go] = ACTIONS(3102), + [anon_sym_spawn] = ACTIONS(3102), + [anon_sym_json_DOTdecode] = ACTIONS(3102), + [anon_sym_LBRACK2] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3102), + [anon_sym_CARET] = ACTIONS(3102), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT_DASH] = ACTIONS(3102), + [anon_sym_LT_LT] = ACTIONS(3102), + [anon_sym_GT_GT] = ACTIONS(3102), + [anon_sym_GT_GT_GT] = ACTIONS(3102), + [anon_sym_AMP_CARET] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_or] = ACTIONS(3102), + [sym_none] = ACTIONS(3102), + [sym_true] = ACTIONS(3102), + [sym_false] = ACTIONS(3102), + [sym_nil] = ACTIONS(3102), + [anon_sym_QMARK_DOT] = ACTIONS(3102), + [anon_sym_POUND_LBRACK] = ACTIONS(3102), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_DOLLARif] = ACTIONS(3102), + [anon_sym_is] = ACTIONS(3102), + [anon_sym_BANGis] = ACTIONS(3102), + [anon_sym_in] = ACTIONS(3102), + [anon_sym_BANGin] = ACTIONS(3102), + [anon_sym_match] = ACTIONS(3102), + [anon_sym_select] = ACTIONS(3102), + [anon_sym_lock] = ACTIONS(3102), + [anon_sym_rlock] = ACTIONS(3102), + [anon_sym_unsafe] = ACTIONS(3102), + [anon_sym_sql] = ACTIONS(3102), + [sym_int_literal] = ACTIONS(3102), + [sym_float_literal] = ACTIONS(3102), + [sym_rune_literal] = ACTIONS(3102), + [anon_sym_AT] = ACTIONS(3102), + [anon_sym_shared] = ACTIONS(3102), + [anon_sym_map_LBRACK] = ACTIONS(3102), + [anon_sym_chan] = ACTIONS(3102), + [anon_sym_thread] = ACTIONS(3102), + [anon_sym_atomic] = ACTIONS(3102), + [anon_sym_assert] = ACTIONS(3102), + [anon_sym_defer] = ACTIONS(3102), + [anon_sym_goto] = ACTIONS(3102), + [anon_sym_break] = ACTIONS(3102), + [anon_sym_continue] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_DOLLARfor] = ACTIONS(3102), + [anon_sym_for] = ACTIONS(3102), + [anon_sym_POUND] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(3102), + [anon_sym_AT_LBRACK] = ACTIONS(3102), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3102), + [sym___c_double_quote] = ACTIONS(3102), + [sym___c_single_quote] = ACTIONS(3102), + [sym___r_double_quote] = ACTIONS(3102), + [sym___r_single_quote] = ACTIONS(3102), }, [1064] = { - [ts_builtin_sym_end] = ACTIONS(3031), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LF] = ACTIONS(3033), - [anon_sym_CR] = ACTIONS(3033), - [anon_sym_CR_LF] = ACTIONS(3033), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3033), - [anon_sym_as] = ACTIONS(3033), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3033), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym___global] = ACTIONS(3033), - [anon_sym_type] = ACTIONS(3033), - [anon_sym_PIPE] = ACTIONS(3033), - [anon_sym_fn] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_SLASH] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3033), - [anon_sym_EQ_EQ] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(3033), - [anon_sym_LT_EQ] = ACTIONS(3033), - [anon_sym_GT_EQ] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(3033), - [anon_sym_union] = ACTIONS(3033), - [anon_sym_pub] = ACTIONS(3033), - [anon_sym_mut] = ACTIONS(3033), - [anon_sym_enum] = ACTIONS(3033), - [anon_sym_interface] = ACTIONS(3033), - [anon_sym_PLUS_PLUS] = ACTIONS(3033), - [anon_sym_DASH_DASH] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3033), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_go] = ACTIONS(3033), - [anon_sym_spawn] = ACTIONS(3033), - [anon_sym_json_DOTdecode] = ACTIONS(3033), - [anon_sym_LBRACK2] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3033), - [anon_sym_CARET] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3033), - [anon_sym_LT_LT] = ACTIONS(3033), - [anon_sym_GT_GT] = ACTIONS(3033), - [anon_sym_GT_GT_GT] = ACTIONS(3033), - [anon_sym_AMP_CARET] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [anon_sym_or] = ACTIONS(3033), - [sym_none] = ACTIONS(3033), - [sym_true] = ACTIONS(3033), - [sym_false] = ACTIONS(3033), - [sym_nil] = ACTIONS(3033), - [anon_sym_QMARK_DOT] = ACTIONS(3033), - [anon_sym_POUND_LBRACK] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_DOLLARif] = ACTIONS(3033), - [anon_sym_is] = ACTIONS(3033), - [anon_sym_BANGis] = ACTIONS(3033), - [anon_sym_in] = ACTIONS(3033), - [anon_sym_BANGin] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_select] = ACTIONS(3033), - [anon_sym_lock] = ACTIONS(3033), - [anon_sym_rlock] = ACTIONS(3033), - [anon_sym_unsafe] = ACTIONS(3033), - [anon_sym_sql] = ACTIONS(3033), - [sym_int_literal] = ACTIONS(3033), - [sym_float_literal] = ACTIONS(3033), - [sym_rune_literal] = ACTIONS(3033), - [anon_sym_AT] = ACTIONS(3033), - [anon_sym_shared] = ACTIONS(3033), - [anon_sym_map_LBRACK] = ACTIONS(3033), - [anon_sym_chan] = ACTIONS(3033), - [anon_sym_thread] = ACTIONS(3033), - [anon_sym_atomic] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_defer] = ACTIONS(3033), - [anon_sym_goto] = ACTIONS(3033), - [anon_sym_break] = ACTIONS(3033), - [anon_sym_continue] = ACTIONS(3033), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_DOLLARfor] = ACTIONS(3033), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_POUND] = ACTIONS(3033), - [anon_sym_asm] = ACTIONS(3033), - [anon_sym_AT_LBRACK] = ACTIONS(3033), - [sym___double_quote] = ACTIONS(3033), - [sym___single_quote] = ACTIONS(3033), - [sym___c_double_quote] = ACTIONS(3033), - [sym___c_single_quote] = ACTIONS(3033), - [sym___r_double_quote] = ACTIONS(3033), - [sym___r_single_quote] = ACTIONS(3033), + [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), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3070), + [sym___single_quote] = ACTIONS(3070), + [sym___c_double_quote] = ACTIONS(3070), + [sym___c_single_quote] = ACTIONS(3070), + [sym___r_double_quote] = ACTIONS(3070), + [sym___r_single_quote] = ACTIONS(3070), }, [1065] = { - [ts_builtin_sym_end] = ACTIONS(2957), - [sym_identifier] = ACTIONS(2959), - [anon_sym_LF] = ACTIONS(2959), - [anon_sym_CR] = ACTIONS(2959), - [anon_sym_CR_LF] = ACTIONS(2959), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2959), - [anon_sym_as] = ACTIONS(2959), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_COMMA] = ACTIONS(2959), - [anon_sym_const] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym___global] = ACTIONS(2959), - [anon_sym_type] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_fn] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_SLASH] = ACTIONS(2959), - [anon_sym_PERCENT] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2959), - [anon_sym_GT] = ACTIONS(2959), - [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(2957), - [anon_sym_struct] = ACTIONS(2959), - [anon_sym_union] = ACTIONS(2959), - [anon_sym_pub] = ACTIONS(2959), - [anon_sym_mut] = ACTIONS(2959), - [anon_sym_enum] = ACTIONS(2959), - [anon_sym_interface] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2959), - [anon_sym_go] = ACTIONS(2959), - [anon_sym_spawn] = ACTIONS(2959), - [anon_sym_json_DOTdecode] = ACTIONS(2959), - [anon_sym_LBRACK2] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2959), - [anon_sym_CARET] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_LT_DASH] = ACTIONS(2959), - [anon_sym_LT_LT] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(2959), - [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(2959), - [sym_none] = ACTIONS(2959), - [sym_true] = ACTIONS(2959), - [sym_false] = ACTIONS(2959), - [sym_nil] = ACTIONS(2959), - [anon_sym_QMARK_DOT] = ACTIONS(2959), - [anon_sym_POUND_LBRACK] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_DOLLARif] = ACTIONS(2959), - [anon_sym_is] = ACTIONS(2959), - [anon_sym_BANGis] = ACTIONS(2959), - [anon_sym_in] = ACTIONS(2959), - [anon_sym_BANGin] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_select] = ACTIONS(2959), - [anon_sym_lock] = ACTIONS(2959), - [anon_sym_rlock] = ACTIONS(2959), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2959), - [sym_int_literal] = ACTIONS(2959), - [sym_float_literal] = ACTIONS(2959), - [sym_rune_literal] = ACTIONS(2959), - [anon_sym_AT] = ACTIONS(2959), - [anon_sym_shared] = ACTIONS(2959), - [anon_sym_map_LBRACK] = ACTIONS(2959), - [anon_sym_chan] = ACTIONS(2959), - [anon_sym_thread] = ACTIONS(2959), - [anon_sym_atomic] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_defer] = ACTIONS(2959), - [anon_sym_goto] = ACTIONS(2959), - [anon_sym_break] = ACTIONS(2959), - [anon_sym_continue] = ACTIONS(2959), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_DOLLARfor] = ACTIONS(2959), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_POUND] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2959), - [anon_sym_AT_LBRACK] = ACTIONS(2959), - [sym___double_quote] = ACTIONS(2959), - [sym___single_quote] = ACTIONS(2959), - [sym___c_double_quote] = ACTIONS(2959), - [sym___c_single_quote] = ACTIONS(2959), - [sym___r_double_quote] = ACTIONS(2959), - [sym___r_single_quote] = ACTIONS(2959), + [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), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3062), + [sym___single_quote] = ACTIONS(3062), + [sym___c_double_quote] = ACTIONS(3062), + [sym___c_single_quote] = ACTIONS(3062), + [sym___r_double_quote] = ACTIONS(3062), + [sym___r_single_quote] = ACTIONS(3062), }, [1066] = { - [ts_builtin_sym_end] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2927), - [anon_sym_LF] = ACTIONS(2927), - [anon_sym_CR] = ACTIONS(2927), - [anon_sym_CR_LF] = ACTIONS(2927), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2927), - [anon_sym_as] = ACTIONS(2927), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_COMMA] = ACTIONS(2927), - [anon_sym_const] = ACTIONS(2927), - [anon_sym_LPAREN] = ACTIONS(2927), - [anon_sym___global] = ACTIONS(2927), - [anon_sym_type] = ACTIONS(2927), - [anon_sym_PIPE] = ACTIONS(2927), - [anon_sym_fn] = ACTIONS(2927), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_SLASH] = ACTIONS(2927), - [anon_sym_PERCENT] = ACTIONS(2927), - [anon_sym_LT] = ACTIONS(2927), - [anon_sym_GT] = ACTIONS(2927), - [anon_sym_EQ_EQ] = ACTIONS(2927), - [anon_sym_BANG_EQ] = ACTIONS(2927), - [anon_sym_LT_EQ] = ACTIONS(2927), - [anon_sym_GT_EQ] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_struct] = ACTIONS(2927), - [anon_sym_union] = ACTIONS(2927), - [anon_sym_pub] = ACTIONS(2927), - [anon_sym_mut] = ACTIONS(2927), - [anon_sym_enum] = ACTIONS(2927), - [anon_sym_interface] = ACTIONS(2927), - [anon_sym_PLUS_PLUS] = ACTIONS(2927), - [anon_sym_DASH_DASH] = ACTIONS(2927), - [anon_sym_QMARK] = ACTIONS(2927), - [anon_sym_BANG] = ACTIONS(2927), - [anon_sym_go] = ACTIONS(2927), - [anon_sym_spawn] = ACTIONS(2927), - [anon_sym_json_DOTdecode] = ACTIONS(2927), - [anon_sym_LBRACK2] = ACTIONS(2927), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_CARET] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2927), - [anon_sym_LT_LT] = ACTIONS(2927), - [anon_sym_GT_GT] = ACTIONS(2927), - [anon_sym_GT_GT_GT] = ACTIONS(2927), - [anon_sym_AMP_CARET] = ACTIONS(2927), - [anon_sym_AMP_AMP] = ACTIONS(2927), - [anon_sym_PIPE_PIPE] = ACTIONS(2927), - [anon_sym_or] = ACTIONS(2927), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_QMARK_DOT] = ACTIONS(2927), - [anon_sym_POUND_LBRACK] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2927), - [anon_sym_DOLLARif] = ACTIONS(2927), - [anon_sym_is] = ACTIONS(2927), - [anon_sym_BANGis] = ACTIONS(2927), - [anon_sym_in] = ACTIONS(2927), - [anon_sym_BANGin] = ACTIONS(2927), - [anon_sym_match] = ACTIONS(2927), - [anon_sym_select] = ACTIONS(2927), - [anon_sym_lock] = ACTIONS(2927), - [anon_sym_rlock] = ACTIONS(2927), - [anon_sym_unsafe] = ACTIONS(2927), - [anon_sym_sql] = ACTIONS(2927), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2927), - [sym_rune_literal] = ACTIONS(2927), - [anon_sym_AT] = ACTIONS(2927), - [anon_sym_shared] = ACTIONS(2927), - [anon_sym_map_LBRACK] = ACTIONS(2927), - [anon_sym_chan] = ACTIONS(2927), - [anon_sym_thread] = ACTIONS(2927), - [anon_sym_atomic] = ACTIONS(2927), - [anon_sym_assert] = ACTIONS(2927), - [anon_sym_defer] = ACTIONS(2927), - [anon_sym_goto] = ACTIONS(2927), - [anon_sym_break] = ACTIONS(2927), - [anon_sym_continue] = ACTIONS(2927), - [anon_sym_return] = ACTIONS(2927), - [anon_sym_DOLLARfor] = ACTIONS(2927), - [anon_sym_for] = ACTIONS(2927), - [anon_sym_POUND] = ACTIONS(2927), - [anon_sym_asm] = ACTIONS(2927), - [anon_sym_AT_LBRACK] = ACTIONS(2927), - [sym___double_quote] = ACTIONS(2927), - [sym___single_quote] = ACTIONS(2927), - [sym___c_double_quote] = ACTIONS(2927), - [sym___c_single_quote] = ACTIONS(2927), - [sym___r_double_quote] = ACTIONS(2927), - [sym___r_single_quote] = ACTIONS(2927), + [ts_builtin_sym_end] = ACTIONS(2738), + [sym_identifier] = ACTIONS(2740), + [anon_sym_LF] = ACTIONS(2740), + [anon_sym_CR] = ACTIONS(2740), + [anon_sym_CR_LF] = ACTIONS(2740), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2740), + [anon_sym_as] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2740), + [anon_sym_COMMA] = ACTIONS(2740), + [anon_sym_const] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(2740), + [anon_sym___global] = ACTIONS(2740), + [anon_sym_type] = ACTIONS(2740), + [anon_sym_PIPE] = ACTIONS(2740), + [anon_sym_fn] = ACTIONS(2740), + [anon_sym_PLUS] = ACTIONS(2740), + [anon_sym_DASH] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_SLASH] = ACTIONS(2740), + [anon_sym_PERCENT] = ACTIONS(2740), + [anon_sym_LT] = ACTIONS(2740), + [anon_sym_GT] = ACTIONS(2740), + [anon_sym_EQ_EQ] = ACTIONS(2740), + [anon_sym_BANG_EQ] = ACTIONS(2740), + [anon_sym_LT_EQ] = ACTIONS(2740), + [anon_sym_GT_EQ] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(2738), + [anon_sym_struct] = ACTIONS(2740), + [anon_sym_union] = ACTIONS(2740), + [anon_sym_pub] = ACTIONS(2740), + [anon_sym_mut] = ACTIONS(2740), + [anon_sym_enum] = ACTIONS(2740), + [anon_sym_interface] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2740), + [anon_sym_DASH_DASH] = ACTIONS(2740), + [anon_sym_QMARK] = ACTIONS(2740), + [anon_sym_BANG] = ACTIONS(2740), + [anon_sym_go] = ACTIONS(2740), + [anon_sym_spawn] = ACTIONS(2740), + [anon_sym_json_DOTdecode] = ACTIONS(2740), + [anon_sym_LBRACK2] = ACTIONS(2740), + [anon_sym_TILDE] = ACTIONS(2740), + [anon_sym_CARET] = ACTIONS(2740), + [anon_sym_AMP] = ACTIONS(2740), + [anon_sym_LT_DASH] = ACTIONS(2740), + [anon_sym_LT_LT] = ACTIONS(2740), + [anon_sym_GT_GT] = ACTIONS(2740), + [anon_sym_GT_GT_GT] = ACTIONS(2740), + [anon_sym_AMP_CARET] = ACTIONS(2740), + [anon_sym_AMP_AMP] = ACTIONS(2740), + [anon_sym_PIPE_PIPE] = ACTIONS(2740), + [anon_sym_or] = ACTIONS(2740), + [sym_none] = ACTIONS(2740), + [sym_true] = ACTIONS(2740), + [sym_false] = ACTIONS(2740), + [sym_nil] = ACTIONS(2740), + [anon_sym_QMARK_DOT] = ACTIONS(2740), + [anon_sym_POUND_LBRACK] = ACTIONS(2740), + [anon_sym_if] = ACTIONS(2740), + [anon_sym_DOLLARif] = ACTIONS(2740), + [anon_sym_is] = ACTIONS(2740), + [anon_sym_BANGis] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2740), + [anon_sym_BANGin] = ACTIONS(2740), + [anon_sym_match] = ACTIONS(2740), + [anon_sym_select] = ACTIONS(2740), + [anon_sym_lock] = ACTIONS(2740), + [anon_sym_rlock] = ACTIONS(2740), + [anon_sym_unsafe] = ACTIONS(2740), + [anon_sym_sql] = ACTIONS(2740), + [sym_int_literal] = ACTIONS(2740), + [sym_float_literal] = ACTIONS(2740), + [sym_rune_literal] = ACTIONS(2740), + [anon_sym_AT] = ACTIONS(2740), + [anon_sym_shared] = ACTIONS(2740), + [anon_sym_map_LBRACK] = ACTIONS(2740), + [anon_sym_chan] = ACTIONS(2740), + [anon_sym_thread] = ACTIONS(2740), + [anon_sym_atomic] = ACTIONS(2740), + [anon_sym_assert] = ACTIONS(2740), + [anon_sym_defer] = ACTIONS(2740), + [anon_sym_goto] = ACTIONS(2740), + [anon_sym_break] = ACTIONS(2740), + [anon_sym_continue] = ACTIONS(2740), + [anon_sym_return] = ACTIONS(2740), + [anon_sym_DOLLARfor] = ACTIONS(2740), + [anon_sym_for] = ACTIONS(2740), + [anon_sym_POUND] = ACTIONS(2740), + [anon_sym_asm] = ACTIONS(2740), + [anon_sym_AT_LBRACK] = ACTIONS(2740), + [sym___double_quote] = ACTIONS(2740), + [sym___single_quote] = ACTIONS(2740), + [sym___c_double_quote] = ACTIONS(2740), + [sym___c_single_quote] = ACTIONS(2740), + [sym___r_double_quote] = ACTIONS(2740), + [sym___r_single_quote] = ACTIONS(2740), }, [1067] = { - [ts_builtin_sym_end] = ACTIONS(3155), - [sym_identifier] = ACTIONS(3157), - [anon_sym_LF] = ACTIONS(3157), - [anon_sym_CR] = ACTIONS(3157), - [anon_sym_CR_LF] = ACTIONS(3157), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3157), - [anon_sym_as] = ACTIONS(3157), - [anon_sym_LBRACE] = ACTIONS(3157), - [anon_sym_COMMA] = ACTIONS(3157), - [anon_sym_const] = ACTIONS(3157), - [anon_sym_LPAREN] = ACTIONS(3157), - [anon_sym___global] = ACTIONS(3157), - [anon_sym_type] = ACTIONS(3157), - [anon_sym_PIPE] = ACTIONS(3157), - [anon_sym_fn] = ACTIONS(3157), - [anon_sym_PLUS] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(3157), - [anon_sym_STAR] = ACTIONS(3157), - [anon_sym_SLASH] = ACTIONS(3157), - [anon_sym_PERCENT] = ACTIONS(3157), - [anon_sym_LT] = ACTIONS(3157), - [anon_sym_GT] = ACTIONS(3157), - [anon_sym_EQ_EQ] = ACTIONS(3157), - [anon_sym_BANG_EQ] = ACTIONS(3157), - [anon_sym_LT_EQ] = ACTIONS(3157), - [anon_sym_GT_EQ] = ACTIONS(3157), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3157), - [anon_sym_union] = ACTIONS(3157), - [anon_sym_pub] = ACTIONS(3157), - [anon_sym_mut] = ACTIONS(3157), - [anon_sym_enum] = ACTIONS(3157), - [anon_sym_interface] = ACTIONS(3157), - [anon_sym_PLUS_PLUS] = ACTIONS(3157), - [anon_sym_DASH_DASH] = ACTIONS(3157), - [anon_sym_QMARK] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3157), - [anon_sym_go] = ACTIONS(3157), - [anon_sym_spawn] = ACTIONS(3157), - [anon_sym_json_DOTdecode] = ACTIONS(3157), - [anon_sym_LBRACK2] = ACTIONS(3157), - [anon_sym_TILDE] = ACTIONS(3157), - [anon_sym_CARET] = ACTIONS(3157), - [anon_sym_AMP] = ACTIONS(3157), - [anon_sym_LT_DASH] = ACTIONS(3157), - [anon_sym_LT_LT] = ACTIONS(3157), - [anon_sym_GT_GT] = ACTIONS(3157), - [anon_sym_GT_GT_GT] = ACTIONS(3157), - [anon_sym_AMP_CARET] = ACTIONS(3157), - [anon_sym_AMP_AMP] = ACTIONS(3157), - [anon_sym_PIPE_PIPE] = ACTIONS(3157), - [anon_sym_or] = ACTIONS(3157), - [sym_none] = ACTIONS(3157), - [sym_true] = ACTIONS(3157), - [sym_false] = ACTIONS(3157), - [sym_nil] = ACTIONS(3157), - [anon_sym_QMARK_DOT] = ACTIONS(3157), - [anon_sym_POUND_LBRACK] = ACTIONS(3157), - [anon_sym_if] = ACTIONS(3157), - [anon_sym_DOLLARif] = ACTIONS(3157), - [anon_sym_is] = ACTIONS(3157), - [anon_sym_BANGis] = ACTIONS(3157), - [anon_sym_in] = ACTIONS(3157), - [anon_sym_BANGin] = ACTIONS(3157), - [anon_sym_match] = ACTIONS(3157), - [anon_sym_select] = ACTIONS(3157), - [anon_sym_lock] = ACTIONS(3157), - [anon_sym_rlock] = ACTIONS(3157), - [anon_sym_unsafe] = ACTIONS(3157), - [anon_sym_sql] = ACTIONS(3157), - [sym_int_literal] = ACTIONS(3157), - [sym_float_literal] = ACTIONS(3157), - [sym_rune_literal] = ACTIONS(3157), - [anon_sym_AT] = ACTIONS(3157), - [anon_sym_shared] = ACTIONS(3157), - [anon_sym_map_LBRACK] = ACTIONS(3157), - [anon_sym_chan] = ACTIONS(3157), - [anon_sym_thread] = ACTIONS(3157), - [anon_sym_atomic] = ACTIONS(3157), - [anon_sym_assert] = ACTIONS(3157), - [anon_sym_defer] = ACTIONS(3157), - [anon_sym_goto] = ACTIONS(3157), - [anon_sym_break] = ACTIONS(3157), - [anon_sym_continue] = ACTIONS(3157), - [anon_sym_return] = ACTIONS(3157), - [anon_sym_DOLLARfor] = ACTIONS(3157), - [anon_sym_for] = ACTIONS(3157), - [anon_sym_POUND] = ACTIONS(3157), - [anon_sym_asm] = ACTIONS(3157), - [anon_sym_AT_LBRACK] = ACTIONS(3157), - [sym___double_quote] = ACTIONS(3157), - [sym___single_quote] = ACTIONS(3157), - [sym___c_double_quote] = ACTIONS(3157), - [sym___c_single_quote] = ACTIONS(3157), - [sym___r_double_quote] = ACTIONS(3157), - [sym___r_single_quote] = ACTIONS(3157), + [ts_builtin_sym_end] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3034), + [anon_sym_LF] = ACTIONS(3034), + [anon_sym_CR] = ACTIONS(3034), + [anon_sym_CR_LF] = ACTIONS(3034), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3034), + [anon_sym_as] = ACTIONS(3034), + [anon_sym_LBRACE] = ACTIONS(3034), + [anon_sym_COMMA] = ACTIONS(3034), + [anon_sym_const] = ACTIONS(3034), + [anon_sym_LPAREN] = ACTIONS(3034), + [anon_sym___global] = ACTIONS(3034), + [anon_sym_type] = ACTIONS(3034), + [anon_sym_PIPE] = ACTIONS(3034), + [anon_sym_fn] = ACTIONS(3034), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_STAR] = ACTIONS(3034), + [anon_sym_SLASH] = ACTIONS(3034), + [anon_sym_PERCENT] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(3034), + [anon_sym_GT] = ACTIONS(3034), + [anon_sym_EQ_EQ] = ACTIONS(3034), + [anon_sym_BANG_EQ] = ACTIONS(3034), + [anon_sym_LT_EQ] = ACTIONS(3034), + [anon_sym_GT_EQ] = ACTIONS(3034), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_struct] = ACTIONS(3034), + [anon_sym_union] = ACTIONS(3034), + [anon_sym_pub] = ACTIONS(3034), + [anon_sym_mut] = ACTIONS(3034), + [anon_sym_enum] = ACTIONS(3034), + [anon_sym_interface] = ACTIONS(3034), + [anon_sym_PLUS_PLUS] = ACTIONS(3034), + [anon_sym_DASH_DASH] = ACTIONS(3034), + [anon_sym_QMARK] = ACTIONS(3034), + [anon_sym_BANG] = ACTIONS(3034), + [anon_sym_go] = ACTIONS(3034), + [anon_sym_spawn] = ACTIONS(3034), + [anon_sym_json_DOTdecode] = ACTIONS(3034), + [anon_sym_LBRACK2] = ACTIONS(3034), + [anon_sym_TILDE] = ACTIONS(3034), + [anon_sym_CARET] = ACTIONS(3034), + [anon_sym_AMP] = ACTIONS(3034), + [anon_sym_LT_DASH] = ACTIONS(3034), + [anon_sym_LT_LT] = ACTIONS(3034), + [anon_sym_GT_GT] = ACTIONS(3034), + [anon_sym_GT_GT_GT] = ACTIONS(3034), + [anon_sym_AMP_CARET] = ACTIONS(3034), + [anon_sym_AMP_AMP] = ACTIONS(3034), + [anon_sym_PIPE_PIPE] = ACTIONS(3034), + [anon_sym_or] = ACTIONS(3034), + [sym_none] = ACTIONS(3034), + [sym_true] = ACTIONS(3034), + [sym_false] = ACTIONS(3034), + [sym_nil] = ACTIONS(3034), + [anon_sym_QMARK_DOT] = ACTIONS(3034), + [anon_sym_POUND_LBRACK] = ACTIONS(3034), + [anon_sym_if] = ACTIONS(3034), + [anon_sym_DOLLARif] = ACTIONS(3034), + [anon_sym_is] = ACTIONS(3034), + [anon_sym_BANGis] = ACTIONS(3034), + [anon_sym_in] = ACTIONS(3034), + [anon_sym_BANGin] = ACTIONS(3034), + [anon_sym_match] = ACTIONS(3034), + [anon_sym_select] = ACTIONS(3034), + [anon_sym_lock] = ACTIONS(3034), + [anon_sym_rlock] = ACTIONS(3034), + [anon_sym_unsafe] = ACTIONS(3034), + [anon_sym_sql] = ACTIONS(3034), + [sym_int_literal] = ACTIONS(3034), + [sym_float_literal] = ACTIONS(3034), + [sym_rune_literal] = ACTIONS(3034), + [anon_sym_AT] = ACTIONS(3034), + [anon_sym_shared] = ACTIONS(3034), + [anon_sym_map_LBRACK] = ACTIONS(3034), + [anon_sym_chan] = ACTIONS(3034), + [anon_sym_thread] = ACTIONS(3034), + [anon_sym_atomic] = ACTIONS(3034), + [anon_sym_assert] = ACTIONS(3034), + [anon_sym_defer] = ACTIONS(3034), + [anon_sym_goto] = ACTIONS(3034), + [anon_sym_break] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(3034), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_DOLLARfor] = ACTIONS(3034), + [anon_sym_for] = ACTIONS(3034), + [anon_sym_POUND] = ACTIONS(3034), + [anon_sym_asm] = ACTIONS(3034), + [anon_sym_AT_LBRACK] = ACTIONS(3034), + [sym___double_quote] = ACTIONS(3034), + [sym___single_quote] = ACTIONS(3034), + [sym___c_double_quote] = ACTIONS(3034), + [sym___c_single_quote] = ACTIONS(3034), + [sym___r_double_quote] = ACTIONS(3034), + [sym___r_single_quote] = ACTIONS(3034), }, [1068] = { - [ts_builtin_sym_end] = ACTIONS(3039), - [sym_identifier] = ACTIONS(3041), - [anon_sym_LF] = ACTIONS(3041), - [anon_sym_CR] = ACTIONS(3041), - [anon_sym_CR_LF] = ACTIONS(3041), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3041), - [anon_sym_as] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3041), - [anon_sym_COMMA] = ACTIONS(3041), - [anon_sym_const] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(3041), - [anon_sym___global] = ACTIONS(3041), - [anon_sym_type] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3041), - [anon_sym_fn] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3041), - [anon_sym_SLASH] = ACTIONS(3041), - [anon_sym_PERCENT] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(3041), - [anon_sym_GT] = ACTIONS(3041), - [anon_sym_EQ_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ] = ACTIONS(3041), - [anon_sym_LT_EQ] = ACTIONS(3041), - [anon_sym_GT_EQ] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3039), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_union] = ACTIONS(3041), - [anon_sym_pub] = ACTIONS(3041), - [anon_sym_mut] = ACTIONS(3041), - [anon_sym_enum] = ACTIONS(3041), - [anon_sym_interface] = ACTIONS(3041), - [anon_sym_PLUS_PLUS] = ACTIONS(3041), - [anon_sym_DASH_DASH] = ACTIONS(3041), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3041), - [anon_sym_go] = ACTIONS(3041), - [anon_sym_spawn] = ACTIONS(3041), - [anon_sym_json_DOTdecode] = ACTIONS(3041), - [anon_sym_LBRACK2] = ACTIONS(3041), - [anon_sym_TILDE] = ACTIONS(3041), - [anon_sym_CARET] = ACTIONS(3041), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_LT_DASH] = ACTIONS(3041), - [anon_sym_LT_LT] = ACTIONS(3041), - [anon_sym_GT_GT] = ACTIONS(3041), - [anon_sym_GT_GT_GT] = ACTIONS(3041), - [anon_sym_AMP_CARET] = ACTIONS(3041), - [anon_sym_AMP_AMP] = ACTIONS(3041), - [anon_sym_PIPE_PIPE] = ACTIONS(3041), - [anon_sym_or] = ACTIONS(3041), - [sym_none] = ACTIONS(3041), - [sym_true] = ACTIONS(3041), - [sym_false] = ACTIONS(3041), - [sym_nil] = ACTIONS(3041), - [anon_sym_QMARK_DOT] = ACTIONS(3041), - [anon_sym_POUND_LBRACK] = ACTIONS(3041), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_DOLLARif] = ACTIONS(3041), - [anon_sym_is] = ACTIONS(3041), - [anon_sym_BANGis] = ACTIONS(3041), - [anon_sym_in] = ACTIONS(3041), - [anon_sym_BANGin] = ACTIONS(3041), - [anon_sym_match] = ACTIONS(3041), - [anon_sym_select] = ACTIONS(3041), - [anon_sym_lock] = ACTIONS(3041), - [anon_sym_rlock] = ACTIONS(3041), - [anon_sym_unsafe] = ACTIONS(3041), - [anon_sym_sql] = ACTIONS(3041), - [sym_int_literal] = ACTIONS(3041), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [anon_sym_AT] = ACTIONS(3041), - [anon_sym_shared] = ACTIONS(3041), - [anon_sym_map_LBRACK] = ACTIONS(3041), - [anon_sym_chan] = ACTIONS(3041), - [anon_sym_thread] = ACTIONS(3041), - [anon_sym_atomic] = ACTIONS(3041), - [anon_sym_assert] = ACTIONS(3041), - [anon_sym_defer] = ACTIONS(3041), - [anon_sym_goto] = ACTIONS(3041), - [anon_sym_break] = ACTIONS(3041), - [anon_sym_continue] = ACTIONS(3041), - [anon_sym_return] = ACTIONS(3041), - [anon_sym_DOLLARfor] = ACTIONS(3041), - [anon_sym_for] = ACTIONS(3041), - [anon_sym_POUND] = ACTIONS(3041), - [anon_sym_asm] = ACTIONS(3041), - [anon_sym_AT_LBRACK] = ACTIONS(3041), - [sym___double_quote] = ACTIONS(3041), - [sym___single_quote] = ACTIONS(3041), - [sym___c_double_quote] = ACTIONS(3041), - [sym___c_single_quote] = ACTIONS(3041), - [sym___r_double_quote] = ACTIONS(3041), - [sym___r_single_quote] = ACTIONS(3041), + [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), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3026), + [sym___single_quote] = ACTIONS(3026), + [sym___c_double_quote] = ACTIONS(3026), + [sym___c_single_quote] = ACTIONS(3026), + [sym___r_double_quote] = ACTIONS(3026), + [sym___r_single_quote] = ACTIONS(3026), }, [1069] = { - [ts_builtin_sym_end] = ACTIONS(3195), - [sym_identifier] = ACTIONS(3197), - [anon_sym_LF] = ACTIONS(3197), - [anon_sym_CR] = ACTIONS(3197), - [anon_sym_CR_LF] = ACTIONS(3197), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3197), - [anon_sym_as] = ACTIONS(3197), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_COMMA] = ACTIONS(3197), - [anon_sym_const] = ACTIONS(3197), - [anon_sym_LPAREN] = ACTIONS(3197), - [anon_sym___global] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3197), - [anon_sym_PIPE] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3195), - [anon_sym_struct] = ACTIONS(3197), - [anon_sym_union] = ACTIONS(3197), - [anon_sym_pub] = ACTIONS(3197), - [anon_sym_mut] = ACTIONS(3197), - [anon_sym_enum] = ACTIONS(3197), - [anon_sym_interface] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_DASH_DASH] = ACTIONS(3197), - [anon_sym_QMARK] = ACTIONS(3197), - [anon_sym_BANG] = ACTIONS(3197), - [anon_sym_go] = ACTIONS(3197), - [anon_sym_spawn] = ACTIONS(3197), - [anon_sym_json_DOTdecode] = ACTIONS(3197), - [anon_sym_LBRACK2] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_CARET] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_LT_DASH] = ACTIONS(3197), - [anon_sym_LT_LT] = ACTIONS(3197), - [anon_sym_GT_GT] = ACTIONS(3197), - [anon_sym_GT_GT_GT] = ACTIONS(3197), - [anon_sym_AMP_CARET] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3197), - [sym_none] = ACTIONS(3197), - [sym_true] = ACTIONS(3197), - [sym_false] = ACTIONS(3197), - [sym_nil] = ACTIONS(3197), - [anon_sym_QMARK_DOT] = ACTIONS(3197), - [anon_sym_POUND_LBRACK] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_DOLLARif] = ACTIONS(3197), - [anon_sym_is] = ACTIONS(3197), - [anon_sym_BANGis] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_BANGin] = ACTIONS(3197), - [anon_sym_match] = ACTIONS(3197), - [anon_sym_select] = ACTIONS(3197), - [anon_sym_lock] = ACTIONS(3197), - [anon_sym_rlock] = ACTIONS(3197), - [anon_sym_unsafe] = ACTIONS(3197), - [anon_sym_sql] = ACTIONS(3197), - [sym_int_literal] = ACTIONS(3197), - [sym_float_literal] = ACTIONS(3197), - [sym_rune_literal] = ACTIONS(3197), - [anon_sym_AT] = ACTIONS(3197), - [anon_sym_shared] = ACTIONS(3197), - [anon_sym_map_LBRACK] = ACTIONS(3197), - [anon_sym_chan] = ACTIONS(3197), - [anon_sym_thread] = ACTIONS(3197), - [anon_sym_atomic] = ACTIONS(3197), - [anon_sym_assert] = ACTIONS(3197), - [anon_sym_defer] = ACTIONS(3197), - [anon_sym_goto] = ACTIONS(3197), - [anon_sym_break] = ACTIONS(3197), - [anon_sym_continue] = ACTIONS(3197), - [anon_sym_return] = ACTIONS(3197), - [anon_sym_DOLLARfor] = ACTIONS(3197), - [anon_sym_for] = ACTIONS(3197), - [anon_sym_POUND] = ACTIONS(3197), - [anon_sym_asm] = ACTIONS(3197), - [anon_sym_AT_LBRACK] = ACTIONS(3197), - [sym___double_quote] = ACTIONS(3197), - [sym___single_quote] = ACTIONS(3197), - [sym___c_double_quote] = ACTIONS(3197), - [sym___c_single_quote] = ACTIONS(3197), - [sym___r_double_quote] = ACTIONS(3197), - [sym___r_single_quote] = ACTIONS(3197), + [ts_builtin_sym_end] = ACTIONS(2952), + [sym_identifier] = ACTIONS(2954), + [anon_sym_LF] = ACTIONS(2954), + [anon_sym_CR] = ACTIONS(2954), + [anon_sym_CR_LF] = ACTIONS(2954), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2954), + [anon_sym_as] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2954), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_const] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym___global] = ACTIONS(2954), + [anon_sym_type] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(2954), + [anon_sym_fn] = ACTIONS(2954), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_SLASH] = ACTIONS(2954), + [anon_sym_PERCENT] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_GT] = ACTIONS(2954), + [anon_sym_EQ_EQ] = ACTIONS(2954), + [anon_sym_BANG_EQ] = ACTIONS(2954), + [anon_sym_LT_EQ] = ACTIONS(2954), + [anon_sym_GT_EQ] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2952), + [anon_sym_struct] = ACTIONS(2954), + [anon_sym_union] = ACTIONS(2954), + [anon_sym_pub] = ACTIONS(2954), + [anon_sym_mut] = ACTIONS(2954), + [anon_sym_enum] = ACTIONS(2954), + [anon_sym_interface] = ACTIONS(2954), + [anon_sym_PLUS_PLUS] = ACTIONS(2954), + [anon_sym_DASH_DASH] = ACTIONS(2954), + [anon_sym_QMARK] = ACTIONS(2954), + [anon_sym_BANG] = ACTIONS(2954), + [anon_sym_go] = ACTIONS(2954), + [anon_sym_spawn] = ACTIONS(2954), + [anon_sym_json_DOTdecode] = ACTIONS(2954), + [anon_sym_LBRACK2] = ACTIONS(2954), + [anon_sym_TILDE] = ACTIONS(2954), + [anon_sym_CARET] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_LT_DASH] = ACTIONS(2954), + [anon_sym_LT_LT] = ACTIONS(2954), + [anon_sym_GT_GT] = ACTIONS(2954), + [anon_sym_GT_GT_GT] = ACTIONS(2954), + [anon_sym_AMP_CARET] = ACTIONS(2954), + [anon_sym_AMP_AMP] = ACTIONS(2954), + [anon_sym_PIPE_PIPE] = ACTIONS(2954), + [anon_sym_or] = ACTIONS(2954), + [sym_none] = ACTIONS(2954), + [sym_true] = ACTIONS(2954), + [sym_false] = ACTIONS(2954), + [sym_nil] = ACTIONS(2954), + [anon_sym_QMARK_DOT] = ACTIONS(2954), + [anon_sym_POUND_LBRACK] = ACTIONS(2954), + [anon_sym_if] = ACTIONS(2954), + [anon_sym_DOLLARif] = ACTIONS(2954), + [anon_sym_is] = ACTIONS(2954), + [anon_sym_BANGis] = ACTIONS(2954), + [anon_sym_in] = ACTIONS(2954), + [anon_sym_BANGin] = ACTIONS(2954), + [anon_sym_match] = ACTIONS(2954), + [anon_sym_select] = ACTIONS(2954), + [anon_sym_lock] = ACTIONS(2954), + [anon_sym_rlock] = ACTIONS(2954), + [anon_sym_unsafe] = ACTIONS(2954), + [anon_sym_sql] = ACTIONS(2954), + [sym_int_literal] = ACTIONS(2954), + [sym_float_literal] = ACTIONS(2954), + [sym_rune_literal] = ACTIONS(2954), + [anon_sym_AT] = ACTIONS(2954), + [anon_sym_shared] = ACTIONS(2954), + [anon_sym_map_LBRACK] = ACTIONS(2954), + [anon_sym_chan] = ACTIONS(2954), + [anon_sym_thread] = ACTIONS(2954), + [anon_sym_atomic] = ACTIONS(2954), + [anon_sym_assert] = ACTIONS(2954), + [anon_sym_defer] = ACTIONS(2954), + [anon_sym_goto] = ACTIONS(2954), + [anon_sym_break] = ACTIONS(2954), + [anon_sym_continue] = ACTIONS(2954), + [anon_sym_return] = ACTIONS(2954), + [anon_sym_DOLLARfor] = ACTIONS(2954), + [anon_sym_for] = ACTIONS(2954), + [anon_sym_POUND] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2954), + [anon_sym_AT_LBRACK] = ACTIONS(2954), + [sym___double_quote] = ACTIONS(2954), + [sym___single_quote] = ACTIONS(2954), + [sym___c_double_quote] = ACTIONS(2954), + [sym___c_single_quote] = ACTIONS(2954), + [sym___r_double_quote] = ACTIONS(2954), + [sym___r_single_quote] = ACTIONS(2954), }, [1070] = { - [ts_builtin_sym_end] = ACTIONS(3059), - [sym_identifier] = ACTIONS(3061), - [anon_sym_LF] = ACTIONS(3061), - [anon_sym_CR] = ACTIONS(3061), - [anon_sym_CR_LF] = ACTIONS(3061), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3061), - [anon_sym_as] = ACTIONS(3061), - [anon_sym_LBRACE] = ACTIONS(3061), - [anon_sym_COMMA] = ACTIONS(3061), - [anon_sym_const] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym___global] = ACTIONS(3061), - [anon_sym_type] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_fn] = ACTIONS(3061), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_STAR] = ACTIONS(3061), - [anon_sym_SLASH] = ACTIONS(3061), - [anon_sym_PERCENT] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_EQ_EQ] = ACTIONS(3061), - [anon_sym_BANG_EQ] = ACTIONS(3061), - [anon_sym_LT_EQ] = ACTIONS(3061), - [anon_sym_GT_EQ] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(3061), - [anon_sym_union] = ACTIONS(3061), - [anon_sym_pub] = ACTIONS(3061), - [anon_sym_mut] = ACTIONS(3061), - [anon_sym_enum] = ACTIONS(3061), - [anon_sym_interface] = ACTIONS(3061), - [anon_sym_PLUS_PLUS] = ACTIONS(3061), - [anon_sym_DASH_DASH] = ACTIONS(3061), - [anon_sym_QMARK] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3061), - [anon_sym_spawn] = ACTIONS(3061), - [anon_sym_json_DOTdecode] = ACTIONS(3061), - [anon_sym_LBRACK2] = ACTIONS(3061), - [anon_sym_TILDE] = ACTIONS(3061), - [anon_sym_CARET] = ACTIONS(3061), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_LT_DASH] = ACTIONS(3061), - [anon_sym_LT_LT] = ACTIONS(3061), - [anon_sym_GT_GT] = ACTIONS(3061), - [anon_sym_GT_GT_GT] = ACTIONS(3061), - [anon_sym_AMP_CARET] = ACTIONS(3061), - [anon_sym_AMP_AMP] = ACTIONS(3061), - [anon_sym_PIPE_PIPE] = ACTIONS(3061), - [anon_sym_or] = ACTIONS(3061), - [sym_none] = ACTIONS(3061), - [sym_true] = ACTIONS(3061), - [sym_false] = ACTIONS(3061), - [sym_nil] = ACTIONS(3061), - [anon_sym_QMARK_DOT] = ACTIONS(3061), - [anon_sym_POUND_LBRACK] = ACTIONS(3061), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_DOLLARif] = ACTIONS(3061), - [anon_sym_is] = ACTIONS(3061), - [anon_sym_BANGis] = ACTIONS(3061), - [anon_sym_in] = ACTIONS(3061), - [anon_sym_BANGin] = ACTIONS(3061), - [anon_sym_match] = ACTIONS(3061), - [anon_sym_select] = ACTIONS(3061), - [anon_sym_lock] = ACTIONS(3061), - [anon_sym_rlock] = ACTIONS(3061), - [anon_sym_unsafe] = ACTIONS(3061), - [anon_sym_sql] = ACTIONS(3061), - [sym_int_literal] = ACTIONS(3061), - [sym_float_literal] = ACTIONS(3061), - [sym_rune_literal] = ACTIONS(3061), - [anon_sym_AT] = ACTIONS(3061), - [anon_sym_shared] = ACTIONS(3061), - [anon_sym_map_LBRACK] = ACTIONS(3061), - [anon_sym_chan] = ACTIONS(3061), - [anon_sym_thread] = ACTIONS(3061), - [anon_sym_atomic] = ACTIONS(3061), - [anon_sym_assert] = ACTIONS(3061), - [anon_sym_defer] = ACTIONS(3061), - [anon_sym_goto] = ACTIONS(3061), - [anon_sym_break] = ACTIONS(3061), - [anon_sym_continue] = ACTIONS(3061), - [anon_sym_return] = ACTIONS(3061), - [anon_sym_DOLLARfor] = ACTIONS(3061), - [anon_sym_for] = ACTIONS(3061), - [anon_sym_POUND] = ACTIONS(3061), - [anon_sym_asm] = ACTIONS(3061), - [anon_sym_AT_LBRACK] = ACTIONS(3061), - [sym___double_quote] = ACTIONS(3061), - [sym___single_quote] = ACTIONS(3061), - [sym___c_double_quote] = ACTIONS(3061), - [sym___c_single_quote] = ACTIONS(3061), - [sym___r_double_quote] = ACTIONS(3061), - [sym___r_single_quote] = ACTIONS(3061), + [ts_builtin_sym_end] = ACTIONS(2948), + [sym_identifier] = ACTIONS(2950), + [anon_sym_LF] = ACTIONS(2950), + [anon_sym_CR] = ACTIONS(2950), + [anon_sym_CR_LF] = ACTIONS(2950), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2950), + [anon_sym_as] = ACTIONS(2950), + [anon_sym_LBRACE] = ACTIONS(2950), + [anon_sym_COMMA] = ACTIONS(2950), + [anon_sym_const] = ACTIONS(2950), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym___global] = ACTIONS(2950), + [anon_sym_type] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_fn] = ACTIONS(2950), + [anon_sym_PLUS] = ACTIONS(2950), + [anon_sym_DASH] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(2950), + [anon_sym_SLASH] = ACTIONS(2950), + [anon_sym_PERCENT] = ACTIONS(2950), + [anon_sym_LT] = ACTIONS(2950), + [anon_sym_GT] = ACTIONS(2950), + [anon_sym_EQ_EQ] = ACTIONS(2950), + [anon_sym_BANG_EQ] = ACTIONS(2950), + [anon_sym_LT_EQ] = ACTIONS(2950), + [anon_sym_GT_EQ] = ACTIONS(2950), + [anon_sym_LBRACK] = ACTIONS(2948), + [anon_sym_struct] = ACTIONS(2950), + [anon_sym_union] = ACTIONS(2950), + [anon_sym_pub] = ACTIONS(2950), + [anon_sym_mut] = ACTIONS(2950), + [anon_sym_enum] = ACTIONS(2950), + [anon_sym_interface] = ACTIONS(2950), + [anon_sym_PLUS_PLUS] = ACTIONS(2950), + [anon_sym_DASH_DASH] = ACTIONS(2950), + [anon_sym_QMARK] = ACTIONS(2950), + [anon_sym_BANG] = ACTIONS(2950), + [anon_sym_go] = ACTIONS(2950), + [anon_sym_spawn] = ACTIONS(2950), + [anon_sym_json_DOTdecode] = ACTIONS(2950), + [anon_sym_LBRACK2] = ACTIONS(2950), + [anon_sym_TILDE] = ACTIONS(2950), + [anon_sym_CARET] = ACTIONS(2950), + [anon_sym_AMP] = ACTIONS(2950), + [anon_sym_LT_DASH] = ACTIONS(2950), + [anon_sym_LT_LT] = ACTIONS(2950), + [anon_sym_GT_GT] = ACTIONS(2950), + [anon_sym_GT_GT_GT] = ACTIONS(2950), + [anon_sym_AMP_CARET] = ACTIONS(2950), + [anon_sym_AMP_AMP] = ACTIONS(2950), + [anon_sym_PIPE_PIPE] = ACTIONS(2950), + [anon_sym_or] = ACTIONS(2950), + [sym_none] = ACTIONS(2950), + [sym_true] = ACTIONS(2950), + [sym_false] = ACTIONS(2950), + [sym_nil] = ACTIONS(2950), + [anon_sym_QMARK_DOT] = ACTIONS(2950), + [anon_sym_POUND_LBRACK] = ACTIONS(2950), + [anon_sym_if] = ACTIONS(2950), + [anon_sym_DOLLARif] = ACTIONS(2950), + [anon_sym_is] = ACTIONS(2950), + [anon_sym_BANGis] = ACTIONS(2950), + [anon_sym_in] = ACTIONS(2950), + [anon_sym_BANGin] = ACTIONS(2950), + [anon_sym_match] = ACTIONS(2950), + [anon_sym_select] = ACTIONS(2950), + [anon_sym_lock] = ACTIONS(2950), + [anon_sym_rlock] = ACTIONS(2950), + [anon_sym_unsafe] = ACTIONS(2950), + [anon_sym_sql] = ACTIONS(2950), + [sym_int_literal] = ACTIONS(2950), + [sym_float_literal] = ACTIONS(2950), + [sym_rune_literal] = ACTIONS(2950), + [anon_sym_AT] = ACTIONS(2950), + [anon_sym_shared] = ACTIONS(2950), + [anon_sym_map_LBRACK] = ACTIONS(2950), + [anon_sym_chan] = ACTIONS(2950), + [anon_sym_thread] = ACTIONS(2950), + [anon_sym_atomic] = ACTIONS(2950), + [anon_sym_assert] = ACTIONS(2950), + [anon_sym_defer] = ACTIONS(2950), + [anon_sym_goto] = ACTIONS(2950), + [anon_sym_break] = ACTIONS(2950), + [anon_sym_continue] = ACTIONS(2950), + [anon_sym_return] = ACTIONS(2950), + [anon_sym_DOLLARfor] = ACTIONS(2950), + [anon_sym_for] = ACTIONS(2950), + [anon_sym_POUND] = ACTIONS(2950), + [anon_sym_asm] = ACTIONS(2950), + [anon_sym_AT_LBRACK] = ACTIONS(2950), + [sym___double_quote] = ACTIONS(2950), + [sym___single_quote] = ACTIONS(2950), + [sym___c_double_quote] = ACTIONS(2950), + [sym___c_single_quote] = ACTIONS(2950), + [sym___r_double_quote] = ACTIONS(2950), + [sym___r_single_quote] = ACTIONS(2950), }, [1071] = { - [ts_builtin_sym_end] = ACTIONS(3055), - [sym_identifier] = ACTIONS(3057), - [anon_sym_LF] = ACTIONS(3057), - [anon_sym_CR] = ACTIONS(3057), - [anon_sym_CR_LF] = ACTIONS(3057), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3057), - [anon_sym_as] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3057), - [anon_sym_COMMA] = ACTIONS(3057), - [anon_sym_const] = ACTIONS(3057), - [anon_sym_LPAREN] = ACTIONS(3057), - [anon_sym___global] = ACTIONS(3057), - [anon_sym_type] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3057), - [anon_sym_fn] = ACTIONS(3057), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3057), - [anon_sym_SLASH] = ACTIONS(3057), - [anon_sym_PERCENT] = ACTIONS(3057), - [anon_sym_LT] = ACTIONS(3057), - [anon_sym_GT] = ACTIONS(3057), - [anon_sym_EQ_EQ] = ACTIONS(3057), - [anon_sym_BANG_EQ] = ACTIONS(3057), - [anon_sym_LT_EQ] = ACTIONS(3057), - [anon_sym_GT_EQ] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_union] = ACTIONS(3057), - [anon_sym_pub] = ACTIONS(3057), - [anon_sym_mut] = ACTIONS(3057), - [anon_sym_enum] = ACTIONS(3057), - [anon_sym_interface] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(3057), - [anon_sym_go] = ACTIONS(3057), - [anon_sym_spawn] = ACTIONS(3057), - [anon_sym_json_DOTdecode] = ACTIONS(3057), - [anon_sym_LBRACK2] = ACTIONS(3057), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_CARET] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_LT_DASH] = ACTIONS(3057), - [anon_sym_LT_LT] = ACTIONS(3057), - [anon_sym_GT_GT] = ACTIONS(3057), - [anon_sym_GT_GT_GT] = ACTIONS(3057), - [anon_sym_AMP_CARET] = ACTIONS(3057), - [anon_sym_AMP_AMP] = ACTIONS(3057), - [anon_sym_PIPE_PIPE] = ACTIONS(3057), - [anon_sym_or] = ACTIONS(3057), - [sym_none] = ACTIONS(3057), - [sym_true] = ACTIONS(3057), - [sym_false] = ACTIONS(3057), - [sym_nil] = ACTIONS(3057), - [anon_sym_QMARK_DOT] = ACTIONS(3057), - [anon_sym_POUND_LBRACK] = ACTIONS(3057), - [anon_sym_if] = ACTIONS(3057), - [anon_sym_DOLLARif] = ACTIONS(3057), - [anon_sym_is] = ACTIONS(3057), - [anon_sym_BANGis] = ACTIONS(3057), - [anon_sym_in] = ACTIONS(3057), - [anon_sym_BANGin] = ACTIONS(3057), - [anon_sym_match] = ACTIONS(3057), - [anon_sym_select] = ACTIONS(3057), - [anon_sym_lock] = ACTIONS(3057), - [anon_sym_rlock] = ACTIONS(3057), - [anon_sym_unsafe] = ACTIONS(3057), - [anon_sym_sql] = ACTIONS(3057), - [sym_int_literal] = ACTIONS(3057), - [sym_float_literal] = ACTIONS(3057), - [sym_rune_literal] = ACTIONS(3057), - [anon_sym_AT] = ACTIONS(3057), - [anon_sym_shared] = ACTIONS(3057), - [anon_sym_map_LBRACK] = ACTIONS(3057), - [anon_sym_chan] = ACTIONS(3057), - [anon_sym_thread] = ACTIONS(3057), - [anon_sym_atomic] = ACTIONS(3057), - [anon_sym_assert] = ACTIONS(3057), - [anon_sym_defer] = ACTIONS(3057), - [anon_sym_goto] = ACTIONS(3057), - [anon_sym_break] = ACTIONS(3057), - [anon_sym_continue] = ACTIONS(3057), - [anon_sym_return] = ACTIONS(3057), - [anon_sym_DOLLARfor] = ACTIONS(3057), - [anon_sym_for] = ACTIONS(3057), - [anon_sym_POUND] = ACTIONS(3057), - [anon_sym_asm] = ACTIONS(3057), - [anon_sym_AT_LBRACK] = ACTIONS(3057), - [sym___double_quote] = ACTIONS(3057), - [sym___single_quote] = ACTIONS(3057), - [sym___c_double_quote] = ACTIONS(3057), - [sym___c_single_quote] = ACTIONS(3057), - [sym___r_double_quote] = ACTIONS(3057), - [sym___r_single_quote] = ACTIONS(3057), + [ts_builtin_sym_end] = ACTIONS(2944), + [sym_identifier] = ACTIONS(2946), + [anon_sym_LF] = ACTIONS(2946), + [anon_sym_CR] = ACTIONS(2946), + [anon_sym_CR_LF] = ACTIONS(2946), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2946), + [anon_sym_as] = ACTIONS(2946), + [anon_sym_LBRACE] = ACTIONS(2946), + [anon_sym_COMMA] = ACTIONS(2946), + [anon_sym_const] = ACTIONS(2946), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym___global] = ACTIONS(2946), + [anon_sym_type] = ACTIONS(2946), + [anon_sym_PIPE] = ACTIONS(2946), + [anon_sym_fn] = ACTIONS(2946), + [anon_sym_PLUS] = ACTIONS(2946), + [anon_sym_DASH] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(2946), + [anon_sym_SLASH] = ACTIONS(2946), + [anon_sym_PERCENT] = ACTIONS(2946), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_GT] = ACTIONS(2946), + [anon_sym_EQ_EQ] = ACTIONS(2946), + [anon_sym_BANG_EQ] = ACTIONS(2946), + [anon_sym_LT_EQ] = ACTIONS(2946), + [anon_sym_GT_EQ] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_struct] = ACTIONS(2946), + [anon_sym_union] = ACTIONS(2946), + [anon_sym_pub] = ACTIONS(2946), + [anon_sym_mut] = ACTIONS(2946), + [anon_sym_enum] = ACTIONS(2946), + [anon_sym_interface] = ACTIONS(2946), + [anon_sym_PLUS_PLUS] = ACTIONS(2946), + [anon_sym_DASH_DASH] = ACTIONS(2946), + [anon_sym_QMARK] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2946), + [anon_sym_go] = ACTIONS(2946), + [anon_sym_spawn] = ACTIONS(2946), + [anon_sym_json_DOTdecode] = ACTIONS(2946), + [anon_sym_LBRACK2] = ACTIONS(2946), + [anon_sym_TILDE] = ACTIONS(2946), + [anon_sym_CARET] = ACTIONS(2946), + [anon_sym_AMP] = ACTIONS(2946), + [anon_sym_LT_DASH] = ACTIONS(2946), + [anon_sym_LT_LT] = ACTIONS(2946), + [anon_sym_GT_GT] = ACTIONS(2946), + [anon_sym_GT_GT_GT] = ACTIONS(2946), + [anon_sym_AMP_CARET] = ACTIONS(2946), + [anon_sym_AMP_AMP] = ACTIONS(2946), + [anon_sym_PIPE_PIPE] = ACTIONS(2946), + [anon_sym_or] = ACTIONS(2946), + [sym_none] = ACTIONS(2946), + [sym_true] = ACTIONS(2946), + [sym_false] = ACTIONS(2946), + [sym_nil] = ACTIONS(2946), + [anon_sym_QMARK_DOT] = ACTIONS(2946), + [anon_sym_POUND_LBRACK] = ACTIONS(2946), + [anon_sym_if] = ACTIONS(2946), + [anon_sym_DOLLARif] = ACTIONS(2946), + [anon_sym_is] = ACTIONS(2946), + [anon_sym_BANGis] = ACTIONS(2946), + [anon_sym_in] = ACTIONS(2946), + [anon_sym_BANGin] = ACTIONS(2946), + [anon_sym_match] = ACTIONS(2946), + [anon_sym_select] = ACTIONS(2946), + [anon_sym_lock] = ACTIONS(2946), + [anon_sym_rlock] = ACTIONS(2946), + [anon_sym_unsafe] = ACTIONS(2946), + [anon_sym_sql] = ACTIONS(2946), + [sym_int_literal] = ACTIONS(2946), + [sym_float_literal] = ACTIONS(2946), + [sym_rune_literal] = ACTIONS(2946), + [anon_sym_AT] = ACTIONS(2946), + [anon_sym_shared] = ACTIONS(2946), + [anon_sym_map_LBRACK] = ACTIONS(2946), + [anon_sym_chan] = ACTIONS(2946), + [anon_sym_thread] = ACTIONS(2946), + [anon_sym_atomic] = ACTIONS(2946), + [anon_sym_assert] = ACTIONS(2946), + [anon_sym_defer] = ACTIONS(2946), + [anon_sym_goto] = ACTIONS(2946), + [anon_sym_break] = ACTIONS(2946), + [anon_sym_continue] = ACTIONS(2946), + [anon_sym_return] = ACTIONS(2946), + [anon_sym_DOLLARfor] = ACTIONS(2946), + [anon_sym_for] = ACTIONS(2946), + [anon_sym_POUND] = ACTIONS(2946), + [anon_sym_asm] = ACTIONS(2946), + [anon_sym_AT_LBRACK] = ACTIONS(2946), + [sym___double_quote] = ACTIONS(2946), + [sym___single_quote] = ACTIONS(2946), + [sym___c_double_quote] = ACTIONS(2946), + [sym___c_single_quote] = ACTIONS(2946), + [sym___r_double_quote] = ACTIONS(2946), + [sym___r_single_quote] = ACTIONS(2946), }, [1072] = { - [ts_builtin_sym_end] = ACTIONS(2854), - [sym_identifier] = ACTIONS(2856), - [anon_sym_LF] = ACTIONS(2856), - [anon_sym_CR] = ACTIONS(2856), - [anon_sym_CR_LF] = ACTIONS(2856), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2856), - [anon_sym_as] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2856), - [anon_sym_COMMA] = ACTIONS(2856), - [anon_sym_const] = ACTIONS(2856), - [anon_sym_LPAREN] = ACTIONS(2856), - [anon_sym___global] = ACTIONS(2856), - [anon_sym_type] = ACTIONS(2856), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_fn] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2856), - [anon_sym_DASH] = ACTIONS(2856), - [anon_sym_STAR] = ACTIONS(2856), - [anon_sym_SLASH] = ACTIONS(2856), - [anon_sym_PERCENT] = ACTIONS(2856), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_GT] = ACTIONS(2856), - [anon_sym_EQ_EQ] = ACTIONS(2856), - [anon_sym_BANG_EQ] = ACTIONS(2856), - [anon_sym_LT_EQ] = ACTIONS(2856), - [anon_sym_GT_EQ] = ACTIONS(2856), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_struct] = ACTIONS(2856), - [anon_sym_union] = ACTIONS(2856), - [anon_sym_pub] = ACTIONS(2856), - [anon_sym_mut] = ACTIONS(2856), - [anon_sym_enum] = ACTIONS(2856), - [anon_sym_interface] = ACTIONS(2856), - [anon_sym_PLUS_PLUS] = ACTIONS(2856), - [anon_sym_DASH_DASH] = ACTIONS(2856), - [anon_sym_QMARK] = ACTIONS(2856), - [anon_sym_BANG] = ACTIONS(2856), - [anon_sym_go] = ACTIONS(2856), - [anon_sym_spawn] = ACTIONS(2856), - [anon_sym_json_DOTdecode] = ACTIONS(2856), - [anon_sym_LBRACK2] = ACTIONS(2856), - [anon_sym_TILDE] = ACTIONS(2856), - [anon_sym_CARET] = ACTIONS(2856), - [anon_sym_AMP] = ACTIONS(2856), - [anon_sym_LT_DASH] = ACTIONS(2856), - [anon_sym_LT_LT] = ACTIONS(2856), - [anon_sym_GT_GT] = ACTIONS(2856), - [anon_sym_GT_GT_GT] = ACTIONS(2856), - [anon_sym_AMP_CARET] = ACTIONS(2856), - [anon_sym_AMP_AMP] = ACTIONS(2856), - [anon_sym_PIPE_PIPE] = ACTIONS(2856), - [anon_sym_or] = ACTIONS(2856), - [sym_none] = ACTIONS(2856), - [sym_true] = ACTIONS(2856), - [sym_false] = ACTIONS(2856), - [sym_nil] = ACTIONS(2856), - [anon_sym_QMARK_DOT] = ACTIONS(2856), - [anon_sym_POUND_LBRACK] = ACTIONS(2856), - [anon_sym_if] = ACTIONS(2856), - [anon_sym_DOLLARif] = ACTIONS(2856), - [anon_sym_is] = ACTIONS(2856), - [anon_sym_BANGis] = ACTIONS(2856), - [anon_sym_in] = ACTIONS(2856), - [anon_sym_BANGin] = ACTIONS(2856), - [anon_sym_match] = ACTIONS(2856), - [anon_sym_select] = ACTIONS(2856), - [anon_sym_lock] = ACTIONS(2856), - [anon_sym_rlock] = ACTIONS(2856), - [anon_sym_unsafe] = ACTIONS(2856), - [anon_sym_sql] = ACTIONS(2856), - [sym_int_literal] = ACTIONS(2856), - [sym_float_literal] = ACTIONS(2856), - [sym_rune_literal] = ACTIONS(2856), - [anon_sym_AT] = ACTIONS(2856), - [anon_sym_shared] = ACTIONS(2856), - [anon_sym_map_LBRACK] = ACTIONS(2856), - [anon_sym_chan] = ACTIONS(2856), - [anon_sym_thread] = ACTIONS(2856), - [anon_sym_atomic] = ACTIONS(2856), - [anon_sym_assert] = ACTIONS(2856), - [anon_sym_defer] = ACTIONS(2856), - [anon_sym_goto] = ACTIONS(2856), - [anon_sym_break] = ACTIONS(2856), - [anon_sym_continue] = ACTIONS(2856), - [anon_sym_return] = ACTIONS(2856), - [anon_sym_DOLLARfor] = ACTIONS(2856), - [anon_sym_for] = ACTIONS(2856), - [anon_sym_POUND] = ACTIONS(2856), - [anon_sym_asm] = ACTIONS(2856), - [anon_sym_AT_LBRACK] = ACTIONS(2856), - [sym___double_quote] = ACTIONS(2856), - [sym___single_quote] = ACTIONS(2856), - [sym___c_double_quote] = ACTIONS(2856), - [sym___c_single_quote] = ACTIONS(2856), - [sym___r_double_quote] = ACTIONS(2856), - [sym___r_single_quote] = ACTIONS(2856), + [ts_builtin_sym_end] = ACTIONS(2940), + [sym_identifier] = ACTIONS(2942), + [anon_sym_LF] = ACTIONS(2942), + [anon_sym_CR] = ACTIONS(2942), + [anon_sym_CR_LF] = ACTIONS(2942), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2942), + [anon_sym_as] = ACTIONS(2942), + [anon_sym_LBRACE] = ACTIONS(2942), + [anon_sym_COMMA] = ACTIONS(2942), + [anon_sym_const] = ACTIONS(2942), + [anon_sym_LPAREN] = ACTIONS(2942), + [anon_sym___global] = ACTIONS(2942), + [anon_sym_type] = ACTIONS(2942), + [anon_sym_PIPE] = ACTIONS(2942), + [anon_sym_fn] = ACTIONS(2942), + [anon_sym_PLUS] = ACTIONS(2942), + [anon_sym_DASH] = ACTIONS(2942), + [anon_sym_STAR] = ACTIONS(2942), + [anon_sym_SLASH] = ACTIONS(2942), + [anon_sym_PERCENT] = ACTIONS(2942), + [anon_sym_LT] = ACTIONS(2942), + [anon_sym_GT] = ACTIONS(2942), + [anon_sym_EQ_EQ] = ACTIONS(2942), + [anon_sym_BANG_EQ] = ACTIONS(2942), + [anon_sym_LT_EQ] = ACTIONS(2942), + [anon_sym_GT_EQ] = ACTIONS(2942), + [anon_sym_LBRACK] = ACTIONS(2940), + [anon_sym_struct] = ACTIONS(2942), + [anon_sym_union] = ACTIONS(2942), + [anon_sym_pub] = ACTIONS(2942), + [anon_sym_mut] = ACTIONS(2942), + [anon_sym_enum] = ACTIONS(2942), + [anon_sym_interface] = ACTIONS(2942), + [anon_sym_PLUS_PLUS] = ACTIONS(2942), + [anon_sym_DASH_DASH] = ACTIONS(2942), + [anon_sym_QMARK] = ACTIONS(2942), + [anon_sym_BANG] = ACTIONS(2942), + [anon_sym_go] = ACTIONS(2942), + [anon_sym_spawn] = ACTIONS(2942), + [anon_sym_json_DOTdecode] = ACTIONS(2942), + [anon_sym_LBRACK2] = ACTIONS(2942), + [anon_sym_TILDE] = ACTIONS(2942), + [anon_sym_CARET] = ACTIONS(2942), + [anon_sym_AMP] = ACTIONS(2942), + [anon_sym_LT_DASH] = ACTIONS(2942), + [anon_sym_LT_LT] = ACTIONS(2942), + [anon_sym_GT_GT] = ACTIONS(2942), + [anon_sym_GT_GT_GT] = ACTIONS(2942), + [anon_sym_AMP_CARET] = ACTIONS(2942), + [anon_sym_AMP_AMP] = ACTIONS(2942), + [anon_sym_PIPE_PIPE] = ACTIONS(2942), + [anon_sym_or] = ACTIONS(2942), + [sym_none] = ACTIONS(2942), + [sym_true] = ACTIONS(2942), + [sym_false] = ACTIONS(2942), + [sym_nil] = ACTIONS(2942), + [anon_sym_QMARK_DOT] = ACTIONS(2942), + [anon_sym_POUND_LBRACK] = ACTIONS(2942), + [anon_sym_if] = ACTIONS(2942), + [anon_sym_DOLLARif] = ACTIONS(2942), + [anon_sym_is] = ACTIONS(2942), + [anon_sym_BANGis] = ACTIONS(2942), + [anon_sym_in] = ACTIONS(2942), + [anon_sym_BANGin] = ACTIONS(2942), + [anon_sym_match] = ACTIONS(2942), + [anon_sym_select] = ACTIONS(2942), + [anon_sym_lock] = ACTIONS(2942), + [anon_sym_rlock] = ACTIONS(2942), + [anon_sym_unsafe] = ACTIONS(2942), + [anon_sym_sql] = ACTIONS(2942), + [sym_int_literal] = ACTIONS(2942), + [sym_float_literal] = ACTIONS(2942), + [sym_rune_literal] = ACTIONS(2942), + [anon_sym_AT] = ACTIONS(2942), + [anon_sym_shared] = ACTIONS(2942), + [anon_sym_map_LBRACK] = ACTIONS(2942), + [anon_sym_chan] = ACTIONS(2942), + [anon_sym_thread] = ACTIONS(2942), + [anon_sym_atomic] = ACTIONS(2942), + [anon_sym_assert] = ACTIONS(2942), + [anon_sym_defer] = ACTIONS(2942), + [anon_sym_goto] = ACTIONS(2942), + [anon_sym_break] = ACTIONS(2942), + [anon_sym_continue] = ACTIONS(2942), + [anon_sym_return] = ACTIONS(2942), + [anon_sym_DOLLARfor] = ACTIONS(2942), + [anon_sym_for] = ACTIONS(2942), + [anon_sym_POUND] = ACTIONS(2942), + [anon_sym_asm] = ACTIONS(2942), + [anon_sym_AT_LBRACK] = ACTIONS(2942), + [sym___double_quote] = ACTIONS(2942), + [sym___single_quote] = ACTIONS(2942), + [sym___c_double_quote] = ACTIONS(2942), + [sym___c_single_quote] = ACTIONS(2942), + [sym___r_double_quote] = ACTIONS(2942), + [sym___r_single_quote] = ACTIONS(2942), }, [1073] = { - [ts_builtin_sym_end] = ACTIONS(3047), - [sym_identifier] = ACTIONS(3049), - [anon_sym_LF] = ACTIONS(3049), - [anon_sym_CR] = ACTIONS(3049), - [anon_sym_CR_LF] = ACTIONS(3049), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3049), - [anon_sym_as] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3049), - [anon_sym___global] = ACTIONS(3049), - [anon_sym_type] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(3049), - [anon_sym_fn] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3049), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3049), - [anon_sym_SLASH] = ACTIONS(3049), - [anon_sym_PERCENT] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(3049), - [anon_sym_GT] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3049), - [anon_sym_BANG_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(3049), - [anon_sym_GT_EQ] = ACTIONS(3049), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_struct] = ACTIONS(3049), - [anon_sym_union] = ACTIONS(3049), - [anon_sym_pub] = ACTIONS(3049), - [anon_sym_mut] = ACTIONS(3049), - [anon_sym_enum] = ACTIONS(3049), - [anon_sym_interface] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_QMARK] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3049), - [anon_sym_go] = ACTIONS(3049), - [anon_sym_spawn] = ACTIONS(3049), - [anon_sym_json_DOTdecode] = ACTIONS(3049), - [anon_sym_LBRACK2] = ACTIONS(3049), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_CARET] = ACTIONS(3049), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_LT_DASH] = ACTIONS(3049), - [anon_sym_LT_LT] = ACTIONS(3049), - [anon_sym_GT_GT] = ACTIONS(3049), - [anon_sym_GT_GT_GT] = ACTIONS(3049), - [anon_sym_AMP_CARET] = ACTIONS(3049), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_or] = ACTIONS(3049), - [sym_none] = ACTIONS(3049), - [sym_true] = ACTIONS(3049), - [sym_false] = ACTIONS(3049), - [sym_nil] = ACTIONS(3049), - [anon_sym_QMARK_DOT] = ACTIONS(3049), - [anon_sym_POUND_LBRACK] = ACTIONS(3049), - [anon_sym_if] = ACTIONS(3049), - [anon_sym_DOLLARif] = ACTIONS(3049), - [anon_sym_is] = ACTIONS(3049), - [anon_sym_BANGis] = ACTIONS(3049), - [anon_sym_in] = ACTIONS(3049), - [anon_sym_BANGin] = ACTIONS(3049), - [anon_sym_match] = ACTIONS(3049), - [anon_sym_select] = ACTIONS(3049), - [anon_sym_lock] = ACTIONS(3049), - [anon_sym_rlock] = ACTIONS(3049), - [anon_sym_unsafe] = ACTIONS(3049), - [anon_sym_sql] = ACTIONS(3049), - [sym_int_literal] = ACTIONS(3049), - [sym_float_literal] = ACTIONS(3049), - [sym_rune_literal] = ACTIONS(3049), - [anon_sym_AT] = ACTIONS(3049), - [anon_sym_shared] = ACTIONS(3049), - [anon_sym_map_LBRACK] = ACTIONS(3049), - [anon_sym_chan] = ACTIONS(3049), - [anon_sym_thread] = ACTIONS(3049), - [anon_sym_atomic] = ACTIONS(3049), - [anon_sym_assert] = ACTIONS(3049), - [anon_sym_defer] = ACTIONS(3049), - [anon_sym_goto] = ACTIONS(3049), - [anon_sym_break] = ACTIONS(3049), - [anon_sym_continue] = ACTIONS(3049), - [anon_sym_return] = ACTIONS(3049), - [anon_sym_DOLLARfor] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3049), - [anon_sym_POUND] = ACTIONS(3049), - [anon_sym_asm] = ACTIONS(3049), - [anon_sym_AT_LBRACK] = ACTIONS(3049), - [sym___double_quote] = ACTIONS(3049), - [sym___single_quote] = ACTIONS(3049), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3049), - [sym___r_double_quote] = ACTIONS(3049), - [sym___r_single_quote] = ACTIONS(3049), + [ts_builtin_sym_end] = ACTIONS(2936), + [sym_identifier] = ACTIONS(2938), + [anon_sym_LF] = ACTIONS(2938), + [anon_sym_CR] = ACTIONS(2938), + [anon_sym_CR_LF] = ACTIONS(2938), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2938), + [anon_sym_as] = ACTIONS(2938), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_COMMA] = ACTIONS(2938), + [anon_sym_const] = ACTIONS(2938), + [anon_sym_LPAREN] = ACTIONS(2938), + [anon_sym___global] = ACTIONS(2938), + [anon_sym_type] = ACTIONS(2938), + [anon_sym_PIPE] = ACTIONS(2938), + [anon_sym_fn] = ACTIONS(2938), + [anon_sym_PLUS] = ACTIONS(2938), + [anon_sym_DASH] = ACTIONS(2938), + [anon_sym_STAR] = ACTIONS(2938), + [anon_sym_SLASH] = ACTIONS(2938), + [anon_sym_PERCENT] = ACTIONS(2938), + [anon_sym_LT] = ACTIONS(2938), + [anon_sym_GT] = ACTIONS(2938), + [anon_sym_EQ_EQ] = ACTIONS(2938), + [anon_sym_BANG_EQ] = ACTIONS(2938), + [anon_sym_LT_EQ] = ACTIONS(2938), + [anon_sym_GT_EQ] = ACTIONS(2938), + [anon_sym_LBRACK] = ACTIONS(2936), + [anon_sym_struct] = ACTIONS(2938), + [anon_sym_union] = ACTIONS(2938), + [anon_sym_pub] = ACTIONS(2938), + [anon_sym_mut] = ACTIONS(2938), + [anon_sym_enum] = ACTIONS(2938), + [anon_sym_interface] = ACTIONS(2938), + [anon_sym_PLUS_PLUS] = ACTIONS(2938), + [anon_sym_DASH_DASH] = ACTIONS(2938), + [anon_sym_QMARK] = ACTIONS(2938), + [anon_sym_BANG] = ACTIONS(2938), + [anon_sym_go] = ACTIONS(2938), + [anon_sym_spawn] = ACTIONS(2938), + [anon_sym_json_DOTdecode] = ACTIONS(2938), + [anon_sym_LBRACK2] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2938), + [anon_sym_CARET] = ACTIONS(2938), + [anon_sym_AMP] = ACTIONS(2938), + [anon_sym_LT_DASH] = ACTIONS(2938), + [anon_sym_LT_LT] = ACTIONS(2938), + [anon_sym_GT_GT] = ACTIONS(2938), + [anon_sym_GT_GT_GT] = ACTIONS(2938), + [anon_sym_AMP_CARET] = ACTIONS(2938), + [anon_sym_AMP_AMP] = ACTIONS(2938), + [anon_sym_PIPE_PIPE] = ACTIONS(2938), + [anon_sym_or] = ACTIONS(2938), + [sym_none] = ACTIONS(2938), + [sym_true] = ACTIONS(2938), + [sym_false] = ACTIONS(2938), + [sym_nil] = ACTIONS(2938), + [anon_sym_QMARK_DOT] = ACTIONS(2938), + [anon_sym_POUND_LBRACK] = ACTIONS(2938), + [anon_sym_if] = ACTIONS(2938), + [anon_sym_DOLLARif] = ACTIONS(2938), + [anon_sym_is] = ACTIONS(2938), + [anon_sym_BANGis] = ACTIONS(2938), + [anon_sym_in] = ACTIONS(2938), + [anon_sym_BANGin] = ACTIONS(2938), + [anon_sym_match] = ACTIONS(2938), + [anon_sym_select] = ACTIONS(2938), + [anon_sym_lock] = ACTIONS(2938), + [anon_sym_rlock] = ACTIONS(2938), + [anon_sym_unsafe] = ACTIONS(2938), + [anon_sym_sql] = ACTIONS(2938), + [sym_int_literal] = ACTIONS(2938), + [sym_float_literal] = ACTIONS(2938), + [sym_rune_literal] = ACTIONS(2938), + [anon_sym_AT] = ACTIONS(2938), + [anon_sym_shared] = ACTIONS(2938), + [anon_sym_map_LBRACK] = ACTIONS(2938), + [anon_sym_chan] = ACTIONS(2938), + [anon_sym_thread] = ACTIONS(2938), + [anon_sym_atomic] = ACTIONS(2938), + [anon_sym_assert] = ACTIONS(2938), + [anon_sym_defer] = ACTIONS(2938), + [anon_sym_goto] = ACTIONS(2938), + [anon_sym_break] = ACTIONS(2938), + [anon_sym_continue] = ACTIONS(2938), + [anon_sym_return] = ACTIONS(2938), + [anon_sym_DOLLARfor] = ACTIONS(2938), + [anon_sym_for] = ACTIONS(2938), + [anon_sym_POUND] = ACTIONS(2938), + [anon_sym_asm] = ACTIONS(2938), + [anon_sym_AT_LBRACK] = ACTIONS(2938), + [sym___double_quote] = ACTIONS(2938), + [sym___single_quote] = ACTIONS(2938), + [sym___c_double_quote] = ACTIONS(2938), + [sym___c_single_quote] = ACTIONS(2938), + [sym___r_double_quote] = ACTIONS(2938), + [sym___r_single_quote] = ACTIONS(2938), }, [1074] = { - [ts_builtin_sym_end] = ACTIONS(2782), - [sym_identifier] = ACTIONS(2784), - [anon_sym_LF] = ACTIONS(2784), - [anon_sym_CR] = ACTIONS(2784), - [anon_sym_CR_LF] = ACTIONS(2784), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2784), - [anon_sym_as] = ACTIONS(2784), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_COMMA] = ACTIONS(2784), - [anon_sym_const] = ACTIONS(2784), - [anon_sym_LPAREN] = ACTIONS(2784), - [anon_sym___global] = ACTIONS(2784), - [anon_sym_type] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_fn] = ACTIONS(2784), - [anon_sym_PLUS] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_STAR] = ACTIONS(2784), - [anon_sym_SLASH] = ACTIONS(2784), - [anon_sym_PERCENT] = ACTIONS(2784), - [anon_sym_LT] = ACTIONS(2784), - [anon_sym_GT] = ACTIONS(2784), - [anon_sym_EQ_EQ] = ACTIONS(2784), - [anon_sym_BANG_EQ] = ACTIONS(2784), - [anon_sym_LT_EQ] = ACTIONS(2784), - [anon_sym_GT_EQ] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_struct] = ACTIONS(2784), - [anon_sym_union] = ACTIONS(2784), - [anon_sym_pub] = ACTIONS(2784), - [anon_sym_mut] = ACTIONS(2784), - [anon_sym_enum] = ACTIONS(2784), - [anon_sym_interface] = ACTIONS(2784), - [anon_sym_PLUS_PLUS] = ACTIONS(2784), - [anon_sym_DASH_DASH] = ACTIONS(2784), - [anon_sym_QMARK] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_go] = ACTIONS(2784), - [anon_sym_spawn] = ACTIONS(2784), - [anon_sym_json_DOTdecode] = ACTIONS(2784), - [anon_sym_LBRACK2] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2784), - [anon_sym_CARET] = ACTIONS(2784), - [anon_sym_AMP] = ACTIONS(2784), - [anon_sym_LT_DASH] = ACTIONS(2784), - [anon_sym_LT_LT] = ACTIONS(2784), - [anon_sym_GT_GT] = ACTIONS(2784), - [anon_sym_GT_GT_GT] = ACTIONS(2784), - [anon_sym_AMP_CARET] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_PIPE_PIPE] = ACTIONS(2784), - [anon_sym_or] = ACTIONS(2784), - [sym_none] = ACTIONS(2784), - [sym_true] = ACTIONS(2784), - [sym_false] = ACTIONS(2784), - [sym_nil] = ACTIONS(2784), - [anon_sym_QMARK_DOT] = ACTIONS(2784), - [anon_sym_POUND_LBRACK] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_DOLLARif] = ACTIONS(2784), - [anon_sym_is] = ACTIONS(2784), - [anon_sym_BANGis] = ACTIONS(2784), - [anon_sym_in] = ACTIONS(2784), - [anon_sym_BANGin] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_select] = ACTIONS(2784), - [anon_sym_lock] = ACTIONS(2784), - [anon_sym_rlock] = ACTIONS(2784), - [anon_sym_unsafe] = ACTIONS(2784), - [anon_sym_sql] = ACTIONS(2784), - [sym_int_literal] = ACTIONS(2784), - [sym_float_literal] = ACTIONS(2784), - [sym_rune_literal] = ACTIONS(2784), - [anon_sym_AT] = ACTIONS(2784), - [anon_sym_shared] = ACTIONS(2784), - [anon_sym_map_LBRACK] = ACTIONS(2784), - [anon_sym_chan] = ACTIONS(2784), - [anon_sym_thread] = ACTIONS(2784), - [anon_sym_atomic] = ACTIONS(2784), - [anon_sym_assert] = ACTIONS(2784), - [anon_sym_defer] = ACTIONS(2784), - [anon_sym_goto] = ACTIONS(2784), - [anon_sym_break] = ACTIONS(2784), - [anon_sym_continue] = ACTIONS(2784), - [anon_sym_return] = ACTIONS(2784), - [anon_sym_DOLLARfor] = ACTIONS(2784), - [anon_sym_for] = ACTIONS(2784), - [anon_sym_POUND] = ACTIONS(2784), - [anon_sym_asm] = ACTIONS(2784), - [anon_sym_AT_LBRACK] = ACTIONS(2784), - [sym___double_quote] = ACTIONS(2784), - [sym___single_quote] = ACTIONS(2784), - [sym___c_double_quote] = ACTIONS(2784), - [sym___c_single_quote] = ACTIONS(2784), - [sym___r_double_quote] = ACTIONS(2784), - [sym___r_single_quote] = ACTIONS(2784), + [ts_builtin_sym_end] = ACTIONS(2916), + [sym_identifier] = ACTIONS(2918), + [anon_sym_LF] = ACTIONS(2918), + [anon_sym_CR] = ACTIONS(2918), + [anon_sym_CR_LF] = ACTIONS(2918), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_as] = ACTIONS(2918), + [anon_sym_LBRACE] = ACTIONS(2918), + [anon_sym_COMMA] = ACTIONS(2918), + [anon_sym_const] = ACTIONS(2918), + [anon_sym_LPAREN] = ACTIONS(2918), + [anon_sym___global] = ACTIONS(2918), + [anon_sym_type] = ACTIONS(2918), + [anon_sym_PIPE] = ACTIONS(2918), + [anon_sym_fn] = ACTIONS(2918), + [anon_sym_PLUS] = ACTIONS(2918), + [anon_sym_DASH] = ACTIONS(2918), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_SLASH] = ACTIONS(2918), + [anon_sym_PERCENT] = ACTIONS(2918), + [anon_sym_LT] = ACTIONS(2918), + [anon_sym_GT] = ACTIONS(2918), + [anon_sym_EQ_EQ] = ACTIONS(2918), + [anon_sym_BANG_EQ] = ACTIONS(2918), + [anon_sym_LT_EQ] = ACTIONS(2918), + [anon_sym_GT_EQ] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_struct] = ACTIONS(2918), + [anon_sym_union] = ACTIONS(2918), + [anon_sym_pub] = ACTIONS(2918), + [anon_sym_mut] = ACTIONS(2918), + [anon_sym_enum] = ACTIONS(2918), + [anon_sym_interface] = ACTIONS(2918), + [anon_sym_PLUS_PLUS] = ACTIONS(2918), + [anon_sym_DASH_DASH] = ACTIONS(2918), + [anon_sym_QMARK] = ACTIONS(2918), + [anon_sym_BANG] = ACTIONS(2918), + [anon_sym_go] = ACTIONS(2918), + [anon_sym_spawn] = ACTIONS(2918), + [anon_sym_json_DOTdecode] = ACTIONS(2918), + [anon_sym_LBRACK2] = ACTIONS(2918), + [anon_sym_TILDE] = ACTIONS(2918), + [anon_sym_CARET] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2918), + [anon_sym_LT_DASH] = ACTIONS(2918), + [anon_sym_LT_LT] = ACTIONS(2918), + [anon_sym_GT_GT] = ACTIONS(2918), + [anon_sym_GT_GT_GT] = ACTIONS(2918), + [anon_sym_AMP_CARET] = ACTIONS(2918), + [anon_sym_AMP_AMP] = ACTIONS(2918), + [anon_sym_PIPE_PIPE] = ACTIONS(2918), + [anon_sym_or] = ACTIONS(2918), + [sym_none] = ACTIONS(2918), + [sym_true] = ACTIONS(2918), + [sym_false] = ACTIONS(2918), + [sym_nil] = ACTIONS(2918), + [anon_sym_QMARK_DOT] = ACTIONS(2918), + [anon_sym_POUND_LBRACK] = ACTIONS(2918), + [anon_sym_if] = ACTIONS(2918), + [anon_sym_DOLLARif] = ACTIONS(2918), + [anon_sym_is] = ACTIONS(2918), + [anon_sym_BANGis] = ACTIONS(2918), + [anon_sym_in] = ACTIONS(2918), + [anon_sym_BANGin] = ACTIONS(2918), + [anon_sym_match] = ACTIONS(2918), + [anon_sym_select] = ACTIONS(2918), + [anon_sym_lock] = ACTIONS(2918), + [anon_sym_rlock] = ACTIONS(2918), + [anon_sym_unsafe] = ACTIONS(2918), + [anon_sym_sql] = ACTIONS(2918), + [sym_int_literal] = ACTIONS(2918), + [sym_float_literal] = ACTIONS(2918), + [sym_rune_literal] = ACTIONS(2918), + [anon_sym_AT] = ACTIONS(2918), + [anon_sym_shared] = ACTIONS(2918), + [anon_sym_map_LBRACK] = ACTIONS(2918), + [anon_sym_chan] = ACTIONS(2918), + [anon_sym_thread] = ACTIONS(2918), + [anon_sym_atomic] = ACTIONS(2918), + [anon_sym_assert] = ACTIONS(2918), + [anon_sym_defer] = ACTIONS(2918), + [anon_sym_goto] = ACTIONS(2918), + [anon_sym_break] = ACTIONS(2918), + [anon_sym_continue] = ACTIONS(2918), + [anon_sym_return] = ACTIONS(2918), + [anon_sym_DOLLARfor] = ACTIONS(2918), + [anon_sym_for] = ACTIONS(2918), + [anon_sym_POUND] = ACTIONS(2918), + [anon_sym_asm] = ACTIONS(2918), + [anon_sym_AT_LBRACK] = ACTIONS(2918), + [sym___double_quote] = ACTIONS(2918), + [sym___single_quote] = ACTIONS(2918), + [sym___c_double_quote] = ACTIONS(2918), + [sym___c_single_quote] = ACTIONS(2918), + [sym___r_double_quote] = ACTIONS(2918), + [sym___r_single_quote] = ACTIONS(2918), }, [1075] = { - [ts_builtin_sym_end] = ACTIONS(2842), - [sym_identifier] = ACTIONS(2844), - [anon_sym_LF] = ACTIONS(2844), - [anon_sym_CR] = ACTIONS(2844), - [anon_sym_CR_LF] = ACTIONS(2844), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2844), - [anon_sym_as] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_COMMA] = ACTIONS(2844), - [anon_sym_const] = ACTIONS(2844), - [anon_sym_LPAREN] = ACTIONS(2844), - [anon_sym___global] = ACTIONS(2844), - [anon_sym_type] = ACTIONS(2844), - [anon_sym_PIPE] = ACTIONS(2844), - [anon_sym_fn] = ACTIONS(2844), - [anon_sym_PLUS] = ACTIONS(2844), - [anon_sym_DASH] = ACTIONS(2844), - [anon_sym_STAR] = ACTIONS(2844), - [anon_sym_SLASH] = ACTIONS(2844), - [anon_sym_PERCENT] = ACTIONS(2844), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_GT] = ACTIONS(2844), - [anon_sym_EQ_EQ] = ACTIONS(2844), - [anon_sym_BANG_EQ] = ACTIONS(2844), - [anon_sym_LT_EQ] = ACTIONS(2844), - [anon_sym_GT_EQ] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_struct] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(2844), - [anon_sym_pub] = ACTIONS(2844), - [anon_sym_mut] = ACTIONS(2844), - [anon_sym_enum] = ACTIONS(2844), - [anon_sym_interface] = ACTIONS(2844), - [anon_sym_PLUS_PLUS] = ACTIONS(2844), - [anon_sym_DASH_DASH] = ACTIONS(2844), - [anon_sym_QMARK] = ACTIONS(2844), - [anon_sym_BANG] = ACTIONS(2844), - [anon_sym_go] = ACTIONS(2844), - [anon_sym_spawn] = ACTIONS(2844), - [anon_sym_json_DOTdecode] = ACTIONS(2844), - [anon_sym_LBRACK2] = ACTIONS(2844), - [anon_sym_TILDE] = ACTIONS(2844), - [anon_sym_CARET] = ACTIONS(2844), - [anon_sym_AMP] = ACTIONS(2844), - [anon_sym_LT_DASH] = ACTIONS(2844), - [anon_sym_LT_LT] = ACTIONS(2844), - [anon_sym_GT_GT] = ACTIONS(2844), - [anon_sym_GT_GT_GT] = ACTIONS(2844), - [anon_sym_AMP_CARET] = ACTIONS(2844), - [anon_sym_AMP_AMP] = ACTIONS(2844), - [anon_sym_PIPE_PIPE] = ACTIONS(2844), - [anon_sym_or] = ACTIONS(2844), - [sym_none] = ACTIONS(2844), - [sym_true] = ACTIONS(2844), - [sym_false] = ACTIONS(2844), - [sym_nil] = ACTIONS(2844), - [anon_sym_QMARK_DOT] = ACTIONS(2844), - [anon_sym_POUND_LBRACK] = ACTIONS(2844), - [anon_sym_if] = ACTIONS(2844), - [anon_sym_DOLLARif] = ACTIONS(2844), - [anon_sym_is] = ACTIONS(2844), - [anon_sym_BANGis] = ACTIONS(2844), - [anon_sym_in] = ACTIONS(2844), - [anon_sym_BANGin] = ACTIONS(2844), - [anon_sym_match] = ACTIONS(2844), - [anon_sym_select] = ACTIONS(2844), - [anon_sym_lock] = ACTIONS(2844), - [anon_sym_rlock] = ACTIONS(2844), - [anon_sym_unsafe] = ACTIONS(2844), - [anon_sym_sql] = ACTIONS(2844), - [sym_int_literal] = ACTIONS(2844), - [sym_float_literal] = ACTIONS(2844), - [sym_rune_literal] = ACTIONS(2844), - [anon_sym_AT] = ACTIONS(2844), - [anon_sym_shared] = ACTIONS(2844), - [anon_sym_map_LBRACK] = ACTIONS(2844), - [anon_sym_chan] = ACTIONS(2844), - [anon_sym_thread] = ACTIONS(2844), - [anon_sym_atomic] = ACTIONS(2844), - [anon_sym_assert] = ACTIONS(2844), - [anon_sym_defer] = ACTIONS(2844), - [anon_sym_goto] = ACTIONS(2844), - [anon_sym_break] = ACTIONS(2844), - [anon_sym_continue] = ACTIONS(2844), - [anon_sym_return] = ACTIONS(2844), - [anon_sym_DOLLARfor] = ACTIONS(2844), - [anon_sym_for] = ACTIONS(2844), - [anon_sym_POUND] = ACTIONS(2844), - [anon_sym_asm] = ACTIONS(2844), - [anon_sym_AT_LBRACK] = ACTIONS(2844), - [sym___double_quote] = ACTIONS(2844), - [sym___single_quote] = ACTIONS(2844), - [sym___c_double_quote] = ACTIONS(2844), - [sym___c_single_quote] = ACTIONS(2844), - [sym___r_double_quote] = ACTIONS(2844), - [sym___r_single_quote] = ACTIONS(2844), + [ts_builtin_sym_end] = ACTIONS(2904), + [sym_identifier] = ACTIONS(2906), + [anon_sym_LF] = ACTIONS(2906), + [anon_sym_CR] = ACTIONS(2906), + [anon_sym_CR_LF] = ACTIONS(2906), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2906), + [anon_sym_as] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_COMMA] = ACTIONS(2906), + [anon_sym_const] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym___global] = ACTIONS(2906), + [anon_sym_type] = ACTIONS(2906), + [anon_sym_PIPE] = ACTIONS(2906), + [anon_sym_fn] = ACTIONS(2906), + [anon_sym_PLUS] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2906), + [anon_sym_SLASH] = ACTIONS(2906), + [anon_sym_PERCENT] = ACTIONS(2906), + [anon_sym_LT] = ACTIONS(2906), + [anon_sym_GT] = ACTIONS(2906), + [anon_sym_EQ_EQ] = ACTIONS(2906), + [anon_sym_BANG_EQ] = ACTIONS(2906), + [anon_sym_LT_EQ] = ACTIONS(2906), + [anon_sym_GT_EQ] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_struct] = ACTIONS(2906), + [anon_sym_union] = ACTIONS(2906), + [anon_sym_pub] = ACTIONS(2906), + [anon_sym_mut] = ACTIONS(2906), + [anon_sym_enum] = ACTIONS(2906), + [anon_sym_interface] = ACTIONS(2906), + [anon_sym_PLUS_PLUS] = ACTIONS(2906), + [anon_sym_DASH_DASH] = ACTIONS(2906), + [anon_sym_QMARK] = ACTIONS(2906), + [anon_sym_BANG] = ACTIONS(2906), + [anon_sym_go] = ACTIONS(2906), + [anon_sym_spawn] = ACTIONS(2906), + [anon_sym_json_DOTdecode] = ACTIONS(2906), + [anon_sym_LBRACK2] = ACTIONS(2906), + [anon_sym_TILDE] = ACTIONS(2906), + [anon_sym_CARET] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2906), + [anon_sym_LT_DASH] = ACTIONS(2906), + [anon_sym_LT_LT] = ACTIONS(2906), + [anon_sym_GT_GT] = ACTIONS(2906), + [anon_sym_GT_GT_GT] = ACTIONS(2906), + [anon_sym_AMP_CARET] = ACTIONS(2906), + [anon_sym_AMP_AMP] = ACTIONS(2906), + [anon_sym_PIPE_PIPE] = ACTIONS(2906), + [anon_sym_or] = ACTIONS(2906), + [sym_none] = ACTIONS(2906), + [sym_true] = ACTIONS(2906), + [sym_false] = ACTIONS(2906), + [sym_nil] = ACTIONS(2906), + [anon_sym_QMARK_DOT] = ACTIONS(2906), + [anon_sym_POUND_LBRACK] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_DOLLARif] = ACTIONS(2906), + [anon_sym_is] = ACTIONS(2906), + [anon_sym_BANGis] = ACTIONS(2906), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_BANGin] = ACTIONS(2906), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_select] = ACTIONS(2906), + [anon_sym_lock] = ACTIONS(2906), + [anon_sym_rlock] = ACTIONS(2906), + [anon_sym_unsafe] = ACTIONS(2906), + [anon_sym_sql] = ACTIONS(2906), + [sym_int_literal] = ACTIONS(2906), + [sym_float_literal] = ACTIONS(2906), + [sym_rune_literal] = ACTIONS(2906), + [anon_sym_AT] = ACTIONS(2906), + [anon_sym_shared] = ACTIONS(2906), + [anon_sym_map_LBRACK] = ACTIONS(2906), + [anon_sym_chan] = ACTIONS(2906), + [anon_sym_thread] = ACTIONS(2906), + [anon_sym_atomic] = ACTIONS(2906), + [anon_sym_assert] = ACTIONS(2906), + [anon_sym_defer] = ACTIONS(2906), + [anon_sym_goto] = ACTIONS(2906), + [anon_sym_break] = ACTIONS(2906), + [anon_sym_continue] = ACTIONS(2906), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_DOLLARfor] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_POUND] = ACTIONS(2906), + [anon_sym_asm] = ACTIONS(2906), + [anon_sym_AT_LBRACK] = ACTIONS(2906), + [sym___double_quote] = ACTIONS(2906), + [sym___single_quote] = ACTIONS(2906), + [sym___c_double_quote] = ACTIONS(2906), + [sym___c_single_quote] = ACTIONS(2906), + [sym___r_double_quote] = ACTIONS(2906), + [sym___r_single_quote] = ACTIONS(2906), }, [1076] = { - [ts_builtin_sym_end] = ACTIONS(2838), - [sym_identifier] = ACTIONS(2840), - [anon_sym_LF] = ACTIONS(2840), - [anon_sym_CR] = ACTIONS(2840), - [anon_sym_CR_LF] = ACTIONS(2840), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2840), - [anon_sym_as] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_COMMA] = ACTIONS(2840), - [anon_sym_const] = ACTIONS(2840), - [anon_sym_LPAREN] = ACTIONS(2840), - [anon_sym___global] = ACTIONS(2840), - [anon_sym_type] = ACTIONS(2840), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_fn] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SLASH] = ACTIONS(2840), - [anon_sym_PERCENT] = ACTIONS(2840), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_GT] = ACTIONS(2840), - [anon_sym_EQ_EQ] = ACTIONS(2840), - [anon_sym_BANG_EQ] = ACTIONS(2840), - [anon_sym_LT_EQ] = ACTIONS(2840), - [anon_sym_GT_EQ] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_struct] = ACTIONS(2840), - [anon_sym_union] = ACTIONS(2840), - [anon_sym_pub] = ACTIONS(2840), - [anon_sym_mut] = ACTIONS(2840), - [anon_sym_enum] = ACTIONS(2840), - [anon_sym_interface] = ACTIONS(2840), - [anon_sym_PLUS_PLUS] = ACTIONS(2840), - [anon_sym_DASH_DASH] = ACTIONS(2840), - [anon_sym_QMARK] = ACTIONS(2840), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_go] = ACTIONS(2840), - [anon_sym_spawn] = ACTIONS(2840), - [anon_sym_json_DOTdecode] = ACTIONS(2840), - [anon_sym_LBRACK2] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2840), - [anon_sym_CARET] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2840), - [anon_sym_LT_DASH] = ACTIONS(2840), - [anon_sym_LT_LT] = ACTIONS(2840), - [anon_sym_GT_GT] = ACTIONS(2840), - [anon_sym_GT_GT_GT] = ACTIONS(2840), - [anon_sym_AMP_CARET] = ACTIONS(2840), - [anon_sym_AMP_AMP] = ACTIONS(2840), - [anon_sym_PIPE_PIPE] = ACTIONS(2840), - [anon_sym_or] = ACTIONS(2840), - [sym_none] = ACTIONS(2840), - [sym_true] = ACTIONS(2840), - [sym_false] = ACTIONS(2840), - [sym_nil] = ACTIONS(2840), - [anon_sym_QMARK_DOT] = ACTIONS(2840), - [anon_sym_POUND_LBRACK] = ACTIONS(2840), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_DOLLARif] = ACTIONS(2840), - [anon_sym_is] = ACTIONS(2840), - [anon_sym_BANGis] = ACTIONS(2840), - [anon_sym_in] = ACTIONS(2840), - [anon_sym_BANGin] = ACTIONS(2840), - [anon_sym_match] = ACTIONS(2840), - [anon_sym_select] = ACTIONS(2840), - [anon_sym_lock] = ACTIONS(2840), - [anon_sym_rlock] = ACTIONS(2840), - [anon_sym_unsafe] = ACTIONS(2840), - [anon_sym_sql] = ACTIONS(2840), - [sym_int_literal] = ACTIONS(2840), - [sym_float_literal] = ACTIONS(2840), - [sym_rune_literal] = ACTIONS(2840), - [anon_sym_AT] = ACTIONS(2840), - [anon_sym_shared] = ACTIONS(2840), - [anon_sym_map_LBRACK] = ACTIONS(2840), - [anon_sym_chan] = ACTIONS(2840), - [anon_sym_thread] = ACTIONS(2840), - [anon_sym_atomic] = ACTIONS(2840), - [anon_sym_assert] = ACTIONS(2840), - [anon_sym_defer] = ACTIONS(2840), - [anon_sym_goto] = ACTIONS(2840), - [anon_sym_break] = ACTIONS(2840), - [anon_sym_continue] = ACTIONS(2840), - [anon_sym_return] = ACTIONS(2840), - [anon_sym_DOLLARfor] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2840), - [anon_sym_POUND] = ACTIONS(2840), - [anon_sym_asm] = ACTIONS(2840), - [anon_sym_AT_LBRACK] = ACTIONS(2840), - [sym___double_quote] = ACTIONS(2840), - [sym___single_quote] = ACTIONS(2840), - [sym___c_double_quote] = ACTIONS(2840), - [sym___c_single_quote] = ACTIONS(2840), - [sym___r_double_quote] = ACTIONS(2840), - [sym___r_single_quote] = ACTIONS(2840), + [ts_builtin_sym_end] = ACTIONS(2808), + [sym_identifier] = ACTIONS(2810), + [anon_sym_LF] = ACTIONS(2810), + [anon_sym_CR] = ACTIONS(2810), + [anon_sym_CR_LF] = ACTIONS(2810), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2810), + [anon_sym_as] = ACTIONS(2810), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_COMMA] = ACTIONS(2810), + [anon_sym_const] = ACTIONS(2810), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym___global] = ACTIONS(2810), + [anon_sym_type] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_fn] = ACTIONS(2810), + [anon_sym_PLUS] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_STAR] = ACTIONS(2810), + [anon_sym_SLASH] = ACTIONS(2810), + [anon_sym_PERCENT] = ACTIONS(2810), + [anon_sym_LT] = ACTIONS(2810), + [anon_sym_GT] = ACTIONS(2810), + [anon_sym_EQ_EQ] = ACTIONS(2810), + [anon_sym_BANG_EQ] = ACTIONS(2810), + [anon_sym_LT_EQ] = ACTIONS(2810), + [anon_sym_GT_EQ] = ACTIONS(2810), + [anon_sym_LBRACK] = ACTIONS(2808), + [anon_sym_struct] = ACTIONS(2810), + [anon_sym_union] = ACTIONS(2810), + [anon_sym_pub] = ACTIONS(2810), + [anon_sym_mut] = ACTIONS(2810), + [anon_sym_enum] = ACTIONS(2810), + [anon_sym_interface] = ACTIONS(2810), + [anon_sym_PLUS_PLUS] = ACTIONS(2810), + [anon_sym_DASH_DASH] = ACTIONS(2810), + [anon_sym_QMARK] = ACTIONS(2810), + [anon_sym_BANG] = ACTIONS(2810), + [anon_sym_go] = ACTIONS(2810), + [anon_sym_spawn] = ACTIONS(2810), + [anon_sym_json_DOTdecode] = ACTIONS(2810), + [anon_sym_LBRACK2] = ACTIONS(2810), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2810), + [anon_sym_LT_DASH] = ACTIONS(2810), + [anon_sym_LT_LT] = ACTIONS(2810), + [anon_sym_GT_GT] = ACTIONS(2810), + [anon_sym_GT_GT_GT] = ACTIONS(2810), + [anon_sym_AMP_CARET] = ACTIONS(2810), + [anon_sym_AMP_AMP] = ACTIONS(2810), + [anon_sym_PIPE_PIPE] = ACTIONS(2810), + [anon_sym_or] = ACTIONS(2810), + [sym_none] = ACTIONS(2810), + [sym_true] = ACTIONS(2810), + [sym_false] = ACTIONS(2810), + [sym_nil] = ACTIONS(2810), + [anon_sym_QMARK_DOT] = ACTIONS(2810), + [anon_sym_POUND_LBRACK] = ACTIONS(2810), + [anon_sym_if] = ACTIONS(2810), + [anon_sym_DOLLARif] = ACTIONS(2810), + [anon_sym_is] = ACTIONS(2810), + [anon_sym_BANGis] = ACTIONS(2810), + [anon_sym_in] = ACTIONS(2810), + [anon_sym_BANGin] = ACTIONS(2810), + [anon_sym_match] = ACTIONS(2810), + [anon_sym_select] = ACTIONS(2810), + [anon_sym_lock] = ACTIONS(2810), + [anon_sym_rlock] = ACTIONS(2810), + [anon_sym_unsafe] = ACTIONS(2810), + [anon_sym_sql] = ACTIONS(2810), + [sym_int_literal] = ACTIONS(2810), + [sym_float_literal] = ACTIONS(2810), + [sym_rune_literal] = ACTIONS(2810), + [anon_sym_AT] = ACTIONS(2810), + [anon_sym_shared] = ACTIONS(2810), + [anon_sym_map_LBRACK] = ACTIONS(2810), + [anon_sym_chan] = ACTIONS(2810), + [anon_sym_thread] = ACTIONS(2810), + [anon_sym_atomic] = ACTIONS(2810), + [anon_sym_assert] = ACTIONS(2810), + [anon_sym_defer] = ACTIONS(2810), + [anon_sym_goto] = ACTIONS(2810), + [anon_sym_break] = ACTIONS(2810), + [anon_sym_continue] = ACTIONS(2810), + [anon_sym_return] = ACTIONS(2810), + [anon_sym_DOLLARfor] = ACTIONS(2810), + [anon_sym_for] = ACTIONS(2810), + [anon_sym_POUND] = ACTIONS(2810), + [anon_sym_asm] = ACTIONS(2810), + [anon_sym_AT_LBRACK] = ACTIONS(2810), + [sym___double_quote] = ACTIONS(2810), + [sym___single_quote] = ACTIONS(2810), + [sym___c_double_quote] = ACTIONS(2810), + [sym___c_single_quote] = ACTIONS(2810), + [sym___r_double_quote] = ACTIONS(2810), + [sym___r_single_quote] = ACTIONS(2810), }, [1077] = { - [ts_builtin_sym_end] = ACTIONS(3163), - [sym_identifier] = ACTIONS(3165), - [anon_sym_LF] = ACTIONS(3165), - [anon_sym_CR] = ACTIONS(3165), - [anon_sym_CR_LF] = ACTIONS(3165), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_as] = ACTIONS(3165), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3165), - [anon_sym_const] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym___global] = ACTIONS(3165), - [anon_sym_type] = ACTIONS(3165), - [anon_sym_PIPE] = ACTIONS(3165), - [anon_sym_fn] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_STAR] = ACTIONS(3165), - [anon_sym_SLASH] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_LT] = ACTIONS(3165), - [anon_sym_GT] = ACTIONS(3165), - [anon_sym_EQ_EQ] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_LT_EQ] = ACTIONS(3165), - [anon_sym_GT_EQ] = ACTIONS(3165), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3165), - [anon_sym_pub] = ACTIONS(3165), - [anon_sym_mut] = ACTIONS(3165), - [anon_sym_enum] = ACTIONS(3165), - [anon_sym_interface] = ACTIONS(3165), - [anon_sym_PLUS_PLUS] = ACTIONS(3165), - [anon_sym_DASH_DASH] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_BANG] = ACTIONS(3165), - [anon_sym_go] = ACTIONS(3165), - [anon_sym_spawn] = ACTIONS(3165), - [anon_sym_json_DOTdecode] = ACTIONS(3165), - [anon_sym_LBRACK2] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3165), - [anon_sym_CARET] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_LT_LT] = ACTIONS(3165), - [anon_sym_GT_GT] = ACTIONS(3165), - [anon_sym_GT_GT_GT] = ACTIONS(3165), - [anon_sym_AMP_CARET] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [sym_none] = ACTIONS(3165), - [sym_true] = ACTIONS(3165), - [sym_false] = ACTIONS(3165), - [sym_nil] = ACTIONS(3165), - [anon_sym_QMARK_DOT] = ACTIONS(3165), - [anon_sym_POUND_LBRACK] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_DOLLARif] = ACTIONS(3165), - [anon_sym_is] = ACTIONS(3165), - [anon_sym_BANGis] = ACTIONS(3165), - [anon_sym_in] = ACTIONS(3165), - [anon_sym_BANGin] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_select] = ACTIONS(3165), - [anon_sym_lock] = ACTIONS(3165), - [anon_sym_rlock] = ACTIONS(3165), - [anon_sym_unsafe] = ACTIONS(3165), - [anon_sym_sql] = ACTIONS(3165), - [sym_int_literal] = ACTIONS(3165), - [sym_float_literal] = ACTIONS(3165), - [sym_rune_literal] = ACTIONS(3165), - [anon_sym_AT] = ACTIONS(3165), - [anon_sym_shared] = ACTIONS(3165), - [anon_sym_map_LBRACK] = ACTIONS(3165), - [anon_sym_chan] = ACTIONS(3165), - [anon_sym_thread] = ACTIONS(3165), - [anon_sym_atomic] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_defer] = ACTIONS(3165), - [anon_sym_goto] = ACTIONS(3165), - [anon_sym_break] = ACTIONS(3165), - [anon_sym_continue] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_DOLLARfor] = ACTIONS(3165), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_POUND] = ACTIONS(3165), - [anon_sym_asm] = ACTIONS(3165), - [anon_sym_AT_LBRACK] = ACTIONS(3165), - [sym___double_quote] = ACTIONS(3165), - [sym___single_quote] = ACTIONS(3165), - [sym___c_double_quote] = ACTIONS(3165), - [sym___c_single_quote] = ACTIONS(3165), - [sym___r_double_quote] = ACTIONS(3165), - [sym___r_single_quote] = ACTIONS(3165), + [ts_builtin_sym_end] = ACTIONS(2812), + [sym_identifier] = ACTIONS(2814), + [anon_sym_LF] = ACTIONS(2814), + [anon_sym_CR] = ACTIONS(2814), + [anon_sym_CR_LF] = ACTIONS(2814), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2814), + [anon_sym_as] = ACTIONS(2814), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_COMMA] = ACTIONS(2814), + [anon_sym_const] = ACTIONS(2814), + [anon_sym_LPAREN] = ACTIONS(2814), + [anon_sym___global] = ACTIONS(2814), + [anon_sym_type] = ACTIONS(2814), + [anon_sym_PIPE] = ACTIONS(2814), + [anon_sym_fn] = ACTIONS(2814), + [anon_sym_PLUS] = ACTIONS(2814), + [anon_sym_DASH] = ACTIONS(2814), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_SLASH] = ACTIONS(2814), + [anon_sym_PERCENT] = ACTIONS(2814), + [anon_sym_LT] = ACTIONS(2814), + [anon_sym_GT] = ACTIONS(2814), + [anon_sym_EQ_EQ] = ACTIONS(2814), + [anon_sym_BANG_EQ] = ACTIONS(2814), + [anon_sym_LT_EQ] = ACTIONS(2814), + [anon_sym_GT_EQ] = ACTIONS(2814), + [anon_sym_LBRACK] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2814), + [anon_sym_union] = ACTIONS(2814), + [anon_sym_pub] = ACTIONS(2814), + [anon_sym_mut] = ACTIONS(2814), + [anon_sym_enum] = ACTIONS(2814), + [anon_sym_interface] = ACTIONS(2814), + [anon_sym_PLUS_PLUS] = ACTIONS(2814), + [anon_sym_DASH_DASH] = ACTIONS(2814), + [anon_sym_QMARK] = ACTIONS(2814), + [anon_sym_BANG] = ACTIONS(2814), + [anon_sym_go] = ACTIONS(2814), + [anon_sym_spawn] = ACTIONS(2814), + [anon_sym_json_DOTdecode] = ACTIONS(2814), + [anon_sym_LBRACK2] = ACTIONS(2814), + [anon_sym_TILDE] = ACTIONS(2814), + [anon_sym_CARET] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2814), + [anon_sym_LT_DASH] = ACTIONS(2814), + [anon_sym_LT_LT] = ACTIONS(2814), + [anon_sym_GT_GT] = ACTIONS(2814), + [anon_sym_GT_GT_GT] = ACTIONS(2814), + [anon_sym_AMP_CARET] = ACTIONS(2814), + [anon_sym_AMP_AMP] = ACTIONS(2814), + [anon_sym_PIPE_PIPE] = ACTIONS(2814), + [anon_sym_or] = ACTIONS(2814), + [sym_none] = ACTIONS(2814), + [sym_true] = ACTIONS(2814), + [sym_false] = ACTIONS(2814), + [sym_nil] = ACTIONS(2814), + [anon_sym_QMARK_DOT] = ACTIONS(2814), + [anon_sym_POUND_LBRACK] = ACTIONS(2814), + [anon_sym_if] = ACTIONS(2814), + [anon_sym_DOLLARif] = ACTIONS(2814), + [anon_sym_is] = ACTIONS(2814), + [anon_sym_BANGis] = ACTIONS(2814), + [anon_sym_in] = ACTIONS(2814), + [anon_sym_BANGin] = ACTIONS(2814), + [anon_sym_match] = ACTIONS(2814), + [anon_sym_select] = ACTIONS(2814), + [anon_sym_lock] = ACTIONS(2814), + [anon_sym_rlock] = ACTIONS(2814), + [anon_sym_unsafe] = ACTIONS(2814), + [anon_sym_sql] = ACTIONS(2814), + [sym_int_literal] = ACTIONS(2814), + [sym_float_literal] = ACTIONS(2814), + [sym_rune_literal] = ACTIONS(2814), + [anon_sym_AT] = ACTIONS(2814), + [anon_sym_shared] = ACTIONS(2814), + [anon_sym_map_LBRACK] = ACTIONS(2814), + [anon_sym_chan] = ACTIONS(2814), + [anon_sym_thread] = ACTIONS(2814), + [anon_sym_atomic] = ACTIONS(2814), + [anon_sym_assert] = ACTIONS(2814), + [anon_sym_defer] = ACTIONS(2814), + [anon_sym_goto] = ACTIONS(2814), + [anon_sym_break] = ACTIONS(2814), + [anon_sym_continue] = ACTIONS(2814), + [anon_sym_return] = ACTIONS(2814), + [anon_sym_DOLLARfor] = ACTIONS(2814), + [anon_sym_for] = ACTIONS(2814), + [anon_sym_POUND] = ACTIONS(2814), + [anon_sym_asm] = ACTIONS(2814), + [anon_sym_AT_LBRACK] = ACTIONS(2814), + [sym___double_quote] = ACTIONS(2814), + [sym___single_quote] = ACTIONS(2814), + [sym___c_double_quote] = ACTIONS(2814), + [sym___c_single_quote] = ACTIONS(2814), + [sym___r_double_quote] = ACTIONS(2814), + [sym___r_single_quote] = ACTIONS(2814), }, [1078] = { - [ts_builtin_sym_end] = ACTIONS(2889), - [sym_identifier] = ACTIONS(2891), - [anon_sym_LF] = ACTIONS(2891), - [anon_sym_CR] = ACTIONS(2891), - [anon_sym_CR_LF] = ACTIONS(2891), - [sym_comment] = ACTIONS(487), - [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_AT] = ACTIONS(2891), - [anon_sym_shared] = ACTIONS(2891), - [anon_sym_map_LBRACK] = ACTIONS(2891), - [anon_sym_chan] = ACTIONS(2891), - [anon_sym_thread] = ACTIONS(2891), - [anon_sym_atomic] = ACTIONS(2891), - [anon_sym_assert] = ACTIONS(2891), - [anon_sym_defer] = ACTIONS(2891), - [anon_sym_goto] = ACTIONS(2891), - [anon_sym_break] = ACTIONS(2891), - [anon_sym_continue] = ACTIONS(2891), - [anon_sym_return] = ACTIONS(2891), - [anon_sym_DOLLARfor] = ACTIONS(2891), - [anon_sym_for] = ACTIONS(2891), - [anon_sym_POUND] = ACTIONS(2891), - [anon_sym_asm] = ACTIONS(2891), - [anon_sym_AT_LBRACK] = ACTIONS(2891), - [sym___double_quote] = ACTIONS(2891), - [sym___single_quote] = ACTIONS(2891), - [sym___c_double_quote] = ACTIONS(2891), - [sym___c_single_quote] = ACTIONS(2891), - [sym___r_double_quote] = ACTIONS(2891), - [sym___r_single_quote] = ACTIONS(2891), + [ts_builtin_sym_end] = ACTIONS(2876), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LF] = ACTIONS(2878), + [anon_sym_CR] = ACTIONS(2878), + [anon_sym_CR_LF] = ACTIONS(2878), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2878), + [anon_sym_as] = ACTIONS(2878), + [anon_sym_LBRACE] = ACTIONS(2878), + [anon_sym_COMMA] = ACTIONS(2878), + [anon_sym_const] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2878), + [anon_sym___global] = ACTIONS(2878), + [anon_sym_type] = ACTIONS(2878), + [anon_sym_PIPE] = ACTIONS(2878), + [anon_sym_fn] = ACTIONS(2878), + [anon_sym_PLUS] = ACTIONS(2878), + [anon_sym_DASH] = ACTIONS(2878), + [anon_sym_STAR] = ACTIONS(2878), + [anon_sym_SLASH] = ACTIONS(2878), + [anon_sym_PERCENT] = ACTIONS(2878), + [anon_sym_LT] = ACTIONS(2878), + [anon_sym_GT] = ACTIONS(2878), + [anon_sym_EQ_EQ] = ACTIONS(2878), + [anon_sym_BANG_EQ] = ACTIONS(2878), + [anon_sym_LT_EQ] = ACTIONS(2878), + [anon_sym_GT_EQ] = ACTIONS(2878), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_struct] = ACTIONS(2878), + [anon_sym_union] = ACTIONS(2878), + [anon_sym_pub] = ACTIONS(2878), + [anon_sym_mut] = ACTIONS(2878), + [anon_sym_enum] = ACTIONS(2878), + [anon_sym_interface] = ACTIONS(2878), + [anon_sym_PLUS_PLUS] = ACTIONS(2878), + [anon_sym_DASH_DASH] = ACTIONS(2878), + [anon_sym_QMARK] = ACTIONS(2878), + [anon_sym_BANG] = ACTIONS(2878), + [anon_sym_go] = ACTIONS(2878), + [anon_sym_spawn] = ACTIONS(2878), + [anon_sym_json_DOTdecode] = ACTIONS(2878), + [anon_sym_LBRACK2] = ACTIONS(2878), + [anon_sym_TILDE] = ACTIONS(2878), + [anon_sym_CARET] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2878), + [anon_sym_LT_DASH] = ACTIONS(2878), + [anon_sym_LT_LT] = ACTIONS(2878), + [anon_sym_GT_GT] = ACTIONS(2878), + [anon_sym_GT_GT_GT] = ACTIONS(2878), + [anon_sym_AMP_CARET] = ACTIONS(2878), + [anon_sym_AMP_AMP] = ACTIONS(2878), + [anon_sym_PIPE_PIPE] = ACTIONS(2878), + [anon_sym_or] = ACTIONS(2878), + [sym_none] = ACTIONS(2878), + [sym_true] = ACTIONS(2878), + [sym_false] = ACTIONS(2878), + [sym_nil] = ACTIONS(2878), + [anon_sym_QMARK_DOT] = ACTIONS(2878), + [anon_sym_POUND_LBRACK] = ACTIONS(2878), + [anon_sym_if] = ACTIONS(2878), + [anon_sym_DOLLARif] = ACTIONS(2878), + [anon_sym_is] = ACTIONS(2878), + [anon_sym_BANGis] = ACTIONS(2878), + [anon_sym_in] = ACTIONS(2878), + [anon_sym_BANGin] = ACTIONS(2878), + [anon_sym_match] = ACTIONS(2878), + [anon_sym_select] = ACTIONS(2878), + [anon_sym_lock] = ACTIONS(2878), + [anon_sym_rlock] = ACTIONS(2878), + [anon_sym_unsafe] = ACTIONS(2878), + [anon_sym_sql] = ACTIONS(2878), + [sym_int_literal] = ACTIONS(2878), + [sym_float_literal] = ACTIONS(2878), + [sym_rune_literal] = ACTIONS(2878), + [anon_sym_AT] = ACTIONS(2878), + [anon_sym_shared] = ACTIONS(2878), + [anon_sym_map_LBRACK] = ACTIONS(2878), + [anon_sym_chan] = ACTIONS(2878), + [anon_sym_thread] = ACTIONS(2878), + [anon_sym_atomic] = ACTIONS(2878), + [anon_sym_assert] = ACTIONS(2878), + [anon_sym_defer] = ACTIONS(2878), + [anon_sym_goto] = ACTIONS(2878), + [anon_sym_break] = ACTIONS(2878), + [anon_sym_continue] = ACTIONS(2878), + [anon_sym_return] = ACTIONS(2878), + [anon_sym_DOLLARfor] = ACTIONS(2878), + [anon_sym_for] = ACTIONS(2878), + [anon_sym_POUND] = ACTIONS(2878), + [anon_sym_asm] = ACTIONS(2878), + [anon_sym_AT_LBRACK] = ACTIONS(2878), + [sym___double_quote] = ACTIONS(2878), + [sym___single_quote] = ACTIONS(2878), + [sym___c_double_quote] = ACTIONS(2878), + [sym___c_single_quote] = ACTIONS(2878), + [sym___r_double_quote] = ACTIONS(2878), + [sym___r_single_quote] = ACTIONS(2878), }, [1079] = { - [ts_builtin_sym_end] = ACTIONS(2976), - [sym_identifier] = ACTIONS(2973), - [anon_sym_LF] = ACTIONS(2973), - [anon_sym_CR] = ACTIONS(2973), - [anon_sym_CR_LF] = ACTIONS(2973), - [sym_comment] = ACTIONS(487), - [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_PIPE] = 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(2976), - [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_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_AT] = 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), - [sym___double_quote] = ACTIONS(2973), - [sym___single_quote] = ACTIONS(2973), - [sym___c_double_quote] = ACTIONS(2973), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2973), - [sym___r_single_quote] = ACTIONS(2973), + [ts_builtin_sym_end] = ACTIONS(2796), + [sym_identifier] = ACTIONS(2798), + [anon_sym_LF] = ACTIONS(2798), + [anon_sym_CR] = ACTIONS(2798), + [anon_sym_CR_LF] = ACTIONS(2798), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2798), + [anon_sym_as] = ACTIONS(2798), + [anon_sym_LBRACE] = ACTIONS(2798), + [anon_sym_COMMA] = ACTIONS(2798), + [anon_sym_const] = ACTIONS(2798), + [anon_sym_LPAREN] = ACTIONS(2798), + [anon_sym___global] = ACTIONS(2798), + [anon_sym_type] = ACTIONS(2798), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_fn] = ACTIONS(2798), + [anon_sym_PLUS] = ACTIONS(2798), + [anon_sym_DASH] = ACTIONS(2798), + [anon_sym_STAR] = ACTIONS(2798), + [anon_sym_SLASH] = ACTIONS(2798), + [anon_sym_PERCENT] = ACTIONS(2798), + [anon_sym_LT] = ACTIONS(2798), + [anon_sym_GT] = ACTIONS(2798), + [anon_sym_EQ_EQ] = ACTIONS(2798), + [anon_sym_BANG_EQ] = ACTIONS(2798), + [anon_sym_LT_EQ] = ACTIONS(2798), + [anon_sym_GT_EQ] = ACTIONS(2798), + [anon_sym_LBRACK] = ACTIONS(2796), + [anon_sym_struct] = ACTIONS(2798), + [anon_sym_union] = ACTIONS(2798), + [anon_sym_pub] = ACTIONS(2798), + [anon_sym_mut] = ACTIONS(2798), + [anon_sym_enum] = ACTIONS(2798), + [anon_sym_interface] = ACTIONS(2798), + [anon_sym_PLUS_PLUS] = ACTIONS(2798), + [anon_sym_DASH_DASH] = ACTIONS(2798), + [anon_sym_QMARK] = ACTIONS(2798), + [anon_sym_BANG] = ACTIONS(2798), + [anon_sym_go] = ACTIONS(2798), + [anon_sym_spawn] = ACTIONS(2798), + [anon_sym_json_DOTdecode] = ACTIONS(2798), + [anon_sym_LBRACK2] = ACTIONS(2798), + [anon_sym_TILDE] = ACTIONS(2798), + [anon_sym_CARET] = ACTIONS(2798), + [anon_sym_AMP] = ACTIONS(2798), + [anon_sym_LT_DASH] = ACTIONS(2798), + [anon_sym_LT_LT] = ACTIONS(2798), + [anon_sym_GT_GT] = ACTIONS(2798), + [anon_sym_GT_GT_GT] = ACTIONS(2798), + [anon_sym_AMP_CARET] = ACTIONS(2798), + [anon_sym_AMP_AMP] = ACTIONS(2798), + [anon_sym_PIPE_PIPE] = ACTIONS(2798), + [anon_sym_or] = ACTIONS(2798), + [sym_none] = ACTIONS(2798), + [sym_true] = ACTIONS(2798), + [sym_false] = ACTIONS(2798), + [sym_nil] = ACTIONS(2798), + [anon_sym_QMARK_DOT] = ACTIONS(2798), + [anon_sym_POUND_LBRACK] = ACTIONS(2798), + [anon_sym_if] = ACTIONS(2798), + [anon_sym_DOLLARif] = ACTIONS(2798), + [anon_sym_is] = ACTIONS(2798), + [anon_sym_BANGis] = ACTIONS(2798), + [anon_sym_in] = ACTIONS(2798), + [anon_sym_BANGin] = ACTIONS(2798), + [anon_sym_match] = ACTIONS(2798), + [anon_sym_select] = ACTIONS(2798), + [anon_sym_lock] = ACTIONS(2798), + [anon_sym_rlock] = ACTIONS(2798), + [anon_sym_unsafe] = ACTIONS(2798), + [anon_sym_sql] = ACTIONS(2798), + [sym_int_literal] = ACTIONS(2798), + [sym_float_literal] = ACTIONS(2798), + [sym_rune_literal] = ACTIONS(2798), + [anon_sym_AT] = ACTIONS(2798), + [anon_sym_shared] = ACTIONS(2798), + [anon_sym_map_LBRACK] = ACTIONS(2798), + [anon_sym_chan] = ACTIONS(2798), + [anon_sym_thread] = ACTIONS(2798), + [anon_sym_atomic] = ACTIONS(2798), + [anon_sym_assert] = ACTIONS(2798), + [anon_sym_defer] = ACTIONS(2798), + [anon_sym_goto] = ACTIONS(2798), + [anon_sym_break] = ACTIONS(2798), + [anon_sym_continue] = ACTIONS(2798), + [anon_sym_return] = ACTIONS(2798), + [anon_sym_DOLLARfor] = ACTIONS(2798), + [anon_sym_for] = ACTIONS(2798), + [anon_sym_POUND] = ACTIONS(2798), + [anon_sym_asm] = ACTIONS(2798), + [anon_sym_AT_LBRACK] = ACTIONS(2798), + [sym___double_quote] = ACTIONS(2798), + [sym___single_quote] = ACTIONS(2798), + [sym___c_double_quote] = ACTIONS(2798), + [sym___c_single_quote] = ACTIONS(2798), + [sym___r_double_quote] = ACTIONS(2798), + [sym___r_single_quote] = ACTIONS(2798), }, [1080] = { - [ts_builtin_sym_end] = ACTIONS(2893), - [sym_identifier] = ACTIONS(2895), - [anon_sym_LF] = ACTIONS(2895), - [anon_sym_CR] = ACTIONS(2895), - [anon_sym_CR_LF] = ACTIONS(2895), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2895), - [anon_sym_as] = ACTIONS(2895), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_COMMA] = ACTIONS(2895), - [anon_sym_const] = ACTIONS(2895), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym___global] = ACTIONS(2895), - [anon_sym_type] = ACTIONS(2895), - [anon_sym_PIPE] = ACTIONS(2895), - [anon_sym_fn] = ACTIONS(2895), - [anon_sym_PLUS] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2895), - [anon_sym_STAR] = ACTIONS(2895), - [anon_sym_SLASH] = ACTIONS(2895), - [anon_sym_PERCENT] = ACTIONS(2895), - [anon_sym_LT] = ACTIONS(2895), - [anon_sym_GT] = ACTIONS(2895), - [anon_sym_EQ_EQ] = ACTIONS(2895), - [anon_sym_BANG_EQ] = ACTIONS(2895), - [anon_sym_LT_EQ] = ACTIONS(2895), - [anon_sym_GT_EQ] = ACTIONS(2895), - [anon_sym_LBRACK] = ACTIONS(2893), - [anon_sym_struct] = ACTIONS(2895), - [anon_sym_union] = ACTIONS(2895), - [anon_sym_pub] = ACTIONS(2895), - [anon_sym_mut] = ACTIONS(2895), - [anon_sym_enum] = ACTIONS(2895), - [anon_sym_interface] = ACTIONS(2895), - [anon_sym_PLUS_PLUS] = ACTIONS(2895), - [anon_sym_DASH_DASH] = ACTIONS(2895), - [anon_sym_QMARK] = ACTIONS(2895), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_go] = ACTIONS(2895), - [anon_sym_spawn] = ACTIONS(2895), - [anon_sym_json_DOTdecode] = ACTIONS(2895), - [anon_sym_LBRACK2] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_CARET] = ACTIONS(2895), - [anon_sym_AMP] = ACTIONS(2895), - [anon_sym_LT_DASH] = ACTIONS(2895), - [anon_sym_LT_LT] = ACTIONS(2895), - [anon_sym_GT_GT] = ACTIONS(2895), - [anon_sym_GT_GT_GT] = ACTIONS(2895), - [anon_sym_AMP_CARET] = ACTIONS(2895), - [anon_sym_AMP_AMP] = ACTIONS(2895), - [anon_sym_PIPE_PIPE] = ACTIONS(2895), - [anon_sym_or] = ACTIONS(2895), - [sym_none] = ACTIONS(2895), - [sym_true] = ACTIONS(2895), - [sym_false] = ACTIONS(2895), - [sym_nil] = ACTIONS(2895), - [anon_sym_QMARK_DOT] = ACTIONS(2895), - [anon_sym_POUND_LBRACK] = ACTIONS(2895), - [anon_sym_if] = ACTIONS(2895), - [anon_sym_DOLLARif] = ACTIONS(2895), - [anon_sym_is] = ACTIONS(2895), - [anon_sym_BANGis] = ACTIONS(2895), - [anon_sym_in] = ACTIONS(2895), - [anon_sym_BANGin] = ACTIONS(2895), - [anon_sym_match] = ACTIONS(2895), - [anon_sym_select] = ACTIONS(2895), - [anon_sym_lock] = ACTIONS(2895), - [anon_sym_rlock] = ACTIONS(2895), - [anon_sym_unsafe] = ACTIONS(2895), - [anon_sym_sql] = ACTIONS(2895), - [sym_int_literal] = ACTIONS(2895), - [sym_float_literal] = ACTIONS(2895), - [sym_rune_literal] = ACTIONS(2895), - [anon_sym_AT] = ACTIONS(2895), - [anon_sym_shared] = ACTIONS(2895), - [anon_sym_map_LBRACK] = ACTIONS(2895), - [anon_sym_chan] = ACTIONS(2895), - [anon_sym_thread] = ACTIONS(2895), - [anon_sym_atomic] = ACTIONS(2895), - [anon_sym_assert] = ACTIONS(2895), - [anon_sym_defer] = ACTIONS(2895), - [anon_sym_goto] = ACTIONS(2895), - [anon_sym_break] = ACTIONS(2895), - [anon_sym_continue] = ACTIONS(2895), - [anon_sym_return] = ACTIONS(2895), - [anon_sym_DOLLARfor] = ACTIONS(2895), - [anon_sym_for] = ACTIONS(2895), - [anon_sym_POUND] = ACTIONS(2895), - [anon_sym_asm] = ACTIONS(2895), - [anon_sym_AT_LBRACK] = ACTIONS(2895), - [sym___double_quote] = ACTIONS(2895), - [sym___single_quote] = ACTIONS(2895), - [sym___c_double_quote] = ACTIONS(2895), - [sym___c_single_quote] = ACTIONS(2895), - [sym___r_double_quote] = ACTIONS(2895), - [sym___r_single_quote] = ACTIONS(2895), + [ts_builtin_sym_end] = ACTIONS(3076), + [sym_identifier] = ACTIONS(3078), + [anon_sym_LF] = ACTIONS(3078), + [anon_sym_CR] = ACTIONS(3078), + [anon_sym_CR_LF] = ACTIONS(3078), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3078), + [anon_sym_as] = ACTIONS(3078), + [anon_sym_LBRACE] = ACTIONS(3078), + [anon_sym_COMMA] = ACTIONS(3078), + [anon_sym_const] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym___global] = ACTIONS(3078), + [anon_sym_type] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3078), + [anon_sym_fn] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(3078), + [anon_sym_SLASH] = ACTIONS(3078), + [anon_sym_PERCENT] = ACTIONS(3078), + [anon_sym_LT] = ACTIONS(3078), + [anon_sym_GT] = ACTIONS(3078), + [anon_sym_EQ_EQ] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(3078), + [anon_sym_LT_EQ] = ACTIONS(3078), + [anon_sym_GT_EQ] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_struct] = ACTIONS(3078), + [anon_sym_union] = ACTIONS(3078), + [anon_sym_pub] = ACTIONS(3078), + [anon_sym_mut] = ACTIONS(3078), + [anon_sym_enum] = ACTIONS(3078), + [anon_sym_interface] = ACTIONS(3078), + [anon_sym_PLUS_PLUS] = ACTIONS(3078), + [anon_sym_DASH_DASH] = ACTIONS(3078), + [anon_sym_QMARK] = ACTIONS(3078), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_go] = ACTIONS(3078), + [anon_sym_spawn] = ACTIONS(3078), + [anon_sym_json_DOTdecode] = ACTIONS(3078), + [anon_sym_LBRACK2] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_CARET] = ACTIONS(3078), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3078), + [anon_sym_LT_LT] = ACTIONS(3078), + [anon_sym_GT_GT] = ACTIONS(3078), + [anon_sym_GT_GT_GT] = ACTIONS(3078), + [anon_sym_AMP_CARET] = ACTIONS(3078), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_or] = ACTIONS(3078), + [sym_none] = ACTIONS(3078), + [sym_true] = ACTIONS(3078), + [sym_false] = ACTIONS(3078), + [sym_nil] = ACTIONS(3078), + [anon_sym_QMARK_DOT] = ACTIONS(3078), + [anon_sym_POUND_LBRACK] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_DOLLARif] = ACTIONS(3078), + [anon_sym_is] = ACTIONS(3078), + [anon_sym_BANGis] = ACTIONS(3078), + [anon_sym_in] = ACTIONS(3078), + [anon_sym_BANGin] = ACTIONS(3078), + [anon_sym_match] = ACTIONS(3078), + [anon_sym_select] = ACTIONS(3078), + [anon_sym_lock] = ACTIONS(3078), + [anon_sym_rlock] = ACTIONS(3078), + [anon_sym_unsafe] = ACTIONS(3078), + [anon_sym_sql] = ACTIONS(3078), + [sym_int_literal] = ACTIONS(3078), + [sym_float_literal] = ACTIONS(3078), + [sym_rune_literal] = ACTIONS(3078), + [anon_sym_AT] = ACTIONS(3078), + [anon_sym_shared] = ACTIONS(3078), + [anon_sym_map_LBRACK] = ACTIONS(3078), + [anon_sym_chan] = ACTIONS(3078), + [anon_sym_thread] = ACTIONS(3078), + [anon_sym_atomic] = ACTIONS(3078), + [anon_sym_assert] = ACTIONS(3078), + [anon_sym_defer] = ACTIONS(3078), + [anon_sym_goto] = ACTIONS(3078), + [anon_sym_break] = ACTIONS(3078), + [anon_sym_continue] = ACTIONS(3078), + [anon_sym_return] = ACTIONS(3078), + [anon_sym_DOLLARfor] = ACTIONS(3078), + [anon_sym_for] = ACTIONS(3078), + [anon_sym_POUND] = ACTIONS(3078), + [anon_sym_asm] = ACTIONS(3078), + [anon_sym_AT_LBRACK] = ACTIONS(3078), + [sym___double_quote] = ACTIONS(3078), + [sym___single_quote] = ACTIONS(3078), + [sym___c_double_quote] = ACTIONS(3078), + [sym___c_single_quote] = ACTIONS(3078), + [sym___r_double_quote] = ACTIONS(3078), + [sym___r_single_quote] = ACTIONS(3078), }, [1081] = { - [ts_builtin_sym_end] = ACTIONS(2878), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LF] = ACTIONS(2880), - [anon_sym_CR] = ACTIONS(2880), - [anon_sym_CR_LF] = ACTIONS(2880), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2880), - [anon_sym_as] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_COMMA] = ACTIONS(2880), - [anon_sym_const] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2880), - [anon_sym___global] = ACTIONS(2880), - [anon_sym_type] = ACTIONS(2880), - [anon_sym_PIPE] = ACTIONS(2880), - [anon_sym_fn] = ACTIONS(2880), - [anon_sym_PLUS] = ACTIONS(2880), - [anon_sym_DASH] = ACTIONS(2880), - [anon_sym_STAR] = ACTIONS(2880), - [anon_sym_SLASH] = ACTIONS(2880), - [anon_sym_PERCENT] = ACTIONS(2880), - [anon_sym_LT] = ACTIONS(2880), - [anon_sym_GT] = ACTIONS(2880), - [anon_sym_EQ_EQ] = ACTIONS(2880), - [anon_sym_BANG_EQ] = ACTIONS(2880), - [anon_sym_LT_EQ] = ACTIONS(2880), - [anon_sym_GT_EQ] = ACTIONS(2880), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_struct] = ACTIONS(2880), - [anon_sym_union] = ACTIONS(2880), - [anon_sym_pub] = ACTIONS(2880), - [anon_sym_mut] = ACTIONS(2880), - [anon_sym_enum] = ACTIONS(2880), - [anon_sym_interface] = ACTIONS(2880), - [anon_sym_PLUS_PLUS] = ACTIONS(2880), - [anon_sym_DASH_DASH] = ACTIONS(2880), - [anon_sym_QMARK] = ACTIONS(2880), - [anon_sym_BANG] = ACTIONS(2880), - [anon_sym_go] = ACTIONS(2880), - [anon_sym_spawn] = ACTIONS(2880), - [anon_sym_json_DOTdecode] = ACTIONS(2880), - [anon_sym_LBRACK2] = ACTIONS(2880), - [anon_sym_TILDE] = ACTIONS(2880), - [anon_sym_CARET] = ACTIONS(2880), - [anon_sym_AMP] = ACTIONS(2880), - [anon_sym_LT_DASH] = ACTIONS(2880), - [anon_sym_LT_LT] = ACTIONS(2880), - [anon_sym_GT_GT] = ACTIONS(2880), - [anon_sym_GT_GT_GT] = ACTIONS(2880), - [anon_sym_AMP_CARET] = ACTIONS(2880), - [anon_sym_AMP_AMP] = ACTIONS(2880), - [anon_sym_PIPE_PIPE] = ACTIONS(2880), - [anon_sym_or] = ACTIONS(2880), - [sym_none] = ACTIONS(2880), - [sym_true] = ACTIONS(2880), - [sym_false] = ACTIONS(2880), - [sym_nil] = ACTIONS(2880), - [anon_sym_QMARK_DOT] = ACTIONS(2880), - [anon_sym_POUND_LBRACK] = ACTIONS(2880), - [anon_sym_if] = ACTIONS(2880), - [anon_sym_DOLLARif] = ACTIONS(2880), - [anon_sym_is] = ACTIONS(2880), - [anon_sym_BANGis] = ACTIONS(2880), - [anon_sym_in] = ACTIONS(2880), - [anon_sym_BANGin] = ACTIONS(2880), - [anon_sym_match] = ACTIONS(2880), - [anon_sym_select] = ACTIONS(2880), - [anon_sym_lock] = ACTIONS(2880), - [anon_sym_rlock] = ACTIONS(2880), - [anon_sym_unsafe] = ACTIONS(2880), - [anon_sym_sql] = ACTIONS(2880), - [sym_int_literal] = ACTIONS(2880), - [sym_float_literal] = ACTIONS(2880), - [sym_rune_literal] = ACTIONS(2880), - [anon_sym_AT] = ACTIONS(2880), - [anon_sym_shared] = ACTIONS(2880), - [anon_sym_map_LBRACK] = ACTIONS(2880), - [anon_sym_chan] = ACTIONS(2880), - [anon_sym_thread] = ACTIONS(2880), - [anon_sym_atomic] = ACTIONS(2880), - [anon_sym_assert] = ACTIONS(2880), - [anon_sym_defer] = ACTIONS(2880), - [anon_sym_goto] = ACTIONS(2880), - [anon_sym_break] = ACTIONS(2880), - [anon_sym_continue] = ACTIONS(2880), - [anon_sym_return] = ACTIONS(2880), - [anon_sym_DOLLARfor] = ACTIONS(2880), - [anon_sym_for] = ACTIONS(2880), - [anon_sym_POUND] = ACTIONS(2880), - [anon_sym_asm] = ACTIONS(2880), - [anon_sym_AT_LBRACK] = ACTIONS(2880), - [sym___double_quote] = ACTIONS(2880), - [sym___single_quote] = ACTIONS(2880), - [sym___c_double_quote] = ACTIONS(2880), - [sym___c_single_quote] = ACTIONS(2880), - [sym___r_double_quote] = ACTIONS(2880), - [sym___r_single_quote] = ACTIONS(2880), + [ts_builtin_sym_end] = ACTIONS(2800), + [sym_identifier] = ACTIONS(2802), + [anon_sym_LF] = ACTIONS(2802), + [anon_sym_CR] = ACTIONS(2802), + [anon_sym_CR_LF] = ACTIONS(2802), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_as] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_COMMA] = ACTIONS(2802), + [anon_sym_const] = ACTIONS(2802), + [anon_sym_LPAREN] = ACTIONS(2802), + [anon_sym___global] = ACTIONS(2802), + [anon_sym_type] = ACTIONS(2802), + [anon_sym_PIPE] = ACTIONS(2802), + [anon_sym_fn] = ACTIONS(2802), + [anon_sym_PLUS] = ACTIONS(2802), + [anon_sym_DASH] = ACTIONS(2802), + [anon_sym_STAR] = ACTIONS(2802), + [anon_sym_SLASH] = ACTIONS(2802), + [anon_sym_PERCENT] = ACTIONS(2802), + [anon_sym_LT] = ACTIONS(2802), + [anon_sym_GT] = ACTIONS(2802), + [anon_sym_EQ_EQ] = ACTIONS(2802), + [anon_sym_BANG_EQ] = ACTIONS(2802), + [anon_sym_LT_EQ] = ACTIONS(2802), + [anon_sym_GT_EQ] = ACTIONS(2802), + [anon_sym_LBRACK] = ACTIONS(2800), + [anon_sym_struct] = ACTIONS(2802), + [anon_sym_union] = ACTIONS(2802), + [anon_sym_pub] = ACTIONS(2802), + [anon_sym_mut] = ACTIONS(2802), + [anon_sym_enum] = ACTIONS(2802), + [anon_sym_interface] = ACTIONS(2802), + [anon_sym_PLUS_PLUS] = ACTIONS(2802), + [anon_sym_DASH_DASH] = ACTIONS(2802), + [anon_sym_QMARK] = ACTIONS(2802), + [anon_sym_BANG] = ACTIONS(2802), + [anon_sym_go] = ACTIONS(2802), + [anon_sym_spawn] = ACTIONS(2802), + [anon_sym_json_DOTdecode] = ACTIONS(2802), + [anon_sym_LBRACK2] = ACTIONS(2802), + [anon_sym_TILDE] = ACTIONS(2802), + [anon_sym_CARET] = ACTIONS(2802), + [anon_sym_AMP] = ACTIONS(2802), + [anon_sym_LT_DASH] = ACTIONS(2802), + [anon_sym_LT_LT] = ACTIONS(2802), + [anon_sym_GT_GT] = ACTIONS(2802), + [anon_sym_GT_GT_GT] = ACTIONS(2802), + [anon_sym_AMP_CARET] = ACTIONS(2802), + [anon_sym_AMP_AMP] = ACTIONS(2802), + [anon_sym_PIPE_PIPE] = ACTIONS(2802), + [anon_sym_or] = ACTIONS(2802), + [sym_none] = ACTIONS(2802), + [sym_true] = ACTIONS(2802), + [sym_false] = ACTIONS(2802), + [sym_nil] = ACTIONS(2802), + [anon_sym_QMARK_DOT] = ACTIONS(2802), + [anon_sym_POUND_LBRACK] = ACTIONS(2802), + [anon_sym_if] = ACTIONS(2802), + [anon_sym_DOLLARif] = ACTIONS(2802), + [anon_sym_is] = ACTIONS(2802), + [anon_sym_BANGis] = ACTIONS(2802), + [anon_sym_in] = ACTIONS(2802), + [anon_sym_BANGin] = ACTIONS(2802), + [anon_sym_match] = ACTIONS(2802), + [anon_sym_select] = ACTIONS(2802), + [anon_sym_lock] = ACTIONS(2802), + [anon_sym_rlock] = ACTIONS(2802), + [anon_sym_unsafe] = ACTIONS(2802), + [anon_sym_sql] = ACTIONS(2802), + [sym_int_literal] = ACTIONS(2802), + [sym_float_literal] = ACTIONS(2802), + [sym_rune_literal] = ACTIONS(2802), + [anon_sym_AT] = ACTIONS(2802), + [anon_sym_shared] = ACTIONS(2802), + [anon_sym_map_LBRACK] = ACTIONS(2802), + [anon_sym_chan] = ACTIONS(2802), + [anon_sym_thread] = ACTIONS(2802), + [anon_sym_atomic] = ACTIONS(2802), + [anon_sym_assert] = ACTIONS(2802), + [anon_sym_defer] = ACTIONS(2802), + [anon_sym_goto] = ACTIONS(2802), + [anon_sym_break] = ACTIONS(2802), + [anon_sym_continue] = ACTIONS(2802), + [anon_sym_return] = ACTIONS(2802), + [anon_sym_DOLLARfor] = ACTIONS(2802), + [anon_sym_for] = ACTIONS(2802), + [anon_sym_POUND] = ACTIONS(2802), + [anon_sym_asm] = ACTIONS(2802), + [anon_sym_AT_LBRACK] = ACTIONS(2802), + [sym___double_quote] = ACTIONS(2802), + [sym___single_quote] = ACTIONS(2802), + [sym___c_double_quote] = ACTIONS(2802), + [sym___c_single_quote] = ACTIONS(2802), + [sym___r_double_quote] = ACTIONS(2802), + [sym___r_single_quote] = ACTIONS(2802), }, [1082] = { - [ts_builtin_sym_end] = ACTIONS(3139), - [sym_identifier] = ACTIONS(3141), - [anon_sym_LF] = ACTIONS(3141), - [anon_sym_CR] = ACTIONS(3141), - [anon_sym_CR_LF] = ACTIONS(3141), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3141), - [anon_sym_as] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_COMMA] = ACTIONS(3141), - [anon_sym_const] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym___global] = ACTIONS(3141), - [anon_sym_type] = ACTIONS(3141), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_fn] = ACTIONS(3141), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(3141), - [anon_sym_PERCENT] = ACTIONS(3141), - [anon_sym_LT] = ACTIONS(3141), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_EQ_EQ] = ACTIONS(3141), - [anon_sym_BANG_EQ] = ACTIONS(3141), - [anon_sym_LT_EQ] = ACTIONS(3141), - [anon_sym_GT_EQ] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3141), - [anon_sym_union] = ACTIONS(3141), - [anon_sym_pub] = ACTIONS(3141), - [anon_sym_mut] = ACTIONS(3141), - [anon_sym_enum] = ACTIONS(3141), - [anon_sym_interface] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_QMARK] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_go] = ACTIONS(3141), - [anon_sym_spawn] = ACTIONS(3141), - [anon_sym_json_DOTdecode] = ACTIONS(3141), - [anon_sym_LBRACK2] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_CARET] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_LT_DASH] = ACTIONS(3141), - [anon_sym_LT_LT] = ACTIONS(3141), - [anon_sym_GT_GT] = ACTIONS(3141), - [anon_sym_GT_GT_GT] = ACTIONS(3141), - [anon_sym_AMP_CARET] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3141), - [anon_sym_PIPE_PIPE] = ACTIONS(3141), - [anon_sym_or] = ACTIONS(3141), - [sym_none] = ACTIONS(3141), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_nil] = ACTIONS(3141), - [anon_sym_QMARK_DOT] = ACTIONS(3141), - [anon_sym_POUND_LBRACK] = ACTIONS(3141), - [anon_sym_if] = ACTIONS(3141), - [anon_sym_DOLLARif] = ACTIONS(3141), - [anon_sym_is] = ACTIONS(3141), - [anon_sym_BANGis] = ACTIONS(3141), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_BANGin] = ACTIONS(3141), - [anon_sym_match] = ACTIONS(3141), - [anon_sym_select] = ACTIONS(3141), - [anon_sym_lock] = ACTIONS(3141), - [anon_sym_rlock] = ACTIONS(3141), - [anon_sym_unsafe] = ACTIONS(3141), - [anon_sym_sql] = ACTIONS(3141), - [sym_int_literal] = ACTIONS(3141), - [sym_float_literal] = ACTIONS(3141), - [sym_rune_literal] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(3141), - [anon_sym_shared] = ACTIONS(3141), - [anon_sym_map_LBRACK] = ACTIONS(3141), - [anon_sym_chan] = ACTIONS(3141), - [anon_sym_thread] = ACTIONS(3141), - [anon_sym_atomic] = ACTIONS(3141), - [anon_sym_assert] = ACTIONS(3141), - [anon_sym_defer] = ACTIONS(3141), - [anon_sym_goto] = ACTIONS(3141), - [anon_sym_break] = ACTIONS(3141), - [anon_sym_continue] = ACTIONS(3141), - [anon_sym_return] = ACTIONS(3141), - [anon_sym_DOLLARfor] = ACTIONS(3141), - [anon_sym_for] = ACTIONS(3141), - [anon_sym_POUND] = ACTIONS(3141), - [anon_sym_asm] = ACTIONS(3141), - [anon_sym_AT_LBRACK] = ACTIONS(3141), - [sym___double_quote] = ACTIONS(3141), - [sym___single_quote] = ACTIONS(3141), - [sym___c_double_quote] = ACTIONS(3141), - [sym___c_single_quote] = ACTIONS(3141), - [sym___r_double_quote] = ACTIONS(3141), - [sym___r_single_quote] = ACTIONS(3141), + [ts_builtin_sym_end] = ACTIONS(2824), + [sym_identifier] = ACTIONS(2826), + [anon_sym_LF] = ACTIONS(2826), + [anon_sym_CR] = ACTIONS(2826), + [anon_sym_CR_LF] = ACTIONS(2826), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2826), + [anon_sym_as] = ACTIONS(2826), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_COMMA] = ACTIONS(2826), + [anon_sym_const] = ACTIONS(2826), + [anon_sym_LPAREN] = ACTIONS(2826), + [anon_sym___global] = ACTIONS(2826), + [anon_sym_type] = ACTIONS(2826), + [anon_sym_PIPE] = ACTIONS(2826), + [anon_sym_fn] = ACTIONS(2826), + [anon_sym_PLUS] = ACTIONS(2826), + [anon_sym_DASH] = ACTIONS(2826), + [anon_sym_STAR] = ACTIONS(2826), + [anon_sym_SLASH] = ACTIONS(2826), + [anon_sym_PERCENT] = ACTIONS(2826), + [anon_sym_LT] = ACTIONS(2826), + [anon_sym_GT] = ACTIONS(2826), + [anon_sym_EQ_EQ] = ACTIONS(2826), + [anon_sym_BANG_EQ] = ACTIONS(2826), + [anon_sym_LT_EQ] = ACTIONS(2826), + [anon_sym_GT_EQ] = ACTIONS(2826), + [anon_sym_LBRACK] = ACTIONS(2824), + [anon_sym_struct] = ACTIONS(2826), + [anon_sym_union] = ACTIONS(2826), + [anon_sym_pub] = ACTIONS(2826), + [anon_sym_mut] = ACTIONS(2826), + [anon_sym_enum] = ACTIONS(2826), + [anon_sym_interface] = ACTIONS(2826), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [anon_sym_QMARK] = ACTIONS(2826), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_go] = ACTIONS(2826), + [anon_sym_spawn] = ACTIONS(2826), + [anon_sym_json_DOTdecode] = ACTIONS(2826), + [anon_sym_LBRACK2] = ACTIONS(2826), + [anon_sym_TILDE] = ACTIONS(2826), + [anon_sym_CARET] = ACTIONS(2826), + [anon_sym_AMP] = ACTIONS(2826), + [anon_sym_LT_DASH] = ACTIONS(2826), + [anon_sym_LT_LT] = ACTIONS(2826), + [anon_sym_GT_GT] = ACTIONS(2826), + [anon_sym_GT_GT_GT] = ACTIONS(2826), + [anon_sym_AMP_CARET] = ACTIONS(2826), + [anon_sym_AMP_AMP] = ACTIONS(2826), + [anon_sym_PIPE_PIPE] = ACTIONS(2826), + [anon_sym_or] = ACTIONS(2826), + [sym_none] = ACTIONS(2826), + [sym_true] = ACTIONS(2826), + [sym_false] = ACTIONS(2826), + [sym_nil] = ACTIONS(2826), + [anon_sym_QMARK_DOT] = ACTIONS(2826), + [anon_sym_POUND_LBRACK] = ACTIONS(2826), + [anon_sym_if] = ACTIONS(2826), + [anon_sym_DOLLARif] = ACTIONS(2826), + [anon_sym_is] = ACTIONS(2826), + [anon_sym_BANGis] = ACTIONS(2826), + [anon_sym_in] = ACTIONS(2826), + [anon_sym_BANGin] = ACTIONS(2826), + [anon_sym_match] = ACTIONS(2826), + [anon_sym_select] = ACTIONS(2826), + [anon_sym_lock] = ACTIONS(2826), + [anon_sym_rlock] = ACTIONS(2826), + [anon_sym_unsafe] = ACTIONS(2826), + [anon_sym_sql] = ACTIONS(2826), + [sym_int_literal] = ACTIONS(2826), + [sym_float_literal] = ACTIONS(2826), + [sym_rune_literal] = ACTIONS(2826), + [anon_sym_AT] = ACTIONS(2826), + [anon_sym_shared] = ACTIONS(2826), + [anon_sym_map_LBRACK] = ACTIONS(2826), + [anon_sym_chan] = ACTIONS(2826), + [anon_sym_thread] = ACTIONS(2826), + [anon_sym_atomic] = ACTIONS(2826), + [anon_sym_assert] = ACTIONS(2826), + [anon_sym_defer] = ACTIONS(2826), + [anon_sym_goto] = ACTIONS(2826), + [anon_sym_break] = ACTIONS(2826), + [anon_sym_continue] = ACTIONS(2826), + [anon_sym_return] = ACTIONS(2826), + [anon_sym_DOLLARfor] = ACTIONS(2826), + [anon_sym_for] = ACTIONS(2826), + [anon_sym_POUND] = ACTIONS(2826), + [anon_sym_asm] = ACTIONS(2826), + [anon_sym_AT_LBRACK] = ACTIONS(2826), + [sym___double_quote] = ACTIONS(2826), + [sym___single_quote] = ACTIONS(2826), + [sym___c_double_quote] = ACTIONS(2826), + [sym___c_single_quote] = ACTIONS(2826), + [sym___r_double_quote] = ACTIONS(2826), + [sym___r_single_quote] = ACTIONS(2826), }, [1083] = { - [ts_builtin_sym_end] = ACTIONS(3079), - [sym_identifier] = ACTIONS(3081), - [anon_sym_LF] = ACTIONS(3081), - [anon_sym_CR] = ACTIONS(3081), - [anon_sym_CR_LF] = ACTIONS(3081), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3081), - [anon_sym_as] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_const] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3081), - [anon_sym___global] = ACTIONS(3081), - [anon_sym_type] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_SLASH] = ACTIONS(3081), - [anon_sym_PERCENT] = ACTIONS(3081), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_GT] = ACTIONS(3081), - [anon_sym_EQ_EQ] = ACTIONS(3081), - [anon_sym_BANG_EQ] = ACTIONS(3081), - [anon_sym_LT_EQ] = ACTIONS(3081), - [anon_sym_GT_EQ] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_struct] = ACTIONS(3081), - [anon_sym_union] = ACTIONS(3081), - [anon_sym_pub] = ACTIONS(3081), - [anon_sym_mut] = ACTIONS(3081), - [anon_sym_enum] = ACTIONS(3081), - [anon_sym_interface] = ACTIONS(3081), - [anon_sym_PLUS_PLUS] = ACTIONS(3081), - [anon_sym_DASH_DASH] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(3081), - [anon_sym_BANG] = ACTIONS(3081), - [anon_sym_go] = ACTIONS(3081), - [anon_sym_spawn] = ACTIONS(3081), - [anon_sym_json_DOTdecode] = ACTIONS(3081), - [anon_sym_LBRACK2] = ACTIONS(3081), - [anon_sym_TILDE] = ACTIONS(3081), - [anon_sym_CARET] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_LT_DASH] = ACTIONS(3081), - [anon_sym_LT_LT] = ACTIONS(3081), - [anon_sym_GT_GT] = ACTIONS(3081), - [anon_sym_GT_GT_GT] = ACTIONS(3081), - [anon_sym_AMP_CARET] = ACTIONS(3081), - [anon_sym_AMP_AMP] = ACTIONS(3081), - [anon_sym_PIPE_PIPE] = ACTIONS(3081), - [anon_sym_or] = ACTIONS(3081), - [sym_none] = ACTIONS(3081), - [sym_true] = ACTIONS(3081), - [sym_false] = ACTIONS(3081), - [sym_nil] = ACTIONS(3081), - [anon_sym_QMARK_DOT] = ACTIONS(3081), - [anon_sym_POUND_LBRACK] = ACTIONS(3081), - [anon_sym_if] = ACTIONS(3081), - [anon_sym_DOLLARif] = ACTIONS(3081), - [anon_sym_is] = ACTIONS(3081), - [anon_sym_BANGis] = ACTIONS(3081), - [anon_sym_in] = ACTIONS(3081), - [anon_sym_BANGin] = ACTIONS(3081), - [anon_sym_match] = ACTIONS(3081), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3081), - [anon_sym_rlock] = ACTIONS(3081), - [anon_sym_unsafe] = ACTIONS(3081), - [anon_sym_sql] = ACTIONS(3081), - [sym_int_literal] = ACTIONS(3081), - [sym_float_literal] = ACTIONS(3081), - [sym_rune_literal] = ACTIONS(3081), - [anon_sym_AT] = ACTIONS(3081), - [anon_sym_shared] = ACTIONS(3081), - [anon_sym_map_LBRACK] = ACTIONS(3081), - [anon_sym_chan] = ACTIONS(3081), - [anon_sym_thread] = ACTIONS(3081), - [anon_sym_atomic] = ACTIONS(3081), - [anon_sym_assert] = ACTIONS(3081), - [anon_sym_defer] = ACTIONS(3081), - [anon_sym_goto] = ACTIONS(3081), - [anon_sym_break] = ACTIONS(3081), - [anon_sym_continue] = ACTIONS(3081), - [anon_sym_return] = ACTIONS(3081), - [anon_sym_DOLLARfor] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(3081), - [anon_sym_POUND] = ACTIONS(3081), - [anon_sym_asm] = ACTIONS(3081), - [anon_sym_AT_LBRACK] = ACTIONS(3081), - [sym___double_quote] = ACTIONS(3081), - [sym___single_quote] = ACTIONS(3081), - [sym___c_double_quote] = ACTIONS(3081), - [sym___c_single_quote] = ACTIONS(3081), - [sym___r_double_quote] = ACTIONS(3081), - [sym___r_single_quote] = ACTIONS(3081), + [ts_builtin_sym_end] = ACTIONS(2828), + [sym_identifier] = ACTIONS(2830), + [anon_sym_LF] = ACTIONS(2830), + [anon_sym_CR] = ACTIONS(2830), + [anon_sym_CR_LF] = ACTIONS(2830), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2830), + [anon_sym_as] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_COMMA] = ACTIONS(2830), + [anon_sym_const] = ACTIONS(2830), + [anon_sym_LPAREN] = ACTIONS(2830), + [anon_sym___global] = ACTIONS(2830), + [anon_sym_type] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_fn] = ACTIONS(2830), + [anon_sym_PLUS] = ACTIONS(2830), + [anon_sym_DASH] = ACTIONS(2830), + [anon_sym_STAR] = ACTIONS(2830), + [anon_sym_SLASH] = ACTIONS(2830), + [anon_sym_PERCENT] = ACTIONS(2830), + [anon_sym_LT] = ACTIONS(2830), + [anon_sym_GT] = ACTIONS(2830), + [anon_sym_EQ_EQ] = ACTIONS(2830), + [anon_sym_BANG_EQ] = ACTIONS(2830), + [anon_sym_LT_EQ] = ACTIONS(2830), + [anon_sym_GT_EQ] = ACTIONS(2830), + [anon_sym_LBRACK] = ACTIONS(2828), + [anon_sym_struct] = ACTIONS(2830), + [anon_sym_union] = ACTIONS(2830), + [anon_sym_pub] = ACTIONS(2830), + [anon_sym_mut] = ACTIONS(2830), + [anon_sym_enum] = ACTIONS(2830), + [anon_sym_interface] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2830), + [anon_sym_DASH_DASH] = ACTIONS(2830), + [anon_sym_QMARK] = ACTIONS(2830), + [anon_sym_BANG] = ACTIONS(2830), + [anon_sym_go] = ACTIONS(2830), + [anon_sym_spawn] = ACTIONS(2830), + [anon_sym_json_DOTdecode] = ACTIONS(2830), + [anon_sym_LBRACK2] = ACTIONS(2830), + [anon_sym_TILDE] = ACTIONS(2830), + [anon_sym_CARET] = ACTIONS(2830), + [anon_sym_AMP] = ACTIONS(2830), + [anon_sym_LT_DASH] = ACTIONS(2830), + [anon_sym_LT_LT] = ACTIONS(2830), + [anon_sym_GT_GT] = ACTIONS(2830), + [anon_sym_GT_GT_GT] = ACTIONS(2830), + [anon_sym_AMP_CARET] = ACTIONS(2830), + [anon_sym_AMP_AMP] = ACTIONS(2830), + [anon_sym_PIPE_PIPE] = ACTIONS(2830), + [anon_sym_or] = ACTIONS(2830), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_QMARK_DOT] = ACTIONS(2830), + [anon_sym_POUND_LBRACK] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2830), + [anon_sym_DOLLARif] = ACTIONS(2830), + [anon_sym_is] = ACTIONS(2830), + [anon_sym_BANGis] = ACTIONS(2830), + [anon_sym_in] = ACTIONS(2830), + [anon_sym_BANGin] = ACTIONS(2830), + [anon_sym_match] = ACTIONS(2830), + [anon_sym_select] = ACTIONS(2830), + [anon_sym_lock] = ACTIONS(2830), + [anon_sym_rlock] = ACTIONS(2830), + [anon_sym_unsafe] = ACTIONS(2830), + [anon_sym_sql] = ACTIONS(2830), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2830), + [sym_rune_literal] = ACTIONS(2830), + [anon_sym_AT] = ACTIONS(2830), + [anon_sym_shared] = ACTIONS(2830), + [anon_sym_map_LBRACK] = ACTIONS(2830), + [anon_sym_chan] = ACTIONS(2830), + [anon_sym_thread] = ACTIONS(2830), + [anon_sym_atomic] = ACTIONS(2830), + [anon_sym_assert] = ACTIONS(2830), + [anon_sym_defer] = ACTIONS(2830), + [anon_sym_goto] = ACTIONS(2830), + [anon_sym_break] = ACTIONS(2830), + [anon_sym_continue] = ACTIONS(2830), + [anon_sym_return] = ACTIONS(2830), + [anon_sym_DOLLARfor] = ACTIONS(2830), + [anon_sym_for] = ACTIONS(2830), + [anon_sym_POUND] = ACTIONS(2830), + [anon_sym_asm] = ACTIONS(2830), + [anon_sym_AT_LBRACK] = ACTIONS(2830), + [sym___double_quote] = ACTIONS(2830), + [sym___single_quote] = ACTIONS(2830), + [sym___c_double_quote] = ACTIONS(2830), + [sym___c_single_quote] = ACTIONS(2830), + [sym___r_double_quote] = ACTIONS(2830), + [sym___r_single_quote] = ACTIONS(2830), }, [1084] = { - [ts_builtin_sym_end] = ACTIONS(3007), - [sym_identifier] = ACTIONS(3009), - [anon_sym_LF] = ACTIONS(3009), - [anon_sym_CR] = ACTIONS(3009), - [anon_sym_CR_LF] = ACTIONS(3009), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3009), - [anon_sym_as] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_const] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3009), - [anon_sym___global] = ACTIONS(3009), - [anon_sym_type] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3009), - [anon_sym_fn] = ACTIONS(3009), - [anon_sym_PLUS] = ACTIONS(3009), - [anon_sym_DASH] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3009), - [anon_sym_SLASH] = ACTIONS(3009), - [anon_sym_PERCENT] = ACTIONS(3009), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3009), - [anon_sym_EQ_EQ] = ACTIONS(3009), - [anon_sym_BANG_EQ] = ACTIONS(3009), - [anon_sym_LT_EQ] = ACTIONS(3009), - [anon_sym_GT_EQ] = ACTIONS(3009), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3009), - [anon_sym_union] = ACTIONS(3009), - [anon_sym_pub] = ACTIONS(3009), - [anon_sym_mut] = ACTIONS(3009), - [anon_sym_enum] = ACTIONS(3009), - [anon_sym_interface] = ACTIONS(3009), - [anon_sym_PLUS_PLUS] = ACTIONS(3009), - [anon_sym_DASH_DASH] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3009), - [anon_sym_BANG] = ACTIONS(3009), - [anon_sym_go] = ACTIONS(3009), - [anon_sym_spawn] = ACTIONS(3009), - [anon_sym_json_DOTdecode] = ACTIONS(3009), - [anon_sym_LBRACK2] = ACTIONS(3009), - [anon_sym_TILDE] = ACTIONS(3009), - [anon_sym_CARET] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_LT_DASH] = ACTIONS(3009), - [anon_sym_LT_LT] = ACTIONS(3009), - [anon_sym_GT_GT] = ACTIONS(3009), - [anon_sym_GT_GT_GT] = ACTIONS(3009), - [anon_sym_AMP_CARET] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3009), - [anon_sym_or] = ACTIONS(3009), - [sym_none] = ACTIONS(3009), - [sym_true] = ACTIONS(3009), - [sym_false] = ACTIONS(3009), - [sym_nil] = ACTIONS(3009), - [anon_sym_QMARK_DOT] = ACTIONS(3009), - [anon_sym_POUND_LBRACK] = ACTIONS(3009), - [anon_sym_if] = ACTIONS(3009), - [anon_sym_DOLLARif] = ACTIONS(3009), - [anon_sym_is] = ACTIONS(3009), - [anon_sym_BANGis] = ACTIONS(3009), - [anon_sym_in] = ACTIONS(3009), - [anon_sym_BANGin] = ACTIONS(3009), - [anon_sym_match] = ACTIONS(3009), - [anon_sym_select] = ACTIONS(3009), - [anon_sym_lock] = ACTIONS(3009), - [anon_sym_rlock] = ACTIONS(3009), - [anon_sym_unsafe] = ACTIONS(3009), - [anon_sym_sql] = ACTIONS(3009), - [sym_int_literal] = ACTIONS(3009), - [sym_float_literal] = ACTIONS(3009), - [sym_rune_literal] = ACTIONS(3009), - [anon_sym_AT] = ACTIONS(3009), - [anon_sym_shared] = ACTIONS(3009), - [anon_sym_map_LBRACK] = ACTIONS(3009), - [anon_sym_chan] = ACTIONS(3009), - [anon_sym_thread] = ACTIONS(3009), - [anon_sym_atomic] = ACTIONS(3009), - [anon_sym_assert] = ACTIONS(3009), - [anon_sym_defer] = ACTIONS(3009), - [anon_sym_goto] = ACTIONS(3009), - [anon_sym_break] = ACTIONS(3009), - [anon_sym_continue] = ACTIONS(3009), - [anon_sym_return] = ACTIONS(3009), - [anon_sym_DOLLARfor] = ACTIONS(3009), - [anon_sym_for] = ACTIONS(3009), - [anon_sym_POUND] = ACTIONS(3009), - [anon_sym_asm] = ACTIONS(3009), - [anon_sym_AT_LBRACK] = ACTIONS(3009), - [sym___double_quote] = ACTIONS(3009), - [sym___single_quote] = ACTIONS(3009), - [sym___c_double_quote] = ACTIONS(3009), - [sym___c_single_quote] = ACTIONS(3009), - [sym___r_double_quote] = ACTIONS(3009), - [sym___r_single_quote] = ACTIONS(3009), - }, - [1085] = { - [ts_builtin_sym_end] = ACTIONS(2991), - [sym_identifier] = ACTIONS(2993), - [anon_sym_LF] = ACTIONS(2993), - [anon_sym_CR] = ACTIONS(2993), - [anon_sym_CR_LF] = ACTIONS(2993), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2993), - [anon_sym_as] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2993), - [anon_sym_COMMA] = ACTIONS(2993), - [anon_sym_const] = ACTIONS(2993), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym___global] = ACTIONS(2993), - [anon_sym_type] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2993), - [anon_sym_fn] = ACTIONS(2993), - [anon_sym_PLUS] = ACTIONS(2993), - [anon_sym_DASH] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2993), - [anon_sym_SLASH] = ACTIONS(2993), - [anon_sym_PERCENT] = ACTIONS(2993), - [anon_sym_LT] = ACTIONS(2993), - [anon_sym_GT] = ACTIONS(2993), - [anon_sym_EQ_EQ] = ACTIONS(2993), - [anon_sym_BANG_EQ] = ACTIONS(2993), - [anon_sym_LT_EQ] = ACTIONS(2993), - [anon_sym_GT_EQ] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_struct] = ACTIONS(2993), - [anon_sym_union] = ACTIONS(2993), - [anon_sym_pub] = ACTIONS(2993), - [anon_sym_mut] = ACTIONS(2993), - [anon_sym_enum] = ACTIONS(2993), - [anon_sym_interface] = ACTIONS(2993), - [anon_sym_PLUS_PLUS] = ACTIONS(2993), - [anon_sym_DASH_DASH] = ACTIONS(2993), - [anon_sym_QMARK] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2993), - [anon_sym_go] = ACTIONS(2993), - [anon_sym_spawn] = ACTIONS(2993), - [anon_sym_json_DOTdecode] = ACTIONS(2993), - [anon_sym_LBRACK2] = ACTIONS(2993), - [anon_sym_TILDE] = ACTIONS(2993), - [anon_sym_CARET] = ACTIONS(2993), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_LT_DASH] = ACTIONS(2993), - [anon_sym_LT_LT] = ACTIONS(2993), - [anon_sym_GT_GT] = ACTIONS(2993), - [anon_sym_GT_GT_GT] = ACTIONS(2993), - [anon_sym_AMP_CARET] = ACTIONS(2993), - [anon_sym_AMP_AMP] = ACTIONS(2993), - [anon_sym_PIPE_PIPE] = ACTIONS(2993), - [anon_sym_or] = ACTIONS(2993), - [sym_none] = ACTIONS(2993), - [sym_true] = ACTIONS(2993), - [sym_false] = ACTIONS(2993), - [sym_nil] = ACTIONS(2993), - [anon_sym_QMARK_DOT] = ACTIONS(2993), - [anon_sym_POUND_LBRACK] = ACTIONS(2993), - [anon_sym_if] = ACTIONS(2993), - [anon_sym_DOLLARif] = ACTIONS(2993), - [anon_sym_is] = ACTIONS(2993), - [anon_sym_BANGis] = ACTIONS(2993), - [anon_sym_in] = ACTIONS(2993), - [anon_sym_BANGin] = ACTIONS(2993), - [anon_sym_match] = ACTIONS(2993), - [anon_sym_select] = ACTIONS(2993), - [anon_sym_lock] = ACTIONS(2993), - [anon_sym_rlock] = ACTIONS(2993), - [anon_sym_unsafe] = ACTIONS(2993), - [anon_sym_sql] = ACTIONS(2993), - [sym_int_literal] = ACTIONS(2993), - [sym_float_literal] = ACTIONS(2993), - [sym_rune_literal] = ACTIONS(2993), - [anon_sym_AT] = ACTIONS(2993), - [anon_sym_shared] = ACTIONS(2993), - [anon_sym_map_LBRACK] = ACTIONS(2993), - [anon_sym_chan] = ACTIONS(2993), - [anon_sym_thread] = ACTIONS(2993), - [anon_sym_atomic] = ACTIONS(2993), - [anon_sym_assert] = ACTIONS(2993), - [anon_sym_defer] = ACTIONS(2993), - [anon_sym_goto] = ACTIONS(2993), - [anon_sym_break] = ACTIONS(2993), - [anon_sym_continue] = ACTIONS(2993), - [anon_sym_return] = ACTIONS(2993), - [anon_sym_DOLLARfor] = ACTIONS(2993), - [anon_sym_for] = ACTIONS(2993), - [anon_sym_POUND] = ACTIONS(2993), - [anon_sym_asm] = ACTIONS(2993), - [anon_sym_AT_LBRACK] = ACTIONS(2993), - [sym___double_quote] = ACTIONS(2993), - [sym___single_quote] = ACTIONS(2993), - [sym___c_double_quote] = ACTIONS(2993), - [sym___c_single_quote] = ACTIONS(2993), - [sym___r_double_quote] = ACTIONS(2993), - [sym___r_single_quote] = ACTIONS(2993), - }, - [1086] = { - [ts_builtin_sym_end] = ACTIONS(2954), - [sym_identifier] = ACTIONS(2951), - [anon_sym_LF] = ACTIONS(2951), - [anon_sym_CR] = ACTIONS(2951), - [anon_sym_CR_LF] = ACTIONS(2951), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2951), - [anon_sym_as] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_COMMA] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym___global] = ACTIONS(2951), - [anon_sym_type] = ACTIONS(2951), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_fn] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_PERCENT] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_GT] = ACTIONS(2951), - [anon_sym_EQ_EQ] = ACTIONS(2951), - [anon_sym_BANG_EQ] = ACTIONS(2951), - [anon_sym_LT_EQ] = ACTIONS(2951), - [anon_sym_GT_EQ] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_struct] = ACTIONS(2951), - [anon_sym_union] = ACTIONS(2951), - [anon_sym_pub] = ACTIONS(2951), - [anon_sym_mut] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), - [anon_sym_interface] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_QMARK] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_go] = ACTIONS(2951), - [anon_sym_spawn] = ACTIONS(2951), - [anon_sym_json_DOTdecode] = ACTIONS(2951), - [anon_sym_LBRACK2] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2951), - [anon_sym_CARET] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_LT_DASH] = ACTIONS(2951), - [anon_sym_LT_LT] = ACTIONS(2951), - [anon_sym_GT_GT] = ACTIONS(2951), - [anon_sym_GT_GT_GT] = ACTIONS(2951), - [anon_sym_AMP_CARET] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2951), - [anon_sym_PIPE_PIPE] = ACTIONS(2951), - [anon_sym_or] = ACTIONS(2951), - [sym_none] = ACTIONS(2951), - [sym_true] = ACTIONS(2951), - [sym_false] = ACTIONS(2951), - [sym_nil] = ACTIONS(2951), - [anon_sym_QMARK_DOT] = ACTIONS(2951), - [anon_sym_POUND_LBRACK] = ACTIONS(2951), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_is] = ACTIONS(2951), - [anon_sym_BANGis] = ACTIONS(2951), - [anon_sym_in] = ACTIONS(2951), - [anon_sym_BANGin] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2951), - [anon_sym_select] = ACTIONS(2951), - [anon_sym_lock] = ACTIONS(2951), - [anon_sym_rlock] = ACTIONS(2951), - [anon_sym_unsafe] = ACTIONS(2951), - [anon_sym_sql] = ACTIONS(2951), - [sym_int_literal] = ACTIONS(2951), - [sym_float_literal] = ACTIONS(2951), - [sym_rune_literal] = ACTIONS(2951), - [anon_sym_AT] = ACTIONS(2951), - [anon_sym_shared] = ACTIONS(2951), - [anon_sym_map_LBRACK] = ACTIONS(2951), - [anon_sym_chan] = ACTIONS(2951), - [anon_sym_thread] = ACTIONS(2951), - [anon_sym_atomic] = ACTIONS(2951), - [anon_sym_assert] = ACTIONS(2951), - [anon_sym_defer] = ACTIONS(2951), - [anon_sym_goto] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_DOLLARfor] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_POUND] = ACTIONS(2951), - [anon_sym_asm] = ACTIONS(2951), - [anon_sym_AT_LBRACK] = ACTIONS(2951), - [sym___double_quote] = ACTIONS(2951), - [sym___single_quote] = ACTIONS(2951), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2951), - [sym___r_double_quote] = ACTIONS(2951), - [sym___r_single_quote] = ACTIONS(2951), - }, - [1087] = { - [ts_builtin_sym_end] = ACTIONS(2937), - [sym_identifier] = ACTIONS(2939), - [anon_sym_LF] = ACTIONS(2939), - [anon_sym_CR] = ACTIONS(2939), - [anon_sym_CR_LF] = ACTIONS(2939), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2939), - [anon_sym_as] = ACTIONS(2939), - [anon_sym_LBRACE] = ACTIONS(2939), - [anon_sym_COMMA] = ACTIONS(2939), - [anon_sym_const] = ACTIONS(2939), - [anon_sym_LPAREN] = ACTIONS(2939), - [anon_sym___global] = ACTIONS(2939), - [anon_sym_type] = ACTIONS(2939), - [anon_sym_PIPE] = ACTIONS(2939), - [anon_sym_fn] = ACTIONS(2939), - [anon_sym_PLUS] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2939), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_SLASH] = ACTIONS(2939), - [anon_sym_PERCENT] = ACTIONS(2939), - [anon_sym_LT] = ACTIONS(2939), - [anon_sym_GT] = ACTIONS(2939), - [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(2937), - [anon_sym_struct] = ACTIONS(2939), - [anon_sym_union] = ACTIONS(2939), - [anon_sym_pub] = ACTIONS(2939), - [anon_sym_mut] = ACTIONS(2939), - [anon_sym_enum] = ACTIONS(2939), - [anon_sym_interface] = ACTIONS(2939), - [anon_sym_PLUS_PLUS] = ACTIONS(2939), - [anon_sym_DASH_DASH] = ACTIONS(2939), - [anon_sym_QMARK] = ACTIONS(2939), - [anon_sym_BANG] = ACTIONS(2939), - [anon_sym_go] = ACTIONS(2939), - [anon_sym_spawn] = ACTIONS(2939), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2939), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_CARET] = ACTIONS(2939), - [anon_sym_AMP] = ACTIONS(2939), - [anon_sym_LT_DASH] = ACTIONS(2939), - [anon_sym_LT_LT] = ACTIONS(2939), - [anon_sym_GT_GT] = ACTIONS(2939), - [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(2939), - [sym_none] = ACTIONS(2939), - [sym_true] = ACTIONS(2939), - [sym_false] = ACTIONS(2939), - [sym_nil] = ACTIONS(2939), - [anon_sym_QMARK_DOT] = ACTIONS(2939), - [anon_sym_POUND_LBRACK] = ACTIONS(2939), - [anon_sym_if] = ACTIONS(2939), - [anon_sym_DOLLARif] = ACTIONS(2939), - [anon_sym_is] = ACTIONS(2939), - [anon_sym_BANGis] = ACTIONS(2939), - [anon_sym_in] = ACTIONS(2939), - [anon_sym_BANGin] = ACTIONS(2939), - [anon_sym_match] = ACTIONS(2939), - [anon_sym_select] = ACTIONS(2939), - [anon_sym_lock] = ACTIONS(2939), - [anon_sym_rlock] = ACTIONS(2939), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2939), - [sym_int_literal] = ACTIONS(2939), - [sym_float_literal] = ACTIONS(2939), - [sym_rune_literal] = ACTIONS(2939), - [anon_sym_AT] = ACTIONS(2939), - [anon_sym_shared] = ACTIONS(2939), - [anon_sym_map_LBRACK] = ACTIONS(2939), - [anon_sym_chan] = ACTIONS(2939), - [anon_sym_thread] = ACTIONS(2939), - [anon_sym_atomic] = ACTIONS(2939), - [anon_sym_assert] = ACTIONS(2939), - [anon_sym_defer] = ACTIONS(2939), - [anon_sym_goto] = ACTIONS(2939), - [anon_sym_break] = ACTIONS(2939), - [anon_sym_continue] = ACTIONS(2939), - [anon_sym_return] = ACTIONS(2939), - [anon_sym_DOLLARfor] = ACTIONS(2939), - [anon_sym_for] = ACTIONS(2939), - [anon_sym_POUND] = ACTIONS(2939), - [anon_sym_asm] = ACTIONS(2939), - [anon_sym_AT_LBRACK] = ACTIONS(2939), - [sym___double_quote] = ACTIONS(2939), - [sym___single_quote] = ACTIONS(2939), - [sym___c_double_quote] = ACTIONS(2939), - [sym___c_single_quote] = ACTIONS(2939), - [sym___r_double_quote] = ACTIONS(2939), - [sym___r_single_quote] = ACTIONS(2939), - }, - [1088] = { - [ts_builtin_sym_end] = ACTIONS(2933), - [sym_identifier] = ACTIONS(2935), - [anon_sym_LF] = ACTIONS(2935), - [anon_sym_CR] = ACTIONS(2935), - [anon_sym_CR_LF] = ACTIONS(2935), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2935), - [anon_sym_as] = ACTIONS(2935), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_COMMA] = ACTIONS(2935), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym___global] = ACTIONS(2935), - [anon_sym_type] = ACTIONS(2935), - [anon_sym_PIPE] = ACTIONS(2935), - [anon_sym_fn] = ACTIONS(2935), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2935), - [anon_sym_GT] = ACTIONS(2935), - [anon_sym_EQ_EQ] = ACTIONS(2935), - [anon_sym_BANG_EQ] = ACTIONS(2935), - [anon_sym_LT_EQ] = ACTIONS(2935), - [anon_sym_GT_EQ] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_struct] = ACTIONS(2935), - [anon_sym_union] = ACTIONS(2935), - [anon_sym_pub] = ACTIONS(2935), - [anon_sym_mut] = ACTIONS(2935), - [anon_sym_enum] = ACTIONS(2935), - [anon_sym_interface] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2935), - [anon_sym_DASH_DASH] = ACTIONS(2935), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2935), - [anon_sym_json_DOTdecode] = ACTIONS(2935), - [anon_sym_LBRACK2] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_CARET] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LT_DASH] = ACTIONS(2935), - [anon_sym_LT_LT] = ACTIONS(2935), - [anon_sym_GT_GT] = ACTIONS(2935), - [anon_sym_GT_GT_GT] = ACTIONS(2935), - [anon_sym_AMP_CARET] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_PIPE_PIPE] = ACTIONS(2935), - [anon_sym_or] = ACTIONS(2935), - [sym_none] = ACTIONS(2935), - [sym_true] = ACTIONS(2935), - [sym_false] = ACTIONS(2935), - [sym_nil] = ACTIONS(2935), - [anon_sym_QMARK_DOT] = ACTIONS(2935), - [anon_sym_POUND_LBRACK] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_DOLLARif] = ACTIONS(2935), - [anon_sym_is] = ACTIONS(2935), - [anon_sym_BANGis] = ACTIONS(2935), - [anon_sym_in] = ACTIONS(2935), - [anon_sym_BANGin] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2935), - [anon_sym_rlock] = ACTIONS(2935), - [anon_sym_unsafe] = ACTIONS(2935), - [anon_sym_sql] = ACTIONS(2935), - [sym_int_literal] = ACTIONS(2935), - [sym_float_literal] = ACTIONS(2935), - [sym_rune_literal] = ACTIONS(2935), - [anon_sym_AT] = ACTIONS(2935), - [anon_sym_shared] = ACTIONS(2935), - [anon_sym_map_LBRACK] = ACTIONS(2935), - [anon_sym_chan] = ACTIONS(2935), - [anon_sym_thread] = ACTIONS(2935), - [anon_sym_atomic] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_defer] = ACTIONS(2935), - [anon_sym_goto] = ACTIONS(2935), - [anon_sym_break] = ACTIONS(2935), - [anon_sym_continue] = ACTIONS(2935), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_DOLLARfor] = ACTIONS(2935), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_POUND] = ACTIONS(2935), - [anon_sym_asm] = ACTIONS(2935), - [anon_sym_AT_LBRACK] = ACTIONS(2935), - [sym___double_quote] = ACTIONS(2935), - [sym___single_quote] = ACTIONS(2935), - [sym___c_double_quote] = ACTIONS(2935), - [sym___c_single_quote] = ACTIONS(2935), - [sym___r_double_quote] = ACTIONS(2935), - [sym___r_single_quote] = ACTIONS(2935), - }, - [1089] = { - [ts_builtin_sym_end] = ACTIONS(2965), - [sym_identifier] = ACTIONS(2967), - [anon_sym_LF] = ACTIONS(2967), - [anon_sym_CR] = ACTIONS(2967), - [anon_sym_CR_LF] = ACTIONS(2967), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2967), - [anon_sym_as] = ACTIONS(2967), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_COMMA] = ACTIONS(2967), - [anon_sym_const] = ACTIONS(2967), - [anon_sym_LPAREN] = ACTIONS(2967), - [anon_sym___global] = ACTIONS(2967), - [anon_sym_type] = ACTIONS(2967), - [anon_sym_PIPE] = ACTIONS(2967), - [anon_sym_fn] = ACTIONS(2967), - [anon_sym_PLUS] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2967), - [anon_sym_STAR] = ACTIONS(2967), - [anon_sym_SLASH] = ACTIONS(2967), - [anon_sym_PERCENT] = ACTIONS(2967), - [anon_sym_LT] = ACTIONS(2967), - [anon_sym_GT] = ACTIONS(2967), - [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(2965), - [anon_sym_struct] = ACTIONS(2967), - [anon_sym_union] = ACTIONS(2967), - [anon_sym_pub] = ACTIONS(2967), - [anon_sym_mut] = ACTIONS(2967), - [anon_sym_enum] = ACTIONS(2967), - [anon_sym_interface] = ACTIONS(2967), - [anon_sym_PLUS_PLUS] = ACTIONS(2967), - [anon_sym_DASH_DASH] = ACTIONS(2967), - [anon_sym_QMARK] = ACTIONS(2967), - [anon_sym_BANG] = ACTIONS(2967), - [anon_sym_go] = ACTIONS(2967), - [anon_sym_spawn] = ACTIONS(2967), - [anon_sym_json_DOTdecode] = ACTIONS(2967), - [anon_sym_LBRACK2] = ACTIONS(2967), - [anon_sym_TILDE] = ACTIONS(2967), - [anon_sym_CARET] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_LT_DASH] = ACTIONS(2967), - [anon_sym_LT_LT] = ACTIONS(2967), - [anon_sym_GT_GT] = ACTIONS(2967), - [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(2967), - [sym_none] = ACTIONS(2967), - [sym_true] = ACTIONS(2967), - [sym_false] = ACTIONS(2967), - [sym_nil] = ACTIONS(2967), - [anon_sym_QMARK_DOT] = ACTIONS(2967), - [anon_sym_POUND_LBRACK] = ACTIONS(2967), - [anon_sym_if] = ACTIONS(2967), - [anon_sym_DOLLARif] = ACTIONS(2967), - [anon_sym_is] = ACTIONS(2967), - [anon_sym_BANGis] = ACTIONS(2967), - [anon_sym_in] = ACTIONS(2967), - [anon_sym_BANGin] = ACTIONS(2967), - [anon_sym_match] = ACTIONS(2967), - [anon_sym_select] = ACTIONS(2967), - [anon_sym_lock] = ACTIONS(2967), - [anon_sym_rlock] = ACTIONS(2967), - [anon_sym_unsafe] = ACTIONS(2967), - [anon_sym_sql] = ACTIONS(2967), - [sym_int_literal] = ACTIONS(2967), - [sym_float_literal] = ACTIONS(2967), - [sym_rune_literal] = ACTIONS(2967), - [anon_sym_AT] = ACTIONS(2967), - [anon_sym_shared] = ACTIONS(2967), - [anon_sym_map_LBRACK] = ACTIONS(2967), - [anon_sym_chan] = ACTIONS(2967), - [anon_sym_thread] = ACTIONS(2967), - [anon_sym_atomic] = ACTIONS(2967), - [anon_sym_assert] = ACTIONS(2967), - [anon_sym_defer] = ACTIONS(2967), - [anon_sym_goto] = ACTIONS(2967), - [anon_sym_break] = ACTIONS(2967), - [anon_sym_continue] = ACTIONS(2967), - [anon_sym_return] = ACTIONS(2967), - [anon_sym_DOLLARfor] = ACTIONS(2967), - [anon_sym_for] = ACTIONS(2967), - [anon_sym_POUND] = ACTIONS(2967), - [anon_sym_asm] = ACTIONS(2967), - [anon_sym_AT_LBRACK] = ACTIONS(2967), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2967), - [sym___c_double_quote] = ACTIONS(2967), - [sym___c_single_quote] = ACTIONS(2967), - [sym___r_double_quote] = ACTIONS(2967), - [sym___r_single_quote] = ACTIONS(2967), - }, - [1090] = { - [ts_builtin_sym_end] = ACTIONS(2768), - [sym_identifier] = ACTIONS(2766), - [anon_sym_LF] = ACTIONS(2766), - [anon_sym_CR] = ACTIONS(2766), - [anon_sym_CR_LF] = ACTIONS(2766), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2766), - [anon_sym_as] = ACTIONS(2766), - [anon_sym_LBRACE] = ACTIONS(2766), - [anon_sym_COMMA] = ACTIONS(2766), - [anon_sym_const] = ACTIONS(2766), - [anon_sym_LPAREN] = ACTIONS(2766), - [anon_sym___global] = ACTIONS(2766), - [anon_sym_type] = ACTIONS(2766), - [anon_sym_PIPE] = ACTIONS(2766), - [anon_sym_fn] = ACTIONS(2766), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2766), - [anon_sym_SLASH] = ACTIONS(2766), - [anon_sym_PERCENT] = ACTIONS(2766), - [anon_sym_LT] = ACTIONS(2766), - [anon_sym_GT] = ACTIONS(2766), - [anon_sym_EQ_EQ] = ACTIONS(2766), - [anon_sym_BANG_EQ] = ACTIONS(2766), - [anon_sym_LT_EQ] = ACTIONS(2766), - [anon_sym_GT_EQ] = ACTIONS(2766), - [anon_sym_LBRACK] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2766), - [anon_sym_union] = ACTIONS(2766), - [anon_sym_pub] = ACTIONS(2766), - [anon_sym_mut] = ACTIONS(2766), - [anon_sym_enum] = ACTIONS(2766), - [anon_sym_interface] = ACTIONS(2766), - [anon_sym_PLUS_PLUS] = ACTIONS(2766), - [anon_sym_DASH_DASH] = ACTIONS(2766), - [anon_sym_QMARK] = ACTIONS(2766), - [anon_sym_BANG] = ACTIONS(2766), - [anon_sym_go] = ACTIONS(2766), - [anon_sym_spawn] = ACTIONS(2766), - [anon_sym_json_DOTdecode] = ACTIONS(2766), - [anon_sym_LBRACK2] = ACTIONS(2766), - [anon_sym_TILDE] = ACTIONS(2766), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2766), - [anon_sym_LT_DASH] = ACTIONS(2766), - [anon_sym_LT_LT] = ACTIONS(2766), - [anon_sym_GT_GT] = ACTIONS(2766), - [anon_sym_GT_GT_GT] = ACTIONS(2766), - [anon_sym_AMP_CARET] = ACTIONS(2766), - [anon_sym_AMP_AMP] = ACTIONS(2766), - [anon_sym_PIPE_PIPE] = ACTIONS(2766), - [anon_sym_or] = ACTIONS(2766), - [sym_none] = ACTIONS(2766), - [sym_true] = ACTIONS(2766), - [sym_false] = ACTIONS(2766), - [sym_nil] = ACTIONS(2766), - [anon_sym_QMARK_DOT] = ACTIONS(2766), - [anon_sym_POUND_LBRACK] = ACTIONS(2766), - [anon_sym_if] = ACTIONS(2766), - [anon_sym_DOLLARif] = ACTIONS(2766), - [anon_sym_is] = ACTIONS(2766), - [anon_sym_BANGis] = ACTIONS(2766), - [anon_sym_in] = ACTIONS(2766), - [anon_sym_BANGin] = ACTIONS(2766), - [anon_sym_match] = ACTIONS(2766), - [anon_sym_select] = ACTIONS(2766), - [anon_sym_lock] = ACTIONS(2766), - [anon_sym_rlock] = ACTIONS(2766), - [anon_sym_unsafe] = ACTIONS(2766), - [anon_sym_sql] = ACTIONS(2766), - [sym_int_literal] = ACTIONS(2766), - [sym_float_literal] = ACTIONS(2766), - [sym_rune_literal] = ACTIONS(2766), - [anon_sym_AT] = ACTIONS(2766), - [anon_sym_shared] = ACTIONS(2766), - [anon_sym_map_LBRACK] = ACTIONS(2766), - [anon_sym_chan] = ACTIONS(2766), - [anon_sym_thread] = ACTIONS(2766), - [anon_sym_atomic] = ACTIONS(2766), - [anon_sym_assert] = ACTIONS(2766), - [anon_sym_defer] = ACTIONS(2766), - [anon_sym_goto] = ACTIONS(2766), - [anon_sym_break] = ACTIONS(2766), - [anon_sym_continue] = ACTIONS(2766), - [anon_sym_return] = ACTIONS(2766), - [anon_sym_DOLLARfor] = ACTIONS(2766), - [anon_sym_for] = ACTIONS(2766), - [anon_sym_POUND] = ACTIONS(2766), - [anon_sym_asm] = ACTIONS(2766), - [anon_sym_AT_LBRACK] = ACTIONS(2766), - [sym___double_quote] = ACTIONS(2766), - [sym___single_quote] = ACTIONS(2766), - [sym___c_double_quote] = ACTIONS(2766), - [sym___c_single_quote] = ACTIONS(2766), - [sym___r_double_quote] = ACTIONS(2766), - [sym___r_single_quote] = ACTIONS(2766), - }, - [1091] = { - [ts_builtin_sym_end] = ACTIONS(2917), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LF] = ACTIONS(2919), - [anon_sym_CR] = ACTIONS(2919), - [anon_sym_CR_LF] = ACTIONS(2919), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_as] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_COMMA] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym___global] = ACTIONS(2919), - [anon_sym_type] = ACTIONS(2919), - [anon_sym_PIPE] = ACTIONS(2919), - [anon_sym_fn] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_SLASH] = ACTIONS(2919), - [anon_sym_PERCENT] = ACTIONS(2919), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_GT] = ACTIONS(2919), - [anon_sym_EQ_EQ] = ACTIONS(2919), - [anon_sym_BANG_EQ] = ACTIONS(2919), - [anon_sym_LT_EQ] = ACTIONS(2919), - [anon_sym_GT_EQ] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_union] = ACTIONS(2919), - [anon_sym_pub] = ACTIONS(2919), - [anon_sym_mut] = ACTIONS(2919), - [anon_sym_enum] = ACTIONS(2919), - [anon_sym_interface] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2919), - [anon_sym_DASH_DASH] = ACTIONS(2919), - [anon_sym_QMARK] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_go] = ACTIONS(2919), - [anon_sym_spawn] = ACTIONS(2919), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_CARET] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_LT_DASH] = ACTIONS(2919), - [anon_sym_LT_LT] = ACTIONS(2919), - [anon_sym_GT_GT] = ACTIONS(2919), - [anon_sym_GT_GT_GT] = ACTIONS(2919), - [anon_sym_AMP_CARET] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_PIPE_PIPE] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(2919), - [sym_none] = ACTIONS(2919), - [sym_true] = ACTIONS(2919), - [sym_false] = ACTIONS(2919), - [sym_nil] = ACTIONS(2919), - [anon_sym_QMARK_DOT] = ACTIONS(2919), - [anon_sym_POUND_LBRACK] = ACTIONS(2919), - [anon_sym_if] = ACTIONS(2919), - [anon_sym_DOLLARif] = ACTIONS(2919), - [anon_sym_is] = ACTIONS(2919), - [anon_sym_BANGis] = ACTIONS(2919), - [anon_sym_in] = ACTIONS(2919), - [anon_sym_BANGin] = ACTIONS(2919), - [anon_sym_match] = ACTIONS(2919), - [anon_sym_select] = ACTIONS(2919), - [anon_sym_lock] = ACTIONS(2919), - [anon_sym_rlock] = ACTIONS(2919), - [anon_sym_unsafe] = ACTIONS(2919), - [anon_sym_sql] = ACTIONS(2919), - [sym_int_literal] = ACTIONS(2919), - [sym_float_literal] = ACTIONS(2919), - [sym_rune_literal] = ACTIONS(2919), - [anon_sym_AT] = ACTIONS(2919), - [anon_sym_shared] = ACTIONS(2919), - [anon_sym_map_LBRACK] = ACTIONS(2919), - [anon_sym_chan] = ACTIONS(2919), - [anon_sym_thread] = ACTIONS(2919), - [anon_sym_atomic] = ACTIONS(2919), - [anon_sym_assert] = ACTIONS(2919), - [anon_sym_defer] = ACTIONS(2919), - [anon_sym_goto] = ACTIONS(2919), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2919), - [anon_sym_return] = ACTIONS(2919), - [anon_sym_DOLLARfor] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2919), - [anon_sym_POUND] = ACTIONS(2919), - [anon_sym_asm] = ACTIONS(2919), - [anon_sym_AT_LBRACK] = ACTIONS(2919), - [sym___double_quote] = ACTIONS(2919), - [sym___single_quote] = ACTIONS(2919), - [sym___c_double_quote] = ACTIONS(2919), - [sym___c_single_quote] = ACTIONS(2919), - [sym___r_double_quote] = ACTIONS(2919), - [sym___r_single_quote] = ACTIONS(2919), - }, - [1092] = { - [ts_builtin_sym_end] = ACTIONS(2913), - [sym_identifier] = ACTIONS(2915), - [anon_sym_LF] = ACTIONS(2915), - [anon_sym_CR] = ACTIONS(2915), - [anon_sym_CR_LF] = ACTIONS(2915), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2915), - [anon_sym_as] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_COMMA] = ACTIONS(2915), - [anon_sym_const] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2915), - [anon_sym___global] = ACTIONS(2915), - [anon_sym_type] = ACTIONS(2915), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_fn] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_SLASH] = ACTIONS(2915), - [anon_sym_PERCENT] = ACTIONS(2915), - [anon_sym_LT] = ACTIONS(2915), - [anon_sym_GT] = ACTIONS(2915), - [anon_sym_EQ_EQ] = ACTIONS(2915), - [anon_sym_BANG_EQ] = ACTIONS(2915), - [anon_sym_LT_EQ] = ACTIONS(2915), - [anon_sym_GT_EQ] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_struct] = ACTIONS(2915), - [anon_sym_union] = ACTIONS(2915), - [anon_sym_pub] = ACTIONS(2915), - [anon_sym_mut] = ACTIONS(2915), - [anon_sym_enum] = ACTIONS(2915), - [anon_sym_interface] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_QMARK] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2915), - [anon_sym_json_DOTdecode] = ACTIONS(2915), - [anon_sym_LBRACK2] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_LT_DASH] = ACTIONS(2915), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2915), - [anon_sym_GT_GT_GT] = ACTIONS(2915), - [anon_sym_AMP_CARET] = ACTIONS(2915), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_PIPE_PIPE] = ACTIONS(2915), - [anon_sym_or] = ACTIONS(2915), - [sym_none] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [sym_nil] = ACTIONS(2915), - [anon_sym_QMARK_DOT] = ACTIONS(2915), - [anon_sym_POUND_LBRACK] = ACTIONS(2915), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_DOLLARif] = ACTIONS(2915), - [anon_sym_is] = ACTIONS(2915), - [anon_sym_BANGis] = ACTIONS(2915), - [anon_sym_in] = ACTIONS(2915), - [anon_sym_BANGin] = ACTIONS(2915), - [anon_sym_match] = ACTIONS(2915), - [anon_sym_select] = ACTIONS(2915), - [anon_sym_lock] = ACTIONS(2915), - [anon_sym_rlock] = ACTIONS(2915), - [anon_sym_unsafe] = ACTIONS(2915), - [anon_sym_sql] = ACTIONS(2915), - [sym_int_literal] = ACTIONS(2915), - [sym_float_literal] = ACTIONS(2915), - [sym_rune_literal] = ACTIONS(2915), - [anon_sym_AT] = ACTIONS(2915), - [anon_sym_shared] = ACTIONS(2915), - [anon_sym_map_LBRACK] = ACTIONS(2915), - [anon_sym_chan] = ACTIONS(2915), - [anon_sym_thread] = ACTIONS(2915), - [anon_sym_atomic] = ACTIONS(2915), - [anon_sym_assert] = ACTIONS(2915), - [anon_sym_defer] = ACTIONS(2915), - [anon_sym_goto] = ACTIONS(2915), - [anon_sym_break] = ACTIONS(2915), - [anon_sym_continue] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2915), - [anon_sym_DOLLARfor] = ACTIONS(2915), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_POUND] = ACTIONS(2915), - [anon_sym_asm] = ACTIONS(2915), - [anon_sym_AT_LBRACK] = ACTIONS(2915), - [sym___double_quote] = ACTIONS(2915), - [sym___single_quote] = ACTIONS(2915), - [sym___c_double_quote] = ACTIONS(2915), - [sym___c_single_quote] = ACTIONS(2915), - [sym___r_double_quote] = ACTIONS(2915), - [sym___r_single_quote] = ACTIONS(2915), - }, - [1093] = { - [ts_builtin_sym_end] = ACTIONS(2901), - [sym_identifier] = ACTIONS(2903), - [anon_sym_LF] = ACTIONS(2903), - [anon_sym_CR] = ACTIONS(2903), - [anon_sym_CR_LF] = ACTIONS(2903), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2903), - [anon_sym_as] = ACTIONS(2903), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_COMMA] = ACTIONS(2903), - [anon_sym_const] = ACTIONS(2903), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym___global] = ACTIONS(2903), - [anon_sym_type] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2903), - [anon_sym_PLUS] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_STAR] = ACTIONS(2903), - [anon_sym_SLASH] = ACTIONS(2903), - [anon_sym_PERCENT] = ACTIONS(2903), - [anon_sym_LT] = ACTIONS(2903), - [anon_sym_GT] = ACTIONS(2903), - [anon_sym_EQ_EQ] = ACTIONS(2903), - [anon_sym_BANG_EQ] = ACTIONS(2903), - [anon_sym_LT_EQ] = ACTIONS(2903), - [anon_sym_GT_EQ] = ACTIONS(2903), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_struct] = ACTIONS(2903), - [anon_sym_union] = ACTIONS(2903), - [anon_sym_pub] = ACTIONS(2903), - [anon_sym_mut] = ACTIONS(2903), - [anon_sym_enum] = ACTIONS(2903), - [anon_sym_interface] = ACTIONS(2903), - [anon_sym_PLUS_PLUS] = ACTIONS(2903), - [anon_sym_DASH_DASH] = ACTIONS(2903), - [anon_sym_QMARK] = ACTIONS(2903), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_go] = ACTIONS(2903), - [anon_sym_spawn] = ACTIONS(2903), - [anon_sym_json_DOTdecode] = ACTIONS(2903), - [anon_sym_LBRACK2] = ACTIONS(2903), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_CARET] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2903), - [anon_sym_LT_DASH] = ACTIONS(2903), - [anon_sym_LT_LT] = ACTIONS(2903), - [anon_sym_GT_GT] = ACTIONS(2903), - [anon_sym_GT_GT_GT] = ACTIONS(2903), - [anon_sym_AMP_CARET] = ACTIONS(2903), - [anon_sym_AMP_AMP] = ACTIONS(2903), - [anon_sym_PIPE_PIPE] = ACTIONS(2903), - [anon_sym_or] = ACTIONS(2903), - [sym_none] = ACTIONS(2903), - [sym_true] = ACTIONS(2903), - [sym_false] = ACTIONS(2903), - [sym_nil] = ACTIONS(2903), - [anon_sym_QMARK_DOT] = ACTIONS(2903), - [anon_sym_POUND_LBRACK] = ACTIONS(2903), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_DOLLARif] = ACTIONS(2903), - [anon_sym_is] = ACTIONS(2903), - [anon_sym_BANGis] = ACTIONS(2903), - [anon_sym_in] = ACTIONS(2903), - [anon_sym_BANGin] = ACTIONS(2903), - [anon_sym_match] = ACTIONS(2903), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2903), - [anon_sym_rlock] = ACTIONS(2903), - [anon_sym_unsafe] = ACTIONS(2903), - [anon_sym_sql] = ACTIONS(2903), - [sym_int_literal] = ACTIONS(2903), - [sym_float_literal] = ACTIONS(2903), - [sym_rune_literal] = ACTIONS(2903), - [anon_sym_AT] = ACTIONS(2903), - [anon_sym_shared] = ACTIONS(2903), - [anon_sym_map_LBRACK] = ACTIONS(2903), - [anon_sym_chan] = ACTIONS(2903), - [anon_sym_thread] = ACTIONS(2903), - [anon_sym_atomic] = ACTIONS(2903), - [anon_sym_assert] = ACTIONS(2903), - [anon_sym_defer] = ACTIONS(2903), - [anon_sym_goto] = ACTIONS(2903), - [anon_sym_break] = ACTIONS(2903), - [anon_sym_continue] = ACTIONS(2903), - [anon_sym_return] = ACTIONS(2903), - [anon_sym_DOLLARfor] = ACTIONS(2903), - [anon_sym_for] = ACTIONS(2903), - [anon_sym_POUND] = ACTIONS(2903), - [anon_sym_asm] = ACTIONS(2903), - [anon_sym_AT_LBRACK] = ACTIONS(2903), - [sym___double_quote] = ACTIONS(2903), - [sym___single_quote] = ACTIONS(2903), - [sym___c_double_quote] = ACTIONS(2903), - [sym___c_single_quote] = ACTIONS(2903), - [sym___r_double_quote] = ACTIONS(2903), - [sym___r_single_quote] = ACTIONS(2903), - }, - [1094] = { - [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), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2774), - [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_AT] = ACTIONS(3029), - [anon_sym_shared] = ACTIONS(3029), - [anon_sym_map_LBRACK] = ACTIONS(3029), - [anon_sym_chan] = ACTIONS(3029), - [anon_sym_thread] = ACTIONS(3029), - [anon_sym_atomic] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_defer] = ACTIONS(3029), - [anon_sym_goto] = ACTIONS(3029), - [anon_sym_break] = ACTIONS(3029), - [anon_sym_continue] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_DOLLARfor] = ACTIONS(3029), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_POUND] = ACTIONS(3029), - [anon_sym_asm] = ACTIONS(3029), - [anon_sym_AT_LBRACK] = ACTIONS(3029), - [sym___double_quote] = ACTIONS(3029), - [sym___single_quote] = ACTIONS(3029), - [sym___c_double_quote] = ACTIONS(3029), - [sym___c_single_quote] = ACTIONS(3029), - [sym___r_double_quote] = ACTIONS(3029), - [sym___r_single_quote] = ACTIONS(3029), - }, - [1095] = { - [ts_builtin_sym_end] = ACTIONS(3175), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LF] = ACTIONS(3177), - [anon_sym_CR] = ACTIONS(3177), - [anon_sym_CR_LF] = ACTIONS(3177), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_as] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3177), - [anon_sym_const] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym___global] = ACTIONS(3177), - [anon_sym_type] = ACTIONS(3177), - [anon_sym_PIPE] = ACTIONS(3177), - [anon_sym_fn] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3177), - [anon_sym_SLASH] = ACTIONS(3177), - [anon_sym_PERCENT] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3177), - [anon_sym_EQ_EQ] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_LT_EQ] = ACTIONS(3177), - [anon_sym_GT_EQ] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3175), - [anon_sym_struct] = ACTIONS(3177), - [anon_sym_union] = ACTIONS(3177), - [anon_sym_pub] = ACTIONS(3177), - [anon_sym_mut] = ACTIONS(3177), - [anon_sym_enum] = ACTIONS(3177), - [anon_sym_interface] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_DASH_DASH] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_go] = ACTIONS(3177), - [anon_sym_spawn] = ACTIONS(3177), - [anon_sym_json_DOTdecode] = ACTIONS(3177), - [anon_sym_LBRACK2] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_CARET] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LT_DASH] = ACTIONS(3177), - [anon_sym_LT_LT] = ACTIONS(3177), - [anon_sym_GT_GT] = ACTIONS(3177), - [anon_sym_GT_GT_GT] = ACTIONS(3177), - [anon_sym_AMP_CARET] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_PIPE_PIPE] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [sym_none] = ACTIONS(3177), - [sym_true] = ACTIONS(3177), - [sym_false] = ACTIONS(3177), - [sym_nil] = ACTIONS(3177), - [anon_sym_QMARK_DOT] = ACTIONS(3177), - [anon_sym_POUND_LBRACK] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_DOLLARif] = ACTIONS(3177), - [anon_sym_is] = ACTIONS(3177), - [anon_sym_BANGis] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_BANGin] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_select] = ACTIONS(3177), - [anon_sym_lock] = ACTIONS(3177), - [anon_sym_rlock] = ACTIONS(3177), - [anon_sym_unsafe] = ACTIONS(3177), - [anon_sym_sql] = ACTIONS(3177), - [sym_int_literal] = ACTIONS(3177), - [sym_float_literal] = ACTIONS(3177), - [sym_rune_literal] = ACTIONS(3177), - [anon_sym_AT] = ACTIONS(3177), - [anon_sym_shared] = ACTIONS(3177), - [anon_sym_map_LBRACK] = ACTIONS(3177), - [anon_sym_chan] = ACTIONS(3177), - [anon_sym_thread] = ACTIONS(3177), - [anon_sym_atomic] = ACTIONS(3177), - [anon_sym_assert] = ACTIONS(3177), - [anon_sym_defer] = ACTIONS(3177), - [anon_sym_goto] = ACTIONS(3177), - [anon_sym_break] = ACTIONS(3177), - [anon_sym_continue] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_DOLLARfor] = ACTIONS(3177), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_POUND] = ACTIONS(3177), - [anon_sym_asm] = ACTIONS(3177), - [anon_sym_AT_LBRACK] = ACTIONS(3177), - [sym___double_quote] = ACTIONS(3177), - [sym___single_quote] = ACTIONS(3177), - [sym___c_double_quote] = ACTIONS(3177), - [sym___c_single_quote] = ACTIONS(3177), - [sym___r_double_quote] = ACTIONS(3177), - [sym___r_single_quote] = ACTIONS(3177), - }, - [1096] = { [ts_builtin_sym_end] = ACTIONS(3127), [sym_identifier] = ACTIONS(3129), [anon_sym_LF] = ACTIONS(3129), [anon_sym_CR] = ACTIONS(3129), [anon_sym_CR_LF] = ACTIONS(3129), - [sym_comment] = ACTIONS(487), + [sym_comment] = ACTIONS(493), [anon_sym_DOT] = ACTIONS(3129), [anon_sym_as] = ACTIONS(3129), [anon_sym_LBRACE] = ACTIONS(3129), @@ -150053,4681 +149095,4056 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3129), [sym___r_single_quote] = ACTIONS(3129), }, - [1097] = { - [ts_builtin_sym_end] = ACTIONS(2770), - [sym_identifier] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2772), - [anon_sym_CR] = ACTIONS(2772), - [anon_sym_CR_LF] = ACTIONS(2772), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_as] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_COMMA] = ACTIONS(2772), - [anon_sym_const] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym___global] = ACTIONS(2772), - [anon_sym_type] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2772), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_PERCENT] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2772), - [anon_sym_BANG_EQ] = ACTIONS(2772), - [anon_sym_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_EQ] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2770), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_union] = ACTIONS(2772), - [anon_sym_pub] = ACTIONS(2772), - [anon_sym_mut] = ACTIONS(2772), - [anon_sym_enum] = ACTIONS(2772), - [anon_sym_interface] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [anon_sym_QMARK] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2772), - [anon_sym_json_DOTdecode] = ACTIONS(2772), - [anon_sym_LBRACK2] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_LT_DASH] = ACTIONS(2772), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_GT_GT_GT] = ACTIONS(2772), - [anon_sym_AMP_CARET] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_PIPE_PIPE] = ACTIONS(2772), - [anon_sym_or] = ACTIONS(2772), - [sym_none] = ACTIONS(2772), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_nil] = ACTIONS(2772), - [anon_sym_QMARK_DOT] = ACTIONS(2772), - [anon_sym_POUND_LBRACK] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_DOLLARif] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_BANGis] = ACTIONS(2772), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_BANGin] = ACTIONS(2772), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_select] = ACTIONS(2772), - [anon_sym_lock] = ACTIONS(2772), - [anon_sym_rlock] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_sql] = ACTIONS(2772), - [sym_int_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2772), - [sym_rune_literal] = ACTIONS(2772), - [anon_sym_AT] = ACTIONS(2772), - [anon_sym_shared] = ACTIONS(2772), - [anon_sym_map_LBRACK] = ACTIONS(2772), - [anon_sym_chan] = ACTIONS(2772), - [anon_sym_thread] = ACTIONS(2772), - [anon_sym_atomic] = ACTIONS(2772), - [anon_sym_assert] = ACTIONS(2772), - [anon_sym_defer] = ACTIONS(2772), - [anon_sym_goto] = ACTIONS(2772), - [anon_sym_break] = ACTIONS(2772), - [anon_sym_continue] = ACTIONS(2772), - [anon_sym_return] = ACTIONS(2772), - [anon_sym_DOLLARfor] = ACTIONS(2772), - [anon_sym_for] = ACTIONS(2772), - [anon_sym_POUND] = ACTIONS(2772), - [anon_sym_asm] = ACTIONS(2772), - [anon_sym_AT_LBRACK] = ACTIONS(2772), - [sym___double_quote] = ACTIONS(2772), - [sym___single_quote] = ACTIONS(2772), - [sym___c_double_quote] = ACTIONS(2772), - [sym___c_single_quote] = ACTIONS(2772), - [sym___r_double_quote] = ACTIONS(2772), - [sym___r_single_quote] = ACTIONS(2772), + [1085] = { + [ts_builtin_sym_end] = ACTIONS(2762), + [sym_identifier] = ACTIONS(2764), + [anon_sym_LF] = ACTIONS(2764), + [anon_sym_CR] = ACTIONS(2764), + [anon_sym_CR_LF] = ACTIONS(2764), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2764), + [anon_sym_as] = ACTIONS(2764), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_COMMA] = ACTIONS(2764), + [anon_sym_const] = ACTIONS(2764), + [anon_sym_LPAREN] = ACTIONS(2764), + [anon_sym___global] = ACTIONS(2764), + [anon_sym_type] = ACTIONS(2764), + [anon_sym_PIPE] = ACTIONS(2764), + [anon_sym_fn] = ACTIONS(2764), + [anon_sym_PLUS] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2764), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_SLASH] = ACTIONS(2764), + [anon_sym_PERCENT] = ACTIONS(2764), + [anon_sym_LT] = ACTIONS(2764), + [anon_sym_GT] = ACTIONS(2764), + [anon_sym_EQ_EQ] = ACTIONS(2764), + [anon_sym_BANG_EQ] = ACTIONS(2764), + [anon_sym_LT_EQ] = ACTIONS(2764), + [anon_sym_GT_EQ] = ACTIONS(2764), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2764), + [anon_sym_union] = ACTIONS(2764), + [anon_sym_pub] = ACTIONS(2764), + [anon_sym_mut] = ACTIONS(2764), + [anon_sym_enum] = ACTIONS(2764), + [anon_sym_interface] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_QMARK] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_go] = ACTIONS(2764), + [anon_sym_spawn] = ACTIONS(2764), + [anon_sym_json_DOTdecode] = ACTIONS(2764), + [anon_sym_LBRACK2] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_CARET] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_LT_DASH] = ACTIONS(2764), + [anon_sym_LT_LT] = ACTIONS(2764), + [anon_sym_GT_GT] = ACTIONS(2764), + [anon_sym_GT_GT_GT] = ACTIONS(2764), + [anon_sym_AMP_CARET] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_PIPE_PIPE] = ACTIONS(2764), + [anon_sym_or] = ACTIONS(2764), + [sym_none] = ACTIONS(2764), + [sym_true] = ACTIONS(2764), + [sym_false] = ACTIONS(2764), + [sym_nil] = ACTIONS(2764), + [anon_sym_QMARK_DOT] = ACTIONS(2764), + [anon_sym_POUND_LBRACK] = ACTIONS(2764), + [anon_sym_if] = ACTIONS(2764), + [anon_sym_DOLLARif] = ACTIONS(2764), + [anon_sym_is] = ACTIONS(2764), + [anon_sym_BANGis] = ACTIONS(2764), + [anon_sym_in] = ACTIONS(2764), + [anon_sym_BANGin] = ACTIONS(2764), + [anon_sym_match] = ACTIONS(2764), + [anon_sym_select] = ACTIONS(2764), + [anon_sym_lock] = ACTIONS(2764), + [anon_sym_rlock] = ACTIONS(2764), + [anon_sym_unsafe] = ACTIONS(2764), + [anon_sym_sql] = ACTIONS(2764), + [sym_int_literal] = ACTIONS(2764), + [sym_float_literal] = ACTIONS(2764), + [sym_rune_literal] = ACTIONS(2764), + [anon_sym_AT] = ACTIONS(2764), + [anon_sym_shared] = ACTIONS(2764), + [anon_sym_map_LBRACK] = ACTIONS(2764), + [anon_sym_chan] = ACTIONS(2764), + [anon_sym_thread] = ACTIONS(2764), + [anon_sym_atomic] = ACTIONS(2764), + [anon_sym_assert] = ACTIONS(2764), + [anon_sym_defer] = ACTIONS(2764), + [anon_sym_goto] = ACTIONS(2764), + [anon_sym_break] = ACTIONS(2764), + [anon_sym_continue] = ACTIONS(2764), + [anon_sym_return] = ACTIONS(2764), + [anon_sym_DOLLARfor] = ACTIONS(2764), + [anon_sym_for] = ACTIONS(2764), + [anon_sym_POUND] = ACTIONS(2764), + [anon_sym_asm] = ACTIONS(2764), + [anon_sym_AT_LBRACK] = ACTIONS(2764), + [sym___double_quote] = ACTIONS(2764), + [sym___single_quote] = ACTIONS(2764), + [sym___c_double_quote] = ACTIONS(2764), + [sym___c_single_quote] = ACTIONS(2764), + [sym___r_double_quote] = ACTIONS(2764), + [sym___r_single_quote] = ACTIONS(2764), }, - [1098] = { - [ts_builtin_sym_end] = ACTIONS(2882), - [sym_identifier] = ACTIONS(2884), - [anon_sym_LF] = ACTIONS(2884), - [anon_sym_CR] = ACTIONS(2884), - [anon_sym_CR_LF] = ACTIONS(2884), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_as] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(2884), - [anon_sym_const] = ACTIONS(2884), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym___global] = ACTIONS(2884), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_PIPE] = ACTIONS(2884), - [anon_sym_fn] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2884), - [anon_sym_SLASH] = ACTIONS(2884), - [anon_sym_PERCENT] = ACTIONS(2884), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_GT] = ACTIONS(2884), - [anon_sym_EQ_EQ] = ACTIONS(2884), - [anon_sym_BANG_EQ] = ACTIONS(2884), - [anon_sym_LT_EQ] = ACTIONS(2884), - [anon_sym_GT_EQ] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_union] = ACTIONS(2884), - [anon_sym_pub] = ACTIONS(2884), - [anon_sym_mut] = ACTIONS(2884), - [anon_sym_enum] = ACTIONS(2884), - [anon_sym_interface] = ACTIONS(2884), - [anon_sym_PLUS_PLUS] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2884), - [anon_sym_QMARK] = ACTIONS(2884), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_go] = ACTIONS(2884), - [anon_sym_spawn] = ACTIONS(2884), - [anon_sym_json_DOTdecode] = ACTIONS(2884), - [anon_sym_LBRACK2] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2884), - [anon_sym_CARET] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_LT_DASH] = ACTIONS(2884), - [anon_sym_LT_LT] = ACTIONS(2884), - [anon_sym_GT_GT] = ACTIONS(2884), - [anon_sym_GT_GT_GT] = ACTIONS(2884), - [anon_sym_AMP_CARET] = ACTIONS(2884), - [anon_sym_AMP_AMP] = ACTIONS(2884), - [anon_sym_PIPE_PIPE] = ACTIONS(2884), - [anon_sym_or] = ACTIONS(2884), - [sym_none] = ACTIONS(2884), - [sym_true] = ACTIONS(2884), - [sym_false] = ACTIONS(2884), - [sym_nil] = ACTIONS(2884), - [anon_sym_QMARK_DOT] = ACTIONS(2884), - [anon_sym_POUND_LBRACK] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_DOLLARif] = ACTIONS(2884), - [anon_sym_is] = ACTIONS(2884), - [anon_sym_BANGis] = ACTIONS(2884), - [anon_sym_in] = ACTIONS(2884), - [anon_sym_BANGin] = ACTIONS(2884), - [anon_sym_match] = ACTIONS(2884), - [anon_sym_select] = ACTIONS(2884), - [anon_sym_lock] = ACTIONS(2884), - [anon_sym_rlock] = ACTIONS(2884), - [anon_sym_unsafe] = ACTIONS(2884), - [anon_sym_sql] = ACTIONS(2884), - [sym_int_literal] = ACTIONS(2884), - [sym_float_literal] = ACTIONS(2884), - [sym_rune_literal] = ACTIONS(2884), - [anon_sym_AT] = ACTIONS(2884), - [anon_sym_shared] = ACTIONS(2884), - [anon_sym_map_LBRACK] = ACTIONS(2884), - [anon_sym_chan] = ACTIONS(2884), - [anon_sym_thread] = ACTIONS(2884), - [anon_sym_atomic] = ACTIONS(2884), - [anon_sym_assert] = ACTIONS(2884), - [anon_sym_defer] = ACTIONS(2884), - [anon_sym_goto] = ACTIONS(2884), - [anon_sym_break] = ACTIONS(2884), - [anon_sym_continue] = ACTIONS(2884), - [anon_sym_return] = ACTIONS(2884), - [anon_sym_DOLLARfor] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2884), - [anon_sym_POUND] = ACTIONS(2884), - [anon_sym_asm] = ACTIONS(2884), - [anon_sym_AT_LBRACK] = ACTIONS(2884), - [sym___double_quote] = ACTIONS(2884), - [sym___single_quote] = ACTIONS(2884), - [sym___c_double_quote] = ACTIONS(2884), - [sym___c_single_quote] = ACTIONS(2884), - [sym___r_double_quote] = ACTIONS(2884), - [sym___r_single_quote] = ACTIONS(2884), + [1086] = { + [ts_builtin_sym_end] = ACTIONS(2738), + [sym_identifier] = ACTIONS(2740), + [anon_sym_LF] = ACTIONS(2740), + [anon_sym_CR] = ACTIONS(2740), + [anon_sym_CR_LF] = ACTIONS(2740), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2740), + [anon_sym_as] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_COMMA] = ACTIONS(2740), + [anon_sym_const] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(2740), + [anon_sym___global] = ACTIONS(2740), + [anon_sym_type] = ACTIONS(2740), + [anon_sym_PIPE] = ACTIONS(2740), + [anon_sym_fn] = ACTIONS(2740), + [anon_sym_PLUS] = ACTIONS(2740), + [anon_sym_DASH] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_SLASH] = ACTIONS(2740), + [anon_sym_PERCENT] = ACTIONS(2740), + [anon_sym_LT] = ACTIONS(2740), + [anon_sym_GT] = ACTIONS(2740), + [anon_sym_EQ_EQ] = ACTIONS(2740), + [anon_sym_BANG_EQ] = ACTIONS(2740), + [anon_sym_LT_EQ] = ACTIONS(2740), + [anon_sym_GT_EQ] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(2745), + [anon_sym_struct] = ACTIONS(2740), + [anon_sym_union] = ACTIONS(2740), + [anon_sym_pub] = ACTIONS(2740), + [anon_sym_mut] = ACTIONS(2740), + [anon_sym_enum] = ACTIONS(2740), + [anon_sym_interface] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2740), + [anon_sym_DASH_DASH] = ACTIONS(2740), + [anon_sym_QMARK] = ACTIONS(2740), + [anon_sym_BANG] = ACTIONS(2740), + [anon_sym_go] = ACTIONS(2740), + [anon_sym_spawn] = ACTIONS(2740), + [anon_sym_json_DOTdecode] = ACTIONS(2740), + [anon_sym_LBRACK2] = ACTIONS(2740), + [anon_sym_TILDE] = ACTIONS(2740), + [anon_sym_CARET] = ACTIONS(2740), + [anon_sym_AMP] = ACTIONS(2740), + [anon_sym_LT_DASH] = ACTIONS(2740), + [anon_sym_LT_LT] = ACTIONS(2740), + [anon_sym_GT_GT] = ACTIONS(2740), + [anon_sym_GT_GT_GT] = ACTIONS(2740), + [anon_sym_AMP_CARET] = ACTIONS(2740), + [anon_sym_AMP_AMP] = ACTIONS(2740), + [anon_sym_PIPE_PIPE] = ACTIONS(2740), + [anon_sym_or] = ACTIONS(2740), + [sym_none] = ACTIONS(2740), + [sym_true] = ACTIONS(2740), + [sym_false] = ACTIONS(2740), + [sym_nil] = ACTIONS(2740), + [anon_sym_QMARK_DOT] = ACTIONS(2740), + [anon_sym_POUND_LBRACK] = ACTIONS(2740), + [anon_sym_if] = ACTIONS(2740), + [anon_sym_DOLLARif] = ACTIONS(2740), + [anon_sym_is] = ACTIONS(2740), + [anon_sym_BANGis] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2740), + [anon_sym_BANGin] = ACTIONS(2740), + [anon_sym_match] = ACTIONS(2740), + [anon_sym_select] = ACTIONS(2740), + [anon_sym_lock] = ACTIONS(2740), + [anon_sym_rlock] = ACTIONS(2740), + [anon_sym_unsafe] = ACTIONS(2740), + [anon_sym_sql] = ACTIONS(2740), + [sym_int_literal] = ACTIONS(2740), + [sym_float_literal] = ACTIONS(2740), + [sym_rune_literal] = ACTIONS(2740), + [anon_sym_AT] = ACTIONS(2740), + [anon_sym_shared] = ACTIONS(2740), + [anon_sym_map_LBRACK] = ACTIONS(2740), + [anon_sym_chan] = ACTIONS(2740), + [anon_sym_thread] = ACTIONS(2740), + [anon_sym_atomic] = ACTIONS(2740), + [anon_sym_assert] = ACTIONS(2740), + [anon_sym_defer] = ACTIONS(2740), + [anon_sym_goto] = ACTIONS(2740), + [anon_sym_break] = ACTIONS(2740), + [anon_sym_continue] = ACTIONS(2740), + [anon_sym_return] = ACTIONS(2740), + [anon_sym_DOLLARfor] = ACTIONS(2740), + [anon_sym_for] = ACTIONS(2740), + [anon_sym_POUND] = ACTIONS(2740), + [anon_sym_asm] = ACTIONS(2740), + [anon_sym_AT_LBRACK] = ACTIONS(2740), + [sym___double_quote] = ACTIONS(2740), + [sym___single_quote] = ACTIONS(2740), + [sym___c_double_quote] = ACTIONS(2740), + [sym___c_single_quote] = ACTIONS(2740), + [sym___r_double_quote] = ACTIONS(2740), + [sym___r_single_quote] = ACTIONS(2740), + }, + [1087] = { + [ts_builtin_sym_end] = ACTIONS(3104), + [sym_identifier] = ACTIONS(3106), + [anon_sym_LF] = ACTIONS(3106), + [anon_sym_CR] = ACTIONS(3106), + [anon_sym_CR_LF] = ACTIONS(3106), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3106), + [anon_sym_as] = ACTIONS(3106), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_COMMA] = ACTIONS(3106), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3106), + [anon_sym___global] = ACTIONS(3106), + [anon_sym_type] = ACTIONS(3106), + [anon_sym_PIPE] = ACTIONS(3106), + [anon_sym_fn] = ACTIONS(3106), + [anon_sym_PLUS] = ACTIONS(3106), + [anon_sym_DASH] = ACTIONS(3106), + [anon_sym_STAR] = ACTIONS(3106), + [anon_sym_SLASH] = ACTIONS(3106), + [anon_sym_PERCENT] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(3106), + [anon_sym_GT] = ACTIONS(3106), + [anon_sym_EQ_EQ] = ACTIONS(3106), + [anon_sym_BANG_EQ] = ACTIONS(3106), + [anon_sym_LT_EQ] = ACTIONS(3106), + [anon_sym_GT_EQ] = ACTIONS(3106), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_struct] = ACTIONS(3106), + [anon_sym_union] = ACTIONS(3106), + [anon_sym_pub] = ACTIONS(3106), + [anon_sym_mut] = ACTIONS(3106), + [anon_sym_enum] = ACTIONS(3106), + [anon_sym_interface] = ACTIONS(3106), + [anon_sym_PLUS_PLUS] = ACTIONS(3106), + [anon_sym_DASH_DASH] = ACTIONS(3106), + [anon_sym_QMARK] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(3106), + [anon_sym_go] = ACTIONS(3106), + [anon_sym_spawn] = ACTIONS(3106), + [anon_sym_json_DOTdecode] = ACTIONS(3106), + [anon_sym_LBRACK2] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3106), + [anon_sym_CARET] = ACTIONS(3106), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT_DASH] = ACTIONS(3106), + [anon_sym_LT_LT] = ACTIONS(3106), + [anon_sym_GT_GT] = ACTIONS(3106), + [anon_sym_GT_GT_GT] = ACTIONS(3106), + [anon_sym_AMP_CARET] = ACTIONS(3106), + [anon_sym_AMP_AMP] = ACTIONS(3106), + [anon_sym_PIPE_PIPE] = ACTIONS(3106), + [anon_sym_or] = ACTIONS(3106), + [sym_none] = ACTIONS(3106), + [sym_true] = ACTIONS(3106), + [sym_false] = ACTIONS(3106), + [sym_nil] = ACTIONS(3106), + [anon_sym_QMARK_DOT] = ACTIONS(3106), + [anon_sym_POUND_LBRACK] = ACTIONS(3106), + [anon_sym_if] = ACTIONS(3106), + [anon_sym_DOLLARif] = ACTIONS(3106), + [anon_sym_is] = ACTIONS(3106), + [anon_sym_BANGis] = ACTIONS(3106), + [anon_sym_in] = ACTIONS(3106), + [anon_sym_BANGin] = ACTIONS(3106), + [anon_sym_match] = ACTIONS(3106), + [anon_sym_select] = ACTIONS(3106), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(3106), + [anon_sym_sql] = ACTIONS(3106), + [sym_int_literal] = ACTIONS(3106), + [sym_float_literal] = ACTIONS(3106), + [sym_rune_literal] = ACTIONS(3106), + [anon_sym_AT] = ACTIONS(3106), + [anon_sym_shared] = ACTIONS(3106), + [anon_sym_map_LBRACK] = ACTIONS(3106), + [anon_sym_chan] = ACTIONS(3106), + [anon_sym_thread] = ACTIONS(3106), + [anon_sym_atomic] = ACTIONS(3106), + [anon_sym_assert] = ACTIONS(3106), + [anon_sym_defer] = ACTIONS(3106), + [anon_sym_goto] = ACTIONS(3106), + [anon_sym_break] = ACTIONS(3106), + [anon_sym_continue] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3106), + [anon_sym_DOLLARfor] = ACTIONS(3106), + [anon_sym_for] = ACTIONS(3106), + [anon_sym_POUND] = ACTIONS(3106), + [anon_sym_asm] = ACTIONS(3106), + [anon_sym_AT_LBRACK] = ACTIONS(3106), + [sym___double_quote] = ACTIONS(3106), + [sym___single_quote] = ACTIONS(3106), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3106), + [sym___r_double_quote] = ACTIONS(3106), + [sym___r_single_quote] = ACTIONS(3106), + }, + [1088] = { + [ts_builtin_sym_end] = ACTIONS(3084), + [sym_identifier] = ACTIONS(3086), + [anon_sym_LF] = ACTIONS(3086), + [anon_sym_CR] = ACTIONS(3086), + [anon_sym_CR_LF] = ACTIONS(3086), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3086), + [anon_sym_as] = ACTIONS(3086), + [anon_sym_LBRACE] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_const] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym___global] = ACTIONS(3086), + [anon_sym_type] = ACTIONS(3086), + [anon_sym_PIPE] = ACTIONS(3086), + [anon_sym_fn] = ACTIONS(3086), + [anon_sym_PLUS] = ACTIONS(3086), + [anon_sym_DASH] = ACTIONS(3086), + [anon_sym_STAR] = ACTIONS(3086), + [anon_sym_SLASH] = ACTIONS(3086), + [anon_sym_PERCENT] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(3086), + [anon_sym_GT] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(3086), + [anon_sym_GT_EQ] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(3086), + [anon_sym_union] = ACTIONS(3086), + [anon_sym_pub] = ACTIONS(3086), + [anon_sym_mut] = ACTIONS(3086), + [anon_sym_enum] = ACTIONS(3086), + [anon_sym_interface] = ACTIONS(3086), + [anon_sym_PLUS_PLUS] = ACTIONS(3086), + [anon_sym_DASH_DASH] = ACTIONS(3086), + [anon_sym_QMARK] = ACTIONS(3086), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3086), + [anon_sym_spawn] = ACTIONS(3086), + [anon_sym_json_DOTdecode] = ACTIONS(3086), + [anon_sym_LBRACK2] = ACTIONS(3086), + [anon_sym_TILDE] = ACTIONS(3086), + [anon_sym_CARET] = ACTIONS(3086), + [anon_sym_AMP] = ACTIONS(3086), + [anon_sym_LT_DASH] = ACTIONS(3086), + [anon_sym_LT_LT] = ACTIONS(3086), + [anon_sym_GT_GT] = ACTIONS(3086), + [anon_sym_GT_GT_GT] = ACTIONS(3086), + [anon_sym_AMP_CARET] = ACTIONS(3086), + [anon_sym_AMP_AMP] = ACTIONS(3086), + [anon_sym_PIPE_PIPE] = ACTIONS(3086), + [anon_sym_or] = ACTIONS(3086), + [sym_none] = ACTIONS(3086), + [sym_true] = ACTIONS(3086), + [sym_false] = ACTIONS(3086), + [sym_nil] = ACTIONS(3086), + [anon_sym_QMARK_DOT] = ACTIONS(3086), + [anon_sym_POUND_LBRACK] = ACTIONS(3086), + [anon_sym_if] = ACTIONS(3086), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_is] = ACTIONS(3086), + [anon_sym_BANGis] = ACTIONS(3086), + [anon_sym_in] = ACTIONS(3086), + [anon_sym_BANGin] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3086), + [anon_sym_select] = ACTIONS(3086), + [anon_sym_lock] = ACTIONS(3086), + [anon_sym_rlock] = ACTIONS(3086), + [anon_sym_unsafe] = ACTIONS(3086), + [anon_sym_sql] = ACTIONS(3086), + [sym_int_literal] = ACTIONS(3086), + [sym_float_literal] = ACTIONS(3086), + [sym_rune_literal] = ACTIONS(3086), + [anon_sym_AT] = ACTIONS(3086), + [anon_sym_shared] = ACTIONS(3086), + [anon_sym_map_LBRACK] = ACTIONS(3086), + [anon_sym_chan] = ACTIONS(3086), + [anon_sym_thread] = ACTIONS(3086), + [anon_sym_atomic] = ACTIONS(3086), + [anon_sym_assert] = ACTIONS(3086), + [anon_sym_defer] = ACTIONS(3086), + [anon_sym_goto] = ACTIONS(3086), + [anon_sym_break] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(3086), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_DOLLARfor] = ACTIONS(3086), + [anon_sym_for] = ACTIONS(3086), + [anon_sym_POUND] = ACTIONS(3086), + [anon_sym_asm] = ACTIONS(3086), + [anon_sym_AT_LBRACK] = ACTIONS(3086), + [sym___double_quote] = ACTIONS(3086), + [sym___single_quote] = ACTIONS(3086), + [sym___c_double_quote] = ACTIONS(3086), + [sym___c_single_quote] = ACTIONS(3086), + [sym___r_double_quote] = ACTIONS(3086), + [sym___r_single_quote] = ACTIONS(3086), + }, + [1089] = { + [ts_builtin_sym_end] = ACTIONS(2832), + [sym_identifier] = ACTIONS(2834), + [anon_sym_LF] = ACTIONS(2834), + [anon_sym_CR] = ACTIONS(2834), + [anon_sym_CR_LF] = ACTIONS(2834), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2834), + [anon_sym_as] = ACTIONS(2834), + [anon_sym_LBRACE] = ACTIONS(2834), + [anon_sym_COMMA] = ACTIONS(2834), + [anon_sym_const] = ACTIONS(2834), + [anon_sym_LPAREN] = ACTIONS(2834), + [anon_sym___global] = ACTIONS(2834), + [anon_sym_type] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_fn] = ACTIONS(2834), + [anon_sym_PLUS] = ACTIONS(2834), + [anon_sym_DASH] = ACTIONS(2834), + [anon_sym_STAR] = ACTIONS(2834), + [anon_sym_SLASH] = ACTIONS(2834), + [anon_sym_PERCENT] = ACTIONS(2834), + [anon_sym_LT] = ACTIONS(2834), + [anon_sym_GT] = ACTIONS(2834), + [anon_sym_EQ_EQ] = ACTIONS(2834), + [anon_sym_BANG_EQ] = ACTIONS(2834), + [anon_sym_LT_EQ] = ACTIONS(2834), + [anon_sym_GT_EQ] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2832), + [anon_sym_struct] = ACTIONS(2834), + [anon_sym_union] = ACTIONS(2834), + [anon_sym_pub] = ACTIONS(2834), + [anon_sym_mut] = ACTIONS(2834), + [anon_sym_enum] = ACTIONS(2834), + [anon_sym_interface] = ACTIONS(2834), + [anon_sym_PLUS_PLUS] = ACTIONS(2834), + [anon_sym_DASH_DASH] = ACTIONS(2834), + [anon_sym_QMARK] = ACTIONS(2834), + [anon_sym_BANG] = ACTIONS(2834), + [anon_sym_go] = ACTIONS(2834), + [anon_sym_spawn] = ACTIONS(2834), + [anon_sym_json_DOTdecode] = ACTIONS(2834), + [anon_sym_LBRACK2] = ACTIONS(2834), + [anon_sym_TILDE] = ACTIONS(2834), + [anon_sym_CARET] = ACTIONS(2834), + [anon_sym_AMP] = ACTIONS(2834), + [anon_sym_LT_DASH] = ACTIONS(2834), + [anon_sym_LT_LT] = ACTIONS(2834), + [anon_sym_GT_GT] = ACTIONS(2834), + [anon_sym_GT_GT_GT] = ACTIONS(2834), + [anon_sym_AMP_CARET] = ACTIONS(2834), + [anon_sym_AMP_AMP] = ACTIONS(2834), + [anon_sym_PIPE_PIPE] = ACTIONS(2834), + [anon_sym_or] = ACTIONS(2834), + [sym_none] = ACTIONS(2834), + [sym_true] = ACTIONS(2834), + [sym_false] = ACTIONS(2834), + [sym_nil] = ACTIONS(2834), + [anon_sym_QMARK_DOT] = ACTIONS(2834), + [anon_sym_POUND_LBRACK] = ACTIONS(2834), + [anon_sym_if] = ACTIONS(2834), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_is] = ACTIONS(2834), + [anon_sym_BANGis] = ACTIONS(2834), + [anon_sym_in] = ACTIONS(2834), + [anon_sym_BANGin] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2834), + [anon_sym_select] = ACTIONS(2834), + [anon_sym_lock] = ACTIONS(2834), + [anon_sym_rlock] = ACTIONS(2834), + [anon_sym_unsafe] = ACTIONS(2834), + [anon_sym_sql] = ACTIONS(2834), + [sym_int_literal] = ACTIONS(2834), + [sym_float_literal] = ACTIONS(2834), + [sym_rune_literal] = ACTIONS(2834), + [anon_sym_AT] = ACTIONS(2834), + [anon_sym_shared] = ACTIONS(2834), + [anon_sym_map_LBRACK] = ACTIONS(2834), + [anon_sym_chan] = ACTIONS(2834), + [anon_sym_thread] = ACTIONS(2834), + [anon_sym_atomic] = ACTIONS(2834), + [anon_sym_assert] = ACTIONS(2834), + [anon_sym_defer] = ACTIONS(2834), + [anon_sym_goto] = ACTIONS(2834), + [anon_sym_break] = ACTIONS(2834), + [anon_sym_continue] = ACTIONS(2834), + [anon_sym_return] = ACTIONS(2834), + [anon_sym_DOLLARfor] = ACTIONS(2834), + [anon_sym_for] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(2834), + [anon_sym_asm] = ACTIONS(2834), + [anon_sym_AT_LBRACK] = ACTIONS(2834), + [sym___double_quote] = ACTIONS(2834), + [sym___single_quote] = ACTIONS(2834), + [sym___c_double_quote] = ACTIONS(2834), + [sym___c_single_quote] = ACTIONS(2834), + [sym___r_double_quote] = ACTIONS(2834), + [sym___r_single_quote] = ACTIONS(2834), + }, + [1090] = { + [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), + [sym_comment] = ACTIONS(493), + [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_AT] = 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), + [sym___double_quote] = ACTIONS(3046), + [sym___single_quote] = ACTIONS(3046), + [sym___c_double_quote] = ACTIONS(3046), + [sym___c_single_quote] = ACTIONS(3046), + [sym___r_double_quote] = ACTIONS(3046), + [sym___r_single_quote] = ACTIONS(3046), + }, + [1091] = { + [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), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3042), + [sym___single_quote] = ACTIONS(3042), + [sym___c_double_quote] = ACTIONS(3042), + [sym___c_single_quote] = ACTIONS(3042), + [sym___r_double_quote] = ACTIONS(3042), + [sym___r_single_quote] = ACTIONS(3042), + }, + [1092] = { + [ts_builtin_sym_end] = ACTIONS(2692), + [sym_identifier] = ACTIONS(2694), + [anon_sym_LF] = ACTIONS(2694), + [anon_sym_CR] = ACTIONS(2694), + [anon_sym_CR_LF] = ACTIONS(2694), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2694), + [anon_sym_as] = ACTIONS(2694), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_COMMA] = ACTIONS(2694), + [anon_sym_const] = ACTIONS(2694), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym___global] = ACTIONS(2694), + [anon_sym_type] = ACTIONS(2694), + [anon_sym_PIPE] = ACTIONS(2694), + [anon_sym_fn] = ACTIONS(2694), + [anon_sym_PLUS] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(2694), + [anon_sym_SLASH] = ACTIONS(2694), + [anon_sym_PERCENT] = ACTIONS(2694), + [anon_sym_LT] = ACTIONS(2694), + [anon_sym_GT] = ACTIONS(2694), + [anon_sym_EQ_EQ] = ACTIONS(2694), + [anon_sym_BANG_EQ] = ACTIONS(2694), + [anon_sym_LT_EQ] = ACTIONS(2694), + [anon_sym_GT_EQ] = ACTIONS(2694), + [anon_sym_LBRACK] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2694), + [anon_sym_union] = ACTIONS(2694), + [anon_sym_pub] = ACTIONS(2694), + [anon_sym_mut] = ACTIONS(2694), + [anon_sym_enum] = ACTIONS(2694), + [anon_sym_interface] = ACTIONS(2694), + [anon_sym_PLUS_PLUS] = ACTIONS(2694), + [anon_sym_DASH_DASH] = ACTIONS(2694), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_BANG] = ACTIONS(2694), + [anon_sym_go] = ACTIONS(2694), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2694), + [anon_sym_LBRACK2] = ACTIONS(2694), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_CARET] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2694), + [anon_sym_LT_DASH] = ACTIONS(2694), + [anon_sym_LT_LT] = ACTIONS(2694), + [anon_sym_GT_GT] = ACTIONS(2694), + [anon_sym_GT_GT_GT] = ACTIONS(2694), + [anon_sym_AMP_CARET] = ACTIONS(2694), + [anon_sym_AMP_AMP] = ACTIONS(2694), + [anon_sym_PIPE_PIPE] = ACTIONS(2694), + [anon_sym_or] = ACTIONS(2694), + [sym_none] = ACTIONS(2694), + [sym_true] = ACTIONS(2694), + [sym_false] = ACTIONS(2694), + [sym_nil] = ACTIONS(2694), + [anon_sym_QMARK_DOT] = ACTIONS(2694), + [anon_sym_POUND_LBRACK] = ACTIONS(2694), + [anon_sym_if] = ACTIONS(2694), + [anon_sym_DOLLARif] = ACTIONS(2694), + [anon_sym_is] = ACTIONS(2694), + [anon_sym_BANGis] = ACTIONS(2694), + [anon_sym_in] = ACTIONS(2694), + [anon_sym_BANGin] = ACTIONS(2694), + [anon_sym_match] = ACTIONS(2694), + [anon_sym_select] = ACTIONS(2694), + [anon_sym_lock] = ACTIONS(2694), + [anon_sym_rlock] = ACTIONS(2694), + [anon_sym_unsafe] = ACTIONS(2694), + [anon_sym_sql] = ACTIONS(2694), + [sym_int_literal] = ACTIONS(2694), + [sym_float_literal] = ACTIONS(2694), + [sym_rune_literal] = ACTIONS(2694), + [anon_sym_AT] = ACTIONS(2694), + [anon_sym_shared] = ACTIONS(2694), + [anon_sym_map_LBRACK] = ACTIONS(2694), + [anon_sym_chan] = ACTIONS(2694), + [anon_sym_thread] = ACTIONS(2694), + [anon_sym_atomic] = ACTIONS(2694), + [anon_sym_assert] = ACTIONS(2694), + [anon_sym_defer] = ACTIONS(2694), + [anon_sym_goto] = ACTIONS(2694), + [anon_sym_break] = ACTIONS(2694), + [anon_sym_continue] = ACTIONS(2694), + [anon_sym_return] = ACTIONS(2694), + [anon_sym_DOLLARfor] = ACTIONS(2694), + [anon_sym_for] = ACTIONS(2694), + [anon_sym_POUND] = ACTIONS(2694), + [anon_sym_asm] = ACTIONS(2694), + [anon_sym_AT_LBRACK] = ACTIONS(2694), + [sym___double_quote] = ACTIONS(2694), + [sym___single_quote] = ACTIONS(2694), + [sym___c_double_quote] = ACTIONS(2694), + [sym___c_single_quote] = ACTIONS(2694), + [sym___r_double_quote] = ACTIONS(2694), + [sym___r_single_quote] = ACTIONS(2694), + }, + [1093] = { + [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), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3038), + [sym___single_quote] = ACTIONS(3038), + [sym___c_double_quote] = ACTIONS(3038), + [sym___c_single_quote] = ACTIONS(3038), + [sym___r_double_quote] = ACTIONS(3038), + [sym___r_single_quote] = ACTIONS(3038), + }, + [1094] = { + [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), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3030), + [sym___single_quote] = ACTIONS(3030), + [sym___c_double_quote] = ACTIONS(3030), + [sym___c_single_quote] = ACTIONS(3030), + [sym___r_double_quote] = ACTIONS(3030), + [sym___r_single_quote] = ACTIONS(3030), + }, + [1095] = { + [ts_builtin_sym_end] = ACTIONS(2820), + [sym_identifier] = ACTIONS(2822), + [anon_sym_LF] = ACTIONS(2822), + [anon_sym_CR] = ACTIONS(2822), + [anon_sym_CR_LF] = ACTIONS(2822), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2822), + [anon_sym_as] = ACTIONS(2822), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_COMMA] = ACTIONS(2822), + [anon_sym_const] = ACTIONS(2822), + [anon_sym_LPAREN] = ACTIONS(2822), + [anon_sym___global] = ACTIONS(2822), + [anon_sym_type] = ACTIONS(2822), + [anon_sym_PIPE] = ACTIONS(2822), + [anon_sym_fn] = ACTIONS(2822), + [anon_sym_PLUS] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2822), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_SLASH] = ACTIONS(2822), + [anon_sym_PERCENT] = ACTIONS(2822), + [anon_sym_LT] = ACTIONS(2822), + [anon_sym_GT] = ACTIONS(2822), + [anon_sym_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ] = ACTIONS(2822), + [anon_sym_LT_EQ] = ACTIONS(2822), + [anon_sym_GT_EQ] = ACTIONS(2822), + [anon_sym_LBRACK] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2822), + [anon_sym_union] = ACTIONS(2822), + [anon_sym_pub] = ACTIONS(2822), + [anon_sym_mut] = ACTIONS(2822), + [anon_sym_enum] = ACTIONS(2822), + [anon_sym_interface] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [anon_sym_QMARK] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_go] = ACTIONS(2822), + [anon_sym_spawn] = ACTIONS(2822), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_CARET] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_LT_DASH] = ACTIONS(2822), + [anon_sym_LT_LT] = ACTIONS(2822), + [anon_sym_GT_GT] = ACTIONS(2822), + [anon_sym_GT_GT_GT] = ACTIONS(2822), + [anon_sym_AMP_CARET] = ACTIONS(2822), + [anon_sym_AMP_AMP] = ACTIONS(2822), + [anon_sym_PIPE_PIPE] = ACTIONS(2822), + [anon_sym_or] = ACTIONS(2822), + [sym_none] = ACTIONS(2822), + [sym_true] = ACTIONS(2822), + [sym_false] = ACTIONS(2822), + [sym_nil] = ACTIONS(2822), + [anon_sym_QMARK_DOT] = ACTIONS(2822), + [anon_sym_POUND_LBRACK] = ACTIONS(2822), + [anon_sym_if] = ACTIONS(2822), + [anon_sym_DOLLARif] = ACTIONS(2822), + [anon_sym_is] = ACTIONS(2822), + [anon_sym_BANGis] = ACTIONS(2822), + [anon_sym_in] = ACTIONS(2822), + [anon_sym_BANGin] = ACTIONS(2822), + [anon_sym_match] = ACTIONS(2822), + [anon_sym_select] = ACTIONS(2822), + [anon_sym_lock] = ACTIONS(2822), + [anon_sym_rlock] = ACTIONS(2822), + [anon_sym_unsafe] = ACTIONS(2822), + [anon_sym_sql] = ACTIONS(2822), + [sym_int_literal] = ACTIONS(2822), + [sym_float_literal] = ACTIONS(2822), + [sym_rune_literal] = ACTIONS(2822), + [anon_sym_AT] = ACTIONS(2822), + [anon_sym_shared] = ACTIONS(2822), + [anon_sym_map_LBRACK] = ACTIONS(2822), + [anon_sym_chan] = ACTIONS(2822), + [anon_sym_thread] = ACTIONS(2822), + [anon_sym_atomic] = ACTIONS(2822), + [anon_sym_assert] = ACTIONS(2822), + [anon_sym_defer] = ACTIONS(2822), + [anon_sym_goto] = ACTIONS(2822), + [anon_sym_break] = ACTIONS(2822), + [anon_sym_continue] = ACTIONS(2822), + [anon_sym_return] = ACTIONS(2822), + [anon_sym_DOLLARfor] = ACTIONS(2822), + [anon_sym_for] = ACTIONS(2822), + [anon_sym_POUND] = ACTIONS(2822), + [anon_sym_asm] = ACTIONS(2822), + [anon_sym_AT_LBRACK] = ACTIONS(2822), + [sym___double_quote] = ACTIONS(2822), + [sym___single_quote] = ACTIONS(2822), + [sym___c_double_quote] = ACTIONS(2822), + [sym___c_single_quote] = ACTIONS(2822), + [sym___r_double_quote] = ACTIONS(2822), + [sym___r_single_quote] = ACTIONS(2822), + }, + [1096] = { + [ts_builtin_sym_end] = ACTIONS(2956), + [sym_identifier] = ACTIONS(2958), + [anon_sym_LF] = ACTIONS(2958), + [anon_sym_CR] = ACTIONS(2958), + [anon_sym_CR_LF] = ACTIONS(2958), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2958), + [anon_sym_as] = ACTIONS(2958), + [anon_sym_LBRACE] = ACTIONS(2958), + [anon_sym_COMMA] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2958), + [anon_sym_LPAREN] = ACTIONS(2958), + [anon_sym___global] = ACTIONS(2958), + [anon_sym_type] = ACTIONS(2958), + [anon_sym_PIPE] = ACTIONS(2958), + [anon_sym_fn] = ACTIONS(2958), + [anon_sym_PLUS] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2958), + [anon_sym_STAR] = ACTIONS(2958), + [anon_sym_SLASH] = ACTIONS(2958), + [anon_sym_PERCENT] = ACTIONS(2958), + [anon_sym_LT] = ACTIONS(2958), + [anon_sym_GT] = ACTIONS(2958), + [anon_sym_EQ_EQ] = ACTIONS(2958), + [anon_sym_BANG_EQ] = ACTIONS(2958), + [anon_sym_LT_EQ] = ACTIONS(2958), + [anon_sym_GT_EQ] = ACTIONS(2958), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_struct] = ACTIONS(2958), + [anon_sym_union] = ACTIONS(2958), + [anon_sym_pub] = ACTIONS(2958), + [anon_sym_mut] = ACTIONS(2958), + [anon_sym_enum] = ACTIONS(2958), + [anon_sym_interface] = ACTIONS(2958), + [anon_sym_PLUS_PLUS] = ACTIONS(2958), + [anon_sym_DASH_DASH] = ACTIONS(2958), + [anon_sym_QMARK] = ACTIONS(2958), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_go] = ACTIONS(2958), + [anon_sym_spawn] = ACTIONS(2958), + [anon_sym_json_DOTdecode] = ACTIONS(2958), + [anon_sym_LBRACK2] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_CARET] = ACTIONS(2958), + [anon_sym_AMP] = ACTIONS(2958), + [anon_sym_LT_DASH] = ACTIONS(2958), + [anon_sym_LT_LT] = ACTIONS(2958), + [anon_sym_GT_GT] = ACTIONS(2958), + [anon_sym_GT_GT_GT] = ACTIONS(2958), + [anon_sym_AMP_CARET] = ACTIONS(2958), + [anon_sym_AMP_AMP] = ACTIONS(2958), + [anon_sym_PIPE_PIPE] = ACTIONS(2958), + [anon_sym_or] = ACTIONS(2958), + [sym_none] = ACTIONS(2958), + [sym_true] = ACTIONS(2958), + [sym_false] = ACTIONS(2958), + [sym_nil] = ACTIONS(2958), + [anon_sym_QMARK_DOT] = ACTIONS(2958), + [anon_sym_POUND_LBRACK] = ACTIONS(2958), + [anon_sym_if] = ACTIONS(2958), + [anon_sym_DOLLARif] = ACTIONS(2958), + [anon_sym_is] = ACTIONS(2958), + [anon_sym_BANGis] = ACTIONS(2958), + [anon_sym_in] = ACTIONS(2958), + [anon_sym_BANGin] = ACTIONS(2958), + [anon_sym_match] = ACTIONS(2958), + [anon_sym_select] = ACTIONS(2958), + [anon_sym_lock] = ACTIONS(2958), + [anon_sym_rlock] = ACTIONS(2958), + [anon_sym_unsafe] = ACTIONS(2958), + [anon_sym_sql] = ACTIONS(2958), + [sym_int_literal] = ACTIONS(2958), + [sym_float_literal] = ACTIONS(2958), + [sym_rune_literal] = ACTIONS(2958), + [anon_sym_AT] = ACTIONS(2958), + [anon_sym_shared] = ACTIONS(2958), + [anon_sym_map_LBRACK] = ACTIONS(2958), + [anon_sym_chan] = ACTIONS(2958), + [anon_sym_thread] = ACTIONS(2958), + [anon_sym_atomic] = ACTIONS(2958), + [anon_sym_assert] = ACTIONS(2958), + [anon_sym_defer] = ACTIONS(2958), + [anon_sym_goto] = ACTIONS(2958), + [anon_sym_break] = ACTIONS(2958), + [anon_sym_continue] = ACTIONS(2958), + [anon_sym_return] = ACTIONS(2958), + [anon_sym_DOLLARfor] = ACTIONS(2958), + [anon_sym_for] = ACTIONS(2958), + [anon_sym_POUND] = ACTIONS(2958), + [anon_sym_asm] = ACTIONS(2958), + [anon_sym_AT_LBRACK] = ACTIONS(2958), + [sym___double_quote] = ACTIONS(2958), + [sym___single_quote] = ACTIONS(2958), + [sym___c_double_quote] = ACTIONS(2958), + [sym___c_single_quote] = ACTIONS(2958), + [sym___r_double_quote] = ACTIONS(2958), + [sym___r_single_quote] = ACTIONS(2958), + }, + [1097] = { + [ts_builtin_sym_end] = ACTIONS(2924), + [sym_identifier] = ACTIONS(2926), + [anon_sym_LF] = ACTIONS(2926), + [anon_sym_CR] = ACTIONS(2926), + [anon_sym_CR_LF] = ACTIONS(2926), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2926), + [anon_sym_as] = ACTIONS(2926), + [anon_sym_LBRACE] = ACTIONS(2926), + [anon_sym_COMMA] = ACTIONS(2926), + [anon_sym_const] = ACTIONS(2926), + [anon_sym_LPAREN] = ACTIONS(2926), + [anon_sym___global] = ACTIONS(2926), + [anon_sym_type] = ACTIONS(2926), + [anon_sym_PIPE] = ACTIONS(2926), + [anon_sym_fn] = ACTIONS(2926), + [anon_sym_PLUS] = ACTIONS(2926), + [anon_sym_DASH] = ACTIONS(2926), + [anon_sym_STAR] = ACTIONS(2926), + [anon_sym_SLASH] = ACTIONS(2926), + [anon_sym_PERCENT] = ACTIONS(2926), + [anon_sym_LT] = ACTIONS(2926), + [anon_sym_GT] = ACTIONS(2926), + [anon_sym_EQ_EQ] = ACTIONS(2926), + [anon_sym_BANG_EQ] = ACTIONS(2926), + [anon_sym_LT_EQ] = ACTIONS(2926), + [anon_sym_GT_EQ] = ACTIONS(2926), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_struct] = ACTIONS(2926), + [anon_sym_union] = ACTIONS(2926), + [anon_sym_pub] = ACTIONS(2926), + [anon_sym_mut] = ACTIONS(2926), + [anon_sym_enum] = ACTIONS(2926), + [anon_sym_interface] = ACTIONS(2926), + [anon_sym_PLUS_PLUS] = ACTIONS(2926), + [anon_sym_DASH_DASH] = ACTIONS(2926), + [anon_sym_QMARK] = ACTIONS(2926), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_go] = ACTIONS(2926), + [anon_sym_spawn] = ACTIONS(2926), + [anon_sym_json_DOTdecode] = ACTIONS(2926), + [anon_sym_LBRACK2] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2926), + [anon_sym_CARET] = ACTIONS(2926), + [anon_sym_AMP] = ACTIONS(2926), + [anon_sym_LT_DASH] = ACTIONS(2926), + [anon_sym_LT_LT] = ACTIONS(2926), + [anon_sym_GT_GT] = ACTIONS(2926), + [anon_sym_GT_GT_GT] = ACTIONS(2926), + [anon_sym_AMP_CARET] = ACTIONS(2926), + [anon_sym_AMP_AMP] = ACTIONS(2926), + [anon_sym_PIPE_PIPE] = ACTIONS(2926), + [anon_sym_or] = ACTIONS(2926), + [sym_none] = ACTIONS(2926), + [sym_true] = ACTIONS(2926), + [sym_false] = ACTIONS(2926), + [sym_nil] = ACTIONS(2926), + [anon_sym_QMARK_DOT] = ACTIONS(2926), + [anon_sym_POUND_LBRACK] = ACTIONS(2926), + [anon_sym_if] = ACTIONS(2926), + [anon_sym_DOLLARif] = ACTIONS(2926), + [anon_sym_is] = ACTIONS(2926), + [anon_sym_BANGis] = ACTIONS(2926), + [anon_sym_in] = ACTIONS(2926), + [anon_sym_BANGin] = ACTIONS(2926), + [anon_sym_match] = ACTIONS(2926), + [anon_sym_select] = ACTIONS(2926), + [anon_sym_lock] = ACTIONS(2926), + [anon_sym_rlock] = ACTIONS(2926), + [anon_sym_unsafe] = ACTIONS(2926), + [anon_sym_sql] = ACTIONS(2926), + [sym_int_literal] = ACTIONS(2926), + [sym_float_literal] = ACTIONS(2926), + [sym_rune_literal] = ACTIONS(2926), + [anon_sym_AT] = ACTIONS(2926), + [anon_sym_shared] = ACTIONS(2926), + [anon_sym_map_LBRACK] = ACTIONS(2926), + [anon_sym_chan] = ACTIONS(2926), + [anon_sym_thread] = ACTIONS(2926), + [anon_sym_atomic] = ACTIONS(2926), + [anon_sym_assert] = ACTIONS(2926), + [anon_sym_defer] = ACTIONS(2926), + [anon_sym_goto] = ACTIONS(2926), + [anon_sym_break] = ACTIONS(2926), + [anon_sym_continue] = ACTIONS(2926), + [anon_sym_return] = ACTIONS(2926), + [anon_sym_DOLLARfor] = ACTIONS(2926), + [anon_sym_for] = ACTIONS(2926), + [anon_sym_POUND] = ACTIONS(2926), + [anon_sym_asm] = ACTIONS(2926), + [anon_sym_AT_LBRACK] = ACTIONS(2926), + [sym___double_quote] = ACTIONS(2926), + [sym___single_quote] = ACTIONS(2926), + [sym___c_double_quote] = ACTIONS(2926), + [sym___c_single_quote] = ACTIONS(2926), + [sym___r_double_quote] = ACTIONS(2926), + [sym___r_single_quote] = ACTIONS(2926), + }, + [1098] = { + [ts_builtin_sym_end] = ACTIONS(2912), + [sym_identifier] = ACTIONS(2914), + [anon_sym_LF] = ACTIONS(2914), + [anon_sym_CR] = ACTIONS(2914), + [anon_sym_CR_LF] = ACTIONS(2914), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2914), + [anon_sym_as] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2914), + [anon_sym_COMMA] = ACTIONS(2914), + [anon_sym_const] = ACTIONS(2914), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym___global] = ACTIONS(2914), + [anon_sym_type] = ACTIONS(2914), + [anon_sym_PIPE] = ACTIONS(2914), + [anon_sym_fn] = ACTIONS(2914), + [anon_sym_PLUS] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_SLASH] = ACTIONS(2914), + [anon_sym_PERCENT] = ACTIONS(2914), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_EQ_EQ] = ACTIONS(2914), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_EQ] = ACTIONS(2914), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_struct] = ACTIONS(2914), + [anon_sym_union] = ACTIONS(2914), + [anon_sym_pub] = ACTIONS(2914), + [anon_sym_mut] = ACTIONS(2914), + [anon_sym_enum] = ACTIONS(2914), + [anon_sym_interface] = ACTIONS(2914), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_QMARK] = ACTIONS(2914), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_go] = ACTIONS(2914), + [anon_sym_spawn] = ACTIONS(2914), + [anon_sym_json_DOTdecode] = ACTIONS(2914), + [anon_sym_LBRACK2] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2914), + [anon_sym_CARET] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2914), + [anon_sym_LT_DASH] = ACTIONS(2914), + [anon_sym_LT_LT] = ACTIONS(2914), + [anon_sym_GT_GT] = ACTIONS(2914), + [anon_sym_GT_GT_GT] = ACTIONS(2914), + [anon_sym_AMP_CARET] = ACTIONS(2914), + [anon_sym_AMP_AMP] = ACTIONS(2914), + [anon_sym_PIPE_PIPE] = ACTIONS(2914), + [anon_sym_or] = ACTIONS(2914), + [sym_none] = ACTIONS(2914), + [sym_true] = ACTIONS(2914), + [sym_false] = ACTIONS(2914), + [sym_nil] = ACTIONS(2914), + [anon_sym_QMARK_DOT] = ACTIONS(2914), + [anon_sym_POUND_LBRACK] = ACTIONS(2914), + [anon_sym_if] = ACTIONS(2914), + [anon_sym_DOLLARif] = ACTIONS(2914), + [anon_sym_is] = ACTIONS(2914), + [anon_sym_BANGis] = ACTIONS(2914), + [anon_sym_in] = ACTIONS(2914), + [anon_sym_BANGin] = ACTIONS(2914), + [anon_sym_match] = ACTIONS(2914), + [anon_sym_select] = ACTIONS(2914), + [anon_sym_lock] = ACTIONS(2914), + [anon_sym_rlock] = ACTIONS(2914), + [anon_sym_unsafe] = ACTIONS(2914), + [anon_sym_sql] = ACTIONS(2914), + [sym_int_literal] = ACTIONS(2914), + [sym_float_literal] = ACTIONS(2914), + [sym_rune_literal] = ACTIONS(2914), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_shared] = ACTIONS(2914), + [anon_sym_map_LBRACK] = ACTIONS(2914), + [anon_sym_chan] = ACTIONS(2914), + [anon_sym_thread] = ACTIONS(2914), + [anon_sym_atomic] = ACTIONS(2914), + [anon_sym_assert] = ACTIONS(2914), + [anon_sym_defer] = ACTIONS(2914), + [anon_sym_goto] = ACTIONS(2914), + [anon_sym_break] = ACTIONS(2914), + [anon_sym_continue] = ACTIONS(2914), + [anon_sym_return] = ACTIONS(2914), + [anon_sym_DOLLARfor] = ACTIONS(2914), + [anon_sym_for] = ACTIONS(2914), + [anon_sym_POUND] = ACTIONS(2914), + [anon_sym_asm] = ACTIONS(2914), + [anon_sym_AT_LBRACK] = ACTIONS(2914), + [sym___double_quote] = ACTIONS(2914), + [sym___single_quote] = ACTIONS(2914), + [sym___c_double_quote] = ACTIONS(2914), + [sym___c_single_quote] = ACTIONS(2914), + [sym___r_double_quote] = ACTIONS(2914), + [sym___r_single_quote] = ACTIONS(2914), }, [1099] = { - [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), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2951), - [anon_sym_as] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_COMMA] = ACTIONS(2949), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym___global] = ACTIONS(2949), - [anon_sym_type] = ACTIONS(2949), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_fn] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_PERCENT] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_GT] = ACTIONS(2951), - [anon_sym_EQ_EQ] = ACTIONS(2951), - [anon_sym_BANG_EQ] = ACTIONS(2951), - [anon_sym_LT_EQ] = ACTIONS(2951), - [anon_sym_GT_EQ] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2954), - [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(2951), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_QMARK] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_go] = ACTIONS(2949), - [anon_sym_spawn] = ACTIONS(2949), - [anon_sym_json_DOTdecode] = ACTIONS(2949), - [anon_sym_LBRACK2] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2949), - [anon_sym_CARET] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_LT_DASH] = ACTIONS(2949), - [anon_sym_LT_LT] = ACTIONS(2951), - [anon_sym_GT_GT] = ACTIONS(2951), - [anon_sym_GT_GT_GT] = ACTIONS(2951), - [anon_sym_AMP_CARET] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2951), - [anon_sym_PIPE_PIPE] = ACTIONS(2951), - [anon_sym_or] = ACTIONS(2951), - [sym_none] = ACTIONS(2949), - [sym_true] = ACTIONS(2949), - [sym_false] = ACTIONS(2949), - [sym_nil] = ACTIONS(2949), - [anon_sym_QMARK_DOT] = ACTIONS(2951), - [anon_sym_POUND_LBRACK] = ACTIONS(2951), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2949), - [anon_sym_is] = ACTIONS(2951), - [anon_sym_BANGis] = ACTIONS(2951), - [anon_sym_in] = ACTIONS(2951), - [anon_sym_BANGin] = ACTIONS(2951), - [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_AT] = ACTIONS(2949), - [anon_sym_shared] = ACTIONS(2949), - [anon_sym_map_LBRACK] = ACTIONS(2949), - [anon_sym_chan] = ACTIONS(2949), - [anon_sym_thread] = ACTIONS(2949), - [anon_sym_atomic] = ACTIONS(2949), - [anon_sym_assert] = ACTIONS(2949), - [anon_sym_defer] = ACTIONS(2949), - [anon_sym_goto] = ACTIONS(2949), - [anon_sym_break] = ACTIONS(2949), - [anon_sym_continue] = ACTIONS(2949), - [anon_sym_return] = ACTIONS(2949), - [anon_sym_DOLLARfor] = ACTIONS(2949), - [anon_sym_for] = ACTIONS(2949), - [anon_sym_POUND] = ACTIONS(2949), - [anon_sym_asm] = ACTIONS(2949), - [anon_sym_AT_LBRACK] = ACTIONS(2949), - [sym___double_quote] = ACTIONS(2949), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2949), - [sym___c_single_quote] = ACTIONS(2949), - [sym___r_double_quote] = ACTIONS(2949), - [sym___r_single_quote] = ACTIONS(2949), + [ts_builtin_sym_end] = ACTIONS(2908), + [sym_identifier] = ACTIONS(2910), + [anon_sym_LF] = ACTIONS(2910), + [anon_sym_CR] = ACTIONS(2910), + [anon_sym_CR_LF] = ACTIONS(2910), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2910), + [anon_sym_as] = ACTIONS(2910), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_COMMA] = ACTIONS(2910), + [anon_sym_const] = ACTIONS(2910), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym___global] = ACTIONS(2910), + [anon_sym_type] = ACTIONS(2910), + [anon_sym_PIPE] = ACTIONS(2910), + [anon_sym_fn] = ACTIONS(2910), + [anon_sym_PLUS] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2910), + [anon_sym_SLASH] = ACTIONS(2910), + [anon_sym_PERCENT] = ACTIONS(2910), + [anon_sym_LT] = ACTIONS(2910), + [anon_sym_GT] = ACTIONS(2910), + [anon_sym_EQ_EQ] = ACTIONS(2910), + [anon_sym_BANG_EQ] = ACTIONS(2910), + [anon_sym_LT_EQ] = ACTIONS(2910), + [anon_sym_GT_EQ] = ACTIONS(2910), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_struct] = ACTIONS(2910), + [anon_sym_union] = ACTIONS(2910), + [anon_sym_pub] = ACTIONS(2910), + [anon_sym_mut] = ACTIONS(2910), + [anon_sym_enum] = ACTIONS(2910), + [anon_sym_interface] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2910), + [anon_sym_DASH_DASH] = ACTIONS(2910), + [anon_sym_QMARK] = ACTIONS(2910), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_go] = ACTIONS(2910), + [anon_sym_spawn] = ACTIONS(2910), + [anon_sym_json_DOTdecode] = ACTIONS(2910), + [anon_sym_LBRACK2] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_CARET] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_LT_DASH] = ACTIONS(2910), + [anon_sym_LT_LT] = ACTIONS(2910), + [anon_sym_GT_GT] = ACTIONS(2910), + [anon_sym_GT_GT_GT] = ACTIONS(2910), + [anon_sym_AMP_CARET] = ACTIONS(2910), + [anon_sym_AMP_AMP] = ACTIONS(2910), + [anon_sym_PIPE_PIPE] = ACTIONS(2910), + [anon_sym_or] = ACTIONS(2910), + [sym_none] = ACTIONS(2910), + [sym_true] = ACTIONS(2910), + [sym_false] = ACTIONS(2910), + [sym_nil] = ACTIONS(2910), + [anon_sym_QMARK_DOT] = ACTIONS(2910), + [anon_sym_POUND_LBRACK] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_DOLLARif] = ACTIONS(2910), + [anon_sym_is] = ACTIONS(2910), + [anon_sym_BANGis] = ACTIONS(2910), + [anon_sym_in] = ACTIONS(2910), + [anon_sym_BANGin] = ACTIONS(2910), + [anon_sym_match] = ACTIONS(2910), + [anon_sym_select] = ACTIONS(2910), + [anon_sym_lock] = ACTIONS(2910), + [anon_sym_rlock] = ACTIONS(2910), + [anon_sym_unsafe] = ACTIONS(2910), + [anon_sym_sql] = ACTIONS(2910), + [sym_int_literal] = ACTIONS(2910), + [sym_float_literal] = ACTIONS(2910), + [sym_rune_literal] = ACTIONS(2910), + [anon_sym_AT] = ACTIONS(2910), + [anon_sym_shared] = ACTIONS(2910), + [anon_sym_map_LBRACK] = ACTIONS(2910), + [anon_sym_chan] = ACTIONS(2910), + [anon_sym_thread] = ACTIONS(2910), + [anon_sym_atomic] = ACTIONS(2910), + [anon_sym_assert] = ACTIONS(2910), + [anon_sym_defer] = ACTIONS(2910), + [anon_sym_goto] = ACTIONS(2910), + [anon_sym_break] = ACTIONS(2910), + [anon_sym_continue] = ACTIONS(2910), + [anon_sym_return] = ACTIONS(2910), + [anon_sym_DOLLARfor] = ACTIONS(2910), + [anon_sym_for] = ACTIONS(2910), + [anon_sym_POUND] = ACTIONS(2910), + [anon_sym_asm] = ACTIONS(2910), + [anon_sym_AT_LBRACK] = ACTIONS(2910), + [sym___double_quote] = ACTIONS(2910), + [sym___single_quote] = ACTIONS(2910), + [sym___c_double_quote] = ACTIONS(2910), + [sym___c_single_quote] = ACTIONS(2910), + [sym___r_double_quote] = ACTIONS(2910), + [sym___r_single_quote] = ACTIONS(2910), }, [1100] = { - [ts_builtin_sym_end] = ACTIONS(3171), - [sym_identifier] = ACTIONS(3173), - [anon_sym_LF] = ACTIONS(3173), - [anon_sym_CR] = ACTIONS(3173), - [anon_sym_CR_LF] = ACTIONS(3173), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_as] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3173), - [anon_sym_const] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym___global] = ACTIONS(3173), - [anon_sym_type] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3173), - [anon_sym_fn] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_SLASH] = ACTIONS(3173), - [anon_sym_PERCENT] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3173), - [anon_sym_GT] = ACTIONS(3173), - [anon_sym_EQ_EQ] = ACTIONS(3173), - [anon_sym_BANG_EQ] = ACTIONS(3173), - [anon_sym_LT_EQ] = ACTIONS(3173), - [anon_sym_GT_EQ] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3173), - [anon_sym_union] = ACTIONS(3173), - [anon_sym_pub] = ACTIONS(3173), - [anon_sym_mut] = ACTIONS(3173), - [anon_sym_enum] = ACTIONS(3173), - [anon_sym_interface] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_go] = ACTIONS(3173), - [anon_sym_spawn] = ACTIONS(3173), - [anon_sym_json_DOTdecode] = ACTIONS(3173), - [anon_sym_LBRACK2] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_CARET] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_LT_DASH] = ACTIONS(3173), - [anon_sym_LT_LT] = ACTIONS(3173), - [anon_sym_GT_GT] = ACTIONS(3173), - [anon_sym_GT_GT_GT] = ACTIONS(3173), - [anon_sym_AMP_CARET] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_PIPE_PIPE] = ACTIONS(3173), - [anon_sym_or] = ACTIONS(3173), - [sym_none] = ACTIONS(3173), - [sym_true] = ACTIONS(3173), - [sym_false] = ACTIONS(3173), - [sym_nil] = ACTIONS(3173), - [anon_sym_QMARK_DOT] = ACTIONS(3173), - [anon_sym_POUND_LBRACK] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_DOLLARif] = ACTIONS(3173), - [anon_sym_is] = ACTIONS(3173), - [anon_sym_BANGis] = ACTIONS(3173), - [anon_sym_in] = ACTIONS(3173), - [anon_sym_BANGin] = ACTIONS(3173), - [anon_sym_match] = ACTIONS(3173), - [anon_sym_select] = ACTIONS(3173), - [anon_sym_lock] = ACTIONS(3173), - [anon_sym_rlock] = ACTIONS(3173), - [anon_sym_unsafe] = ACTIONS(3173), - [anon_sym_sql] = ACTIONS(3173), - [sym_int_literal] = ACTIONS(3173), - [sym_float_literal] = ACTIONS(3173), - [sym_rune_literal] = ACTIONS(3173), - [anon_sym_AT] = ACTIONS(3173), - [anon_sym_shared] = ACTIONS(3173), - [anon_sym_map_LBRACK] = ACTIONS(3173), - [anon_sym_chan] = ACTIONS(3173), - [anon_sym_thread] = ACTIONS(3173), - [anon_sym_atomic] = ACTIONS(3173), - [anon_sym_assert] = ACTIONS(3173), - [anon_sym_defer] = ACTIONS(3173), - [anon_sym_goto] = ACTIONS(3173), - [anon_sym_break] = ACTIONS(3173), - [anon_sym_continue] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_DOLLARfor] = ACTIONS(3173), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_POUND] = ACTIONS(3173), - [anon_sym_asm] = ACTIONS(3173), - [anon_sym_AT_LBRACK] = ACTIONS(3173), - [sym___double_quote] = ACTIONS(3173), - [sym___single_quote] = ACTIONS(3173), - [sym___c_double_quote] = ACTIONS(3173), - [sym___c_single_quote] = ACTIONS(3173), - [sym___r_double_quote] = ACTIONS(3173), - [sym___r_single_quote] = ACTIONS(3173), + [ts_builtin_sym_end] = ACTIONS(2892), + [sym_identifier] = ACTIONS(2894), + [anon_sym_LF] = ACTIONS(2894), + [anon_sym_CR] = ACTIONS(2894), + [anon_sym_CR_LF] = ACTIONS(2894), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2894), + [anon_sym_as] = ACTIONS(2894), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_COMMA] = ACTIONS(2894), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(2894), + [anon_sym___global] = ACTIONS(2894), + [anon_sym_type] = ACTIONS(2894), + [anon_sym_PIPE] = ACTIONS(2894), + [anon_sym_fn] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2894), + [anon_sym_SLASH] = ACTIONS(2894), + [anon_sym_PERCENT] = ACTIONS(2894), + [anon_sym_LT] = ACTIONS(2894), + [anon_sym_GT] = ACTIONS(2894), + [anon_sym_EQ_EQ] = ACTIONS(2894), + [anon_sym_BANG_EQ] = ACTIONS(2894), + [anon_sym_LT_EQ] = ACTIONS(2894), + [anon_sym_GT_EQ] = ACTIONS(2894), + [anon_sym_LBRACK] = ACTIONS(2892), + [anon_sym_struct] = ACTIONS(2894), + [anon_sym_union] = ACTIONS(2894), + [anon_sym_pub] = ACTIONS(2894), + [anon_sym_mut] = ACTIONS(2894), + [anon_sym_enum] = ACTIONS(2894), + [anon_sym_interface] = ACTIONS(2894), + [anon_sym_PLUS_PLUS] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2894), + [anon_sym_QMARK] = ACTIONS(2894), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_go] = ACTIONS(2894), + [anon_sym_spawn] = ACTIONS(2894), + [anon_sym_json_DOTdecode] = ACTIONS(2894), + [anon_sym_LBRACK2] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_CARET] = ACTIONS(2894), + [anon_sym_AMP] = ACTIONS(2894), + [anon_sym_LT_DASH] = ACTIONS(2894), + [anon_sym_LT_LT] = ACTIONS(2894), + [anon_sym_GT_GT] = ACTIONS(2894), + [anon_sym_GT_GT_GT] = ACTIONS(2894), + [anon_sym_AMP_CARET] = ACTIONS(2894), + [anon_sym_AMP_AMP] = ACTIONS(2894), + [anon_sym_PIPE_PIPE] = ACTIONS(2894), + [anon_sym_or] = ACTIONS(2894), + [sym_none] = ACTIONS(2894), + [sym_true] = ACTIONS(2894), + [sym_false] = ACTIONS(2894), + [sym_nil] = ACTIONS(2894), + [anon_sym_QMARK_DOT] = ACTIONS(2894), + [anon_sym_POUND_LBRACK] = ACTIONS(2894), + [anon_sym_if] = ACTIONS(2894), + [anon_sym_DOLLARif] = ACTIONS(2894), + [anon_sym_is] = ACTIONS(2894), + [anon_sym_BANGis] = ACTIONS(2894), + [anon_sym_in] = ACTIONS(2894), + [anon_sym_BANGin] = ACTIONS(2894), + [anon_sym_match] = ACTIONS(2894), + [anon_sym_select] = ACTIONS(2894), + [anon_sym_lock] = ACTIONS(2894), + [anon_sym_rlock] = ACTIONS(2894), + [anon_sym_unsafe] = ACTIONS(2894), + [anon_sym_sql] = ACTIONS(2894), + [sym_int_literal] = ACTIONS(2894), + [sym_float_literal] = ACTIONS(2894), + [sym_rune_literal] = ACTIONS(2894), + [anon_sym_AT] = ACTIONS(2894), + [anon_sym_shared] = ACTIONS(2894), + [anon_sym_map_LBRACK] = ACTIONS(2894), + [anon_sym_chan] = ACTIONS(2894), + [anon_sym_thread] = ACTIONS(2894), + [anon_sym_atomic] = ACTIONS(2894), + [anon_sym_assert] = ACTIONS(2894), + [anon_sym_defer] = ACTIONS(2894), + [anon_sym_goto] = ACTIONS(2894), + [anon_sym_break] = ACTIONS(2894), + [anon_sym_continue] = ACTIONS(2894), + [anon_sym_return] = ACTIONS(2894), + [anon_sym_DOLLARfor] = ACTIONS(2894), + [anon_sym_for] = ACTIONS(2894), + [anon_sym_POUND] = ACTIONS(2894), + [anon_sym_asm] = ACTIONS(2894), + [anon_sym_AT_LBRACK] = ACTIONS(2894), + [sym___double_quote] = ACTIONS(2894), + [sym___single_quote] = ACTIONS(2894), + [sym___c_double_quote] = ACTIONS(2894), + [sym___c_single_quote] = ACTIONS(2894), + [sym___r_double_quote] = ACTIONS(2894), + [sym___r_single_quote] = ACTIONS(2894), }, [1101] = { - [ts_builtin_sym_end] = ACTIONS(2965), - [sym_identifier] = ACTIONS(2967), - [anon_sym_LF] = ACTIONS(2967), - [anon_sym_CR] = ACTIONS(2967), - [anon_sym_CR_LF] = ACTIONS(2967), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2967), - [anon_sym_as] = ACTIONS(2967), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_COMMA] = ACTIONS(2766), - [anon_sym_const] = ACTIONS(2967), - [anon_sym_LPAREN] = ACTIONS(2967), - [anon_sym___global] = ACTIONS(2967), - [anon_sym_type] = ACTIONS(2967), - [anon_sym_PIPE] = ACTIONS(2967), - [anon_sym_fn] = ACTIONS(2967), - [anon_sym_PLUS] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2967), - [anon_sym_STAR] = ACTIONS(2967), - [anon_sym_SLASH] = ACTIONS(2967), - [anon_sym_PERCENT] = ACTIONS(2967), - [anon_sym_LT] = ACTIONS(2967), - [anon_sym_GT] = ACTIONS(2967), - [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(2965), - [anon_sym_struct] = ACTIONS(2967), - [anon_sym_union] = ACTIONS(2967), - [anon_sym_pub] = ACTIONS(2967), - [anon_sym_mut] = ACTIONS(2967), - [anon_sym_enum] = ACTIONS(2967), - [anon_sym_interface] = ACTIONS(2967), - [anon_sym_PLUS_PLUS] = ACTIONS(2967), - [anon_sym_DASH_DASH] = ACTIONS(2967), - [anon_sym_QMARK] = ACTIONS(2967), - [anon_sym_BANG] = ACTIONS(2967), - [anon_sym_go] = ACTIONS(2967), - [anon_sym_spawn] = ACTIONS(2967), - [anon_sym_json_DOTdecode] = ACTIONS(2967), - [anon_sym_LBRACK2] = ACTIONS(2967), - [anon_sym_TILDE] = ACTIONS(2967), - [anon_sym_CARET] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_LT_DASH] = ACTIONS(2967), - [anon_sym_LT_LT] = ACTIONS(2967), - [anon_sym_GT_GT] = ACTIONS(2967), - [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(2967), - [sym_none] = ACTIONS(2967), - [sym_true] = ACTIONS(2967), - [sym_false] = ACTIONS(2967), - [sym_nil] = ACTIONS(2967), - [anon_sym_QMARK_DOT] = ACTIONS(2967), - [anon_sym_POUND_LBRACK] = ACTIONS(2967), - [anon_sym_if] = ACTIONS(2967), - [anon_sym_DOLLARif] = ACTIONS(2967), - [anon_sym_is] = ACTIONS(2967), - [anon_sym_BANGis] = ACTIONS(2967), - [anon_sym_in] = ACTIONS(2967), - [anon_sym_BANGin] = ACTIONS(2967), - [anon_sym_match] = ACTIONS(2967), - [anon_sym_select] = ACTIONS(2967), - [anon_sym_lock] = ACTIONS(2967), - [anon_sym_rlock] = ACTIONS(2967), - [anon_sym_unsafe] = ACTIONS(2967), - [anon_sym_sql] = ACTIONS(2967), - [sym_int_literal] = ACTIONS(2967), - [sym_float_literal] = ACTIONS(2967), - [sym_rune_literal] = ACTIONS(2967), - [anon_sym_AT] = ACTIONS(2967), - [anon_sym_shared] = ACTIONS(2967), - [anon_sym_map_LBRACK] = ACTIONS(2967), - [anon_sym_chan] = ACTIONS(2967), - [anon_sym_thread] = ACTIONS(2967), - [anon_sym_atomic] = ACTIONS(2967), - [anon_sym_assert] = ACTIONS(2967), - [anon_sym_defer] = ACTIONS(2967), - [anon_sym_goto] = ACTIONS(2967), - [anon_sym_break] = ACTIONS(2967), - [anon_sym_continue] = ACTIONS(2967), - [anon_sym_return] = ACTIONS(2967), - [anon_sym_DOLLARfor] = ACTIONS(2967), - [anon_sym_for] = ACTIONS(2967), - [anon_sym_POUND] = ACTIONS(2967), - [anon_sym_asm] = ACTIONS(2967), - [anon_sym_AT_LBRACK] = ACTIONS(2967), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2967), - [sym___c_double_quote] = ACTIONS(2967), - [sym___c_single_quote] = ACTIONS(2967), - [sym___r_double_quote] = ACTIONS(2967), - [sym___r_single_quote] = ACTIONS(2967), + [ts_builtin_sym_end] = ACTIONS(2836), + [sym_identifier] = ACTIONS(2838), + [anon_sym_LF] = ACTIONS(2838), + [anon_sym_CR] = ACTIONS(2838), + [anon_sym_CR_LF] = ACTIONS(2838), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2838), + [anon_sym_as] = ACTIONS(2838), + [anon_sym_LBRACE] = ACTIONS(2838), + [anon_sym_COMMA] = ACTIONS(2838), + [anon_sym_const] = ACTIONS(2838), + [anon_sym_LPAREN] = ACTIONS(2838), + [anon_sym___global] = ACTIONS(2838), + [anon_sym_type] = ACTIONS(2838), + [anon_sym_PIPE] = ACTIONS(2838), + [anon_sym_fn] = ACTIONS(2838), + [anon_sym_PLUS] = ACTIONS(2838), + [anon_sym_DASH] = ACTIONS(2838), + [anon_sym_STAR] = ACTIONS(2838), + [anon_sym_SLASH] = ACTIONS(2838), + [anon_sym_PERCENT] = ACTIONS(2838), + [anon_sym_LT] = ACTIONS(2838), + [anon_sym_GT] = ACTIONS(2838), + [anon_sym_EQ_EQ] = ACTIONS(2838), + [anon_sym_BANG_EQ] = ACTIONS(2838), + [anon_sym_LT_EQ] = ACTIONS(2838), + [anon_sym_GT_EQ] = ACTIONS(2838), + [anon_sym_LBRACK] = ACTIONS(2836), + [anon_sym_struct] = ACTIONS(2838), + [anon_sym_union] = ACTIONS(2838), + [anon_sym_pub] = ACTIONS(2838), + [anon_sym_mut] = ACTIONS(2838), + [anon_sym_enum] = ACTIONS(2838), + [anon_sym_interface] = ACTIONS(2838), + [anon_sym_PLUS_PLUS] = ACTIONS(2838), + [anon_sym_DASH_DASH] = ACTIONS(2838), + [anon_sym_QMARK] = ACTIONS(2838), + [anon_sym_BANG] = ACTIONS(2838), + [anon_sym_go] = ACTIONS(2838), + [anon_sym_spawn] = ACTIONS(2838), + [anon_sym_json_DOTdecode] = ACTIONS(2838), + [anon_sym_LBRACK2] = ACTIONS(2838), + [anon_sym_TILDE] = ACTIONS(2838), + [anon_sym_CARET] = ACTIONS(2838), + [anon_sym_AMP] = ACTIONS(2838), + [anon_sym_LT_DASH] = ACTIONS(2838), + [anon_sym_LT_LT] = ACTIONS(2838), + [anon_sym_GT_GT] = ACTIONS(2838), + [anon_sym_GT_GT_GT] = ACTIONS(2838), + [anon_sym_AMP_CARET] = ACTIONS(2838), + [anon_sym_AMP_AMP] = ACTIONS(2838), + [anon_sym_PIPE_PIPE] = ACTIONS(2838), + [anon_sym_or] = ACTIONS(2838), + [sym_none] = ACTIONS(2838), + [sym_true] = ACTIONS(2838), + [sym_false] = ACTIONS(2838), + [sym_nil] = ACTIONS(2838), + [anon_sym_QMARK_DOT] = ACTIONS(2838), + [anon_sym_POUND_LBRACK] = ACTIONS(2838), + [anon_sym_if] = ACTIONS(2838), + [anon_sym_DOLLARif] = ACTIONS(2838), + [anon_sym_is] = ACTIONS(2838), + [anon_sym_BANGis] = ACTIONS(2838), + [anon_sym_in] = ACTIONS(2838), + [anon_sym_BANGin] = ACTIONS(2838), + [anon_sym_match] = ACTIONS(2838), + [anon_sym_select] = ACTIONS(2838), + [anon_sym_lock] = ACTIONS(2838), + [anon_sym_rlock] = ACTIONS(2838), + [anon_sym_unsafe] = ACTIONS(2838), + [anon_sym_sql] = ACTIONS(2838), + [sym_int_literal] = ACTIONS(2838), + [sym_float_literal] = ACTIONS(2838), + [sym_rune_literal] = ACTIONS(2838), + [anon_sym_AT] = ACTIONS(2838), + [anon_sym_shared] = ACTIONS(2838), + [anon_sym_map_LBRACK] = ACTIONS(2838), + [anon_sym_chan] = ACTIONS(2838), + [anon_sym_thread] = ACTIONS(2838), + [anon_sym_atomic] = ACTIONS(2838), + [anon_sym_assert] = ACTIONS(2838), + [anon_sym_defer] = ACTIONS(2838), + [anon_sym_goto] = ACTIONS(2838), + [anon_sym_break] = ACTIONS(2838), + [anon_sym_continue] = ACTIONS(2838), + [anon_sym_return] = ACTIONS(2838), + [anon_sym_DOLLARfor] = ACTIONS(2838), + [anon_sym_for] = ACTIONS(2838), + [anon_sym_POUND] = ACTIONS(2838), + [anon_sym_asm] = ACTIONS(2838), + [anon_sym_AT_LBRACK] = ACTIONS(2838), + [sym___double_quote] = ACTIONS(2838), + [sym___single_quote] = ACTIONS(2838), + [sym___c_double_quote] = ACTIONS(2838), + [sym___c_single_quote] = ACTIONS(2838), + [sym___r_double_quote] = ACTIONS(2838), + [sym___r_single_quote] = ACTIONS(2838), }, [1102] = { - [ts_builtin_sym_end] = ACTIONS(3119), - [sym_identifier] = ACTIONS(3121), - [anon_sym_LF] = ACTIONS(3121), - [anon_sym_CR] = ACTIONS(3121), - [anon_sym_CR_LF] = ACTIONS(3121), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3121), - [anon_sym_as] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(3121), - [anon_sym_COMMA] = ACTIONS(3121), - [anon_sym_const] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym___global] = ACTIONS(3121), - [anon_sym_type] = ACTIONS(3121), - [anon_sym_PIPE] = ACTIONS(3121), - [anon_sym_fn] = ACTIONS(3121), - [anon_sym_PLUS] = ACTIONS(3121), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(3121), - [anon_sym_SLASH] = ACTIONS(3121), - [anon_sym_PERCENT] = ACTIONS(3121), - [anon_sym_LT] = ACTIONS(3121), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_LT_EQ] = ACTIONS(3121), - [anon_sym_GT_EQ] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_pub] = ACTIONS(3121), - [anon_sym_mut] = ACTIONS(3121), - [anon_sym_enum] = ACTIONS(3121), - [anon_sym_interface] = ACTIONS(3121), - [anon_sym_PLUS_PLUS] = ACTIONS(3121), - [anon_sym_DASH_DASH] = ACTIONS(3121), - [anon_sym_QMARK] = ACTIONS(3121), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_go] = ACTIONS(3121), - [anon_sym_spawn] = ACTIONS(3121), - [anon_sym_json_DOTdecode] = ACTIONS(3121), - [anon_sym_LBRACK2] = ACTIONS(3121), - [anon_sym_TILDE] = ACTIONS(3121), - [anon_sym_CARET] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3121), - [anon_sym_LT_DASH] = ACTIONS(3121), - [anon_sym_LT_LT] = ACTIONS(3121), - [anon_sym_GT_GT] = ACTIONS(3121), - [anon_sym_GT_GT_GT] = ACTIONS(3121), - [anon_sym_AMP_CARET] = ACTIONS(3121), - [anon_sym_AMP_AMP] = ACTIONS(3121), - [anon_sym_PIPE_PIPE] = ACTIONS(3121), - [anon_sym_or] = ACTIONS(3121), - [sym_none] = ACTIONS(3121), - [sym_true] = ACTIONS(3121), - [sym_false] = ACTIONS(3121), - [sym_nil] = ACTIONS(3121), - [anon_sym_QMARK_DOT] = ACTIONS(3121), - [anon_sym_POUND_LBRACK] = ACTIONS(3121), - [anon_sym_if] = ACTIONS(3121), - [anon_sym_DOLLARif] = ACTIONS(3121), - [anon_sym_is] = ACTIONS(3121), - [anon_sym_BANGis] = ACTIONS(3121), - [anon_sym_in] = ACTIONS(3121), - [anon_sym_BANGin] = ACTIONS(3121), - [anon_sym_match] = ACTIONS(3121), - [anon_sym_select] = ACTIONS(3121), - [anon_sym_lock] = ACTIONS(3121), - [anon_sym_rlock] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(3121), - [anon_sym_sql] = ACTIONS(3121), - [sym_int_literal] = ACTIONS(3121), - [sym_float_literal] = ACTIONS(3121), - [sym_rune_literal] = ACTIONS(3121), - [anon_sym_AT] = ACTIONS(3121), - [anon_sym_shared] = ACTIONS(3121), - [anon_sym_map_LBRACK] = ACTIONS(3121), - [anon_sym_chan] = ACTIONS(3121), - [anon_sym_thread] = ACTIONS(3121), - [anon_sym_atomic] = ACTIONS(3121), - [anon_sym_assert] = ACTIONS(3121), - [anon_sym_defer] = ACTIONS(3121), - [anon_sym_goto] = ACTIONS(3121), - [anon_sym_break] = ACTIONS(3121), - [anon_sym_continue] = ACTIONS(3121), - [anon_sym_return] = ACTIONS(3121), - [anon_sym_DOLLARfor] = ACTIONS(3121), - [anon_sym_for] = ACTIONS(3121), - [anon_sym_POUND] = ACTIONS(3121), - [anon_sym_asm] = ACTIONS(3121), - [anon_sym_AT_LBRACK] = ACTIONS(3121), - [sym___double_quote] = ACTIONS(3121), - [sym___single_quote] = ACTIONS(3121), - [sym___c_double_quote] = ACTIONS(3121), - [sym___c_single_quote] = ACTIONS(3121), - [sym___r_double_quote] = ACTIONS(3121), - [sym___r_single_quote] = ACTIONS(3121), + [ts_builtin_sym_end] = ACTIONS(2884), + [sym_identifier] = ACTIONS(2886), + [anon_sym_LF] = ACTIONS(2886), + [anon_sym_CR] = ACTIONS(2886), + [anon_sym_CR_LF] = ACTIONS(2886), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2886), + [anon_sym_as] = ACTIONS(2886), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_COMMA] = ACTIONS(2886), + [anon_sym_const] = ACTIONS(2886), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym___global] = ACTIONS(2886), + [anon_sym_type] = ACTIONS(2886), + [anon_sym_PIPE] = ACTIONS(2886), + [anon_sym_fn] = ACTIONS(2886), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(2886), + [anon_sym_SLASH] = ACTIONS(2886), + [anon_sym_PERCENT] = ACTIONS(2886), + [anon_sym_LT] = ACTIONS(2886), + [anon_sym_GT] = ACTIONS(2886), + [anon_sym_EQ_EQ] = ACTIONS(2886), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_LT_EQ] = ACTIONS(2886), + [anon_sym_GT_EQ] = ACTIONS(2886), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_struct] = ACTIONS(2886), + [anon_sym_union] = ACTIONS(2886), + [anon_sym_pub] = ACTIONS(2886), + [anon_sym_mut] = ACTIONS(2886), + [anon_sym_enum] = ACTIONS(2886), + [anon_sym_interface] = ACTIONS(2886), + [anon_sym_PLUS_PLUS] = ACTIONS(2886), + [anon_sym_DASH_DASH] = ACTIONS(2886), + [anon_sym_QMARK] = ACTIONS(2886), + [anon_sym_BANG] = ACTIONS(2886), + [anon_sym_go] = ACTIONS(2886), + [anon_sym_spawn] = ACTIONS(2886), + [anon_sym_json_DOTdecode] = ACTIONS(2886), + [anon_sym_LBRACK2] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2886), + [anon_sym_CARET] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_LT_DASH] = ACTIONS(2886), + [anon_sym_LT_LT] = ACTIONS(2886), + [anon_sym_GT_GT] = ACTIONS(2886), + [anon_sym_GT_GT_GT] = ACTIONS(2886), + [anon_sym_AMP_CARET] = ACTIONS(2886), + [anon_sym_AMP_AMP] = ACTIONS(2886), + [anon_sym_PIPE_PIPE] = ACTIONS(2886), + [anon_sym_or] = ACTIONS(2886), + [sym_none] = ACTIONS(2886), + [sym_true] = ACTIONS(2886), + [sym_false] = ACTIONS(2886), + [sym_nil] = ACTIONS(2886), + [anon_sym_QMARK_DOT] = ACTIONS(2886), + [anon_sym_POUND_LBRACK] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_DOLLARif] = ACTIONS(2886), + [anon_sym_is] = ACTIONS(2886), + [anon_sym_BANGis] = ACTIONS(2886), + [anon_sym_in] = ACTIONS(2886), + [anon_sym_BANGin] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_select] = ACTIONS(2886), + [anon_sym_lock] = ACTIONS(2886), + [anon_sym_rlock] = ACTIONS(2886), + [anon_sym_unsafe] = ACTIONS(2886), + [anon_sym_sql] = ACTIONS(2886), + [sym_int_literal] = ACTIONS(2886), + [sym_float_literal] = ACTIONS(2886), + [sym_rune_literal] = ACTIONS(2886), + [anon_sym_AT] = ACTIONS(2886), + [anon_sym_shared] = ACTIONS(2886), + [anon_sym_map_LBRACK] = ACTIONS(2886), + [anon_sym_chan] = ACTIONS(2886), + [anon_sym_thread] = ACTIONS(2886), + [anon_sym_atomic] = ACTIONS(2886), + [anon_sym_assert] = ACTIONS(2886), + [anon_sym_defer] = ACTIONS(2886), + [anon_sym_goto] = ACTIONS(2886), + [anon_sym_break] = ACTIONS(2886), + [anon_sym_continue] = ACTIONS(2886), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_DOLLARfor] = ACTIONS(2886), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_POUND] = ACTIONS(2886), + [anon_sym_asm] = ACTIONS(2886), + [anon_sym_AT_LBRACK] = ACTIONS(2886), + [sym___double_quote] = ACTIONS(2886), + [sym___single_quote] = ACTIONS(2886), + [sym___c_double_quote] = ACTIONS(2886), + [sym___c_single_quote] = ACTIONS(2886), + [sym___r_double_quote] = ACTIONS(2886), + [sym___r_single_quote] = ACTIONS(2886), }, [1103] = { - [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), - [sym_comment] = ACTIONS(487), - [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_AT] = ACTIONS(3029), - [anon_sym_shared] = ACTIONS(3029), - [anon_sym_map_LBRACK] = ACTIONS(3029), - [anon_sym_chan] = ACTIONS(3029), - [anon_sym_thread] = ACTIONS(3029), - [anon_sym_atomic] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_defer] = ACTIONS(3029), - [anon_sym_goto] = ACTIONS(3029), - [anon_sym_break] = ACTIONS(3029), - [anon_sym_continue] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_DOLLARfor] = ACTIONS(3029), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_POUND] = ACTIONS(3029), - [anon_sym_asm] = ACTIONS(3029), - [anon_sym_AT_LBRACK] = ACTIONS(3029), - [sym___double_quote] = ACTIONS(3029), - [sym___single_quote] = ACTIONS(3029), - [sym___c_double_quote] = ACTIONS(3029), - [sym___c_single_quote] = ACTIONS(3029), - [sym___r_double_quote] = ACTIONS(3029), - [sym___r_single_quote] = ACTIONS(3029), + [ts_builtin_sym_end] = ACTIONS(2852), + [sym_identifier] = ACTIONS(2854), + [anon_sym_LF] = ACTIONS(2854), + [anon_sym_CR] = ACTIONS(2854), + [anon_sym_CR_LF] = ACTIONS(2854), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2854), + [anon_sym_as] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_COMMA] = ACTIONS(2854), + [anon_sym_const] = ACTIONS(2854), + [anon_sym_LPAREN] = ACTIONS(2854), + [anon_sym___global] = ACTIONS(2854), + [anon_sym_type] = ACTIONS(2854), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_fn] = ACTIONS(2854), + [anon_sym_PLUS] = ACTIONS(2854), + [anon_sym_DASH] = ACTIONS(2854), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_SLASH] = ACTIONS(2854), + [anon_sym_PERCENT] = ACTIONS(2854), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_GT] = ACTIONS(2854), + [anon_sym_EQ_EQ] = ACTIONS(2854), + [anon_sym_BANG_EQ] = ACTIONS(2854), + [anon_sym_LT_EQ] = ACTIONS(2854), + [anon_sym_GT_EQ] = ACTIONS(2854), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2854), + [anon_sym_union] = ACTIONS(2854), + [anon_sym_pub] = ACTIONS(2854), + [anon_sym_mut] = ACTIONS(2854), + [anon_sym_enum] = ACTIONS(2854), + [anon_sym_interface] = ACTIONS(2854), + [anon_sym_PLUS_PLUS] = ACTIONS(2854), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [anon_sym_QMARK] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_go] = ACTIONS(2854), + [anon_sym_spawn] = ACTIONS(2854), + [anon_sym_json_DOTdecode] = ACTIONS(2854), + [anon_sym_LBRACK2] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2854), + [anon_sym_CARET] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_LT_DASH] = ACTIONS(2854), + [anon_sym_LT_LT] = ACTIONS(2854), + [anon_sym_GT_GT] = ACTIONS(2854), + [anon_sym_GT_GT_GT] = ACTIONS(2854), + [anon_sym_AMP_CARET] = ACTIONS(2854), + [anon_sym_AMP_AMP] = ACTIONS(2854), + [anon_sym_PIPE_PIPE] = ACTIONS(2854), + [anon_sym_or] = ACTIONS(2854), + [sym_none] = ACTIONS(2854), + [sym_true] = ACTIONS(2854), + [sym_false] = ACTIONS(2854), + [sym_nil] = ACTIONS(2854), + [anon_sym_QMARK_DOT] = ACTIONS(2854), + [anon_sym_POUND_LBRACK] = ACTIONS(2854), + [anon_sym_if] = ACTIONS(2854), + [anon_sym_DOLLARif] = ACTIONS(2854), + [anon_sym_is] = ACTIONS(2854), + [anon_sym_BANGis] = ACTIONS(2854), + [anon_sym_in] = ACTIONS(2854), + [anon_sym_BANGin] = ACTIONS(2854), + [anon_sym_match] = ACTIONS(2854), + [anon_sym_select] = ACTIONS(2854), + [anon_sym_lock] = ACTIONS(2854), + [anon_sym_rlock] = ACTIONS(2854), + [anon_sym_unsafe] = ACTIONS(2854), + [anon_sym_sql] = ACTIONS(2854), + [sym_int_literal] = ACTIONS(2854), + [sym_float_literal] = ACTIONS(2854), + [sym_rune_literal] = ACTIONS(2854), + [anon_sym_AT] = ACTIONS(2854), + [anon_sym_shared] = ACTIONS(2854), + [anon_sym_map_LBRACK] = ACTIONS(2854), + [anon_sym_chan] = ACTIONS(2854), + [anon_sym_thread] = ACTIONS(2854), + [anon_sym_atomic] = ACTIONS(2854), + [anon_sym_assert] = ACTIONS(2854), + [anon_sym_defer] = ACTIONS(2854), + [anon_sym_goto] = ACTIONS(2854), + [anon_sym_break] = ACTIONS(2854), + [anon_sym_continue] = ACTIONS(2854), + [anon_sym_return] = ACTIONS(2854), + [anon_sym_DOLLARfor] = ACTIONS(2854), + [anon_sym_for] = ACTIONS(2854), + [anon_sym_POUND] = ACTIONS(2854), + [anon_sym_asm] = ACTIONS(2854), + [anon_sym_AT_LBRACK] = ACTIONS(2854), + [sym___double_quote] = ACTIONS(2854), + [sym___single_quote] = ACTIONS(2854), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2854), + [sym___r_double_quote] = ACTIONS(2854), + [sym___r_single_quote] = ACTIONS(2854), }, [1104] = { - [ts_builtin_sym_end] = ACTIONS(3167), - [sym_identifier] = ACTIONS(3169), - [anon_sym_LF] = ACTIONS(3169), - [anon_sym_CR] = ACTIONS(3169), - [anon_sym_CR_LF] = ACTIONS(3169), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3169), - [anon_sym_as] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_const] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3169), - [anon_sym___global] = ACTIONS(3169), - [anon_sym_type] = ACTIONS(3169), - [anon_sym_PIPE] = ACTIONS(3169), - [anon_sym_fn] = ACTIONS(3169), - [anon_sym_PLUS] = ACTIONS(3169), - [anon_sym_DASH] = ACTIONS(3169), - [anon_sym_STAR] = ACTIONS(3169), - [anon_sym_SLASH] = ACTIONS(3169), - [anon_sym_PERCENT] = ACTIONS(3169), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_GT] = ACTIONS(3169), - [anon_sym_EQ_EQ] = ACTIONS(3169), - [anon_sym_BANG_EQ] = ACTIONS(3169), - [anon_sym_LT_EQ] = ACTIONS(3169), - [anon_sym_GT_EQ] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_struct] = ACTIONS(3169), - [anon_sym_union] = ACTIONS(3169), - [anon_sym_pub] = ACTIONS(3169), - [anon_sym_mut] = ACTIONS(3169), - [anon_sym_enum] = ACTIONS(3169), - [anon_sym_interface] = ACTIONS(3169), - [anon_sym_PLUS_PLUS] = ACTIONS(3169), - [anon_sym_DASH_DASH] = ACTIONS(3169), - [anon_sym_QMARK] = ACTIONS(3169), - [anon_sym_BANG] = ACTIONS(3169), - [anon_sym_go] = ACTIONS(3169), - [anon_sym_spawn] = ACTIONS(3169), - [anon_sym_json_DOTdecode] = ACTIONS(3169), - [anon_sym_LBRACK2] = ACTIONS(3169), - [anon_sym_TILDE] = ACTIONS(3169), - [anon_sym_CARET] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3169), - [anon_sym_LT_DASH] = ACTIONS(3169), - [anon_sym_LT_LT] = ACTIONS(3169), - [anon_sym_GT_GT] = ACTIONS(3169), - [anon_sym_GT_GT_GT] = ACTIONS(3169), - [anon_sym_AMP_CARET] = ACTIONS(3169), - [anon_sym_AMP_AMP] = ACTIONS(3169), - [anon_sym_PIPE_PIPE] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3169), - [sym_none] = ACTIONS(3169), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [sym_nil] = ACTIONS(3169), - [anon_sym_QMARK_DOT] = ACTIONS(3169), - [anon_sym_POUND_LBRACK] = ACTIONS(3169), - [anon_sym_if] = ACTIONS(3169), - [anon_sym_DOLLARif] = ACTIONS(3169), - [anon_sym_is] = ACTIONS(3169), - [anon_sym_BANGis] = ACTIONS(3169), - [anon_sym_in] = ACTIONS(3169), - [anon_sym_BANGin] = ACTIONS(3169), - [anon_sym_match] = ACTIONS(3169), - [anon_sym_select] = ACTIONS(3169), - [anon_sym_lock] = ACTIONS(3169), - [anon_sym_rlock] = ACTIONS(3169), - [anon_sym_unsafe] = ACTIONS(3169), - [anon_sym_sql] = ACTIONS(3169), - [sym_int_literal] = ACTIONS(3169), - [sym_float_literal] = ACTIONS(3169), - [sym_rune_literal] = ACTIONS(3169), - [anon_sym_AT] = ACTIONS(3169), - [anon_sym_shared] = ACTIONS(3169), - [anon_sym_map_LBRACK] = ACTIONS(3169), - [anon_sym_chan] = ACTIONS(3169), - [anon_sym_thread] = ACTIONS(3169), - [anon_sym_atomic] = ACTIONS(3169), - [anon_sym_assert] = ACTIONS(3169), - [anon_sym_defer] = ACTIONS(3169), - [anon_sym_goto] = ACTIONS(3169), - [anon_sym_break] = ACTIONS(3169), - [anon_sym_continue] = ACTIONS(3169), - [anon_sym_return] = ACTIONS(3169), - [anon_sym_DOLLARfor] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3169), - [anon_sym_POUND] = ACTIONS(3169), - [anon_sym_asm] = ACTIONS(3169), - [anon_sym_AT_LBRACK] = ACTIONS(3169), - [sym___double_quote] = ACTIONS(3169), - [sym___single_quote] = ACTIONS(3169), - [sym___c_double_quote] = ACTIONS(3169), - [sym___c_single_quote] = ACTIONS(3169), - [sym___r_double_quote] = ACTIONS(3169), - [sym___r_single_quote] = ACTIONS(3169), + [ts_builtin_sym_end] = ACTIONS(2856), + [sym_identifier] = ACTIONS(2858), + [anon_sym_LF] = ACTIONS(2858), + [anon_sym_CR] = ACTIONS(2858), + [anon_sym_CR_LF] = ACTIONS(2858), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2858), + [anon_sym_as] = ACTIONS(2858), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_COMMA] = ACTIONS(2858), + [anon_sym_const] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2858), + [anon_sym___global] = ACTIONS(2858), + [anon_sym_type] = ACTIONS(2858), + [anon_sym_PIPE] = ACTIONS(2858), + [anon_sym_fn] = ACTIONS(2858), + [anon_sym_PLUS] = ACTIONS(2858), + [anon_sym_DASH] = ACTIONS(2858), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_SLASH] = ACTIONS(2858), + [anon_sym_PERCENT] = ACTIONS(2858), + [anon_sym_LT] = ACTIONS(2858), + [anon_sym_GT] = ACTIONS(2858), + [anon_sym_EQ_EQ] = ACTIONS(2858), + [anon_sym_BANG_EQ] = ACTIONS(2858), + [anon_sym_LT_EQ] = ACTIONS(2858), + [anon_sym_GT_EQ] = ACTIONS(2858), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2858), + [anon_sym_union] = ACTIONS(2858), + [anon_sym_pub] = ACTIONS(2858), + [anon_sym_mut] = ACTIONS(2858), + [anon_sym_enum] = ACTIONS(2858), + [anon_sym_interface] = ACTIONS(2858), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [anon_sym_QMARK] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_go] = ACTIONS(2858), + [anon_sym_spawn] = ACTIONS(2858), + [anon_sym_json_DOTdecode] = ACTIONS(2858), + [anon_sym_LBRACK2] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2858), + [anon_sym_CARET] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2858), + [anon_sym_LT_DASH] = ACTIONS(2858), + [anon_sym_LT_LT] = ACTIONS(2858), + [anon_sym_GT_GT] = ACTIONS(2858), + [anon_sym_GT_GT_GT] = ACTIONS(2858), + [anon_sym_AMP_CARET] = ACTIONS(2858), + [anon_sym_AMP_AMP] = ACTIONS(2858), + [anon_sym_PIPE_PIPE] = ACTIONS(2858), + [anon_sym_or] = ACTIONS(2858), + [sym_none] = ACTIONS(2858), + [sym_true] = ACTIONS(2858), + [sym_false] = ACTIONS(2858), + [sym_nil] = ACTIONS(2858), + [anon_sym_QMARK_DOT] = ACTIONS(2858), + [anon_sym_POUND_LBRACK] = ACTIONS(2858), + [anon_sym_if] = ACTIONS(2858), + [anon_sym_DOLLARif] = ACTIONS(2858), + [anon_sym_is] = ACTIONS(2858), + [anon_sym_BANGis] = ACTIONS(2858), + [anon_sym_in] = ACTIONS(2858), + [anon_sym_BANGin] = ACTIONS(2858), + [anon_sym_match] = ACTIONS(2858), + [anon_sym_select] = ACTIONS(2858), + [anon_sym_lock] = ACTIONS(2858), + [anon_sym_rlock] = ACTIONS(2858), + [anon_sym_unsafe] = ACTIONS(2858), + [anon_sym_sql] = ACTIONS(2858), + [sym_int_literal] = ACTIONS(2858), + [sym_float_literal] = ACTIONS(2858), + [sym_rune_literal] = ACTIONS(2858), + [anon_sym_AT] = ACTIONS(2858), + [anon_sym_shared] = ACTIONS(2858), + [anon_sym_map_LBRACK] = ACTIONS(2858), + [anon_sym_chan] = ACTIONS(2858), + [anon_sym_thread] = ACTIONS(2858), + [anon_sym_atomic] = ACTIONS(2858), + [anon_sym_assert] = ACTIONS(2858), + [anon_sym_defer] = ACTIONS(2858), + [anon_sym_goto] = ACTIONS(2858), + [anon_sym_break] = ACTIONS(2858), + [anon_sym_continue] = ACTIONS(2858), + [anon_sym_return] = ACTIONS(2858), + [anon_sym_DOLLARfor] = ACTIONS(2858), + [anon_sym_for] = ACTIONS(2858), + [anon_sym_POUND] = ACTIONS(2858), + [anon_sym_asm] = ACTIONS(2858), + [anon_sym_AT_LBRACK] = ACTIONS(2858), + [sym___double_quote] = ACTIONS(2858), + [sym___single_quote] = ACTIONS(2858), + [sym___c_double_quote] = ACTIONS(2858), + [sym___c_single_quote] = ACTIONS(2858), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2858), }, [1105] = { - [ts_builtin_sym_end] = ACTIONS(3095), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LF] = ACTIONS(3097), - [anon_sym_CR] = ACTIONS(3097), - [anon_sym_CR_LF] = ACTIONS(3097), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3097), - [anon_sym_as] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_COMMA] = ACTIONS(3097), - [anon_sym_const] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym___global] = ACTIONS(3097), - [anon_sym_type] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3097), - [anon_sym_fn] = ACTIONS(3097), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_SLASH] = ACTIONS(3097), - [anon_sym_PERCENT] = ACTIONS(3097), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_LT_EQ] = ACTIONS(3097), - [anon_sym_GT_EQ] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_struct] = ACTIONS(3097), - [anon_sym_union] = ACTIONS(3097), - [anon_sym_pub] = ACTIONS(3097), - [anon_sym_mut] = ACTIONS(3097), - [anon_sym_enum] = ACTIONS(3097), - [anon_sym_interface] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3097), - [anon_sym_DASH_DASH] = ACTIONS(3097), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_go] = ACTIONS(3097), - [anon_sym_spawn] = ACTIONS(3097), - [anon_sym_json_DOTdecode] = ACTIONS(3097), - [anon_sym_LBRACK2] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_CARET] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_LT_DASH] = ACTIONS(3097), - [anon_sym_LT_LT] = ACTIONS(3097), - [anon_sym_GT_GT] = ACTIONS(3097), - [anon_sym_GT_GT_GT] = ACTIONS(3097), - [anon_sym_AMP_CARET] = ACTIONS(3097), - [anon_sym_AMP_AMP] = ACTIONS(3097), - [anon_sym_PIPE_PIPE] = ACTIONS(3097), - [anon_sym_or] = ACTIONS(3097), - [sym_none] = ACTIONS(3097), - [sym_true] = ACTIONS(3097), - [sym_false] = ACTIONS(3097), - [sym_nil] = ACTIONS(3097), - [anon_sym_QMARK_DOT] = ACTIONS(3097), - [anon_sym_POUND_LBRACK] = ACTIONS(3097), - [anon_sym_if] = ACTIONS(3097), - [anon_sym_DOLLARif] = ACTIONS(3097), - [anon_sym_is] = ACTIONS(3097), - [anon_sym_BANGis] = ACTIONS(3097), - [anon_sym_in] = ACTIONS(3097), - [anon_sym_BANGin] = ACTIONS(3097), - [anon_sym_match] = ACTIONS(3097), - [anon_sym_select] = ACTIONS(3097), - [anon_sym_lock] = ACTIONS(3097), - [anon_sym_rlock] = ACTIONS(3097), - [anon_sym_unsafe] = ACTIONS(3097), - [anon_sym_sql] = ACTIONS(3097), - [sym_int_literal] = ACTIONS(3097), - [sym_float_literal] = ACTIONS(3097), - [sym_rune_literal] = ACTIONS(3097), - [anon_sym_AT] = ACTIONS(3097), - [anon_sym_shared] = ACTIONS(3097), - [anon_sym_map_LBRACK] = ACTIONS(3097), - [anon_sym_chan] = ACTIONS(3097), - [anon_sym_thread] = ACTIONS(3097), - [anon_sym_atomic] = ACTIONS(3097), - [anon_sym_assert] = ACTIONS(3097), - [anon_sym_defer] = ACTIONS(3097), - [anon_sym_goto] = ACTIONS(3097), - [anon_sym_break] = ACTIONS(3097), - [anon_sym_continue] = ACTIONS(3097), - [anon_sym_return] = ACTIONS(3097), - [anon_sym_DOLLARfor] = ACTIONS(3097), - [anon_sym_for] = ACTIONS(3097), - [anon_sym_POUND] = ACTIONS(3097), - [anon_sym_asm] = ACTIONS(3097), - [anon_sym_AT_LBRACK] = ACTIONS(3097), - [sym___double_quote] = ACTIONS(3097), - [sym___single_quote] = ACTIONS(3097), - [sym___c_double_quote] = ACTIONS(3097), - [sym___c_single_quote] = ACTIONS(3097), - [sym___r_double_quote] = ACTIONS(3097), - [sym___r_single_quote] = ACTIONS(3097), + [ts_builtin_sym_end] = ACTIONS(2880), + [sym_identifier] = ACTIONS(2882), + [anon_sym_LF] = ACTIONS(2882), + [anon_sym_CR] = ACTIONS(2882), + [anon_sym_CR_LF] = ACTIONS(2882), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2882), + [anon_sym_as] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2882), + [anon_sym_COMMA] = ACTIONS(2882), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym___global] = ACTIONS(2882), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_PIPE] = ACTIONS(2882), + [anon_sym_fn] = ACTIONS(2882), + [anon_sym_PLUS] = ACTIONS(2882), + [anon_sym_DASH] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(2882), + [anon_sym_SLASH] = ACTIONS(2882), + [anon_sym_PERCENT] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_GT] = ACTIONS(2882), + [anon_sym_EQ_EQ] = ACTIONS(2882), + [anon_sym_BANG_EQ] = ACTIONS(2882), + [anon_sym_LT_EQ] = ACTIONS(2882), + [anon_sym_GT_EQ] = ACTIONS(2882), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_struct] = ACTIONS(2882), + [anon_sym_union] = ACTIONS(2882), + [anon_sym_pub] = ACTIONS(2882), + [anon_sym_mut] = ACTIONS(2882), + [anon_sym_enum] = ACTIONS(2882), + [anon_sym_interface] = ACTIONS(2882), + [anon_sym_PLUS_PLUS] = ACTIONS(2882), + [anon_sym_DASH_DASH] = ACTIONS(2882), + [anon_sym_QMARK] = ACTIONS(2882), + [anon_sym_BANG] = ACTIONS(2882), + [anon_sym_go] = ACTIONS(2882), + [anon_sym_spawn] = ACTIONS(2882), + [anon_sym_json_DOTdecode] = ACTIONS(2882), + [anon_sym_LBRACK2] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2882), + [anon_sym_CARET] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2882), + [anon_sym_LT_DASH] = ACTIONS(2882), + [anon_sym_LT_LT] = ACTIONS(2882), + [anon_sym_GT_GT] = ACTIONS(2882), + [anon_sym_GT_GT_GT] = ACTIONS(2882), + [anon_sym_AMP_CARET] = ACTIONS(2882), + [anon_sym_AMP_AMP] = ACTIONS(2882), + [anon_sym_PIPE_PIPE] = ACTIONS(2882), + [anon_sym_or] = ACTIONS(2882), + [sym_none] = ACTIONS(2882), + [sym_true] = ACTIONS(2882), + [sym_false] = ACTIONS(2882), + [sym_nil] = ACTIONS(2882), + [anon_sym_QMARK_DOT] = ACTIONS(2882), + [anon_sym_POUND_LBRACK] = ACTIONS(2882), + [anon_sym_if] = ACTIONS(2882), + [anon_sym_DOLLARif] = ACTIONS(2882), + [anon_sym_is] = ACTIONS(2882), + [anon_sym_BANGis] = ACTIONS(2882), + [anon_sym_in] = ACTIONS(2882), + [anon_sym_BANGin] = ACTIONS(2882), + [anon_sym_match] = ACTIONS(2882), + [anon_sym_select] = ACTIONS(2882), + [anon_sym_lock] = ACTIONS(2882), + [anon_sym_rlock] = ACTIONS(2882), + [anon_sym_unsafe] = ACTIONS(2882), + [anon_sym_sql] = ACTIONS(2882), + [sym_int_literal] = ACTIONS(2882), + [sym_float_literal] = ACTIONS(2882), + [sym_rune_literal] = ACTIONS(2882), + [anon_sym_AT] = ACTIONS(2882), + [anon_sym_shared] = ACTIONS(2882), + [anon_sym_map_LBRACK] = ACTIONS(2882), + [anon_sym_chan] = ACTIONS(2882), + [anon_sym_thread] = ACTIONS(2882), + [anon_sym_atomic] = ACTIONS(2882), + [anon_sym_assert] = ACTIONS(2882), + [anon_sym_defer] = ACTIONS(2882), + [anon_sym_goto] = ACTIONS(2882), + [anon_sym_break] = ACTIONS(2882), + [anon_sym_continue] = ACTIONS(2882), + [anon_sym_return] = ACTIONS(2882), + [anon_sym_DOLLARfor] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2882), + [anon_sym_POUND] = ACTIONS(2882), + [anon_sym_asm] = ACTIONS(2882), + [anon_sym_AT_LBRACK] = ACTIONS(2882), + [sym___double_quote] = ACTIONS(2882), + [sym___single_quote] = ACTIONS(2882), + [sym___c_double_quote] = ACTIONS(2882), + [sym___c_single_quote] = ACTIONS(2882), + [sym___r_double_quote] = ACTIONS(2882), + [sym___r_single_quote] = ACTIONS(2882), }, [1106] = { - [ts_builtin_sym_end] = ACTIONS(2698), - [sym_identifier] = ACTIONS(2700), - [anon_sym_LF] = ACTIONS(2700), - [anon_sym_CR] = ACTIONS(2700), - [anon_sym_CR_LF] = ACTIONS(2700), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_COMMA] = ACTIONS(2766), - [anon_sym_const] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym___global] = ACTIONS(2700), - [anon_sym_type] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_union] = ACTIONS(2700), - [anon_sym_pub] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_enum] = ACTIONS(2700), - [anon_sym_interface] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2700), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2700), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2700), - [anon_sym_AMP_CARET] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2700), - [anon_sym_POUND_LBRACK] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2700), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2700), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), - [sym_rune_literal] = ACTIONS(2700), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2700), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [anon_sym_assert] = ACTIONS(2700), - [anon_sym_defer] = ACTIONS(2700), - [anon_sym_goto] = ACTIONS(2700), - [anon_sym_break] = ACTIONS(2700), - [anon_sym_continue] = ACTIONS(2700), - [anon_sym_return] = ACTIONS(2700), - [anon_sym_DOLLARfor] = ACTIONS(2700), - [anon_sym_for] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(2700), - [anon_sym_asm] = ACTIONS(2700), - [anon_sym_AT_LBRACK] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2700), - [sym___single_quote] = ACTIONS(2700), - [sym___c_double_quote] = ACTIONS(2700), - [sym___c_single_quote] = ACTIONS(2700), - [sym___r_double_quote] = ACTIONS(2700), - [sym___r_single_quote] = ACTIONS(2700), + [ts_builtin_sym_end] = ACTIONS(2872), + [sym_identifier] = ACTIONS(2874), + [anon_sym_LF] = ACTIONS(2874), + [anon_sym_CR] = ACTIONS(2874), + [anon_sym_CR_LF] = ACTIONS(2874), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2874), + [anon_sym_as] = ACTIONS(2874), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_COMMA] = ACTIONS(2874), + [anon_sym_const] = ACTIONS(2874), + [anon_sym_LPAREN] = ACTIONS(2874), + [anon_sym___global] = ACTIONS(2874), + [anon_sym_type] = ACTIONS(2874), + [anon_sym_PIPE] = ACTIONS(2874), + [anon_sym_fn] = ACTIONS(2874), + [anon_sym_PLUS] = ACTIONS(2874), + [anon_sym_DASH] = ACTIONS(2874), + [anon_sym_STAR] = ACTIONS(2874), + [anon_sym_SLASH] = ACTIONS(2874), + [anon_sym_PERCENT] = ACTIONS(2874), + [anon_sym_LT] = ACTIONS(2874), + [anon_sym_GT] = ACTIONS(2874), + [anon_sym_EQ_EQ] = ACTIONS(2874), + [anon_sym_BANG_EQ] = ACTIONS(2874), + [anon_sym_LT_EQ] = ACTIONS(2874), + [anon_sym_GT_EQ] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2874), + [anon_sym_union] = ACTIONS(2874), + [anon_sym_pub] = ACTIONS(2874), + [anon_sym_mut] = ACTIONS(2874), + [anon_sym_enum] = ACTIONS(2874), + [anon_sym_interface] = ACTIONS(2874), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [anon_sym_QMARK] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_go] = ACTIONS(2874), + [anon_sym_spawn] = ACTIONS(2874), + [anon_sym_json_DOTdecode] = ACTIONS(2874), + [anon_sym_LBRACK2] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_CARET] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_LT_DASH] = ACTIONS(2874), + [anon_sym_LT_LT] = ACTIONS(2874), + [anon_sym_GT_GT] = ACTIONS(2874), + [anon_sym_GT_GT_GT] = ACTIONS(2874), + [anon_sym_AMP_CARET] = ACTIONS(2874), + [anon_sym_AMP_AMP] = ACTIONS(2874), + [anon_sym_PIPE_PIPE] = ACTIONS(2874), + [anon_sym_or] = ACTIONS(2874), + [sym_none] = ACTIONS(2874), + [sym_true] = ACTIONS(2874), + [sym_false] = ACTIONS(2874), + [sym_nil] = ACTIONS(2874), + [anon_sym_QMARK_DOT] = ACTIONS(2874), + [anon_sym_POUND_LBRACK] = ACTIONS(2874), + [anon_sym_if] = ACTIONS(2874), + [anon_sym_DOLLARif] = ACTIONS(2874), + [anon_sym_is] = ACTIONS(2874), + [anon_sym_BANGis] = ACTIONS(2874), + [anon_sym_in] = ACTIONS(2874), + [anon_sym_BANGin] = ACTIONS(2874), + [anon_sym_match] = ACTIONS(2874), + [anon_sym_select] = ACTIONS(2874), + [anon_sym_lock] = ACTIONS(2874), + [anon_sym_rlock] = ACTIONS(2874), + [anon_sym_unsafe] = ACTIONS(2874), + [anon_sym_sql] = ACTIONS(2874), + [sym_int_literal] = ACTIONS(2874), + [sym_float_literal] = ACTIONS(2874), + [sym_rune_literal] = ACTIONS(2874), + [anon_sym_AT] = ACTIONS(2874), + [anon_sym_shared] = ACTIONS(2874), + [anon_sym_map_LBRACK] = ACTIONS(2874), + [anon_sym_chan] = ACTIONS(2874), + [anon_sym_thread] = ACTIONS(2874), + [anon_sym_atomic] = ACTIONS(2874), + [anon_sym_assert] = ACTIONS(2874), + [anon_sym_defer] = ACTIONS(2874), + [anon_sym_goto] = ACTIONS(2874), + [anon_sym_break] = ACTIONS(2874), + [anon_sym_continue] = ACTIONS(2874), + [anon_sym_return] = ACTIONS(2874), + [anon_sym_DOLLARfor] = ACTIONS(2874), + [anon_sym_for] = ACTIONS(2874), + [anon_sym_POUND] = ACTIONS(2874), + [anon_sym_asm] = ACTIONS(2874), + [anon_sym_AT_LBRACK] = ACTIONS(2874), + [sym___double_quote] = ACTIONS(2874), + [sym___single_quote] = ACTIONS(2874), + [sym___c_double_quote] = ACTIONS(2874), + [sym___c_single_quote] = ACTIONS(2874), + [sym___r_double_quote] = ACTIONS(2874), + [sym___r_single_quote] = ACTIONS(2874), }, [1107] = { - [ts_builtin_sym_end] = ACTIONS(3111), - [sym_identifier] = ACTIONS(3113), - [anon_sym_LF] = ACTIONS(3113), - [anon_sym_CR] = ACTIONS(3113), - [anon_sym_CR_LF] = ACTIONS(3113), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3113), - [anon_sym_as] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(3113), - [anon_sym_const] = ACTIONS(3113), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym___global] = ACTIONS(3113), - [anon_sym_type] = ACTIONS(3113), - [anon_sym_PIPE] = ACTIONS(3113), - [anon_sym_fn] = ACTIONS(3113), - [anon_sym_PLUS] = ACTIONS(3113), - [anon_sym_DASH] = ACTIONS(3113), - [anon_sym_STAR] = ACTIONS(3113), - [anon_sym_SLASH] = ACTIONS(3113), - [anon_sym_PERCENT] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3113), - [anon_sym_EQ_EQ] = ACTIONS(3113), - [anon_sym_BANG_EQ] = ACTIONS(3113), - [anon_sym_LT_EQ] = ACTIONS(3113), - [anon_sym_GT_EQ] = ACTIONS(3113), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3113), - [anon_sym_union] = ACTIONS(3113), - [anon_sym_pub] = ACTIONS(3113), - [anon_sym_mut] = ACTIONS(3113), - [anon_sym_enum] = ACTIONS(3113), - [anon_sym_interface] = ACTIONS(3113), - [anon_sym_PLUS_PLUS] = ACTIONS(3113), - [anon_sym_DASH_DASH] = ACTIONS(3113), - [anon_sym_QMARK] = ACTIONS(3113), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(3113), - [anon_sym_spawn] = ACTIONS(3113), - [anon_sym_json_DOTdecode] = ACTIONS(3113), - [anon_sym_LBRACK2] = ACTIONS(3113), - [anon_sym_TILDE] = ACTIONS(3113), - [anon_sym_CARET] = ACTIONS(3113), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT_DASH] = ACTIONS(3113), - [anon_sym_LT_LT] = ACTIONS(3113), - [anon_sym_GT_GT] = ACTIONS(3113), - [anon_sym_GT_GT_GT] = ACTIONS(3113), - [anon_sym_AMP_CARET] = ACTIONS(3113), - [anon_sym_AMP_AMP] = ACTIONS(3113), - [anon_sym_PIPE_PIPE] = ACTIONS(3113), - [anon_sym_or] = ACTIONS(3113), - [sym_none] = ACTIONS(3113), - [sym_true] = ACTIONS(3113), - [sym_false] = ACTIONS(3113), - [sym_nil] = ACTIONS(3113), - [anon_sym_QMARK_DOT] = ACTIONS(3113), - [anon_sym_POUND_LBRACK] = ACTIONS(3113), - [anon_sym_if] = ACTIONS(3113), - [anon_sym_DOLLARif] = ACTIONS(3113), - [anon_sym_is] = ACTIONS(3113), - [anon_sym_BANGis] = ACTIONS(3113), - [anon_sym_in] = ACTIONS(3113), - [anon_sym_BANGin] = ACTIONS(3113), - [anon_sym_match] = ACTIONS(3113), - [anon_sym_select] = ACTIONS(3113), - [anon_sym_lock] = ACTIONS(3113), - [anon_sym_rlock] = ACTIONS(3113), - [anon_sym_unsafe] = ACTIONS(3113), - [anon_sym_sql] = ACTIONS(3113), - [sym_int_literal] = ACTIONS(3113), - [sym_float_literal] = ACTIONS(3113), - [sym_rune_literal] = ACTIONS(3113), - [anon_sym_AT] = ACTIONS(3113), - [anon_sym_shared] = ACTIONS(3113), - [anon_sym_map_LBRACK] = ACTIONS(3113), - [anon_sym_chan] = ACTIONS(3113), - [anon_sym_thread] = ACTIONS(3113), - [anon_sym_atomic] = ACTIONS(3113), - [anon_sym_assert] = ACTIONS(3113), - [anon_sym_defer] = ACTIONS(3113), - [anon_sym_goto] = ACTIONS(3113), - [anon_sym_break] = ACTIONS(3113), - [anon_sym_continue] = ACTIONS(3113), - [anon_sym_return] = ACTIONS(3113), - [anon_sym_DOLLARfor] = ACTIONS(3113), - [anon_sym_for] = ACTIONS(3113), - [anon_sym_POUND] = ACTIONS(3113), - [anon_sym_asm] = ACTIONS(3113), - [anon_sym_AT_LBRACK] = ACTIONS(3113), - [sym___double_quote] = ACTIONS(3113), - [sym___single_quote] = ACTIONS(3113), - [sym___c_double_quote] = ACTIONS(3113), - [sym___c_single_quote] = ACTIONS(3113), - [sym___r_double_quote] = ACTIONS(3113), - [sym___r_single_quote] = ACTIONS(3113), + [ts_builtin_sym_end] = ACTIONS(3080), + [sym_identifier] = ACTIONS(3082), + [anon_sym_LF] = ACTIONS(3082), + [anon_sym_CR] = ACTIONS(3082), + [anon_sym_CR_LF] = ACTIONS(3082), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3082), + [anon_sym_as] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3082), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_const] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3082), + [anon_sym___global] = ACTIONS(3082), + [anon_sym_type] = ACTIONS(3082), + [anon_sym_PIPE] = ACTIONS(3082), + [anon_sym_fn] = ACTIONS(3082), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_SLASH] = ACTIONS(3082), + [anon_sym_PERCENT] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(3082), + [anon_sym_GT] = ACTIONS(3082), + [anon_sym_EQ_EQ] = ACTIONS(3082), + [anon_sym_BANG_EQ] = ACTIONS(3082), + [anon_sym_LT_EQ] = ACTIONS(3082), + [anon_sym_GT_EQ] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(3080), + [anon_sym_struct] = ACTIONS(3082), + [anon_sym_union] = ACTIONS(3082), + [anon_sym_pub] = ACTIONS(3082), + [anon_sym_mut] = ACTIONS(3082), + [anon_sym_enum] = ACTIONS(3082), + [anon_sym_interface] = ACTIONS(3082), + [anon_sym_PLUS_PLUS] = ACTIONS(3082), + [anon_sym_DASH_DASH] = ACTIONS(3082), + [anon_sym_QMARK] = ACTIONS(3082), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_go] = ACTIONS(3082), + [anon_sym_spawn] = ACTIONS(3082), + [anon_sym_json_DOTdecode] = ACTIONS(3082), + [anon_sym_LBRACK2] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3082), + [anon_sym_LT_DASH] = ACTIONS(3082), + [anon_sym_LT_LT] = ACTIONS(3082), + [anon_sym_GT_GT] = ACTIONS(3082), + [anon_sym_GT_GT_GT] = ACTIONS(3082), + [anon_sym_AMP_CARET] = ACTIONS(3082), + [anon_sym_AMP_AMP] = ACTIONS(3082), + [anon_sym_PIPE_PIPE] = ACTIONS(3082), + [anon_sym_or] = ACTIONS(3082), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_QMARK_DOT] = ACTIONS(3082), + [anon_sym_POUND_LBRACK] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_DOLLARif] = ACTIONS(3082), + [anon_sym_is] = ACTIONS(3082), + [anon_sym_BANGis] = ACTIONS(3082), + [anon_sym_in] = ACTIONS(3082), + [anon_sym_BANGin] = ACTIONS(3082), + [anon_sym_match] = ACTIONS(3082), + [anon_sym_select] = ACTIONS(3082), + [anon_sym_lock] = ACTIONS(3082), + [anon_sym_rlock] = ACTIONS(3082), + [anon_sym_unsafe] = ACTIONS(3082), + [anon_sym_sql] = ACTIONS(3082), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3082), + [sym_rune_literal] = ACTIONS(3082), + [anon_sym_AT] = ACTIONS(3082), + [anon_sym_shared] = ACTIONS(3082), + [anon_sym_map_LBRACK] = ACTIONS(3082), + [anon_sym_chan] = ACTIONS(3082), + [anon_sym_thread] = ACTIONS(3082), + [anon_sym_atomic] = ACTIONS(3082), + [anon_sym_assert] = ACTIONS(3082), + [anon_sym_defer] = ACTIONS(3082), + [anon_sym_goto] = ACTIONS(3082), + [anon_sym_break] = ACTIONS(3082), + [anon_sym_continue] = ACTIONS(3082), + [anon_sym_return] = ACTIONS(3082), + [anon_sym_DOLLARfor] = ACTIONS(3082), + [anon_sym_for] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(3082), + [anon_sym_asm] = ACTIONS(3082), + [anon_sym_AT_LBRACK] = ACTIONS(3082), + [sym___double_quote] = ACTIONS(3082), + [sym___single_quote] = ACTIONS(3082), + [sym___c_double_quote] = ACTIONS(3082), + [sym___c_single_quote] = ACTIONS(3082), + [sym___r_double_quote] = ACTIONS(3082), + [sym___r_single_quote] = ACTIONS(3082), }, [1108] = { - [ts_builtin_sym_end] = ACTIONS(3107), - [sym_identifier] = ACTIONS(3109), - [anon_sym_LF] = ACTIONS(3109), - [anon_sym_CR] = ACTIONS(3109), - [anon_sym_CR_LF] = ACTIONS(3109), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3109), - [anon_sym_as] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(3109), - [anon_sym_const] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym___global] = ACTIONS(3109), - [anon_sym_type] = ACTIONS(3109), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_fn] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_PERCENT] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_LT_EQ] = ACTIONS(3109), - [anon_sym_GT_EQ] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3109), - [anon_sym_union] = ACTIONS(3109), - [anon_sym_pub] = ACTIONS(3109), - [anon_sym_mut] = ACTIONS(3109), - [anon_sym_enum] = ACTIONS(3109), - [anon_sym_interface] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3109), - [anon_sym_DASH_DASH] = ACTIONS(3109), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_go] = ACTIONS(3109), - [anon_sym_spawn] = ACTIONS(3109), - [anon_sym_json_DOTdecode] = ACTIONS(3109), - [anon_sym_LBRACK2] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT_DASH] = ACTIONS(3109), - [anon_sym_LT_LT] = ACTIONS(3109), - [anon_sym_GT_GT] = ACTIONS(3109), - [anon_sym_GT_GT_GT] = ACTIONS(3109), - [anon_sym_AMP_CARET] = ACTIONS(3109), - [anon_sym_AMP_AMP] = ACTIONS(3109), - [anon_sym_PIPE_PIPE] = ACTIONS(3109), - [anon_sym_or] = ACTIONS(3109), - [sym_none] = ACTIONS(3109), - [sym_true] = ACTIONS(3109), - [sym_false] = ACTIONS(3109), - [sym_nil] = ACTIONS(3109), - [anon_sym_QMARK_DOT] = ACTIONS(3109), - [anon_sym_POUND_LBRACK] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_DOLLARif] = ACTIONS(3109), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3109), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_BANGin] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(3109), - [anon_sym_select] = ACTIONS(3109), - [anon_sym_lock] = ACTIONS(3109), - [anon_sym_rlock] = ACTIONS(3109), - [anon_sym_unsafe] = ACTIONS(3109), - [anon_sym_sql] = ACTIONS(3109), - [sym_int_literal] = ACTIONS(3109), - [sym_float_literal] = ACTIONS(3109), - [sym_rune_literal] = ACTIONS(3109), - [anon_sym_AT] = ACTIONS(3109), - [anon_sym_shared] = ACTIONS(3109), - [anon_sym_map_LBRACK] = ACTIONS(3109), - [anon_sym_chan] = ACTIONS(3109), - [anon_sym_thread] = ACTIONS(3109), - [anon_sym_atomic] = ACTIONS(3109), - [anon_sym_assert] = ACTIONS(3109), - [anon_sym_defer] = ACTIONS(3109), - [anon_sym_goto] = ACTIONS(3109), - [anon_sym_break] = ACTIONS(3109), - [anon_sym_continue] = ACTIONS(3109), - [anon_sym_return] = ACTIONS(3109), - [anon_sym_DOLLARfor] = ACTIONS(3109), - [anon_sym_for] = ACTIONS(3109), - [anon_sym_POUND] = ACTIONS(3109), - [anon_sym_asm] = ACTIONS(3109), - [anon_sym_AT_LBRACK] = ACTIONS(3109), - [sym___double_quote] = ACTIONS(3109), - [sym___single_quote] = ACTIONS(3109), - [sym___c_double_quote] = ACTIONS(3109), - [sym___c_single_quote] = ACTIONS(3109), - [sym___r_double_quote] = ACTIONS(3109), - [sym___r_single_quote] = ACTIONS(3109), + [ts_builtin_sym_end] = ACTIONS(2864), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LF] = ACTIONS(2866), + [anon_sym_CR] = ACTIONS(2866), + [anon_sym_CR_LF] = ACTIONS(2866), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2866), + [anon_sym_as] = ACTIONS(2866), + [anon_sym_LBRACE] = ACTIONS(2866), + [anon_sym_COMMA] = ACTIONS(2866), + [anon_sym_const] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2866), + [anon_sym___global] = ACTIONS(2866), + [anon_sym_type] = ACTIONS(2866), + [anon_sym_PIPE] = ACTIONS(2866), + [anon_sym_fn] = ACTIONS(2866), + [anon_sym_PLUS] = ACTIONS(2866), + [anon_sym_DASH] = ACTIONS(2866), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_SLASH] = ACTIONS(2866), + [anon_sym_PERCENT] = ACTIONS(2866), + [anon_sym_LT] = ACTIONS(2866), + [anon_sym_GT] = ACTIONS(2866), + [anon_sym_EQ_EQ] = ACTIONS(2866), + [anon_sym_BANG_EQ] = ACTIONS(2866), + [anon_sym_LT_EQ] = ACTIONS(2866), + [anon_sym_GT_EQ] = ACTIONS(2866), + [anon_sym_LBRACK] = ACTIONS(2864), + [anon_sym_struct] = ACTIONS(2866), + [anon_sym_union] = ACTIONS(2866), + [anon_sym_pub] = ACTIONS(2866), + [anon_sym_mut] = ACTIONS(2866), + [anon_sym_enum] = ACTIONS(2866), + [anon_sym_interface] = ACTIONS(2866), + [anon_sym_PLUS_PLUS] = ACTIONS(2866), + [anon_sym_DASH_DASH] = ACTIONS(2866), + [anon_sym_QMARK] = ACTIONS(2866), + [anon_sym_BANG] = ACTIONS(2866), + [anon_sym_go] = ACTIONS(2866), + [anon_sym_spawn] = ACTIONS(2866), + [anon_sym_json_DOTdecode] = ACTIONS(2866), + [anon_sym_LBRACK2] = ACTIONS(2866), + [anon_sym_TILDE] = ACTIONS(2866), + [anon_sym_CARET] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_LT_DASH] = ACTIONS(2866), + [anon_sym_LT_LT] = ACTIONS(2866), + [anon_sym_GT_GT] = ACTIONS(2866), + [anon_sym_GT_GT_GT] = ACTIONS(2866), + [anon_sym_AMP_CARET] = ACTIONS(2866), + [anon_sym_AMP_AMP] = ACTIONS(2866), + [anon_sym_PIPE_PIPE] = ACTIONS(2866), + [anon_sym_or] = ACTIONS(2866), + [sym_none] = ACTIONS(2866), + [sym_true] = ACTIONS(2866), + [sym_false] = ACTIONS(2866), + [sym_nil] = ACTIONS(2866), + [anon_sym_QMARK_DOT] = ACTIONS(2866), + [anon_sym_POUND_LBRACK] = ACTIONS(2866), + [anon_sym_if] = ACTIONS(2866), + [anon_sym_DOLLARif] = ACTIONS(2866), + [anon_sym_is] = ACTIONS(2866), + [anon_sym_BANGis] = ACTIONS(2866), + [anon_sym_in] = ACTIONS(2866), + [anon_sym_BANGin] = ACTIONS(2866), + [anon_sym_match] = ACTIONS(2866), + [anon_sym_select] = ACTIONS(2866), + [anon_sym_lock] = ACTIONS(2866), + [anon_sym_rlock] = ACTIONS(2866), + [anon_sym_unsafe] = ACTIONS(2866), + [anon_sym_sql] = ACTIONS(2866), + [sym_int_literal] = ACTIONS(2866), + [sym_float_literal] = ACTIONS(2866), + [sym_rune_literal] = ACTIONS(2866), + [anon_sym_AT] = ACTIONS(2866), + [anon_sym_shared] = ACTIONS(2866), + [anon_sym_map_LBRACK] = ACTIONS(2866), + [anon_sym_chan] = ACTIONS(2866), + [anon_sym_thread] = ACTIONS(2866), + [anon_sym_atomic] = ACTIONS(2866), + [anon_sym_assert] = ACTIONS(2866), + [anon_sym_defer] = ACTIONS(2866), + [anon_sym_goto] = ACTIONS(2866), + [anon_sym_break] = ACTIONS(2866), + [anon_sym_continue] = ACTIONS(2866), + [anon_sym_return] = ACTIONS(2866), + [anon_sym_DOLLARfor] = ACTIONS(2866), + [anon_sym_for] = ACTIONS(2866), + [anon_sym_POUND] = ACTIONS(2866), + [anon_sym_asm] = ACTIONS(2866), + [anon_sym_AT_LBRACK] = ACTIONS(2866), + [sym___double_quote] = ACTIONS(2866), + [sym___single_quote] = ACTIONS(2866), + [sym___c_double_quote] = ACTIONS(2866), + [sym___c_single_quote] = ACTIONS(2866), + [sym___r_double_quote] = ACTIONS(2866), + [sym___r_single_quote] = ACTIONS(2866), }, [1109] = { - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(1294), - [sym_plain_type] = STATE(1316), - [sym__plain_type_without_special] = STATE(1344), - [sym_anon_struct_type] = STATE(1345), - [sym_multi_return_type] = STATE(1344), - [sym_result_type] = STATE(1344), - [sym_option_type] = STATE(1344), - [sym_qualified_type] = STATE(1294), - [sym_fixed_array_type] = STATE(1345), - [sym_array_type] = STATE(1345), - [sym_pointer_type] = STATE(1345), - [sym_wrong_pointer_type] = STATE(1345), - [sym_map_type] = STATE(1345), - [sym_channel_type] = STATE(1345), - [sym_shared_type] = STATE(1345), - [sym_thread_type] = STATE(1345), - [sym_atomic_type] = STATE(1345), - [sym_generic_type] = STATE(1345), - [sym_function_type] = STATE(1345), - [sym_identifier] = ACTIONS(3349), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(587), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3353), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(587), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(587), - [anon_sym_BANG_EQ] = ACTIONS(587), - [anon_sym_LT_EQ] = ACTIONS(587), - [anon_sym_GT_EQ] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_RBRACK] = ACTIONS(587), - [anon_sym_struct] = ACTIONS(3357), - [anon_sym_mut] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(587), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_BANG] = ACTIONS(3361), - [anon_sym_go] = ACTIONS(589), - [anon_sym_spawn] = ACTIONS(589), - [anon_sym_json_DOTdecode] = ACTIONS(587), - [anon_sym_LBRACK2] = ACTIONS(3363), - [anon_sym_TILDE] = ACTIONS(587), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_AMP] = ACTIONS(3365), - [anon_sym_LT_DASH] = ACTIONS(587), - [anon_sym_LT_LT] = ACTIONS(587), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(587), - [anon_sym_AMP_CARET] = ACTIONS(587), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_or] = ACTIONS(589), - [sym_none] = ACTIONS(589), - [sym_true] = ACTIONS(589), - [sym_false] = ACTIONS(589), - [sym_nil] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(587), - [anon_sym_POUND_LBRACK] = ACTIONS(587), - [anon_sym_if] = ACTIONS(589), - [anon_sym_DOLLARif] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(587), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(587), - [anon_sym_match] = ACTIONS(589), - [anon_sym_select] = ACTIONS(589), - [anon_sym_lock] = ACTIONS(589), - [anon_sym_rlock] = ACTIONS(589), - [anon_sym_unsafe] = ACTIONS(589), - [anon_sym_sql] = ACTIONS(589), - [sym_int_literal] = ACTIONS(589), - [sym_float_literal] = ACTIONS(587), - [sym_rune_literal] = ACTIONS(587), - [anon_sym_AT] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(3367), - [anon_sym_map_LBRACK] = ACTIONS(3369), - [anon_sym_chan] = ACTIONS(3371), - [anon_sym_thread] = ACTIONS(3373), - [anon_sym_atomic] = ACTIONS(3375), - [sym___double_quote] = ACTIONS(587), - [sym___single_quote] = ACTIONS(587), - [sym___c_double_quote] = ACTIONS(587), - [sym___c_single_quote] = ACTIONS(587), - [sym___r_double_quote] = ACTIONS(587), - [sym___r_single_quote] = ACTIONS(587), + [ts_builtin_sym_end] = ACTIONS(2844), + [sym_identifier] = ACTIONS(2846), + [anon_sym_LF] = ACTIONS(2846), + [anon_sym_CR] = ACTIONS(2846), + [anon_sym_CR_LF] = ACTIONS(2846), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2846), + [anon_sym_as] = ACTIONS(2846), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_COMMA] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(2846), + [anon_sym_LPAREN] = ACTIONS(2846), + [anon_sym___global] = ACTIONS(2846), + [anon_sym_type] = ACTIONS(2846), + [anon_sym_PIPE] = ACTIONS(2846), + [anon_sym_fn] = ACTIONS(2846), + [anon_sym_PLUS] = ACTIONS(2846), + [anon_sym_DASH] = ACTIONS(2846), + [anon_sym_STAR] = ACTIONS(2846), + [anon_sym_SLASH] = ACTIONS(2846), + [anon_sym_PERCENT] = ACTIONS(2846), + [anon_sym_LT] = ACTIONS(2846), + [anon_sym_GT] = ACTIONS(2846), + [anon_sym_EQ_EQ] = ACTIONS(2846), + [anon_sym_BANG_EQ] = ACTIONS(2846), + [anon_sym_LT_EQ] = ACTIONS(2846), + [anon_sym_GT_EQ] = ACTIONS(2846), + [anon_sym_LBRACK] = ACTIONS(2844), + [anon_sym_struct] = ACTIONS(2846), + [anon_sym_union] = ACTIONS(2846), + [anon_sym_pub] = ACTIONS(2846), + [anon_sym_mut] = ACTIONS(2846), + [anon_sym_enum] = ACTIONS(2846), + [anon_sym_interface] = ACTIONS(2846), + [anon_sym_PLUS_PLUS] = ACTIONS(2846), + [anon_sym_DASH_DASH] = ACTIONS(2846), + [anon_sym_QMARK] = ACTIONS(2846), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_go] = ACTIONS(2846), + [anon_sym_spawn] = ACTIONS(2846), + [anon_sym_json_DOTdecode] = ACTIONS(2846), + [anon_sym_LBRACK2] = ACTIONS(2846), + [anon_sym_TILDE] = ACTIONS(2846), + [anon_sym_CARET] = ACTIONS(2846), + [anon_sym_AMP] = ACTIONS(2846), + [anon_sym_LT_DASH] = ACTIONS(2846), + [anon_sym_LT_LT] = ACTIONS(2846), + [anon_sym_GT_GT] = ACTIONS(2846), + [anon_sym_GT_GT_GT] = ACTIONS(2846), + [anon_sym_AMP_CARET] = ACTIONS(2846), + [anon_sym_AMP_AMP] = ACTIONS(2846), + [anon_sym_PIPE_PIPE] = ACTIONS(2846), + [anon_sym_or] = ACTIONS(2846), + [sym_none] = ACTIONS(2846), + [sym_true] = ACTIONS(2846), + [sym_false] = ACTIONS(2846), + [sym_nil] = ACTIONS(2846), + [anon_sym_QMARK_DOT] = ACTIONS(2846), + [anon_sym_POUND_LBRACK] = ACTIONS(2846), + [anon_sym_if] = ACTIONS(2846), + [anon_sym_DOLLARif] = ACTIONS(2846), + [anon_sym_is] = ACTIONS(2846), + [anon_sym_BANGis] = ACTIONS(2846), + [anon_sym_in] = ACTIONS(2846), + [anon_sym_BANGin] = ACTIONS(2846), + [anon_sym_match] = ACTIONS(2846), + [anon_sym_select] = ACTIONS(2846), + [anon_sym_lock] = ACTIONS(2846), + [anon_sym_rlock] = ACTIONS(2846), + [anon_sym_unsafe] = ACTIONS(2846), + [anon_sym_sql] = ACTIONS(2846), + [sym_int_literal] = ACTIONS(2846), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2846), + [anon_sym_shared] = ACTIONS(2846), + [anon_sym_map_LBRACK] = ACTIONS(2846), + [anon_sym_chan] = ACTIONS(2846), + [anon_sym_thread] = ACTIONS(2846), + [anon_sym_atomic] = ACTIONS(2846), + [anon_sym_assert] = ACTIONS(2846), + [anon_sym_defer] = ACTIONS(2846), + [anon_sym_goto] = ACTIONS(2846), + [anon_sym_break] = ACTIONS(2846), + [anon_sym_continue] = ACTIONS(2846), + [anon_sym_return] = ACTIONS(2846), + [anon_sym_DOLLARfor] = ACTIONS(2846), + [anon_sym_for] = ACTIONS(2846), + [anon_sym_POUND] = ACTIONS(2846), + [anon_sym_asm] = ACTIONS(2846), + [anon_sym_AT_LBRACK] = ACTIONS(2846), + [sym___double_quote] = ACTIONS(2846), + [sym___single_quote] = ACTIONS(2846), + [sym___c_double_quote] = ACTIONS(2846), + [sym___c_single_quote] = ACTIONS(2846), + [sym___r_double_quote] = ACTIONS(2846), + [sym___r_single_quote] = ACTIONS(2846), }, [1110] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(585), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_COMMA] = ACTIONS(583), - [anon_sym_LPAREN] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(583), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(583), - [anon_sym_BANG_EQ] = ACTIONS(583), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LBRACK] = ACTIONS(583), - [anon_sym_RBRACK] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(585), - [anon_sym_mut] = ACTIONS(585), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_go] = ACTIONS(585), - [anon_sym_spawn] = ACTIONS(585), - [anon_sym_json_DOTdecode] = ACTIONS(583), - [anon_sym_LBRACK2] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(583), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_LT_DASH] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(583), - [anon_sym_AMP_CARET] = ACTIONS(583), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE_PIPE] = ACTIONS(583), - [anon_sym_or] = ACTIONS(585), - [sym_none] = ACTIONS(585), - [sym_true] = ACTIONS(585), - [sym_false] = ACTIONS(585), - [sym_nil] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(583), - [anon_sym_POUND_LBRACK] = ACTIONS(583), - [anon_sym_if] = ACTIONS(585), - [anon_sym_DOLLARif] = ACTIONS(585), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(583), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(583), - [anon_sym_match] = ACTIONS(585), - [anon_sym_select] = ACTIONS(585), - [anon_sym_lock] = ACTIONS(585), - [anon_sym_rlock] = ACTIONS(585), - [anon_sym_unsafe] = ACTIONS(585), - [anon_sym_sql] = ACTIONS(585), - [sym_int_literal] = ACTIONS(585), - [sym_float_literal] = ACTIONS(583), - [sym_rune_literal] = ACTIONS(583), - [anon_sym_AT] = ACTIONS(585), - [anon_sym_shared] = ACTIONS(585), - [anon_sym_map_LBRACK] = ACTIONS(583), - [anon_sym_chan] = ACTIONS(585), - [anon_sym_thread] = ACTIONS(585), - [anon_sym_atomic] = ACTIONS(585), - [sym___double_quote] = ACTIONS(583), - [sym___single_quote] = ACTIONS(583), - [sym___c_double_quote] = ACTIONS(583), - [sym___c_single_quote] = ACTIONS(583), - [sym___r_double_quote] = ACTIONS(583), - [sym___r_single_quote] = ACTIONS(583), - }, - [1111] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_as] = ACTIONS(595), - [anon_sym_LBRACE] = ACTIONS(591), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(591), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(591), - [anon_sym_BANG_EQ] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(591), - [anon_sym_GT_EQ] = ACTIONS(591), - [anon_sym_LBRACK] = ACTIONS(591), - [anon_sym_RBRACK] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_mut] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(591), - [anon_sym_DASH_DASH] = ACTIONS(591), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(3381), - [anon_sym_go] = ACTIONS(595), - [anon_sym_spawn] = ACTIONS(595), - [anon_sym_json_DOTdecode] = ACTIONS(591), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_TILDE] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(591), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_DASH] = ACTIONS(591), - [anon_sym_LT_LT] = ACTIONS(591), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_GT_GT_GT] = ACTIONS(591), - [anon_sym_AMP_CARET] = ACTIONS(591), - [anon_sym_AMP_AMP] = ACTIONS(591), - [anon_sym_PIPE_PIPE] = ACTIONS(591), - [anon_sym_or] = ACTIONS(595), - [sym_none] = ACTIONS(595), - [sym_true] = ACTIONS(595), - [sym_false] = ACTIONS(595), - [sym_nil] = ACTIONS(595), - [anon_sym_QMARK_DOT] = ACTIONS(591), - [anon_sym_POUND_LBRACK] = ACTIONS(591), - [anon_sym_if] = ACTIONS(595), - [anon_sym_DOLLARif] = ACTIONS(595), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(591), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(591), - [anon_sym_match] = ACTIONS(595), - [anon_sym_select] = ACTIONS(595), - [anon_sym_lock] = ACTIONS(595), - [anon_sym_rlock] = ACTIONS(595), - [anon_sym_unsafe] = ACTIONS(595), - [anon_sym_sql] = ACTIONS(595), - [sym_int_literal] = ACTIONS(595), - [sym_float_literal] = ACTIONS(591), - [sym_rune_literal] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(595), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(591), - [sym___single_quote] = ACTIONS(591), - [sym___c_double_quote] = ACTIONS(591), - [sym___c_single_quote] = ACTIONS(591), - [sym___r_double_quote] = ACTIONS(591), - [sym___r_single_quote] = ACTIONS(591), - }, - [1112] = { - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(1294), - [sym_plain_type] = STATE(1312), - [sym__plain_type_without_special] = STATE(1344), - [sym_anon_struct_type] = STATE(1345), - [sym_multi_return_type] = STATE(1344), - [sym_result_type] = STATE(1344), - [sym_option_type] = STATE(1344), - [sym_qualified_type] = STATE(1294), - [sym_fixed_array_type] = STATE(1345), - [sym_array_type] = STATE(1345), - [sym_pointer_type] = STATE(1345), - [sym_wrong_pointer_type] = STATE(1345), - [sym_map_type] = STATE(1345), - [sym_channel_type] = STATE(1345), - [sym_shared_type] = STATE(1345), - [sym_thread_type] = STATE(1345), - [sym_atomic_type] = STATE(1345), - [sym_generic_type] = STATE(1345), - [sym_function_type] = STATE(1345), - [sym_identifier] = ACTIONS(3349), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(613), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(3353), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_RBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(3357), - [anon_sym_mut] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_BANG] = ACTIONS(3361), - [anon_sym_go] = ACTIONS(615), - [anon_sym_spawn] = ACTIONS(615), - [anon_sym_json_DOTdecode] = ACTIONS(613), - [anon_sym_LBRACK2] = ACTIONS(3363), - [anon_sym_TILDE] = ACTIONS(613), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(3365), - [anon_sym_LT_DASH] = ACTIONS(613), - [anon_sym_LT_LT] = ACTIONS(613), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(613), - [anon_sym_AMP_CARET] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_or] = ACTIONS(615), - [sym_none] = ACTIONS(615), - [sym_true] = ACTIONS(615), - [sym_false] = ACTIONS(615), - [sym_nil] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(613), - [anon_sym_POUND_LBRACK] = ACTIONS(613), - [anon_sym_if] = ACTIONS(615), - [anon_sym_DOLLARif] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(613), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(613), - [anon_sym_match] = ACTIONS(615), - [anon_sym_select] = ACTIONS(615), - [anon_sym_lock] = ACTIONS(615), - [anon_sym_rlock] = ACTIONS(615), - [anon_sym_unsafe] = ACTIONS(615), - [anon_sym_sql] = ACTIONS(615), - [sym_int_literal] = ACTIONS(615), - [sym_float_literal] = ACTIONS(613), - [sym_rune_literal] = ACTIONS(613), - [anon_sym_AT] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(3367), - [anon_sym_map_LBRACK] = ACTIONS(3369), - [anon_sym_chan] = ACTIONS(3371), - [anon_sym_thread] = ACTIONS(3373), - [anon_sym_atomic] = ACTIONS(3375), - [sym___double_quote] = ACTIONS(613), - [sym___single_quote] = ACTIONS(613), - [sym___c_double_quote] = ACTIONS(613), - [sym___c_single_quote] = ACTIONS(613), - [sym___r_double_quote] = ACTIONS(613), - [sym___r_single_quote] = ACTIONS(613), - }, - [1113] = { - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(1294), - [sym_plain_type] = STATE(1386), - [sym__plain_type_without_special] = STATE(1344), - [sym_anon_struct_type] = STATE(1345), - [sym_multi_return_type] = STATE(1344), - [sym_result_type] = STATE(1344), - [sym_option_type] = STATE(1344), - [sym_qualified_type] = STATE(1294), - [sym_fixed_array_type] = STATE(1345), - [sym_array_type] = STATE(1345), - [sym_pointer_type] = STATE(1345), - [sym_wrong_pointer_type] = STATE(1345), - [sym_map_type] = STATE(1345), - [sym_channel_type] = STATE(1345), - [sym_shared_type] = STATE(1345), - [sym_thread_type] = STATE(1345), - [sym_atomic_type] = STATE(1345), - [sym_generic_type] = STATE(1345), - [sym_function_type] = STATE(1345), - [sym_identifier] = ACTIONS(3349), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_as] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_COMMA] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_fn] = ACTIONS(3353), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(555), - [anon_sym_PERCENT] = ACTIONS(551), - [anon_sym_LT] = ACTIONS(555), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_EQ_EQ] = ACTIONS(551), - [anon_sym_BANG_EQ] = ACTIONS(551), - [anon_sym_LT_EQ] = ACTIONS(551), - [anon_sym_GT_EQ] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(551), - [anon_sym_RBRACK] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(3357), - [anon_sym_mut] = ACTIONS(555), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_BANG] = ACTIONS(3361), - [anon_sym_go] = ACTIONS(555), - [anon_sym_spawn] = ACTIONS(555), - [anon_sym_json_DOTdecode] = ACTIONS(551), - [anon_sym_LBRACK2] = ACTIONS(3363), - [anon_sym_TILDE] = ACTIONS(551), - [anon_sym_CARET] = ACTIONS(551), - [anon_sym_AMP] = ACTIONS(3365), - [anon_sym_LT_DASH] = ACTIONS(551), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_GT_GT_GT] = ACTIONS(551), - [anon_sym_AMP_CARET] = ACTIONS(551), - [anon_sym_AMP_AMP] = ACTIONS(551), - [anon_sym_PIPE_PIPE] = ACTIONS(551), - [anon_sym_or] = ACTIONS(555), - [sym_none] = ACTIONS(555), - [sym_true] = ACTIONS(555), - [sym_false] = ACTIONS(555), - [sym_nil] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(551), - [anon_sym_POUND_LBRACK] = ACTIONS(551), - [anon_sym_if] = ACTIONS(555), - [anon_sym_DOLLARif] = ACTIONS(555), - [anon_sym_is] = ACTIONS(555), - [anon_sym_BANGis] = ACTIONS(551), - [anon_sym_in] = ACTIONS(555), - [anon_sym_BANGin] = ACTIONS(551), - [anon_sym_match] = ACTIONS(555), - [anon_sym_select] = ACTIONS(555), - [anon_sym_lock] = ACTIONS(555), - [anon_sym_rlock] = ACTIONS(555), - [anon_sym_unsafe] = ACTIONS(555), - [anon_sym_sql] = ACTIONS(555), - [sym_int_literal] = ACTIONS(555), - [sym_float_literal] = ACTIONS(551), - [sym_rune_literal] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(555), - [anon_sym_shared] = ACTIONS(3367), - [anon_sym_map_LBRACK] = ACTIONS(3369), - [anon_sym_chan] = ACTIONS(3371), - [anon_sym_thread] = ACTIONS(3373), - [anon_sym_atomic] = ACTIONS(3375), - [sym___double_quote] = ACTIONS(551), - [sym___single_quote] = ACTIONS(551), - [sym___c_double_quote] = ACTIONS(551), - [sym___c_single_quote] = ACTIONS(551), - [sym___r_double_quote] = ACTIONS(551), - [sym___r_single_quote] = ACTIONS(551), + [ts_builtin_sym_end] = ACTIONS(2836), + [sym_identifier] = ACTIONS(2838), + [anon_sym_LF] = ACTIONS(2838), + [anon_sym_CR] = ACTIONS(2838), + [anon_sym_CR_LF] = ACTIONS(2838), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2838), + [anon_sym_as] = ACTIONS(2838), + [anon_sym_LBRACE] = ACTIONS(2838), + [anon_sym_COMMA] = ACTIONS(2784), + [anon_sym_const] = ACTIONS(2838), + [anon_sym_LPAREN] = ACTIONS(2838), + [anon_sym___global] = ACTIONS(2838), + [anon_sym_type] = ACTIONS(2838), + [anon_sym_PIPE] = ACTIONS(2838), + [anon_sym_fn] = ACTIONS(2838), + [anon_sym_PLUS] = ACTIONS(2838), + [anon_sym_DASH] = ACTIONS(2838), + [anon_sym_STAR] = ACTIONS(2838), + [anon_sym_SLASH] = ACTIONS(2838), + [anon_sym_PERCENT] = ACTIONS(2838), + [anon_sym_LT] = ACTIONS(2838), + [anon_sym_GT] = ACTIONS(2838), + [anon_sym_EQ_EQ] = ACTIONS(2838), + [anon_sym_BANG_EQ] = ACTIONS(2838), + [anon_sym_LT_EQ] = ACTIONS(2838), + [anon_sym_GT_EQ] = ACTIONS(2838), + [anon_sym_LBRACK] = ACTIONS(2836), + [anon_sym_struct] = ACTIONS(2838), + [anon_sym_union] = ACTIONS(2838), + [anon_sym_pub] = ACTIONS(2838), + [anon_sym_mut] = ACTIONS(2838), + [anon_sym_enum] = ACTIONS(2838), + [anon_sym_interface] = ACTIONS(2838), + [anon_sym_PLUS_PLUS] = ACTIONS(2838), + [anon_sym_DASH_DASH] = ACTIONS(2838), + [anon_sym_QMARK] = ACTIONS(2838), + [anon_sym_BANG] = ACTIONS(2838), + [anon_sym_go] = ACTIONS(2838), + [anon_sym_spawn] = ACTIONS(2838), + [anon_sym_json_DOTdecode] = ACTIONS(2838), + [anon_sym_LBRACK2] = ACTIONS(2838), + [anon_sym_TILDE] = ACTIONS(2838), + [anon_sym_CARET] = ACTIONS(2838), + [anon_sym_AMP] = ACTIONS(2838), + [anon_sym_LT_DASH] = ACTIONS(2838), + [anon_sym_LT_LT] = ACTIONS(2838), + [anon_sym_GT_GT] = ACTIONS(2838), + [anon_sym_GT_GT_GT] = ACTIONS(2838), + [anon_sym_AMP_CARET] = ACTIONS(2838), + [anon_sym_AMP_AMP] = ACTIONS(2838), + [anon_sym_PIPE_PIPE] = ACTIONS(2838), + [anon_sym_or] = ACTIONS(2838), + [sym_none] = ACTIONS(2838), + [sym_true] = ACTIONS(2838), + [sym_false] = ACTIONS(2838), + [sym_nil] = ACTIONS(2838), + [anon_sym_QMARK_DOT] = ACTIONS(2838), + [anon_sym_POUND_LBRACK] = ACTIONS(2838), + [anon_sym_if] = ACTIONS(2838), + [anon_sym_DOLLARif] = ACTIONS(2838), + [anon_sym_is] = ACTIONS(2838), + [anon_sym_BANGis] = ACTIONS(2838), + [anon_sym_in] = ACTIONS(2838), + [anon_sym_BANGin] = ACTIONS(2838), + [anon_sym_match] = ACTIONS(2838), + [anon_sym_select] = ACTIONS(2838), + [anon_sym_lock] = ACTIONS(2838), + [anon_sym_rlock] = ACTIONS(2838), + [anon_sym_unsafe] = ACTIONS(2838), + [anon_sym_sql] = ACTIONS(2838), + [sym_int_literal] = ACTIONS(2838), + [sym_float_literal] = ACTIONS(2838), + [sym_rune_literal] = ACTIONS(2838), + [anon_sym_AT] = ACTIONS(2838), + [anon_sym_shared] = ACTIONS(2838), + [anon_sym_map_LBRACK] = ACTIONS(2838), + [anon_sym_chan] = ACTIONS(2838), + [anon_sym_thread] = ACTIONS(2838), + [anon_sym_atomic] = ACTIONS(2838), + [anon_sym_assert] = ACTIONS(2838), + [anon_sym_defer] = ACTIONS(2838), + [anon_sym_goto] = ACTIONS(2838), + [anon_sym_break] = ACTIONS(2838), + [anon_sym_continue] = ACTIONS(2838), + [anon_sym_return] = ACTIONS(2838), + [anon_sym_DOLLARfor] = ACTIONS(2838), + [anon_sym_for] = ACTIONS(2838), + [anon_sym_POUND] = ACTIONS(2838), + [anon_sym_asm] = ACTIONS(2838), + [anon_sym_AT_LBRACK] = ACTIONS(2838), + [sym___double_quote] = ACTIONS(2838), + [sym___single_quote] = ACTIONS(2838), + [sym___c_double_quote] = ACTIONS(2838), + [sym___c_single_quote] = ACTIONS(2838), + [sym___r_double_quote] = ACTIONS(2838), + [sym___r_single_quote] = ACTIONS(2838), }, - [1114] = { - [sym_reference_expression] = STATE(4515), - [sym_type_reference_expression] = STATE(1411), - [sym_plain_type] = STATE(1435), - [sym__plain_type_without_special] = STATE(1465), - [sym_anon_struct_type] = STATE(1427), - [sym_multi_return_type] = STATE(1465), - [sym_result_type] = STATE(1465), - [sym_option_type] = STATE(1465), - [sym_qualified_type] = STATE(1411), - [sym_fixed_array_type] = STATE(1427), - [sym_array_type] = STATE(1427), - [sym_pointer_type] = STATE(1427), - [sym_wrong_pointer_type] = STATE(1427), - [sym_map_type] = STATE(1427), - [sym_channel_type] = STATE(1427), - [sym_shared_type] = STATE(1427), - [sym_thread_type] = STATE(1427), - [sym_atomic_type] = STATE(1427), - [sym_generic_type] = STATE(1427), - [sym_function_type] = STATE(1427), - [ts_builtin_sym_end] = ACTIONS(613), - [sym_identifier] = ACTIONS(3383), - [anon_sym_LF] = ACTIONS(615), - [anon_sym_CR] = ACTIONS(615), - [anon_sym_CR_LF] = ACTIONS(615), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_const] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(3385), - [anon_sym___global] = ACTIONS(615), - [anon_sym_type] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(3389), - [anon_sym_struct] = ACTIONS(3391), - [anon_sym_union] = ACTIONS(615), - [anon_sym_pub] = ACTIONS(615), - [anon_sym_mut] = ACTIONS(615), - [anon_sym_enum] = ACTIONS(615), - [anon_sym_interface] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(3393), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_go] = ACTIONS(615), - [anon_sym_spawn] = ACTIONS(615), - [anon_sym_json_DOTdecode] = ACTIONS(615), - [anon_sym_LBRACK2] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(3399), - [anon_sym_LT_DASH] = ACTIONS(615), - [sym_none] = ACTIONS(615), - [sym_true] = ACTIONS(615), - [sym_false] = ACTIONS(615), - [sym_nil] = ACTIONS(615), - [anon_sym_if] = ACTIONS(615), - [anon_sym_DOLLARif] = ACTIONS(615), - [anon_sym_match] = ACTIONS(615), - [anon_sym_select] = ACTIONS(615), - [anon_sym_lock] = ACTIONS(615), - [anon_sym_rlock] = ACTIONS(615), - [anon_sym_unsafe] = ACTIONS(615), - [anon_sym_sql] = ACTIONS(615), - [sym_int_literal] = ACTIONS(615), - [sym_float_literal] = ACTIONS(615), - [sym_rune_literal] = ACTIONS(615), - [anon_sym_AT] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(3401), - [anon_sym_map_LBRACK] = ACTIONS(3403), - [anon_sym_chan] = ACTIONS(3405), - [anon_sym_thread] = ACTIONS(3407), - [anon_sym_atomic] = ACTIONS(3409), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_defer] = ACTIONS(615), - [anon_sym_goto] = ACTIONS(615), - [anon_sym_break] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(615), - [anon_sym_return] = ACTIONS(615), - [anon_sym_DOLLARfor] = ACTIONS(615), - [anon_sym_for] = ACTIONS(615), - [anon_sym_POUND] = ACTIONS(615), - [anon_sym_asm] = ACTIONS(615), - [anon_sym_AT_LBRACK] = ACTIONS(615), - [sym___double_quote] = ACTIONS(615), - [sym___single_quote] = ACTIONS(615), - [sym___c_double_quote] = ACTIONS(615), - [sym___c_single_quote] = ACTIONS(615), - [sym___r_double_quote] = ACTIONS(615), - [sym___r_single_quote] = ACTIONS(615), + [1111] = { + [ts_builtin_sym_end] = ACTIONS(2972), + [sym_identifier] = ACTIONS(2974), + [anon_sym_LF] = ACTIONS(2974), + [anon_sym_CR] = ACTIONS(2974), + [anon_sym_CR_LF] = ACTIONS(2974), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2974), + [anon_sym_as] = ACTIONS(2974), + [anon_sym_LBRACE] = ACTIONS(2974), + [anon_sym_COMMA] = ACTIONS(2974), + [anon_sym_const] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2974), + [anon_sym___global] = ACTIONS(2974), + [anon_sym_type] = ACTIONS(2974), + [anon_sym_PIPE] = ACTIONS(2974), + [anon_sym_fn] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(2974), + [anon_sym_SLASH] = ACTIONS(2974), + [anon_sym_PERCENT] = ACTIONS(2974), + [anon_sym_LT] = ACTIONS(2974), + [anon_sym_GT] = ACTIONS(2974), + [anon_sym_EQ_EQ] = ACTIONS(2974), + [anon_sym_BANG_EQ] = ACTIONS(2974), + [anon_sym_LT_EQ] = ACTIONS(2974), + [anon_sym_GT_EQ] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_struct] = ACTIONS(2974), + [anon_sym_union] = ACTIONS(2974), + [anon_sym_pub] = ACTIONS(2974), + [anon_sym_mut] = ACTIONS(2974), + [anon_sym_enum] = ACTIONS(2974), + [anon_sym_interface] = ACTIONS(2974), + [anon_sym_PLUS_PLUS] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(2974), + [anon_sym_QMARK] = ACTIONS(2974), + [anon_sym_BANG] = ACTIONS(2974), + [anon_sym_go] = ACTIONS(2974), + [anon_sym_spawn] = ACTIONS(2974), + [anon_sym_json_DOTdecode] = ACTIONS(2974), + [anon_sym_LBRACK2] = ACTIONS(2974), + [anon_sym_TILDE] = ACTIONS(2974), + [anon_sym_CARET] = ACTIONS(2974), + [anon_sym_AMP] = ACTIONS(2974), + [anon_sym_LT_DASH] = ACTIONS(2974), + [anon_sym_LT_LT] = ACTIONS(2974), + [anon_sym_GT_GT] = ACTIONS(2974), + [anon_sym_GT_GT_GT] = ACTIONS(2974), + [anon_sym_AMP_CARET] = ACTIONS(2974), + [anon_sym_AMP_AMP] = ACTIONS(2974), + [anon_sym_PIPE_PIPE] = ACTIONS(2974), + [anon_sym_or] = ACTIONS(2974), + [sym_none] = ACTIONS(2974), + [sym_true] = ACTIONS(2974), + [sym_false] = ACTIONS(2974), + [sym_nil] = ACTIONS(2974), + [anon_sym_QMARK_DOT] = ACTIONS(2974), + [anon_sym_POUND_LBRACK] = ACTIONS(2974), + [anon_sym_if] = ACTIONS(2974), + [anon_sym_DOLLARif] = ACTIONS(2974), + [anon_sym_is] = ACTIONS(2974), + [anon_sym_BANGis] = ACTIONS(2974), + [anon_sym_in] = ACTIONS(2974), + [anon_sym_BANGin] = ACTIONS(2974), + [anon_sym_match] = ACTIONS(2974), + [anon_sym_select] = ACTIONS(2974), + [anon_sym_lock] = ACTIONS(2974), + [anon_sym_rlock] = ACTIONS(2974), + [anon_sym_unsafe] = ACTIONS(2974), + [anon_sym_sql] = ACTIONS(2974), + [sym_int_literal] = ACTIONS(2974), + [sym_float_literal] = ACTIONS(2974), + [sym_rune_literal] = ACTIONS(2974), + [anon_sym_AT] = ACTIONS(2974), + [anon_sym_shared] = ACTIONS(2974), + [anon_sym_map_LBRACK] = ACTIONS(2974), + [anon_sym_chan] = ACTIONS(2974), + [anon_sym_thread] = ACTIONS(2974), + [anon_sym_atomic] = ACTIONS(2974), + [anon_sym_assert] = ACTIONS(2974), + [anon_sym_defer] = ACTIONS(2974), + [anon_sym_goto] = ACTIONS(2974), + [anon_sym_break] = ACTIONS(2974), + [anon_sym_continue] = ACTIONS(2974), + [anon_sym_return] = ACTIONS(2974), + [anon_sym_DOLLARfor] = ACTIONS(2974), + [anon_sym_for] = ACTIONS(2974), + [anon_sym_POUND] = ACTIONS(2974), + [anon_sym_asm] = ACTIONS(2974), + [anon_sym_AT_LBRACK] = ACTIONS(2974), + [sym___double_quote] = ACTIONS(2974), + [sym___single_quote] = ACTIONS(2974), + [sym___c_double_quote] = ACTIONS(2974), + [sym___c_single_quote] = ACTIONS(2974), + [sym___r_double_quote] = ACTIONS(2974), + [sym___r_single_quote] = ACTIONS(2974), }, - [1115] = { - [sym_reference_expression] = STATE(4515), - [sym_type_reference_expression] = STATE(1411), - [sym_plain_type] = STATE(1437), - [sym__plain_type_without_special] = STATE(1465), - [sym_anon_struct_type] = STATE(1427), - [sym_multi_return_type] = STATE(1465), - [sym_result_type] = STATE(1465), - [sym_option_type] = STATE(1465), - [sym_qualified_type] = STATE(1411), - [sym_fixed_array_type] = STATE(1427), - [sym_array_type] = STATE(1427), - [sym_pointer_type] = STATE(1427), - [sym_wrong_pointer_type] = STATE(1427), - [sym_map_type] = STATE(1427), - [sym_channel_type] = STATE(1427), - [sym_shared_type] = STATE(1427), - [sym_thread_type] = STATE(1427), - [sym_atomic_type] = STATE(1427), - [sym_generic_type] = STATE(1427), - [sym_function_type] = STATE(1427), - [ts_builtin_sym_end] = ACTIONS(551), - [sym_identifier] = ACTIONS(3383), - [anon_sym_LF] = ACTIONS(555), - [anon_sym_CR] = ACTIONS(555), - [anon_sym_CR_LF] = ACTIONS(555), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(555), - [anon_sym_const] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(3385), - [anon_sym___global] = ACTIONS(555), - [anon_sym_type] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_fn] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(3389), - [anon_sym_struct] = ACTIONS(3391), - [anon_sym_union] = ACTIONS(555), - [anon_sym_pub] = ACTIONS(555), - [anon_sym_mut] = ACTIONS(555), - [anon_sym_enum] = ACTIONS(555), - [anon_sym_interface] = ACTIONS(555), - [anon_sym_QMARK] = ACTIONS(3393), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_go] = ACTIONS(555), - [anon_sym_spawn] = ACTIONS(555), - [anon_sym_json_DOTdecode] = ACTIONS(555), - [anon_sym_LBRACK2] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(555), - [anon_sym_CARET] = ACTIONS(555), - [anon_sym_AMP] = ACTIONS(3399), - [anon_sym_LT_DASH] = ACTIONS(555), - [sym_none] = ACTIONS(555), - [sym_true] = ACTIONS(555), - [sym_false] = ACTIONS(555), - [sym_nil] = ACTIONS(555), - [anon_sym_if] = ACTIONS(555), - [anon_sym_DOLLARif] = ACTIONS(555), - [anon_sym_match] = ACTIONS(555), - [anon_sym_select] = ACTIONS(555), - [anon_sym_lock] = ACTIONS(555), - [anon_sym_rlock] = ACTIONS(555), - [anon_sym_unsafe] = ACTIONS(555), - [anon_sym_sql] = ACTIONS(555), - [sym_int_literal] = ACTIONS(555), - [sym_float_literal] = ACTIONS(555), - [sym_rune_literal] = ACTIONS(555), - [anon_sym_AT] = ACTIONS(555), - [anon_sym_shared] = ACTIONS(3401), - [anon_sym_map_LBRACK] = ACTIONS(3403), - [anon_sym_chan] = ACTIONS(3405), - [anon_sym_thread] = ACTIONS(3407), - [anon_sym_atomic] = ACTIONS(3409), - [anon_sym_assert] = ACTIONS(555), - [anon_sym_defer] = ACTIONS(555), - [anon_sym_goto] = ACTIONS(555), - [anon_sym_break] = ACTIONS(555), - [anon_sym_continue] = ACTIONS(555), - [anon_sym_return] = ACTIONS(555), - [anon_sym_DOLLARfor] = ACTIONS(555), - [anon_sym_for] = ACTIONS(555), - [anon_sym_POUND] = ACTIONS(555), - [anon_sym_asm] = ACTIONS(555), - [anon_sym_AT_LBRACK] = ACTIONS(555), - [sym___double_quote] = ACTIONS(555), - [sym___single_quote] = ACTIONS(555), - [sym___c_double_quote] = ACTIONS(555), - [sym___c_single_quote] = ACTIONS(555), - [sym___r_double_quote] = ACTIONS(555), - [sym___r_single_quote] = ACTIONS(555), + [1112] = { + [ts_builtin_sym_end] = ACTIONS(2804), + [sym_identifier] = ACTIONS(2806), + [anon_sym_LF] = ACTIONS(2806), + [anon_sym_CR] = ACTIONS(2806), + [anon_sym_CR_LF] = ACTIONS(2806), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2806), + [anon_sym_as] = ACTIONS(2806), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_COMMA] = ACTIONS(2806), + [anon_sym_const] = ACTIONS(2806), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym___global] = ACTIONS(2806), + [anon_sym_type] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2806), + [anon_sym_PLUS] = ACTIONS(2806), + [anon_sym_DASH] = ACTIONS(2806), + [anon_sym_STAR] = ACTIONS(2806), + [anon_sym_SLASH] = ACTIONS(2806), + [anon_sym_PERCENT] = ACTIONS(2806), + [anon_sym_LT] = ACTIONS(2806), + [anon_sym_GT] = ACTIONS(2806), + [anon_sym_EQ_EQ] = ACTIONS(2806), + [anon_sym_BANG_EQ] = ACTIONS(2806), + [anon_sym_LT_EQ] = ACTIONS(2806), + [anon_sym_GT_EQ] = ACTIONS(2806), + [anon_sym_LBRACK] = ACTIONS(2804), + [anon_sym_struct] = ACTIONS(2806), + [anon_sym_union] = ACTIONS(2806), + [anon_sym_pub] = ACTIONS(2806), + [anon_sym_mut] = ACTIONS(2806), + [anon_sym_enum] = ACTIONS(2806), + [anon_sym_interface] = ACTIONS(2806), + [anon_sym_PLUS_PLUS] = ACTIONS(2806), + [anon_sym_DASH_DASH] = ACTIONS(2806), + [anon_sym_QMARK] = ACTIONS(2806), + [anon_sym_BANG] = ACTIONS(2806), + [anon_sym_go] = ACTIONS(2806), + [anon_sym_spawn] = ACTIONS(2806), + [anon_sym_json_DOTdecode] = ACTIONS(2806), + [anon_sym_LBRACK2] = ACTIONS(2806), + [anon_sym_TILDE] = ACTIONS(2806), + [anon_sym_CARET] = ACTIONS(2806), + [anon_sym_AMP] = ACTIONS(2806), + [anon_sym_LT_DASH] = ACTIONS(2806), + [anon_sym_LT_LT] = ACTIONS(2806), + [anon_sym_GT_GT] = ACTIONS(2806), + [anon_sym_GT_GT_GT] = ACTIONS(2806), + [anon_sym_AMP_CARET] = ACTIONS(2806), + [anon_sym_AMP_AMP] = ACTIONS(2806), + [anon_sym_PIPE_PIPE] = ACTIONS(2806), + [anon_sym_or] = ACTIONS(2806), + [sym_none] = ACTIONS(2806), + [sym_true] = ACTIONS(2806), + [sym_false] = ACTIONS(2806), + [sym_nil] = ACTIONS(2806), + [anon_sym_QMARK_DOT] = ACTIONS(2806), + [anon_sym_POUND_LBRACK] = ACTIONS(2806), + [anon_sym_if] = ACTIONS(2806), + [anon_sym_DOLLARif] = ACTIONS(2806), + [anon_sym_is] = ACTIONS(2806), + [anon_sym_BANGis] = ACTIONS(2806), + [anon_sym_in] = ACTIONS(2806), + [anon_sym_BANGin] = ACTIONS(2806), + [anon_sym_match] = ACTIONS(2806), + [anon_sym_select] = ACTIONS(2806), + [anon_sym_lock] = ACTIONS(2806), + [anon_sym_rlock] = ACTIONS(2806), + [anon_sym_unsafe] = ACTIONS(2806), + [anon_sym_sql] = ACTIONS(2806), + [sym_int_literal] = ACTIONS(2806), + [sym_float_literal] = ACTIONS(2806), + [sym_rune_literal] = ACTIONS(2806), + [anon_sym_AT] = ACTIONS(2806), + [anon_sym_shared] = ACTIONS(2806), + [anon_sym_map_LBRACK] = ACTIONS(2806), + [anon_sym_chan] = ACTIONS(2806), + [anon_sym_thread] = ACTIONS(2806), + [anon_sym_atomic] = ACTIONS(2806), + [anon_sym_assert] = ACTIONS(2806), + [anon_sym_defer] = ACTIONS(2806), + [anon_sym_goto] = ACTIONS(2806), + [anon_sym_break] = ACTIONS(2806), + [anon_sym_continue] = ACTIONS(2806), + [anon_sym_return] = ACTIONS(2806), + [anon_sym_DOLLARfor] = ACTIONS(2806), + [anon_sym_for] = ACTIONS(2806), + [anon_sym_POUND] = ACTIONS(2806), + [anon_sym_asm] = ACTIONS(2806), + [anon_sym_AT_LBRACK] = ACTIONS(2806), + [sym___double_quote] = ACTIONS(2806), + [sym___single_quote] = ACTIONS(2806), + [sym___c_double_quote] = ACTIONS(2806), + [sym___c_single_quote] = ACTIONS(2806), + [sym___r_double_quote] = ACTIONS(2806), + [sym___r_single_quote] = ACTIONS(2806), }, - [1116] = { - [sym_reference_expression] = STATE(4515), - [sym_type_reference_expression] = STATE(1411), - [sym_plain_type] = STATE(1472), - [sym__plain_type_without_special] = STATE(1465), - [sym_anon_struct_type] = STATE(1427), - [sym_multi_return_type] = STATE(1465), - [sym_result_type] = STATE(1465), - [sym_option_type] = STATE(1465), - [sym_qualified_type] = STATE(1411), - [sym_fixed_array_type] = STATE(1427), - [sym_array_type] = STATE(1427), - [sym_pointer_type] = STATE(1427), - [sym_wrong_pointer_type] = STATE(1427), - [sym_map_type] = STATE(1427), - [sym_channel_type] = STATE(1427), - [sym_shared_type] = STATE(1427), - [sym_thread_type] = STATE(1427), - [sym_atomic_type] = STATE(1427), - [sym_generic_type] = STATE(1427), - [sym_function_type] = STATE(1427), - [ts_builtin_sym_end] = ACTIONS(587), - [sym_identifier] = ACTIONS(3383), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(589), + [1113] = { + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2393), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(591), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(593), + [anon_sym_as] = ACTIONS(593), [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_const] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3385), - [anon_sym___global] = ACTIONS(589), - [anon_sym_type] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3389), - [anon_sym_struct] = ACTIONS(3391), - [anon_sym_union] = ACTIONS(589), - [anon_sym_pub] = ACTIONS(589), - [anon_sym_mut] = ACTIONS(589), - [anon_sym_enum] = ACTIONS(589), - [anon_sym_interface] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(3393), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_go] = ACTIONS(589), - [anon_sym_spawn] = ACTIONS(589), - [anon_sym_json_DOTdecode] = ACTIONS(589), - [anon_sym_LBRACK2] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(589), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(3399), - [anon_sym_LT_DASH] = ACTIONS(589), - [sym_none] = ACTIONS(589), - [sym_true] = ACTIONS(589), - [sym_false] = ACTIONS(589), - [sym_nil] = ACTIONS(589), - [anon_sym_if] = ACTIONS(589), - [anon_sym_DOLLARif] = ACTIONS(589), - [anon_sym_match] = ACTIONS(589), - [anon_sym_select] = ACTIONS(589), - [anon_sym_lock] = ACTIONS(589), - [anon_sym_rlock] = ACTIONS(589), - [anon_sym_unsafe] = ACTIONS(589), - [anon_sym_sql] = ACTIONS(589), - [sym_int_literal] = ACTIONS(589), - [sym_float_literal] = ACTIONS(589), - [sym_rune_literal] = ACTIONS(589), - [anon_sym_AT] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(3401), - [anon_sym_map_LBRACK] = ACTIONS(3403), - [anon_sym_chan] = ACTIONS(3405), - [anon_sym_thread] = ACTIONS(3407), - [anon_sym_atomic] = ACTIONS(3409), - [anon_sym_assert] = ACTIONS(589), - [anon_sym_defer] = ACTIONS(589), - [anon_sym_goto] = ACTIONS(589), - [anon_sym_break] = ACTIONS(589), - [anon_sym_continue] = ACTIONS(589), - [anon_sym_return] = ACTIONS(589), - [anon_sym_DOLLARfor] = ACTIONS(589), - [anon_sym_for] = ACTIONS(589), - [anon_sym_POUND] = ACTIONS(589), - [anon_sym_asm] = ACTIONS(589), - [anon_sym_AT_LBRACK] = ACTIONS(589), - [sym___double_quote] = ACTIONS(589), - [sym___single_quote] = ACTIONS(589), - [sym___c_double_quote] = ACTIONS(589), - [sym___c_single_quote] = ACTIONS(589), - [sym___r_double_quote] = ACTIONS(589), - [sym___r_single_quote] = ACTIONS(589), - }, - [1117] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [anon_sym_LF] = ACTIONS(585), - [anon_sym_CR] = ACTIONS(585), - [anon_sym_CR_LF] = ACTIONS(585), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_RBRACE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(585), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_LT_DASH] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_AMP_CARET] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_or] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(585), - [anon_sym_STAR_EQ] = ACTIONS(585), - [anon_sym_SLASH_EQ] = ACTIONS(585), - [anon_sym_PERCENT_EQ] = ACTIONS(585), - [anon_sym_LT_LT_EQ] = ACTIONS(585), - [anon_sym_GT_GT_EQ] = ACTIONS(585), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(585), - [anon_sym_AMP_EQ] = ACTIONS(585), - [anon_sym_AMP_CARET_EQ] = ACTIONS(585), - [anon_sym_PLUS_EQ] = ACTIONS(585), - [anon_sym_DASH_EQ] = ACTIONS(585), - [anon_sym_PIPE_EQ] = ACTIONS(585), - [anon_sym_CARET_EQ] = ACTIONS(585), - [anon_sym_COLON_EQ] = ACTIONS(585), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(537), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - }, - [1118] = { - [sym_reference_expression] = STATE(4409), - [sym_type_reference_expression] = STATE(1666), - [sym_plain_type] = STATE(1654), - [sym__plain_type_without_special] = STATE(1665), - [sym_anon_struct_type] = STATE(1641), - [sym_multi_return_type] = STATE(1665), - [sym_result_type] = STATE(1665), - [sym_option_type] = STATE(1665), - [sym_qualified_type] = STATE(1666), - [sym_fixed_array_type] = STATE(1641), - [sym_array_type] = STATE(1641), - [sym_pointer_type] = STATE(1641), - [sym_wrong_pointer_type] = STATE(1641), - [sym_map_type] = STATE(1641), - [sym_channel_type] = STATE(1641), - [sym_shared_type] = STATE(1641), - [sym_thread_type] = STATE(1641), - [sym_atomic_type] = STATE(1641), - [sym_generic_type] = STATE(1641), - [sym_function_type] = STATE(1641), - [sym_identifier] = ACTIONS(3411), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_RBRACE] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_EQ] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3417), - [anon_sym_SLASH] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_STAR] = ACTIONS(3357), + [anon_sym_SLASH] = ACTIONS(593), [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), [anon_sym_EQ_EQ] = ACTIONS(589), [anon_sym_BANG_EQ] = ACTIONS(589), [anon_sym_LT_EQ] = ACTIONS(589), [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_struct] = ACTIONS(3419), - [anon_sym_COLON] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(589), + [anon_sym_RBRACK] = ACTIONS(589), + [anon_sym_struct] = ACTIONS(601), + [anon_sym_mut] = ACTIONS(593), [anon_sym_PLUS_PLUS] = ACTIONS(589), [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(3421), - [anon_sym_BANG] = ACTIONS(3423), - [anon_sym_LBRACK2] = ACTIONS(3425), + [anon_sym_QMARK] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(3359), + [anon_sym_go] = ACTIONS(593), + [anon_sym_spawn] = ACTIONS(593), + [anon_sym_json_DOTdecode] = ACTIONS(589), + [anon_sym_LBRACK2] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(589), [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(3427), + [anon_sym_AMP] = ACTIONS(607), [anon_sym_LT_DASH] = ACTIONS(589), [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(593), [anon_sym_GT_GT_GT] = ACTIONS(589), [anon_sym_AMP_CARET] = ACTIONS(589), [anon_sym_AMP_AMP] = ACTIONS(589), [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(589), + [anon_sym_or] = ACTIONS(593), + [sym_none] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [sym_nil] = ACTIONS(593), [anon_sym_QMARK_DOT] = ACTIONS(589), [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), + [anon_sym_if] = ACTIONS(593), + [anon_sym_DOLLARif] = ACTIONS(593), + [anon_sym_is] = ACTIONS(593), [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(589), + [anon_sym_in] = ACTIONS(593), [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_STAR_EQ] = ACTIONS(589), - [anon_sym_SLASH_EQ] = ACTIONS(589), - [anon_sym_PERCENT_EQ] = ACTIONS(589), - [anon_sym_LT_LT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(589), - [anon_sym_AMP_EQ] = ACTIONS(589), - [anon_sym_AMP_CARET_EQ] = ACTIONS(589), - [anon_sym_PLUS_EQ] = ACTIONS(589), - [anon_sym_DASH_EQ] = ACTIONS(589), - [anon_sym_PIPE_EQ] = ACTIONS(589), - [anon_sym_CARET_EQ] = ACTIONS(589), - [anon_sym_COLON_EQ] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(3429), - [anon_sym_map_LBRACK] = ACTIONS(3431), - [anon_sym_chan] = ACTIONS(3433), - [anon_sym_thread] = ACTIONS(3435), - [anon_sym_atomic] = ACTIONS(3437), + [anon_sym_match] = ACTIONS(593), + [anon_sym_select] = ACTIONS(593), + [anon_sym_lock] = ACTIONS(593), + [anon_sym_rlock] = ACTIONS(593), + [anon_sym_unsafe] = ACTIONS(593), + [anon_sym_sql] = ACTIONS(593), + [sym_int_literal] = ACTIONS(593), + [sym_float_literal] = ACTIONS(589), + [sym_rune_literal] = ACTIONS(589), + [anon_sym_AT] = ACTIONS(593), + [anon_sym_shared] = ACTIONS(609), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(589), + [sym___single_quote] = ACTIONS(589), + [sym___c_double_quote] = ACTIONS(589), + [sym___c_single_quote] = ACTIONS(589), + [sym___r_double_quote] = ACTIONS(589), + [sym___r_single_quote] = ACTIONS(589), }, - [1119] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [anon_sym_LF] = ACTIONS(595), - [anon_sym_CR] = ACTIONS(595), - [anon_sym_CR_LF] = ACTIONS(595), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_as] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_RBRACE] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(597), - [anon_sym_EQ] = ACTIONS(595), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [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(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(3439), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_DASH] = ACTIONS(595), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [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(595), - [anon_sym_QMARK_DOT] = ACTIONS(595), - [anon_sym_POUND_LBRACK] = ACTIONS(595), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(595), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(595), - [anon_sym_STAR_EQ] = ACTIONS(595), - [anon_sym_SLASH_EQ] = ACTIONS(595), - [anon_sym_PERCENT_EQ] = ACTIONS(595), - [anon_sym_LT_LT_EQ] = ACTIONS(595), - [anon_sym_GT_GT_EQ] = ACTIONS(595), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(595), - [anon_sym_AMP_EQ] = ACTIONS(595), - [anon_sym_AMP_CARET_EQ] = ACTIONS(595), - [anon_sym_PLUS_EQ] = ACTIONS(595), - [anon_sym_DASH_EQ] = ACTIONS(595), - [anon_sym_PIPE_EQ] = ACTIONS(595), - [anon_sym_CARET_EQ] = ACTIONS(595), - [anon_sym_COLON_EQ] = ACTIONS(595), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(537), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), + [1114] = { + [sym_reference_expression] = STATE(4427), + [sym_type_reference_expression] = STATE(1303), + [sym_plain_type] = STATE(1369), + [sym__plain_type_without_special] = STATE(1347), + [sym_anon_struct_type] = STATE(1406), + [sym_multi_return_type] = STATE(1347), + [sym_result_type] = STATE(1347), + [sym_option_type] = STATE(1347), + [sym_qualified_type] = STATE(1303), + [sym_fixed_array_type] = STATE(1406), + [sym_array_type] = STATE(1406), + [sym_pointer_type] = STATE(1406), + [sym_wrong_pointer_type] = STATE(1406), + [sym_map_type] = STATE(1406), + [sym_channel_type] = STATE(1406), + [sym_shared_type] = STATE(1406), + [sym_thread_type] = STATE(1406), + [sym_atomic_type] = STATE(1406), + [sym_generic_type] = STATE(1406), + [sym_function_type] = STATE(1406), + [sym_identifier] = ACTIONS(3361), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(561), + [anon_sym_as] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(557), + [anon_sym_COMMA] = ACTIONS(557), + [anon_sym_LPAREN] = ACTIONS(3363), + [anon_sym_PIPE] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(3365), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(3367), + [anon_sym_SLASH] = ACTIONS(561), + [anon_sym_PERCENT] = ACTIONS(557), + [anon_sym_LT] = ACTIONS(561), + [anon_sym_GT] = ACTIONS(561), + [anon_sym_EQ_EQ] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(557), + [anon_sym_LT_EQ] = ACTIONS(557), + [anon_sym_GT_EQ] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_RBRACK] = ACTIONS(557), + [anon_sym_struct] = ACTIONS(3369), + [anon_sym_mut] = ACTIONS(561), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [anon_sym_QMARK] = ACTIONS(3371), + [anon_sym_BANG] = ACTIONS(3373), + [anon_sym_go] = ACTIONS(561), + [anon_sym_spawn] = ACTIONS(561), + [anon_sym_json_DOTdecode] = ACTIONS(557), + [anon_sym_LBRACK2] = ACTIONS(3375), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(557), + [anon_sym_AMP] = ACTIONS(3377), + [anon_sym_LT_DASH] = ACTIONS(557), + [anon_sym_LT_LT] = ACTIONS(557), + [anon_sym_GT_GT] = ACTIONS(561), + [anon_sym_GT_GT_GT] = ACTIONS(557), + [anon_sym_AMP_CARET] = ACTIONS(557), + [anon_sym_AMP_AMP] = ACTIONS(557), + [anon_sym_PIPE_PIPE] = ACTIONS(557), + [anon_sym_or] = ACTIONS(561), + [sym_none] = ACTIONS(561), + [sym_true] = ACTIONS(561), + [sym_false] = ACTIONS(561), + [sym_nil] = ACTIONS(561), + [anon_sym_QMARK_DOT] = ACTIONS(557), + [anon_sym_POUND_LBRACK] = ACTIONS(557), + [anon_sym_if] = ACTIONS(561), + [anon_sym_DOLLARif] = ACTIONS(561), + [anon_sym_is] = ACTIONS(561), + [anon_sym_BANGis] = ACTIONS(557), + [anon_sym_in] = ACTIONS(561), + [anon_sym_BANGin] = ACTIONS(557), + [anon_sym_match] = ACTIONS(561), + [anon_sym_select] = ACTIONS(561), + [anon_sym_lock] = ACTIONS(561), + [anon_sym_rlock] = ACTIONS(561), + [anon_sym_unsafe] = ACTIONS(561), + [anon_sym_sql] = ACTIONS(561), + [sym_int_literal] = ACTIONS(561), + [sym_float_literal] = ACTIONS(557), + [sym_rune_literal] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_shared] = ACTIONS(3379), + [anon_sym_map_LBRACK] = ACTIONS(3381), + [anon_sym_chan] = ACTIONS(3383), + [anon_sym_thread] = ACTIONS(3385), + [anon_sym_atomic] = ACTIONS(3387), + [sym___double_quote] = ACTIONS(557), + [sym___single_quote] = ACTIONS(557), + [sym___c_double_quote] = ACTIONS(557), + [sym___c_single_quote] = ACTIONS(557), + [sym___r_double_quote] = ACTIONS(557), + [sym___r_single_quote] = ACTIONS(557), }, - [1120] = { - [sym_reference_expression] = STATE(4409), - [sym_type_reference_expression] = STATE(1666), - [sym_plain_type] = STATE(1643), - [sym__plain_type_without_special] = STATE(1665), - [sym_anon_struct_type] = STATE(1641), - [sym_multi_return_type] = STATE(1665), - [sym_result_type] = STATE(1665), - [sym_option_type] = STATE(1665), - [sym_qualified_type] = STATE(1666), - [sym_fixed_array_type] = STATE(1641), - [sym_array_type] = STATE(1641), - [sym_pointer_type] = STATE(1641), - [sym_wrong_pointer_type] = STATE(1641), - [sym_map_type] = STATE(1641), - [sym_channel_type] = STATE(1641), - [sym_shared_type] = STATE(1641), - [sym_thread_type] = STATE(1641), - [sym_atomic_type] = STATE(1641), - [sym_generic_type] = STATE(1641), - [sym_function_type] = STATE(1641), - [sym_identifier] = ACTIONS(3411), - [anon_sym_LF] = ACTIONS(615), - [anon_sym_CR] = ACTIONS(615), - [anon_sym_CR_LF] = ACTIONS(615), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), + [1115] = { + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2359), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(617), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(617), + [anon_sym_as] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(615), [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_EQ] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(3417), - [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_fn] = ACTIONS(617), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_STAR] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(617), [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(617), + [anon_sym_GT] = ACTIONS(617), [anon_sym_EQ_EQ] = ACTIONS(615), [anon_sym_BANG_EQ] = ACTIONS(615), [anon_sym_LT_EQ] = ACTIONS(615), [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(3419), - [anon_sym_COLON] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_RBRACK] = ACTIONS(615), + [anon_sym_struct] = ACTIONS(617), + [anon_sym_mut] = ACTIONS(617), [anon_sym_PLUS_PLUS] = ACTIONS(615), [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(3421), - [anon_sym_BANG] = ACTIONS(3423), - [anon_sym_LBRACK2] = ACTIONS(3425), + [anon_sym_QMARK] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_go] = ACTIONS(617), + [anon_sym_spawn] = ACTIONS(617), + [anon_sym_json_DOTdecode] = ACTIONS(615), + [anon_sym_LBRACK2] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(615), [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(3427), + [anon_sym_AMP] = ACTIONS(617), [anon_sym_LT_DASH] = ACTIONS(615), [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), + [anon_sym_GT_GT] = ACTIONS(617), [anon_sym_GT_GT_GT] = ACTIONS(615), [anon_sym_AMP_CARET] = ACTIONS(615), [anon_sym_AMP_AMP] = ACTIONS(615), [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_or] = ACTIONS(615), + [anon_sym_or] = ACTIONS(617), + [sym_none] = ACTIONS(617), + [sym_true] = ACTIONS(617), + [sym_false] = ACTIONS(617), + [sym_nil] = ACTIONS(617), [anon_sym_QMARK_DOT] = ACTIONS(615), [anon_sym_POUND_LBRACK] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), + [anon_sym_if] = ACTIONS(617), + [anon_sym_DOLLARif] = ACTIONS(617), + [anon_sym_is] = ACTIONS(617), [anon_sym_BANGis] = ACTIONS(615), - [anon_sym_in] = ACTIONS(615), + [anon_sym_in] = ACTIONS(617), [anon_sym_BANGin] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_LT_LT_EQ] = ACTIONS(615), - [anon_sym_GT_GT_EQ] = ACTIONS(615), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(615), - [anon_sym_AMP_EQ] = ACTIONS(615), - [anon_sym_AMP_CARET_EQ] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_PIPE_EQ] = ACTIONS(615), - [anon_sym_CARET_EQ] = ACTIONS(615), - [anon_sym_COLON_EQ] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(3429), - [anon_sym_map_LBRACK] = ACTIONS(3431), - [anon_sym_chan] = ACTIONS(3433), - [anon_sym_thread] = ACTIONS(3435), - [anon_sym_atomic] = ACTIONS(3437), + [anon_sym_match] = ACTIONS(617), + [anon_sym_select] = ACTIONS(617), + [anon_sym_lock] = ACTIONS(617), + [anon_sym_rlock] = ACTIONS(617), + [anon_sym_unsafe] = ACTIONS(617), + [anon_sym_sql] = ACTIONS(617), + [sym_int_literal] = ACTIONS(617), + [sym_float_literal] = ACTIONS(615), + [sym_rune_literal] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(617), + [anon_sym_shared] = ACTIONS(617), + [anon_sym_map_LBRACK] = ACTIONS(615), + [anon_sym_chan] = ACTIONS(617), + [anon_sym_thread] = ACTIONS(617), + [anon_sym_atomic] = ACTIONS(617), + [sym___double_quote] = ACTIONS(615), + [sym___single_quote] = ACTIONS(615), + [sym___c_double_quote] = ACTIONS(615), + [sym___c_single_quote] = ACTIONS(615), + [sym___r_double_quote] = ACTIONS(615), + [sym___r_single_quote] = ACTIONS(615), + }, + [1116] = { + [sym_reference_expression] = STATE(4427), + [sym_type_reference_expression] = STATE(1303), + [sym_plain_type] = STATE(1311), + [sym__plain_type_without_special] = STATE(1347), + [sym_anon_struct_type] = STATE(1406), + [sym_multi_return_type] = STATE(1347), + [sym_result_type] = STATE(1347), + [sym_option_type] = STATE(1347), + [sym_qualified_type] = STATE(1303), + [sym_fixed_array_type] = STATE(1406), + [sym_array_type] = STATE(1406), + [sym_pointer_type] = STATE(1406), + [sym_wrong_pointer_type] = STATE(1406), + [sym_map_type] = STATE(1406), + [sym_channel_type] = STATE(1406), + [sym_shared_type] = STATE(1406), + [sym_thread_type] = STATE(1406), + [sym_atomic_type] = STATE(1406), + [sym_generic_type] = STATE(1406), + [sym_function_type] = STATE(1406), + [sym_identifier] = ACTIONS(3361), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_as] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(619), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(3363), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_fn] = ACTIONS(3365), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(3367), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(621), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_EQ_EQ] = ACTIONS(619), + [anon_sym_BANG_EQ] = ACTIONS(619), + [anon_sym_LT_EQ] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(619), + [anon_sym_RBRACK] = ACTIONS(619), + [anon_sym_struct] = ACTIONS(3369), + [anon_sym_mut] = ACTIONS(621), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(3371), + [anon_sym_BANG] = ACTIONS(3373), + [anon_sym_go] = ACTIONS(621), + [anon_sym_spawn] = ACTIONS(621), + [anon_sym_json_DOTdecode] = ACTIONS(619), + [anon_sym_LBRACK2] = ACTIONS(3375), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(3377), + [anon_sym_LT_DASH] = ACTIONS(619), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(621), + [anon_sym_GT_GT_GT] = ACTIONS(619), + [anon_sym_AMP_CARET] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(619), + [anon_sym_PIPE_PIPE] = ACTIONS(619), + [anon_sym_or] = ACTIONS(621), + [sym_none] = ACTIONS(621), + [sym_true] = ACTIONS(621), + [sym_false] = ACTIONS(621), + [sym_nil] = ACTIONS(621), + [anon_sym_QMARK_DOT] = ACTIONS(619), + [anon_sym_POUND_LBRACK] = ACTIONS(619), + [anon_sym_if] = ACTIONS(621), + [anon_sym_DOLLARif] = ACTIONS(621), + [anon_sym_is] = ACTIONS(621), + [anon_sym_BANGis] = ACTIONS(619), + [anon_sym_in] = ACTIONS(621), + [anon_sym_BANGin] = ACTIONS(619), + [anon_sym_match] = ACTIONS(621), + [anon_sym_select] = ACTIONS(621), + [anon_sym_lock] = ACTIONS(621), + [anon_sym_rlock] = ACTIONS(621), + [anon_sym_unsafe] = ACTIONS(621), + [anon_sym_sql] = ACTIONS(621), + [sym_int_literal] = ACTIONS(621), + [sym_float_literal] = ACTIONS(619), + [sym_rune_literal] = ACTIONS(619), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_shared] = ACTIONS(3379), + [anon_sym_map_LBRACK] = ACTIONS(3381), + [anon_sym_chan] = ACTIONS(3383), + [anon_sym_thread] = ACTIONS(3385), + [anon_sym_atomic] = ACTIONS(3387), + [sym___double_quote] = ACTIONS(619), + [sym___single_quote] = ACTIONS(619), + [sym___c_double_quote] = ACTIONS(619), + [sym___c_single_quote] = ACTIONS(619), + [sym___r_double_quote] = ACTIONS(619), + [sym___r_single_quote] = ACTIONS(619), + }, + [1117] = { + [sym_reference_expression] = STATE(4427), + [sym_type_reference_expression] = STATE(1303), + [sym_plain_type] = STATE(1315), + [sym__plain_type_without_special] = STATE(1347), + [sym_anon_struct_type] = STATE(1406), + [sym_multi_return_type] = STATE(1347), + [sym_result_type] = STATE(1347), + [sym_option_type] = STATE(1347), + [sym_qualified_type] = STATE(1303), + [sym_fixed_array_type] = STATE(1406), + [sym_array_type] = STATE(1406), + [sym_pointer_type] = STATE(1406), + [sym_wrong_pointer_type] = STATE(1406), + [sym_map_type] = STATE(1406), + [sym_channel_type] = STATE(1406), + [sym_shared_type] = STATE(1406), + [sym_thread_type] = STATE(1406), + [sym_atomic_type] = STATE(1406), + [sym_generic_type] = STATE(1406), + [sym_function_type] = STATE(1406), + [sym_identifier] = ACTIONS(3361), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(613), + [anon_sym_as] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(3363), + [anon_sym_PIPE] = ACTIONS(613), + [anon_sym_fn] = ACTIONS(3365), + [anon_sym_PLUS] = ACTIONS(613), + [anon_sym_DASH] = ACTIONS(613), + [anon_sym_STAR] = ACTIONS(3367), + [anon_sym_SLASH] = ACTIONS(613), + [anon_sym_PERCENT] = ACTIONS(611), + [anon_sym_LT] = ACTIONS(613), + [anon_sym_GT] = ACTIONS(613), + [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(611), + [anon_sym_RBRACK] = ACTIONS(611), + [anon_sym_struct] = ACTIONS(3369), + [anon_sym_mut] = ACTIONS(613), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_QMARK] = ACTIONS(3371), + [anon_sym_BANG] = ACTIONS(3373), + [anon_sym_go] = ACTIONS(613), + [anon_sym_spawn] = ACTIONS(613), + [anon_sym_json_DOTdecode] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(3375), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_CARET] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(3377), + [anon_sym_LT_DASH] = ACTIONS(611), + [anon_sym_LT_LT] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(613), + [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(613), + [sym_none] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_nil] = ACTIONS(613), + [anon_sym_QMARK_DOT] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(611), + [anon_sym_if] = ACTIONS(613), + [anon_sym_DOLLARif] = ACTIONS(613), + [anon_sym_is] = ACTIONS(613), + [anon_sym_BANGis] = ACTIONS(611), + [anon_sym_in] = ACTIONS(613), + [anon_sym_BANGin] = ACTIONS(611), + [anon_sym_match] = ACTIONS(613), + [anon_sym_select] = ACTIONS(613), + [anon_sym_lock] = ACTIONS(613), + [anon_sym_rlock] = ACTIONS(613), + [anon_sym_unsafe] = ACTIONS(613), + [anon_sym_sql] = ACTIONS(613), + [sym_int_literal] = ACTIONS(613), + [sym_float_literal] = ACTIONS(611), + [sym_rune_literal] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(613), + [anon_sym_shared] = ACTIONS(3379), + [anon_sym_map_LBRACK] = ACTIONS(3381), + [anon_sym_chan] = ACTIONS(3383), + [anon_sym_thread] = ACTIONS(3385), + [anon_sym_atomic] = ACTIONS(3387), + [sym___double_quote] = ACTIONS(611), + [sym___single_quote] = ACTIONS(611), + [sym___c_double_quote] = ACTIONS(611), + [sym___c_single_quote] = ACTIONS(611), + [sym___r_double_quote] = ACTIONS(611), + [sym___r_single_quote] = ACTIONS(611), + }, + [1118] = { + [sym_reference_expression] = STATE(4462), + [sym_type_reference_expression] = STATE(1415), + [sym_plain_type] = STATE(1482), + [sym__plain_type_without_special] = STATE(1479), + [sym_anon_struct_type] = STATE(1481), + [sym_multi_return_type] = STATE(1479), + [sym_result_type] = STATE(1479), + [sym_option_type] = STATE(1479), + [sym_qualified_type] = STATE(1415), + [sym_fixed_array_type] = STATE(1481), + [sym_array_type] = STATE(1481), + [sym_pointer_type] = STATE(1481), + [sym_wrong_pointer_type] = STATE(1481), + [sym_map_type] = STATE(1481), + [sym_channel_type] = STATE(1481), + [sym_shared_type] = STATE(1481), + [sym_thread_type] = STATE(1481), + [sym_atomic_type] = STATE(1481), + [sym_generic_type] = STATE(1481), + [sym_function_type] = STATE(1481), + [ts_builtin_sym_end] = ACTIONS(557), + [sym_identifier] = ACTIONS(3389), + [anon_sym_LF] = ACTIONS(561), + [anon_sym_CR] = ACTIONS(561), + [anon_sym_CR_LF] = ACTIONS(561), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_const] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(3391), + [anon_sym___global] = ACTIONS(561), + [anon_sym_type] = ACTIONS(561), + [anon_sym_PIPE] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(3393), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(3397), + [anon_sym_union] = ACTIONS(561), + [anon_sym_pub] = ACTIONS(561), + [anon_sym_mut] = ACTIONS(561), + [anon_sym_enum] = ACTIONS(561), + [anon_sym_interface] = ACTIONS(561), + [anon_sym_QMARK] = ACTIONS(3399), + [anon_sym_BANG] = ACTIONS(3401), + [anon_sym_go] = ACTIONS(561), + [anon_sym_spawn] = ACTIONS(561), + [anon_sym_json_DOTdecode] = ACTIONS(561), + [anon_sym_LBRACK2] = ACTIONS(3403), + [anon_sym_TILDE] = ACTIONS(561), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(3405), + [anon_sym_LT_DASH] = ACTIONS(561), + [sym_none] = ACTIONS(561), + [sym_true] = ACTIONS(561), + [sym_false] = ACTIONS(561), + [sym_nil] = ACTIONS(561), + [anon_sym_if] = ACTIONS(561), + [anon_sym_DOLLARif] = ACTIONS(561), + [anon_sym_match] = ACTIONS(561), + [anon_sym_select] = ACTIONS(561), + [anon_sym_lock] = ACTIONS(561), + [anon_sym_rlock] = ACTIONS(561), + [anon_sym_unsafe] = ACTIONS(561), + [anon_sym_sql] = ACTIONS(561), + [sym_int_literal] = ACTIONS(561), + [sym_float_literal] = ACTIONS(561), + [sym_rune_literal] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(561), + [anon_sym_shared] = ACTIONS(3407), + [anon_sym_map_LBRACK] = ACTIONS(3409), + [anon_sym_chan] = ACTIONS(3411), + [anon_sym_thread] = ACTIONS(3413), + [anon_sym_atomic] = ACTIONS(3415), + [anon_sym_assert] = ACTIONS(561), + [anon_sym_defer] = ACTIONS(561), + [anon_sym_goto] = ACTIONS(561), + [anon_sym_break] = ACTIONS(561), + [anon_sym_continue] = ACTIONS(561), + [anon_sym_return] = ACTIONS(561), + [anon_sym_DOLLARfor] = ACTIONS(561), + [anon_sym_for] = ACTIONS(561), + [anon_sym_POUND] = ACTIONS(561), + [anon_sym_asm] = ACTIONS(561), + [anon_sym_AT_LBRACK] = ACTIONS(561), + [sym___double_quote] = ACTIONS(561), + [sym___single_quote] = ACTIONS(561), + [sym___c_double_quote] = ACTIONS(561), + [sym___c_single_quote] = ACTIONS(561), + [sym___r_double_quote] = ACTIONS(561), + [sym___r_single_quote] = ACTIONS(561), + }, + [1119] = { + [sym_reference_expression] = STATE(4462), + [sym_type_reference_expression] = STATE(1415), + [sym_plain_type] = STATE(1458), + [sym__plain_type_without_special] = STATE(1479), + [sym_anon_struct_type] = STATE(1481), + [sym_multi_return_type] = STATE(1479), + [sym_result_type] = STATE(1479), + [sym_option_type] = STATE(1479), + [sym_qualified_type] = STATE(1415), + [sym_fixed_array_type] = STATE(1481), + [sym_array_type] = STATE(1481), + [sym_pointer_type] = STATE(1481), + [sym_wrong_pointer_type] = STATE(1481), + [sym_map_type] = STATE(1481), + [sym_channel_type] = STATE(1481), + [sym_shared_type] = STATE(1481), + [sym_thread_type] = STATE(1481), + [sym_atomic_type] = STATE(1481), + [sym_generic_type] = STATE(1481), + [sym_function_type] = STATE(1481), + [ts_builtin_sym_end] = ACTIONS(611), + [sym_identifier] = ACTIONS(3389), + [anon_sym_LF] = ACTIONS(613), + [anon_sym_CR] = ACTIONS(613), + [anon_sym_CR_LF] = ACTIONS(613), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_const] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(3391), + [anon_sym___global] = ACTIONS(613), + [anon_sym_type] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(613), + [anon_sym_fn] = ACTIONS(3393), + [anon_sym_PLUS] = ACTIONS(613), + [anon_sym_DASH] = ACTIONS(613), + [anon_sym_STAR] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(3397), + [anon_sym_union] = ACTIONS(613), + [anon_sym_pub] = ACTIONS(613), + [anon_sym_mut] = ACTIONS(613), + [anon_sym_enum] = ACTIONS(613), + [anon_sym_interface] = ACTIONS(613), + [anon_sym_QMARK] = ACTIONS(3399), + [anon_sym_BANG] = ACTIONS(3401), + [anon_sym_go] = ACTIONS(613), + [anon_sym_spawn] = ACTIONS(613), + [anon_sym_json_DOTdecode] = ACTIONS(613), + [anon_sym_LBRACK2] = ACTIONS(3403), + [anon_sym_TILDE] = ACTIONS(613), + [anon_sym_CARET] = ACTIONS(613), + [anon_sym_AMP] = ACTIONS(3405), + [anon_sym_LT_DASH] = ACTIONS(613), + [sym_none] = ACTIONS(613), + [sym_true] = ACTIONS(613), + [sym_false] = ACTIONS(613), + [sym_nil] = ACTIONS(613), + [anon_sym_if] = ACTIONS(613), + [anon_sym_DOLLARif] = ACTIONS(613), + [anon_sym_match] = ACTIONS(613), + [anon_sym_select] = ACTIONS(613), + [anon_sym_lock] = ACTIONS(613), + [anon_sym_rlock] = ACTIONS(613), + [anon_sym_unsafe] = ACTIONS(613), + [anon_sym_sql] = ACTIONS(613), + [sym_int_literal] = ACTIONS(613), + [sym_float_literal] = ACTIONS(613), + [sym_rune_literal] = ACTIONS(613), + [anon_sym_AT] = ACTIONS(613), + [anon_sym_shared] = ACTIONS(3407), + [anon_sym_map_LBRACK] = ACTIONS(3409), + [anon_sym_chan] = ACTIONS(3411), + [anon_sym_thread] = ACTIONS(3413), + [anon_sym_atomic] = ACTIONS(3415), + [anon_sym_assert] = ACTIONS(613), + [anon_sym_defer] = ACTIONS(613), + [anon_sym_goto] = ACTIONS(613), + [anon_sym_break] = ACTIONS(613), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_return] = ACTIONS(613), + [anon_sym_DOLLARfor] = ACTIONS(613), + [anon_sym_for] = ACTIONS(613), + [anon_sym_POUND] = ACTIONS(613), + [anon_sym_asm] = ACTIONS(613), + [anon_sym_AT_LBRACK] = ACTIONS(613), + [sym___double_quote] = ACTIONS(613), + [sym___single_quote] = ACTIONS(613), + [sym___c_double_quote] = ACTIONS(613), + [sym___c_single_quote] = ACTIONS(613), + [sym___r_double_quote] = ACTIONS(613), + [sym___r_single_quote] = ACTIONS(613), + }, + [1120] = { + [sym_reference_expression] = STATE(4462), + [sym_type_reference_expression] = STATE(1415), + [sym_plain_type] = STATE(1474), + [sym__plain_type_without_special] = STATE(1479), + [sym_anon_struct_type] = STATE(1481), + [sym_multi_return_type] = STATE(1479), + [sym_result_type] = STATE(1479), + [sym_option_type] = STATE(1479), + [sym_qualified_type] = STATE(1415), + [sym_fixed_array_type] = STATE(1481), + [sym_array_type] = STATE(1481), + [sym_pointer_type] = STATE(1481), + [sym_wrong_pointer_type] = STATE(1481), + [sym_map_type] = STATE(1481), + [sym_channel_type] = STATE(1481), + [sym_shared_type] = STATE(1481), + [sym_thread_type] = STATE(1481), + [sym_atomic_type] = STATE(1481), + [sym_generic_type] = STATE(1481), + [sym_function_type] = STATE(1481), + [ts_builtin_sym_end] = ACTIONS(619), + [sym_identifier] = ACTIONS(3389), + [anon_sym_LF] = ACTIONS(621), + [anon_sym_CR] = ACTIONS(621), + [anon_sym_CR_LF] = ACTIONS(621), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_const] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(3391), + [anon_sym___global] = ACTIONS(621), + [anon_sym_type] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_fn] = ACTIONS(3393), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(3397), + [anon_sym_union] = ACTIONS(621), + [anon_sym_pub] = ACTIONS(621), + [anon_sym_mut] = ACTIONS(621), + [anon_sym_enum] = ACTIONS(621), + [anon_sym_interface] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(3399), + [anon_sym_BANG] = ACTIONS(3401), + [anon_sym_go] = ACTIONS(621), + [anon_sym_spawn] = ACTIONS(621), + [anon_sym_json_DOTdecode] = ACTIONS(621), + [anon_sym_LBRACK2] = ACTIONS(3403), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(3405), + [anon_sym_LT_DASH] = ACTIONS(621), + [sym_none] = ACTIONS(621), + [sym_true] = ACTIONS(621), + [sym_false] = ACTIONS(621), + [sym_nil] = ACTIONS(621), + [anon_sym_if] = ACTIONS(621), + [anon_sym_DOLLARif] = ACTIONS(621), + [anon_sym_match] = ACTIONS(621), + [anon_sym_select] = ACTIONS(621), + [anon_sym_lock] = ACTIONS(621), + [anon_sym_rlock] = ACTIONS(621), + [anon_sym_unsafe] = ACTIONS(621), + [anon_sym_sql] = ACTIONS(621), + [sym_int_literal] = ACTIONS(621), + [sym_float_literal] = ACTIONS(621), + [sym_rune_literal] = ACTIONS(621), + [anon_sym_AT] = ACTIONS(621), + [anon_sym_shared] = ACTIONS(3407), + [anon_sym_map_LBRACK] = ACTIONS(3409), + [anon_sym_chan] = ACTIONS(3411), + [anon_sym_thread] = ACTIONS(3413), + [anon_sym_atomic] = ACTIONS(3415), + [anon_sym_assert] = ACTIONS(621), + [anon_sym_defer] = ACTIONS(621), + [anon_sym_goto] = ACTIONS(621), + [anon_sym_break] = ACTIONS(621), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_return] = ACTIONS(621), + [anon_sym_DOLLARfor] = ACTIONS(621), + [anon_sym_for] = ACTIONS(621), + [anon_sym_POUND] = ACTIONS(621), + [anon_sym_asm] = ACTIONS(621), + [anon_sym_AT_LBRACK] = ACTIONS(621), + [sym___double_quote] = ACTIONS(621), + [sym___single_quote] = ACTIONS(621), + [sym___c_double_quote] = ACTIONS(621), + [sym___c_single_quote] = ACTIONS(621), + [sym___r_double_quote] = ACTIONS(621), + [sym___r_single_quote] = ACTIONS(621), }, [1121] = { - [sym_reference_expression] = STATE(4409), - [sym_type_reference_expression] = STATE(1666), - [sym_plain_type] = STATE(1661), - [sym__plain_type_without_special] = STATE(1665), - [sym_anon_struct_type] = STATE(1641), - [sym_multi_return_type] = STATE(1665), - [sym_result_type] = STATE(1665), - [sym_option_type] = STATE(1665), - [sym_qualified_type] = STATE(1666), - [sym_fixed_array_type] = STATE(1641), - [sym_array_type] = STATE(1641), - [sym_pointer_type] = STATE(1641), - [sym_wrong_pointer_type] = STATE(1641), - [sym_map_type] = STATE(1641), - [sym_channel_type] = STATE(1641), - [sym_shared_type] = STATE(1641), - [sym_thread_type] = STATE(1641), - [sym_atomic_type] = STATE(1641), - [sym_generic_type] = STATE(1641), - [sym_function_type] = STATE(1641), - [sym_identifier] = ACTIONS(3411), - [anon_sym_LF] = ACTIONS(555), - [anon_sym_CR] = ACTIONS(555), - [anon_sym_CR_LF] = ACTIONS(555), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_as] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(555), - [anon_sym_RBRACE] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_EQ] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_fn] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(3417), - [anon_sym_SLASH] = ACTIONS(555), - [anon_sym_PERCENT] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(555), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_EQ_EQ] = ACTIONS(555), - [anon_sym_BANG_EQ] = ACTIONS(555), - [anon_sym_LT_EQ] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(3419), - [anon_sym_COLON] = ACTIONS(555), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_QMARK] = ACTIONS(3421), - [anon_sym_BANG] = ACTIONS(3423), - [anon_sym_LBRACK2] = ACTIONS(3425), - [anon_sym_CARET] = ACTIONS(555), - [anon_sym_AMP] = ACTIONS(3427), - [anon_sym_LT_DASH] = ACTIONS(555), - [anon_sym_LT_LT] = ACTIONS(555), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_GT_GT_GT] = ACTIONS(555), - [anon_sym_AMP_CARET] = ACTIONS(555), - [anon_sym_AMP_AMP] = ACTIONS(555), - [anon_sym_PIPE_PIPE] = ACTIONS(555), - [anon_sym_or] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(555), - [anon_sym_POUND_LBRACK] = ACTIONS(555), - [anon_sym_is] = ACTIONS(555), - [anon_sym_BANGis] = ACTIONS(555), - [anon_sym_in] = ACTIONS(555), - [anon_sym_BANGin] = ACTIONS(555), - [anon_sym_STAR_EQ] = ACTIONS(555), - [anon_sym_SLASH_EQ] = ACTIONS(555), - [anon_sym_PERCENT_EQ] = ACTIONS(555), - [anon_sym_LT_LT_EQ] = ACTIONS(555), - [anon_sym_GT_GT_EQ] = ACTIONS(555), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(555), - [anon_sym_AMP_EQ] = ACTIONS(555), - [anon_sym_AMP_CARET_EQ] = ACTIONS(555), - [anon_sym_PLUS_EQ] = ACTIONS(555), - [anon_sym_DASH_EQ] = ACTIONS(555), - [anon_sym_PIPE_EQ] = ACTIONS(555), - [anon_sym_CARET_EQ] = ACTIONS(555), - [anon_sym_COLON_EQ] = ACTIONS(555), - [anon_sym_shared] = ACTIONS(3429), - [anon_sym_map_LBRACK] = ACTIONS(3431), - [anon_sym_chan] = ACTIONS(3433), - [anon_sym_thread] = ACTIONS(3435), - [anon_sym_atomic] = ACTIONS(3437), + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2359), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(591), + [anon_sym_LF] = ACTIONS(617), + [anon_sym_CR] = ACTIONS(617), + [anon_sym_CR_LF] = ACTIONS(617), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(617), + [anon_sym_as] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_RBRACE] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_EQ] = ACTIONS(617), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(617), + [anon_sym_PERCENT] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(617), + [anon_sym_GT] = ACTIONS(617), + [anon_sym_EQ_EQ] = ACTIONS(617), + [anon_sym_BANG_EQ] = ACTIONS(617), + [anon_sym_LT_EQ] = ACTIONS(617), + [anon_sym_GT_EQ] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_struct] = ACTIONS(601), + [anon_sym_COLON] = ACTIONS(617), + [anon_sym_PLUS_PLUS] = ACTIONS(617), + [anon_sym_DASH_DASH] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_LBRACK2] = ACTIONS(617), + [anon_sym_CARET] = ACTIONS(617), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_LT_DASH] = ACTIONS(617), + [anon_sym_LT_LT] = ACTIONS(617), + [anon_sym_GT_GT] = ACTIONS(617), + [anon_sym_GT_GT_GT] = ACTIONS(617), + [anon_sym_AMP_CARET] = ACTIONS(617), + [anon_sym_AMP_AMP] = ACTIONS(617), + [anon_sym_PIPE_PIPE] = ACTIONS(617), + [anon_sym_or] = ACTIONS(617), + [anon_sym_QMARK_DOT] = ACTIONS(617), + [anon_sym_POUND_LBRACK] = ACTIONS(617), + [anon_sym_is] = ACTIONS(617), + [anon_sym_BANGis] = ACTIONS(617), + [anon_sym_in] = ACTIONS(617), + [anon_sym_BANGin] = ACTIONS(617), + [anon_sym_STAR_EQ] = ACTIONS(617), + [anon_sym_SLASH_EQ] = ACTIONS(617), + [anon_sym_PERCENT_EQ] = ACTIONS(617), + [anon_sym_LT_LT_EQ] = ACTIONS(617), + [anon_sym_GT_GT_EQ] = ACTIONS(617), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(617), + [anon_sym_AMP_EQ] = ACTIONS(617), + [anon_sym_AMP_CARET_EQ] = ACTIONS(617), + [anon_sym_PLUS_EQ] = ACTIONS(617), + [anon_sym_DASH_EQ] = ACTIONS(617), + [anon_sym_PIPE_EQ] = ACTIONS(617), + [anon_sym_CARET_EQ] = ACTIONS(617), + [anon_sym_COLON_EQ] = ACTIONS(617), + [anon_sym_shared] = ACTIONS(609), + [anon_sym_map_LBRACK] = ACTIONS(543), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), }, [1122] = { - [aux_sym_strictly_expression_list_repeat1] = STATE(1424), - [ts_builtin_sym_end] = ACTIONS(1682), - [sym_identifier] = ACTIONS(1684), - [anon_sym_LF] = ACTIONS(1684), - [anon_sym_CR] = ACTIONS(1684), - [anon_sym_CR_LF] = ACTIONS(1684), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_COMMA] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_EQ] = ACTIONS(1690), - [anon_sym___global] = ACTIONS(1684), - [anon_sym_type] = ACTIONS(1684), - [anon_sym_fn] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1684), - [anon_sym_struct] = ACTIONS(1684), - [anon_sym_union] = ACTIONS(1684), - [anon_sym_pub] = ACTIONS(1684), - [anon_sym_mut] = ACTIONS(1684), - [anon_sym_enum] = ACTIONS(1684), - [anon_sym_interface] = ACTIONS(1684), - [anon_sym_QMARK] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(1684), - [anon_sym_go] = ACTIONS(1684), - [anon_sym_spawn] = ACTIONS(1684), - [anon_sym_json_DOTdecode] = ACTIONS(1684), - [anon_sym_LBRACK2] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1684), - [anon_sym_CARET] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1684), - [anon_sym_LT_DASH] = ACTIONS(1684), - [sym_none] = ACTIONS(1684), - [sym_true] = ACTIONS(1684), - [sym_false] = ACTIONS(1684), - [sym_nil] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_DOLLARif] = ACTIONS(1684), - [anon_sym_match] = ACTIONS(1684), - [anon_sym_select] = ACTIONS(1684), - [anon_sym_STAR_EQ] = ACTIONS(1690), - [anon_sym_SLASH_EQ] = ACTIONS(1690), - [anon_sym_PERCENT_EQ] = ACTIONS(1690), - [anon_sym_LT_LT_EQ] = ACTIONS(1690), - [anon_sym_GT_GT_EQ] = ACTIONS(1690), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1690), - [anon_sym_AMP_EQ] = ACTIONS(1690), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1690), - [anon_sym_PLUS_EQ] = ACTIONS(1690), - [anon_sym_DASH_EQ] = ACTIONS(1690), - [anon_sym_PIPE_EQ] = ACTIONS(1690), - [anon_sym_CARET_EQ] = ACTIONS(1690), - [anon_sym_COLON_EQ] = ACTIONS(1690), - [anon_sym_lock] = ACTIONS(1684), - [anon_sym_rlock] = ACTIONS(1684), - [anon_sym_unsafe] = ACTIONS(1684), - [anon_sym_sql] = ACTIONS(1684), - [sym_int_literal] = ACTIONS(1684), - [sym_float_literal] = ACTIONS(1684), - [sym_rune_literal] = ACTIONS(1684), - [anon_sym_AT] = ACTIONS(1684), - [anon_sym_shared] = ACTIONS(1684), - [anon_sym_map_LBRACK] = ACTIONS(1684), - [anon_sym_chan] = ACTIONS(1684), - [anon_sym_thread] = ACTIONS(1684), - [anon_sym_atomic] = ACTIONS(1684), - [anon_sym_assert] = ACTIONS(1684), - [anon_sym_defer] = ACTIONS(1684), - [anon_sym_goto] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_DOLLARfor] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_POUND] = ACTIONS(1684), - [anon_sym_asm] = ACTIONS(1684), - [anon_sym_AT_LBRACK] = ACTIONS(1684), - [sym___double_quote] = ACTIONS(1684), - [sym___single_quote] = ACTIONS(1684), - [sym___c_double_quote] = ACTIONS(1684), - [sym___c_single_quote] = ACTIONS(1684), - [sym___r_double_quote] = ACTIONS(1684), - [sym___r_single_quote] = ACTIONS(1684), + [aux_sym_strictly_expression_list_repeat1] = STATE(1418), + [ts_builtin_sym_end] = ACTIONS(1708), + [sym_identifier] = ACTIONS(1710), + [anon_sym_LF] = ACTIONS(1710), + [anon_sym_CR] = ACTIONS(1710), + [anon_sym_CR_LF] = ACTIONS(1710), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1710), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_EQ] = ACTIONS(1716), + [anon_sym___global] = ACTIONS(1710), + [anon_sym_type] = ACTIONS(1710), + [anon_sym_fn] = ACTIONS(1710), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(1710), + [anon_sym_struct] = ACTIONS(1710), + [anon_sym_union] = ACTIONS(1710), + [anon_sym_pub] = ACTIONS(1710), + [anon_sym_mut] = ACTIONS(1710), + [anon_sym_enum] = ACTIONS(1710), + [anon_sym_interface] = ACTIONS(1710), + [anon_sym_QMARK] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_go] = ACTIONS(1710), + [anon_sym_spawn] = ACTIONS(1710), + [anon_sym_json_DOTdecode] = ACTIONS(1710), + [anon_sym_LBRACK2] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_CARET] = ACTIONS(1710), + [anon_sym_AMP] = ACTIONS(1710), + [anon_sym_LT_DASH] = ACTIONS(1710), + [sym_none] = ACTIONS(1710), + [sym_true] = ACTIONS(1710), + [sym_false] = ACTIONS(1710), + [sym_nil] = ACTIONS(1710), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_DOLLARif] = ACTIONS(1710), + [anon_sym_match] = ACTIONS(1710), + [anon_sym_select] = ACTIONS(1710), + [anon_sym_STAR_EQ] = ACTIONS(1716), + [anon_sym_SLASH_EQ] = ACTIONS(1716), + [anon_sym_PERCENT_EQ] = ACTIONS(1716), + [anon_sym_LT_LT_EQ] = ACTIONS(1716), + [anon_sym_GT_GT_EQ] = ACTIONS(1716), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1716), + [anon_sym_AMP_EQ] = ACTIONS(1716), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1716), + [anon_sym_PLUS_EQ] = ACTIONS(1716), + [anon_sym_DASH_EQ] = ACTIONS(1716), + [anon_sym_PIPE_EQ] = ACTIONS(1716), + [anon_sym_CARET_EQ] = ACTIONS(1716), + [anon_sym_COLON_EQ] = ACTIONS(1716), + [anon_sym_lock] = ACTIONS(1710), + [anon_sym_rlock] = ACTIONS(1710), + [anon_sym_unsafe] = ACTIONS(1710), + [anon_sym_sql] = ACTIONS(1710), + [sym_int_literal] = ACTIONS(1710), + [sym_float_literal] = ACTIONS(1710), + [sym_rune_literal] = ACTIONS(1710), + [anon_sym_AT] = ACTIONS(1710), + [anon_sym_shared] = ACTIONS(1710), + [anon_sym_map_LBRACK] = ACTIONS(1710), + [anon_sym_chan] = ACTIONS(1710), + [anon_sym_thread] = ACTIONS(1710), + [anon_sym_atomic] = ACTIONS(1710), + [anon_sym_assert] = ACTIONS(1710), + [anon_sym_defer] = ACTIONS(1710), + [anon_sym_goto] = ACTIONS(1710), + [anon_sym_break] = ACTIONS(1710), + [anon_sym_continue] = ACTIONS(1710), + [anon_sym_return] = ACTIONS(1710), + [anon_sym_DOLLARfor] = ACTIONS(1710), + [anon_sym_for] = ACTIONS(1710), + [anon_sym_POUND] = ACTIONS(1710), + [anon_sym_asm] = ACTIONS(1710), + [anon_sym_AT_LBRACK] = ACTIONS(1710), + [sym___double_quote] = ACTIONS(1710), + [sym___single_quote] = ACTIONS(1710), + [sym___c_double_quote] = ACTIONS(1710), + [sym___c_single_quote] = ACTIONS(1710), + [sym___r_double_quote] = ACTIONS(1710), + [sym___r_single_quote] = ACTIONS(1710), }, [1123] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [anon_sym_LF] = ACTIONS(585), - [anon_sym_CR] = ACTIONS(585), - [anon_sym_CR_LF] = ACTIONS(585), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_RBRACE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(585), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_AMP_CARET] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_or] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(585), - [anon_sym_STAR_EQ] = ACTIONS(585), - [anon_sym_SLASH_EQ] = ACTIONS(585), - [anon_sym_PERCENT_EQ] = ACTIONS(585), - [anon_sym_LT_LT_EQ] = ACTIONS(585), - [anon_sym_GT_GT_EQ] = ACTIONS(585), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(585), - [anon_sym_AMP_EQ] = ACTIONS(585), - [anon_sym_AMP_CARET_EQ] = ACTIONS(585), - [anon_sym_PLUS_EQ] = ACTIONS(585), - [anon_sym_DASH_EQ] = ACTIONS(585), - [anon_sym_PIPE_EQ] = ACTIONS(585), - [anon_sym_CARET_EQ] = ACTIONS(585), - [anon_sym_COLON_EQ] = ACTIONS(585), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(537), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2393), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(591), + [anon_sym_LF] = ACTIONS(593), + [anon_sym_CR] = ACTIONS(593), + [anon_sym_CR_LF] = ACTIONS(593), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(593), + [anon_sym_as] = ACTIONS(593), + [anon_sym_COMMA] = ACTIONS(593), + [anon_sym_RBRACE] = ACTIONS(593), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_EQ] = ACTIONS(593), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_STAR] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(593), + [anon_sym_PERCENT] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(593), + [anon_sym_GT_EQ] = ACTIONS(593), + [anon_sym_LBRACK] = ACTIONS(589), + [anon_sym_struct] = ACTIONS(601), + [anon_sym_COLON] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(593), + [anon_sym_DASH_DASH] = ACTIONS(593), + [anon_sym_QMARK] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_LBRACK2] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(593), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_GT_GT_GT] = ACTIONS(593), + [anon_sym_AMP_CARET] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(593), + [anon_sym_PIPE_PIPE] = ACTIONS(593), + [anon_sym_or] = ACTIONS(593), + [anon_sym_QMARK_DOT] = ACTIONS(593), + [anon_sym_POUND_LBRACK] = ACTIONS(593), + [anon_sym_is] = ACTIONS(593), + [anon_sym_BANGis] = ACTIONS(593), + [anon_sym_in] = ACTIONS(593), + [anon_sym_BANGin] = ACTIONS(593), + [anon_sym_STAR_EQ] = ACTIONS(593), + [anon_sym_SLASH_EQ] = ACTIONS(593), + [anon_sym_PERCENT_EQ] = ACTIONS(593), + [anon_sym_LT_LT_EQ] = ACTIONS(593), + [anon_sym_GT_GT_EQ] = ACTIONS(593), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(593), + [anon_sym_AMP_EQ] = ACTIONS(593), + [anon_sym_AMP_CARET_EQ] = ACTIONS(593), + [anon_sym_PLUS_EQ] = ACTIONS(593), + [anon_sym_DASH_EQ] = ACTIONS(593), + [anon_sym_PIPE_EQ] = ACTIONS(593), + [anon_sym_CARET_EQ] = ACTIONS(593), + [anon_sym_COLON_EQ] = ACTIONS(593), + [anon_sym_shared] = ACTIONS(609), + [anon_sym_map_LBRACK] = ACTIONS(543), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), }, [1124] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [anon_sym_LF] = ACTIONS(595), - [anon_sym_CR] = ACTIONS(595), - [anon_sym_CR_LF] = ACTIONS(595), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_as] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_RBRACE] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(597), - [anon_sym_EQ] = ACTIONS(595), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [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(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [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(595), - [anon_sym_QMARK_DOT] = ACTIONS(595), - [anon_sym_POUND_LBRACK] = ACTIONS(595), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(595), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(595), - [anon_sym_STAR_EQ] = ACTIONS(595), - [anon_sym_SLASH_EQ] = ACTIONS(595), - [anon_sym_PERCENT_EQ] = ACTIONS(595), - [anon_sym_LT_LT_EQ] = ACTIONS(595), - [anon_sym_GT_GT_EQ] = ACTIONS(595), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(595), - [anon_sym_AMP_EQ] = ACTIONS(595), - [anon_sym_AMP_CARET_EQ] = ACTIONS(595), - [anon_sym_PLUS_EQ] = ACTIONS(595), - [anon_sym_DASH_EQ] = ACTIONS(595), - [anon_sym_PIPE_EQ] = ACTIONS(595), - [anon_sym_CARET_EQ] = ACTIONS(595), - [anon_sym_COLON_EQ] = ACTIONS(595), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(537), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), + [sym_reference_expression] = STATE(4416), + [sym_type_reference_expression] = STATE(1669), + [sym_plain_type] = STATE(1660), + [sym__plain_type_without_special] = STATE(1636), + [sym_anon_struct_type] = STATE(1651), + [sym_multi_return_type] = STATE(1636), + [sym_result_type] = STATE(1636), + [sym_option_type] = STATE(1636), + [sym_qualified_type] = STATE(1669), + [sym_fixed_array_type] = STATE(1651), + [sym_array_type] = STATE(1651), + [sym_pointer_type] = STATE(1651), + [sym_wrong_pointer_type] = STATE(1651), + [sym_map_type] = STATE(1651), + [sym_channel_type] = STATE(1651), + [sym_shared_type] = STATE(1651), + [sym_thread_type] = STATE(1651), + [sym_atomic_type] = STATE(1651), + [sym_generic_type] = STATE(1651), + [sym_function_type] = STATE(1651), + [sym_identifier] = ACTIONS(3419), + [anon_sym_LF] = ACTIONS(621), + [anon_sym_CR] = ACTIONS(621), + [anon_sym_CR_LF] = ACTIONS(621), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_as] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(3421), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_fn] = ACTIONS(3423), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(3425), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(621), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_EQ_EQ] = ACTIONS(621), + [anon_sym_BANG_EQ] = ACTIONS(621), + [anon_sym_LT_EQ] = ACTIONS(621), + [anon_sym_GT_EQ] = ACTIONS(621), + [anon_sym_LBRACK] = ACTIONS(619), + [anon_sym_struct] = ACTIONS(3427), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_PLUS_PLUS] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(3429), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_LBRACK2] = ACTIONS(3433), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(3435), + [anon_sym_LT_DASH] = ACTIONS(621), + [anon_sym_LT_LT] = ACTIONS(621), + [anon_sym_GT_GT] = ACTIONS(621), + [anon_sym_GT_GT_GT] = ACTIONS(621), + [anon_sym_AMP_CARET] = ACTIONS(621), + [anon_sym_AMP_AMP] = ACTIONS(621), + [anon_sym_PIPE_PIPE] = ACTIONS(621), + [anon_sym_or] = ACTIONS(621), + [anon_sym_QMARK_DOT] = ACTIONS(621), + [anon_sym_POUND_LBRACK] = ACTIONS(621), + [anon_sym_is] = ACTIONS(621), + [anon_sym_BANGis] = ACTIONS(621), + [anon_sym_in] = ACTIONS(621), + [anon_sym_BANGin] = ACTIONS(621), + [anon_sym_STAR_EQ] = ACTIONS(621), + [anon_sym_SLASH_EQ] = ACTIONS(621), + [anon_sym_PERCENT_EQ] = ACTIONS(621), + [anon_sym_LT_LT_EQ] = ACTIONS(621), + [anon_sym_GT_GT_EQ] = ACTIONS(621), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(621), + [anon_sym_AMP_EQ] = ACTIONS(621), + [anon_sym_AMP_CARET_EQ] = ACTIONS(621), + [anon_sym_PLUS_EQ] = ACTIONS(621), + [anon_sym_DASH_EQ] = ACTIONS(621), + [anon_sym_PIPE_EQ] = ACTIONS(621), + [anon_sym_CARET_EQ] = ACTIONS(621), + [anon_sym_COLON_EQ] = ACTIONS(621), + [anon_sym_shared] = ACTIONS(3437), + [anon_sym_map_LBRACK] = ACTIONS(3439), + [anon_sym_chan] = ACTIONS(3441), + [anon_sym_thread] = ACTIONS(3443), + [anon_sym_atomic] = ACTIONS(3445), }, [1125] = { - [sym_reference_expression] = STATE(4549), - [sym_type_reference_expression] = STATE(1787), - [sym_plain_type] = STATE(1831), - [sym__plain_type_without_special] = STATE(1886), - [sym_anon_struct_type] = STATE(1885), - [sym_multi_return_type] = STATE(1886), - [sym_result_type] = STATE(1886), - [sym_option_type] = STATE(1886), - [sym_qualified_type] = STATE(1787), - [sym_fixed_array_type] = STATE(1885), - [sym_array_type] = STATE(1885), - [sym_pointer_type] = STATE(1885), - [sym_wrong_pointer_type] = STATE(1885), - [sym_map_type] = STATE(1885), - [sym_channel_type] = STATE(1885), - [sym_shared_type] = STATE(1885), - [sym_thread_type] = STATE(1885), - [sym_atomic_type] = STATE(1885), - [sym_generic_type] = STATE(1885), - [sym_function_type] = STATE(1885), - [sym_identifier] = ACTIONS(3443), - [anon_sym_LF] = ACTIONS(615), - [anon_sym_CR] = ACTIONS(615), - [anon_sym_CR_LF] = ACTIONS(615), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_EQ] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(3449), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(3453), - [anon_sym_BANG] = ACTIONS(3455), - [anon_sym_LBRACK2] = ACTIONS(3457), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(3459), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_or] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(615), - [anon_sym_POUND_LBRACK] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(615), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_LT_LT_EQ] = ACTIONS(615), - [anon_sym_GT_GT_EQ] = ACTIONS(615), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(615), - [anon_sym_AMP_EQ] = ACTIONS(615), - [anon_sym_AMP_CARET_EQ] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_PIPE_EQ] = ACTIONS(615), - [anon_sym_CARET_EQ] = ACTIONS(615), - [anon_sym_COLON_EQ] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(3461), - [anon_sym_map_LBRACK] = ACTIONS(3463), - [anon_sym_chan] = ACTIONS(3465), - [anon_sym_thread] = ACTIONS(3467), - [anon_sym_atomic] = ACTIONS(3469), + [sym_reference_expression] = STATE(4416), + [sym_type_reference_expression] = STATE(1669), + [sym_plain_type] = STATE(1652), + [sym__plain_type_without_special] = STATE(1636), + [sym_anon_struct_type] = STATE(1651), + [sym_multi_return_type] = STATE(1636), + [sym_result_type] = STATE(1636), + [sym_option_type] = STATE(1636), + [sym_qualified_type] = STATE(1669), + [sym_fixed_array_type] = STATE(1651), + [sym_array_type] = STATE(1651), + [sym_pointer_type] = STATE(1651), + [sym_wrong_pointer_type] = STATE(1651), + [sym_map_type] = STATE(1651), + [sym_channel_type] = STATE(1651), + [sym_shared_type] = STATE(1651), + [sym_thread_type] = STATE(1651), + [sym_atomic_type] = STATE(1651), + [sym_generic_type] = STATE(1651), + [sym_function_type] = STATE(1651), + [sym_identifier] = ACTIONS(3419), + [anon_sym_LF] = ACTIONS(561), + [anon_sym_CR] = ACTIONS(561), + [anon_sym_CR_LF] = ACTIONS(561), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(561), + [anon_sym_as] = ACTIONS(561), + [anon_sym_COMMA] = ACTIONS(561), + [anon_sym_RBRACE] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(3421), + [anon_sym_EQ] = ACTIONS(561), + [anon_sym_PIPE] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(3423), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(3425), + [anon_sym_SLASH] = ACTIONS(561), + [anon_sym_PERCENT] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(561), + [anon_sym_GT] = ACTIONS(561), + [anon_sym_EQ_EQ] = ACTIONS(561), + [anon_sym_BANG_EQ] = ACTIONS(561), + [anon_sym_LT_EQ] = ACTIONS(561), + [anon_sym_GT_EQ] = ACTIONS(561), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_struct] = ACTIONS(3427), + [anon_sym_COLON] = ACTIONS(561), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [anon_sym_QMARK] = ACTIONS(3429), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_LBRACK2] = ACTIONS(3433), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(3435), + [anon_sym_LT_DASH] = ACTIONS(561), + [anon_sym_LT_LT] = ACTIONS(561), + [anon_sym_GT_GT] = ACTIONS(561), + [anon_sym_GT_GT_GT] = ACTIONS(561), + [anon_sym_AMP_CARET] = ACTIONS(561), + [anon_sym_AMP_AMP] = ACTIONS(561), + [anon_sym_PIPE_PIPE] = ACTIONS(561), + [anon_sym_or] = ACTIONS(561), + [anon_sym_QMARK_DOT] = ACTIONS(561), + [anon_sym_POUND_LBRACK] = ACTIONS(561), + [anon_sym_is] = ACTIONS(561), + [anon_sym_BANGis] = ACTIONS(561), + [anon_sym_in] = ACTIONS(561), + [anon_sym_BANGin] = ACTIONS(561), + [anon_sym_STAR_EQ] = ACTIONS(561), + [anon_sym_SLASH_EQ] = ACTIONS(561), + [anon_sym_PERCENT_EQ] = ACTIONS(561), + [anon_sym_LT_LT_EQ] = ACTIONS(561), + [anon_sym_GT_GT_EQ] = ACTIONS(561), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(561), + [anon_sym_AMP_EQ] = ACTIONS(561), + [anon_sym_AMP_CARET_EQ] = ACTIONS(561), + [anon_sym_PLUS_EQ] = ACTIONS(561), + [anon_sym_DASH_EQ] = ACTIONS(561), + [anon_sym_PIPE_EQ] = ACTIONS(561), + [anon_sym_CARET_EQ] = ACTIONS(561), + [anon_sym_COLON_EQ] = ACTIONS(561), + [anon_sym_shared] = ACTIONS(3437), + [anon_sym_map_LBRACK] = ACTIONS(3439), + [anon_sym_chan] = ACTIONS(3441), + [anon_sym_thread] = ACTIONS(3443), + [anon_sym_atomic] = ACTIONS(3445), }, [1126] = { - [sym_reference_expression] = STATE(4549), - [sym_type_reference_expression] = STATE(1787), - [sym_plain_type] = STATE(1872), - [sym__plain_type_without_special] = STATE(1886), - [sym_anon_struct_type] = STATE(1885), - [sym_multi_return_type] = STATE(1886), - [sym_result_type] = STATE(1886), - [sym_option_type] = STATE(1886), - [sym_qualified_type] = STATE(1787), - [sym_fixed_array_type] = STATE(1885), - [sym_array_type] = STATE(1885), - [sym_pointer_type] = STATE(1885), - [sym_wrong_pointer_type] = STATE(1885), - [sym_map_type] = STATE(1885), - [sym_channel_type] = STATE(1885), - [sym_shared_type] = STATE(1885), - [sym_thread_type] = STATE(1885), - [sym_atomic_type] = STATE(1885), - [sym_generic_type] = STATE(1885), - [sym_function_type] = STATE(1885), - [sym_identifier] = ACTIONS(3443), - [anon_sym_LF] = ACTIONS(555), - [anon_sym_CR] = ACTIONS(555), - [anon_sym_CR_LF] = ACTIONS(555), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_as] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(555), - [anon_sym_RBRACE] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_EQ] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_fn] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(3449), - [anon_sym_SLASH] = ACTIONS(555), - [anon_sym_PERCENT] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(555), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_EQ_EQ] = ACTIONS(555), - [anon_sym_BANG_EQ] = ACTIONS(555), - [anon_sym_LT_EQ] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_QMARK] = ACTIONS(3453), - [anon_sym_BANG] = ACTIONS(3455), - [anon_sym_LBRACK2] = ACTIONS(3457), - [anon_sym_CARET] = ACTIONS(555), - [anon_sym_AMP] = ACTIONS(3459), - [anon_sym_LT_LT] = ACTIONS(555), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_GT_GT_GT] = ACTIONS(555), - [anon_sym_AMP_CARET] = ACTIONS(555), - [anon_sym_AMP_AMP] = ACTIONS(555), - [anon_sym_PIPE_PIPE] = ACTIONS(555), - [anon_sym_or] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(555), - [anon_sym_POUND_LBRACK] = ACTIONS(555), - [anon_sym_is] = ACTIONS(555), - [anon_sym_BANGis] = ACTIONS(555), - [anon_sym_in] = ACTIONS(555), - [anon_sym_BANGin] = ACTIONS(555), - [anon_sym_STAR_EQ] = ACTIONS(555), - [anon_sym_SLASH_EQ] = ACTIONS(555), - [anon_sym_PERCENT_EQ] = ACTIONS(555), - [anon_sym_LT_LT_EQ] = ACTIONS(555), - [anon_sym_GT_GT_EQ] = ACTIONS(555), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(555), - [anon_sym_AMP_EQ] = ACTIONS(555), - [anon_sym_AMP_CARET_EQ] = ACTIONS(555), - [anon_sym_PLUS_EQ] = ACTIONS(555), - [anon_sym_DASH_EQ] = ACTIONS(555), - [anon_sym_PIPE_EQ] = ACTIONS(555), - [anon_sym_CARET_EQ] = ACTIONS(555), - [anon_sym_COLON_EQ] = ACTIONS(555), - [anon_sym_shared] = ACTIONS(3461), - [anon_sym_map_LBRACK] = ACTIONS(3463), - [anon_sym_chan] = ACTIONS(3465), - [anon_sym_thread] = ACTIONS(3467), - [anon_sym_atomic] = ACTIONS(3469), - }, - [1127] = { - [sym_reference_expression] = STATE(4549), - [sym_type_reference_expression] = STATE(1787), - [sym_plain_type] = STATE(1849), - [sym__plain_type_without_special] = STATE(1886), - [sym_anon_struct_type] = STATE(1885), - [sym_multi_return_type] = STATE(1886), - [sym_result_type] = STATE(1886), - [sym_option_type] = STATE(1886), - [sym_qualified_type] = STATE(1787), - [sym_fixed_array_type] = STATE(1885), - [sym_array_type] = STATE(1885), - [sym_pointer_type] = STATE(1885), - [sym_wrong_pointer_type] = STATE(1885), - [sym_map_type] = STATE(1885), - [sym_channel_type] = STATE(1885), - [sym_shared_type] = STATE(1885), - [sym_thread_type] = STATE(1885), - [sym_atomic_type] = STATE(1885), - [sym_generic_type] = STATE(1885), - [sym_function_type] = STATE(1885), - [sym_identifier] = ACTIONS(3443), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_RBRACE] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_EQ] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3449), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_struct] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(3453), - [anon_sym_BANG] = ACTIONS(3455), - [anon_sym_LBRACK2] = ACTIONS(3457), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(3459), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_STAR_EQ] = ACTIONS(589), - [anon_sym_SLASH_EQ] = ACTIONS(589), - [anon_sym_PERCENT_EQ] = ACTIONS(589), - [anon_sym_LT_LT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(589), - [anon_sym_AMP_EQ] = ACTIONS(589), - [anon_sym_AMP_CARET_EQ] = ACTIONS(589), - [anon_sym_PLUS_EQ] = ACTIONS(589), - [anon_sym_DASH_EQ] = ACTIONS(589), - [anon_sym_PIPE_EQ] = ACTIONS(589), - [anon_sym_CARET_EQ] = ACTIONS(589), - [anon_sym_COLON_EQ] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(3461), - [anon_sym_map_LBRACK] = ACTIONS(3463), - [anon_sym_chan] = ACTIONS(3465), - [anon_sym_thread] = ACTIONS(3467), - [anon_sym_atomic] = ACTIONS(3469), - }, - [1128] = { - [sym_type_parameters] = STATE(4123), - [sym_argument_list] = STATE(1199), - [sym_or_block] = STATE(1200), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2076), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_SLASH] = ACTIONS(3475), - [anon_sym_PERCENT] = ACTIONS(3475), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3481), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(3475), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(3475), - [anon_sym_GT_GT] = ACTIONS(3475), - [anon_sym_GT_GT_GT] = ACTIONS(3475), - [anon_sym_AMP_CARET] = ACTIONS(3475), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3471), - [anon_sym_POUND_LBRACK] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), - }, - [1129] = { - [sym_type_parameters] = STATE(4123), - [sym_argument_list] = STATE(1199), - [sym_or_block] = STATE(1200), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_SLASH] = ACTIONS(3475), - [anon_sym_PERCENT] = ACTIONS(3475), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3481), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3475), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(3475), - [anon_sym_GT_GT] = ACTIONS(3475), - [anon_sym_GT_GT_GT] = ACTIONS(3475), - [anon_sym_AMP_CARET] = ACTIONS(3475), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3471), - [anon_sym_POUND_LBRACK] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), - }, - [1130] = { - [sym_type_parameters] = STATE(4123), - [sym_argument_list] = STATE(1199), - [sym_or_block] = STATE(1200), - [sym_identifier] = ACTIONS(2112), - [anon_sym_LF] = ACTIONS(2112), - [anon_sym_CR] = ACTIONS(2112), - [anon_sym_CR_LF] = ACTIONS(2112), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2112), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_as] = ACTIONS(2112), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_COMMA] = ACTIONS(2112), - [anon_sym_RBRACE] = ACTIONS(2112), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_fn] = ACTIONS(2112), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_SLASH] = ACTIONS(3475), - [anon_sym_PERCENT] = ACTIONS(3475), - [anon_sym_LT] = ACTIONS(2112), - [anon_sym_GT] = ACTIONS(2112), - [anon_sym_EQ_EQ] = ACTIONS(2112), - [anon_sym_BANG_EQ] = ACTIONS(2112), - [anon_sym_LT_EQ] = ACTIONS(2112), - [anon_sym_GT_EQ] = ACTIONS(2112), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(2112), - [anon_sym_mut] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_QMARK] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3481), - [anon_sym_go] = ACTIONS(2112), - [anon_sym_spawn] = ACTIONS(2112), - [anon_sym_json_DOTdecode] = ACTIONS(2112), - [anon_sym_LBRACK2] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(2112), - [anon_sym_CARET] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3475), - [anon_sym_LT_DASH] = ACTIONS(2112), - [anon_sym_LT_LT] = ACTIONS(3475), - [anon_sym_GT_GT] = ACTIONS(3475), - [anon_sym_GT_GT_GT] = ACTIONS(3475), - [anon_sym_AMP_CARET] = ACTIONS(3475), - [anon_sym_AMP_AMP] = ACTIONS(2112), - [anon_sym_PIPE_PIPE] = ACTIONS(2112), - [anon_sym_or] = ACTIONS(2112), - [sym_none] = ACTIONS(2112), - [sym_true] = ACTIONS(2112), - [sym_false] = ACTIONS(2112), - [sym_nil] = ACTIONS(2112), - [anon_sym_QMARK_DOT] = ACTIONS(3471), - [anon_sym_POUND_LBRACK] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(2112), - [anon_sym_DOLLARif] = ACTIONS(2112), - [anon_sym_is] = ACTIONS(2112), - [anon_sym_BANGis] = ACTIONS(2112), - [anon_sym_in] = ACTIONS(2112), - [anon_sym_BANGin] = ACTIONS(2112), - [anon_sym_match] = ACTIONS(2112), - [anon_sym_select] = ACTIONS(2112), - [anon_sym_lock] = ACTIONS(2112), - [anon_sym_rlock] = ACTIONS(2112), - [anon_sym_unsafe] = ACTIONS(2112), - [anon_sym_sql] = ACTIONS(2112), - [sym_int_literal] = ACTIONS(2112), - [sym_float_literal] = ACTIONS(2112), - [sym_rune_literal] = ACTIONS(2112), - [anon_sym_AT] = ACTIONS(2112), - [anon_sym_shared] = ACTIONS(2112), - [anon_sym_map_LBRACK] = ACTIONS(2112), - [anon_sym_chan] = ACTIONS(2112), - [anon_sym_thread] = ACTIONS(2112), - [anon_sym_atomic] = ACTIONS(2112), - [sym___double_quote] = ACTIONS(2112), - [sym___single_quote] = ACTIONS(2112), - [sym___c_double_quote] = ACTIONS(2112), - [sym___c_single_quote] = ACTIONS(2112), - [sym___r_double_quote] = ACTIONS(2112), - [sym___r_single_quote] = ACTIONS(2112), - }, - [1131] = { - [sym_type_parameters] = STATE(4123), - [sym_argument_list] = STATE(1199), - [sym_or_block] = STATE(1200), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_SLASH] = ACTIONS(3475), - [anon_sym_PERCENT] = ACTIONS(3475), - [anon_sym_LT] = ACTIONS(3487), - [anon_sym_GT] = ACTIONS(3487), - [anon_sym_EQ_EQ] = ACTIONS(3487), - [anon_sym_BANG_EQ] = ACTIONS(3487), - [anon_sym_LT_EQ] = ACTIONS(3487), - [anon_sym_GT_EQ] = ACTIONS(3487), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3481), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3475), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(3475), - [anon_sym_GT_GT] = ACTIONS(3475), - [anon_sym_GT_GT_GT] = ACTIONS(3475), - [anon_sym_AMP_CARET] = ACTIONS(3475), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3471), - [anon_sym_POUND_LBRACK] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(3491), - [anon_sym_BANGin] = ACTIONS(3493), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), - }, - [1132] = { - [sym_type_parameters] = STATE(4123), - [sym_argument_list] = STATE(1199), - [sym_or_block] = STATE(1200), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_SLASH] = ACTIONS(3475), - [anon_sym_PERCENT] = ACTIONS(3475), - [anon_sym_LT] = ACTIONS(3487), - [anon_sym_GT] = ACTIONS(3487), - [anon_sym_EQ_EQ] = ACTIONS(3487), - [anon_sym_BANG_EQ] = ACTIONS(3487), - [anon_sym_LT_EQ] = ACTIONS(3487), - [anon_sym_GT_EQ] = ACTIONS(3487), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3481), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3475), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(3475), - [anon_sym_GT_GT] = ACTIONS(3475), - [anon_sym_GT_GT_GT] = ACTIONS(3475), - [anon_sym_AMP_CARET] = ACTIONS(3475), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3471), - [anon_sym_POUND_LBRACK] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(3491), - [anon_sym_BANGin] = ACTIONS(3493), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), - }, - [1133] = { - [sym_type_parameters] = STATE(4123), - [sym_argument_list] = STATE(1199), - [sym_or_block] = STATE(1200), - [sym_identifier] = ACTIONS(3495), - [anon_sym_LF] = ACTIONS(3495), - [anon_sym_CR] = ACTIONS(3495), - [anon_sym_CR_LF] = ACTIONS(3495), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3495), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_as] = ACTIONS(3497), - [anon_sym_LBRACE] = ACTIONS(3495), - [anon_sym_COMMA] = ACTIONS(3495), - [anon_sym_RBRACE] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_fn] = ACTIONS(3495), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_SLASH] = ACTIONS(3475), - [anon_sym_PERCENT] = ACTIONS(3475), - [anon_sym_LT] = ACTIONS(3487), - [anon_sym_GT] = ACTIONS(3487), - [anon_sym_EQ_EQ] = ACTIONS(3487), - [anon_sym_BANG_EQ] = ACTIONS(3487), - [anon_sym_LT_EQ] = ACTIONS(3487), - [anon_sym_GT_EQ] = ACTIONS(3487), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(3495), - [anon_sym_mut] = ACTIONS(3495), - [anon_sym_PLUS_PLUS] = ACTIONS(3499), - [anon_sym_DASH_DASH] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3481), - [anon_sym_go] = ACTIONS(3495), - [anon_sym_spawn] = ACTIONS(3495), - [anon_sym_json_DOTdecode] = ACTIONS(3495), - [anon_sym_LBRACK2] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(3495), - [anon_sym_CARET] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3475), - [anon_sym_LT_DASH] = ACTIONS(3495), - [anon_sym_LT_LT] = ACTIONS(3475), - [anon_sym_GT_GT] = ACTIONS(3475), - [anon_sym_GT_GT_GT] = ACTIONS(3475), - [anon_sym_AMP_CARET] = ACTIONS(3475), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_PIPE_PIPE] = ACTIONS(3503), - [anon_sym_or] = ACTIONS(3505), - [sym_none] = ACTIONS(3495), - [sym_true] = ACTIONS(3495), - [sym_false] = ACTIONS(3495), - [sym_nil] = ACTIONS(3495), - [anon_sym_QMARK_DOT] = ACTIONS(3471), - [anon_sym_POUND_LBRACK] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(3495), - [anon_sym_DOLLARif] = ACTIONS(3495), - [anon_sym_is] = ACTIONS(3507), - [anon_sym_BANGis] = ACTIONS(3509), - [anon_sym_in] = ACTIONS(3491), - [anon_sym_BANGin] = ACTIONS(3493), - [anon_sym_match] = ACTIONS(3495), - [anon_sym_select] = ACTIONS(3495), - [anon_sym_lock] = ACTIONS(3495), - [anon_sym_rlock] = ACTIONS(3495), - [anon_sym_unsafe] = ACTIONS(3495), - [anon_sym_sql] = ACTIONS(3495), - [sym_int_literal] = ACTIONS(3495), - [sym_float_literal] = ACTIONS(3495), - [sym_rune_literal] = ACTIONS(3495), - [anon_sym_AT] = ACTIONS(3495), - [anon_sym_shared] = ACTIONS(3495), - [anon_sym_map_LBRACK] = ACTIONS(3495), - [anon_sym_chan] = ACTIONS(3495), - [anon_sym_thread] = ACTIONS(3495), - [anon_sym_atomic] = ACTIONS(3495), - [sym___double_quote] = ACTIONS(3495), - [sym___single_quote] = ACTIONS(3495), - [sym___c_double_quote] = ACTIONS(3495), - [sym___c_single_quote] = ACTIONS(3495), - [sym___r_double_quote] = ACTIONS(3495), - [sym___r_single_quote] = ACTIONS(3495), - }, - [1134] = { - [sym_type_parameters] = STATE(4123), - [sym_argument_list] = STATE(1199), - [sym_or_block] = STATE(1200), - [sym_identifier] = ACTIONS(2164), - [anon_sym_LF] = ACTIONS(2164), - [anon_sym_CR] = ACTIONS(2164), - [anon_sym_CR_LF] = ACTIONS(2164), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2164), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_as] = ACTIONS(2164), - [anon_sym_LBRACE] = ACTIONS(2164), - [anon_sym_COMMA] = ACTIONS(2164), - [anon_sym_RBRACE] = ACTIONS(2164), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_fn] = ACTIONS(2164), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_STAR] = ACTIONS(2164), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_PERCENT] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_EQ_EQ] = ACTIONS(2164), - [anon_sym_BANG_EQ] = ACTIONS(2164), - [anon_sym_LT_EQ] = ACTIONS(2164), - [anon_sym_GT_EQ] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(2164), - [anon_sym_mut] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(2164), - [anon_sym_DASH_DASH] = ACTIONS(2164), - [anon_sym_QMARK] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3481), - [anon_sym_go] = ACTIONS(2164), - [anon_sym_spawn] = ACTIONS(2164), - [anon_sym_json_DOTdecode] = ACTIONS(2164), - [anon_sym_LBRACK2] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(2164), - [anon_sym_CARET] = ACTIONS(2164), - [anon_sym_AMP] = ACTIONS(2164), - [anon_sym_LT_DASH] = ACTIONS(2164), - [anon_sym_LT_LT] = ACTIONS(2164), - [anon_sym_GT_GT] = ACTIONS(2164), - [anon_sym_GT_GT_GT] = ACTIONS(2164), - [anon_sym_AMP_CARET] = ACTIONS(2164), - [anon_sym_AMP_AMP] = ACTIONS(2164), - [anon_sym_PIPE_PIPE] = ACTIONS(2164), - [anon_sym_or] = ACTIONS(2164), - [sym_none] = ACTIONS(2164), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), - [sym_nil] = ACTIONS(2164), - [anon_sym_QMARK_DOT] = ACTIONS(3471), - [anon_sym_POUND_LBRACK] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(2164), - [anon_sym_DOLLARif] = ACTIONS(2164), - [anon_sym_is] = ACTIONS(2164), - [anon_sym_BANGis] = ACTIONS(2164), - [anon_sym_in] = ACTIONS(2164), - [anon_sym_BANGin] = ACTIONS(2164), - [anon_sym_match] = ACTIONS(2164), - [anon_sym_select] = ACTIONS(2164), - [anon_sym_lock] = ACTIONS(2164), - [anon_sym_rlock] = ACTIONS(2164), - [anon_sym_unsafe] = ACTIONS(2164), - [anon_sym_sql] = ACTIONS(2164), - [sym_int_literal] = ACTIONS(2164), - [sym_float_literal] = ACTIONS(2164), - [sym_rune_literal] = ACTIONS(2164), - [anon_sym_AT] = ACTIONS(2164), - [anon_sym_shared] = ACTIONS(2164), - [anon_sym_map_LBRACK] = ACTIONS(2164), - [anon_sym_chan] = ACTIONS(2164), - [anon_sym_thread] = ACTIONS(2164), - [anon_sym_atomic] = ACTIONS(2164), - [sym___double_quote] = ACTIONS(2164), - [sym___single_quote] = ACTIONS(2164), - [sym___c_double_quote] = ACTIONS(2164), - [sym___c_single_quote] = ACTIONS(2164), - [sym___r_double_quote] = ACTIONS(2164), - [sym___r_single_quote] = ACTIONS(2164), - }, - [1135] = { - [sym_type_parameters] = STATE(4123), - [sym_argument_list] = STATE(1199), - [sym_or_block] = STATE(1200), - [sym_identifier] = ACTIONS(2210), - [anon_sym_LF] = ACTIONS(2210), - [anon_sym_CR] = ACTIONS(2210), - [anon_sym_CR_LF] = ACTIONS(2210), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2210), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_as] = ACTIONS(3497), - [anon_sym_LBRACE] = ACTIONS(2210), - [anon_sym_COMMA] = ACTIONS(2210), - [anon_sym_RBRACE] = ACTIONS(2210), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_fn] = ACTIONS(2210), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_SLASH] = ACTIONS(3475), - [anon_sym_PERCENT] = ACTIONS(3475), - [anon_sym_LT] = ACTIONS(3487), - [anon_sym_GT] = ACTIONS(3487), - [anon_sym_EQ_EQ] = ACTIONS(3487), - [anon_sym_BANG_EQ] = ACTIONS(3487), - [anon_sym_LT_EQ] = ACTIONS(3487), - [anon_sym_GT_EQ] = ACTIONS(3487), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(2210), - [anon_sym_mut] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(3499), - [anon_sym_DASH_DASH] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3481), - [anon_sym_go] = ACTIONS(2210), - [anon_sym_spawn] = ACTIONS(2210), - [anon_sym_json_DOTdecode] = ACTIONS(2210), - [anon_sym_LBRACK2] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(2210), - [anon_sym_CARET] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3475), - [anon_sym_LT_DASH] = ACTIONS(2210), - [anon_sym_LT_LT] = ACTIONS(3475), - [anon_sym_GT_GT] = ACTIONS(3475), - [anon_sym_GT_GT_GT] = ACTIONS(3475), - [anon_sym_AMP_CARET] = ACTIONS(3475), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_PIPE_PIPE] = ACTIONS(3503), - [anon_sym_or] = ACTIONS(3505), - [sym_none] = ACTIONS(2210), - [sym_true] = ACTIONS(2210), - [sym_false] = ACTIONS(2210), - [sym_nil] = ACTIONS(2210), - [anon_sym_QMARK_DOT] = ACTIONS(3471), - [anon_sym_POUND_LBRACK] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(2210), - [anon_sym_DOLLARif] = ACTIONS(2210), - [anon_sym_is] = ACTIONS(3507), - [anon_sym_BANGis] = ACTIONS(3509), - [anon_sym_in] = ACTIONS(3491), - [anon_sym_BANGin] = ACTIONS(3493), - [anon_sym_match] = ACTIONS(2210), - [anon_sym_select] = ACTIONS(2210), - [anon_sym_lock] = ACTIONS(2210), - [anon_sym_rlock] = ACTIONS(2210), - [anon_sym_unsafe] = ACTIONS(2210), - [anon_sym_sql] = ACTIONS(2210), - [sym_int_literal] = ACTIONS(2210), - [sym_float_literal] = ACTIONS(2210), - [sym_rune_literal] = ACTIONS(2210), - [anon_sym_AT] = ACTIONS(2210), - [anon_sym_shared] = ACTIONS(2210), - [anon_sym_map_LBRACK] = ACTIONS(2210), - [anon_sym_chan] = ACTIONS(2210), - [anon_sym_thread] = ACTIONS(2210), - [anon_sym_atomic] = ACTIONS(2210), - [sym___double_quote] = ACTIONS(2210), - [sym___single_quote] = ACTIONS(2210), - [sym___c_double_quote] = ACTIONS(2210), - [sym___c_single_quote] = ACTIONS(2210), - [sym___r_double_quote] = ACTIONS(2210), - [sym___r_single_quote] = ACTIONS(2210), - }, - [1136] = { - [sym_type_parameters] = STATE(4123), - [sym_argument_list] = STATE(1199), - [sym_or_block] = STATE(1200), - [sym_identifier] = ACTIONS(2220), - [anon_sym_LF] = ACTIONS(2220), - [anon_sym_CR] = ACTIONS(2220), - [anon_sym_CR_LF] = ACTIONS(2220), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2220), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_as] = ACTIONS(3497), - [anon_sym_LBRACE] = ACTIONS(2220), - [anon_sym_COMMA] = ACTIONS(2220), - [anon_sym_RBRACE] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_fn] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_SLASH] = ACTIONS(3475), - [anon_sym_PERCENT] = ACTIONS(3475), - [anon_sym_LT] = ACTIONS(3487), - [anon_sym_GT] = ACTIONS(3487), - [anon_sym_EQ_EQ] = ACTIONS(3487), - [anon_sym_BANG_EQ] = ACTIONS(3487), - [anon_sym_LT_EQ] = ACTIONS(3487), - [anon_sym_GT_EQ] = ACTIONS(3487), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(2220), - [anon_sym_mut] = ACTIONS(2220), - [anon_sym_PLUS_PLUS] = ACTIONS(3499), - [anon_sym_DASH_DASH] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3481), - [anon_sym_go] = ACTIONS(2220), - [anon_sym_spawn] = ACTIONS(2220), - [anon_sym_json_DOTdecode] = ACTIONS(2220), - [anon_sym_LBRACK2] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(2220), - [anon_sym_CARET] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3475), - [anon_sym_LT_DASH] = ACTIONS(2220), - [anon_sym_LT_LT] = ACTIONS(3475), - [anon_sym_GT_GT] = ACTIONS(3475), - [anon_sym_GT_GT_GT] = ACTIONS(3475), - [anon_sym_AMP_CARET] = ACTIONS(3475), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_PIPE_PIPE] = ACTIONS(3503), - [anon_sym_or] = ACTIONS(3505), - [sym_none] = ACTIONS(2220), - [sym_true] = ACTIONS(2220), - [sym_false] = ACTIONS(2220), - [sym_nil] = ACTIONS(2220), - [anon_sym_QMARK_DOT] = ACTIONS(3471), - [anon_sym_POUND_LBRACK] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(2220), - [anon_sym_DOLLARif] = ACTIONS(2220), - [anon_sym_is] = ACTIONS(3507), - [anon_sym_BANGis] = ACTIONS(3509), - [anon_sym_in] = ACTIONS(3491), - [anon_sym_BANGin] = ACTIONS(3493), - [anon_sym_match] = ACTIONS(2220), - [anon_sym_select] = ACTIONS(2220), - [anon_sym_lock] = ACTIONS(2220), - [anon_sym_rlock] = ACTIONS(2220), - [anon_sym_unsafe] = ACTIONS(2220), - [anon_sym_sql] = ACTIONS(2220), - [sym_int_literal] = ACTIONS(2220), - [sym_float_literal] = ACTIONS(2220), - [sym_rune_literal] = ACTIONS(2220), - [anon_sym_AT] = ACTIONS(2220), - [anon_sym_shared] = ACTIONS(2220), - [anon_sym_map_LBRACK] = ACTIONS(2220), - [anon_sym_chan] = ACTIONS(2220), - [anon_sym_thread] = ACTIONS(2220), - [anon_sym_atomic] = ACTIONS(2220), - [sym___double_quote] = ACTIONS(2220), - [sym___single_quote] = ACTIONS(2220), - [sym___c_double_quote] = ACTIONS(2220), - [sym___c_single_quote] = ACTIONS(2220), - [sym___r_double_quote] = ACTIONS(2220), - [sym___r_single_quote] = ACTIONS(2220), - }, - [1137] = { - [sym_type_parameters] = STATE(4123), - [sym_argument_list] = STATE(1199), - [sym_or_block] = STATE(1200), - [sym_identifier] = ACTIONS(2230), - [anon_sym_LF] = ACTIONS(2230), - [anon_sym_CR] = ACTIONS(2230), - [anon_sym_CR_LF] = ACTIONS(2230), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_as] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_COMMA] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_fn] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2230), - [anon_sym_EQ_EQ] = ACTIONS(2230), - [anon_sym_BANG_EQ] = ACTIONS(2230), - [anon_sym_LT_EQ] = ACTIONS(2230), - [anon_sym_GT_EQ] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(2230), - [anon_sym_mut] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [anon_sym_QMARK] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3481), - [anon_sym_go] = ACTIONS(2230), - [anon_sym_spawn] = ACTIONS(2230), - [anon_sym_json_DOTdecode] = ACTIONS(2230), - [anon_sym_LBRACK2] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_CARET] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_LT_DASH] = ACTIONS(2230), - [anon_sym_LT_LT] = ACTIONS(2230), - [anon_sym_GT_GT] = ACTIONS(2230), - [anon_sym_GT_GT_GT] = ACTIONS(2230), - [anon_sym_AMP_CARET] = ACTIONS(2230), - [anon_sym_AMP_AMP] = ACTIONS(2230), - [anon_sym_PIPE_PIPE] = ACTIONS(2230), - [anon_sym_or] = ACTIONS(2230), - [sym_none] = ACTIONS(2230), - [sym_true] = ACTIONS(2230), - [sym_false] = ACTIONS(2230), - [sym_nil] = ACTIONS(2230), - [anon_sym_QMARK_DOT] = ACTIONS(3471), - [anon_sym_POUND_LBRACK] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_DOLLARif] = ACTIONS(2230), - [anon_sym_is] = ACTIONS(2230), - [anon_sym_BANGis] = ACTIONS(2230), - [anon_sym_in] = ACTIONS(2230), - [anon_sym_BANGin] = ACTIONS(2230), - [anon_sym_match] = ACTIONS(2230), - [anon_sym_select] = ACTIONS(2230), - [anon_sym_lock] = ACTIONS(2230), - [anon_sym_rlock] = ACTIONS(2230), - [anon_sym_unsafe] = ACTIONS(2230), - [anon_sym_sql] = ACTIONS(2230), - [sym_int_literal] = ACTIONS(2230), - [sym_float_literal] = ACTIONS(2230), - [sym_rune_literal] = ACTIONS(2230), - [anon_sym_AT] = ACTIONS(2230), - [anon_sym_shared] = ACTIONS(2230), - [anon_sym_map_LBRACK] = ACTIONS(2230), - [anon_sym_chan] = ACTIONS(2230), - [anon_sym_thread] = ACTIONS(2230), - [anon_sym_atomic] = ACTIONS(2230), - [sym___double_quote] = ACTIONS(2230), - [sym___single_quote] = ACTIONS(2230), - [sym___c_double_quote] = ACTIONS(2230), - [sym___c_single_quote] = ACTIONS(2230), - [sym___r_double_quote] = ACTIONS(2230), - [sym___r_single_quote] = ACTIONS(2230), - }, - [1138] = { - [sym_type_parameters] = STATE(4123), - [sym_argument_list] = STATE(1199), - [sym_or_block] = STATE(1200), - [sym_identifier] = ACTIONS(3511), - [anon_sym_LF] = ACTIONS(3511), - [anon_sym_CR] = ACTIONS(3511), - [anon_sym_CR_LF] = ACTIONS(3511), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3511), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_as] = ACTIONS(3497), - [anon_sym_LBRACE] = ACTIONS(3511), - [anon_sym_COMMA] = ACTIONS(3511), - [anon_sym_RBRACE] = ACTIONS(3511), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_fn] = ACTIONS(3511), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_SLASH] = ACTIONS(3475), - [anon_sym_PERCENT] = ACTIONS(3475), - [anon_sym_LT] = ACTIONS(3487), - [anon_sym_GT] = ACTIONS(3487), - [anon_sym_EQ_EQ] = ACTIONS(3487), - [anon_sym_BANG_EQ] = ACTIONS(3487), - [anon_sym_LT_EQ] = ACTIONS(3487), - [anon_sym_GT_EQ] = ACTIONS(3487), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(3511), - [anon_sym_mut] = ACTIONS(3511), - [anon_sym_PLUS_PLUS] = ACTIONS(3499), - [anon_sym_DASH_DASH] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3481), - [anon_sym_go] = ACTIONS(3511), - [anon_sym_spawn] = ACTIONS(3511), - [anon_sym_json_DOTdecode] = ACTIONS(3511), - [anon_sym_LBRACK2] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(3511), - [anon_sym_CARET] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3475), - [anon_sym_LT_DASH] = ACTIONS(3511), - [anon_sym_LT_LT] = ACTIONS(3475), - [anon_sym_GT_GT] = ACTIONS(3475), - [anon_sym_GT_GT_GT] = ACTIONS(3475), - [anon_sym_AMP_CARET] = ACTIONS(3475), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_PIPE_PIPE] = ACTIONS(3503), - [anon_sym_or] = ACTIONS(3505), - [sym_none] = ACTIONS(3511), - [sym_true] = ACTIONS(3511), - [sym_false] = ACTIONS(3511), - [sym_nil] = ACTIONS(3511), - [anon_sym_QMARK_DOT] = ACTIONS(3471), - [anon_sym_POUND_LBRACK] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(3511), - [anon_sym_DOLLARif] = ACTIONS(3511), - [anon_sym_is] = ACTIONS(3507), - [anon_sym_BANGis] = ACTIONS(3509), - [anon_sym_in] = ACTIONS(3491), - [anon_sym_BANGin] = ACTIONS(3493), - [anon_sym_match] = ACTIONS(3511), - [anon_sym_select] = ACTIONS(3511), - [anon_sym_lock] = ACTIONS(3511), - [anon_sym_rlock] = ACTIONS(3511), - [anon_sym_unsafe] = ACTIONS(3511), - [anon_sym_sql] = ACTIONS(3511), - [sym_int_literal] = ACTIONS(3511), - [sym_float_literal] = ACTIONS(3511), - [sym_rune_literal] = ACTIONS(3511), - [anon_sym_AT] = ACTIONS(3511), - [anon_sym_shared] = ACTIONS(3511), - [anon_sym_map_LBRACK] = ACTIONS(3511), - [anon_sym_chan] = ACTIONS(3511), - [anon_sym_thread] = ACTIONS(3511), - [anon_sym_atomic] = ACTIONS(3511), - [sym___double_quote] = ACTIONS(3511), - [sym___single_quote] = ACTIONS(3511), - [sym___c_double_quote] = ACTIONS(3511), - [sym___c_single_quote] = ACTIONS(3511), - [sym___r_double_quote] = ACTIONS(3511), - [sym___r_single_quote] = ACTIONS(3511), - }, - [1139] = { - [sym_type_parameters] = STATE(4123), - [sym_argument_list] = STATE(1199), - [sym_or_block] = STATE(1200), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2076), - [anon_sym_STAR] = ACTIONS(2076), - [anon_sym_SLASH] = ACTIONS(2076), - [anon_sym_PERCENT] = ACTIONS(2076), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3481), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(2076), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(2076), - [anon_sym_GT_GT] = ACTIONS(2076), - [anon_sym_GT_GT_GT] = ACTIONS(2076), - [anon_sym_AMP_CARET] = ACTIONS(2076), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3471), - [anon_sym_POUND_LBRACK] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), - }, - [1140] = { - [sym_type_parameters] = STATE(4123), - [sym_argument_list] = STATE(1199), - [sym_or_block] = STATE(1200), - [sym_identifier] = ACTIONS(2108), - [anon_sym_LF] = ACTIONS(2108), - [anon_sym_CR] = ACTIONS(2108), - [anon_sym_CR_LF] = ACTIONS(2108), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2108), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_as] = ACTIONS(2108), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_COMMA] = ACTIONS(2108), - [anon_sym_RBRACE] = ACTIONS(2108), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_fn] = ACTIONS(2108), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_SLASH] = ACTIONS(3475), - [anon_sym_PERCENT] = ACTIONS(3475), - [anon_sym_LT] = ACTIONS(2108), - [anon_sym_GT] = ACTIONS(2108), - [anon_sym_EQ_EQ] = ACTIONS(2108), - [anon_sym_BANG_EQ] = ACTIONS(2108), - [anon_sym_LT_EQ] = ACTIONS(2108), - [anon_sym_GT_EQ] = ACTIONS(2108), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(2108), - [anon_sym_mut] = ACTIONS(2108), - [anon_sym_PLUS_PLUS] = ACTIONS(2108), - [anon_sym_DASH_DASH] = ACTIONS(2108), - [anon_sym_QMARK] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3481), - [anon_sym_go] = ACTIONS(2108), - [anon_sym_spawn] = ACTIONS(2108), - [anon_sym_json_DOTdecode] = ACTIONS(2108), - [anon_sym_LBRACK2] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(2108), - [anon_sym_CARET] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3475), - [anon_sym_LT_DASH] = ACTIONS(2108), - [anon_sym_LT_LT] = ACTIONS(3475), - [anon_sym_GT_GT] = ACTIONS(3475), - [anon_sym_GT_GT_GT] = ACTIONS(3475), - [anon_sym_AMP_CARET] = ACTIONS(3475), - [anon_sym_AMP_AMP] = ACTIONS(2108), - [anon_sym_PIPE_PIPE] = ACTIONS(2108), - [anon_sym_or] = ACTIONS(2108), - [sym_none] = ACTIONS(2108), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_nil] = ACTIONS(2108), - [anon_sym_QMARK_DOT] = ACTIONS(3471), - [anon_sym_POUND_LBRACK] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(2108), - [anon_sym_DOLLARif] = ACTIONS(2108), - [anon_sym_is] = ACTIONS(2108), - [anon_sym_BANGis] = ACTIONS(2108), - [anon_sym_in] = ACTIONS(2108), - [anon_sym_BANGin] = ACTIONS(2108), - [anon_sym_match] = ACTIONS(2108), - [anon_sym_select] = ACTIONS(2108), - [anon_sym_lock] = ACTIONS(2108), - [anon_sym_rlock] = ACTIONS(2108), - [anon_sym_unsafe] = ACTIONS(2108), - [anon_sym_sql] = ACTIONS(2108), - [sym_int_literal] = ACTIONS(2108), - [sym_float_literal] = ACTIONS(2108), - [sym_rune_literal] = ACTIONS(2108), - [anon_sym_AT] = ACTIONS(2108), - [anon_sym_shared] = ACTIONS(2108), - [anon_sym_map_LBRACK] = ACTIONS(2108), - [anon_sym_chan] = ACTIONS(2108), - [anon_sym_thread] = ACTIONS(2108), - [anon_sym_atomic] = ACTIONS(2108), - [sym___double_quote] = ACTIONS(2108), - [sym___single_quote] = ACTIONS(2108), - [sym___c_double_quote] = ACTIONS(2108), - [sym___c_single_quote] = ACTIONS(2108), - [sym___r_double_quote] = ACTIONS(2108), - [sym___r_single_quote] = ACTIONS(2108), - }, - [1141] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_COMMA] = ACTIONS(583), - [anon_sym_LPAREN] = ACTIONS(583), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(585), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(583), - [anon_sym_BANG_EQ] = ACTIONS(583), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LBRACK] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_LT_DASH] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_AMP_CARET] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE_PIPE] = ACTIONS(583), - [anon_sym_or] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(583), - [anon_sym_POUND_LBRACK] = ACTIONS(583), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(583), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(583), - [anon_sym_STAR_EQ] = ACTIONS(583), - [anon_sym_SLASH_EQ] = ACTIONS(583), - [anon_sym_PERCENT_EQ] = ACTIONS(583), - [anon_sym_LT_LT_EQ] = ACTIONS(583), - [anon_sym_GT_GT_EQ] = ACTIONS(583), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(583), - [anon_sym_AMP_EQ] = ACTIONS(583), - [anon_sym_AMP_CARET_EQ] = ACTIONS(583), - [anon_sym_PLUS_EQ] = ACTIONS(583), - [anon_sym_DASH_EQ] = ACTIONS(583), - [anon_sym_PIPE_EQ] = ACTIONS(583), - [anon_sym_CARET_EQ] = ACTIONS(583), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - }, - [1142] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_COMMA] = ACTIONS(583), - [anon_sym_LPAREN] = ACTIONS(583), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(585), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(583), - [anon_sym_BANG_EQ] = ACTIONS(583), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LBRACK] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_AMP_CARET] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE_PIPE] = ACTIONS(583), - [anon_sym_or] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(583), - [anon_sym_POUND_LBRACK] = ACTIONS(583), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(583), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(583), - [anon_sym_STAR_EQ] = ACTIONS(583), - [anon_sym_SLASH_EQ] = ACTIONS(583), - [anon_sym_PERCENT_EQ] = ACTIONS(583), - [anon_sym_LT_LT_EQ] = ACTIONS(583), - [anon_sym_GT_GT_EQ] = ACTIONS(583), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(583), - [anon_sym_AMP_EQ] = ACTIONS(583), - [anon_sym_AMP_CARET_EQ] = ACTIONS(583), - [anon_sym_PLUS_EQ] = ACTIONS(583), - [anon_sym_DASH_EQ] = ACTIONS(583), - [anon_sym_PIPE_EQ] = ACTIONS(583), - [anon_sym_CARET_EQ] = ACTIONS(583), - [anon_sym_COLON_EQ] = ACTIONS(583), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - }, - [1143] = { - [sym_identifier] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2772), - [anon_sym_CR] = ACTIONS(2772), - [anon_sym_CR_LF] = ACTIONS(2772), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_as] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_COMMA] = ACTIONS(2772), - [anon_sym_RBRACE] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2772), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_PERCENT] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2772), - [anon_sym_BANG_EQ] = ACTIONS(2772), - [anon_sym_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_EQ] = ACTIONS(2772), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_mut] = ACTIONS(2772), - [anon_sym_COLON] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [anon_sym_QMARK] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2772), - [anon_sym_json_DOTdecode] = ACTIONS(2772), - [anon_sym_LBRACK2] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_LT_DASH] = ACTIONS(2772), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_GT_GT_GT] = ACTIONS(2772), - [anon_sym_AMP_CARET] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_PIPE_PIPE] = ACTIONS(2772), - [anon_sym_or] = ACTIONS(2772), - [sym_none] = ACTIONS(2772), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_nil] = ACTIONS(2772), - [anon_sym_QMARK_DOT] = ACTIONS(2772), - [anon_sym_POUND_LBRACK] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_DOLLARif] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_BANGis] = ACTIONS(2772), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_BANGin] = ACTIONS(2772), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_select] = ACTIONS(2772), - [anon_sym_lock] = ACTIONS(2772), - [anon_sym_rlock] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_sql] = ACTIONS(2772), - [sym_int_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2772), - [sym_rune_literal] = ACTIONS(2772), - [anon_sym_AT] = ACTIONS(2772), - [anon_sym_shared] = ACTIONS(2772), - [anon_sym_map_LBRACK] = ACTIONS(2772), - [anon_sym_chan] = ACTIONS(2772), - [anon_sym_thread] = ACTIONS(2772), - [anon_sym_atomic] = ACTIONS(2772), - [sym___double_quote] = ACTIONS(2772), - [sym___single_quote] = ACTIONS(2772), - [sym___c_double_quote] = ACTIONS(2772), - [sym___c_single_quote] = ACTIONS(2772), - [sym___r_double_quote] = ACTIONS(2772), - [sym___r_single_quote] = ACTIONS(2772), - }, - [1144] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(613), - [anon_sym_COMMA] = ACTIONS(583), - [anon_sym_LPAREN] = ACTIONS(583), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(585), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(583), - [anon_sym_BANG_EQ] = ACTIONS(583), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LBRACK] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_AMP_CARET] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE_PIPE] = ACTIONS(583), - [anon_sym_or] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(583), - [anon_sym_POUND_LBRACK] = ACTIONS(583), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(583), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(583), - [anon_sym_STAR_EQ] = ACTIONS(583), - [anon_sym_SLASH_EQ] = ACTIONS(583), - [anon_sym_PERCENT_EQ] = ACTIONS(583), - [anon_sym_LT_LT_EQ] = ACTIONS(583), - [anon_sym_GT_GT_EQ] = ACTIONS(583), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(583), - [anon_sym_AMP_EQ] = ACTIONS(583), - [anon_sym_AMP_CARET_EQ] = ACTIONS(583), - [anon_sym_PLUS_EQ] = ACTIONS(583), - [anon_sym_DASH_EQ] = ACTIONS(583), - [anon_sym_PIPE_EQ] = ACTIONS(583), - [anon_sym_CARET_EQ] = ACTIONS(583), - [anon_sym_COLON_EQ] = ACTIONS(583), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - }, - [1145] = { - [sym_else_branch] = STATE(1172), - [sym_identifier] = ACTIONS(2400), - [anon_sym_LF] = ACTIONS(2400), - [anon_sym_CR] = ACTIONS(2400), - [anon_sym_CR_LF] = ACTIONS(2400), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2400), - [anon_sym_DOT] = ACTIONS(2400), - [anon_sym_as] = ACTIONS(2400), - [anon_sym_LBRACE] = ACTIONS(2400), - [anon_sym_COMMA] = ACTIONS(2400), - [anon_sym_RBRACE] = ACTIONS(2400), - [anon_sym_LPAREN] = ACTIONS(2400), - [anon_sym_PIPE] = ACTIONS(2400), - [anon_sym_fn] = ACTIONS(2400), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2400), - [anon_sym_SLASH] = ACTIONS(2400), - [anon_sym_PERCENT] = ACTIONS(2400), - [anon_sym_LT] = ACTIONS(2400), - [anon_sym_GT] = ACTIONS(2400), - [anon_sym_EQ_EQ] = ACTIONS(2400), - [anon_sym_BANG_EQ] = ACTIONS(2400), - [anon_sym_LT_EQ] = ACTIONS(2400), - [anon_sym_GT_EQ] = ACTIONS(2400), - [anon_sym_LBRACK] = ACTIONS(2398), - [anon_sym_struct] = ACTIONS(2400), - [anon_sym_mut] = ACTIONS(2400), - [anon_sym_PLUS_PLUS] = ACTIONS(2400), - [anon_sym_DASH_DASH] = ACTIONS(2400), - [anon_sym_QMARK] = ACTIONS(2400), - [anon_sym_BANG] = ACTIONS(2400), - [anon_sym_go] = ACTIONS(2400), - [anon_sym_spawn] = ACTIONS(2400), - [anon_sym_json_DOTdecode] = ACTIONS(2400), - [anon_sym_LBRACK2] = ACTIONS(2400), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2400), - [anon_sym_LT_DASH] = ACTIONS(2400), - [anon_sym_LT_LT] = ACTIONS(2400), - [anon_sym_GT_GT] = ACTIONS(2400), - [anon_sym_GT_GT_GT] = ACTIONS(2400), - [anon_sym_AMP_CARET] = ACTIONS(2400), - [anon_sym_AMP_AMP] = ACTIONS(2400), - [anon_sym_PIPE_PIPE] = ACTIONS(2400), - [anon_sym_or] = ACTIONS(2400), - [sym_none] = ACTIONS(2400), - [sym_true] = ACTIONS(2400), - [sym_false] = ACTIONS(2400), - [sym_nil] = ACTIONS(2400), - [anon_sym_QMARK_DOT] = ACTIONS(2400), - [anon_sym_POUND_LBRACK] = ACTIONS(2400), - [anon_sym_if] = ACTIONS(2400), - [anon_sym_else] = ACTIONS(3513), - [anon_sym_DOLLARif] = ACTIONS(2400), - [anon_sym_is] = ACTIONS(2400), - [anon_sym_BANGis] = ACTIONS(2400), - [anon_sym_in] = ACTIONS(2400), - [anon_sym_BANGin] = ACTIONS(2400), - [anon_sym_match] = ACTIONS(2400), - [anon_sym_select] = ACTIONS(2400), - [anon_sym_lock] = ACTIONS(2400), - [anon_sym_rlock] = ACTIONS(2400), - [anon_sym_unsafe] = ACTIONS(2400), - [anon_sym_sql] = ACTIONS(2400), - [sym_int_literal] = ACTIONS(2400), - [sym_float_literal] = ACTIONS(2400), - [sym_rune_literal] = ACTIONS(2400), - [anon_sym_AT] = ACTIONS(2400), - [anon_sym_shared] = ACTIONS(2400), - [anon_sym_map_LBRACK] = ACTIONS(2400), - [anon_sym_chan] = ACTIONS(2400), - [anon_sym_thread] = ACTIONS(2400), - [anon_sym_atomic] = ACTIONS(2400), - [sym___double_quote] = ACTIONS(2400), - [sym___single_quote] = ACTIONS(2400), - [sym___c_double_quote] = ACTIONS(2400), - [sym___c_single_quote] = ACTIONS(2400), - [sym___r_double_quote] = ACTIONS(2400), - [sym___r_single_quote] = ACTIONS(2400), - }, - [1146] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(591), - [anon_sym_DOT] = ACTIONS(591), - [anon_sym_as] = ACTIONS(595), - [anon_sym_LBRACE] = ACTIONS(591), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_EQ] = ACTIONS(595), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(591), - [anon_sym_BANG_EQ] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(591), - [anon_sym_GT_EQ] = ACTIONS(591), - [anon_sym_LBRACK] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(591), - [anon_sym_DASH_DASH] = ACTIONS(591), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(3515), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_GT_GT_GT] = ACTIONS(595), - [anon_sym_AMP_CARET] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(591), - [anon_sym_PIPE_PIPE] = ACTIONS(591), - [anon_sym_or] = ACTIONS(595), - [anon_sym_QMARK_DOT] = ACTIONS(591), - [anon_sym_POUND_LBRACK] = ACTIONS(591), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(591), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(591), - [anon_sym_STAR_EQ] = ACTIONS(591), - [anon_sym_SLASH_EQ] = ACTIONS(591), - [anon_sym_PERCENT_EQ] = ACTIONS(591), - [anon_sym_LT_LT_EQ] = ACTIONS(591), - [anon_sym_GT_GT_EQ] = ACTIONS(591), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(591), - [anon_sym_AMP_EQ] = ACTIONS(591), - [anon_sym_AMP_CARET_EQ] = ACTIONS(591), - [anon_sym_PLUS_EQ] = ACTIONS(591), - [anon_sym_DASH_EQ] = ACTIONS(591), - [anon_sym_PIPE_EQ] = ACTIONS(591), - [anon_sym_CARET_EQ] = ACTIONS(591), - [anon_sym_COLON_EQ] = ACTIONS(591), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - }, - [1147] = { - [sym_identifier] = ACTIONS(3517), - [anon_sym_LF] = ACTIONS(3520), - [anon_sym_CR] = ACTIONS(3520), - [anon_sym_CR_LF] = ACTIONS(3520), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3520), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_as] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(3520), - [anon_sym_RBRACE] = ACTIONS(3517), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_PIPE] = ACTIONS(2884), - [anon_sym_fn] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2884), - [anon_sym_SLASH] = ACTIONS(2884), - [anon_sym_PERCENT] = ACTIONS(2884), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_GT] = ACTIONS(2884), - [anon_sym_EQ_EQ] = ACTIONS(2884), - [anon_sym_BANG_EQ] = ACTIONS(2884), - [anon_sym_LT_EQ] = ACTIONS(2884), - [anon_sym_GT_EQ] = ACTIONS(2884), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3523), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_mut] = ACTIONS(2884), - [anon_sym_COLON] = ACTIONS(3525), - [anon_sym_PLUS_PLUS] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2884), - [anon_sym_QMARK] = ACTIONS(2884), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_go] = ACTIONS(2884), - [anon_sym_spawn] = ACTIONS(2884), - [anon_sym_json_DOTdecode] = ACTIONS(2884), - [anon_sym_LBRACK2] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2884), - [anon_sym_CARET] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_LT_DASH] = ACTIONS(2884), - [anon_sym_LT_LT] = ACTIONS(2884), - [anon_sym_GT_GT] = ACTIONS(2884), - [anon_sym_GT_GT_GT] = ACTIONS(2884), - [anon_sym_AMP_CARET] = ACTIONS(2884), - [anon_sym_AMP_AMP] = ACTIONS(2884), - [anon_sym_PIPE_PIPE] = ACTIONS(2884), - [anon_sym_or] = ACTIONS(2884), - [sym_none] = ACTIONS(2884), - [sym_true] = ACTIONS(2884), - [sym_false] = ACTIONS(2884), - [sym_nil] = ACTIONS(2884), - [anon_sym_QMARK_DOT] = ACTIONS(2884), - [anon_sym_POUND_LBRACK] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_DOLLARif] = ACTIONS(2884), - [anon_sym_is] = ACTIONS(2884), - [anon_sym_BANGis] = ACTIONS(2884), - [anon_sym_in] = ACTIONS(2884), - [anon_sym_BANGin] = ACTIONS(2884), - [anon_sym_match] = ACTIONS(2884), - [anon_sym_select] = ACTIONS(2884), - [anon_sym_lock] = ACTIONS(2884), - [anon_sym_rlock] = ACTIONS(2884), - [anon_sym_unsafe] = ACTIONS(2884), - [anon_sym_sql] = ACTIONS(2884), - [sym_int_literal] = ACTIONS(2884), - [sym_float_literal] = ACTIONS(2884), - [sym_rune_literal] = ACTIONS(2884), - [anon_sym_AT] = ACTIONS(2884), - [anon_sym_shared] = ACTIONS(2884), - [anon_sym_map_LBRACK] = ACTIONS(2884), - [anon_sym_chan] = ACTIONS(2884), - [anon_sym_thread] = ACTIONS(2884), - [anon_sym_atomic] = ACTIONS(2884), - [sym___double_quote] = ACTIONS(2884), - [sym___single_quote] = ACTIONS(2884), - [sym___c_double_quote] = ACTIONS(2884), - [sym___c_single_quote] = ACTIONS(2884), - [sym___r_double_quote] = ACTIONS(2884), - [sym___r_single_quote] = ACTIONS(2884), - }, - [1148] = { - [sym_reference_expression] = STATE(4528), - [sym_type_reference_expression] = STATE(1923), - [sym_plain_type] = STATE(1982), - [sym__plain_type_without_special] = STATE(2020), - [sym_anon_struct_type] = STATE(1942), - [sym_multi_return_type] = STATE(2020), - [sym_result_type] = STATE(2020), - [sym_option_type] = STATE(2020), - [sym_qualified_type] = STATE(1923), - [sym_fixed_array_type] = STATE(1942), - [sym_array_type] = STATE(1942), - [sym_pointer_type] = STATE(1942), - [sym_wrong_pointer_type] = STATE(1942), - [sym_map_type] = STATE(1942), - [sym_channel_type] = STATE(1942), - [sym_shared_type] = STATE(1942), - [sym_thread_type] = STATE(1942), - [sym_atomic_type] = STATE(1942), - [sym_generic_type] = STATE(1942), - [sym_function_type] = STATE(1942), - [sym_identifier] = ACTIONS(3527), - [sym_comment] = ACTIONS(3), + [sym_reference_expression] = STATE(4416), + [sym_type_reference_expression] = STATE(1669), + [sym_plain_type] = STATE(1678), + [sym__plain_type_without_special] = STATE(1636), + [sym_anon_struct_type] = STATE(1651), + [sym_multi_return_type] = STATE(1636), + [sym_result_type] = STATE(1636), + [sym_option_type] = STATE(1636), + [sym_qualified_type] = STATE(1669), + [sym_fixed_array_type] = STATE(1651), + [sym_array_type] = STATE(1651), + [sym_pointer_type] = STATE(1651), + [sym_wrong_pointer_type] = STATE(1651), + [sym_map_type] = STATE(1651), + [sym_channel_type] = STATE(1651), + [sym_shared_type] = STATE(1651), + [sym_thread_type] = STATE(1651), + [sym_atomic_type] = STATE(1651), + [sym_generic_type] = STATE(1651), + [sym_function_type] = STATE(1651), + [sym_identifier] = ACTIONS(3419), + [anon_sym_LF] = ACTIONS(613), + [anon_sym_CR] = ACTIONS(613), + [anon_sym_CR_LF] = ACTIONS(613), + [sym_comment] = ACTIONS(493), [anon_sym_DOT] = ACTIONS(613), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_as] = ACTIONS(613), [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(3529), - [anon_sym_EQ] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(3531), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(3533), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), + [anon_sym_RBRACE] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(3421), + [anon_sym_EQ] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(613), + [anon_sym_fn] = ACTIONS(3423), + [anon_sym_PLUS] = ACTIONS(613), + [anon_sym_DASH] = ACTIONS(613), + [anon_sym_STAR] = ACTIONS(3425), + [anon_sym_SLASH] = ACTIONS(613), + [anon_sym_PERCENT] = ACTIONS(613), + [anon_sym_LT] = ACTIONS(613), + [anon_sym_GT] = ACTIONS(613), [anon_sym_EQ_EQ] = ACTIONS(613), [anon_sym_BANG_EQ] = ACTIONS(613), [anon_sym_LT_EQ] = ACTIONS(613), [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(3535), + [anon_sym_LBRACK] = ACTIONS(611), + [anon_sym_struct] = ACTIONS(3427), [anon_sym_COLON] = ACTIONS(613), [anon_sym_PLUS_PLUS] = ACTIONS(613), [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(3537), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_LBRACK2] = ACTIONS(3541), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(3543), + [anon_sym_QMARK] = ACTIONS(3429), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_LBRACK2] = ACTIONS(3433), + [anon_sym_CARET] = ACTIONS(613), + [anon_sym_AMP] = ACTIONS(3435), [anon_sym_LT_DASH] = ACTIONS(613), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), + [anon_sym_LT_LT] = ACTIONS(613), + [anon_sym_GT_GT] = ACTIONS(613), + [anon_sym_GT_GT_GT] = ACTIONS(613), + [anon_sym_AMP_CARET] = ACTIONS(613), [anon_sym_AMP_AMP] = ACTIONS(613), [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_or] = ACTIONS(615), + [anon_sym_or] = ACTIONS(613), [anon_sym_QMARK_DOT] = ACTIONS(613), [anon_sym_POUND_LBRACK] = ACTIONS(613), - [anon_sym_is] = ACTIONS(615), + [anon_sym_is] = ACTIONS(613), [anon_sym_BANGis] = ACTIONS(613), - [anon_sym_in] = ACTIONS(615), + [anon_sym_in] = ACTIONS(613), [anon_sym_BANGin] = ACTIONS(613), [anon_sym_STAR_EQ] = ACTIONS(613), [anon_sym_SLASH_EQ] = ACTIONS(613), @@ -154741,412 +153158,338 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_EQ] = ACTIONS(613), [anon_sym_PIPE_EQ] = ACTIONS(613), [anon_sym_CARET_EQ] = ACTIONS(613), - [anon_sym_shared] = ACTIONS(3545), - [anon_sym_map_LBRACK] = ACTIONS(3547), - [anon_sym_chan] = ACTIONS(3549), - [anon_sym_thread] = ACTIONS(3551), - [anon_sym_atomic] = ACTIONS(3553), - }, - [1149] = { - [sym_reference_expression] = STATE(4528), - [sym_type_reference_expression] = STATE(1923), - [sym_plain_type] = STATE(2006), - [sym__plain_type_without_special] = STATE(2020), - [sym_anon_struct_type] = STATE(1942), - [sym_multi_return_type] = STATE(2020), - [sym_result_type] = STATE(2020), - [sym_option_type] = STATE(2020), - [sym_qualified_type] = STATE(1923), - [sym_fixed_array_type] = STATE(1942), - [sym_array_type] = STATE(1942), - [sym_pointer_type] = STATE(1942), - [sym_wrong_pointer_type] = STATE(1942), - [sym_map_type] = STATE(1942), - [sym_channel_type] = STATE(1942), - [sym_shared_type] = STATE(1942), - [sym_thread_type] = STATE(1942), - [sym_atomic_type] = STATE(1942), - [sym_generic_type] = STATE(1942), - [sym_function_type] = STATE(1942), - [sym_identifier] = ACTIONS(3527), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(587), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(587), - [anon_sym_LPAREN] = ACTIONS(3529), - [anon_sym_EQ] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3531), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3533), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(587), - [anon_sym_BANG_EQ] = ACTIONS(587), - [anon_sym_LT_EQ] = ACTIONS(587), - [anon_sym_GT_EQ] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_struct] = ACTIONS(3535), - [anon_sym_COLON] = ACTIONS(587), - [anon_sym_PLUS_PLUS] = ACTIONS(587), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(3537), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_LBRACK2] = ACTIONS(3541), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(3543), - [anon_sym_LT_DASH] = ACTIONS(587), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(587), - [anon_sym_POUND_LBRACK] = ACTIONS(587), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(587), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(587), - [anon_sym_STAR_EQ] = ACTIONS(587), - [anon_sym_SLASH_EQ] = ACTIONS(587), - [anon_sym_PERCENT_EQ] = ACTIONS(587), - [anon_sym_LT_LT_EQ] = ACTIONS(587), - [anon_sym_GT_GT_EQ] = ACTIONS(587), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(587), - [anon_sym_AMP_EQ] = ACTIONS(587), - [anon_sym_AMP_CARET_EQ] = ACTIONS(587), - [anon_sym_PLUS_EQ] = ACTIONS(587), - [anon_sym_DASH_EQ] = ACTIONS(587), - [anon_sym_PIPE_EQ] = ACTIONS(587), - [anon_sym_CARET_EQ] = ACTIONS(587), - [anon_sym_shared] = ACTIONS(3545), - [anon_sym_map_LBRACK] = ACTIONS(3547), - [anon_sym_chan] = ACTIONS(3549), - [anon_sym_thread] = ACTIONS(3551), - [anon_sym_atomic] = ACTIONS(3553), + [anon_sym_COLON_EQ] = ACTIONS(613), + [anon_sym_shared] = ACTIONS(3437), + [anon_sym_map_LBRACK] = ACTIONS(3439), + [anon_sym_chan] = ACTIONS(3441), + [anon_sym_thread] = ACTIONS(3443), + [anon_sym_atomic] = ACTIONS(3445), }, - [1150] = { - [sym_else_branch] = STATE(1173), - [sym_identifier] = ACTIONS(2406), - [anon_sym_LF] = ACTIONS(2406), - [anon_sym_CR] = ACTIONS(2406), - [anon_sym_CR_LF] = ACTIONS(2406), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2406), - [anon_sym_DOT] = ACTIONS(2406), - [anon_sym_as] = ACTIONS(2406), - [anon_sym_LBRACE] = ACTIONS(2406), - [anon_sym_COMMA] = ACTIONS(2406), - [anon_sym_RBRACE] = ACTIONS(2406), - [anon_sym_LPAREN] = ACTIONS(2406), - [anon_sym_PIPE] = ACTIONS(2406), - [anon_sym_fn] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2406), - [anon_sym_DASH] = ACTIONS(2406), - [anon_sym_STAR] = ACTIONS(2406), - [anon_sym_SLASH] = ACTIONS(2406), - [anon_sym_PERCENT] = ACTIONS(2406), - [anon_sym_LT] = ACTIONS(2406), - [anon_sym_GT] = ACTIONS(2406), - [anon_sym_EQ_EQ] = ACTIONS(2406), - [anon_sym_BANG_EQ] = ACTIONS(2406), - [anon_sym_LT_EQ] = ACTIONS(2406), - [anon_sym_GT_EQ] = ACTIONS(2406), - [anon_sym_LBRACK] = ACTIONS(2404), - [anon_sym_struct] = ACTIONS(2406), - [anon_sym_mut] = ACTIONS(2406), - [anon_sym_PLUS_PLUS] = ACTIONS(2406), - [anon_sym_DASH_DASH] = ACTIONS(2406), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_BANG] = ACTIONS(2406), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2406), - [anon_sym_json_DOTdecode] = ACTIONS(2406), - [anon_sym_LBRACK2] = ACTIONS(2406), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_CARET] = ACTIONS(2406), - [anon_sym_AMP] = ACTIONS(2406), - [anon_sym_LT_DASH] = ACTIONS(2406), - [anon_sym_LT_LT] = ACTIONS(2406), - [anon_sym_GT_GT] = ACTIONS(2406), - [anon_sym_GT_GT_GT] = ACTIONS(2406), - [anon_sym_AMP_CARET] = ACTIONS(2406), - [anon_sym_AMP_AMP] = ACTIONS(2406), - [anon_sym_PIPE_PIPE] = ACTIONS(2406), - [anon_sym_or] = ACTIONS(2406), - [sym_none] = ACTIONS(2406), - [sym_true] = ACTIONS(2406), - [sym_false] = ACTIONS(2406), - [sym_nil] = ACTIONS(2406), - [anon_sym_QMARK_DOT] = ACTIONS(2406), - [anon_sym_POUND_LBRACK] = ACTIONS(2406), - [anon_sym_if] = ACTIONS(2406), - [anon_sym_else] = ACTIONS(3513), - [anon_sym_DOLLARif] = ACTIONS(2406), - [anon_sym_is] = ACTIONS(2406), - [anon_sym_BANGis] = ACTIONS(2406), - [anon_sym_in] = ACTIONS(2406), - [anon_sym_BANGin] = ACTIONS(2406), - [anon_sym_match] = ACTIONS(2406), - [anon_sym_select] = ACTIONS(2406), - [anon_sym_lock] = ACTIONS(2406), - [anon_sym_rlock] = ACTIONS(2406), - [anon_sym_unsafe] = ACTIONS(2406), - [anon_sym_sql] = ACTIONS(2406), - [sym_int_literal] = ACTIONS(2406), - [sym_float_literal] = ACTIONS(2406), - [sym_rune_literal] = ACTIONS(2406), - [anon_sym_AT] = ACTIONS(2406), - [anon_sym_shared] = ACTIONS(2406), - [anon_sym_map_LBRACK] = ACTIONS(2406), - [anon_sym_chan] = ACTIONS(2406), - [anon_sym_thread] = ACTIONS(2406), - [anon_sym_atomic] = ACTIONS(2406), - [sym___double_quote] = ACTIONS(2406), - [sym___single_quote] = ACTIONS(2406), - [sym___c_double_quote] = ACTIONS(2406), - [sym___c_single_quote] = ACTIONS(2406), - [sym___r_double_quote] = ACTIONS(2406), - [sym___r_single_quote] = ACTIONS(2406), + [1127] = { + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2359), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(591), + [anon_sym_LF] = ACTIONS(617), + [anon_sym_CR] = ACTIONS(617), + [anon_sym_CR_LF] = ACTIONS(617), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(617), + [anon_sym_as] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_RBRACE] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_EQ] = ACTIONS(617), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(617), + [anon_sym_PERCENT] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(617), + [anon_sym_GT] = ACTIONS(617), + [anon_sym_EQ_EQ] = ACTIONS(617), + [anon_sym_BANG_EQ] = ACTIONS(617), + [anon_sym_LT_EQ] = ACTIONS(617), + [anon_sym_GT_EQ] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_struct] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(617), + [anon_sym_DASH_DASH] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_LBRACK2] = ACTIONS(617), + [anon_sym_CARET] = ACTIONS(617), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_LT_LT] = ACTIONS(617), + [anon_sym_GT_GT] = ACTIONS(617), + [anon_sym_GT_GT_GT] = ACTIONS(617), + [anon_sym_AMP_CARET] = ACTIONS(617), + [anon_sym_AMP_AMP] = ACTIONS(617), + [anon_sym_PIPE_PIPE] = ACTIONS(617), + [anon_sym_or] = ACTIONS(617), + [anon_sym_QMARK_DOT] = ACTIONS(617), + [anon_sym_POUND_LBRACK] = ACTIONS(617), + [anon_sym_is] = ACTIONS(617), + [anon_sym_BANGis] = ACTIONS(617), + [anon_sym_in] = ACTIONS(617), + [anon_sym_BANGin] = ACTIONS(617), + [anon_sym_STAR_EQ] = ACTIONS(617), + [anon_sym_SLASH_EQ] = ACTIONS(617), + [anon_sym_PERCENT_EQ] = ACTIONS(617), + [anon_sym_LT_LT_EQ] = ACTIONS(617), + [anon_sym_GT_GT_EQ] = ACTIONS(617), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(617), + [anon_sym_AMP_EQ] = ACTIONS(617), + [anon_sym_AMP_CARET_EQ] = ACTIONS(617), + [anon_sym_PLUS_EQ] = ACTIONS(617), + [anon_sym_DASH_EQ] = ACTIONS(617), + [anon_sym_PIPE_EQ] = ACTIONS(617), + [anon_sym_CARET_EQ] = ACTIONS(617), + [anon_sym_COLON_EQ] = ACTIONS(617), + [anon_sym_shared] = ACTIONS(609), + [anon_sym_map_LBRACK] = ACTIONS(543), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), }, - [1151] = { - [sym_reference_expression] = STATE(4465), - [sym_type_reference_expression] = STATE(1919), - [sym_plain_type] = STATE(2137), - [sym__plain_type_without_special] = STATE(2126), - [sym_anon_struct_type] = STATE(2127), - [sym_multi_return_type] = STATE(2126), - [sym_result_type] = STATE(2126), - [sym_option_type] = STATE(2126), - [sym_qualified_type] = STATE(1919), - [sym_fixed_array_type] = STATE(2127), - [sym_array_type] = STATE(2127), - [sym_pointer_type] = STATE(2127), - [sym_wrong_pointer_type] = STATE(2127), - [sym_map_type] = STATE(2127), - [sym_channel_type] = STATE(2127), - [sym_shared_type] = STATE(2127), - [sym_thread_type] = STATE(2127), - [sym_atomic_type] = STATE(2127), - [sym_generic_type] = STATE(2127), - [sym_function_type] = STATE(2127), - [sym_identifier] = ACTIONS(3555), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(551), - [anon_sym_DOT] = ACTIONS(551), - [anon_sym_as] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_COMMA] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(3557), - [anon_sym_EQ] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_fn] = ACTIONS(3559), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(3561), - [anon_sym_SLASH] = ACTIONS(555), - [anon_sym_PERCENT] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(555), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_EQ_EQ] = ACTIONS(551), - [anon_sym_BANG_EQ] = ACTIONS(551), - [anon_sym_LT_EQ] = ACTIONS(551), - [anon_sym_GT_EQ] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(3563), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_BANG] = ACTIONS(3567), - [anon_sym_LBRACK2] = ACTIONS(3569), - [anon_sym_CARET] = ACTIONS(555), - [anon_sym_AMP] = ACTIONS(3571), - [anon_sym_LT_LT] = ACTIONS(555), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_GT_GT_GT] = ACTIONS(555), - [anon_sym_AMP_CARET] = ACTIONS(555), - [anon_sym_AMP_AMP] = ACTIONS(551), - [anon_sym_PIPE_PIPE] = ACTIONS(551), - [anon_sym_or] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(551), - [anon_sym_POUND_LBRACK] = ACTIONS(551), - [anon_sym_is] = ACTIONS(555), - [anon_sym_BANGis] = ACTIONS(551), - [anon_sym_in] = ACTIONS(555), - [anon_sym_BANGin] = ACTIONS(551), - [anon_sym_STAR_EQ] = ACTIONS(551), - [anon_sym_SLASH_EQ] = ACTIONS(551), - [anon_sym_PERCENT_EQ] = ACTIONS(551), - [anon_sym_LT_LT_EQ] = ACTIONS(551), - [anon_sym_GT_GT_EQ] = ACTIONS(551), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(551), - [anon_sym_AMP_EQ] = ACTIONS(551), - [anon_sym_AMP_CARET_EQ] = ACTIONS(551), - [anon_sym_PLUS_EQ] = ACTIONS(551), - [anon_sym_DASH_EQ] = ACTIONS(551), - [anon_sym_PIPE_EQ] = ACTIONS(551), - [anon_sym_CARET_EQ] = ACTIONS(551), - [anon_sym_COLON_EQ] = ACTIONS(551), - [anon_sym_shared] = ACTIONS(3573), - [anon_sym_map_LBRACK] = ACTIONS(3575), - [anon_sym_chan] = ACTIONS(3577), - [anon_sym_thread] = ACTIONS(3579), - [anon_sym_atomic] = ACTIONS(3581), + [1128] = { + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2393), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(591), + [anon_sym_LF] = ACTIONS(593), + [anon_sym_CR] = ACTIONS(593), + [anon_sym_CR_LF] = ACTIONS(593), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(593), + [anon_sym_as] = ACTIONS(593), + [anon_sym_COMMA] = ACTIONS(593), + [anon_sym_RBRACE] = ACTIONS(593), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_EQ] = ACTIONS(593), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_STAR] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(593), + [anon_sym_PERCENT] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(593), + [anon_sym_GT_EQ] = ACTIONS(593), + [anon_sym_LBRACK] = ACTIONS(589), + [anon_sym_struct] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(593), + [anon_sym_DASH_DASH] = ACTIONS(593), + [anon_sym_QMARK] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(3447), + [anon_sym_LBRACK2] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(607), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_GT_GT_GT] = ACTIONS(593), + [anon_sym_AMP_CARET] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(593), + [anon_sym_PIPE_PIPE] = ACTIONS(593), + [anon_sym_or] = ACTIONS(593), + [anon_sym_QMARK_DOT] = ACTIONS(593), + [anon_sym_POUND_LBRACK] = ACTIONS(593), + [anon_sym_is] = ACTIONS(593), + [anon_sym_BANGis] = ACTIONS(593), + [anon_sym_in] = ACTIONS(593), + [anon_sym_BANGin] = ACTIONS(593), + [anon_sym_STAR_EQ] = ACTIONS(593), + [anon_sym_SLASH_EQ] = ACTIONS(593), + [anon_sym_PERCENT_EQ] = ACTIONS(593), + [anon_sym_LT_LT_EQ] = ACTIONS(593), + [anon_sym_GT_GT_EQ] = ACTIONS(593), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(593), + [anon_sym_AMP_EQ] = ACTIONS(593), + [anon_sym_AMP_CARET_EQ] = ACTIONS(593), + [anon_sym_PLUS_EQ] = ACTIONS(593), + [anon_sym_DASH_EQ] = ACTIONS(593), + [anon_sym_PIPE_EQ] = ACTIONS(593), + [anon_sym_CARET_EQ] = ACTIONS(593), + [anon_sym_COLON_EQ] = ACTIONS(593), + [anon_sym_shared] = ACTIONS(609), + [anon_sym_map_LBRACK] = ACTIONS(543), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), }, - [1152] = { - [sym_reference_expression] = STATE(4465), - [sym_type_reference_expression] = STATE(1919), - [sym_plain_type] = STATE(2052), - [sym__plain_type_without_special] = STATE(2126), - [sym_anon_struct_type] = STATE(2127), - [sym_multi_return_type] = STATE(2126), - [sym_result_type] = STATE(2126), - [sym_option_type] = STATE(2126), - [sym_qualified_type] = STATE(1919), - [sym_fixed_array_type] = STATE(2127), - [sym_array_type] = STATE(2127), - [sym_pointer_type] = STATE(2127), - [sym_wrong_pointer_type] = STATE(2127), - [sym_map_type] = STATE(2127), - [sym_channel_type] = STATE(2127), - [sym_shared_type] = STATE(2127), - [sym_thread_type] = STATE(2127), - [sym_atomic_type] = STATE(2127), - [sym_generic_type] = STATE(2127), - [sym_function_type] = STATE(2127), - [sym_identifier] = ACTIONS(3555), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(587), - [anon_sym_DOT] = ACTIONS(587), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(587), - [anon_sym_LPAREN] = ACTIONS(3557), - [anon_sym_EQ] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3559), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3561), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(587), - [anon_sym_BANG_EQ] = ACTIONS(587), - [anon_sym_LT_EQ] = ACTIONS(587), - [anon_sym_GT_EQ] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_struct] = ACTIONS(3563), - [anon_sym_PLUS_PLUS] = ACTIONS(587), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_BANG] = ACTIONS(3567), - [anon_sym_LBRACK2] = ACTIONS(3569), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(3571), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(587), - [anon_sym_POUND_LBRACK] = ACTIONS(587), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(587), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(587), - [anon_sym_STAR_EQ] = ACTIONS(587), - [anon_sym_SLASH_EQ] = ACTIONS(587), - [anon_sym_PERCENT_EQ] = ACTIONS(587), - [anon_sym_LT_LT_EQ] = ACTIONS(587), - [anon_sym_GT_GT_EQ] = ACTIONS(587), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(587), - [anon_sym_AMP_EQ] = ACTIONS(587), - [anon_sym_AMP_CARET_EQ] = ACTIONS(587), - [anon_sym_PLUS_EQ] = ACTIONS(587), - [anon_sym_DASH_EQ] = ACTIONS(587), - [anon_sym_PIPE_EQ] = ACTIONS(587), - [anon_sym_CARET_EQ] = ACTIONS(587), - [anon_sym_COLON_EQ] = ACTIONS(587), - [anon_sym_shared] = ACTIONS(3573), - [anon_sym_map_LBRACK] = ACTIONS(3575), - [anon_sym_chan] = ACTIONS(3577), - [anon_sym_thread] = ACTIONS(3579), - [anon_sym_atomic] = ACTIONS(3581), + [1129] = { + [sym_reference_expression] = STATE(4553), + [sym_type_reference_expression] = STATE(1773), + [sym_plain_type] = STATE(1808), + [sym__plain_type_without_special] = STATE(1811), + [sym_anon_struct_type] = STATE(1810), + [sym_multi_return_type] = STATE(1811), + [sym_result_type] = STATE(1811), + [sym_option_type] = STATE(1811), + [sym_qualified_type] = STATE(1773), + [sym_fixed_array_type] = STATE(1810), + [sym_array_type] = STATE(1810), + [sym_pointer_type] = STATE(1810), + [sym_wrong_pointer_type] = STATE(1810), + [sym_map_type] = STATE(1810), + [sym_channel_type] = STATE(1810), + [sym_shared_type] = STATE(1810), + [sym_thread_type] = STATE(1810), + [sym_atomic_type] = STATE(1810), + [sym_generic_type] = STATE(1810), + [sym_function_type] = STATE(1810), + [sym_identifier] = ACTIONS(3449), + [anon_sym_LF] = ACTIONS(561), + [anon_sym_CR] = ACTIONS(561), + [anon_sym_CR_LF] = ACTIONS(561), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(561), + [anon_sym_as] = ACTIONS(561), + [anon_sym_COMMA] = ACTIONS(561), + [anon_sym_RBRACE] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_EQ] = ACTIONS(561), + [anon_sym_PIPE] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(3453), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(3455), + [anon_sym_SLASH] = ACTIONS(561), + [anon_sym_PERCENT] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(561), + [anon_sym_GT] = ACTIONS(561), + [anon_sym_EQ_EQ] = ACTIONS(561), + [anon_sym_BANG_EQ] = ACTIONS(561), + [anon_sym_LT_EQ] = ACTIONS(561), + [anon_sym_GT_EQ] = ACTIONS(561), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_struct] = ACTIONS(3457), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [anon_sym_QMARK] = ACTIONS(3459), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_LBRACK2] = ACTIONS(3463), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(3465), + [anon_sym_LT_LT] = ACTIONS(561), + [anon_sym_GT_GT] = ACTIONS(561), + [anon_sym_GT_GT_GT] = ACTIONS(561), + [anon_sym_AMP_CARET] = ACTIONS(561), + [anon_sym_AMP_AMP] = ACTIONS(561), + [anon_sym_PIPE_PIPE] = ACTIONS(561), + [anon_sym_or] = ACTIONS(561), + [anon_sym_QMARK_DOT] = ACTIONS(561), + [anon_sym_POUND_LBRACK] = ACTIONS(561), + [anon_sym_is] = ACTIONS(561), + [anon_sym_BANGis] = ACTIONS(561), + [anon_sym_in] = ACTIONS(561), + [anon_sym_BANGin] = ACTIONS(561), + [anon_sym_STAR_EQ] = ACTIONS(561), + [anon_sym_SLASH_EQ] = ACTIONS(561), + [anon_sym_PERCENT_EQ] = ACTIONS(561), + [anon_sym_LT_LT_EQ] = ACTIONS(561), + [anon_sym_GT_GT_EQ] = ACTIONS(561), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(561), + [anon_sym_AMP_EQ] = ACTIONS(561), + [anon_sym_AMP_CARET_EQ] = ACTIONS(561), + [anon_sym_PLUS_EQ] = ACTIONS(561), + [anon_sym_DASH_EQ] = ACTIONS(561), + [anon_sym_PIPE_EQ] = ACTIONS(561), + [anon_sym_CARET_EQ] = ACTIONS(561), + [anon_sym_COLON_EQ] = ACTIONS(561), + [anon_sym_shared] = ACTIONS(3467), + [anon_sym_map_LBRACK] = ACTIONS(3469), + [anon_sym_chan] = ACTIONS(3471), + [anon_sym_thread] = ACTIONS(3473), + [anon_sym_atomic] = ACTIONS(3475), }, - [1153] = { - [sym_reference_expression] = STATE(4465), - [sym_type_reference_expression] = STATE(1919), - [sym_plain_type] = STATE(2059), - [sym__plain_type_without_special] = STATE(2126), - [sym_anon_struct_type] = STATE(2127), - [sym_multi_return_type] = STATE(2126), - [sym_result_type] = STATE(2126), - [sym_option_type] = STATE(2126), - [sym_qualified_type] = STATE(1919), - [sym_fixed_array_type] = STATE(2127), - [sym_array_type] = STATE(2127), - [sym_pointer_type] = STATE(2127), - [sym_wrong_pointer_type] = STATE(2127), - [sym_map_type] = STATE(2127), - [sym_channel_type] = STATE(2127), - [sym_shared_type] = STATE(2127), - [sym_thread_type] = STATE(2127), - [sym_atomic_type] = STATE(2127), - [sym_generic_type] = STATE(2127), - [sym_function_type] = STATE(2127), - [sym_identifier] = ACTIONS(3555), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(613), + [1130] = { + [sym_reference_expression] = STATE(4553), + [sym_type_reference_expression] = STATE(1773), + [sym_plain_type] = STATE(1862), + [sym__plain_type_without_special] = STATE(1811), + [sym_anon_struct_type] = STATE(1810), + [sym_multi_return_type] = STATE(1811), + [sym_result_type] = STATE(1811), + [sym_option_type] = STATE(1811), + [sym_qualified_type] = STATE(1773), + [sym_fixed_array_type] = STATE(1810), + [sym_array_type] = STATE(1810), + [sym_pointer_type] = STATE(1810), + [sym_wrong_pointer_type] = STATE(1810), + [sym_map_type] = STATE(1810), + [sym_channel_type] = STATE(1810), + [sym_shared_type] = STATE(1810), + [sym_thread_type] = STATE(1810), + [sym_atomic_type] = STATE(1810), + [sym_generic_type] = STATE(1810), + [sym_function_type] = STATE(1810), + [sym_identifier] = ACTIONS(3449), + [anon_sym_LF] = ACTIONS(613), + [anon_sym_CR] = ACTIONS(613), + [anon_sym_CR_LF] = ACTIONS(613), + [sym_comment] = ACTIONS(493), [anon_sym_DOT] = ACTIONS(613), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_as] = ACTIONS(613), [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(3557), - [anon_sym_EQ] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(3559), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(3561), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), + [anon_sym_RBRACE] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_EQ] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(613), + [anon_sym_fn] = ACTIONS(3453), + [anon_sym_PLUS] = ACTIONS(613), + [anon_sym_DASH] = ACTIONS(613), + [anon_sym_STAR] = ACTIONS(3455), + [anon_sym_SLASH] = ACTIONS(613), + [anon_sym_PERCENT] = ACTIONS(613), + [anon_sym_LT] = ACTIONS(613), + [anon_sym_GT] = ACTIONS(613), [anon_sym_EQ_EQ] = ACTIONS(613), [anon_sym_BANG_EQ] = ACTIONS(613), [anon_sym_LT_EQ] = ACTIONS(613), [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(3563), + [anon_sym_LBRACK] = ACTIONS(611), + [anon_sym_struct] = ACTIONS(3457), [anon_sym_PLUS_PLUS] = ACTIONS(613), [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_BANG] = ACTIONS(3567), - [anon_sym_LBRACK2] = ACTIONS(3569), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(3571), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), + [anon_sym_QMARK] = ACTIONS(3459), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_LBRACK2] = ACTIONS(3463), + [anon_sym_CARET] = ACTIONS(613), + [anon_sym_AMP] = ACTIONS(3465), + [anon_sym_LT_LT] = ACTIONS(613), + [anon_sym_GT_GT] = ACTIONS(613), + [anon_sym_GT_GT_GT] = ACTIONS(613), + [anon_sym_AMP_CARET] = ACTIONS(613), [anon_sym_AMP_AMP] = ACTIONS(613), [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_or] = ACTIONS(615), + [anon_sym_or] = ACTIONS(613), [anon_sym_QMARK_DOT] = ACTIONS(613), [anon_sym_POUND_LBRACK] = ACTIONS(613), - [anon_sym_is] = ACTIONS(615), + [anon_sym_is] = ACTIONS(613), [anon_sym_BANGis] = ACTIONS(613), - [anon_sym_in] = ACTIONS(615), + [anon_sym_in] = ACTIONS(613), [anon_sym_BANGin] = ACTIONS(613), [anon_sym_STAR_EQ] = ACTIONS(613), [anon_sym_SLASH_EQ] = ACTIONS(613), @@ -155161,523 +153504,2473 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(613), [anon_sym_CARET_EQ] = ACTIONS(613), [anon_sym_COLON_EQ] = ACTIONS(613), - [anon_sym_shared] = ACTIONS(3573), - [anon_sym_map_LBRACK] = ACTIONS(3575), - [anon_sym_chan] = ACTIONS(3577), - [anon_sym_thread] = ACTIONS(3579), - [anon_sym_atomic] = ACTIONS(3581), - }, - [1154] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(591), - [anon_sym_as] = ACTIONS(595), - [anon_sym_LBRACE] = ACTIONS(591), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_EQ] = ACTIONS(595), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(591), - [anon_sym_BANG_EQ] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(591), - [anon_sym_GT_EQ] = ACTIONS(591), - [anon_sym_LBRACK] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(591), - [anon_sym_DASH_DASH] = ACTIONS(591), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(3583), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_DASH] = ACTIONS(591), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_GT_GT_GT] = ACTIONS(595), - [anon_sym_AMP_CARET] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(591), - [anon_sym_PIPE_PIPE] = ACTIONS(591), - [anon_sym_or] = ACTIONS(595), - [anon_sym_QMARK_DOT] = ACTIONS(591), - [anon_sym_POUND_LBRACK] = ACTIONS(591), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(591), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(591), - [anon_sym_STAR_EQ] = ACTIONS(591), - [anon_sym_SLASH_EQ] = ACTIONS(591), - [anon_sym_PERCENT_EQ] = ACTIONS(591), - [anon_sym_LT_LT_EQ] = ACTIONS(591), - [anon_sym_GT_GT_EQ] = ACTIONS(591), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(591), - [anon_sym_AMP_EQ] = ACTIONS(591), - [anon_sym_AMP_CARET_EQ] = ACTIONS(591), - [anon_sym_PLUS_EQ] = ACTIONS(591), - [anon_sym_DASH_EQ] = ACTIONS(591), - [anon_sym_PIPE_EQ] = ACTIONS(591), - [anon_sym_CARET_EQ] = ACTIONS(591), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), + [anon_sym_shared] = ACTIONS(3467), + [anon_sym_map_LBRACK] = ACTIONS(3469), + [anon_sym_chan] = ACTIONS(3471), + [anon_sym_thread] = ACTIONS(3473), + [anon_sym_atomic] = ACTIONS(3475), }, - [1155] = { - [sym_identifier] = ACTIONS(3517), - [anon_sym_LF] = ACTIONS(3520), - [anon_sym_CR] = ACTIONS(3520), - [anon_sym_CR_LF] = ACTIONS(3520), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3520), - [anon_sym_DOT] = ACTIONS(3585), - [anon_sym_as] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(3520), - [anon_sym_RBRACE] = ACTIONS(3517), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_PIPE] = ACTIONS(2884), - [anon_sym_fn] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2884), - [anon_sym_SLASH] = ACTIONS(2884), - [anon_sym_PERCENT] = ACTIONS(2884), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_GT] = ACTIONS(2884), - [anon_sym_EQ_EQ] = ACTIONS(2884), - [anon_sym_BANG_EQ] = ACTIONS(2884), - [anon_sym_LT_EQ] = ACTIONS(2884), - [anon_sym_GT_EQ] = ACTIONS(2884), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3523), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_mut] = ACTIONS(2884), - [anon_sym_COLON] = ACTIONS(3525), - [anon_sym_PLUS_PLUS] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2884), - [anon_sym_QMARK] = ACTIONS(2884), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_go] = ACTIONS(2884), - [anon_sym_spawn] = ACTIONS(2884), - [anon_sym_json_DOTdecode] = ACTIONS(2884), - [anon_sym_LBRACK2] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2884), - [anon_sym_CARET] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_LT_DASH] = ACTIONS(2884), - [anon_sym_LT_LT] = ACTIONS(2884), - [anon_sym_GT_GT] = ACTIONS(2884), - [anon_sym_GT_GT_GT] = ACTIONS(2884), - [anon_sym_AMP_CARET] = ACTIONS(2884), - [anon_sym_AMP_AMP] = ACTIONS(2884), - [anon_sym_PIPE_PIPE] = ACTIONS(2884), - [anon_sym_or] = ACTIONS(2884), - [sym_none] = ACTIONS(2884), - [sym_true] = ACTIONS(2884), - [sym_false] = ACTIONS(2884), - [sym_nil] = ACTIONS(2884), - [anon_sym_QMARK_DOT] = ACTIONS(2884), - [anon_sym_POUND_LBRACK] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_DOLLARif] = ACTIONS(2884), - [anon_sym_is] = ACTIONS(2884), - [anon_sym_BANGis] = ACTIONS(2884), - [anon_sym_in] = ACTIONS(2884), - [anon_sym_BANGin] = ACTIONS(2884), - [anon_sym_match] = ACTIONS(2884), - [anon_sym_select] = ACTIONS(2884), - [anon_sym_lock] = ACTIONS(2884), - [anon_sym_rlock] = ACTIONS(2884), - [anon_sym_unsafe] = ACTIONS(2884), - [anon_sym_sql] = ACTIONS(2884), - [sym_int_literal] = ACTIONS(2884), - [sym_float_literal] = ACTIONS(2884), - [sym_rune_literal] = ACTIONS(2884), - [anon_sym_AT] = ACTIONS(2884), - [anon_sym_shared] = ACTIONS(2884), - [anon_sym_map_LBRACK] = ACTIONS(2884), - [anon_sym_chan] = ACTIONS(2884), - [anon_sym_thread] = ACTIONS(2884), - [anon_sym_atomic] = ACTIONS(2884), - [sym___double_quote] = ACTIONS(2884), - [sym___single_quote] = ACTIONS(2884), - [sym___c_double_quote] = ACTIONS(2884), - [sym___c_single_quote] = ACTIONS(2884), - [sym___r_double_quote] = ACTIONS(2884), - [sym___r_single_quote] = ACTIONS(2884), + [1131] = { + [sym_reference_expression] = STATE(4553), + [sym_type_reference_expression] = STATE(1773), + [sym_plain_type] = STATE(1873), + [sym__plain_type_without_special] = STATE(1811), + [sym_anon_struct_type] = STATE(1810), + [sym_multi_return_type] = STATE(1811), + [sym_result_type] = STATE(1811), + [sym_option_type] = STATE(1811), + [sym_qualified_type] = STATE(1773), + [sym_fixed_array_type] = STATE(1810), + [sym_array_type] = STATE(1810), + [sym_pointer_type] = STATE(1810), + [sym_wrong_pointer_type] = STATE(1810), + [sym_map_type] = STATE(1810), + [sym_channel_type] = STATE(1810), + [sym_shared_type] = STATE(1810), + [sym_thread_type] = STATE(1810), + [sym_atomic_type] = STATE(1810), + [sym_generic_type] = STATE(1810), + [sym_function_type] = STATE(1810), + [sym_identifier] = ACTIONS(3449), + [anon_sym_LF] = ACTIONS(621), + [anon_sym_CR] = ACTIONS(621), + [anon_sym_CR_LF] = ACTIONS(621), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_as] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_fn] = ACTIONS(3453), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(3455), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(621), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_EQ_EQ] = ACTIONS(621), + [anon_sym_BANG_EQ] = ACTIONS(621), + [anon_sym_LT_EQ] = ACTIONS(621), + [anon_sym_GT_EQ] = ACTIONS(621), + [anon_sym_LBRACK] = ACTIONS(619), + [anon_sym_struct] = ACTIONS(3457), + [anon_sym_PLUS_PLUS] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(3459), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_LBRACK2] = ACTIONS(3463), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(3465), + [anon_sym_LT_LT] = ACTIONS(621), + [anon_sym_GT_GT] = ACTIONS(621), + [anon_sym_GT_GT_GT] = ACTIONS(621), + [anon_sym_AMP_CARET] = ACTIONS(621), + [anon_sym_AMP_AMP] = ACTIONS(621), + [anon_sym_PIPE_PIPE] = ACTIONS(621), + [anon_sym_or] = ACTIONS(621), + [anon_sym_QMARK_DOT] = ACTIONS(621), + [anon_sym_POUND_LBRACK] = ACTIONS(621), + [anon_sym_is] = ACTIONS(621), + [anon_sym_BANGis] = ACTIONS(621), + [anon_sym_in] = ACTIONS(621), + [anon_sym_BANGin] = ACTIONS(621), + [anon_sym_STAR_EQ] = ACTIONS(621), + [anon_sym_SLASH_EQ] = ACTIONS(621), + [anon_sym_PERCENT_EQ] = ACTIONS(621), + [anon_sym_LT_LT_EQ] = ACTIONS(621), + [anon_sym_GT_GT_EQ] = ACTIONS(621), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(621), + [anon_sym_AMP_EQ] = ACTIONS(621), + [anon_sym_AMP_CARET_EQ] = ACTIONS(621), + [anon_sym_PLUS_EQ] = ACTIONS(621), + [anon_sym_DASH_EQ] = ACTIONS(621), + [anon_sym_PIPE_EQ] = ACTIONS(621), + [anon_sym_CARET_EQ] = ACTIONS(621), + [anon_sym_COLON_EQ] = ACTIONS(621), + [anon_sym_shared] = ACTIONS(3467), + [anon_sym_map_LBRACK] = ACTIONS(3469), + [anon_sym_chan] = ACTIONS(3471), + [anon_sym_thread] = ACTIONS(3473), + [anon_sym_atomic] = ACTIONS(3475), }, - [1156] = { - [sym_reference_expression] = STATE(4528), - [sym_type_reference_expression] = STATE(1923), - [sym_plain_type] = STATE(2109), - [sym__plain_type_without_special] = STATE(2020), - [sym_anon_struct_type] = STATE(1942), - [sym_multi_return_type] = STATE(2020), - [sym_result_type] = STATE(2020), - [sym_option_type] = STATE(2020), - [sym_qualified_type] = STATE(1923), - [sym_fixed_array_type] = STATE(1942), - [sym_array_type] = STATE(1942), - [sym_pointer_type] = STATE(1942), - [sym_wrong_pointer_type] = STATE(1942), - [sym_map_type] = STATE(1942), - [sym_channel_type] = STATE(1942), - [sym_shared_type] = STATE(1942), - [sym_thread_type] = STATE(1942), - [sym_atomic_type] = STATE(1942), - [sym_generic_type] = STATE(1942), - [sym_function_type] = STATE(1942), - [sym_identifier] = ACTIONS(3527), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(551), - [anon_sym_as] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_COMMA] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(3529), - [anon_sym_EQ] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_fn] = ACTIONS(3531), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(3533), - [anon_sym_SLASH] = ACTIONS(555), - [anon_sym_PERCENT] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(555), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_EQ_EQ] = ACTIONS(551), - [anon_sym_BANG_EQ] = ACTIONS(551), - [anon_sym_LT_EQ] = ACTIONS(551), - [anon_sym_GT_EQ] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(3535), - [anon_sym_COLON] = ACTIONS(551), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_QMARK] = ACTIONS(3537), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_LBRACK2] = ACTIONS(3541), - [anon_sym_CARET] = ACTIONS(555), - [anon_sym_AMP] = ACTIONS(3543), - [anon_sym_LT_DASH] = ACTIONS(551), - [anon_sym_LT_LT] = ACTIONS(555), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_GT_GT_GT] = ACTIONS(555), - [anon_sym_AMP_CARET] = ACTIONS(555), - [anon_sym_AMP_AMP] = ACTIONS(551), - [anon_sym_PIPE_PIPE] = ACTIONS(551), - [anon_sym_or] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(551), - [anon_sym_POUND_LBRACK] = ACTIONS(551), - [anon_sym_is] = ACTIONS(555), - [anon_sym_BANGis] = ACTIONS(551), - [anon_sym_in] = ACTIONS(555), - [anon_sym_BANGin] = ACTIONS(551), - [anon_sym_STAR_EQ] = ACTIONS(551), - [anon_sym_SLASH_EQ] = ACTIONS(551), - [anon_sym_PERCENT_EQ] = ACTIONS(551), - [anon_sym_LT_LT_EQ] = ACTIONS(551), - [anon_sym_GT_GT_EQ] = ACTIONS(551), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(551), - [anon_sym_AMP_EQ] = ACTIONS(551), - [anon_sym_AMP_CARET_EQ] = ACTIONS(551), - [anon_sym_PLUS_EQ] = ACTIONS(551), - [anon_sym_DASH_EQ] = ACTIONS(551), - [anon_sym_PIPE_EQ] = ACTIONS(551), - [anon_sym_CARET_EQ] = ACTIONS(551), - [anon_sym_shared] = ACTIONS(3545), - [anon_sym_map_LBRACK] = ACTIONS(3547), - [anon_sym_chan] = ACTIONS(3549), - [anon_sym_thread] = ACTIONS(3551), - [anon_sym_atomic] = ACTIONS(3553), + [1132] = { + [sym_type_parameters] = STATE(4361), + [sym_argument_list] = STATE(1252), + [sym_or_block] = STATE(1246), + [sym_identifier] = ACTIONS(2162), + [anon_sym_LF] = ACTIONS(2162), + [anon_sym_CR] = ACTIONS(2162), + [anon_sym_CR_LF] = ACTIONS(2162), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym_DOT] = ACTIONS(3477), + [anon_sym_as] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_COMMA] = ACTIONS(2162), + [anon_sym_RBRACE] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(3479), + [anon_sym_PIPE] = ACTIONS(3481), + [anon_sym_fn] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(3481), + [anon_sym_DASH] = ACTIONS(3481), + [anon_sym_STAR] = ACTIONS(3483), + [anon_sym_SLASH] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_GT] = ACTIONS(3485), + [anon_sym_EQ_EQ] = ACTIONS(3485), + [anon_sym_BANG_EQ] = ACTIONS(3485), + [anon_sym_LT_EQ] = ACTIONS(3485), + [anon_sym_GT_EQ] = ACTIONS(3485), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_mut] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2162), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_QMARK] = ACTIONS(3489), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_go] = ACTIONS(2162), + [anon_sym_spawn] = ACTIONS(2162), + [anon_sym_json_DOTdecode] = ACTIONS(2162), + [anon_sym_LBRACK2] = ACTIONS(3493), + [anon_sym_TILDE] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(3481), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(2162), + [anon_sym_LT_LT] = ACTIONS(3483), + [anon_sym_GT_GT] = ACTIONS(3483), + [anon_sym_GT_GT_GT] = ACTIONS(3483), + [anon_sym_AMP_CARET] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_PIPE_PIPE] = ACTIONS(2162), + [anon_sym_or] = ACTIONS(2162), + [sym_none] = ACTIONS(2162), + [sym_true] = ACTIONS(2162), + [sym_false] = ACTIONS(2162), + [sym_nil] = ACTIONS(2162), + [anon_sym_QMARK_DOT] = ACTIONS(3477), + [anon_sym_POUND_LBRACK] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_DOLLARif] = ACTIONS(2162), + [anon_sym_is] = ACTIONS(2162), + [anon_sym_BANGis] = ACTIONS(2162), + [anon_sym_in] = ACTIONS(3497), + [anon_sym_BANGin] = ACTIONS(3499), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_select] = ACTIONS(2162), + [anon_sym_lock] = ACTIONS(2162), + [anon_sym_rlock] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_sql] = ACTIONS(2162), + [sym_int_literal] = ACTIONS(2162), + [sym_float_literal] = ACTIONS(2162), + [sym_rune_literal] = ACTIONS(2162), + [anon_sym_AT] = ACTIONS(2162), + [anon_sym_shared] = ACTIONS(2162), + [anon_sym_map_LBRACK] = ACTIONS(2162), + [anon_sym_chan] = ACTIONS(2162), + [anon_sym_thread] = ACTIONS(2162), + [anon_sym_atomic] = ACTIONS(2162), + [sym___double_quote] = ACTIONS(2162), + [sym___single_quote] = ACTIONS(2162), + [sym___c_double_quote] = ACTIONS(2162), + [sym___c_single_quote] = ACTIONS(2162), + [sym___r_double_quote] = ACTIONS(2162), + [sym___r_single_quote] = ACTIONS(2162), }, - [1157] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(591), - [anon_sym_DOT] = ACTIONS(591), - [anon_sym_as] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_EQ] = ACTIONS(595), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(591), - [anon_sym_BANG_EQ] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(591), - [anon_sym_GT_EQ] = ACTIONS(591), - [anon_sym_LBRACK] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(591), - [anon_sym_DASH_DASH] = ACTIONS(591), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(3588), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_GT_GT_GT] = ACTIONS(595), - [anon_sym_AMP_CARET] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(591), - [anon_sym_PIPE_PIPE] = ACTIONS(591), - [anon_sym_or] = ACTIONS(595), - [anon_sym_QMARK_DOT] = ACTIONS(591), - [anon_sym_POUND_LBRACK] = ACTIONS(591), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(591), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(591), - [anon_sym_STAR_EQ] = ACTIONS(591), - [anon_sym_SLASH_EQ] = ACTIONS(591), - [anon_sym_PERCENT_EQ] = ACTIONS(591), - [anon_sym_LT_LT_EQ] = ACTIONS(591), - [anon_sym_GT_GT_EQ] = ACTIONS(591), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(591), - [anon_sym_AMP_EQ] = ACTIONS(591), - [anon_sym_AMP_CARET_EQ] = ACTIONS(591), - [anon_sym_PLUS_EQ] = ACTIONS(591), - [anon_sym_DASH_EQ] = ACTIONS(591), - [anon_sym_PIPE_EQ] = ACTIONS(591), - [anon_sym_CARET_EQ] = ACTIONS(591), - [anon_sym_COLON_EQ] = ACTIONS(591), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), + [1133] = { + [sym_type_parameters] = STATE(4361), + [sym_argument_list] = STATE(1252), + [sym_or_block] = STATE(1246), + [sym_identifier] = ACTIONS(2246), + [anon_sym_LF] = ACTIONS(2246), + [anon_sym_CR] = ACTIONS(2246), + [anon_sym_CR_LF] = ACTIONS(2246), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_DOT] = ACTIONS(3477), + [anon_sym_as] = ACTIONS(2246), + [anon_sym_LBRACE] = ACTIONS(2246), + [anon_sym_COMMA] = ACTIONS(2246), + [anon_sym_RBRACE] = ACTIONS(2246), + [anon_sym_LPAREN] = ACTIONS(3479), + [anon_sym_PIPE] = ACTIONS(2246), + [anon_sym_fn] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2246), + [anon_sym_SLASH] = ACTIONS(2246), + [anon_sym_PERCENT] = ACTIONS(2246), + [anon_sym_LT] = ACTIONS(2246), + [anon_sym_GT] = ACTIONS(2246), + [anon_sym_EQ_EQ] = ACTIONS(2246), + [anon_sym_BANG_EQ] = ACTIONS(2246), + [anon_sym_LT_EQ] = ACTIONS(2246), + [anon_sym_GT_EQ] = ACTIONS(2246), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_struct] = ACTIONS(2246), + [anon_sym_mut] = ACTIONS(2246), + [anon_sym_PLUS_PLUS] = ACTIONS(2246), + [anon_sym_DASH_DASH] = ACTIONS(2246), + [anon_sym_QMARK] = ACTIONS(3489), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_go] = ACTIONS(2246), + [anon_sym_spawn] = ACTIONS(2246), + [anon_sym_json_DOTdecode] = ACTIONS(2246), + [anon_sym_LBRACK2] = ACTIONS(3493), + [anon_sym_TILDE] = ACTIONS(2246), + [anon_sym_CARET] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(2246), + [anon_sym_LT_LT] = ACTIONS(2246), + [anon_sym_GT_GT] = ACTIONS(2246), + [anon_sym_GT_GT_GT] = ACTIONS(2246), + [anon_sym_AMP_CARET] = ACTIONS(2246), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE_PIPE] = ACTIONS(2246), + [anon_sym_or] = ACTIONS(2246), + [sym_none] = ACTIONS(2246), + [sym_true] = ACTIONS(2246), + [sym_false] = ACTIONS(2246), + [sym_nil] = ACTIONS(2246), + [anon_sym_QMARK_DOT] = ACTIONS(3477), + [anon_sym_POUND_LBRACK] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(2246), + [anon_sym_DOLLARif] = ACTIONS(2246), + [anon_sym_is] = ACTIONS(2246), + [anon_sym_BANGis] = ACTIONS(2246), + [anon_sym_in] = ACTIONS(2246), + [anon_sym_BANGin] = ACTIONS(2246), + [anon_sym_match] = ACTIONS(2246), + [anon_sym_select] = ACTIONS(2246), + [anon_sym_lock] = ACTIONS(2246), + [anon_sym_rlock] = ACTIONS(2246), + [anon_sym_unsafe] = ACTIONS(2246), + [anon_sym_sql] = ACTIONS(2246), + [sym_int_literal] = ACTIONS(2246), + [sym_float_literal] = ACTIONS(2246), + [sym_rune_literal] = ACTIONS(2246), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_shared] = ACTIONS(2246), + [anon_sym_map_LBRACK] = ACTIONS(2246), + [anon_sym_chan] = ACTIONS(2246), + [anon_sym_thread] = ACTIONS(2246), + [anon_sym_atomic] = ACTIONS(2246), + [sym___double_quote] = ACTIONS(2246), + [sym___single_quote] = ACTIONS(2246), + [sym___c_double_quote] = ACTIONS(2246), + [sym___c_single_quote] = ACTIONS(2246), + [sym___r_double_quote] = ACTIONS(2246), + [sym___r_single_quote] = ACTIONS(2246), }, - [1158] = { - [sym_identifier] = ACTIONS(2700), - [anon_sym_LF] = ACTIONS(2700), - [anon_sym_CR] = ACTIONS(2700), - [anon_sym_CR_LF] = ACTIONS(2700), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_COMMA] = ACTIONS(2700), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2700), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2700), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2700), - [anon_sym_AMP_CARET] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2700), - [anon_sym_POUND_LBRACK] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_else] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2700), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2700), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), - [sym_rune_literal] = ACTIONS(2700), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2700), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2700), - [sym___single_quote] = ACTIONS(2700), - [sym___c_double_quote] = ACTIONS(2700), - [sym___c_single_quote] = ACTIONS(2700), - [sym___r_double_quote] = ACTIONS(2700), - [sym___r_single_quote] = ACTIONS(2700), + [1134] = { + [sym_type_parameters] = STATE(4361), + [sym_argument_list] = STATE(1252), + [sym_or_block] = STATE(1246), + [sym_identifier] = ACTIONS(2162), + [anon_sym_LF] = ACTIONS(2162), + [anon_sym_CR] = ACTIONS(2162), + [anon_sym_CR_LF] = ACTIONS(2162), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym_DOT] = ACTIONS(3477), + [anon_sym_as] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_COMMA] = ACTIONS(2162), + [anon_sym_RBRACE] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(3479), + [anon_sym_PIPE] = ACTIONS(2162), + [anon_sym_fn] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(2162), + [anon_sym_DASH] = ACTIONS(2162), + [anon_sym_STAR] = ACTIONS(3483), + [anon_sym_SLASH] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_LT] = ACTIONS(2162), + [anon_sym_GT] = ACTIONS(2162), + [anon_sym_EQ_EQ] = ACTIONS(2162), + [anon_sym_BANG_EQ] = ACTIONS(2162), + [anon_sym_LT_EQ] = ACTIONS(2162), + [anon_sym_GT_EQ] = ACTIONS(2162), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_mut] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2162), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_QMARK] = ACTIONS(3489), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_go] = ACTIONS(2162), + [anon_sym_spawn] = ACTIONS(2162), + [anon_sym_json_DOTdecode] = ACTIONS(2162), + [anon_sym_LBRACK2] = ACTIONS(3493), + [anon_sym_TILDE] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(2162), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(2162), + [anon_sym_LT_LT] = ACTIONS(3483), + [anon_sym_GT_GT] = ACTIONS(3483), + [anon_sym_GT_GT_GT] = ACTIONS(3483), + [anon_sym_AMP_CARET] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(2162), + [anon_sym_PIPE_PIPE] = ACTIONS(2162), + [anon_sym_or] = ACTIONS(2162), + [sym_none] = ACTIONS(2162), + [sym_true] = ACTIONS(2162), + [sym_false] = ACTIONS(2162), + [sym_nil] = ACTIONS(2162), + [anon_sym_QMARK_DOT] = ACTIONS(3477), + [anon_sym_POUND_LBRACK] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_DOLLARif] = ACTIONS(2162), + [anon_sym_is] = ACTIONS(2162), + [anon_sym_BANGis] = ACTIONS(2162), + [anon_sym_in] = ACTIONS(2162), + [anon_sym_BANGin] = ACTIONS(2162), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_select] = ACTIONS(2162), + [anon_sym_lock] = ACTIONS(2162), + [anon_sym_rlock] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_sql] = ACTIONS(2162), + [sym_int_literal] = ACTIONS(2162), + [sym_float_literal] = ACTIONS(2162), + [sym_rune_literal] = ACTIONS(2162), + [anon_sym_AT] = ACTIONS(2162), + [anon_sym_shared] = ACTIONS(2162), + [anon_sym_map_LBRACK] = ACTIONS(2162), + [anon_sym_chan] = ACTIONS(2162), + [anon_sym_thread] = ACTIONS(2162), + [anon_sym_atomic] = ACTIONS(2162), + [sym___double_quote] = ACTIONS(2162), + [sym___single_quote] = ACTIONS(2162), + [sym___c_double_quote] = ACTIONS(2162), + [sym___c_single_quote] = ACTIONS(2162), + [sym___r_double_quote] = ACTIONS(2162), + [sym___r_single_quote] = ACTIONS(2162), + }, + [1135] = { + [sym_type_parameters] = STATE(4361), + [sym_argument_list] = STATE(1252), + [sym_or_block] = STATE(1246), + [sym_identifier] = ACTIONS(2162), + [anon_sym_LF] = ACTIONS(2162), + [anon_sym_CR] = ACTIONS(2162), + [anon_sym_CR_LF] = ACTIONS(2162), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym_DOT] = ACTIONS(3477), + [anon_sym_as] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_COMMA] = ACTIONS(2162), + [anon_sym_RBRACE] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(3479), + [anon_sym_PIPE] = ACTIONS(3481), + [anon_sym_fn] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(3481), + [anon_sym_DASH] = ACTIONS(3481), + [anon_sym_STAR] = ACTIONS(3483), + [anon_sym_SLASH] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_LT] = ACTIONS(2162), + [anon_sym_GT] = ACTIONS(2162), + [anon_sym_EQ_EQ] = ACTIONS(2162), + [anon_sym_BANG_EQ] = ACTIONS(2162), + [anon_sym_LT_EQ] = ACTIONS(2162), + [anon_sym_GT_EQ] = ACTIONS(2162), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_mut] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2162), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_QMARK] = ACTIONS(3489), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_go] = ACTIONS(2162), + [anon_sym_spawn] = ACTIONS(2162), + [anon_sym_json_DOTdecode] = ACTIONS(2162), + [anon_sym_LBRACK2] = ACTIONS(3493), + [anon_sym_TILDE] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(3481), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(2162), + [anon_sym_LT_LT] = ACTIONS(3483), + [anon_sym_GT_GT] = ACTIONS(3483), + [anon_sym_GT_GT_GT] = ACTIONS(3483), + [anon_sym_AMP_CARET] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(2162), + [anon_sym_PIPE_PIPE] = ACTIONS(2162), + [anon_sym_or] = ACTIONS(2162), + [sym_none] = ACTIONS(2162), + [sym_true] = ACTIONS(2162), + [sym_false] = ACTIONS(2162), + [sym_nil] = ACTIONS(2162), + [anon_sym_QMARK_DOT] = ACTIONS(3477), + [anon_sym_POUND_LBRACK] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_DOLLARif] = ACTIONS(2162), + [anon_sym_is] = ACTIONS(2162), + [anon_sym_BANGis] = ACTIONS(2162), + [anon_sym_in] = ACTIONS(2162), + [anon_sym_BANGin] = ACTIONS(2162), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_select] = ACTIONS(2162), + [anon_sym_lock] = ACTIONS(2162), + [anon_sym_rlock] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_sql] = ACTIONS(2162), + [sym_int_literal] = ACTIONS(2162), + [sym_float_literal] = ACTIONS(2162), + [sym_rune_literal] = ACTIONS(2162), + [anon_sym_AT] = ACTIONS(2162), + [anon_sym_shared] = ACTIONS(2162), + [anon_sym_map_LBRACK] = ACTIONS(2162), + [anon_sym_chan] = ACTIONS(2162), + [anon_sym_thread] = ACTIONS(2162), + [anon_sym_atomic] = ACTIONS(2162), + [sym___double_quote] = ACTIONS(2162), + [sym___single_quote] = ACTIONS(2162), + [sym___c_double_quote] = ACTIONS(2162), + [sym___c_single_quote] = ACTIONS(2162), + [sym___r_double_quote] = ACTIONS(2162), + [sym___r_single_quote] = ACTIONS(2162), + }, + [1136] = { + [sym_type_parameters] = STATE(4361), + [sym_argument_list] = STATE(1252), + [sym_or_block] = STATE(1246), + [sym_identifier] = ACTIONS(2162), + [anon_sym_LF] = ACTIONS(2162), + [anon_sym_CR] = ACTIONS(2162), + [anon_sym_CR_LF] = ACTIONS(2162), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym_DOT] = ACTIONS(3477), + [anon_sym_as] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_COMMA] = ACTIONS(2162), + [anon_sym_RBRACE] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(3479), + [anon_sym_PIPE] = ACTIONS(3481), + [anon_sym_fn] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(3481), + [anon_sym_DASH] = ACTIONS(3481), + [anon_sym_STAR] = ACTIONS(3483), + [anon_sym_SLASH] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_GT] = ACTIONS(3485), + [anon_sym_EQ_EQ] = ACTIONS(3485), + [anon_sym_BANG_EQ] = ACTIONS(3485), + [anon_sym_LT_EQ] = ACTIONS(3485), + [anon_sym_GT_EQ] = ACTIONS(3485), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_mut] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2162), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_QMARK] = ACTIONS(3489), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_go] = ACTIONS(2162), + [anon_sym_spawn] = ACTIONS(2162), + [anon_sym_json_DOTdecode] = ACTIONS(2162), + [anon_sym_LBRACK2] = ACTIONS(3493), + [anon_sym_TILDE] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(3481), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(2162), + [anon_sym_LT_LT] = ACTIONS(3483), + [anon_sym_GT_GT] = ACTIONS(3483), + [anon_sym_GT_GT_GT] = ACTIONS(3483), + [anon_sym_AMP_CARET] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(2162), + [anon_sym_PIPE_PIPE] = ACTIONS(2162), + [anon_sym_or] = ACTIONS(2162), + [sym_none] = ACTIONS(2162), + [sym_true] = ACTIONS(2162), + [sym_false] = ACTIONS(2162), + [sym_nil] = ACTIONS(2162), + [anon_sym_QMARK_DOT] = ACTIONS(3477), + [anon_sym_POUND_LBRACK] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_DOLLARif] = ACTIONS(2162), + [anon_sym_is] = ACTIONS(2162), + [anon_sym_BANGis] = ACTIONS(2162), + [anon_sym_in] = ACTIONS(3497), + [anon_sym_BANGin] = ACTIONS(3499), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_select] = ACTIONS(2162), + [anon_sym_lock] = ACTIONS(2162), + [anon_sym_rlock] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_sql] = ACTIONS(2162), + [sym_int_literal] = ACTIONS(2162), + [sym_float_literal] = ACTIONS(2162), + [sym_rune_literal] = ACTIONS(2162), + [anon_sym_AT] = ACTIONS(2162), + [anon_sym_shared] = ACTIONS(2162), + [anon_sym_map_LBRACK] = ACTIONS(2162), + [anon_sym_chan] = ACTIONS(2162), + [anon_sym_thread] = ACTIONS(2162), + [anon_sym_atomic] = ACTIONS(2162), + [sym___double_quote] = ACTIONS(2162), + [sym___single_quote] = ACTIONS(2162), + [sym___c_double_quote] = ACTIONS(2162), + [sym___c_single_quote] = ACTIONS(2162), + [sym___r_double_quote] = ACTIONS(2162), + [sym___r_single_quote] = ACTIONS(2162), + }, + [1137] = { + [sym_type_parameters] = STATE(4361), + [sym_argument_list] = STATE(1252), + [sym_or_block] = STATE(1246), + [sym_identifier] = ACTIONS(2162), + [anon_sym_LF] = ACTIONS(2162), + [anon_sym_CR] = ACTIONS(2162), + [anon_sym_CR_LF] = ACTIONS(2162), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym_DOT] = ACTIONS(3477), + [anon_sym_as] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_COMMA] = ACTIONS(2162), + [anon_sym_RBRACE] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(3479), + [anon_sym_PIPE] = ACTIONS(2162), + [anon_sym_fn] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(2162), + [anon_sym_DASH] = ACTIONS(2162), + [anon_sym_STAR] = ACTIONS(2162), + [anon_sym_SLASH] = ACTIONS(2162), + [anon_sym_PERCENT] = ACTIONS(2162), + [anon_sym_LT] = ACTIONS(2162), + [anon_sym_GT] = ACTIONS(2162), + [anon_sym_EQ_EQ] = ACTIONS(2162), + [anon_sym_BANG_EQ] = ACTIONS(2162), + [anon_sym_LT_EQ] = ACTIONS(2162), + [anon_sym_GT_EQ] = ACTIONS(2162), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_mut] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2162), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_QMARK] = ACTIONS(3489), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_go] = ACTIONS(2162), + [anon_sym_spawn] = ACTIONS(2162), + [anon_sym_json_DOTdecode] = ACTIONS(2162), + [anon_sym_LBRACK2] = ACTIONS(3493), + [anon_sym_TILDE] = ACTIONS(2162), + [anon_sym_CARET] = ACTIONS(2162), + [anon_sym_AMP] = ACTIONS(2162), + [anon_sym_LT_DASH] = ACTIONS(2162), + [anon_sym_LT_LT] = ACTIONS(2162), + [anon_sym_GT_GT] = ACTIONS(2162), + [anon_sym_GT_GT_GT] = ACTIONS(2162), + [anon_sym_AMP_CARET] = ACTIONS(2162), + [anon_sym_AMP_AMP] = ACTIONS(2162), + [anon_sym_PIPE_PIPE] = ACTIONS(2162), + [anon_sym_or] = ACTIONS(2162), + [sym_none] = ACTIONS(2162), + [sym_true] = ACTIONS(2162), + [sym_false] = ACTIONS(2162), + [sym_nil] = ACTIONS(2162), + [anon_sym_QMARK_DOT] = ACTIONS(3477), + [anon_sym_POUND_LBRACK] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_DOLLARif] = ACTIONS(2162), + [anon_sym_is] = ACTIONS(2162), + [anon_sym_BANGis] = ACTIONS(2162), + [anon_sym_in] = ACTIONS(2162), + [anon_sym_BANGin] = ACTIONS(2162), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_select] = ACTIONS(2162), + [anon_sym_lock] = ACTIONS(2162), + [anon_sym_rlock] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_sql] = ACTIONS(2162), + [sym_int_literal] = ACTIONS(2162), + [sym_float_literal] = ACTIONS(2162), + [sym_rune_literal] = ACTIONS(2162), + [anon_sym_AT] = ACTIONS(2162), + [anon_sym_shared] = ACTIONS(2162), + [anon_sym_map_LBRACK] = ACTIONS(2162), + [anon_sym_chan] = ACTIONS(2162), + [anon_sym_thread] = ACTIONS(2162), + [anon_sym_atomic] = ACTIONS(2162), + [sym___double_quote] = ACTIONS(2162), + [sym___single_quote] = ACTIONS(2162), + [sym___c_double_quote] = ACTIONS(2162), + [sym___c_single_quote] = ACTIONS(2162), + [sym___r_double_quote] = ACTIONS(2162), + [sym___r_single_quote] = ACTIONS(2162), + }, + [1138] = { + [sym_type_parameters] = STATE(4361), + [sym_argument_list] = STATE(1252), + [sym_or_block] = STATE(1246), + [sym_identifier] = ACTIONS(3501), + [anon_sym_LF] = ACTIONS(3501), + [anon_sym_CR] = ACTIONS(3501), + [anon_sym_CR_LF] = ACTIONS(3501), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3501), + [anon_sym_DOT] = ACTIONS(3477), + [anon_sym_as] = ACTIONS(3503), + [anon_sym_LBRACE] = ACTIONS(3501), + [anon_sym_COMMA] = ACTIONS(3501), + [anon_sym_RBRACE] = ACTIONS(3501), + [anon_sym_LPAREN] = ACTIONS(3479), + [anon_sym_PIPE] = ACTIONS(3481), + [anon_sym_fn] = ACTIONS(3501), + [anon_sym_PLUS] = ACTIONS(3481), + [anon_sym_DASH] = ACTIONS(3481), + [anon_sym_STAR] = ACTIONS(3483), + [anon_sym_SLASH] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_GT] = ACTIONS(3485), + [anon_sym_EQ_EQ] = ACTIONS(3485), + [anon_sym_BANG_EQ] = ACTIONS(3485), + [anon_sym_LT_EQ] = ACTIONS(3485), + [anon_sym_GT_EQ] = ACTIONS(3485), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_struct] = ACTIONS(3501), + [anon_sym_mut] = ACTIONS(3501), + [anon_sym_PLUS_PLUS] = ACTIONS(3505), + [anon_sym_DASH_DASH] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3489), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_go] = ACTIONS(3501), + [anon_sym_spawn] = ACTIONS(3501), + [anon_sym_json_DOTdecode] = ACTIONS(3501), + [anon_sym_LBRACK2] = ACTIONS(3493), + [anon_sym_TILDE] = ACTIONS(3501), + [anon_sym_CARET] = ACTIONS(3481), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(3501), + [anon_sym_LT_LT] = ACTIONS(3483), + [anon_sym_GT_GT] = ACTIONS(3483), + [anon_sym_GT_GT_GT] = ACTIONS(3483), + [anon_sym_AMP_CARET] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_PIPE_PIPE] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3511), + [sym_none] = ACTIONS(3501), + [sym_true] = ACTIONS(3501), + [sym_false] = ACTIONS(3501), + [sym_nil] = ACTIONS(3501), + [anon_sym_QMARK_DOT] = ACTIONS(3477), + [anon_sym_POUND_LBRACK] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(3501), + [anon_sym_DOLLARif] = ACTIONS(3501), + [anon_sym_is] = ACTIONS(3513), + [anon_sym_BANGis] = ACTIONS(3515), + [anon_sym_in] = ACTIONS(3497), + [anon_sym_BANGin] = ACTIONS(3499), + [anon_sym_match] = ACTIONS(3501), + [anon_sym_select] = ACTIONS(3501), + [anon_sym_lock] = ACTIONS(3501), + [anon_sym_rlock] = ACTIONS(3501), + [anon_sym_unsafe] = ACTIONS(3501), + [anon_sym_sql] = ACTIONS(3501), + [sym_int_literal] = ACTIONS(3501), + [sym_float_literal] = ACTIONS(3501), + [sym_rune_literal] = ACTIONS(3501), + [anon_sym_AT] = ACTIONS(3501), + [anon_sym_shared] = ACTIONS(3501), + [anon_sym_map_LBRACK] = ACTIONS(3501), + [anon_sym_chan] = ACTIONS(3501), + [anon_sym_thread] = ACTIONS(3501), + [anon_sym_atomic] = ACTIONS(3501), + [sym___double_quote] = ACTIONS(3501), + [sym___single_quote] = ACTIONS(3501), + [sym___c_double_quote] = ACTIONS(3501), + [sym___c_single_quote] = ACTIONS(3501), + [sym___r_double_quote] = ACTIONS(3501), + [sym___r_single_quote] = ACTIONS(3501), + }, + [1139] = { + [sym_type_parameters] = STATE(4361), + [sym_argument_list] = STATE(1252), + [sym_or_block] = STATE(1246), + [sym_identifier] = ACTIONS(3517), + [anon_sym_LF] = ACTIONS(3517), + [anon_sym_CR] = ACTIONS(3517), + [anon_sym_CR_LF] = ACTIONS(3517), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3517), + [anon_sym_DOT] = ACTIONS(3477), + [anon_sym_as] = ACTIONS(3503), + [anon_sym_LBRACE] = ACTIONS(3517), + [anon_sym_COMMA] = ACTIONS(3517), + [anon_sym_RBRACE] = ACTIONS(3517), + [anon_sym_LPAREN] = ACTIONS(3479), + [anon_sym_PIPE] = ACTIONS(3481), + [anon_sym_fn] = ACTIONS(3517), + [anon_sym_PLUS] = ACTIONS(3481), + [anon_sym_DASH] = ACTIONS(3481), + [anon_sym_STAR] = ACTIONS(3483), + [anon_sym_SLASH] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_GT] = ACTIONS(3485), + [anon_sym_EQ_EQ] = ACTIONS(3485), + [anon_sym_BANG_EQ] = ACTIONS(3485), + [anon_sym_LT_EQ] = ACTIONS(3485), + [anon_sym_GT_EQ] = ACTIONS(3485), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_struct] = ACTIONS(3517), + [anon_sym_mut] = ACTIONS(3517), + [anon_sym_PLUS_PLUS] = ACTIONS(3505), + [anon_sym_DASH_DASH] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3489), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_go] = ACTIONS(3517), + [anon_sym_spawn] = ACTIONS(3517), + [anon_sym_json_DOTdecode] = ACTIONS(3517), + [anon_sym_LBRACK2] = ACTIONS(3493), + [anon_sym_TILDE] = ACTIONS(3517), + [anon_sym_CARET] = ACTIONS(3481), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(3517), + [anon_sym_LT_LT] = ACTIONS(3483), + [anon_sym_GT_GT] = ACTIONS(3483), + [anon_sym_GT_GT_GT] = ACTIONS(3483), + [anon_sym_AMP_CARET] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_PIPE_PIPE] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3511), + [sym_none] = ACTIONS(3517), + [sym_true] = ACTIONS(3517), + [sym_false] = ACTIONS(3517), + [sym_nil] = ACTIONS(3517), + [anon_sym_QMARK_DOT] = ACTIONS(3477), + [anon_sym_POUND_LBRACK] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(3517), + [anon_sym_DOLLARif] = ACTIONS(3517), + [anon_sym_is] = ACTIONS(3513), + [anon_sym_BANGis] = ACTIONS(3515), + [anon_sym_in] = ACTIONS(3497), + [anon_sym_BANGin] = ACTIONS(3499), + [anon_sym_match] = ACTIONS(3517), + [anon_sym_select] = ACTIONS(3517), + [anon_sym_lock] = ACTIONS(3517), + [anon_sym_rlock] = ACTIONS(3517), + [anon_sym_unsafe] = ACTIONS(3517), + [anon_sym_sql] = ACTIONS(3517), + [sym_int_literal] = ACTIONS(3517), + [sym_float_literal] = ACTIONS(3517), + [sym_rune_literal] = ACTIONS(3517), + [anon_sym_AT] = ACTIONS(3517), + [anon_sym_shared] = ACTIONS(3517), + [anon_sym_map_LBRACK] = ACTIONS(3517), + [anon_sym_chan] = ACTIONS(3517), + [anon_sym_thread] = ACTIONS(3517), + [anon_sym_atomic] = ACTIONS(3517), + [sym___double_quote] = ACTIONS(3517), + [sym___single_quote] = ACTIONS(3517), + [sym___c_double_quote] = ACTIONS(3517), + [sym___c_single_quote] = ACTIONS(3517), + [sym___r_double_quote] = ACTIONS(3517), + [sym___r_single_quote] = ACTIONS(3517), + }, + [1140] = { + [sym_type_parameters] = STATE(4361), + [sym_argument_list] = STATE(1252), + [sym_or_block] = STATE(1246), + [sym_identifier] = ACTIONS(2156), + [anon_sym_LF] = ACTIONS(2156), + [anon_sym_CR] = ACTIONS(2156), + [anon_sym_CR_LF] = ACTIONS(2156), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_DOT] = ACTIONS(3477), + [anon_sym_as] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_COMMA] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(3479), + [anon_sym_PIPE] = ACTIONS(3481), + [anon_sym_fn] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(3481), + [anon_sym_DASH] = ACTIONS(3481), + [anon_sym_STAR] = ACTIONS(3483), + [anon_sym_SLASH] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_LT] = ACTIONS(2156), + [anon_sym_GT] = ACTIONS(2156), + [anon_sym_EQ_EQ] = ACTIONS(2156), + [anon_sym_BANG_EQ] = ACTIONS(2156), + [anon_sym_LT_EQ] = ACTIONS(2156), + [anon_sym_GT_EQ] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_struct] = ACTIONS(2156), + [anon_sym_mut] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_QMARK] = ACTIONS(3489), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_go] = ACTIONS(2156), + [anon_sym_spawn] = ACTIONS(2156), + [anon_sym_json_DOTdecode] = ACTIONS(2156), + [anon_sym_LBRACK2] = ACTIONS(3493), + [anon_sym_TILDE] = ACTIONS(2156), + [anon_sym_CARET] = ACTIONS(3481), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(2156), + [anon_sym_LT_LT] = ACTIONS(3483), + [anon_sym_GT_GT] = ACTIONS(3483), + [anon_sym_GT_GT_GT] = ACTIONS(3483), + [anon_sym_AMP_CARET] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(2156), + [anon_sym_PIPE_PIPE] = ACTIONS(2156), + [anon_sym_or] = ACTIONS(2156), + [sym_none] = ACTIONS(2156), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [sym_nil] = ACTIONS(2156), + [anon_sym_QMARK_DOT] = ACTIONS(3477), + [anon_sym_POUND_LBRACK] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_DOLLARif] = ACTIONS(2156), + [anon_sym_is] = ACTIONS(2156), + [anon_sym_BANGis] = ACTIONS(2156), + [anon_sym_in] = ACTIONS(2156), + [anon_sym_BANGin] = ACTIONS(2156), + [anon_sym_match] = ACTIONS(2156), + [anon_sym_select] = ACTIONS(2156), + [anon_sym_lock] = ACTIONS(2156), + [anon_sym_rlock] = ACTIONS(2156), + [anon_sym_unsafe] = ACTIONS(2156), + [anon_sym_sql] = ACTIONS(2156), + [sym_int_literal] = ACTIONS(2156), + [sym_float_literal] = ACTIONS(2156), + [sym_rune_literal] = ACTIONS(2156), + [anon_sym_AT] = ACTIONS(2156), + [anon_sym_shared] = ACTIONS(2156), + [anon_sym_map_LBRACK] = ACTIONS(2156), + [anon_sym_chan] = ACTIONS(2156), + [anon_sym_thread] = ACTIONS(2156), + [anon_sym_atomic] = ACTIONS(2156), + [sym___double_quote] = ACTIONS(2156), + [sym___single_quote] = ACTIONS(2156), + [sym___c_double_quote] = ACTIONS(2156), + [sym___c_single_quote] = ACTIONS(2156), + [sym___r_double_quote] = ACTIONS(2156), + [sym___r_single_quote] = ACTIONS(2156), + }, + [1141] = { + [sym_type_parameters] = STATE(4361), + [sym_argument_list] = STATE(1252), + [sym_or_block] = STATE(1246), + [sym_identifier] = ACTIONS(2224), + [anon_sym_LF] = ACTIONS(2224), + [anon_sym_CR] = ACTIONS(2224), + [anon_sym_CR_LF] = ACTIONS(2224), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2224), + [anon_sym_DOT] = ACTIONS(3477), + [anon_sym_as] = ACTIONS(2224), + [anon_sym_LBRACE] = ACTIONS(2224), + [anon_sym_COMMA] = ACTIONS(2224), + [anon_sym_RBRACE] = ACTIONS(2224), + [anon_sym_LPAREN] = ACTIONS(3479), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_fn] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_SLASH] = ACTIONS(2224), + [anon_sym_PERCENT] = ACTIONS(2224), + [anon_sym_LT] = ACTIONS(2224), + [anon_sym_GT] = ACTIONS(2224), + [anon_sym_EQ_EQ] = ACTIONS(2224), + [anon_sym_BANG_EQ] = ACTIONS(2224), + [anon_sym_LT_EQ] = ACTIONS(2224), + [anon_sym_GT_EQ] = ACTIONS(2224), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_struct] = ACTIONS(2224), + [anon_sym_mut] = ACTIONS(2224), + [anon_sym_PLUS_PLUS] = ACTIONS(2224), + [anon_sym_DASH_DASH] = ACTIONS(2224), + [anon_sym_QMARK] = ACTIONS(3489), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_go] = ACTIONS(2224), + [anon_sym_spawn] = ACTIONS(2224), + [anon_sym_json_DOTdecode] = ACTIONS(2224), + [anon_sym_LBRACK2] = ACTIONS(3493), + [anon_sym_TILDE] = ACTIONS(2224), + [anon_sym_CARET] = ACTIONS(2224), + [anon_sym_AMP] = ACTIONS(2224), + [anon_sym_LT_DASH] = ACTIONS(2224), + [anon_sym_LT_LT] = ACTIONS(2224), + [anon_sym_GT_GT] = ACTIONS(2224), + [anon_sym_GT_GT_GT] = ACTIONS(2224), + [anon_sym_AMP_CARET] = ACTIONS(2224), + [anon_sym_AMP_AMP] = ACTIONS(2224), + [anon_sym_PIPE_PIPE] = ACTIONS(2224), + [anon_sym_or] = ACTIONS(2224), + [sym_none] = ACTIONS(2224), + [sym_true] = ACTIONS(2224), + [sym_false] = ACTIONS(2224), + [sym_nil] = ACTIONS(2224), + [anon_sym_QMARK_DOT] = ACTIONS(3477), + [anon_sym_POUND_LBRACK] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(2224), + [anon_sym_DOLLARif] = ACTIONS(2224), + [anon_sym_is] = ACTIONS(2224), + [anon_sym_BANGis] = ACTIONS(2224), + [anon_sym_in] = ACTIONS(2224), + [anon_sym_BANGin] = ACTIONS(2224), + [anon_sym_match] = ACTIONS(2224), + [anon_sym_select] = ACTIONS(2224), + [anon_sym_lock] = ACTIONS(2224), + [anon_sym_rlock] = ACTIONS(2224), + [anon_sym_unsafe] = ACTIONS(2224), + [anon_sym_sql] = ACTIONS(2224), + [sym_int_literal] = ACTIONS(2224), + [sym_float_literal] = ACTIONS(2224), + [sym_rune_literal] = ACTIONS(2224), + [anon_sym_AT] = ACTIONS(2224), + [anon_sym_shared] = ACTIONS(2224), + [anon_sym_map_LBRACK] = ACTIONS(2224), + [anon_sym_chan] = ACTIONS(2224), + [anon_sym_thread] = ACTIONS(2224), + [anon_sym_atomic] = ACTIONS(2224), + [sym___double_quote] = ACTIONS(2224), + [sym___single_quote] = ACTIONS(2224), + [sym___c_double_quote] = ACTIONS(2224), + [sym___c_single_quote] = ACTIONS(2224), + [sym___r_double_quote] = ACTIONS(2224), + [sym___r_single_quote] = ACTIONS(2224), + }, + [1142] = { + [sym_type_parameters] = STATE(4361), + [sym_argument_list] = STATE(1252), + [sym_or_block] = STATE(1246), + [sym_identifier] = ACTIONS(2144), + [anon_sym_LF] = ACTIONS(2144), + [anon_sym_CR] = ACTIONS(2144), + [anon_sym_CR_LF] = ACTIONS(2144), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2144), + [anon_sym_DOT] = ACTIONS(3477), + [anon_sym_as] = ACTIONS(2144), + [anon_sym_LBRACE] = ACTIONS(2144), + [anon_sym_COMMA] = ACTIONS(2144), + [anon_sym_RBRACE] = ACTIONS(2144), + [anon_sym_LPAREN] = ACTIONS(3479), + [anon_sym_PIPE] = ACTIONS(3481), + [anon_sym_fn] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(3481), + [anon_sym_DASH] = ACTIONS(3481), + [anon_sym_STAR] = ACTIONS(3483), + [anon_sym_SLASH] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_LT] = ACTIONS(2144), + [anon_sym_GT] = ACTIONS(2144), + [anon_sym_EQ_EQ] = ACTIONS(2144), + [anon_sym_BANG_EQ] = ACTIONS(2144), + [anon_sym_LT_EQ] = ACTIONS(2144), + [anon_sym_GT_EQ] = ACTIONS(2144), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_struct] = ACTIONS(2144), + [anon_sym_mut] = ACTIONS(2144), + [anon_sym_PLUS_PLUS] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2144), + [anon_sym_QMARK] = ACTIONS(3489), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_go] = ACTIONS(2144), + [anon_sym_spawn] = ACTIONS(2144), + [anon_sym_json_DOTdecode] = ACTIONS(2144), + [anon_sym_LBRACK2] = ACTIONS(3493), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_CARET] = ACTIONS(3481), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(2144), + [anon_sym_LT_LT] = ACTIONS(3483), + [anon_sym_GT_GT] = ACTIONS(3483), + [anon_sym_GT_GT_GT] = ACTIONS(3483), + [anon_sym_AMP_CARET] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(2144), + [anon_sym_PIPE_PIPE] = ACTIONS(2144), + [anon_sym_or] = ACTIONS(2144), + [sym_none] = ACTIONS(2144), + [sym_true] = ACTIONS(2144), + [sym_false] = ACTIONS(2144), + [sym_nil] = ACTIONS(2144), + [anon_sym_QMARK_DOT] = ACTIONS(3477), + [anon_sym_POUND_LBRACK] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(2144), + [anon_sym_DOLLARif] = ACTIONS(2144), + [anon_sym_is] = ACTIONS(2144), + [anon_sym_BANGis] = ACTIONS(2144), + [anon_sym_in] = ACTIONS(2144), + [anon_sym_BANGin] = ACTIONS(2144), + [anon_sym_match] = ACTIONS(2144), + [anon_sym_select] = ACTIONS(2144), + [anon_sym_lock] = ACTIONS(2144), + [anon_sym_rlock] = ACTIONS(2144), + [anon_sym_unsafe] = ACTIONS(2144), + [anon_sym_sql] = ACTIONS(2144), + [sym_int_literal] = ACTIONS(2144), + [sym_float_literal] = ACTIONS(2144), + [sym_rune_literal] = ACTIONS(2144), + [anon_sym_AT] = ACTIONS(2144), + [anon_sym_shared] = ACTIONS(2144), + [anon_sym_map_LBRACK] = ACTIONS(2144), + [anon_sym_chan] = ACTIONS(2144), + [anon_sym_thread] = ACTIONS(2144), + [anon_sym_atomic] = ACTIONS(2144), + [sym___double_quote] = ACTIONS(2144), + [sym___single_quote] = ACTIONS(2144), + [sym___c_double_quote] = ACTIONS(2144), + [sym___c_single_quote] = ACTIONS(2144), + [sym___r_double_quote] = ACTIONS(2144), + [sym___r_single_quote] = ACTIONS(2144), + }, + [1143] = { + [sym_type_parameters] = STATE(4361), + [sym_argument_list] = STATE(1252), + [sym_or_block] = STATE(1246), + [sym_identifier] = ACTIONS(2234), + [anon_sym_LF] = ACTIONS(2234), + [anon_sym_CR] = ACTIONS(2234), + [anon_sym_CR_LF] = ACTIONS(2234), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_DOT] = ACTIONS(3477), + [anon_sym_as] = ACTIONS(3503), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_COMMA] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(3479), + [anon_sym_PIPE] = ACTIONS(3481), + [anon_sym_fn] = ACTIONS(2234), + [anon_sym_PLUS] = ACTIONS(3481), + [anon_sym_DASH] = ACTIONS(3481), + [anon_sym_STAR] = ACTIONS(3483), + [anon_sym_SLASH] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_GT] = ACTIONS(3485), + [anon_sym_EQ_EQ] = ACTIONS(3485), + [anon_sym_BANG_EQ] = ACTIONS(3485), + [anon_sym_LT_EQ] = ACTIONS(3485), + [anon_sym_GT_EQ] = ACTIONS(3485), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_struct] = ACTIONS(2234), + [anon_sym_mut] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(3505), + [anon_sym_DASH_DASH] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3489), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_go] = ACTIONS(2234), + [anon_sym_spawn] = ACTIONS(2234), + [anon_sym_json_DOTdecode] = ACTIONS(2234), + [anon_sym_LBRACK2] = ACTIONS(3493), + [anon_sym_TILDE] = ACTIONS(2234), + [anon_sym_CARET] = ACTIONS(3481), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(2234), + [anon_sym_LT_LT] = ACTIONS(3483), + [anon_sym_GT_GT] = ACTIONS(3483), + [anon_sym_GT_GT_GT] = ACTIONS(3483), + [anon_sym_AMP_CARET] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_PIPE_PIPE] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3511), + [sym_none] = ACTIONS(2234), + [sym_true] = ACTIONS(2234), + [sym_false] = ACTIONS(2234), + [sym_nil] = ACTIONS(2234), + [anon_sym_QMARK_DOT] = ACTIONS(3477), + [anon_sym_POUND_LBRACK] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_DOLLARif] = ACTIONS(2234), + [anon_sym_is] = ACTIONS(3513), + [anon_sym_BANGis] = ACTIONS(3515), + [anon_sym_in] = ACTIONS(3497), + [anon_sym_BANGin] = ACTIONS(3499), + [anon_sym_match] = ACTIONS(2234), + [anon_sym_select] = ACTIONS(2234), + [anon_sym_lock] = ACTIONS(2234), + [anon_sym_rlock] = ACTIONS(2234), + [anon_sym_unsafe] = ACTIONS(2234), + [anon_sym_sql] = ACTIONS(2234), + [sym_int_literal] = ACTIONS(2234), + [sym_float_literal] = ACTIONS(2234), + [sym_rune_literal] = ACTIONS(2234), + [anon_sym_AT] = ACTIONS(2234), + [anon_sym_shared] = ACTIONS(2234), + [anon_sym_map_LBRACK] = ACTIONS(2234), + [anon_sym_chan] = ACTIONS(2234), + [anon_sym_thread] = ACTIONS(2234), + [anon_sym_atomic] = ACTIONS(2234), + [sym___double_quote] = ACTIONS(2234), + [sym___single_quote] = ACTIONS(2234), + [sym___c_double_quote] = ACTIONS(2234), + [sym___c_single_quote] = ACTIONS(2234), + [sym___r_double_quote] = ACTIONS(2234), + [sym___r_single_quote] = ACTIONS(2234), + }, + [1144] = { + [sym_type_parameters] = STATE(4361), + [sym_argument_list] = STATE(1252), + [sym_or_block] = STATE(1246), + [sym_identifier] = ACTIONS(2052), + [anon_sym_LF] = ACTIONS(2052), + [anon_sym_CR] = ACTIONS(2052), + [anon_sym_CR_LF] = ACTIONS(2052), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2052), + [anon_sym_DOT] = ACTIONS(3477), + [anon_sym_as] = ACTIONS(3503), + [anon_sym_LBRACE] = ACTIONS(2052), + [anon_sym_COMMA] = ACTIONS(2052), + [anon_sym_RBRACE] = ACTIONS(2052), + [anon_sym_LPAREN] = ACTIONS(3479), + [anon_sym_PIPE] = ACTIONS(3481), + [anon_sym_fn] = ACTIONS(2052), + [anon_sym_PLUS] = ACTIONS(3481), + [anon_sym_DASH] = ACTIONS(3481), + [anon_sym_STAR] = ACTIONS(3483), + [anon_sym_SLASH] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_GT] = ACTIONS(3485), + [anon_sym_EQ_EQ] = ACTIONS(3485), + [anon_sym_BANG_EQ] = ACTIONS(3485), + [anon_sym_LT_EQ] = ACTIONS(3485), + [anon_sym_GT_EQ] = ACTIONS(3485), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_struct] = ACTIONS(2052), + [anon_sym_mut] = ACTIONS(2052), + [anon_sym_PLUS_PLUS] = ACTIONS(3505), + [anon_sym_DASH_DASH] = ACTIONS(3507), + [anon_sym_QMARK] = ACTIONS(3489), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_go] = ACTIONS(2052), + [anon_sym_spawn] = ACTIONS(2052), + [anon_sym_json_DOTdecode] = ACTIONS(2052), + [anon_sym_LBRACK2] = ACTIONS(3493), + [anon_sym_TILDE] = ACTIONS(2052), + [anon_sym_CARET] = ACTIONS(3481), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_LT_DASH] = ACTIONS(2052), + [anon_sym_LT_LT] = ACTIONS(3483), + [anon_sym_GT_GT] = ACTIONS(3483), + [anon_sym_GT_GT_GT] = ACTIONS(3483), + [anon_sym_AMP_CARET] = ACTIONS(3483), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_PIPE_PIPE] = ACTIONS(3509), + [anon_sym_or] = ACTIONS(3511), + [sym_none] = ACTIONS(2052), + [sym_true] = ACTIONS(2052), + [sym_false] = ACTIONS(2052), + [sym_nil] = ACTIONS(2052), + [anon_sym_QMARK_DOT] = ACTIONS(3477), + [anon_sym_POUND_LBRACK] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(2052), + [anon_sym_DOLLARif] = ACTIONS(2052), + [anon_sym_is] = ACTIONS(3513), + [anon_sym_BANGis] = ACTIONS(3515), + [anon_sym_in] = ACTIONS(3497), + [anon_sym_BANGin] = ACTIONS(3499), + [anon_sym_match] = ACTIONS(2052), + [anon_sym_select] = ACTIONS(2052), + [anon_sym_lock] = ACTIONS(2052), + [anon_sym_rlock] = ACTIONS(2052), + [anon_sym_unsafe] = ACTIONS(2052), + [anon_sym_sql] = ACTIONS(2052), + [sym_int_literal] = ACTIONS(2052), + [sym_float_literal] = ACTIONS(2052), + [sym_rune_literal] = ACTIONS(2052), + [anon_sym_AT] = ACTIONS(2052), + [anon_sym_shared] = ACTIONS(2052), + [anon_sym_map_LBRACK] = ACTIONS(2052), + [anon_sym_chan] = ACTIONS(2052), + [anon_sym_thread] = ACTIONS(2052), + [anon_sym_atomic] = ACTIONS(2052), + [sym___double_quote] = ACTIONS(2052), + [sym___single_quote] = ACTIONS(2052), + [sym___c_double_quote] = ACTIONS(2052), + [sym___c_single_quote] = ACTIONS(2052), + [sym___r_double_quote] = ACTIONS(2052), + [sym___r_single_quote] = ACTIONS(2052), + }, + [1145] = { + [sym_reference_expression] = STATE(4532), + [sym_type_reference_expression] = STATE(1923), + [sym_plain_type] = STATE(2051), + [sym__plain_type_without_special] = STATE(2088), + [sym_anon_struct_type] = STATE(2087), + [sym_multi_return_type] = STATE(2088), + [sym_result_type] = STATE(2088), + [sym_option_type] = STATE(2088), + [sym_qualified_type] = STATE(1923), + [sym_fixed_array_type] = STATE(2087), + [sym_array_type] = STATE(2087), + [sym_pointer_type] = STATE(2087), + [sym_wrong_pointer_type] = STATE(2087), + [sym_map_type] = STATE(2087), + [sym_channel_type] = STATE(2087), + [sym_shared_type] = STATE(2087), + [sym_thread_type] = STATE(2087), + [sym_atomic_type] = STATE(2087), + [sym_generic_type] = STATE(2087), + [sym_function_type] = STATE(2087), + [sym_identifier] = ACTIONS(3519), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_as] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(619), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(3521), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_fn] = ACTIONS(3523), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(3525), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(621), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_EQ_EQ] = ACTIONS(619), + [anon_sym_BANG_EQ] = ACTIONS(619), + [anon_sym_LT_EQ] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(619), + [anon_sym_struct] = ACTIONS(3527), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(3529), + [anon_sym_BANG] = ACTIONS(3531), + [anon_sym_LBRACK2] = ACTIONS(3533), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(3535), + [anon_sym_LT_DASH] = ACTIONS(619), + [anon_sym_LT_LT] = ACTIONS(621), + [anon_sym_GT_GT] = ACTIONS(621), + [anon_sym_GT_GT_GT] = ACTIONS(621), + [anon_sym_AMP_CARET] = ACTIONS(621), + [anon_sym_AMP_AMP] = ACTIONS(619), + [anon_sym_PIPE_PIPE] = ACTIONS(619), + [anon_sym_or] = ACTIONS(621), + [anon_sym_QMARK_DOT] = ACTIONS(619), + [anon_sym_POUND_LBRACK] = ACTIONS(619), + [anon_sym_is] = ACTIONS(621), + [anon_sym_BANGis] = ACTIONS(619), + [anon_sym_in] = ACTIONS(621), + [anon_sym_BANGin] = ACTIONS(619), + [anon_sym_STAR_EQ] = ACTIONS(619), + [anon_sym_SLASH_EQ] = ACTIONS(619), + [anon_sym_PERCENT_EQ] = ACTIONS(619), + [anon_sym_LT_LT_EQ] = ACTIONS(619), + [anon_sym_GT_GT_EQ] = ACTIONS(619), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(619), + [anon_sym_AMP_EQ] = ACTIONS(619), + [anon_sym_AMP_CARET_EQ] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(619), + [anon_sym_DASH_EQ] = ACTIONS(619), + [anon_sym_PIPE_EQ] = ACTIONS(619), + [anon_sym_CARET_EQ] = ACTIONS(619), + [anon_sym_shared] = ACTIONS(3537), + [anon_sym_map_LBRACK] = ACTIONS(3539), + [anon_sym_chan] = ACTIONS(3541), + [anon_sym_thread] = ACTIONS(3543), + [anon_sym_atomic] = ACTIONS(3545), + }, + [1146] = { + [sym_else_branch] = STATE(1192), + [sym_identifier] = ACTIONS(2392), + [anon_sym_LF] = ACTIONS(2392), + [anon_sym_CR] = ACTIONS(2392), + [anon_sym_CR_LF] = ACTIONS(2392), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2392), + [anon_sym_DOT] = ACTIONS(2392), + [anon_sym_as] = ACTIONS(2392), + [anon_sym_LBRACE] = ACTIONS(2392), + [anon_sym_COMMA] = ACTIONS(2392), + [anon_sym_RBRACE] = ACTIONS(2392), + [anon_sym_LPAREN] = ACTIONS(2392), + [anon_sym_PIPE] = ACTIONS(2392), + [anon_sym_fn] = ACTIONS(2392), + [anon_sym_PLUS] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2392), + [anon_sym_STAR] = ACTIONS(2392), + [anon_sym_SLASH] = ACTIONS(2392), + [anon_sym_PERCENT] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2392), + [anon_sym_GT] = ACTIONS(2392), + [anon_sym_EQ_EQ] = ACTIONS(2392), + [anon_sym_BANG_EQ] = ACTIONS(2392), + [anon_sym_LT_EQ] = ACTIONS(2392), + [anon_sym_GT_EQ] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(2390), + [anon_sym_struct] = ACTIONS(2392), + [anon_sym_mut] = ACTIONS(2392), + [anon_sym_PLUS_PLUS] = ACTIONS(2392), + [anon_sym_DASH_DASH] = ACTIONS(2392), + [anon_sym_QMARK] = ACTIONS(2392), + [anon_sym_BANG] = ACTIONS(2392), + [anon_sym_go] = ACTIONS(2392), + [anon_sym_spawn] = ACTIONS(2392), + [anon_sym_json_DOTdecode] = ACTIONS(2392), + [anon_sym_LBRACK2] = ACTIONS(2392), + [anon_sym_TILDE] = ACTIONS(2392), + [anon_sym_CARET] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2392), + [anon_sym_LT_DASH] = ACTIONS(2392), + [anon_sym_LT_LT] = ACTIONS(2392), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_GT_GT_GT] = ACTIONS(2392), + [anon_sym_AMP_CARET] = ACTIONS(2392), + [anon_sym_AMP_AMP] = ACTIONS(2392), + [anon_sym_PIPE_PIPE] = ACTIONS(2392), + [anon_sym_or] = ACTIONS(2392), + [sym_none] = ACTIONS(2392), + [sym_true] = ACTIONS(2392), + [sym_false] = ACTIONS(2392), + [sym_nil] = ACTIONS(2392), + [anon_sym_QMARK_DOT] = ACTIONS(2392), + [anon_sym_POUND_LBRACK] = ACTIONS(2392), + [anon_sym_if] = ACTIONS(2392), + [anon_sym_else] = ACTIONS(3547), + [anon_sym_DOLLARif] = ACTIONS(2392), + [anon_sym_is] = ACTIONS(2392), + [anon_sym_BANGis] = ACTIONS(2392), + [anon_sym_in] = ACTIONS(2392), + [anon_sym_BANGin] = ACTIONS(2392), + [anon_sym_match] = ACTIONS(2392), + [anon_sym_select] = ACTIONS(2392), + [anon_sym_lock] = ACTIONS(2392), + [anon_sym_rlock] = ACTIONS(2392), + [anon_sym_unsafe] = ACTIONS(2392), + [anon_sym_sql] = ACTIONS(2392), + [sym_int_literal] = ACTIONS(2392), + [sym_float_literal] = ACTIONS(2392), + [sym_rune_literal] = ACTIONS(2392), + [anon_sym_AT] = ACTIONS(2392), + [anon_sym_shared] = ACTIONS(2392), + [anon_sym_map_LBRACK] = ACTIONS(2392), + [anon_sym_chan] = ACTIONS(2392), + [anon_sym_thread] = ACTIONS(2392), + [anon_sym_atomic] = ACTIONS(2392), + [sym___double_quote] = ACTIONS(2392), + [sym___single_quote] = ACTIONS(2392), + [sym___c_double_quote] = ACTIONS(2392), + [sym___c_single_quote] = ACTIONS(2392), + [sym___r_double_quote] = ACTIONS(2392), + [sym___r_single_quote] = ACTIONS(2392), + }, + [1147] = { + [sym_reference_expression] = STATE(4469), + [sym_type_reference_expression] = STATE(1930), + [sym_plain_type] = STATE(1954), + [sym__plain_type_without_special] = STATE(1946), + [sym_anon_struct_type] = STATE(1947), + [sym_multi_return_type] = STATE(1946), + [sym_result_type] = STATE(1946), + [sym_option_type] = STATE(1946), + [sym_qualified_type] = STATE(1930), + [sym_fixed_array_type] = STATE(1947), + [sym_array_type] = STATE(1947), + [sym_pointer_type] = STATE(1947), + [sym_wrong_pointer_type] = STATE(1947), + [sym_map_type] = STATE(1947), + [sym_channel_type] = STATE(1947), + [sym_shared_type] = STATE(1947), + [sym_thread_type] = STATE(1947), + [sym_atomic_type] = STATE(1947), + [sym_generic_type] = STATE(1947), + [sym_function_type] = STATE(1947), + [sym_identifier] = ACTIONS(3549), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(557), + [anon_sym_DOT] = ACTIONS(557), + [anon_sym_as] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(557), + [anon_sym_COMMA] = ACTIONS(557), + [anon_sym_LPAREN] = ACTIONS(3551), + [anon_sym_EQ] = ACTIONS(561), + [anon_sym_PIPE] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(3553), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(3555), + [anon_sym_SLASH] = ACTIONS(561), + [anon_sym_PERCENT] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(561), + [anon_sym_GT] = ACTIONS(561), + [anon_sym_EQ_EQ] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(557), + [anon_sym_LT_EQ] = ACTIONS(557), + [anon_sym_GT_EQ] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_struct] = ACTIONS(3557), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [anon_sym_QMARK] = ACTIONS(3559), + [anon_sym_BANG] = ACTIONS(3561), + [anon_sym_LBRACK2] = ACTIONS(3563), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(3565), + [anon_sym_LT_LT] = ACTIONS(561), + [anon_sym_GT_GT] = ACTIONS(561), + [anon_sym_GT_GT_GT] = ACTIONS(561), + [anon_sym_AMP_CARET] = ACTIONS(561), + [anon_sym_AMP_AMP] = ACTIONS(557), + [anon_sym_PIPE_PIPE] = ACTIONS(557), + [anon_sym_or] = ACTIONS(561), + [anon_sym_QMARK_DOT] = ACTIONS(557), + [anon_sym_POUND_LBRACK] = ACTIONS(557), + [anon_sym_is] = ACTIONS(561), + [anon_sym_BANGis] = ACTIONS(557), + [anon_sym_in] = ACTIONS(561), + [anon_sym_BANGin] = ACTIONS(557), + [anon_sym_STAR_EQ] = ACTIONS(557), + [anon_sym_SLASH_EQ] = ACTIONS(557), + [anon_sym_PERCENT_EQ] = ACTIONS(557), + [anon_sym_LT_LT_EQ] = ACTIONS(557), + [anon_sym_GT_GT_EQ] = ACTIONS(557), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(557), + [anon_sym_AMP_EQ] = ACTIONS(557), + [anon_sym_AMP_CARET_EQ] = ACTIONS(557), + [anon_sym_PLUS_EQ] = ACTIONS(557), + [anon_sym_DASH_EQ] = ACTIONS(557), + [anon_sym_PIPE_EQ] = ACTIONS(557), + [anon_sym_CARET_EQ] = ACTIONS(557), + [anon_sym_COLON_EQ] = ACTIONS(557), + [anon_sym_shared] = ACTIONS(3567), + [anon_sym_map_LBRACK] = ACTIONS(3569), + [anon_sym_chan] = ACTIONS(3571), + [anon_sym_thread] = ACTIONS(3573), + [anon_sym_atomic] = ACTIONS(3575), + }, + [1148] = { + [sym_reference_expression] = STATE(4532), + [sym_type_reference_expression] = STATE(1923), + [sym_plain_type] = STATE(2070), + [sym__plain_type_without_special] = STATE(2088), + [sym_anon_struct_type] = STATE(2087), + [sym_multi_return_type] = STATE(2088), + [sym_result_type] = STATE(2088), + [sym_option_type] = STATE(2088), + [sym_qualified_type] = STATE(1923), + [sym_fixed_array_type] = STATE(2087), + [sym_array_type] = STATE(2087), + [sym_pointer_type] = STATE(2087), + [sym_wrong_pointer_type] = STATE(2087), + [sym_map_type] = STATE(2087), + [sym_channel_type] = STATE(2087), + [sym_shared_type] = STATE(2087), + [sym_thread_type] = STATE(2087), + [sym_atomic_type] = STATE(2087), + [sym_generic_type] = STATE(2087), + [sym_function_type] = STATE(2087), + [sym_identifier] = ACTIONS(3519), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(557), + [anon_sym_as] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(557), + [anon_sym_COMMA] = ACTIONS(557), + [anon_sym_LPAREN] = ACTIONS(3521), + [anon_sym_EQ] = ACTIONS(561), + [anon_sym_PIPE] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(3523), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(3525), + [anon_sym_SLASH] = ACTIONS(561), + [anon_sym_PERCENT] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(561), + [anon_sym_GT] = ACTIONS(561), + [anon_sym_EQ_EQ] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(557), + [anon_sym_LT_EQ] = ACTIONS(557), + [anon_sym_GT_EQ] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_struct] = ACTIONS(3527), + [anon_sym_COLON] = ACTIONS(557), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [anon_sym_QMARK] = ACTIONS(3529), + [anon_sym_BANG] = ACTIONS(3531), + [anon_sym_LBRACK2] = ACTIONS(3533), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(3535), + [anon_sym_LT_DASH] = ACTIONS(557), + [anon_sym_LT_LT] = ACTIONS(561), + [anon_sym_GT_GT] = ACTIONS(561), + [anon_sym_GT_GT_GT] = ACTIONS(561), + [anon_sym_AMP_CARET] = ACTIONS(561), + [anon_sym_AMP_AMP] = ACTIONS(557), + [anon_sym_PIPE_PIPE] = ACTIONS(557), + [anon_sym_or] = ACTIONS(561), + [anon_sym_QMARK_DOT] = ACTIONS(557), + [anon_sym_POUND_LBRACK] = ACTIONS(557), + [anon_sym_is] = ACTIONS(561), + [anon_sym_BANGis] = ACTIONS(557), + [anon_sym_in] = ACTIONS(561), + [anon_sym_BANGin] = ACTIONS(557), + [anon_sym_STAR_EQ] = ACTIONS(557), + [anon_sym_SLASH_EQ] = ACTIONS(557), + [anon_sym_PERCENT_EQ] = ACTIONS(557), + [anon_sym_LT_LT_EQ] = ACTIONS(557), + [anon_sym_GT_GT_EQ] = ACTIONS(557), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(557), + [anon_sym_AMP_EQ] = ACTIONS(557), + [anon_sym_AMP_CARET_EQ] = ACTIONS(557), + [anon_sym_PLUS_EQ] = ACTIONS(557), + [anon_sym_DASH_EQ] = ACTIONS(557), + [anon_sym_PIPE_EQ] = ACTIONS(557), + [anon_sym_CARET_EQ] = ACTIONS(557), + [anon_sym_shared] = ACTIONS(3537), + [anon_sym_map_LBRACK] = ACTIONS(3539), + [anon_sym_chan] = ACTIONS(3541), + [anon_sym_thread] = ACTIONS(3543), + [anon_sym_atomic] = ACTIONS(3545), + }, + [1149] = { + [sym_identifier] = ACTIONS(3577), + [anon_sym_LF] = ACTIONS(3580), + [anon_sym_CR] = ACTIONS(3580), + [anon_sym_CR_LF] = ACTIONS(3580), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3580), + [anon_sym_DOT] = ACTIONS(3120), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_COMMA] = ACTIONS(3580), + [anon_sym_RBRACE] = ACTIONS(3577), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_fn] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3583), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_mut] = ACTIONS(3118), + [anon_sym_COLON] = ACTIONS(3585), + [anon_sym_PLUS_PLUS] = ACTIONS(3118), + [anon_sym_DASH_DASH] = ACTIONS(3118), + [anon_sym_QMARK] = ACTIONS(3118), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_go] = ACTIONS(3118), + [anon_sym_spawn] = ACTIONS(3118), + [anon_sym_json_DOTdecode] = ACTIONS(3118), + [anon_sym_LBRACK2] = ACTIONS(3118), + [anon_sym_TILDE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_LT_DASH] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym_GT_GT_GT] = ACTIONS(3118), + [anon_sym_AMP_CARET] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3118), + [anon_sym_or] = ACTIONS(3118), + [sym_none] = ACTIONS(3118), + [sym_true] = ACTIONS(3118), + [sym_false] = ACTIONS(3118), + [sym_nil] = ACTIONS(3118), + [anon_sym_QMARK_DOT] = ACTIONS(3118), + [anon_sym_POUND_LBRACK] = ACTIONS(3118), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_DOLLARif] = ACTIONS(3118), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3118), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_BANGin] = ACTIONS(3118), + [anon_sym_match] = ACTIONS(3118), + [anon_sym_select] = ACTIONS(3118), + [anon_sym_lock] = ACTIONS(3118), + [anon_sym_rlock] = ACTIONS(3118), + [anon_sym_unsafe] = ACTIONS(3118), + [anon_sym_sql] = ACTIONS(3118), + [sym_int_literal] = ACTIONS(3118), + [sym_float_literal] = ACTIONS(3118), + [sym_rune_literal] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3118), + [anon_sym_shared] = ACTIONS(3118), + [anon_sym_map_LBRACK] = ACTIONS(3118), + [anon_sym_chan] = ACTIONS(3118), + [anon_sym_thread] = ACTIONS(3118), + [anon_sym_atomic] = ACTIONS(3118), + [sym___double_quote] = ACTIONS(3118), + [sym___single_quote] = ACTIONS(3118), + [sym___c_double_quote] = ACTIONS(3118), + [sym___c_single_quote] = ACTIONS(3118), + [sym___r_double_quote] = ACTIONS(3118), + [sym___r_single_quote] = ACTIONS(3118), + }, + [1150] = { + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2393), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(591), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(589), + [anon_sym_DOT] = ACTIONS(589), + [anon_sym_as] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_COMMA] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_EQ] = ACTIONS(593), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_STAR] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(593), + [anon_sym_PERCENT] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_EQ_EQ] = ACTIONS(589), + [anon_sym_BANG_EQ] = ACTIONS(589), + [anon_sym_LT_EQ] = ACTIONS(589), + [anon_sym_GT_EQ] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(589), + [anon_sym_struct] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(589), + [anon_sym_DASH_DASH] = ACTIONS(589), + [anon_sym_QMARK] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(3587), + [anon_sym_LBRACK2] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(607), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_GT_GT_GT] = ACTIONS(593), + [anon_sym_AMP_CARET] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_or] = ACTIONS(593), + [anon_sym_QMARK_DOT] = ACTIONS(589), + [anon_sym_POUND_LBRACK] = ACTIONS(589), + [anon_sym_is] = ACTIONS(593), + [anon_sym_BANGis] = ACTIONS(589), + [anon_sym_in] = ACTIONS(593), + [anon_sym_BANGin] = ACTIONS(589), + [anon_sym_STAR_EQ] = ACTIONS(589), + [anon_sym_SLASH_EQ] = ACTIONS(589), + [anon_sym_PERCENT_EQ] = ACTIONS(589), + [anon_sym_LT_LT_EQ] = ACTIONS(589), + [anon_sym_GT_GT_EQ] = ACTIONS(589), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(589), + [anon_sym_AMP_EQ] = ACTIONS(589), + [anon_sym_AMP_CARET_EQ] = ACTIONS(589), + [anon_sym_PLUS_EQ] = ACTIONS(589), + [anon_sym_DASH_EQ] = ACTIONS(589), + [anon_sym_PIPE_EQ] = ACTIONS(589), + [anon_sym_CARET_EQ] = ACTIONS(589), + [anon_sym_COLON_EQ] = ACTIONS(589), + [anon_sym_shared] = ACTIONS(609), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + }, + [1151] = { + [sym_reference_expression] = STATE(4532), + [sym_type_reference_expression] = STATE(1923), + [sym_plain_type] = STATE(2055), + [sym__plain_type_without_special] = STATE(2088), + [sym_anon_struct_type] = STATE(2087), + [sym_multi_return_type] = STATE(2088), + [sym_result_type] = STATE(2088), + [sym_option_type] = STATE(2088), + [sym_qualified_type] = STATE(1923), + [sym_fixed_array_type] = STATE(2087), + [sym_array_type] = STATE(2087), + [sym_pointer_type] = STATE(2087), + [sym_wrong_pointer_type] = STATE(2087), + [sym_map_type] = STATE(2087), + [sym_channel_type] = STATE(2087), + [sym_shared_type] = STATE(2087), + [sym_thread_type] = STATE(2087), + [sym_atomic_type] = STATE(2087), + [sym_generic_type] = STATE(2087), + [sym_function_type] = STATE(2087), + [sym_identifier] = ACTIONS(3519), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(611), + [anon_sym_as] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(3521), + [anon_sym_EQ] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(613), + [anon_sym_fn] = ACTIONS(3523), + [anon_sym_PLUS] = ACTIONS(613), + [anon_sym_DASH] = ACTIONS(613), + [anon_sym_STAR] = ACTIONS(3525), + [anon_sym_SLASH] = ACTIONS(613), + [anon_sym_PERCENT] = ACTIONS(613), + [anon_sym_LT] = ACTIONS(613), + [anon_sym_GT] = ACTIONS(613), + [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(611), + [anon_sym_struct] = ACTIONS(3527), + [anon_sym_COLON] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_QMARK] = ACTIONS(3529), + [anon_sym_BANG] = ACTIONS(3531), + [anon_sym_LBRACK2] = ACTIONS(3533), + [anon_sym_CARET] = ACTIONS(613), + [anon_sym_AMP] = ACTIONS(3535), + [anon_sym_LT_DASH] = ACTIONS(611), + [anon_sym_LT_LT] = ACTIONS(613), + [anon_sym_GT_GT] = ACTIONS(613), + [anon_sym_GT_GT_GT] = ACTIONS(613), + [anon_sym_AMP_CARET] = ACTIONS(613), + [anon_sym_AMP_AMP] = ACTIONS(611), + [anon_sym_PIPE_PIPE] = ACTIONS(611), + [anon_sym_or] = ACTIONS(613), + [anon_sym_QMARK_DOT] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(611), + [anon_sym_is] = ACTIONS(613), + [anon_sym_BANGis] = ACTIONS(611), + [anon_sym_in] = ACTIONS(613), + [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_shared] = ACTIONS(3537), + [anon_sym_map_LBRACK] = ACTIONS(3539), + [anon_sym_chan] = ACTIONS(3541), + [anon_sym_thread] = ACTIONS(3543), + [anon_sym_atomic] = ACTIONS(3545), + }, + [1152] = { + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2393), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(591), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(589), + [anon_sym_as] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_COMMA] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_EQ] = ACTIONS(593), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_STAR] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(593), + [anon_sym_PERCENT] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_EQ_EQ] = ACTIONS(589), + [anon_sym_BANG_EQ] = ACTIONS(589), + [anon_sym_LT_EQ] = ACTIONS(589), + [anon_sym_GT_EQ] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(589), + [anon_sym_struct] = ACTIONS(601), + [anon_sym_COLON] = ACTIONS(589), + [anon_sym_PLUS_PLUS] = ACTIONS(589), + [anon_sym_DASH_DASH] = ACTIONS(589), + [anon_sym_QMARK] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(3589), + [anon_sym_LBRACK2] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(589), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_GT_GT_GT] = ACTIONS(593), + [anon_sym_AMP_CARET] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_or] = ACTIONS(593), + [anon_sym_QMARK_DOT] = ACTIONS(589), + [anon_sym_POUND_LBRACK] = ACTIONS(589), + [anon_sym_is] = ACTIONS(593), + [anon_sym_BANGis] = ACTIONS(589), + [anon_sym_in] = ACTIONS(593), + [anon_sym_BANGin] = ACTIONS(589), + [anon_sym_STAR_EQ] = ACTIONS(589), + [anon_sym_SLASH_EQ] = ACTIONS(589), + [anon_sym_PERCENT_EQ] = ACTIONS(589), + [anon_sym_LT_LT_EQ] = ACTIONS(589), + [anon_sym_GT_GT_EQ] = ACTIONS(589), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(589), + [anon_sym_AMP_EQ] = ACTIONS(589), + [anon_sym_AMP_CARET_EQ] = ACTIONS(589), + [anon_sym_PLUS_EQ] = ACTIONS(589), + [anon_sym_DASH_EQ] = ACTIONS(589), + [anon_sym_PIPE_EQ] = ACTIONS(589), + [anon_sym_CARET_EQ] = ACTIONS(589), + [anon_sym_shared] = ACTIONS(609), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + }, + [1153] = { + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2359), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(591), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_as] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_COMMA] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(615), + [anon_sym_EQ] = ACTIONS(617), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(617), + [anon_sym_PERCENT] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(617), + [anon_sym_GT] = ACTIONS(617), + [anon_sym_EQ_EQ] = ACTIONS(615), + [anon_sym_BANG_EQ] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_struct] = ACTIONS(601), + [anon_sym_COLON] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(615), + [anon_sym_DASH_DASH] = ACTIONS(615), + [anon_sym_QMARK] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_LBRACK2] = ACTIONS(617), + [anon_sym_CARET] = ACTIONS(617), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_LT_DASH] = ACTIONS(615), + [anon_sym_LT_LT] = ACTIONS(617), + [anon_sym_GT_GT] = ACTIONS(617), + [anon_sym_GT_GT_GT] = ACTIONS(617), + [anon_sym_AMP_CARET] = ACTIONS(617), + [anon_sym_AMP_AMP] = ACTIONS(615), + [anon_sym_PIPE_PIPE] = ACTIONS(615), + [anon_sym_or] = ACTIONS(617), + [anon_sym_QMARK_DOT] = ACTIONS(615), + [anon_sym_POUND_LBRACK] = ACTIONS(615), + [anon_sym_is] = ACTIONS(617), + [anon_sym_BANGis] = ACTIONS(615), + [anon_sym_in] = ACTIONS(617), + [anon_sym_BANGin] = ACTIONS(615), + [anon_sym_STAR_EQ] = ACTIONS(615), + [anon_sym_SLASH_EQ] = ACTIONS(615), + [anon_sym_PERCENT_EQ] = ACTIONS(615), + [anon_sym_LT_LT_EQ] = ACTIONS(615), + [anon_sym_GT_GT_EQ] = ACTIONS(615), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(615), + [anon_sym_AMP_EQ] = ACTIONS(615), + [anon_sym_AMP_CARET_EQ] = ACTIONS(615), + [anon_sym_PLUS_EQ] = ACTIONS(615), + [anon_sym_DASH_EQ] = ACTIONS(615), + [anon_sym_PIPE_EQ] = ACTIONS(615), + [anon_sym_CARET_EQ] = ACTIONS(615), + [anon_sym_shared] = ACTIONS(609), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + }, + [1154] = { + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2359), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(591), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(615), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_as] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [anon_sym_COMMA] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(615), + [anon_sym_EQ] = ACTIONS(617), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(617), + [anon_sym_PERCENT] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(617), + [anon_sym_GT] = ACTIONS(617), + [anon_sym_EQ_EQ] = ACTIONS(615), + [anon_sym_BANG_EQ] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_struct] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(615), + [anon_sym_DASH_DASH] = ACTIONS(615), + [anon_sym_QMARK] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_LBRACK2] = ACTIONS(617), + [anon_sym_CARET] = ACTIONS(617), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_LT_LT] = ACTIONS(617), + [anon_sym_GT_GT] = ACTIONS(617), + [anon_sym_GT_GT_GT] = ACTIONS(617), + [anon_sym_AMP_CARET] = ACTIONS(617), + [anon_sym_AMP_AMP] = ACTIONS(615), + [anon_sym_PIPE_PIPE] = ACTIONS(615), + [anon_sym_or] = ACTIONS(617), + [anon_sym_QMARK_DOT] = ACTIONS(615), + [anon_sym_POUND_LBRACK] = ACTIONS(615), + [anon_sym_is] = ACTIONS(617), + [anon_sym_BANGis] = ACTIONS(615), + [anon_sym_in] = ACTIONS(617), + [anon_sym_BANGin] = ACTIONS(615), + [anon_sym_STAR_EQ] = ACTIONS(615), + [anon_sym_SLASH_EQ] = ACTIONS(615), + [anon_sym_PERCENT_EQ] = ACTIONS(615), + [anon_sym_LT_LT_EQ] = ACTIONS(615), + [anon_sym_GT_GT_EQ] = ACTIONS(615), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(615), + [anon_sym_AMP_EQ] = ACTIONS(615), + [anon_sym_AMP_CARET_EQ] = ACTIONS(615), + [anon_sym_PLUS_EQ] = ACTIONS(615), + [anon_sym_DASH_EQ] = ACTIONS(615), + [anon_sym_PIPE_EQ] = ACTIONS(615), + [anon_sym_CARET_EQ] = ACTIONS(615), + [anon_sym_COLON_EQ] = ACTIONS(615), + [anon_sym_shared] = ACTIONS(609), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + }, + [1155] = { + [sym_reference_expression] = STATE(4469), + [sym_type_reference_expression] = STATE(1930), + [sym_plain_type] = STATE(2026), + [sym__plain_type_without_special] = STATE(1946), + [sym_anon_struct_type] = STATE(1947), + [sym_multi_return_type] = STATE(1946), + [sym_result_type] = STATE(1946), + [sym_option_type] = STATE(1946), + [sym_qualified_type] = STATE(1930), + [sym_fixed_array_type] = STATE(1947), + [sym_array_type] = STATE(1947), + [sym_pointer_type] = STATE(1947), + [sym_wrong_pointer_type] = STATE(1947), + [sym_map_type] = STATE(1947), + [sym_channel_type] = STATE(1947), + [sym_shared_type] = STATE(1947), + [sym_thread_type] = STATE(1947), + [sym_atomic_type] = STATE(1947), + [sym_generic_type] = STATE(1947), + [sym_function_type] = STATE(1947), + [sym_identifier] = ACTIONS(3549), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_as] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(619), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(3551), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_fn] = ACTIONS(3553), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(3555), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(621), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_EQ_EQ] = ACTIONS(619), + [anon_sym_BANG_EQ] = ACTIONS(619), + [anon_sym_LT_EQ] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(619), + [anon_sym_struct] = ACTIONS(3557), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(3559), + [anon_sym_BANG] = ACTIONS(3561), + [anon_sym_LBRACK2] = ACTIONS(3563), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(3565), + [anon_sym_LT_LT] = ACTIONS(621), + [anon_sym_GT_GT] = ACTIONS(621), + [anon_sym_GT_GT_GT] = ACTIONS(621), + [anon_sym_AMP_CARET] = ACTIONS(621), + [anon_sym_AMP_AMP] = ACTIONS(619), + [anon_sym_PIPE_PIPE] = ACTIONS(619), + [anon_sym_or] = ACTIONS(621), + [anon_sym_QMARK_DOT] = ACTIONS(619), + [anon_sym_POUND_LBRACK] = ACTIONS(619), + [anon_sym_is] = ACTIONS(621), + [anon_sym_BANGis] = ACTIONS(619), + [anon_sym_in] = ACTIONS(621), + [anon_sym_BANGin] = ACTIONS(619), + [anon_sym_STAR_EQ] = ACTIONS(619), + [anon_sym_SLASH_EQ] = ACTIONS(619), + [anon_sym_PERCENT_EQ] = ACTIONS(619), + [anon_sym_LT_LT_EQ] = ACTIONS(619), + [anon_sym_GT_GT_EQ] = ACTIONS(619), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(619), + [anon_sym_AMP_EQ] = ACTIONS(619), + [anon_sym_AMP_CARET_EQ] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(619), + [anon_sym_DASH_EQ] = ACTIONS(619), + [anon_sym_PIPE_EQ] = ACTIONS(619), + [anon_sym_CARET_EQ] = ACTIONS(619), + [anon_sym_COLON_EQ] = ACTIONS(619), + [anon_sym_shared] = ACTIONS(3567), + [anon_sym_map_LBRACK] = ACTIONS(3569), + [anon_sym_chan] = ACTIONS(3571), + [anon_sym_thread] = ACTIONS(3573), + [anon_sym_atomic] = ACTIONS(3575), + }, + [1156] = { + [sym_reference_expression] = STATE(4469), + [sym_type_reference_expression] = STATE(1930), + [sym_plain_type] = STATE(2019), + [sym__plain_type_without_special] = STATE(1946), + [sym_anon_struct_type] = STATE(1947), + [sym_multi_return_type] = STATE(1946), + [sym_result_type] = STATE(1946), + [sym_option_type] = STATE(1946), + [sym_qualified_type] = STATE(1930), + [sym_fixed_array_type] = STATE(1947), + [sym_array_type] = STATE(1947), + [sym_pointer_type] = STATE(1947), + [sym_wrong_pointer_type] = STATE(1947), + [sym_map_type] = STATE(1947), + [sym_channel_type] = STATE(1947), + [sym_shared_type] = STATE(1947), + [sym_thread_type] = STATE(1947), + [sym_atomic_type] = STATE(1947), + [sym_generic_type] = STATE(1947), + [sym_function_type] = STATE(1947), + [sym_identifier] = ACTIONS(3549), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(611), + [anon_sym_DOT] = ACTIONS(611), + [anon_sym_as] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(3551), + [anon_sym_EQ] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(613), + [anon_sym_fn] = ACTIONS(3553), + [anon_sym_PLUS] = ACTIONS(613), + [anon_sym_DASH] = ACTIONS(613), + [anon_sym_STAR] = ACTIONS(3555), + [anon_sym_SLASH] = ACTIONS(613), + [anon_sym_PERCENT] = ACTIONS(613), + [anon_sym_LT] = ACTIONS(613), + [anon_sym_GT] = ACTIONS(613), + [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(611), + [anon_sym_struct] = ACTIONS(3557), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_QMARK] = ACTIONS(3559), + [anon_sym_BANG] = ACTIONS(3561), + [anon_sym_LBRACK2] = ACTIONS(3563), + [anon_sym_CARET] = ACTIONS(613), + [anon_sym_AMP] = ACTIONS(3565), + [anon_sym_LT_LT] = ACTIONS(613), + [anon_sym_GT_GT] = ACTIONS(613), + [anon_sym_GT_GT_GT] = ACTIONS(613), + [anon_sym_AMP_CARET] = ACTIONS(613), + [anon_sym_AMP_AMP] = ACTIONS(611), + [anon_sym_PIPE_PIPE] = ACTIONS(611), + [anon_sym_or] = ACTIONS(613), + [anon_sym_QMARK_DOT] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(611), + [anon_sym_is] = ACTIONS(613), + [anon_sym_BANGis] = ACTIONS(611), + [anon_sym_in] = ACTIONS(613), + [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(3567), + [anon_sym_map_LBRACK] = ACTIONS(3569), + [anon_sym_chan] = ACTIONS(3571), + [anon_sym_thread] = ACTIONS(3573), + [anon_sym_atomic] = ACTIONS(3575), + }, + [1157] = { + [sym_else_branch] = STATE(1190), + [sym_identifier] = ACTIONS(2398), + [anon_sym_LF] = ACTIONS(2398), + [anon_sym_CR] = ACTIONS(2398), + [anon_sym_CR_LF] = ACTIONS(2398), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_DOT] = ACTIONS(2398), + [anon_sym_as] = ACTIONS(2398), + [anon_sym_LBRACE] = ACTIONS(2398), + [anon_sym_COMMA] = ACTIONS(2398), + [anon_sym_RBRACE] = ACTIONS(2398), + [anon_sym_LPAREN] = ACTIONS(2398), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_fn] = ACTIONS(2398), + [anon_sym_PLUS] = ACTIONS(2398), + [anon_sym_DASH] = ACTIONS(2398), + [anon_sym_STAR] = ACTIONS(2398), + [anon_sym_SLASH] = ACTIONS(2398), + [anon_sym_PERCENT] = ACTIONS(2398), + [anon_sym_LT] = ACTIONS(2398), + [anon_sym_GT] = ACTIONS(2398), + [anon_sym_EQ_EQ] = ACTIONS(2398), + [anon_sym_BANG_EQ] = ACTIONS(2398), + [anon_sym_LT_EQ] = ACTIONS(2398), + [anon_sym_GT_EQ] = ACTIONS(2398), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_struct] = ACTIONS(2398), + [anon_sym_mut] = ACTIONS(2398), + [anon_sym_PLUS_PLUS] = ACTIONS(2398), + [anon_sym_DASH_DASH] = ACTIONS(2398), + [anon_sym_QMARK] = ACTIONS(2398), + [anon_sym_BANG] = ACTIONS(2398), + [anon_sym_go] = ACTIONS(2398), + [anon_sym_spawn] = ACTIONS(2398), + [anon_sym_json_DOTdecode] = ACTIONS(2398), + [anon_sym_LBRACK2] = ACTIONS(2398), + [anon_sym_TILDE] = ACTIONS(2398), + [anon_sym_CARET] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), + [anon_sym_LT_DASH] = ACTIONS(2398), + [anon_sym_LT_LT] = ACTIONS(2398), + [anon_sym_GT_GT] = ACTIONS(2398), + [anon_sym_GT_GT_GT] = ACTIONS(2398), + [anon_sym_AMP_CARET] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [anon_sym_or] = ACTIONS(2398), + [sym_none] = ACTIONS(2398), + [sym_true] = ACTIONS(2398), + [sym_false] = ACTIONS(2398), + [sym_nil] = ACTIONS(2398), + [anon_sym_QMARK_DOT] = ACTIONS(2398), + [anon_sym_POUND_LBRACK] = ACTIONS(2398), + [anon_sym_if] = ACTIONS(2398), + [anon_sym_else] = ACTIONS(3547), + [anon_sym_DOLLARif] = ACTIONS(2398), + [anon_sym_is] = ACTIONS(2398), + [anon_sym_BANGis] = ACTIONS(2398), + [anon_sym_in] = ACTIONS(2398), + [anon_sym_BANGin] = ACTIONS(2398), + [anon_sym_match] = ACTIONS(2398), + [anon_sym_select] = ACTIONS(2398), + [anon_sym_lock] = ACTIONS(2398), + [anon_sym_rlock] = ACTIONS(2398), + [anon_sym_unsafe] = ACTIONS(2398), + [anon_sym_sql] = ACTIONS(2398), + [sym_int_literal] = ACTIONS(2398), + [sym_float_literal] = ACTIONS(2398), + [sym_rune_literal] = ACTIONS(2398), + [anon_sym_AT] = ACTIONS(2398), + [anon_sym_shared] = ACTIONS(2398), + [anon_sym_map_LBRACK] = ACTIONS(2398), + [anon_sym_chan] = ACTIONS(2398), + [anon_sym_thread] = ACTIONS(2398), + [anon_sym_atomic] = ACTIONS(2398), + [sym___double_quote] = ACTIONS(2398), + [sym___single_quote] = ACTIONS(2398), + [sym___c_double_quote] = ACTIONS(2398), + [sym___c_single_quote] = ACTIONS(2398), + [sym___r_double_quote] = ACTIONS(2398), + [sym___r_single_quote] = ACTIONS(2398), + }, + [1158] = { + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2359), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(591), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(615), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_as] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_COMMA] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(615), + [anon_sym_EQ] = ACTIONS(617), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(617), + [anon_sym_PERCENT] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(617), + [anon_sym_GT] = ACTIONS(617), + [anon_sym_EQ_EQ] = ACTIONS(615), + [anon_sym_BANG_EQ] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_struct] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(615), + [anon_sym_DASH_DASH] = ACTIONS(615), + [anon_sym_QMARK] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_LBRACK2] = ACTIONS(617), + [anon_sym_CARET] = ACTIONS(617), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_LT_LT] = ACTIONS(617), + [anon_sym_GT_GT] = ACTIONS(617), + [anon_sym_GT_GT_GT] = ACTIONS(617), + [anon_sym_AMP_CARET] = ACTIONS(617), + [anon_sym_AMP_AMP] = ACTIONS(615), + [anon_sym_PIPE_PIPE] = ACTIONS(615), + [anon_sym_or] = ACTIONS(617), + [anon_sym_QMARK_DOT] = ACTIONS(615), + [anon_sym_POUND_LBRACK] = ACTIONS(615), + [anon_sym_is] = ACTIONS(617), + [anon_sym_BANGis] = ACTIONS(615), + [anon_sym_in] = ACTIONS(617), + [anon_sym_BANGin] = ACTIONS(615), + [anon_sym_STAR_EQ] = ACTIONS(615), + [anon_sym_SLASH_EQ] = ACTIONS(615), + [anon_sym_PERCENT_EQ] = ACTIONS(615), + [anon_sym_LT_LT_EQ] = ACTIONS(615), + [anon_sym_GT_GT_EQ] = ACTIONS(615), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(615), + [anon_sym_AMP_EQ] = ACTIONS(615), + [anon_sym_AMP_CARET_EQ] = ACTIONS(615), + [anon_sym_PLUS_EQ] = ACTIONS(615), + [anon_sym_DASH_EQ] = ACTIONS(615), + [anon_sym_PIPE_EQ] = ACTIONS(615), + [anon_sym_CARET_EQ] = ACTIONS(615), + [anon_sym_COLON_EQ] = ACTIONS(615), + [anon_sym_shared] = ACTIONS(609), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), }, [1159] = { - [sym_identifier] = ACTIONS(2730), - [anon_sym_LF] = ACTIONS(2730), - [anon_sym_CR] = ACTIONS(2730), - [anon_sym_CR_LF] = ACTIONS(2730), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2730), - [anon_sym_DOT] = ACTIONS(2730), - [anon_sym_as] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_COMMA] = ACTIONS(2730), - [anon_sym_RBRACE] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_fn] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2730), - [anon_sym_SLASH] = ACTIONS(2730), - [anon_sym_PERCENT] = ACTIONS(2730), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_GT] = ACTIONS(2730), - [anon_sym_EQ_EQ] = ACTIONS(2730), - [anon_sym_BANG_EQ] = ACTIONS(2730), - [anon_sym_LT_EQ] = ACTIONS(2730), - [anon_sym_GT_EQ] = ACTIONS(2730), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_struct] = ACTIONS(2730), - [anon_sym_mut] = ACTIONS(2730), - [anon_sym_PLUS_PLUS] = ACTIONS(2730), - [anon_sym_DASH_DASH] = ACTIONS(2730), - [anon_sym_QMARK] = ACTIONS(2730), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_go] = ACTIONS(2730), - [anon_sym_spawn] = ACTIONS(2730), - [anon_sym_json_DOTdecode] = ACTIONS(2730), - [anon_sym_LBRACK2] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2730), - [anon_sym_CARET] = ACTIONS(2730), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_LT_DASH] = ACTIONS(2730), - [anon_sym_LT_LT] = ACTIONS(2730), - [anon_sym_GT_GT] = ACTIONS(2730), - [anon_sym_GT_GT_GT] = ACTIONS(2730), - [anon_sym_AMP_CARET] = ACTIONS(2730), - [anon_sym_AMP_AMP] = ACTIONS(2730), - [anon_sym_PIPE_PIPE] = ACTIONS(2730), - [anon_sym_or] = ACTIONS(2730), - [sym_none] = ACTIONS(2730), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_nil] = ACTIONS(2730), - [anon_sym_QMARK_DOT] = ACTIONS(2730), - [anon_sym_POUND_LBRACK] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_else] = ACTIONS(2730), - [anon_sym_DOLLARif] = ACTIONS(2730), - [anon_sym_is] = ACTIONS(2730), - [anon_sym_BANGis] = ACTIONS(2730), - [anon_sym_in] = ACTIONS(2730), - [anon_sym_BANGin] = ACTIONS(2730), - [anon_sym_match] = ACTIONS(2730), - [anon_sym_select] = ACTIONS(2730), - [anon_sym_lock] = ACTIONS(2730), - [anon_sym_rlock] = ACTIONS(2730), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2730), - [sym_int_literal] = ACTIONS(2730), - [sym_float_literal] = ACTIONS(2730), - [sym_rune_literal] = ACTIONS(2730), - [anon_sym_AT] = ACTIONS(2730), - [anon_sym_shared] = ACTIONS(2730), - [anon_sym_map_LBRACK] = ACTIONS(2730), - [anon_sym_chan] = ACTIONS(2730), - [anon_sym_thread] = ACTIONS(2730), - [anon_sym_atomic] = ACTIONS(2730), - [sym___double_quote] = ACTIONS(2730), - [sym___single_quote] = ACTIONS(2730), - [sym___c_double_quote] = ACTIONS(2730), - [sym___c_single_quote] = ACTIONS(2730), - [sym___r_double_quote] = ACTIONS(2730), - [sym___r_single_quote] = ACTIONS(2730), + [sym_identifier] = ACTIONS(3577), + [anon_sym_LF] = ACTIONS(3580), + [anon_sym_CR] = ACTIONS(3580), + [anon_sym_CR_LF] = ACTIONS(3580), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3580), + [anon_sym_DOT] = ACTIONS(3591), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_COMMA] = ACTIONS(3580), + [anon_sym_RBRACE] = ACTIONS(3577), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_fn] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3583), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_mut] = ACTIONS(3118), + [anon_sym_COLON] = ACTIONS(3585), + [anon_sym_PLUS_PLUS] = ACTIONS(3118), + [anon_sym_DASH_DASH] = ACTIONS(3118), + [anon_sym_QMARK] = ACTIONS(3118), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_go] = ACTIONS(3118), + [anon_sym_spawn] = ACTIONS(3118), + [anon_sym_json_DOTdecode] = ACTIONS(3118), + [anon_sym_LBRACK2] = ACTIONS(3118), + [anon_sym_TILDE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_LT_DASH] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym_GT_GT_GT] = ACTIONS(3118), + [anon_sym_AMP_CARET] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3118), + [anon_sym_or] = ACTIONS(3118), + [sym_none] = ACTIONS(3118), + [sym_true] = ACTIONS(3118), + [sym_false] = ACTIONS(3118), + [sym_nil] = ACTIONS(3118), + [anon_sym_QMARK_DOT] = ACTIONS(3118), + [anon_sym_POUND_LBRACK] = ACTIONS(3118), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_DOLLARif] = ACTIONS(3118), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3118), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_BANGin] = ACTIONS(3118), + [anon_sym_match] = ACTIONS(3118), + [anon_sym_select] = ACTIONS(3118), + [anon_sym_lock] = ACTIONS(3118), + [anon_sym_rlock] = ACTIONS(3118), + [anon_sym_unsafe] = ACTIONS(3118), + [anon_sym_sql] = ACTIONS(3118), + [sym_int_literal] = ACTIONS(3118), + [sym_float_literal] = ACTIONS(3118), + [sym_rune_literal] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3118), + [anon_sym_shared] = ACTIONS(3118), + [anon_sym_map_LBRACK] = ACTIONS(3118), + [anon_sym_chan] = ACTIONS(3118), + [anon_sym_thread] = ACTIONS(3118), + [anon_sym_atomic] = ACTIONS(3118), + [sym___double_quote] = ACTIONS(3118), + [sym___single_quote] = ACTIONS(3118), + [sym___c_double_quote] = ACTIONS(3118), + [sym___c_single_quote] = ACTIONS(3118), + [sym___r_double_quote] = ACTIONS(3118), + [sym___r_single_quote] = ACTIONS(3118), }, [1160] = { [sym_identifier] = ACTIONS(2740), [anon_sym_LF] = ACTIONS(2740), [anon_sym_CR] = ACTIONS(2740), [anon_sym_CR_LF] = ACTIONS(2740), - [sym_comment] = ACTIONS(487), + [sym_comment] = ACTIONS(493), [anon_sym_SEMI] = ACTIONS(2740), [anon_sym_DOT] = ACTIONS(2740), [anon_sym_as] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2742), [anon_sym_COMMA] = ACTIONS(2740), [anon_sym_RBRACE] = ACTIONS(2740), [anon_sym_LPAREN] = ACTIONS(2740), @@ -155694,9 +155987,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(2740), [anon_sym_LT_EQ] = ACTIONS(2740), [anon_sym_GT_EQ] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2738), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(2745), [anon_sym_struct] = ACTIONS(2740), [anon_sym_mut] = ACTIONS(2740), + [anon_sym_COLON] = ACTIONS(2740), [anon_sym_PLUS_PLUS] = ACTIONS(2740), [anon_sym_DASH_DASH] = ACTIONS(2740), [anon_sym_QMARK] = ACTIONS(2740), @@ -155724,7 +156019,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_LBRACK] = ACTIONS(2740), [anon_sym_if] = ACTIONS(2740), [anon_sym_DOLLARif] = ACTIONS(2740), - [anon_sym_DOLLARelse] = ACTIONS(3590), [anon_sym_is] = ACTIONS(2740), [anon_sym_BANGis] = ACTIONS(2740), [anon_sym_in] = ACTIONS(2740), @@ -155752,2229 +156046,757 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(2740), }, [1161] = { - [sym_identifier] = ACTIONS(2730), - [anon_sym_LF] = ACTIONS(2730), - [anon_sym_CR] = ACTIONS(2730), - [anon_sym_CR_LF] = ACTIONS(2730), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2730), - [anon_sym_DOT] = ACTIONS(2730), - [anon_sym_as] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_COMMA] = ACTIONS(2730), - [anon_sym_RBRACE] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_fn] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2730), - [anon_sym_SLASH] = ACTIONS(2730), - [anon_sym_PERCENT] = ACTIONS(2730), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_GT] = ACTIONS(2730), - [anon_sym_EQ_EQ] = ACTIONS(2730), - [anon_sym_BANG_EQ] = ACTIONS(2730), - [anon_sym_LT_EQ] = ACTIONS(2730), - [anon_sym_GT_EQ] = ACTIONS(2730), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_struct] = ACTIONS(2730), - [anon_sym_mut] = ACTIONS(2730), - [anon_sym_PLUS_PLUS] = ACTIONS(2730), - [anon_sym_DASH_DASH] = ACTIONS(2730), - [anon_sym_QMARK] = ACTIONS(2730), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_go] = ACTIONS(2730), - [anon_sym_spawn] = ACTIONS(2730), - [anon_sym_json_DOTdecode] = ACTIONS(2730), - [anon_sym_LBRACK2] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2730), - [anon_sym_CARET] = ACTIONS(2730), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_LT_DASH] = ACTIONS(2730), - [anon_sym_LT_LT] = ACTIONS(2730), - [anon_sym_GT_GT] = ACTIONS(2730), - [anon_sym_GT_GT_GT] = ACTIONS(2730), - [anon_sym_AMP_CARET] = ACTIONS(2730), - [anon_sym_AMP_AMP] = ACTIONS(2730), - [anon_sym_PIPE_PIPE] = ACTIONS(2730), - [anon_sym_or] = ACTIONS(2730), - [sym_none] = ACTIONS(2730), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_nil] = ACTIONS(2730), - [anon_sym_QMARK_DOT] = ACTIONS(2730), - [anon_sym_POUND_LBRACK] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_DOLLARif] = ACTIONS(2730), - [anon_sym_DOLLARelse] = ACTIONS(2730), - [anon_sym_is] = ACTIONS(2730), - [anon_sym_BANGis] = ACTIONS(2730), - [anon_sym_in] = ACTIONS(2730), - [anon_sym_BANGin] = ACTIONS(2730), - [anon_sym_match] = ACTIONS(2730), - [anon_sym_select] = ACTIONS(2730), - [anon_sym_lock] = ACTIONS(2730), - [anon_sym_rlock] = ACTIONS(2730), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2730), - [sym_int_literal] = ACTIONS(2730), - [sym_float_literal] = ACTIONS(2730), - [sym_rune_literal] = ACTIONS(2730), - [anon_sym_AT] = ACTIONS(2730), - [anon_sym_shared] = ACTIONS(2730), - [anon_sym_map_LBRACK] = ACTIONS(2730), - [anon_sym_chan] = ACTIONS(2730), - [anon_sym_thread] = ACTIONS(2730), - [anon_sym_atomic] = ACTIONS(2730), - [sym___double_quote] = ACTIONS(2730), - [sym___single_quote] = ACTIONS(2730), - [sym___c_double_quote] = ACTIONS(2730), - [sym___c_single_quote] = ACTIONS(2730), - [sym___r_double_quote] = ACTIONS(2730), - [sym___r_single_quote] = ACTIONS(2730), + [sym_identifier] = ACTIONS(2758), + [anon_sym_LF] = ACTIONS(2758), + [anon_sym_CR] = ACTIONS(2758), + [anon_sym_CR_LF] = ACTIONS(2758), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_DOT] = ACTIONS(2758), + [anon_sym_as] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_COMMA] = ACTIONS(2758), + [anon_sym_RBRACE] = ACTIONS(2758), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_fn] = ACTIONS(2758), + [anon_sym_PLUS] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_STAR] = ACTIONS(2758), + [anon_sym_SLASH] = ACTIONS(2758), + [anon_sym_PERCENT] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2758), + [anon_sym_GT] = ACTIONS(2758), + [anon_sym_EQ_EQ] = ACTIONS(2758), + [anon_sym_BANG_EQ] = ACTIONS(2758), + [anon_sym_LT_EQ] = ACTIONS(2758), + [anon_sym_GT_EQ] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(2758), + [anon_sym_mut] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [anon_sym_QMARK] = ACTIONS(2758), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_go] = ACTIONS(2758), + [anon_sym_spawn] = ACTIONS(2758), + [anon_sym_json_DOTdecode] = ACTIONS(2758), + [anon_sym_LBRACK2] = ACTIONS(2758), + [anon_sym_TILDE] = ACTIONS(2758), + [anon_sym_CARET] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_LT_DASH] = ACTIONS(2758), + [anon_sym_LT_LT] = ACTIONS(2758), + [anon_sym_GT_GT] = ACTIONS(2758), + [anon_sym_GT_GT_GT] = ACTIONS(2758), + [anon_sym_AMP_CARET] = ACTIONS(2758), + [anon_sym_AMP_AMP] = ACTIONS(2758), + [anon_sym_PIPE_PIPE] = ACTIONS(2758), + [anon_sym_or] = ACTIONS(2758), + [sym_none] = ACTIONS(2758), + [sym_true] = ACTIONS(2758), + [sym_false] = ACTIONS(2758), + [sym_nil] = ACTIONS(2758), + [anon_sym_QMARK_DOT] = ACTIONS(2758), + [anon_sym_POUND_LBRACK] = ACTIONS(2758), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_DOLLARif] = ACTIONS(2758), + [anon_sym_DOLLARelse] = ACTIONS(3594), + [anon_sym_is] = ACTIONS(2758), + [anon_sym_BANGis] = ACTIONS(2758), + [anon_sym_in] = ACTIONS(2758), + [anon_sym_BANGin] = ACTIONS(2758), + [anon_sym_match] = ACTIONS(2758), + [anon_sym_select] = ACTIONS(2758), + [anon_sym_lock] = ACTIONS(2758), + [anon_sym_rlock] = ACTIONS(2758), + [anon_sym_unsafe] = ACTIONS(2758), + [anon_sym_sql] = ACTIONS(2758), + [sym_int_literal] = ACTIONS(2758), + [sym_float_literal] = ACTIONS(2758), + [sym_rune_literal] = ACTIONS(2758), + [anon_sym_AT] = ACTIONS(2758), + [anon_sym_shared] = ACTIONS(2758), + [anon_sym_map_LBRACK] = ACTIONS(2758), + [anon_sym_chan] = ACTIONS(2758), + [anon_sym_thread] = ACTIONS(2758), + [anon_sym_atomic] = ACTIONS(2758), + [sym___double_quote] = ACTIONS(2758), + [sym___single_quote] = ACTIONS(2758), + [sym___c_double_quote] = ACTIONS(2758), + [sym___c_single_quote] = ACTIONS(2758), + [sym___r_double_quote] = ACTIONS(2758), + [sym___r_single_quote] = ACTIONS(2758), }, [1162] = { - [sym_identifier] = ACTIONS(2734), - [anon_sym_LF] = ACTIONS(2734), - [anon_sym_CR] = ACTIONS(2734), - [anon_sym_CR_LF] = ACTIONS(2734), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2734), - [anon_sym_DOT] = ACTIONS(2734), - [anon_sym_as] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_COMMA] = ACTIONS(2734), - [anon_sym_RBRACE] = ACTIONS(2734), - [anon_sym_LPAREN] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_fn] = ACTIONS(2734), - [anon_sym_PLUS] = ACTIONS(2734), - [anon_sym_DASH] = ACTIONS(2734), - [anon_sym_STAR] = ACTIONS(2734), - [anon_sym_SLASH] = ACTIONS(2734), - [anon_sym_PERCENT] = ACTIONS(2734), - [anon_sym_LT] = ACTIONS(2734), - [anon_sym_GT] = ACTIONS(2734), - [anon_sym_EQ_EQ] = ACTIONS(2734), - [anon_sym_BANG_EQ] = ACTIONS(2734), - [anon_sym_LT_EQ] = ACTIONS(2734), - [anon_sym_GT_EQ] = ACTIONS(2734), - [anon_sym_LBRACK] = ACTIONS(2732), - [anon_sym_struct] = ACTIONS(2734), - [anon_sym_mut] = ACTIONS(2734), - [anon_sym_PLUS_PLUS] = ACTIONS(2734), - [anon_sym_DASH_DASH] = ACTIONS(2734), - [anon_sym_QMARK] = ACTIONS(2734), - [anon_sym_BANG] = ACTIONS(2734), - [anon_sym_go] = ACTIONS(2734), - [anon_sym_spawn] = ACTIONS(2734), - [anon_sym_json_DOTdecode] = ACTIONS(2734), - [anon_sym_LBRACK2] = ACTIONS(2734), - [anon_sym_TILDE] = ACTIONS(2734), - [anon_sym_CARET] = ACTIONS(2734), - [anon_sym_AMP] = ACTIONS(2734), - [anon_sym_LT_DASH] = ACTIONS(2734), - [anon_sym_LT_LT] = ACTIONS(2734), - [anon_sym_GT_GT] = ACTIONS(2734), - [anon_sym_GT_GT_GT] = ACTIONS(2734), - [anon_sym_AMP_CARET] = ACTIONS(2734), - [anon_sym_AMP_AMP] = ACTIONS(2734), - [anon_sym_PIPE_PIPE] = ACTIONS(2734), - [anon_sym_or] = ACTIONS(2734), - [sym_none] = ACTIONS(2734), - [sym_true] = ACTIONS(2734), - [sym_false] = ACTIONS(2734), - [sym_nil] = ACTIONS(2734), - [anon_sym_QMARK_DOT] = ACTIONS(2734), - [anon_sym_POUND_LBRACK] = ACTIONS(2734), - [anon_sym_if] = ACTIONS(2734), - [anon_sym_DOLLARif] = ACTIONS(2734), - [anon_sym_DOLLARelse] = ACTIONS(3592), - [anon_sym_is] = ACTIONS(2734), - [anon_sym_BANGis] = ACTIONS(2734), - [anon_sym_in] = ACTIONS(2734), - [anon_sym_BANGin] = ACTIONS(2734), - [anon_sym_match] = ACTIONS(2734), - [anon_sym_select] = ACTIONS(2734), - [anon_sym_lock] = ACTIONS(2734), - [anon_sym_rlock] = ACTIONS(2734), - [anon_sym_unsafe] = ACTIONS(2734), - [anon_sym_sql] = ACTIONS(2734), - [sym_int_literal] = ACTIONS(2734), - [sym_float_literal] = ACTIONS(2734), - [sym_rune_literal] = ACTIONS(2734), - [anon_sym_AT] = ACTIONS(2734), - [anon_sym_shared] = ACTIONS(2734), - [anon_sym_map_LBRACK] = ACTIONS(2734), - [anon_sym_chan] = ACTIONS(2734), - [anon_sym_thread] = ACTIONS(2734), - [anon_sym_atomic] = ACTIONS(2734), - [sym___double_quote] = ACTIONS(2734), - [sym___single_quote] = ACTIONS(2734), - [sym___c_double_quote] = ACTIONS(2734), - [sym___c_single_quote] = ACTIONS(2734), - [sym___r_double_quote] = ACTIONS(2734), - [sym___r_single_quote] = ACTIONS(2734), + [sym_identifier] = ACTIONS(2694), + [anon_sym_LF] = ACTIONS(2694), + [anon_sym_CR] = ACTIONS(2694), + [anon_sym_CR_LF] = ACTIONS(2694), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2694), + [anon_sym_DOT] = ACTIONS(2694), + [anon_sym_as] = ACTIONS(2694), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_COMMA] = ACTIONS(2694), + [anon_sym_RBRACE] = ACTIONS(2694), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym_PIPE] = ACTIONS(2694), + [anon_sym_fn] = ACTIONS(2694), + [anon_sym_PLUS] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(2694), + [anon_sym_SLASH] = ACTIONS(2694), + [anon_sym_PERCENT] = ACTIONS(2694), + [anon_sym_LT] = ACTIONS(2694), + [anon_sym_GT] = ACTIONS(2694), + [anon_sym_EQ_EQ] = ACTIONS(2694), + [anon_sym_BANG_EQ] = ACTIONS(2694), + [anon_sym_LT_EQ] = ACTIONS(2694), + [anon_sym_GT_EQ] = ACTIONS(2694), + [anon_sym_LBRACK] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2694), + [anon_sym_mut] = ACTIONS(2694), + [anon_sym_PLUS_PLUS] = ACTIONS(2694), + [anon_sym_DASH_DASH] = ACTIONS(2694), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_BANG] = ACTIONS(2694), + [anon_sym_go] = ACTIONS(2694), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2694), + [anon_sym_LBRACK2] = ACTIONS(2694), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_CARET] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2694), + [anon_sym_LT_DASH] = ACTIONS(2694), + [anon_sym_LT_LT] = ACTIONS(2694), + [anon_sym_GT_GT] = ACTIONS(2694), + [anon_sym_GT_GT_GT] = ACTIONS(2694), + [anon_sym_AMP_CARET] = ACTIONS(2694), + [anon_sym_AMP_AMP] = ACTIONS(2694), + [anon_sym_PIPE_PIPE] = ACTIONS(2694), + [anon_sym_or] = ACTIONS(2694), + [sym_none] = ACTIONS(2694), + [sym_true] = ACTIONS(2694), + [sym_false] = ACTIONS(2694), + [sym_nil] = ACTIONS(2694), + [anon_sym_QMARK_DOT] = ACTIONS(2694), + [anon_sym_POUND_LBRACK] = ACTIONS(2694), + [anon_sym_if] = ACTIONS(2694), + [anon_sym_DOLLARif] = ACTIONS(2694), + [anon_sym_DOLLARelse] = ACTIONS(2694), + [anon_sym_is] = ACTIONS(2694), + [anon_sym_BANGis] = ACTIONS(2694), + [anon_sym_in] = ACTIONS(2694), + [anon_sym_BANGin] = ACTIONS(2694), + [anon_sym_match] = ACTIONS(2694), + [anon_sym_select] = ACTIONS(2694), + [anon_sym_lock] = ACTIONS(2694), + [anon_sym_rlock] = ACTIONS(2694), + [anon_sym_unsafe] = ACTIONS(2694), + [anon_sym_sql] = ACTIONS(2694), + [sym_int_literal] = ACTIONS(2694), + [sym_float_literal] = ACTIONS(2694), + [sym_rune_literal] = ACTIONS(2694), + [anon_sym_AT] = ACTIONS(2694), + [anon_sym_shared] = ACTIONS(2694), + [anon_sym_map_LBRACK] = ACTIONS(2694), + [anon_sym_chan] = ACTIONS(2694), + [anon_sym_thread] = ACTIONS(2694), + [anon_sym_atomic] = ACTIONS(2694), + [sym___double_quote] = ACTIONS(2694), + [sym___single_quote] = ACTIONS(2694), + [sym___c_double_quote] = ACTIONS(2694), + [sym___c_single_quote] = ACTIONS(2694), + [sym___r_double_quote] = ACTIONS(2694), + [sym___r_single_quote] = ACTIONS(2694), }, [1163] = { - [sym_identifier] = ACTIONS(2700), - [anon_sym_LF] = ACTIONS(2700), - [anon_sym_CR] = ACTIONS(2700), - [anon_sym_CR_LF] = ACTIONS(2700), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_COMMA] = ACTIONS(2700), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2700), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2700), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2700), - [anon_sym_AMP_CARET] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2700), - [anon_sym_POUND_LBRACK] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_DOLLARelse] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2700), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2700), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), - [sym_rune_literal] = ACTIONS(2700), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2700), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2700), - [sym___single_quote] = ACTIONS(2700), - [sym___c_double_quote] = ACTIONS(2700), - [sym___c_single_quote] = ACTIONS(2700), - [sym___r_double_quote] = ACTIONS(2700), - [sym___r_single_quote] = ACTIONS(2700), + [sym_identifier] = ACTIONS(2694), + [anon_sym_LF] = ACTIONS(2694), + [anon_sym_CR] = ACTIONS(2694), + [anon_sym_CR_LF] = ACTIONS(2694), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2694), + [anon_sym_DOT] = ACTIONS(2694), + [anon_sym_as] = ACTIONS(2694), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_COMMA] = ACTIONS(2694), + [anon_sym_RBRACE] = ACTIONS(2694), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym_PIPE] = ACTIONS(2694), + [anon_sym_fn] = ACTIONS(2694), + [anon_sym_PLUS] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(2694), + [anon_sym_SLASH] = ACTIONS(2694), + [anon_sym_PERCENT] = ACTIONS(2694), + [anon_sym_LT] = ACTIONS(2694), + [anon_sym_GT] = ACTIONS(2694), + [anon_sym_EQ_EQ] = ACTIONS(2694), + [anon_sym_BANG_EQ] = ACTIONS(2694), + [anon_sym_LT_EQ] = ACTIONS(2694), + [anon_sym_GT_EQ] = ACTIONS(2694), + [anon_sym_LBRACK] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2694), + [anon_sym_mut] = ACTIONS(2694), + [anon_sym_PLUS_PLUS] = ACTIONS(2694), + [anon_sym_DASH_DASH] = ACTIONS(2694), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_BANG] = ACTIONS(2694), + [anon_sym_go] = ACTIONS(2694), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2694), + [anon_sym_LBRACK2] = ACTIONS(2694), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_CARET] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2694), + [anon_sym_LT_DASH] = ACTIONS(2694), + [anon_sym_LT_LT] = ACTIONS(2694), + [anon_sym_GT_GT] = ACTIONS(2694), + [anon_sym_GT_GT_GT] = ACTIONS(2694), + [anon_sym_AMP_CARET] = ACTIONS(2694), + [anon_sym_AMP_AMP] = ACTIONS(2694), + [anon_sym_PIPE_PIPE] = ACTIONS(2694), + [anon_sym_or] = ACTIONS(2694), + [sym_none] = ACTIONS(2694), + [sym_true] = ACTIONS(2694), + [sym_false] = ACTIONS(2694), + [sym_nil] = ACTIONS(2694), + [anon_sym_QMARK_DOT] = ACTIONS(2694), + [anon_sym_POUND_LBRACK] = ACTIONS(2694), + [anon_sym_if] = ACTIONS(2694), + [anon_sym_else] = ACTIONS(2694), + [anon_sym_DOLLARif] = ACTIONS(2694), + [anon_sym_is] = ACTIONS(2694), + [anon_sym_BANGis] = ACTIONS(2694), + [anon_sym_in] = ACTIONS(2694), + [anon_sym_BANGin] = ACTIONS(2694), + [anon_sym_match] = ACTIONS(2694), + [anon_sym_select] = ACTIONS(2694), + [anon_sym_lock] = ACTIONS(2694), + [anon_sym_rlock] = ACTIONS(2694), + [anon_sym_unsafe] = ACTIONS(2694), + [anon_sym_sql] = ACTIONS(2694), + [sym_int_literal] = ACTIONS(2694), + [sym_float_literal] = ACTIONS(2694), + [sym_rune_literal] = ACTIONS(2694), + [anon_sym_AT] = ACTIONS(2694), + [anon_sym_shared] = ACTIONS(2694), + [anon_sym_map_LBRACK] = ACTIONS(2694), + [anon_sym_chan] = ACTIONS(2694), + [anon_sym_thread] = ACTIONS(2694), + [anon_sym_atomic] = ACTIONS(2694), + [sym___double_quote] = ACTIONS(2694), + [sym___single_quote] = ACTIONS(2694), + [sym___c_double_quote] = ACTIONS(2694), + [sym___c_single_quote] = ACTIONS(2694), + [sym___r_double_quote] = ACTIONS(2694), + [sym___r_single_quote] = ACTIONS(2694), }, [1164] = { - [sym_type_parameters] = STATE(1201), - [sym_identifier] = ACTIONS(2704), - [anon_sym_LF] = ACTIONS(2704), - [anon_sym_CR] = ACTIONS(2704), - [anon_sym_CR_LF] = ACTIONS(2704), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2704), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_as] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_COMMA] = ACTIONS(2704), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_SLASH] = ACTIONS(2704), - [anon_sym_PERCENT] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_EQ_EQ] = ACTIONS(2704), - [anon_sym_BANG_EQ] = ACTIONS(2704), - [anon_sym_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_EQ] = ACTIONS(2704), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_mut] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_go] = ACTIONS(2704), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2704), - [anon_sym_LBRACK2] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_CARET] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_LT_DASH] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2704), - [anon_sym_GT_GT] = ACTIONS(2704), - [anon_sym_GT_GT_GT] = ACTIONS(2704), - [anon_sym_AMP_CARET] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_PIPE_PIPE] = ACTIONS(2704), - [anon_sym_or] = ACTIONS(2704), - [sym_none] = ACTIONS(2704), - [sym_true] = ACTIONS(2704), - [sym_false] = ACTIONS(2704), - [sym_nil] = ACTIONS(2704), - [anon_sym_QMARK_DOT] = ACTIONS(2704), - [anon_sym_POUND_LBRACK] = ACTIONS(2704), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_DOLLARif] = ACTIONS(2704), - [anon_sym_is] = ACTIONS(2704), - [anon_sym_BANGis] = ACTIONS(2704), - [anon_sym_in] = ACTIONS(2704), - [anon_sym_BANGin] = ACTIONS(2704), - [anon_sym_match] = ACTIONS(2704), - [anon_sym_select] = ACTIONS(2704), - [anon_sym_lock] = ACTIONS(2704), - [anon_sym_rlock] = ACTIONS(2704), - [anon_sym_unsafe] = ACTIONS(2704), - [anon_sym_sql] = ACTIONS(2704), - [sym_int_literal] = ACTIONS(2704), - [sym_float_literal] = ACTIONS(2704), - [sym_rune_literal] = ACTIONS(2704), - [anon_sym_AT] = ACTIONS(2704), - [anon_sym_shared] = ACTIONS(2704), - [anon_sym_map_LBRACK] = ACTIONS(2704), - [anon_sym_chan] = ACTIONS(2704), - [anon_sym_thread] = ACTIONS(2704), - [anon_sym_atomic] = ACTIONS(2704), - [sym___double_quote] = ACTIONS(2704), - [sym___single_quote] = ACTIONS(2704), - [sym___c_double_quote] = ACTIONS(2704), - [sym___c_single_quote] = ACTIONS(2704), - [sym___r_double_quote] = ACTIONS(2704), - [sym___r_single_quote] = ACTIONS(2704), + [sym_identifier] = ACTIONS(2736), + [anon_sym_LF] = ACTIONS(2736), + [anon_sym_CR] = ACTIONS(2736), + [anon_sym_CR_LF] = ACTIONS(2736), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2736), + [anon_sym_DOT] = ACTIONS(2736), + [anon_sym_as] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2736), + [anon_sym_COMMA] = ACTIONS(2736), + [anon_sym_RBRACE] = ACTIONS(2736), + [anon_sym_LPAREN] = ACTIONS(2736), + [anon_sym_PIPE] = ACTIONS(2736), + [anon_sym_fn] = ACTIONS(2736), + [anon_sym_PLUS] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2736), + [anon_sym_STAR] = ACTIONS(2736), + [anon_sym_SLASH] = ACTIONS(2736), + [anon_sym_PERCENT] = ACTIONS(2736), + [anon_sym_LT] = ACTIONS(2736), + [anon_sym_GT] = ACTIONS(2736), + [anon_sym_EQ_EQ] = ACTIONS(2736), + [anon_sym_BANG_EQ] = ACTIONS(2736), + [anon_sym_LT_EQ] = ACTIONS(2736), + [anon_sym_GT_EQ] = ACTIONS(2736), + [anon_sym_LBRACK] = ACTIONS(2734), + [anon_sym_struct] = ACTIONS(2736), + [anon_sym_mut] = ACTIONS(2736), + [anon_sym_PLUS_PLUS] = ACTIONS(2736), + [anon_sym_DASH_DASH] = ACTIONS(2736), + [anon_sym_QMARK] = ACTIONS(2736), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_go] = ACTIONS(2736), + [anon_sym_spawn] = ACTIONS(2736), + [anon_sym_json_DOTdecode] = ACTIONS(2736), + [anon_sym_LBRACK2] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_CARET] = ACTIONS(2736), + [anon_sym_AMP] = ACTIONS(2736), + [anon_sym_LT_DASH] = ACTIONS(2736), + [anon_sym_LT_LT] = ACTIONS(2736), + [anon_sym_GT_GT] = ACTIONS(2736), + [anon_sym_GT_GT_GT] = ACTIONS(2736), + [anon_sym_AMP_CARET] = ACTIONS(2736), + [anon_sym_AMP_AMP] = ACTIONS(2736), + [anon_sym_PIPE_PIPE] = ACTIONS(2736), + [anon_sym_or] = ACTIONS(2736), + [sym_none] = ACTIONS(2736), + [sym_true] = ACTIONS(2736), + [sym_false] = ACTIONS(2736), + [sym_nil] = ACTIONS(2736), + [anon_sym_QMARK_DOT] = ACTIONS(2736), + [anon_sym_POUND_LBRACK] = ACTIONS(2736), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_DOLLARif] = ACTIONS(2736), + [anon_sym_DOLLARelse] = ACTIONS(2736), + [anon_sym_is] = ACTIONS(2736), + [anon_sym_BANGis] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2736), + [anon_sym_BANGin] = ACTIONS(2736), + [anon_sym_match] = ACTIONS(2736), + [anon_sym_select] = ACTIONS(2736), + [anon_sym_lock] = ACTIONS(2736), + [anon_sym_rlock] = ACTIONS(2736), + [anon_sym_unsafe] = ACTIONS(2736), + [anon_sym_sql] = ACTIONS(2736), + [sym_int_literal] = ACTIONS(2736), + [sym_float_literal] = ACTIONS(2736), + [sym_rune_literal] = ACTIONS(2736), + [anon_sym_AT] = ACTIONS(2736), + [anon_sym_shared] = ACTIONS(2736), + [anon_sym_map_LBRACK] = ACTIONS(2736), + [anon_sym_chan] = ACTIONS(2736), + [anon_sym_thread] = ACTIONS(2736), + [anon_sym_atomic] = ACTIONS(2736), + [sym___double_quote] = ACTIONS(2736), + [sym___single_quote] = ACTIONS(2736), + [sym___c_double_quote] = ACTIONS(2736), + [sym___c_single_quote] = ACTIONS(2736), + [sym___r_double_quote] = ACTIONS(2736), + [sym___r_single_quote] = ACTIONS(2736), }, [1165] = { - [sym_identifier] = ACTIONS(2915), - [anon_sym_LF] = ACTIONS(2915), - [anon_sym_CR] = ACTIONS(2915), - [anon_sym_CR_LF] = ACTIONS(2915), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2915), - [anon_sym_DOT] = ACTIONS(2915), - [anon_sym_as] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_COMMA] = ACTIONS(2915), - [anon_sym_RBRACE] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2915), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_fn] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_SLASH] = ACTIONS(2915), - [anon_sym_PERCENT] = ACTIONS(2915), - [anon_sym_LT] = ACTIONS(2915), - [anon_sym_GT] = ACTIONS(2915), - [anon_sym_EQ_EQ] = ACTIONS(2915), - [anon_sym_BANG_EQ] = ACTIONS(2915), - [anon_sym_LT_EQ] = ACTIONS(2915), - [anon_sym_GT_EQ] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_struct] = ACTIONS(2915), - [anon_sym_mut] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_QMARK] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2915), - [anon_sym_json_DOTdecode] = ACTIONS(2915), - [anon_sym_LBRACK2] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_LT_DASH] = ACTIONS(2915), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2915), - [anon_sym_GT_GT_GT] = ACTIONS(2915), - [anon_sym_AMP_CARET] = ACTIONS(2915), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_PIPE_PIPE] = ACTIONS(2915), - [anon_sym_or] = ACTIONS(2915), - [sym_none] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [sym_nil] = ACTIONS(2915), - [anon_sym_QMARK_DOT] = ACTIONS(2915), - [anon_sym_POUND_LBRACK] = ACTIONS(2915), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_DOLLARif] = ACTIONS(2915), - [anon_sym_is] = ACTIONS(2915), - [anon_sym_BANGis] = ACTIONS(2915), - [anon_sym_in] = ACTIONS(2915), - [anon_sym_BANGin] = ACTIONS(2915), - [anon_sym_match] = ACTIONS(2915), - [anon_sym_select] = ACTIONS(2915), - [anon_sym_lock] = ACTIONS(2915), - [anon_sym_rlock] = ACTIONS(2915), - [anon_sym_unsafe] = ACTIONS(2915), - [anon_sym_sql] = ACTIONS(2915), - [sym_int_literal] = ACTIONS(2915), - [sym_float_literal] = ACTIONS(2915), - [sym_rune_literal] = ACTIONS(2915), - [anon_sym_AT] = ACTIONS(2915), - [anon_sym_shared] = ACTIONS(2915), - [anon_sym_map_LBRACK] = ACTIONS(2915), - [anon_sym_chan] = ACTIONS(2915), - [anon_sym_thread] = ACTIONS(2915), - [anon_sym_atomic] = ACTIONS(2915), - [sym___double_quote] = ACTIONS(2915), - [sym___single_quote] = ACTIONS(2915), - [sym___c_double_quote] = ACTIONS(2915), - [sym___c_single_quote] = ACTIONS(2915), - [sym___r_double_quote] = ACTIONS(2915), - [sym___r_single_quote] = ACTIONS(2915), + [sym_identifier] = ACTIONS(2616), + [anon_sym_LF] = ACTIONS(2616), + [anon_sym_CR] = ACTIONS(2616), + [anon_sym_CR_LF] = ACTIONS(2616), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2616), + [anon_sym_DOT] = ACTIONS(2616), + [anon_sym_as] = ACTIONS(2616), + [anon_sym_LBRACE] = ACTIONS(2616), + [anon_sym_COMMA] = ACTIONS(2616), + [anon_sym_RBRACE] = ACTIONS(2616), + [anon_sym_LPAREN] = ACTIONS(2616), + [anon_sym_PIPE] = ACTIONS(2616), + [anon_sym_fn] = ACTIONS(2616), + [anon_sym_PLUS] = ACTIONS(2616), + [anon_sym_DASH] = ACTIONS(2616), + [anon_sym_STAR] = ACTIONS(2616), + [anon_sym_SLASH] = ACTIONS(2616), + [anon_sym_PERCENT] = ACTIONS(2616), + [anon_sym_LT] = ACTIONS(2616), + [anon_sym_GT] = ACTIONS(2616), + [anon_sym_EQ_EQ] = ACTIONS(2616), + [anon_sym_BANG_EQ] = ACTIONS(2616), + [anon_sym_LT_EQ] = ACTIONS(2616), + [anon_sym_GT_EQ] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(2614), + [anon_sym_struct] = ACTIONS(2616), + [anon_sym_mut] = ACTIONS(2616), + [anon_sym_PLUS_PLUS] = ACTIONS(2616), + [anon_sym_DASH_DASH] = ACTIONS(2616), + [anon_sym_QMARK] = ACTIONS(2616), + [anon_sym_BANG] = ACTIONS(2616), + [anon_sym_go] = ACTIONS(2616), + [anon_sym_spawn] = ACTIONS(2616), + [anon_sym_json_DOTdecode] = ACTIONS(2616), + [anon_sym_LBRACK2] = ACTIONS(2616), + [anon_sym_TILDE] = ACTIONS(2616), + [anon_sym_CARET] = ACTIONS(2616), + [anon_sym_AMP] = ACTIONS(2616), + [anon_sym_LT_DASH] = ACTIONS(2616), + [anon_sym_LT_LT] = ACTIONS(2616), + [anon_sym_GT_GT] = ACTIONS(2616), + [anon_sym_GT_GT_GT] = ACTIONS(2616), + [anon_sym_AMP_CARET] = ACTIONS(2616), + [anon_sym_AMP_AMP] = ACTIONS(2616), + [anon_sym_PIPE_PIPE] = ACTIONS(2616), + [anon_sym_or] = ACTIONS(2616), + [sym_none] = ACTIONS(2616), + [sym_true] = ACTIONS(2616), + [sym_false] = ACTIONS(2616), + [sym_nil] = ACTIONS(2616), + [anon_sym_QMARK_DOT] = ACTIONS(2616), + [anon_sym_POUND_LBRACK] = ACTIONS(2616), + [anon_sym_if] = ACTIONS(2616), + [anon_sym_DOLLARif] = ACTIONS(2616), + [anon_sym_DOLLARelse] = ACTIONS(3596), + [anon_sym_is] = ACTIONS(2616), + [anon_sym_BANGis] = ACTIONS(2616), + [anon_sym_in] = ACTIONS(2616), + [anon_sym_BANGin] = ACTIONS(2616), + [anon_sym_match] = ACTIONS(2616), + [anon_sym_select] = ACTIONS(2616), + [anon_sym_lock] = ACTIONS(2616), + [anon_sym_rlock] = ACTIONS(2616), + [anon_sym_unsafe] = ACTIONS(2616), + [anon_sym_sql] = ACTIONS(2616), + [sym_int_literal] = ACTIONS(2616), + [sym_float_literal] = ACTIONS(2616), + [sym_rune_literal] = ACTIONS(2616), + [anon_sym_AT] = ACTIONS(2616), + [anon_sym_shared] = ACTIONS(2616), + [anon_sym_map_LBRACK] = ACTIONS(2616), + [anon_sym_chan] = ACTIONS(2616), + [anon_sym_thread] = ACTIONS(2616), + [anon_sym_atomic] = ACTIONS(2616), + [sym___double_quote] = ACTIONS(2616), + [sym___single_quote] = ACTIONS(2616), + [sym___c_double_quote] = ACTIONS(2616), + [sym___c_single_quote] = ACTIONS(2616), + [sym___r_double_quote] = ACTIONS(2616), + [sym___r_single_quote] = ACTIONS(2616), }, [1166] = { - [sym_identifier] = ACTIONS(2997), - [anon_sym_LF] = ACTIONS(2997), - [anon_sym_CR] = ACTIONS(2997), - [anon_sym_CR_LF] = ACTIONS(2997), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2997), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_as] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(2997), - [anon_sym_RBRACE] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(2997), - [anon_sym_PIPE] = ACTIONS(2997), - [anon_sym_fn] = ACTIONS(2997), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_STAR] = ACTIONS(2997), - [anon_sym_SLASH] = ACTIONS(2997), - [anon_sym_PERCENT] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(2997), - [anon_sym_EQ_EQ] = ACTIONS(2997), - [anon_sym_BANG_EQ] = ACTIONS(2997), - [anon_sym_LT_EQ] = ACTIONS(2997), - [anon_sym_GT_EQ] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_struct] = ACTIONS(2997), - [anon_sym_mut] = ACTIONS(2997), - [anon_sym_PLUS_PLUS] = ACTIONS(2997), - [anon_sym_DASH_DASH] = ACTIONS(2997), - [anon_sym_QMARK] = ACTIONS(2997), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_go] = ACTIONS(2997), - [anon_sym_spawn] = ACTIONS(2997), - [anon_sym_json_DOTdecode] = ACTIONS(2997), - [anon_sym_LBRACK2] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_CARET] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_LT_DASH] = ACTIONS(2997), - [anon_sym_LT_LT] = ACTIONS(2997), - [anon_sym_GT_GT] = ACTIONS(2997), - [anon_sym_GT_GT_GT] = ACTIONS(2997), - [anon_sym_AMP_CARET] = ACTIONS(2997), - [anon_sym_AMP_AMP] = ACTIONS(2997), - [anon_sym_PIPE_PIPE] = ACTIONS(2997), - [anon_sym_or] = ACTIONS(2997), - [sym_none] = ACTIONS(2997), - [sym_true] = ACTIONS(2997), - [sym_false] = ACTIONS(2997), - [sym_nil] = ACTIONS(2997), - [anon_sym_QMARK_DOT] = ACTIONS(2997), - [anon_sym_POUND_LBRACK] = ACTIONS(2997), - [anon_sym_if] = ACTIONS(2997), - [anon_sym_DOLLARif] = ACTIONS(2997), - [anon_sym_is] = ACTIONS(2997), - [anon_sym_BANGis] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(2997), - [anon_sym_BANGin] = ACTIONS(2997), - [anon_sym_match] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [anon_sym_lock] = ACTIONS(2997), - [anon_sym_rlock] = ACTIONS(2997), - [anon_sym_unsafe] = ACTIONS(2997), - [anon_sym_sql] = ACTIONS(2997), - [sym_int_literal] = ACTIONS(2997), - [sym_float_literal] = ACTIONS(2997), - [sym_rune_literal] = ACTIONS(2997), - [anon_sym_AT] = ACTIONS(2997), - [anon_sym_shared] = ACTIONS(2997), - [anon_sym_map_LBRACK] = ACTIONS(2997), - [anon_sym_chan] = ACTIONS(2997), - [anon_sym_thread] = ACTIONS(2997), - [anon_sym_atomic] = ACTIONS(2997), - [sym___double_quote] = ACTIONS(2997), - [sym___single_quote] = ACTIONS(2997), - [sym___c_double_quote] = ACTIONS(2997), - [sym___c_single_quote] = ACTIONS(2997), - [sym___r_double_quote] = ACTIONS(2997), - [sym___r_single_quote] = ACTIONS(2997), + [sym_identifier] = ACTIONS(2736), + [anon_sym_LF] = ACTIONS(2736), + [anon_sym_CR] = ACTIONS(2736), + [anon_sym_CR_LF] = ACTIONS(2736), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2736), + [anon_sym_DOT] = ACTIONS(2736), + [anon_sym_as] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2736), + [anon_sym_COMMA] = ACTIONS(2736), + [anon_sym_RBRACE] = ACTIONS(2736), + [anon_sym_LPAREN] = ACTIONS(2736), + [anon_sym_PIPE] = ACTIONS(2736), + [anon_sym_fn] = ACTIONS(2736), + [anon_sym_PLUS] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2736), + [anon_sym_STAR] = ACTIONS(2736), + [anon_sym_SLASH] = ACTIONS(2736), + [anon_sym_PERCENT] = ACTIONS(2736), + [anon_sym_LT] = ACTIONS(2736), + [anon_sym_GT] = ACTIONS(2736), + [anon_sym_EQ_EQ] = ACTIONS(2736), + [anon_sym_BANG_EQ] = ACTIONS(2736), + [anon_sym_LT_EQ] = ACTIONS(2736), + [anon_sym_GT_EQ] = ACTIONS(2736), + [anon_sym_LBRACK] = ACTIONS(2734), + [anon_sym_struct] = ACTIONS(2736), + [anon_sym_mut] = ACTIONS(2736), + [anon_sym_PLUS_PLUS] = ACTIONS(2736), + [anon_sym_DASH_DASH] = ACTIONS(2736), + [anon_sym_QMARK] = ACTIONS(2736), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_go] = ACTIONS(2736), + [anon_sym_spawn] = ACTIONS(2736), + [anon_sym_json_DOTdecode] = ACTIONS(2736), + [anon_sym_LBRACK2] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_CARET] = ACTIONS(2736), + [anon_sym_AMP] = ACTIONS(2736), + [anon_sym_LT_DASH] = ACTIONS(2736), + [anon_sym_LT_LT] = ACTIONS(2736), + [anon_sym_GT_GT] = ACTIONS(2736), + [anon_sym_GT_GT_GT] = ACTIONS(2736), + [anon_sym_AMP_CARET] = ACTIONS(2736), + [anon_sym_AMP_AMP] = ACTIONS(2736), + [anon_sym_PIPE_PIPE] = ACTIONS(2736), + [anon_sym_or] = ACTIONS(2736), + [sym_none] = ACTIONS(2736), + [sym_true] = ACTIONS(2736), + [sym_false] = ACTIONS(2736), + [sym_nil] = ACTIONS(2736), + [anon_sym_QMARK_DOT] = ACTIONS(2736), + [anon_sym_POUND_LBRACK] = ACTIONS(2736), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_else] = ACTIONS(2736), + [anon_sym_DOLLARif] = ACTIONS(2736), + [anon_sym_is] = ACTIONS(2736), + [anon_sym_BANGis] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2736), + [anon_sym_BANGin] = ACTIONS(2736), + [anon_sym_match] = ACTIONS(2736), + [anon_sym_select] = ACTIONS(2736), + [anon_sym_lock] = ACTIONS(2736), + [anon_sym_rlock] = ACTIONS(2736), + [anon_sym_unsafe] = ACTIONS(2736), + [anon_sym_sql] = ACTIONS(2736), + [sym_int_literal] = ACTIONS(2736), + [sym_float_literal] = ACTIONS(2736), + [sym_rune_literal] = ACTIONS(2736), + [anon_sym_AT] = ACTIONS(2736), + [anon_sym_shared] = ACTIONS(2736), + [anon_sym_map_LBRACK] = ACTIONS(2736), + [anon_sym_chan] = ACTIONS(2736), + [anon_sym_thread] = ACTIONS(2736), + [anon_sym_atomic] = ACTIONS(2736), + [sym___double_quote] = ACTIONS(2736), + [sym___single_quote] = ACTIONS(2736), + [sym___c_double_quote] = ACTIONS(2736), + [sym___c_single_quote] = ACTIONS(2736), + [sym___r_double_quote] = ACTIONS(2736), + [sym___r_single_quote] = ACTIONS(2736), }, [1167] = { - [sym_identifier] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2772), - [anon_sym_CR] = ACTIONS(2772), - [anon_sym_CR_LF] = ACTIONS(2772), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_as] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_COMMA] = ACTIONS(2772), - [anon_sym_RBRACE] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2772), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_PERCENT] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2772), - [anon_sym_BANG_EQ] = ACTIONS(2772), - [anon_sym_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_EQ] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2770), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_mut] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [anon_sym_QMARK] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2772), - [anon_sym_json_DOTdecode] = ACTIONS(2772), - [anon_sym_LBRACK2] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_LT_DASH] = ACTIONS(2772), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_GT_GT_GT] = ACTIONS(2772), - [anon_sym_AMP_CARET] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_PIPE_PIPE] = ACTIONS(2772), - [anon_sym_or] = ACTIONS(2772), - [sym_none] = ACTIONS(2772), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_nil] = ACTIONS(2772), - [anon_sym_QMARK_DOT] = ACTIONS(2772), - [anon_sym_POUND_LBRACK] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_DOLLARif] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_BANGis] = ACTIONS(2772), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_BANGin] = ACTIONS(2772), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_select] = ACTIONS(2772), - [anon_sym_lock] = ACTIONS(2772), - [anon_sym_rlock] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_sql] = ACTIONS(2772), - [sym_int_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2772), - [sym_rune_literal] = ACTIONS(2772), - [anon_sym_AT] = ACTIONS(2772), - [anon_sym_shared] = ACTIONS(2772), - [anon_sym_map_LBRACK] = ACTIONS(2772), - [anon_sym_chan] = ACTIONS(2772), - [anon_sym_thread] = ACTIONS(2772), - [anon_sym_atomic] = ACTIONS(2772), - [sym___double_quote] = ACTIONS(2772), - [sym___single_quote] = ACTIONS(2772), - [sym___c_double_quote] = ACTIONS(2772), - [sym___c_single_quote] = ACTIONS(2772), - [sym___r_double_quote] = ACTIONS(2772), - [sym___r_single_quote] = ACTIONS(2772), + [sym_type_parameters] = STATE(1245), + [sym_identifier] = ACTIONS(2764), + [anon_sym_LF] = ACTIONS(2764), + [anon_sym_CR] = ACTIONS(2764), + [anon_sym_CR_LF] = ACTIONS(2764), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym_DOT] = ACTIONS(2764), + [anon_sym_as] = ACTIONS(2764), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_COMMA] = ACTIONS(2764), + [anon_sym_RBRACE] = ACTIONS(2764), + [anon_sym_LPAREN] = ACTIONS(2764), + [anon_sym_PIPE] = ACTIONS(2764), + [anon_sym_fn] = ACTIONS(2764), + [anon_sym_PLUS] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2764), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_SLASH] = ACTIONS(2764), + [anon_sym_PERCENT] = ACTIONS(2764), + [anon_sym_LT] = ACTIONS(2764), + [anon_sym_GT] = ACTIONS(2764), + [anon_sym_EQ_EQ] = ACTIONS(2764), + [anon_sym_BANG_EQ] = ACTIONS(2764), + [anon_sym_LT_EQ] = ACTIONS(2764), + [anon_sym_GT_EQ] = ACTIONS(2764), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2764), + [anon_sym_mut] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_QMARK] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_go] = ACTIONS(2764), + [anon_sym_spawn] = ACTIONS(2764), + [anon_sym_json_DOTdecode] = ACTIONS(2764), + [anon_sym_LBRACK2] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_CARET] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_LT_DASH] = ACTIONS(2764), + [anon_sym_LT_LT] = ACTIONS(2764), + [anon_sym_GT_GT] = ACTIONS(2764), + [anon_sym_GT_GT_GT] = ACTIONS(2764), + [anon_sym_AMP_CARET] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_PIPE_PIPE] = ACTIONS(2764), + [anon_sym_or] = ACTIONS(2764), + [sym_none] = ACTIONS(2764), + [sym_true] = ACTIONS(2764), + [sym_false] = ACTIONS(2764), + [sym_nil] = ACTIONS(2764), + [anon_sym_QMARK_DOT] = ACTIONS(2764), + [anon_sym_POUND_LBRACK] = ACTIONS(2764), + [anon_sym_if] = ACTIONS(2764), + [anon_sym_DOLLARif] = ACTIONS(2764), + [anon_sym_is] = ACTIONS(2764), + [anon_sym_BANGis] = ACTIONS(2764), + [anon_sym_in] = ACTIONS(2764), + [anon_sym_BANGin] = ACTIONS(2764), + [anon_sym_match] = ACTIONS(2764), + [anon_sym_select] = ACTIONS(2764), + [anon_sym_lock] = ACTIONS(2764), + [anon_sym_rlock] = ACTIONS(2764), + [anon_sym_unsafe] = ACTIONS(2764), + [anon_sym_sql] = ACTIONS(2764), + [sym_int_literal] = ACTIONS(2764), + [sym_float_literal] = ACTIONS(2764), + [sym_rune_literal] = ACTIONS(2764), + [anon_sym_AT] = ACTIONS(2764), + [anon_sym_shared] = ACTIONS(2764), + [anon_sym_map_LBRACK] = ACTIONS(2764), + [anon_sym_chan] = ACTIONS(2764), + [anon_sym_thread] = ACTIONS(2764), + [anon_sym_atomic] = ACTIONS(2764), + [sym___double_quote] = ACTIONS(2764), + [sym___single_quote] = ACTIONS(2764), + [sym___c_double_quote] = ACTIONS(2764), + [sym___c_single_quote] = ACTIONS(2764), + [sym___r_double_quote] = ACTIONS(2764), + [sym___r_single_quote] = ACTIONS(2764), }, [1168] = { - [sym_identifier] = ACTIONS(3137), - [anon_sym_LF] = ACTIONS(3137), - [anon_sym_CR] = ACTIONS(3137), - [anon_sym_CR_LF] = ACTIONS(3137), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(3137), - [anon_sym_as] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_COMMA] = ACTIONS(3137), - [anon_sym_RBRACE] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3137), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_fn] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_SLASH] = ACTIONS(3137), - [anon_sym_PERCENT] = ACTIONS(3137), - [anon_sym_LT] = ACTIONS(3137), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_LT_EQ] = ACTIONS(3137), - [anon_sym_GT_EQ] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3137), - [anon_sym_mut] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_go] = ACTIONS(3137), - [anon_sym_spawn] = ACTIONS(3137), - [anon_sym_json_DOTdecode] = ACTIONS(3137), - [anon_sym_LBRACK2] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_CARET] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_LT_DASH] = ACTIONS(3137), - [anon_sym_LT_LT] = ACTIONS(3137), - [anon_sym_GT_GT] = ACTIONS(3137), - [anon_sym_GT_GT_GT] = ACTIONS(3137), - [anon_sym_AMP_CARET] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_PIPE_PIPE] = ACTIONS(3137), - [anon_sym_or] = ACTIONS(3137), - [sym_none] = ACTIONS(3137), - [sym_true] = ACTIONS(3137), - [sym_false] = ACTIONS(3137), - [sym_nil] = ACTIONS(3137), - [anon_sym_QMARK_DOT] = ACTIONS(3137), - [anon_sym_POUND_LBRACK] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_DOLLARif] = ACTIONS(3137), - [anon_sym_is] = ACTIONS(3137), - [anon_sym_BANGis] = ACTIONS(3137), - [anon_sym_in] = ACTIONS(3137), - [anon_sym_BANGin] = ACTIONS(3137), - [anon_sym_match] = ACTIONS(3137), - [anon_sym_select] = ACTIONS(3137), - [anon_sym_lock] = ACTIONS(3137), - [anon_sym_rlock] = ACTIONS(3137), - [anon_sym_unsafe] = ACTIONS(3137), - [anon_sym_sql] = ACTIONS(3137), - [sym_int_literal] = ACTIONS(3137), - [sym_float_literal] = ACTIONS(3137), - [sym_rune_literal] = ACTIONS(3137), - [anon_sym_AT] = ACTIONS(3137), - [anon_sym_shared] = ACTIONS(3137), - [anon_sym_map_LBRACK] = ACTIONS(3137), - [anon_sym_chan] = ACTIONS(3137), - [anon_sym_thread] = ACTIONS(3137), - [anon_sym_atomic] = ACTIONS(3137), - [sym___double_quote] = ACTIONS(3137), - [sym___single_quote] = ACTIONS(3137), - [sym___c_double_quote] = ACTIONS(3137), - [sym___c_single_quote] = ACTIONS(3137), - [sym___r_double_quote] = ACTIONS(3137), - [sym___r_single_quote] = ACTIONS(3137), - }, - [1169] = { - [sym_identifier] = ACTIONS(3133), - [anon_sym_LF] = ACTIONS(3133), - [anon_sym_CR] = ACTIONS(3133), - [anon_sym_CR_LF] = ACTIONS(3133), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3133), - [anon_sym_as] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_RBRACE] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3133), - [anon_sym_fn] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_SLASH] = ACTIONS(3133), - [anon_sym_PERCENT] = ACTIONS(3133), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_GT] = ACTIONS(3133), - [anon_sym_EQ_EQ] = ACTIONS(3133), - [anon_sym_BANG_EQ] = ACTIONS(3133), - [anon_sym_LT_EQ] = ACTIONS(3133), - [anon_sym_GT_EQ] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_struct] = ACTIONS(3133), - [anon_sym_mut] = ACTIONS(3133), - [anon_sym_PLUS_PLUS] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3133), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_go] = ACTIONS(3133), - [anon_sym_spawn] = ACTIONS(3133), - [anon_sym_json_DOTdecode] = ACTIONS(3133), - [anon_sym_LBRACK2] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_CARET] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_LT_DASH] = ACTIONS(3133), - [anon_sym_LT_LT] = ACTIONS(3133), - [anon_sym_GT_GT] = ACTIONS(3133), - [anon_sym_GT_GT_GT] = ACTIONS(3133), - [anon_sym_AMP_CARET] = ACTIONS(3133), - [anon_sym_AMP_AMP] = ACTIONS(3133), - [anon_sym_PIPE_PIPE] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3133), - [sym_none] = ACTIONS(3133), - [sym_true] = ACTIONS(3133), - [sym_false] = ACTIONS(3133), - [sym_nil] = ACTIONS(3133), - [anon_sym_QMARK_DOT] = ACTIONS(3133), - [anon_sym_POUND_LBRACK] = ACTIONS(3133), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_DOLLARif] = ACTIONS(3133), - [anon_sym_is] = ACTIONS(3133), - [anon_sym_BANGis] = ACTIONS(3133), - [anon_sym_in] = ACTIONS(3133), - [anon_sym_BANGin] = ACTIONS(3133), - [anon_sym_match] = ACTIONS(3133), - [anon_sym_select] = ACTIONS(3133), - [anon_sym_lock] = ACTIONS(3133), - [anon_sym_rlock] = ACTIONS(3133), - [anon_sym_unsafe] = ACTIONS(3133), - [anon_sym_sql] = ACTIONS(3133), - [sym_int_literal] = ACTIONS(3133), - [sym_float_literal] = ACTIONS(3133), - [sym_rune_literal] = ACTIONS(3133), - [anon_sym_AT] = ACTIONS(3133), - [anon_sym_shared] = ACTIONS(3133), - [anon_sym_map_LBRACK] = ACTIONS(3133), - [anon_sym_chan] = ACTIONS(3133), - [anon_sym_thread] = ACTIONS(3133), - [anon_sym_atomic] = ACTIONS(3133), - [sym___double_quote] = ACTIONS(3133), - [sym___single_quote] = ACTIONS(3133), - [sym___c_double_quote] = ACTIONS(3133), - [sym___c_single_quote] = ACTIONS(3133), - [sym___r_double_quote] = ACTIONS(3133), - [sym___r_single_quote] = ACTIONS(3133), - }, - [1170] = { - [sym_identifier] = ACTIONS(3105), - [anon_sym_LF] = ACTIONS(3105), - [anon_sym_CR] = ACTIONS(3105), - [anon_sym_CR_LF] = ACTIONS(3105), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3105), - [anon_sym_DOT] = ACTIONS(3105), - [anon_sym_as] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(3105), - [anon_sym_COMMA] = ACTIONS(3105), - [anon_sym_RBRACE] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3105), - [anon_sym_fn] = ACTIONS(3105), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_SLASH] = ACTIONS(3105), - [anon_sym_PERCENT] = ACTIONS(3105), - [anon_sym_LT] = ACTIONS(3105), - [anon_sym_GT] = ACTIONS(3105), - [anon_sym_EQ_EQ] = ACTIONS(3105), - [anon_sym_BANG_EQ] = ACTIONS(3105), - [anon_sym_LT_EQ] = ACTIONS(3105), - [anon_sym_GT_EQ] = ACTIONS(3105), - [anon_sym_LBRACK] = ACTIONS(3103), - [anon_sym_struct] = ACTIONS(3105), - [anon_sym_mut] = ACTIONS(3105), - [anon_sym_PLUS_PLUS] = ACTIONS(3105), - [anon_sym_DASH_DASH] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3105), - [anon_sym_go] = ACTIONS(3105), - [anon_sym_spawn] = ACTIONS(3105), - [anon_sym_json_DOTdecode] = ACTIONS(3105), - [anon_sym_LBRACK2] = ACTIONS(3105), - [anon_sym_TILDE] = ACTIONS(3105), - [anon_sym_CARET] = ACTIONS(3105), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_LT_DASH] = ACTIONS(3105), - [anon_sym_LT_LT] = ACTIONS(3105), - [anon_sym_GT_GT] = ACTIONS(3105), - [anon_sym_GT_GT_GT] = ACTIONS(3105), - [anon_sym_AMP_CARET] = ACTIONS(3105), - [anon_sym_AMP_AMP] = ACTIONS(3105), - [anon_sym_PIPE_PIPE] = ACTIONS(3105), - [anon_sym_or] = ACTIONS(3105), - [sym_none] = ACTIONS(3105), - [sym_true] = ACTIONS(3105), - [sym_false] = ACTIONS(3105), - [sym_nil] = ACTIONS(3105), - [anon_sym_QMARK_DOT] = ACTIONS(3105), - [anon_sym_POUND_LBRACK] = ACTIONS(3105), - [anon_sym_if] = ACTIONS(3105), - [anon_sym_DOLLARif] = ACTIONS(3105), - [anon_sym_is] = ACTIONS(3105), - [anon_sym_BANGis] = ACTIONS(3105), - [anon_sym_in] = ACTIONS(3105), - [anon_sym_BANGin] = ACTIONS(3105), - [anon_sym_match] = ACTIONS(3105), - [anon_sym_select] = ACTIONS(3105), - [anon_sym_lock] = ACTIONS(3105), - [anon_sym_rlock] = ACTIONS(3105), - [anon_sym_unsafe] = ACTIONS(3105), - [anon_sym_sql] = ACTIONS(3105), - [sym_int_literal] = ACTIONS(3105), - [sym_float_literal] = ACTIONS(3105), - [sym_rune_literal] = ACTIONS(3105), - [anon_sym_AT] = ACTIONS(3105), - [anon_sym_shared] = ACTIONS(3105), - [anon_sym_map_LBRACK] = ACTIONS(3105), - [anon_sym_chan] = ACTIONS(3105), - [anon_sym_thread] = ACTIONS(3105), - [anon_sym_atomic] = ACTIONS(3105), - [sym___double_quote] = ACTIONS(3105), - [sym___single_quote] = ACTIONS(3105), - [sym___c_double_quote] = ACTIONS(3105), - [sym___c_single_quote] = ACTIONS(3105), - [sym___r_double_quote] = ACTIONS(3105), - [sym___r_single_quote] = ACTIONS(3105), - }, - [1171] = { - [sym_identifier] = ACTIONS(3101), - [anon_sym_LF] = ACTIONS(3101), - [anon_sym_CR] = ACTIONS(3101), - [anon_sym_CR_LF] = ACTIONS(3101), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_as] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_COMMA] = ACTIONS(3101), - [anon_sym_RBRACE] = ACTIONS(3101), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym_PIPE] = ACTIONS(3101), - [anon_sym_fn] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_SLASH] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3101), - [anon_sym_LT] = ACTIONS(3101), - [anon_sym_GT] = ACTIONS(3101), - [anon_sym_EQ_EQ] = ACTIONS(3101), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_LT_EQ] = ACTIONS(3101), - [anon_sym_GT_EQ] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3101), - [anon_sym_mut] = ACTIONS(3101), - [anon_sym_PLUS_PLUS] = ACTIONS(3101), - [anon_sym_DASH_DASH] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_BANG] = ACTIONS(3101), - [anon_sym_go] = ACTIONS(3101), - [anon_sym_spawn] = ACTIONS(3101), - [anon_sym_json_DOTdecode] = ACTIONS(3101), - [anon_sym_LBRACK2] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_CARET] = ACTIONS(3101), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_LT_DASH] = ACTIONS(3101), - [anon_sym_LT_LT] = ACTIONS(3101), - [anon_sym_GT_GT] = ACTIONS(3101), - [anon_sym_GT_GT_GT] = ACTIONS(3101), - [anon_sym_AMP_CARET] = ACTIONS(3101), - [anon_sym_AMP_AMP] = ACTIONS(3101), - [anon_sym_PIPE_PIPE] = ACTIONS(3101), - [anon_sym_or] = ACTIONS(3101), - [sym_none] = ACTIONS(3101), - [sym_true] = ACTIONS(3101), - [sym_false] = ACTIONS(3101), - [sym_nil] = ACTIONS(3101), - [anon_sym_QMARK_DOT] = ACTIONS(3101), - [anon_sym_POUND_LBRACK] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_DOLLARif] = ACTIONS(3101), - [anon_sym_is] = ACTIONS(3101), - [anon_sym_BANGis] = ACTIONS(3101), - [anon_sym_in] = ACTIONS(3101), - [anon_sym_BANGin] = ACTIONS(3101), - [anon_sym_match] = ACTIONS(3101), - [anon_sym_select] = ACTIONS(3101), - [anon_sym_lock] = ACTIONS(3101), - [anon_sym_rlock] = ACTIONS(3101), - [anon_sym_unsafe] = ACTIONS(3101), - [anon_sym_sql] = ACTIONS(3101), - [sym_int_literal] = ACTIONS(3101), - [sym_float_literal] = ACTIONS(3101), - [sym_rune_literal] = ACTIONS(3101), - [anon_sym_AT] = ACTIONS(3101), - [anon_sym_shared] = ACTIONS(3101), - [anon_sym_map_LBRACK] = ACTIONS(3101), - [anon_sym_chan] = ACTIONS(3101), - [anon_sym_thread] = ACTIONS(3101), - [anon_sym_atomic] = ACTIONS(3101), - [sym___double_quote] = ACTIONS(3101), - [sym___single_quote] = ACTIONS(3101), - [sym___c_double_quote] = ACTIONS(3101), - [sym___c_single_quote] = ACTIONS(3101), - [sym___r_double_quote] = ACTIONS(3101), - [sym___r_single_quote] = ACTIONS(3101), - }, - [1172] = { - [sym_identifier] = ACTIONS(3001), - [anon_sym_LF] = ACTIONS(3001), - [anon_sym_CR] = ACTIONS(3001), - [anon_sym_CR_LF] = ACTIONS(3001), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3001), - [anon_sym_DOT] = ACTIONS(3001), - [anon_sym_as] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3001), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_RBRACE] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_PIPE] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(3001), - [anon_sym_SLASH] = ACTIONS(3001), - [anon_sym_PERCENT] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_GT] = ACTIONS(3001), - [anon_sym_EQ_EQ] = ACTIONS(3001), - [anon_sym_BANG_EQ] = ACTIONS(3001), - [anon_sym_LT_EQ] = ACTIONS(3001), - [anon_sym_GT_EQ] = ACTIONS(3001), - [anon_sym_LBRACK] = ACTIONS(2999), - [anon_sym_struct] = ACTIONS(3001), - [anon_sym_mut] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_QMARK] = ACTIONS(3001), - [anon_sym_BANG] = ACTIONS(3001), - [anon_sym_go] = ACTIONS(3001), - [anon_sym_spawn] = ACTIONS(3001), - [anon_sym_json_DOTdecode] = ACTIONS(3001), - [anon_sym_LBRACK2] = ACTIONS(3001), - [anon_sym_TILDE] = ACTIONS(3001), - [anon_sym_CARET] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3001), - [anon_sym_LT_DASH] = ACTIONS(3001), - [anon_sym_LT_LT] = ACTIONS(3001), - [anon_sym_GT_GT] = ACTIONS(3001), - [anon_sym_GT_GT_GT] = ACTIONS(3001), - [anon_sym_AMP_CARET] = ACTIONS(3001), - [anon_sym_AMP_AMP] = ACTIONS(3001), - [anon_sym_PIPE_PIPE] = ACTIONS(3001), - [anon_sym_or] = ACTIONS(3001), - [sym_none] = ACTIONS(3001), - [sym_true] = ACTIONS(3001), - [sym_false] = ACTIONS(3001), - [sym_nil] = ACTIONS(3001), - [anon_sym_QMARK_DOT] = ACTIONS(3001), - [anon_sym_POUND_LBRACK] = ACTIONS(3001), - [anon_sym_if] = ACTIONS(3001), - [anon_sym_DOLLARif] = ACTIONS(3001), - [anon_sym_is] = ACTIONS(3001), - [anon_sym_BANGis] = ACTIONS(3001), - [anon_sym_in] = ACTIONS(3001), - [anon_sym_BANGin] = ACTIONS(3001), - [anon_sym_match] = ACTIONS(3001), - [anon_sym_select] = ACTIONS(3001), - [anon_sym_lock] = ACTIONS(3001), - [anon_sym_rlock] = ACTIONS(3001), - [anon_sym_unsafe] = ACTIONS(3001), - [anon_sym_sql] = ACTIONS(3001), - [sym_int_literal] = ACTIONS(3001), - [sym_float_literal] = ACTIONS(3001), - [sym_rune_literal] = ACTIONS(3001), - [anon_sym_AT] = ACTIONS(3001), - [anon_sym_shared] = ACTIONS(3001), - [anon_sym_map_LBRACK] = ACTIONS(3001), - [anon_sym_chan] = ACTIONS(3001), - [anon_sym_thread] = ACTIONS(3001), - [anon_sym_atomic] = ACTIONS(3001), - [sym___double_quote] = ACTIONS(3001), - [sym___single_quote] = ACTIONS(3001), - [sym___c_double_quote] = ACTIONS(3001), - [sym___c_single_quote] = ACTIONS(3001), - [sym___r_double_quote] = ACTIONS(3001), - [sym___r_single_quote] = ACTIONS(3001), - }, - [1173] = { - [sym_identifier] = ACTIONS(3085), - [anon_sym_LF] = ACTIONS(3085), - [anon_sym_CR] = ACTIONS(3085), - [anon_sym_CR_LF] = ACTIONS(3085), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(3085), - [anon_sym_as] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_COMMA] = ACTIONS(3085), - [anon_sym_RBRACE] = ACTIONS(3085), - [anon_sym_LPAREN] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_fn] = ACTIONS(3085), - [anon_sym_PLUS] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(3085), - [anon_sym_SLASH] = ACTIONS(3085), - [anon_sym_PERCENT] = ACTIONS(3085), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_GT] = ACTIONS(3085), - [anon_sym_EQ_EQ] = ACTIONS(3085), - [anon_sym_BANG_EQ] = ACTIONS(3085), - [anon_sym_LT_EQ] = ACTIONS(3085), - [anon_sym_GT_EQ] = ACTIONS(3085), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_struct] = ACTIONS(3085), - [anon_sym_mut] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_QMARK] = ACTIONS(3085), - [anon_sym_BANG] = ACTIONS(3085), - [anon_sym_go] = ACTIONS(3085), - [anon_sym_spawn] = ACTIONS(3085), - [anon_sym_json_DOTdecode] = ACTIONS(3085), - [anon_sym_LBRACK2] = ACTIONS(3085), - [anon_sym_TILDE] = ACTIONS(3085), - [anon_sym_CARET] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_LT_DASH] = ACTIONS(3085), - [anon_sym_LT_LT] = ACTIONS(3085), - [anon_sym_GT_GT] = ACTIONS(3085), - [anon_sym_GT_GT_GT] = ACTIONS(3085), - [anon_sym_AMP_CARET] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_PIPE_PIPE] = ACTIONS(3085), - [anon_sym_or] = ACTIONS(3085), - [sym_none] = ACTIONS(3085), - [sym_true] = ACTIONS(3085), - [sym_false] = ACTIONS(3085), - [sym_nil] = ACTIONS(3085), - [anon_sym_QMARK_DOT] = ACTIONS(3085), - [anon_sym_POUND_LBRACK] = ACTIONS(3085), - [anon_sym_if] = ACTIONS(3085), - [anon_sym_DOLLARif] = ACTIONS(3085), - [anon_sym_is] = ACTIONS(3085), - [anon_sym_BANGis] = ACTIONS(3085), - [anon_sym_in] = ACTIONS(3085), - [anon_sym_BANGin] = ACTIONS(3085), - [anon_sym_match] = ACTIONS(3085), - [anon_sym_select] = ACTIONS(3085), - [anon_sym_lock] = ACTIONS(3085), - [anon_sym_rlock] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(3085), - [anon_sym_sql] = ACTIONS(3085), - [sym_int_literal] = ACTIONS(3085), - [sym_float_literal] = ACTIONS(3085), - [sym_rune_literal] = ACTIONS(3085), - [anon_sym_AT] = ACTIONS(3085), - [anon_sym_shared] = ACTIONS(3085), - [anon_sym_map_LBRACK] = ACTIONS(3085), - [anon_sym_chan] = ACTIONS(3085), - [anon_sym_thread] = ACTIONS(3085), - [anon_sym_atomic] = ACTIONS(3085), - [sym___double_quote] = ACTIONS(3085), - [sym___single_quote] = ACTIONS(3085), - [sym___c_double_quote] = ACTIONS(3085), - [sym___c_single_quote] = ACTIONS(3085), - [sym___r_double_quote] = ACTIONS(3085), - [sym___r_single_quote] = ACTIONS(3085), - }, - [1174] = { - [sym_identifier] = ACTIONS(2832), - [anon_sym_LF] = ACTIONS(2832), - [anon_sym_CR] = ACTIONS(2832), - [anon_sym_CR_LF] = ACTIONS(2832), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_DOT] = ACTIONS(2832), - [anon_sym_as] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym_RBRACE] = ACTIONS(2832), - [anon_sym_LPAREN] = ACTIONS(2832), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_fn] = ACTIONS(2832), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2832), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_PERCENT] = ACTIONS(2832), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_EQ_EQ] = ACTIONS(2832), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_LT_EQ] = ACTIONS(2832), - [anon_sym_GT_EQ] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_struct] = ACTIONS(2832), - [anon_sym_mut] = ACTIONS(2832), - [anon_sym_PLUS_PLUS] = ACTIONS(2832), - [anon_sym_DASH_DASH] = ACTIONS(2832), - [anon_sym_QMARK] = ACTIONS(2832), - [anon_sym_BANG] = ACTIONS(2832), - [anon_sym_go] = ACTIONS(2832), - [anon_sym_spawn] = ACTIONS(2832), - [anon_sym_json_DOTdecode] = ACTIONS(2832), - [anon_sym_LBRACK2] = ACTIONS(2832), - [anon_sym_TILDE] = ACTIONS(2832), - [anon_sym_CARET] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2832), - [anon_sym_LT_DASH] = ACTIONS(2832), - [anon_sym_LT_LT] = ACTIONS(2832), - [anon_sym_GT_GT] = ACTIONS(2832), - [anon_sym_GT_GT_GT] = ACTIONS(2832), - [anon_sym_AMP_CARET] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(2832), - [anon_sym_PIPE_PIPE] = ACTIONS(2832), - [anon_sym_or] = ACTIONS(2832), - [sym_none] = ACTIONS(2832), - [sym_true] = ACTIONS(2832), - [sym_false] = ACTIONS(2832), - [sym_nil] = ACTIONS(2832), - [anon_sym_QMARK_DOT] = ACTIONS(2832), - [anon_sym_POUND_LBRACK] = ACTIONS(2832), - [anon_sym_if] = ACTIONS(2832), - [anon_sym_DOLLARif] = ACTIONS(2832), - [anon_sym_is] = ACTIONS(2832), - [anon_sym_BANGis] = ACTIONS(2832), - [anon_sym_in] = ACTIONS(2832), - [anon_sym_BANGin] = ACTIONS(2832), - [anon_sym_match] = ACTIONS(2832), - [anon_sym_select] = ACTIONS(2832), - [anon_sym_lock] = ACTIONS(2832), - [anon_sym_rlock] = ACTIONS(2832), - [anon_sym_unsafe] = ACTIONS(2832), - [anon_sym_sql] = ACTIONS(2832), - [sym_int_literal] = ACTIONS(2832), - [sym_float_literal] = ACTIONS(2832), - [sym_rune_literal] = ACTIONS(2832), - [anon_sym_AT] = ACTIONS(2832), - [anon_sym_shared] = ACTIONS(2832), - [anon_sym_map_LBRACK] = ACTIONS(2832), - [anon_sym_chan] = ACTIONS(2832), - [anon_sym_thread] = ACTIONS(2832), - [anon_sym_atomic] = ACTIONS(2832), - [sym___double_quote] = ACTIONS(2832), - [sym___single_quote] = ACTIONS(2832), - [sym___c_double_quote] = ACTIONS(2832), - [sym___c_single_quote] = ACTIONS(2832), - [sym___r_double_quote] = ACTIONS(2832), - [sym___r_single_quote] = ACTIONS(2832), - }, - [1175] = { - [sym_identifier] = ACTIONS(2880), - [anon_sym_LF] = ACTIONS(2880), - [anon_sym_CR] = ACTIONS(2880), - [anon_sym_CR_LF] = ACTIONS(2880), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2880), - [anon_sym_DOT] = ACTIONS(2880), - [anon_sym_as] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_COMMA] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2880), - [anon_sym_PIPE] = ACTIONS(2880), - [anon_sym_fn] = ACTIONS(2880), - [anon_sym_PLUS] = ACTIONS(2880), - [anon_sym_DASH] = ACTIONS(2880), - [anon_sym_STAR] = ACTIONS(2880), - [anon_sym_SLASH] = ACTIONS(2880), - [anon_sym_PERCENT] = ACTIONS(2880), - [anon_sym_LT] = ACTIONS(2880), - [anon_sym_GT] = ACTIONS(2880), - [anon_sym_EQ_EQ] = ACTIONS(2880), - [anon_sym_BANG_EQ] = ACTIONS(2880), - [anon_sym_LT_EQ] = ACTIONS(2880), - [anon_sym_GT_EQ] = ACTIONS(2880), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_struct] = ACTIONS(2880), - [anon_sym_mut] = ACTIONS(2880), - [anon_sym_PLUS_PLUS] = ACTIONS(2880), - [anon_sym_DASH_DASH] = ACTIONS(2880), - [anon_sym_QMARK] = ACTIONS(2880), - [anon_sym_BANG] = ACTIONS(2880), - [anon_sym_go] = ACTIONS(2880), - [anon_sym_spawn] = ACTIONS(2880), - [anon_sym_json_DOTdecode] = ACTIONS(2880), - [anon_sym_LBRACK2] = ACTIONS(2880), - [anon_sym_TILDE] = ACTIONS(2880), - [anon_sym_CARET] = ACTIONS(2880), - [anon_sym_AMP] = ACTIONS(2880), - [anon_sym_LT_DASH] = ACTIONS(2880), - [anon_sym_LT_LT] = ACTIONS(2880), - [anon_sym_GT_GT] = ACTIONS(2880), - [anon_sym_GT_GT_GT] = ACTIONS(2880), - [anon_sym_AMP_CARET] = ACTIONS(2880), - [anon_sym_AMP_AMP] = ACTIONS(2880), - [anon_sym_PIPE_PIPE] = ACTIONS(2880), - [anon_sym_or] = ACTIONS(2880), - [sym_none] = ACTIONS(2880), - [sym_true] = ACTIONS(2880), - [sym_false] = ACTIONS(2880), - [sym_nil] = ACTIONS(2880), - [anon_sym_QMARK_DOT] = ACTIONS(2880), - [anon_sym_POUND_LBRACK] = ACTIONS(2880), - [anon_sym_if] = ACTIONS(2880), - [anon_sym_DOLLARif] = ACTIONS(2880), - [anon_sym_is] = ACTIONS(2880), - [anon_sym_BANGis] = ACTIONS(2880), - [anon_sym_in] = ACTIONS(2880), - [anon_sym_BANGin] = ACTIONS(2880), - [anon_sym_match] = ACTIONS(2880), - [anon_sym_select] = ACTIONS(2880), - [anon_sym_lock] = ACTIONS(2880), - [anon_sym_rlock] = ACTIONS(2880), - [anon_sym_unsafe] = ACTIONS(2880), - [anon_sym_sql] = ACTIONS(2880), - [sym_int_literal] = ACTIONS(2880), - [sym_float_literal] = ACTIONS(2880), - [sym_rune_literal] = ACTIONS(2880), - [anon_sym_AT] = ACTIONS(2880), - [anon_sym_shared] = ACTIONS(2880), - [anon_sym_map_LBRACK] = ACTIONS(2880), - [anon_sym_chan] = ACTIONS(2880), - [anon_sym_thread] = ACTIONS(2880), - [anon_sym_atomic] = ACTIONS(2880), - [sym___double_quote] = ACTIONS(2880), - [sym___single_quote] = ACTIONS(2880), - [sym___c_double_quote] = ACTIONS(2880), - [sym___c_single_quote] = ACTIONS(2880), - [sym___r_double_quote] = ACTIONS(2880), - [sym___r_single_quote] = ACTIONS(2880), - }, - [1176] = { - [sym_identifier] = ACTIONS(2895), - [anon_sym_LF] = ACTIONS(2895), - [anon_sym_CR] = ACTIONS(2895), - [anon_sym_CR_LF] = ACTIONS(2895), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2895), - [anon_sym_DOT] = ACTIONS(2895), - [anon_sym_as] = ACTIONS(2895), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_COMMA] = ACTIONS(2895), - [anon_sym_RBRACE] = ACTIONS(2895), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym_PIPE] = ACTIONS(2895), - [anon_sym_fn] = ACTIONS(2895), - [anon_sym_PLUS] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2895), - [anon_sym_STAR] = ACTIONS(2895), - [anon_sym_SLASH] = ACTIONS(2895), - [anon_sym_PERCENT] = ACTIONS(2895), - [anon_sym_LT] = ACTIONS(2895), - [anon_sym_GT] = ACTIONS(2895), - [anon_sym_EQ_EQ] = ACTIONS(2895), - [anon_sym_BANG_EQ] = ACTIONS(2895), - [anon_sym_LT_EQ] = ACTIONS(2895), - [anon_sym_GT_EQ] = ACTIONS(2895), - [anon_sym_LBRACK] = ACTIONS(2893), - [anon_sym_struct] = ACTIONS(2895), - [anon_sym_mut] = ACTIONS(2895), - [anon_sym_PLUS_PLUS] = ACTIONS(2895), - [anon_sym_DASH_DASH] = ACTIONS(2895), - [anon_sym_QMARK] = ACTIONS(2895), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_go] = ACTIONS(2895), - [anon_sym_spawn] = ACTIONS(2895), - [anon_sym_json_DOTdecode] = ACTIONS(2895), - [anon_sym_LBRACK2] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_CARET] = ACTIONS(2895), - [anon_sym_AMP] = ACTIONS(2895), - [anon_sym_LT_DASH] = ACTIONS(2895), - [anon_sym_LT_LT] = ACTIONS(2895), - [anon_sym_GT_GT] = ACTIONS(2895), - [anon_sym_GT_GT_GT] = ACTIONS(2895), - [anon_sym_AMP_CARET] = ACTIONS(2895), - [anon_sym_AMP_AMP] = ACTIONS(2895), - [anon_sym_PIPE_PIPE] = ACTIONS(2895), - [anon_sym_or] = ACTIONS(2895), - [sym_none] = ACTIONS(2895), - [sym_true] = ACTIONS(2895), - [sym_false] = ACTIONS(2895), - [sym_nil] = ACTIONS(2895), - [anon_sym_QMARK_DOT] = ACTIONS(2895), - [anon_sym_POUND_LBRACK] = ACTIONS(2895), - [anon_sym_if] = ACTIONS(2895), - [anon_sym_DOLLARif] = ACTIONS(2895), - [anon_sym_is] = ACTIONS(2895), - [anon_sym_BANGis] = ACTIONS(2895), - [anon_sym_in] = ACTIONS(2895), - [anon_sym_BANGin] = ACTIONS(2895), - [anon_sym_match] = ACTIONS(2895), - [anon_sym_select] = ACTIONS(2895), - [anon_sym_lock] = ACTIONS(2895), - [anon_sym_rlock] = ACTIONS(2895), - [anon_sym_unsafe] = ACTIONS(2895), - [anon_sym_sql] = ACTIONS(2895), - [sym_int_literal] = ACTIONS(2895), - [sym_float_literal] = ACTIONS(2895), - [sym_rune_literal] = ACTIONS(2895), - [anon_sym_AT] = ACTIONS(2895), - [anon_sym_shared] = ACTIONS(2895), - [anon_sym_map_LBRACK] = ACTIONS(2895), - [anon_sym_chan] = ACTIONS(2895), - [anon_sym_thread] = ACTIONS(2895), - [anon_sym_atomic] = ACTIONS(2895), - [sym___double_quote] = ACTIONS(2895), - [sym___single_quote] = ACTIONS(2895), - [sym___c_double_quote] = ACTIONS(2895), - [sym___c_single_quote] = ACTIONS(2895), - [sym___r_double_quote] = ACTIONS(2895), - [sym___r_single_quote] = ACTIONS(2895), - }, - [1177] = { - [sym_identifier] = ACTIONS(2989), - [anon_sym_LF] = ACTIONS(2989), - [anon_sym_CR] = ACTIONS(2989), - [anon_sym_CR_LF] = ACTIONS(2989), - [sym_comment] = ACTIONS(487), - [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_PIPE] = ACTIONS(2989), - [anon_sym_fn] = ACTIONS(2989), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2989), - [anon_sym_SLASH] = ACTIONS(2989), - [anon_sym_PERCENT] = ACTIONS(2989), - [anon_sym_LT] = ACTIONS(2989), - [anon_sym_GT] = ACTIONS(2989), - [anon_sym_EQ_EQ] = ACTIONS(2989), - [anon_sym_BANG_EQ] = ACTIONS(2989), - [anon_sym_LT_EQ] = ACTIONS(2989), - [anon_sym_GT_EQ] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_mut] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_go] = ACTIONS(2989), - [anon_sym_spawn] = ACTIONS(2989), - [anon_sym_json_DOTdecode] = ACTIONS(2989), - [anon_sym_LBRACK2] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_CARET] = ACTIONS(2989), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_LT_DASH] = ACTIONS(2989), - [anon_sym_LT_LT] = ACTIONS(2989), - [anon_sym_GT_GT] = ACTIONS(2989), - [anon_sym_GT_GT_GT] = ACTIONS(2989), - [anon_sym_AMP_CARET] = ACTIONS(2989), - [anon_sym_AMP_AMP] = ACTIONS(2989), - [anon_sym_PIPE_PIPE] = ACTIONS(2989), - [anon_sym_or] = ACTIONS(2989), - [sym_none] = ACTIONS(2989), - [sym_true] = ACTIONS(2989), - [sym_false] = ACTIONS(2989), - [sym_nil] = ACTIONS(2989), - [anon_sym_QMARK_DOT] = ACTIONS(2989), - [anon_sym_POUND_LBRACK] = ACTIONS(2989), - [anon_sym_if] = ACTIONS(2989), - [anon_sym_DOLLARif] = ACTIONS(2989), - [anon_sym_is] = ACTIONS(2989), - [anon_sym_BANGis] = ACTIONS(2989), - [anon_sym_in] = ACTIONS(2989), - [anon_sym_BANGin] = ACTIONS(2989), - [anon_sym_match] = ACTIONS(2989), - [anon_sym_select] = ACTIONS(2989), - [anon_sym_lock] = ACTIONS(2989), - [anon_sym_rlock] = ACTIONS(2989), - [anon_sym_unsafe] = ACTIONS(2989), - [anon_sym_sql] = ACTIONS(2989), - [sym_int_literal] = ACTIONS(2989), - [sym_float_literal] = ACTIONS(2989), - [sym_rune_literal] = ACTIONS(2989), - [anon_sym_AT] = ACTIONS(2989), - [anon_sym_shared] = ACTIONS(2989), - [anon_sym_map_LBRACK] = ACTIONS(2989), - [anon_sym_chan] = ACTIONS(2989), - [anon_sym_thread] = ACTIONS(2989), - [anon_sym_atomic] = ACTIONS(2989), - [sym___double_quote] = ACTIONS(2989), - [sym___single_quote] = ACTIONS(2989), - [sym___c_double_quote] = ACTIONS(2989), - [sym___c_single_quote] = ACTIONS(2989), - [sym___r_double_quote] = ACTIONS(2989), - [sym___r_single_quote] = ACTIONS(2989), - }, - [1178] = { - [sym_identifier] = ACTIONS(2704), - [anon_sym_LF] = ACTIONS(2704), - [anon_sym_CR] = ACTIONS(2704), - [anon_sym_CR_LF] = ACTIONS(2704), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2704), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_as] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_COMMA] = ACTIONS(2704), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_SLASH] = ACTIONS(2704), - [anon_sym_PERCENT] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_EQ_EQ] = ACTIONS(2704), - [anon_sym_BANG_EQ] = ACTIONS(2704), - [anon_sym_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_EQ] = ACTIONS(2704), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_mut] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_go] = ACTIONS(2704), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2704), - [anon_sym_LBRACK2] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_CARET] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_LT_DASH] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2704), - [anon_sym_GT_GT] = ACTIONS(2704), - [anon_sym_GT_GT_GT] = ACTIONS(2704), - [anon_sym_AMP_CARET] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_PIPE_PIPE] = ACTIONS(2704), - [anon_sym_or] = ACTIONS(2704), - [sym_none] = ACTIONS(2704), - [sym_true] = ACTIONS(2704), - [sym_false] = ACTIONS(2704), - [sym_nil] = ACTIONS(2704), - [anon_sym_QMARK_DOT] = ACTIONS(2704), - [anon_sym_POUND_LBRACK] = ACTIONS(2704), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_DOLLARif] = ACTIONS(2704), - [anon_sym_is] = ACTIONS(2704), - [anon_sym_BANGis] = ACTIONS(2704), - [anon_sym_in] = ACTIONS(2704), - [anon_sym_BANGin] = ACTIONS(2704), - [anon_sym_match] = ACTIONS(2704), - [anon_sym_select] = ACTIONS(2704), - [anon_sym_lock] = ACTIONS(2704), - [anon_sym_rlock] = ACTIONS(2704), - [anon_sym_unsafe] = ACTIONS(2704), - [anon_sym_sql] = ACTIONS(2704), - [sym_int_literal] = ACTIONS(2704), - [sym_float_literal] = ACTIONS(2704), - [sym_rune_literal] = ACTIONS(2704), - [anon_sym_AT] = ACTIONS(2704), - [anon_sym_shared] = ACTIONS(2704), - [anon_sym_map_LBRACK] = ACTIONS(2704), - [anon_sym_chan] = ACTIONS(2704), - [anon_sym_thread] = ACTIONS(2704), - [anon_sym_atomic] = ACTIONS(2704), - [sym___double_quote] = ACTIONS(2704), - [sym___single_quote] = ACTIONS(2704), - [sym___c_double_quote] = ACTIONS(2704), - [sym___c_single_quote] = ACTIONS(2704), - [sym___r_double_quote] = ACTIONS(2704), - [sym___r_single_quote] = ACTIONS(2704), - }, - [1179] = { - [sym_identifier] = ACTIONS(2891), - [anon_sym_LF] = ACTIONS(2891), - [anon_sym_CR] = ACTIONS(2891), - [anon_sym_CR_LF] = ACTIONS(2891), - [sym_comment] = ACTIONS(487), - [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_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_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_AT] = ACTIONS(2891), - [anon_sym_shared] = ACTIONS(2891), - [anon_sym_map_LBRACK] = ACTIONS(2891), - [anon_sym_chan] = ACTIONS(2891), - [anon_sym_thread] = ACTIONS(2891), - [anon_sym_atomic] = ACTIONS(2891), - [sym___double_quote] = ACTIONS(2891), - [sym___single_quote] = ACTIONS(2891), - [sym___c_double_quote] = ACTIONS(2891), - [sym___c_single_quote] = ACTIONS(2891), - [sym___r_double_quote] = ACTIONS(2891), - [sym___r_single_quote] = ACTIONS(2891), - }, - [1180] = { - [sym_identifier] = ACTIONS(2959), - [anon_sym_LF] = ACTIONS(2959), - [anon_sym_CR] = ACTIONS(2959), - [anon_sym_CR_LF] = ACTIONS(2959), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2959), - [anon_sym_DOT] = ACTIONS(2959), - [anon_sym_as] = ACTIONS(2959), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_COMMA] = ACTIONS(2959), - [anon_sym_RBRACE] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_fn] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_SLASH] = ACTIONS(2959), - [anon_sym_PERCENT] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2959), - [anon_sym_GT] = ACTIONS(2959), - [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(2957), - [anon_sym_struct] = ACTIONS(2959), - [anon_sym_mut] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2959), - [anon_sym_go] = ACTIONS(2959), - [anon_sym_spawn] = ACTIONS(2959), - [anon_sym_json_DOTdecode] = ACTIONS(2959), - [anon_sym_LBRACK2] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2959), - [anon_sym_CARET] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_LT_DASH] = ACTIONS(2959), - [anon_sym_LT_LT] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(2959), - [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(2959), - [sym_none] = ACTIONS(2959), - [sym_true] = ACTIONS(2959), - [sym_false] = ACTIONS(2959), - [sym_nil] = ACTIONS(2959), - [anon_sym_QMARK_DOT] = ACTIONS(2959), - [anon_sym_POUND_LBRACK] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_DOLLARif] = ACTIONS(2959), - [anon_sym_is] = ACTIONS(2959), - [anon_sym_BANGis] = ACTIONS(2959), - [anon_sym_in] = ACTIONS(2959), - [anon_sym_BANGin] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_select] = ACTIONS(2959), - [anon_sym_lock] = ACTIONS(2959), - [anon_sym_rlock] = ACTIONS(2959), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2959), - [sym_int_literal] = ACTIONS(2959), - [sym_float_literal] = ACTIONS(2959), - [sym_rune_literal] = ACTIONS(2959), - [anon_sym_AT] = ACTIONS(2959), - [anon_sym_shared] = ACTIONS(2959), - [anon_sym_map_LBRACK] = ACTIONS(2959), - [anon_sym_chan] = ACTIONS(2959), - [anon_sym_thread] = ACTIONS(2959), - [anon_sym_atomic] = ACTIONS(2959), - [sym___double_quote] = ACTIONS(2959), - [sym___single_quote] = ACTIONS(2959), - [sym___c_double_quote] = ACTIONS(2959), - [sym___c_single_quote] = ACTIONS(2959), - [sym___r_double_quote] = ACTIONS(2959), - [sym___r_single_quote] = ACTIONS(2959), - }, - [1181] = { - [sym_identifier] = ACTIONS(2927), - [anon_sym_LF] = ACTIONS(2927), - [anon_sym_CR] = ACTIONS(2927), - [anon_sym_CR_LF] = ACTIONS(2927), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2927), - [anon_sym_DOT] = ACTIONS(2927), - [anon_sym_as] = ACTIONS(2927), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_COMMA] = ACTIONS(2927), - [anon_sym_RBRACE] = ACTIONS(2927), - [anon_sym_LPAREN] = ACTIONS(2927), - [anon_sym_PIPE] = ACTIONS(2927), - [anon_sym_fn] = ACTIONS(2927), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_SLASH] = ACTIONS(2927), - [anon_sym_PERCENT] = ACTIONS(2927), - [anon_sym_LT] = ACTIONS(2927), - [anon_sym_GT] = ACTIONS(2927), - [anon_sym_EQ_EQ] = ACTIONS(2927), - [anon_sym_BANG_EQ] = ACTIONS(2927), - [anon_sym_LT_EQ] = ACTIONS(2927), - [anon_sym_GT_EQ] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_struct] = ACTIONS(2927), - [anon_sym_mut] = ACTIONS(2927), - [anon_sym_PLUS_PLUS] = ACTIONS(2927), - [anon_sym_DASH_DASH] = ACTIONS(2927), - [anon_sym_QMARK] = ACTIONS(2927), - [anon_sym_BANG] = ACTIONS(2927), - [anon_sym_go] = ACTIONS(2927), - [anon_sym_spawn] = ACTIONS(2927), - [anon_sym_json_DOTdecode] = ACTIONS(2927), - [anon_sym_LBRACK2] = ACTIONS(2927), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_CARET] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2927), - [anon_sym_LT_LT] = ACTIONS(2927), - [anon_sym_GT_GT] = ACTIONS(2927), - [anon_sym_GT_GT_GT] = ACTIONS(2927), - [anon_sym_AMP_CARET] = ACTIONS(2927), - [anon_sym_AMP_AMP] = ACTIONS(2927), - [anon_sym_PIPE_PIPE] = ACTIONS(2927), - [anon_sym_or] = ACTIONS(2927), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_QMARK_DOT] = ACTIONS(2927), - [anon_sym_POUND_LBRACK] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2927), - [anon_sym_DOLLARif] = ACTIONS(2927), - [anon_sym_is] = ACTIONS(2927), - [anon_sym_BANGis] = ACTIONS(2927), - [anon_sym_in] = ACTIONS(2927), - [anon_sym_BANGin] = ACTIONS(2927), - [anon_sym_match] = ACTIONS(2927), - [anon_sym_select] = ACTIONS(2927), - [anon_sym_lock] = ACTIONS(2927), - [anon_sym_rlock] = ACTIONS(2927), - [anon_sym_unsafe] = ACTIONS(2927), - [anon_sym_sql] = ACTIONS(2927), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2927), - [sym_rune_literal] = ACTIONS(2927), - [anon_sym_AT] = ACTIONS(2927), - [anon_sym_shared] = ACTIONS(2927), - [anon_sym_map_LBRACK] = ACTIONS(2927), - [anon_sym_chan] = ACTIONS(2927), - [anon_sym_thread] = ACTIONS(2927), - [anon_sym_atomic] = ACTIONS(2927), - [sym___double_quote] = ACTIONS(2927), - [sym___single_quote] = ACTIONS(2927), - [sym___c_double_quote] = ACTIONS(2927), - [sym___c_single_quote] = ACTIONS(2927), - [sym___r_double_quote] = ACTIONS(2927), - [sym___r_single_quote] = ACTIONS(2927), - }, - [1182] = { - [sym_identifier] = ACTIONS(3049), - [anon_sym_LF] = ACTIONS(3049), - [anon_sym_CR] = ACTIONS(3049), - [anon_sym_CR_LF] = ACTIONS(3049), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_DOT] = ACTIONS(3049), - [anon_sym_as] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(3049), - [anon_sym_fn] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3049), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3049), - [anon_sym_SLASH] = ACTIONS(3049), - [anon_sym_PERCENT] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(3049), - [anon_sym_GT] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3049), - [anon_sym_BANG_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(3049), - [anon_sym_GT_EQ] = ACTIONS(3049), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_struct] = ACTIONS(3049), - [anon_sym_mut] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_QMARK] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3049), - [anon_sym_go] = ACTIONS(3049), - [anon_sym_spawn] = ACTIONS(3049), - [anon_sym_json_DOTdecode] = ACTIONS(3049), - [anon_sym_LBRACK2] = ACTIONS(3049), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_CARET] = ACTIONS(3049), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_LT_DASH] = ACTIONS(3049), - [anon_sym_LT_LT] = ACTIONS(3049), - [anon_sym_GT_GT] = ACTIONS(3049), - [anon_sym_GT_GT_GT] = ACTIONS(3049), - [anon_sym_AMP_CARET] = ACTIONS(3049), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_or] = ACTIONS(3049), - [sym_none] = ACTIONS(3049), - [sym_true] = ACTIONS(3049), - [sym_false] = ACTIONS(3049), - [sym_nil] = ACTIONS(3049), - [anon_sym_QMARK_DOT] = ACTIONS(3049), - [anon_sym_POUND_LBRACK] = ACTIONS(3049), - [anon_sym_if] = ACTIONS(3049), - [anon_sym_DOLLARif] = ACTIONS(3049), - [anon_sym_is] = ACTIONS(3049), - [anon_sym_BANGis] = ACTIONS(3049), - [anon_sym_in] = ACTIONS(3049), - [anon_sym_BANGin] = ACTIONS(3049), - [anon_sym_match] = ACTIONS(3049), - [anon_sym_select] = ACTIONS(3049), - [anon_sym_lock] = ACTIONS(3049), - [anon_sym_rlock] = ACTIONS(3049), - [anon_sym_unsafe] = ACTIONS(3049), - [anon_sym_sql] = ACTIONS(3049), - [sym_int_literal] = ACTIONS(3049), - [sym_float_literal] = ACTIONS(3049), - [sym_rune_literal] = ACTIONS(3049), - [anon_sym_AT] = ACTIONS(3049), - [anon_sym_shared] = ACTIONS(3049), - [anon_sym_map_LBRACK] = ACTIONS(3049), - [anon_sym_chan] = ACTIONS(3049), - [anon_sym_thread] = ACTIONS(3049), - [anon_sym_atomic] = ACTIONS(3049), - [sym___double_quote] = ACTIONS(3049), - [sym___single_quote] = ACTIONS(3049), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3049), - [sym___r_double_quote] = ACTIONS(3049), - [sym___r_single_quote] = ACTIONS(3049), - }, - [1183] = { - [sym_identifier] = ACTIONS(3057), - [anon_sym_LF] = ACTIONS(3057), - [anon_sym_CR] = ACTIONS(3057), - [anon_sym_CR_LF] = ACTIONS(3057), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3057), - [anon_sym_DOT] = ACTIONS(3057), - [anon_sym_as] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3057), - [anon_sym_COMMA] = ACTIONS(3057), - [anon_sym_RBRACE] = ACTIONS(3057), - [anon_sym_LPAREN] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3057), - [anon_sym_fn] = ACTIONS(3057), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3057), - [anon_sym_SLASH] = ACTIONS(3057), - [anon_sym_PERCENT] = ACTIONS(3057), - [anon_sym_LT] = ACTIONS(3057), - [anon_sym_GT] = ACTIONS(3057), - [anon_sym_EQ_EQ] = ACTIONS(3057), - [anon_sym_BANG_EQ] = ACTIONS(3057), - [anon_sym_LT_EQ] = ACTIONS(3057), - [anon_sym_GT_EQ] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_mut] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(3057), - [anon_sym_go] = ACTIONS(3057), - [anon_sym_spawn] = ACTIONS(3057), - [anon_sym_json_DOTdecode] = ACTIONS(3057), - [anon_sym_LBRACK2] = ACTIONS(3057), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_CARET] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_LT_DASH] = ACTIONS(3057), - [anon_sym_LT_LT] = ACTIONS(3057), - [anon_sym_GT_GT] = ACTIONS(3057), - [anon_sym_GT_GT_GT] = ACTIONS(3057), - [anon_sym_AMP_CARET] = ACTIONS(3057), - [anon_sym_AMP_AMP] = ACTIONS(3057), - [anon_sym_PIPE_PIPE] = ACTIONS(3057), - [anon_sym_or] = ACTIONS(3057), - [sym_none] = ACTIONS(3057), - [sym_true] = ACTIONS(3057), - [sym_false] = ACTIONS(3057), - [sym_nil] = ACTIONS(3057), - [anon_sym_QMARK_DOT] = ACTIONS(3057), - [anon_sym_POUND_LBRACK] = ACTIONS(3057), - [anon_sym_if] = ACTIONS(3057), - [anon_sym_DOLLARif] = ACTIONS(3057), - [anon_sym_is] = ACTIONS(3057), - [anon_sym_BANGis] = ACTIONS(3057), - [anon_sym_in] = ACTIONS(3057), - [anon_sym_BANGin] = ACTIONS(3057), - [anon_sym_match] = ACTIONS(3057), - [anon_sym_select] = ACTIONS(3057), - [anon_sym_lock] = ACTIONS(3057), - [anon_sym_rlock] = ACTIONS(3057), - [anon_sym_unsafe] = ACTIONS(3057), - [anon_sym_sql] = ACTIONS(3057), - [sym_int_literal] = ACTIONS(3057), - [sym_float_literal] = ACTIONS(3057), - [sym_rune_literal] = ACTIONS(3057), - [anon_sym_AT] = ACTIONS(3057), - [anon_sym_shared] = ACTIONS(3057), - [anon_sym_map_LBRACK] = ACTIONS(3057), - [anon_sym_chan] = ACTIONS(3057), - [anon_sym_thread] = ACTIONS(3057), - [anon_sym_atomic] = ACTIONS(3057), - [sym___double_quote] = ACTIONS(3057), - [sym___single_quote] = ACTIONS(3057), - [sym___c_double_quote] = ACTIONS(3057), - [sym___c_single_quote] = ACTIONS(3057), - [sym___r_double_quote] = ACTIONS(3057), - [sym___r_single_quote] = ACTIONS(3057), - }, - [1184] = { - [sym_identifier] = ACTIONS(3061), - [anon_sym_LF] = ACTIONS(3061), - [anon_sym_CR] = ACTIONS(3061), - [anon_sym_CR_LF] = ACTIONS(3061), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3061), - [anon_sym_DOT] = ACTIONS(3061), - [anon_sym_as] = ACTIONS(3061), - [anon_sym_LBRACE] = ACTIONS(3061), - [anon_sym_COMMA] = ACTIONS(3061), - [anon_sym_RBRACE] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_fn] = ACTIONS(3061), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_STAR] = ACTIONS(3061), - [anon_sym_SLASH] = ACTIONS(3061), - [anon_sym_PERCENT] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_EQ_EQ] = ACTIONS(3061), - [anon_sym_BANG_EQ] = ACTIONS(3061), - [anon_sym_LT_EQ] = ACTIONS(3061), - [anon_sym_GT_EQ] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(3061), - [anon_sym_mut] = ACTIONS(3061), - [anon_sym_PLUS_PLUS] = ACTIONS(3061), - [anon_sym_DASH_DASH] = ACTIONS(3061), - [anon_sym_QMARK] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3061), - [anon_sym_spawn] = ACTIONS(3061), - [anon_sym_json_DOTdecode] = ACTIONS(3061), - [anon_sym_LBRACK2] = ACTIONS(3061), - [anon_sym_TILDE] = ACTIONS(3061), - [anon_sym_CARET] = ACTIONS(3061), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_LT_DASH] = ACTIONS(3061), - [anon_sym_LT_LT] = ACTIONS(3061), - [anon_sym_GT_GT] = ACTIONS(3061), - [anon_sym_GT_GT_GT] = ACTIONS(3061), - [anon_sym_AMP_CARET] = ACTIONS(3061), - [anon_sym_AMP_AMP] = ACTIONS(3061), - [anon_sym_PIPE_PIPE] = ACTIONS(3061), - [anon_sym_or] = ACTIONS(3061), - [sym_none] = ACTIONS(3061), - [sym_true] = ACTIONS(3061), - [sym_false] = ACTIONS(3061), - [sym_nil] = ACTIONS(3061), - [anon_sym_QMARK_DOT] = ACTIONS(3061), - [anon_sym_POUND_LBRACK] = ACTIONS(3061), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_DOLLARif] = ACTIONS(3061), - [anon_sym_is] = ACTIONS(3061), - [anon_sym_BANGis] = ACTIONS(3061), - [anon_sym_in] = ACTIONS(3061), - [anon_sym_BANGin] = ACTIONS(3061), - [anon_sym_match] = ACTIONS(3061), - [anon_sym_select] = ACTIONS(3061), - [anon_sym_lock] = ACTIONS(3061), - [anon_sym_rlock] = ACTIONS(3061), - [anon_sym_unsafe] = ACTIONS(3061), - [anon_sym_sql] = ACTIONS(3061), - [sym_int_literal] = ACTIONS(3061), - [sym_float_literal] = ACTIONS(3061), - [sym_rune_literal] = ACTIONS(3061), - [anon_sym_AT] = ACTIONS(3061), - [anon_sym_shared] = ACTIONS(3061), - [anon_sym_map_LBRACK] = ACTIONS(3061), - [anon_sym_chan] = ACTIONS(3061), - [anon_sym_thread] = ACTIONS(3061), - [anon_sym_atomic] = ACTIONS(3061), - [sym___double_quote] = ACTIONS(3061), - [sym___single_quote] = ACTIONS(3061), - [sym___c_double_quote] = ACTIONS(3061), - [sym___c_single_quote] = ACTIONS(3061), - [sym___r_double_quote] = ACTIONS(3061), - [sym___r_single_quote] = ACTIONS(3061), - }, - [1185] = { - [sym_identifier] = ACTIONS(3197), - [anon_sym_LF] = ACTIONS(3197), - [anon_sym_CR] = ACTIONS(3197), - [anon_sym_CR_LF] = ACTIONS(3197), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3197), - [anon_sym_DOT] = ACTIONS(3197), - [anon_sym_as] = ACTIONS(3197), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_COMMA] = ACTIONS(3197), - [anon_sym_RBRACE] = ACTIONS(3197), - [anon_sym_LPAREN] = ACTIONS(3197), - [anon_sym_PIPE] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3195), - [anon_sym_struct] = ACTIONS(3197), - [anon_sym_mut] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_DASH_DASH] = ACTIONS(3197), - [anon_sym_QMARK] = ACTIONS(3197), - [anon_sym_BANG] = ACTIONS(3197), - [anon_sym_go] = ACTIONS(3197), - [anon_sym_spawn] = ACTIONS(3197), - [anon_sym_json_DOTdecode] = ACTIONS(3197), - [anon_sym_LBRACK2] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_CARET] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_LT_DASH] = ACTIONS(3197), - [anon_sym_LT_LT] = ACTIONS(3197), - [anon_sym_GT_GT] = ACTIONS(3197), - [anon_sym_GT_GT_GT] = ACTIONS(3197), - [anon_sym_AMP_CARET] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3197), - [sym_none] = ACTIONS(3197), - [sym_true] = ACTIONS(3197), - [sym_false] = ACTIONS(3197), - [sym_nil] = ACTIONS(3197), - [anon_sym_QMARK_DOT] = ACTIONS(3197), - [anon_sym_POUND_LBRACK] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_DOLLARif] = ACTIONS(3197), - [anon_sym_is] = ACTIONS(3197), - [anon_sym_BANGis] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_BANGin] = ACTIONS(3197), - [anon_sym_match] = ACTIONS(3197), - [anon_sym_select] = ACTIONS(3197), - [anon_sym_lock] = ACTIONS(3197), - [anon_sym_rlock] = ACTIONS(3197), - [anon_sym_unsafe] = ACTIONS(3197), - [anon_sym_sql] = ACTIONS(3197), - [sym_int_literal] = ACTIONS(3197), - [sym_float_literal] = ACTIONS(3197), - [sym_rune_literal] = ACTIONS(3197), - [anon_sym_AT] = ACTIONS(3197), - [anon_sym_shared] = ACTIONS(3197), - [anon_sym_map_LBRACK] = ACTIONS(3197), - [anon_sym_chan] = ACTIONS(3197), - [anon_sym_thread] = ACTIONS(3197), - [anon_sym_atomic] = ACTIONS(3197), - [sym___double_quote] = ACTIONS(3197), - [sym___single_quote] = ACTIONS(3197), - [sym___c_double_quote] = ACTIONS(3197), - [sym___c_single_quote] = ACTIONS(3197), - [sym___r_double_quote] = ACTIONS(3197), - [sym___r_single_quote] = ACTIONS(3197), - }, - [1186] = { - [sym_identifier] = ACTIONS(3157), - [anon_sym_LF] = ACTIONS(3157), - [anon_sym_CR] = ACTIONS(3157), - [anon_sym_CR_LF] = ACTIONS(3157), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3157), - [anon_sym_DOT] = ACTIONS(3157), - [anon_sym_as] = ACTIONS(3157), - [anon_sym_LBRACE] = ACTIONS(3157), - [anon_sym_COMMA] = ACTIONS(3157), - [anon_sym_RBRACE] = ACTIONS(3157), - [anon_sym_LPAREN] = ACTIONS(3157), - [anon_sym_PIPE] = ACTIONS(3157), - [anon_sym_fn] = ACTIONS(3157), - [anon_sym_PLUS] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(3157), - [anon_sym_STAR] = ACTIONS(3157), - [anon_sym_SLASH] = ACTIONS(3157), - [anon_sym_PERCENT] = ACTIONS(3157), - [anon_sym_LT] = ACTIONS(3157), - [anon_sym_GT] = ACTIONS(3157), - [anon_sym_EQ_EQ] = ACTIONS(3157), - [anon_sym_BANG_EQ] = ACTIONS(3157), - [anon_sym_LT_EQ] = ACTIONS(3157), - [anon_sym_GT_EQ] = ACTIONS(3157), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3157), - [anon_sym_mut] = ACTIONS(3157), - [anon_sym_PLUS_PLUS] = ACTIONS(3157), - [anon_sym_DASH_DASH] = ACTIONS(3157), - [anon_sym_QMARK] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3157), - [anon_sym_go] = ACTIONS(3157), - [anon_sym_spawn] = ACTIONS(3157), - [anon_sym_json_DOTdecode] = ACTIONS(3157), - [anon_sym_LBRACK2] = ACTIONS(3157), - [anon_sym_TILDE] = ACTIONS(3157), - [anon_sym_CARET] = ACTIONS(3157), - [anon_sym_AMP] = ACTIONS(3157), - [anon_sym_LT_DASH] = ACTIONS(3157), - [anon_sym_LT_LT] = ACTIONS(3157), - [anon_sym_GT_GT] = ACTIONS(3157), - [anon_sym_GT_GT_GT] = ACTIONS(3157), - [anon_sym_AMP_CARET] = ACTIONS(3157), - [anon_sym_AMP_AMP] = ACTIONS(3157), - [anon_sym_PIPE_PIPE] = ACTIONS(3157), - [anon_sym_or] = ACTIONS(3157), - [sym_none] = ACTIONS(3157), - [sym_true] = ACTIONS(3157), - [sym_false] = ACTIONS(3157), - [sym_nil] = ACTIONS(3157), - [anon_sym_QMARK_DOT] = ACTIONS(3157), - [anon_sym_POUND_LBRACK] = ACTIONS(3157), - [anon_sym_if] = ACTIONS(3157), - [anon_sym_DOLLARif] = ACTIONS(3157), - [anon_sym_is] = ACTIONS(3157), - [anon_sym_BANGis] = ACTIONS(3157), - [anon_sym_in] = ACTIONS(3157), - [anon_sym_BANGin] = ACTIONS(3157), - [anon_sym_match] = ACTIONS(3157), - [anon_sym_select] = ACTIONS(3157), - [anon_sym_lock] = ACTIONS(3157), - [anon_sym_rlock] = ACTIONS(3157), - [anon_sym_unsafe] = ACTIONS(3157), - [anon_sym_sql] = ACTIONS(3157), - [sym_int_literal] = ACTIONS(3157), - [sym_float_literal] = ACTIONS(3157), - [sym_rune_literal] = ACTIONS(3157), - [anon_sym_AT] = ACTIONS(3157), - [anon_sym_shared] = ACTIONS(3157), - [anon_sym_map_LBRACK] = ACTIONS(3157), - [anon_sym_chan] = ACTIONS(3157), - [anon_sym_thread] = ACTIONS(3157), - [anon_sym_atomic] = ACTIONS(3157), - [sym___double_quote] = ACTIONS(3157), - [sym___single_quote] = ACTIONS(3157), - [sym___c_double_quote] = ACTIONS(3157), - [sym___c_single_quote] = ACTIONS(3157), - [sym___r_double_quote] = ACTIONS(3157), - [sym___r_single_quote] = ACTIONS(3157), + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2393), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(591), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(589), + [anon_sym_DOT] = ACTIONS(589), + [anon_sym_as] = ACTIONS(593), + [anon_sym_COMMA] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_EQ] = ACTIONS(593), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_STAR] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(593), + [anon_sym_PERCENT] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_EQ_EQ] = ACTIONS(589), + [anon_sym_BANG_EQ] = ACTIONS(589), + [anon_sym_LT_EQ] = ACTIONS(589), + [anon_sym_GT_EQ] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(589), + [anon_sym_struct] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(589), + [anon_sym_DASH_DASH] = ACTIONS(589), + [anon_sym_QMARK] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(3598), + [anon_sym_LBRACK2] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(607), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_GT_GT_GT] = ACTIONS(593), + [anon_sym_AMP_CARET] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_or] = ACTIONS(593), + [anon_sym_QMARK_DOT] = ACTIONS(589), + [anon_sym_POUND_LBRACK] = ACTIONS(589), + [anon_sym_is] = ACTIONS(593), + [anon_sym_BANGis] = ACTIONS(589), + [anon_sym_in] = ACTIONS(593), + [anon_sym_BANGin] = ACTIONS(589), + [anon_sym_STAR_EQ] = ACTIONS(589), + [anon_sym_SLASH_EQ] = ACTIONS(589), + [anon_sym_PERCENT_EQ] = ACTIONS(589), + [anon_sym_LT_LT_EQ] = ACTIONS(589), + [anon_sym_GT_GT_EQ] = ACTIONS(589), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(589), + [anon_sym_AMP_EQ] = ACTIONS(589), + [anon_sym_AMP_CARET_EQ] = ACTIONS(589), + [anon_sym_PLUS_EQ] = ACTIONS(589), + [anon_sym_DASH_EQ] = ACTIONS(589), + [anon_sym_PIPE_EQ] = ACTIONS(589), + [anon_sym_CARET_EQ] = ACTIONS(589), + [anon_sym_COLON_EQ] = ACTIONS(589), + [anon_sym_shared] = ACTIONS(609), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), }, - [1187] = { - [sym_identifier] = ACTIONS(2856), - [anon_sym_LF] = ACTIONS(2856), - [anon_sym_CR] = ACTIONS(2856), - [anon_sym_CR_LF] = ACTIONS(2856), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2856), - [anon_sym_DOT] = ACTIONS(2856), - [anon_sym_as] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2856), - [anon_sym_COMMA] = ACTIONS(2856), - [anon_sym_RBRACE] = ACTIONS(2856), - [anon_sym_LPAREN] = ACTIONS(2856), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_fn] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2856), - [anon_sym_DASH] = ACTIONS(2856), - [anon_sym_STAR] = ACTIONS(2856), - [anon_sym_SLASH] = ACTIONS(2856), - [anon_sym_PERCENT] = ACTIONS(2856), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_GT] = ACTIONS(2856), - [anon_sym_EQ_EQ] = ACTIONS(2856), - [anon_sym_BANG_EQ] = ACTIONS(2856), - [anon_sym_LT_EQ] = ACTIONS(2856), - [anon_sym_GT_EQ] = ACTIONS(2856), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_struct] = ACTIONS(2856), - [anon_sym_mut] = ACTIONS(2856), - [anon_sym_PLUS_PLUS] = ACTIONS(2856), - [anon_sym_DASH_DASH] = ACTIONS(2856), - [anon_sym_QMARK] = ACTIONS(2856), - [anon_sym_BANG] = ACTIONS(2856), - [anon_sym_go] = ACTIONS(2856), - [anon_sym_spawn] = ACTIONS(2856), - [anon_sym_json_DOTdecode] = ACTIONS(2856), - [anon_sym_LBRACK2] = ACTIONS(2856), - [anon_sym_TILDE] = ACTIONS(2856), - [anon_sym_CARET] = ACTIONS(2856), - [anon_sym_AMP] = ACTIONS(2856), - [anon_sym_LT_DASH] = ACTIONS(2856), - [anon_sym_LT_LT] = ACTIONS(2856), - [anon_sym_GT_GT] = ACTIONS(2856), - [anon_sym_GT_GT_GT] = ACTIONS(2856), - [anon_sym_AMP_CARET] = ACTIONS(2856), - [anon_sym_AMP_AMP] = ACTIONS(2856), - [anon_sym_PIPE_PIPE] = ACTIONS(2856), - [anon_sym_or] = ACTIONS(2856), - [sym_none] = ACTIONS(2856), - [sym_true] = ACTIONS(2856), - [sym_false] = ACTIONS(2856), - [sym_nil] = ACTIONS(2856), - [anon_sym_QMARK_DOT] = ACTIONS(2856), - [anon_sym_POUND_LBRACK] = ACTIONS(2856), - [anon_sym_if] = ACTIONS(2856), - [anon_sym_DOLLARif] = ACTIONS(2856), - [anon_sym_is] = ACTIONS(2856), - [anon_sym_BANGis] = ACTIONS(2856), - [anon_sym_in] = ACTIONS(2856), - [anon_sym_BANGin] = ACTIONS(2856), - [anon_sym_match] = ACTIONS(2856), - [anon_sym_select] = ACTIONS(2856), - [anon_sym_lock] = ACTIONS(2856), - [anon_sym_rlock] = ACTIONS(2856), - [anon_sym_unsafe] = ACTIONS(2856), - [anon_sym_sql] = ACTIONS(2856), - [sym_int_literal] = ACTIONS(2856), - [sym_float_literal] = ACTIONS(2856), - [sym_rune_literal] = ACTIONS(2856), - [anon_sym_AT] = ACTIONS(2856), - [anon_sym_shared] = ACTIONS(2856), - [anon_sym_map_LBRACK] = ACTIONS(2856), - [anon_sym_chan] = ACTIONS(2856), - [anon_sym_thread] = ACTIONS(2856), - [anon_sym_atomic] = ACTIONS(2856), - [sym___double_quote] = ACTIONS(2856), - [sym___single_quote] = ACTIONS(2856), - [sym___c_double_quote] = ACTIONS(2856), - [sym___c_single_quote] = ACTIONS(2856), - [sym___r_double_quote] = ACTIONS(2856), - [sym___r_single_quote] = ACTIONS(2856), + [1169] = { + [sym_identifier] = ACTIONS(3014), + [anon_sym_LF] = ACTIONS(3014), + [anon_sym_CR] = ACTIONS(3014), + [anon_sym_CR_LF] = ACTIONS(3014), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3014), + [sym___single_quote] = ACTIONS(3014), + [sym___c_double_quote] = ACTIONS(3014), + [sym___c_single_quote] = ACTIONS(3014), + [sym___r_double_quote] = ACTIONS(3014), + [sym___r_single_quote] = ACTIONS(3014), }, - [1188] = { + [1170] = { [sym_identifier] = ACTIONS(2784), [anon_sym_LF] = ACTIONS(2784), [anon_sym_CR] = ACTIONS(2784), [anon_sym_CR_LF] = ACTIONS(2784), - [sym_comment] = ACTIONS(487), + [sym_comment] = ACTIONS(493), [anon_sym_SEMI] = ACTIONS(2784), [anon_sym_DOT] = ACTIONS(2784), [anon_sym_as] = ACTIONS(2784), @@ -157995,7 +156817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(2784), [anon_sym_LT_EQ] = ACTIONS(2784), [anon_sym_GT_EQ] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym_LBRACK] = ACTIONS(2786), [anon_sym_struct] = ACTIONS(2784), [anon_sym_mut] = ACTIONS(2784), [anon_sym_PLUS_PLUS] = ACTIONS(2784), @@ -158051,6572 +156873,6818 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2784), [sym___r_single_quote] = ACTIONS(2784), }, - [1189] = { - [sym_identifier] = ACTIONS(2844), - [anon_sym_LF] = ACTIONS(2844), - [anon_sym_CR] = ACTIONS(2844), - [anon_sym_CR_LF] = ACTIONS(2844), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2844), - [anon_sym_DOT] = ACTIONS(2844), - [anon_sym_as] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_COMMA] = ACTIONS(2844), - [anon_sym_RBRACE] = ACTIONS(2844), - [anon_sym_LPAREN] = ACTIONS(2844), - [anon_sym_PIPE] = ACTIONS(2844), - [anon_sym_fn] = ACTIONS(2844), - [anon_sym_PLUS] = ACTIONS(2844), - [anon_sym_DASH] = ACTIONS(2844), - [anon_sym_STAR] = ACTIONS(2844), - [anon_sym_SLASH] = ACTIONS(2844), - [anon_sym_PERCENT] = ACTIONS(2844), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_GT] = ACTIONS(2844), - [anon_sym_EQ_EQ] = ACTIONS(2844), - [anon_sym_BANG_EQ] = ACTIONS(2844), - [anon_sym_LT_EQ] = ACTIONS(2844), - [anon_sym_GT_EQ] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_struct] = ACTIONS(2844), - [anon_sym_mut] = ACTIONS(2844), - [anon_sym_PLUS_PLUS] = ACTIONS(2844), - [anon_sym_DASH_DASH] = ACTIONS(2844), - [anon_sym_QMARK] = ACTIONS(2844), - [anon_sym_BANG] = ACTIONS(2844), - [anon_sym_go] = ACTIONS(2844), - [anon_sym_spawn] = ACTIONS(2844), - [anon_sym_json_DOTdecode] = ACTIONS(2844), - [anon_sym_LBRACK2] = ACTIONS(2844), - [anon_sym_TILDE] = ACTIONS(2844), - [anon_sym_CARET] = ACTIONS(2844), - [anon_sym_AMP] = ACTIONS(2844), - [anon_sym_LT_DASH] = ACTIONS(2844), - [anon_sym_LT_LT] = ACTIONS(2844), - [anon_sym_GT_GT] = ACTIONS(2844), - [anon_sym_GT_GT_GT] = ACTIONS(2844), - [anon_sym_AMP_CARET] = ACTIONS(2844), - [anon_sym_AMP_AMP] = ACTIONS(2844), - [anon_sym_PIPE_PIPE] = ACTIONS(2844), - [anon_sym_or] = ACTIONS(2844), - [sym_none] = ACTIONS(2844), - [sym_true] = ACTIONS(2844), - [sym_false] = ACTIONS(2844), - [sym_nil] = ACTIONS(2844), - [anon_sym_QMARK_DOT] = ACTIONS(2844), - [anon_sym_POUND_LBRACK] = ACTIONS(2844), - [anon_sym_if] = ACTIONS(2844), - [anon_sym_DOLLARif] = ACTIONS(2844), - [anon_sym_is] = ACTIONS(2844), - [anon_sym_BANGis] = ACTIONS(2844), - [anon_sym_in] = ACTIONS(2844), - [anon_sym_BANGin] = ACTIONS(2844), - [anon_sym_match] = ACTIONS(2844), - [anon_sym_select] = ACTIONS(2844), - [anon_sym_lock] = ACTIONS(2844), - [anon_sym_rlock] = ACTIONS(2844), - [anon_sym_unsafe] = ACTIONS(2844), - [anon_sym_sql] = ACTIONS(2844), - [sym_int_literal] = ACTIONS(2844), - [sym_float_literal] = ACTIONS(2844), - [sym_rune_literal] = ACTIONS(2844), - [anon_sym_AT] = ACTIONS(2844), - [anon_sym_shared] = ACTIONS(2844), - [anon_sym_map_LBRACK] = ACTIONS(2844), - [anon_sym_chan] = ACTIONS(2844), - [anon_sym_thread] = ACTIONS(2844), - [anon_sym_atomic] = ACTIONS(2844), - [sym___double_quote] = ACTIONS(2844), - [sym___single_quote] = ACTIONS(2844), - [sym___c_double_quote] = ACTIONS(2844), - [sym___c_single_quote] = ACTIONS(2844), - [sym___r_double_quote] = ACTIONS(2844), - [sym___r_single_quote] = ACTIONS(2844), + [1171] = { + [sym_identifier] = ACTIONS(2942), + [anon_sym_LF] = ACTIONS(2942), + [anon_sym_CR] = ACTIONS(2942), + [anon_sym_CR_LF] = ACTIONS(2942), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2942), + [anon_sym_DOT] = ACTIONS(2942), + [anon_sym_as] = ACTIONS(2942), + [anon_sym_LBRACE] = ACTIONS(2942), + [anon_sym_COMMA] = ACTIONS(2942), + [anon_sym_RBRACE] = ACTIONS(2942), + [anon_sym_LPAREN] = ACTIONS(2942), + [anon_sym_PIPE] = ACTIONS(2942), + [anon_sym_fn] = ACTIONS(2942), + [anon_sym_PLUS] = ACTIONS(2942), + [anon_sym_DASH] = ACTIONS(2942), + [anon_sym_STAR] = ACTIONS(2942), + [anon_sym_SLASH] = ACTIONS(2942), + [anon_sym_PERCENT] = ACTIONS(2942), + [anon_sym_LT] = ACTIONS(2942), + [anon_sym_GT] = ACTIONS(2942), + [anon_sym_EQ_EQ] = ACTIONS(2942), + [anon_sym_BANG_EQ] = ACTIONS(2942), + [anon_sym_LT_EQ] = ACTIONS(2942), + [anon_sym_GT_EQ] = ACTIONS(2942), + [anon_sym_LBRACK] = ACTIONS(2940), + [anon_sym_struct] = ACTIONS(2942), + [anon_sym_mut] = ACTIONS(2942), + [anon_sym_PLUS_PLUS] = ACTIONS(2942), + [anon_sym_DASH_DASH] = ACTIONS(2942), + [anon_sym_QMARK] = ACTIONS(2942), + [anon_sym_BANG] = ACTIONS(2942), + [anon_sym_go] = ACTIONS(2942), + [anon_sym_spawn] = ACTIONS(2942), + [anon_sym_json_DOTdecode] = ACTIONS(2942), + [anon_sym_LBRACK2] = ACTIONS(2942), + [anon_sym_TILDE] = ACTIONS(2942), + [anon_sym_CARET] = ACTIONS(2942), + [anon_sym_AMP] = ACTIONS(2942), + [anon_sym_LT_DASH] = ACTIONS(2942), + [anon_sym_LT_LT] = ACTIONS(2942), + [anon_sym_GT_GT] = ACTIONS(2942), + [anon_sym_GT_GT_GT] = ACTIONS(2942), + [anon_sym_AMP_CARET] = ACTIONS(2942), + [anon_sym_AMP_AMP] = ACTIONS(2942), + [anon_sym_PIPE_PIPE] = ACTIONS(2942), + [anon_sym_or] = ACTIONS(2942), + [sym_none] = ACTIONS(2942), + [sym_true] = ACTIONS(2942), + [sym_false] = ACTIONS(2942), + [sym_nil] = ACTIONS(2942), + [anon_sym_QMARK_DOT] = ACTIONS(2942), + [anon_sym_POUND_LBRACK] = ACTIONS(2942), + [anon_sym_if] = ACTIONS(2942), + [anon_sym_DOLLARif] = ACTIONS(2942), + [anon_sym_is] = ACTIONS(2942), + [anon_sym_BANGis] = ACTIONS(2942), + [anon_sym_in] = ACTIONS(2942), + [anon_sym_BANGin] = ACTIONS(2942), + [anon_sym_match] = ACTIONS(2942), + [anon_sym_select] = ACTIONS(2942), + [anon_sym_lock] = ACTIONS(2942), + [anon_sym_rlock] = ACTIONS(2942), + [anon_sym_unsafe] = ACTIONS(2942), + [anon_sym_sql] = ACTIONS(2942), + [sym_int_literal] = ACTIONS(2942), + [sym_float_literal] = ACTIONS(2942), + [sym_rune_literal] = ACTIONS(2942), + [anon_sym_AT] = ACTIONS(2942), + [anon_sym_shared] = ACTIONS(2942), + [anon_sym_map_LBRACK] = ACTIONS(2942), + [anon_sym_chan] = ACTIONS(2942), + [anon_sym_thread] = ACTIONS(2942), + [anon_sym_atomic] = ACTIONS(2942), + [sym___double_quote] = ACTIONS(2942), + [sym___single_quote] = ACTIONS(2942), + [sym___c_double_quote] = ACTIONS(2942), + [sym___c_single_quote] = ACTIONS(2942), + [sym___r_double_quote] = ACTIONS(2942), + [sym___r_single_quote] = ACTIONS(2942), }, - [1190] = { - [sym_identifier] = ACTIONS(2840), - [anon_sym_LF] = ACTIONS(2840), - [anon_sym_CR] = ACTIONS(2840), - [anon_sym_CR_LF] = ACTIONS(2840), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2840), - [anon_sym_DOT] = ACTIONS(2840), - [anon_sym_as] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_COMMA] = ACTIONS(2840), - [anon_sym_RBRACE] = ACTIONS(2840), - [anon_sym_LPAREN] = ACTIONS(2840), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_fn] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SLASH] = ACTIONS(2840), - [anon_sym_PERCENT] = ACTIONS(2840), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_GT] = ACTIONS(2840), - [anon_sym_EQ_EQ] = ACTIONS(2840), - [anon_sym_BANG_EQ] = ACTIONS(2840), - [anon_sym_LT_EQ] = ACTIONS(2840), - [anon_sym_GT_EQ] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_struct] = ACTIONS(2840), - [anon_sym_mut] = ACTIONS(2840), - [anon_sym_PLUS_PLUS] = ACTIONS(2840), - [anon_sym_DASH_DASH] = ACTIONS(2840), - [anon_sym_QMARK] = ACTIONS(2840), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_go] = ACTIONS(2840), - [anon_sym_spawn] = ACTIONS(2840), - [anon_sym_json_DOTdecode] = ACTIONS(2840), - [anon_sym_LBRACK2] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2840), - [anon_sym_CARET] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2840), - [anon_sym_LT_DASH] = ACTIONS(2840), - [anon_sym_LT_LT] = ACTIONS(2840), - [anon_sym_GT_GT] = ACTIONS(2840), - [anon_sym_GT_GT_GT] = ACTIONS(2840), - [anon_sym_AMP_CARET] = ACTIONS(2840), - [anon_sym_AMP_AMP] = ACTIONS(2840), - [anon_sym_PIPE_PIPE] = ACTIONS(2840), - [anon_sym_or] = ACTIONS(2840), - [sym_none] = ACTIONS(2840), - [sym_true] = ACTIONS(2840), - [sym_false] = ACTIONS(2840), - [sym_nil] = ACTIONS(2840), - [anon_sym_QMARK_DOT] = ACTIONS(2840), - [anon_sym_POUND_LBRACK] = ACTIONS(2840), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_DOLLARif] = ACTIONS(2840), - [anon_sym_is] = ACTIONS(2840), - [anon_sym_BANGis] = ACTIONS(2840), - [anon_sym_in] = ACTIONS(2840), - [anon_sym_BANGin] = ACTIONS(2840), - [anon_sym_match] = ACTIONS(2840), - [anon_sym_select] = ACTIONS(2840), - [anon_sym_lock] = ACTIONS(2840), - [anon_sym_rlock] = ACTIONS(2840), - [anon_sym_unsafe] = ACTIONS(2840), - [anon_sym_sql] = ACTIONS(2840), - [sym_int_literal] = ACTIONS(2840), - [sym_float_literal] = ACTIONS(2840), - [sym_rune_literal] = ACTIONS(2840), - [anon_sym_AT] = ACTIONS(2840), - [anon_sym_shared] = ACTIONS(2840), - [anon_sym_map_LBRACK] = ACTIONS(2840), - [anon_sym_chan] = ACTIONS(2840), - [anon_sym_thread] = ACTIONS(2840), - [anon_sym_atomic] = ACTIONS(2840), - [sym___double_quote] = ACTIONS(2840), - [sym___single_quote] = ACTIONS(2840), - [sym___c_double_quote] = ACTIONS(2840), - [sym___c_single_quote] = ACTIONS(2840), - [sym___r_double_quote] = ACTIONS(2840), - [sym___r_single_quote] = ACTIONS(2840), + [1172] = { + [sym_identifier] = ACTIONS(2946), + [anon_sym_LF] = ACTIONS(2946), + [anon_sym_CR] = ACTIONS(2946), + [anon_sym_CR_LF] = ACTIONS(2946), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_DOT] = ACTIONS(2946), + [anon_sym_as] = ACTIONS(2946), + [anon_sym_LBRACE] = ACTIONS(2946), + [anon_sym_COMMA] = ACTIONS(2946), + [anon_sym_RBRACE] = ACTIONS(2946), + [anon_sym_LPAREN] = ACTIONS(2946), + [anon_sym_PIPE] = ACTIONS(2946), + [anon_sym_fn] = ACTIONS(2946), + [anon_sym_PLUS] = ACTIONS(2946), + [anon_sym_DASH] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(2946), + [anon_sym_SLASH] = ACTIONS(2946), + [anon_sym_PERCENT] = ACTIONS(2946), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_GT] = ACTIONS(2946), + [anon_sym_EQ_EQ] = ACTIONS(2946), + [anon_sym_BANG_EQ] = ACTIONS(2946), + [anon_sym_LT_EQ] = ACTIONS(2946), + [anon_sym_GT_EQ] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_struct] = ACTIONS(2946), + [anon_sym_mut] = ACTIONS(2946), + [anon_sym_PLUS_PLUS] = ACTIONS(2946), + [anon_sym_DASH_DASH] = ACTIONS(2946), + [anon_sym_QMARK] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2946), + [anon_sym_go] = ACTIONS(2946), + [anon_sym_spawn] = ACTIONS(2946), + [anon_sym_json_DOTdecode] = ACTIONS(2946), + [anon_sym_LBRACK2] = ACTIONS(2946), + [anon_sym_TILDE] = ACTIONS(2946), + [anon_sym_CARET] = ACTIONS(2946), + [anon_sym_AMP] = ACTIONS(2946), + [anon_sym_LT_DASH] = ACTIONS(2946), + [anon_sym_LT_LT] = ACTIONS(2946), + [anon_sym_GT_GT] = ACTIONS(2946), + [anon_sym_GT_GT_GT] = ACTIONS(2946), + [anon_sym_AMP_CARET] = ACTIONS(2946), + [anon_sym_AMP_AMP] = ACTIONS(2946), + [anon_sym_PIPE_PIPE] = ACTIONS(2946), + [anon_sym_or] = ACTIONS(2946), + [sym_none] = ACTIONS(2946), + [sym_true] = ACTIONS(2946), + [sym_false] = ACTIONS(2946), + [sym_nil] = ACTIONS(2946), + [anon_sym_QMARK_DOT] = ACTIONS(2946), + [anon_sym_POUND_LBRACK] = ACTIONS(2946), + [anon_sym_if] = ACTIONS(2946), + [anon_sym_DOLLARif] = ACTIONS(2946), + [anon_sym_is] = ACTIONS(2946), + [anon_sym_BANGis] = ACTIONS(2946), + [anon_sym_in] = ACTIONS(2946), + [anon_sym_BANGin] = ACTIONS(2946), + [anon_sym_match] = ACTIONS(2946), + [anon_sym_select] = ACTIONS(2946), + [anon_sym_lock] = ACTIONS(2946), + [anon_sym_rlock] = ACTIONS(2946), + [anon_sym_unsafe] = ACTIONS(2946), + [anon_sym_sql] = ACTIONS(2946), + [sym_int_literal] = ACTIONS(2946), + [sym_float_literal] = ACTIONS(2946), + [sym_rune_literal] = ACTIONS(2946), + [anon_sym_AT] = ACTIONS(2946), + [anon_sym_shared] = ACTIONS(2946), + [anon_sym_map_LBRACK] = ACTIONS(2946), + [anon_sym_chan] = ACTIONS(2946), + [anon_sym_thread] = ACTIONS(2946), + [anon_sym_atomic] = ACTIONS(2946), + [sym___double_quote] = ACTIONS(2946), + [sym___single_quote] = ACTIONS(2946), + [sym___c_double_quote] = ACTIONS(2946), + [sym___c_single_quote] = ACTIONS(2946), + [sym___r_double_quote] = ACTIONS(2946), + [sym___r_single_quote] = ACTIONS(2946), }, - [1191] = { - [sym_identifier] = ACTIONS(3033), - [anon_sym_LF] = ACTIONS(3033), - [anon_sym_CR] = ACTIONS(3033), - [anon_sym_CR_LF] = ACTIONS(3033), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym_DOT] = ACTIONS(3033), - [anon_sym_as] = ACTIONS(3033), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3033), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_PIPE] = ACTIONS(3033), - [anon_sym_fn] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_SLASH] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3033), - [anon_sym_EQ_EQ] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(3033), - [anon_sym_LT_EQ] = ACTIONS(3033), - [anon_sym_GT_EQ] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(3033), - [anon_sym_mut] = ACTIONS(3033), - [anon_sym_PLUS_PLUS] = ACTIONS(3033), - [anon_sym_DASH_DASH] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3033), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_go] = ACTIONS(3033), - [anon_sym_spawn] = ACTIONS(3033), - [anon_sym_json_DOTdecode] = ACTIONS(3033), - [anon_sym_LBRACK2] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3033), - [anon_sym_CARET] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3033), - [anon_sym_LT_LT] = ACTIONS(3033), - [anon_sym_GT_GT] = ACTIONS(3033), - [anon_sym_GT_GT_GT] = ACTIONS(3033), - [anon_sym_AMP_CARET] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [anon_sym_or] = ACTIONS(3033), - [sym_none] = ACTIONS(3033), - [sym_true] = ACTIONS(3033), - [sym_false] = ACTIONS(3033), - [sym_nil] = ACTIONS(3033), - [anon_sym_QMARK_DOT] = ACTIONS(3033), - [anon_sym_POUND_LBRACK] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_DOLLARif] = ACTIONS(3033), - [anon_sym_is] = ACTIONS(3033), - [anon_sym_BANGis] = ACTIONS(3033), - [anon_sym_in] = ACTIONS(3033), - [anon_sym_BANGin] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_select] = ACTIONS(3033), - [anon_sym_lock] = ACTIONS(3033), - [anon_sym_rlock] = ACTIONS(3033), - [anon_sym_unsafe] = ACTIONS(3033), - [anon_sym_sql] = ACTIONS(3033), - [sym_int_literal] = ACTIONS(3033), - [sym_float_literal] = ACTIONS(3033), - [sym_rune_literal] = ACTIONS(3033), - [anon_sym_AT] = ACTIONS(3033), - [anon_sym_shared] = ACTIONS(3033), - [anon_sym_map_LBRACK] = ACTIONS(3033), - [anon_sym_chan] = ACTIONS(3033), - [anon_sym_thread] = ACTIONS(3033), - [anon_sym_atomic] = ACTIONS(3033), - [sym___double_quote] = ACTIONS(3033), - [sym___single_quote] = ACTIONS(3033), - [sym___c_double_quote] = ACTIONS(3033), - [sym___c_single_quote] = ACTIONS(3033), - [sym___r_double_quote] = ACTIONS(3033), - [sym___r_single_quote] = ACTIONS(3033), + [1173] = { + [sym_identifier] = ACTIONS(2694), + [anon_sym_LF] = ACTIONS(2694), + [anon_sym_CR] = ACTIONS(2694), + [anon_sym_CR_LF] = ACTIONS(2694), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2694), + [anon_sym_DOT] = ACTIONS(2694), + [anon_sym_as] = ACTIONS(2694), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_COMMA] = ACTIONS(2694), + [anon_sym_RBRACE] = ACTIONS(2694), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym_PIPE] = ACTIONS(2694), + [anon_sym_fn] = ACTIONS(2694), + [anon_sym_PLUS] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(2694), + [anon_sym_SLASH] = ACTIONS(2694), + [anon_sym_PERCENT] = ACTIONS(2694), + [anon_sym_LT] = ACTIONS(2694), + [anon_sym_GT] = ACTIONS(2694), + [anon_sym_EQ_EQ] = ACTIONS(2694), + [anon_sym_BANG_EQ] = ACTIONS(2694), + [anon_sym_LT_EQ] = ACTIONS(2694), + [anon_sym_GT_EQ] = ACTIONS(2694), + [anon_sym_LBRACK] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2694), + [anon_sym_mut] = ACTIONS(2694), + [anon_sym_PLUS_PLUS] = ACTIONS(2694), + [anon_sym_DASH_DASH] = ACTIONS(2694), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_BANG] = ACTIONS(2694), + [anon_sym_go] = ACTIONS(2694), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2694), + [anon_sym_LBRACK2] = ACTIONS(2694), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_CARET] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2694), + [anon_sym_LT_DASH] = ACTIONS(2694), + [anon_sym_LT_LT] = ACTIONS(2694), + [anon_sym_GT_GT] = ACTIONS(2694), + [anon_sym_GT_GT_GT] = ACTIONS(2694), + [anon_sym_AMP_CARET] = ACTIONS(2694), + [anon_sym_AMP_AMP] = ACTIONS(2694), + [anon_sym_PIPE_PIPE] = ACTIONS(2694), + [anon_sym_or] = ACTIONS(2694), + [sym_none] = ACTIONS(2694), + [sym_true] = ACTIONS(2694), + [sym_false] = ACTIONS(2694), + [sym_nil] = ACTIONS(2694), + [anon_sym_QMARK_DOT] = ACTIONS(2694), + [anon_sym_POUND_LBRACK] = ACTIONS(2694), + [anon_sym_if] = ACTIONS(2694), + [anon_sym_DOLLARif] = ACTIONS(2694), + [anon_sym_is] = ACTIONS(2694), + [anon_sym_BANGis] = ACTIONS(2694), + [anon_sym_in] = ACTIONS(2694), + [anon_sym_BANGin] = ACTIONS(2694), + [anon_sym_match] = ACTIONS(2694), + [anon_sym_select] = ACTIONS(2694), + [anon_sym_lock] = ACTIONS(2694), + [anon_sym_rlock] = ACTIONS(2694), + [anon_sym_unsafe] = ACTIONS(2694), + [anon_sym_sql] = ACTIONS(2694), + [sym_int_literal] = ACTIONS(2694), + [sym_float_literal] = ACTIONS(2694), + [sym_rune_literal] = ACTIONS(2694), + [anon_sym_AT] = ACTIONS(2694), + [anon_sym_shared] = ACTIONS(2694), + [anon_sym_map_LBRACK] = ACTIONS(2694), + [anon_sym_chan] = ACTIONS(2694), + [anon_sym_thread] = ACTIONS(2694), + [anon_sym_atomic] = ACTIONS(2694), + [sym___double_quote] = ACTIONS(2694), + [sym___single_quote] = ACTIONS(2694), + [sym___c_double_quote] = ACTIONS(2694), + [sym___c_single_quote] = ACTIONS(2694), + [sym___r_double_quote] = ACTIONS(2694), + [sym___r_single_quote] = ACTIONS(2694), }, - [1192] = { - [sym_identifier] = ACTIONS(3037), - [anon_sym_LF] = ACTIONS(3037), - [anon_sym_CR] = ACTIONS(3037), - [anon_sym_CR_LF] = ACTIONS(3037), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_as] = ACTIONS(3037), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3037), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3037), - [anon_sym_fn] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_STAR] = ACTIONS(3037), - [anon_sym_SLASH] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(3037), - [anon_sym_GT] = ACTIONS(3037), - [anon_sym_EQ_EQ] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_LT_EQ] = ACTIONS(3037), - [anon_sym_GT_EQ] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_struct] = ACTIONS(3037), - [anon_sym_mut] = ACTIONS(3037), - [anon_sym_PLUS_PLUS] = ACTIONS(3037), - [anon_sym_DASH_DASH] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_BANG] = ACTIONS(3037), - [anon_sym_go] = ACTIONS(3037), - [anon_sym_spawn] = ACTIONS(3037), - [anon_sym_json_DOTdecode] = ACTIONS(3037), - [anon_sym_LBRACK2] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3037), - [anon_sym_CARET] = ACTIONS(3037), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_LT_LT] = ACTIONS(3037), - [anon_sym_GT_GT] = ACTIONS(3037), - [anon_sym_GT_GT_GT] = ACTIONS(3037), - [anon_sym_AMP_CARET] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_or] = ACTIONS(3037), - [sym_none] = ACTIONS(3037), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [sym_nil] = ACTIONS(3037), - [anon_sym_QMARK_DOT] = ACTIONS(3037), - [anon_sym_POUND_LBRACK] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_DOLLARif] = ACTIONS(3037), - [anon_sym_is] = ACTIONS(3037), - [anon_sym_BANGis] = ACTIONS(3037), - [anon_sym_in] = ACTIONS(3037), - [anon_sym_BANGin] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_select] = ACTIONS(3037), - [anon_sym_lock] = ACTIONS(3037), - [anon_sym_rlock] = ACTIONS(3037), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3037), - [sym_int_literal] = ACTIONS(3037), - [sym_float_literal] = ACTIONS(3037), - [sym_rune_literal] = ACTIONS(3037), - [anon_sym_AT] = ACTIONS(3037), - [anon_sym_shared] = ACTIONS(3037), - [anon_sym_map_LBRACK] = ACTIONS(3037), - [anon_sym_chan] = ACTIONS(3037), - [anon_sym_thread] = ACTIONS(3037), - [anon_sym_atomic] = ACTIONS(3037), - [sym___double_quote] = ACTIONS(3037), - [sym___single_quote] = ACTIONS(3037), - [sym___c_double_quote] = ACTIONS(3037), - [sym___c_single_quote] = ACTIONS(3037), - [sym___r_double_quote] = ACTIONS(3037), - [sym___r_single_quote] = ACTIONS(3037), + [1174] = { + [sym_identifier] = ACTIONS(2950), + [anon_sym_LF] = ACTIONS(2950), + [anon_sym_CR] = ACTIONS(2950), + [anon_sym_CR_LF] = ACTIONS(2950), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_DOT] = ACTIONS(2950), + [anon_sym_as] = ACTIONS(2950), + [anon_sym_LBRACE] = ACTIONS(2950), + [anon_sym_COMMA] = ACTIONS(2950), + [anon_sym_RBRACE] = ACTIONS(2950), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_fn] = ACTIONS(2950), + [anon_sym_PLUS] = ACTIONS(2950), + [anon_sym_DASH] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(2950), + [anon_sym_SLASH] = ACTIONS(2950), + [anon_sym_PERCENT] = ACTIONS(2950), + [anon_sym_LT] = ACTIONS(2950), + [anon_sym_GT] = ACTIONS(2950), + [anon_sym_EQ_EQ] = ACTIONS(2950), + [anon_sym_BANG_EQ] = ACTIONS(2950), + [anon_sym_LT_EQ] = ACTIONS(2950), + [anon_sym_GT_EQ] = ACTIONS(2950), + [anon_sym_LBRACK] = ACTIONS(2948), + [anon_sym_struct] = ACTIONS(2950), + [anon_sym_mut] = ACTIONS(2950), + [anon_sym_PLUS_PLUS] = ACTIONS(2950), + [anon_sym_DASH_DASH] = ACTIONS(2950), + [anon_sym_QMARK] = ACTIONS(2950), + [anon_sym_BANG] = ACTIONS(2950), + [anon_sym_go] = ACTIONS(2950), + [anon_sym_spawn] = ACTIONS(2950), + [anon_sym_json_DOTdecode] = ACTIONS(2950), + [anon_sym_LBRACK2] = ACTIONS(2950), + [anon_sym_TILDE] = ACTIONS(2950), + [anon_sym_CARET] = ACTIONS(2950), + [anon_sym_AMP] = ACTIONS(2950), + [anon_sym_LT_DASH] = ACTIONS(2950), + [anon_sym_LT_LT] = ACTIONS(2950), + [anon_sym_GT_GT] = ACTIONS(2950), + [anon_sym_GT_GT_GT] = ACTIONS(2950), + [anon_sym_AMP_CARET] = ACTIONS(2950), + [anon_sym_AMP_AMP] = ACTIONS(2950), + [anon_sym_PIPE_PIPE] = ACTIONS(2950), + [anon_sym_or] = ACTIONS(2950), + [sym_none] = ACTIONS(2950), + [sym_true] = ACTIONS(2950), + [sym_false] = ACTIONS(2950), + [sym_nil] = ACTIONS(2950), + [anon_sym_QMARK_DOT] = ACTIONS(2950), + [anon_sym_POUND_LBRACK] = ACTIONS(2950), + [anon_sym_if] = ACTIONS(2950), + [anon_sym_DOLLARif] = ACTIONS(2950), + [anon_sym_is] = ACTIONS(2950), + [anon_sym_BANGis] = ACTIONS(2950), + [anon_sym_in] = ACTIONS(2950), + [anon_sym_BANGin] = ACTIONS(2950), + [anon_sym_match] = ACTIONS(2950), + [anon_sym_select] = ACTIONS(2950), + [anon_sym_lock] = ACTIONS(2950), + [anon_sym_rlock] = ACTIONS(2950), + [anon_sym_unsafe] = ACTIONS(2950), + [anon_sym_sql] = ACTIONS(2950), + [sym_int_literal] = ACTIONS(2950), + [sym_float_literal] = ACTIONS(2950), + [sym_rune_literal] = ACTIONS(2950), + [anon_sym_AT] = ACTIONS(2950), + [anon_sym_shared] = ACTIONS(2950), + [anon_sym_map_LBRACK] = ACTIONS(2950), + [anon_sym_chan] = ACTIONS(2950), + [anon_sym_thread] = ACTIONS(2950), + [anon_sym_atomic] = ACTIONS(2950), + [sym___double_quote] = ACTIONS(2950), + [sym___single_quote] = ACTIONS(2950), + [sym___c_double_quote] = ACTIONS(2950), + [sym___c_single_quote] = ACTIONS(2950), + [sym___r_double_quote] = ACTIONS(2950), + [sym___r_single_quote] = ACTIONS(2950), }, - [1193] = { - [sym_identifier] = ACTIONS(3045), - [anon_sym_LF] = ACTIONS(3045), - [anon_sym_CR] = ACTIONS(3045), - [anon_sym_CR_LF] = ACTIONS(3045), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3045), - [anon_sym_as] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3045), - [anon_sym_PIPE] = ACTIONS(3045), - [anon_sym_fn] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3045), - [anon_sym_SLASH] = ACTIONS(3045), - [anon_sym_PERCENT] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(3045), - [anon_sym_GT] = ACTIONS(3045), - [anon_sym_EQ_EQ] = ACTIONS(3045), - [anon_sym_BANG_EQ] = ACTIONS(3045), - [anon_sym_LT_EQ] = ACTIONS(3045), - [anon_sym_GT_EQ] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_struct] = ACTIONS(3045), - [anon_sym_mut] = ACTIONS(3045), - [anon_sym_PLUS_PLUS] = ACTIONS(3045), - [anon_sym_DASH_DASH] = ACTIONS(3045), - [anon_sym_QMARK] = ACTIONS(3045), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_go] = ACTIONS(3045), - [anon_sym_spawn] = ACTIONS(3045), - [anon_sym_json_DOTdecode] = ACTIONS(3045), - [anon_sym_LBRACK2] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_CARET] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3045), - [anon_sym_LT_DASH] = ACTIONS(3045), - [anon_sym_LT_LT] = ACTIONS(3045), - [anon_sym_GT_GT] = ACTIONS(3045), - [anon_sym_GT_GT_GT] = ACTIONS(3045), - [anon_sym_AMP_CARET] = ACTIONS(3045), - [anon_sym_AMP_AMP] = ACTIONS(3045), - [anon_sym_PIPE_PIPE] = ACTIONS(3045), - [anon_sym_or] = ACTIONS(3045), - [sym_none] = ACTIONS(3045), - [sym_true] = ACTIONS(3045), - [sym_false] = ACTIONS(3045), - [sym_nil] = ACTIONS(3045), - [anon_sym_QMARK_DOT] = ACTIONS(3045), - [anon_sym_POUND_LBRACK] = ACTIONS(3045), - [anon_sym_if] = ACTIONS(3045), - [anon_sym_DOLLARif] = ACTIONS(3045), - [anon_sym_is] = ACTIONS(3045), - [anon_sym_BANGis] = ACTIONS(3045), - [anon_sym_in] = ACTIONS(3045), - [anon_sym_BANGin] = ACTIONS(3045), - [anon_sym_match] = ACTIONS(3045), - [anon_sym_select] = ACTIONS(3045), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(3045), - [anon_sym_sql] = ACTIONS(3045), - [sym_int_literal] = ACTIONS(3045), - [sym_float_literal] = ACTIONS(3045), - [sym_rune_literal] = ACTIONS(3045), - [anon_sym_AT] = ACTIONS(3045), - [anon_sym_shared] = ACTIONS(3045), - [anon_sym_map_LBRACK] = ACTIONS(3045), - [anon_sym_chan] = ACTIONS(3045), - [anon_sym_thread] = ACTIONS(3045), - [anon_sym_atomic] = ACTIONS(3045), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3045), - [sym___c_double_quote] = ACTIONS(3045), - [sym___c_single_quote] = ACTIONS(3045), - [sym___r_double_quote] = ACTIONS(3045), - [sym___r_single_quote] = ACTIONS(3045), + [1175] = { + [sym_identifier] = ACTIONS(2954), + [anon_sym_LF] = ACTIONS(2954), + [anon_sym_CR] = ACTIONS(2954), + [anon_sym_CR_LF] = ACTIONS(2954), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2954), + [anon_sym_DOT] = ACTIONS(2954), + [anon_sym_as] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2954), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_RBRACE] = ACTIONS(2954), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(2954), + [anon_sym_fn] = ACTIONS(2954), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_SLASH] = ACTIONS(2954), + [anon_sym_PERCENT] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_GT] = ACTIONS(2954), + [anon_sym_EQ_EQ] = ACTIONS(2954), + [anon_sym_BANG_EQ] = ACTIONS(2954), + [anon_sym_LT_EQ] = ACTIONS(2954), + [anon_sym_GT_EQ] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2952), + [anon_sym_struct] = ACTIONS(2954), + [anon_sym_mut] = ACTIONS(2954), + [anon_sym_PLUS_PLUS] = ACTIONS(2954), + [anon_sym_DASH_DASH] = ACTIONS(2954), + [anon_sym_QMARK] = ACTIONS(2954), + [anon_sym_BANG] = ACTIONS(2954), + [anon_sym_go] = ACTIONS(2954), + [anon_sym_spawn] = ACTIONS(2954), + [anon_sym_json_DOTdecode] = ACTIONS(2954), + [anon_sym_LBRACK2] = ACTIONS(2954), + [anon_sym_TILDE] = ACTIONS(2954), + [anon_sym_CARET] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_LT_DASH] = ACTIONS(2954), + [anon_sym_LT_LT] = ACTIONS(2954), + [anon_sym_GT_GT] = ACTIONS(2954), + [anon_sym_GT_GT_GT] = ACTIONS(2954), + [anon_sym_AMP_CARET] = ACTIONS(2954), + [anon_sym_AMP_AMP] = ACTIONS(2954), + [anon_sym_PIPE_PIPE] = ACTIONS(2954), + [anon_sym_or] = ACTIONS(2954), + [sym_none] = ACTIONS(2954), + [sym_true] = ACTIONS(2954), + [sym_false] = ACTIONS(2954), + [sym_nil] = ACTIONS(2954), + [anon_sym_QMARK_DOT] = ACTIONS(2954), + [anon_sym_POUND_LBRACK] = ACTIONS(2954), + [anon_sym_if] = ACTIONS(2954), + [anon_sym_DOLLARif] = ACTIONS(2954), + [anon_sym_is] = ACTIONS(2954), + [anon_sym_BANGis] = ACTIONS(2954), + [anon_sym_in] = ACTIONS(2954), + [anon_sym_BANGin] = ACTIONS(2954), + [anon_sym_match] = ACTIONS(2954), + [anon_sym_select] = ACTIONS(2954), + [anon_sym_lock] = ACTIONS(2954), + [anon_sym_rlock] = ACTIONS(2954), + [anon_sym_unsafe] = ACTIONS(2954), + [anon_sym_sql] = ACTIONS(2954), + [sym_int_literal] = ACTIONS(2954), + [sym_float_literal] = ACTIONS(2954), + [sym_rune_literal] = ACTIONS(2954), + [anon_sym_AT] = ACTIONS(2954), + [anon_sym_shared] = ACTIONS(2954), + [anon_sym_map_LBRACK] = ACTIONS(2954), + [anon_sym_chan] = ACTIONS(2954), + [anon_sym_thread] = ACTIONS(2954), + [anon_sym_atomic] = ACTIONS(2954), + [sym___double_quote] = ACTIONS(2954), + [sym___single_quote] = ACTIONS(2954), + [sym___c_double_quote] = ACTIONS(2954), + [sym___c_single_quote] = ACTIONS(2954), + [sym___r_double_quote] = ACTIONS(2954), + [sym___r_single_quote] = ACTIONS(2954), }, - [1194] = { - [sym_identifier] = ACTIONS(3053), - [anon_sym_LF] = ACTIONS(3053), - [anon_sym_CR] = ACTIONS(3053), - [anon_sym_CR_LF] = ACTIONS(3053), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym_DOT] = ACTIONS(3053), - [anon_sym_as] = ACTIONS(3053), - [anon_sym_LBRACE] = ACTIONS(3053), - [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym_PIPE] = ACTIONS(3053), - [anon_sym_fn] = ACTIONS(3053), - [anon_sym_PLUS] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3053), - [anon_sym_STAR] = ACTIONS(3053), - [anon_sym_SLASH] = ACTIONS(3053), - [anon_sym_PERCENT] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(3053), - [anon_sym_GT] = ACTIONS(3053), - [anon_sym_EQ_EQ] = ACTIONS(3053), - [anon_sym_BANG_EQ] = ACTIONS(3053), - [anon_sym_LT_EQ] = ACTIONS(3053), - [anon_sym_GT_EQ] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3051), - [anon_sym_struct] = ACTIONS(3053), - [anon_sym_mut] = ACTIONS(3053), - [anon_sym_PLUS_PLUS] = ACTIONS(3053), - [anon_sym_DASH_DASH] = ACTIONS(3053), - [anon_sym_QMARK] = ACTIONS(3053), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_go] = ACTIONS(3053), - [anon_sym_spawn] = ACTIONS(3053), - [anon_sym_json_DOTdecode] = ACTIONS(3053), - [anon_sym_LBRACK2] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_CARET] = ACTIONS(3053), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_LT_DASH] = ACTIONS(3053), - [anon_sym_LT_LT] = ACTIONS(3053), - [anon_sym_GT_GT] = ACTIONS(3053), - [anon_sym_GT_GT_GT] = ACTIONS(3053), - [anon_sym_AMP_CARET] = ACTIONS(3053), - [anon_sym_AMP_AMP] = ACTIONS(3053), - [anon_sym_PIPE_PIPE] = ACTIONS(3053), - [anon_sym_or] = ACTIONS(3053), - [sym_none] = ACTIONS(3053), - [sym_true] = ACTIONS(3053), - [sym_false] = ACTIONS(3053), - [sym_nil] = ACTIONS(3053), - [anon_sym_QMARK_DOT] = ACTIONS(3053), - [anon_sym_POUND_LBRACK] = ACTIONS(3053), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_DOLLARif] = ACTIONS(3053), - [anon_sym_is] = ACTIONS(3053), - [anon_sym_BANGis] = ACTIONS(3053), - [anon_sym_in] = ACTIONS(3053), - [anon_sym_BANGin] = ACTIONS(3053), - [anon_sym_match] = ACTIONS(3053), - [anon_sym_select] = ACTIONS(3053), - [anon_sym_lock] = ACTIONS(3053), - [anon_sym_rlock] = ACTIONS(3053), - [anon_sym_unsafe] = ACTIONS(3053), - [anon_sym_sql] = ACTIONS(3053), - [sym_int_literal] = ACTIONS(3053), - [sym_float_literal] = ACTIONS(3053), - [sym_rune_literal] = ACTIONS(3053), - [anon_sym_AT] = ACTIONS(3053), - [anon_sym_shared] = ACTIONS(3053), - [anon_sym_map_LBRACK] = ACTIONS(3053), - [anon_sym_chan] = ACTIONS(3053), - [anon_sym_thread] = ACTIONS(3053), - [anon_sym_atomic] = ACTIONS(3053), - [sym___double_quote] = ACTIONS(3053), - [sym___single_quote] = ACTIONS(3053), - [sym___c_double_quote] = ACTIONS(3053), - [sym___c_single_quote] = ACTIONS(3053), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3053), + [1176] = { + [sym_identifier] = ACTIONS(2842), + [anon_sym_LF] = ACTIONS(2842), + [anon_sym_CR] = ACTIONS(2842), + [anon_sym_CR_LF] = ACTIONS(2842), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2842), + [anon_sym_DOT] = ACTIONS(2842), + [anon_sym_as] = ACTIONS(2842), + [anon_sym_LBRACE] = ACTIONS(2842), + [anon_sym_COMMA] = ACTIONS(2842), + [anon_sym_RBRACE] = ACTIONS(2842), + [anon_sym_LPAREN] = ACTIONS(2842), + [anon_sym_PIPE] = ACTIONS(2842), + [anon_sym_fn] = ACTIONS(2842), + [anon_sym_PLUS] = ACTIONS(2842), + [anon_sym_DASH] = ACTIONS(2842), + [anon_sym_STAR] = ACTIONS(2842), + [anon_sym_SLASH] = ACTIONS(2842), + [anon_sym_PERCENT] = ACTIONS(2842), + [anon_sym_LT] = ACTIONS(2842), + [anon_sym_GT] = ACTIONS(2842), + [anon_sym_EQ_EQ] = ACTIONS(2842), + [anon_sym_BANG_EQ] = ACTIONS(2842), + [anon_sym_LT_EQ] = ACTIONS(2842), + [anon_sym_GT_EQ] = ACTIONS(2842), + [anon_sym_LBRACK] = ACTIONS(2840), + [anon_sym_struct] = ACTIONS(2842), + [anon_sym_mut] = ACTIONS(2842), + [anon_sym_PLUS_PLUS] = ACTIONS(2842), + [anon_sym_DASH_DASH] = ACTIONS(2842), + [anon_sym_QMARK] = ACTIONS(2842), + [anon_sym_BANG] = ACTIONS(2842), + [anon_sym_go] = ACTIONS(2842), + [anon_sym_spawn] = ACTIONS(2842), + [anon_sym_json_DOTdecode] = ACTIONS(2842), + [anon_sym_LBRACK2] = ACTIONS(2842), + [anon_sym_TILDE] = ACTIONS(2842), + [anon_sym_CARET] = ACTIONS(2842), + [anon_sym_AMP] = ACTIONS(2842), + [anon_sym_LT_DASH] = ACTIONS(2842), + [anon_sym_LT_LT] = ACTIONS(2842), + [anon_sym_GT_GT] = ACTIONS(2842), + [anon_sym_GT_GT_GT] = ACTIONS(2842), + [anon_sym_AMP_CARET] = ACTIONS(2842), + [anon_sym_AMP_AMP] = ACTIONS(2842), + [anon_sym_PIPE_PIPE] = ACTIONS(2842), + [anon_sym_or] = ACTIONS(2842), + [sym_none] = ACTIONS(2842), + [sym_true] = ACTIONS(2842), + [sym_false] = ACTIONS(2842), + [sym_nil] = ACTIONS(2842), + [anon_sym_QMARK_DOT] = ACTIONS(2842), + [anon_sym_POUND_LBRACK] = ACTIONS(2842), + [anon_sym_if] = ACTIONS(2842), + [anon_sym_DOLLARif] = ACTIONS(2842), + [anon_sym_is] = ACTIONS(2842), + [anon_sym_BANGis] = ACTIONS(2842), + [anon_sym_in] = ACTIONS(2842), + [anon_sym_BANGin] = ACTIONS(2842), + [anon_sym_match] = ACTIONS(2842), + [anon_sym_select] = ACTIONS(2842), + [anon_sym_lock] = ACTIONS(2842), + [anon_sym_rlock] = ACTIONS(2842), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2842), + [sym_int_literal] = ACTIONS(2842), + [sym_float_literal] = ACTIONS(2842), + [sym_rune_literal] = ACTIONS(2842), + [anon_sym_AT] = ACTIONS(2842), + [anon_sym_shared] = ACTIONS(2842), + [anon_sym_map_LBRACK] = ACTIONS(2842), + [anon_sym_chan] = ACTIONS(2842), + [anon_sym_thread] = ACTIONS(2842), + [anon_sym_atomic] = ACTIONS(2842), + [sym___double_quote] = ACTIONS(2842), + [sym___single_quote] = ACTIONS(2842), + [sym___c_double_quote] = ACTIONS(2842), + [sym___c_single_quote] = ACTIONS(2842), + [sym___r_double_quote] = ACTIONS(2842), + [sym___r_single_quote] = ACTIONS(2842), }, - [1195] = { - [sym_identifier] = ACTIONS(3065), - [anon_sym_LF] = ACTIONS(3065), - [anon_sym_CR] = ACTIONS(3065), - [anon_sym_CR_LF] = ACTIONS(3065), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym_DOT] = ACTIONS(3065), - [anon_sym_as] = ACTIONS(3065), - [anon_sym_LBRACE] = ACTIONS(3065), - [anon_sym_COMMA] = ACTIONS(3065), - [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(3065), - [anon_sym_PIPE] = ACTIONS(3065), - [anon_sym_fn] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_SLASH] = ACTIONS(3065), - [anon_sym_PERCENT] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3065), - [anon_sym_GT] = ACTIONS(3065), - [anon_sym_EQ_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_LT_EQ] = ACTIONS(3065), - [anon_sym_GT_EQ] = ACTIONS(3065), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3065), - [anon_sym_mut] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_DASH_DASH] = ACTIONS(3065), - [anon_sym_QMARK] = ACTIONS(3065), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_go] = ACTIONS(3065), - [anon_sym_spawn] = ACTIONS(3065), - [anon_sym_json_DOTdecode] = ACTIONS(3065), - [anon_sym_LBRACK2] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_CARET] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3065), - [anon_sym_LT_DASH] = ACTIONS(3065), - [anon_sym_LT_LT] = ACTIONS(3065), - [anon_sym_GT_GT] = ACTIONS(3065), - [anon_sym_GT_GT_GT] = ACTIONS(3065), - [anon_sym_AMP_CARET] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_PIPE_PIPE] = ACTIONS(3065), - [anon_sym_or] = ACTIONS(3065), - [sym_none] = ACTIONS(3065), - [sym_true] = ACTIONS(3065), - [sym_false] = ACTIONS(3065), - [sym_nil] = ACTIONS(3065), - [anon_sym_QMARK_DOT] = ACTIONS(3065), - [anon_sym_POUND_LBRACK] = ACTIONS(3065), - [anon_sym_if] = ACTIONS(3065), - [anon_sym_DOLLARif] = ACTIONS(3065), - [anon_sym_is] = ACTIONS(3065), - [anon_sym_BANGis] = ACTIONS(3065), - [anon_sym_in] = ACTIONS(3065), - [anon_sym_BANGin] = ACTIONS(3065), - [anon_sym_match] = ACTIONS(3065), - [anon_sym_select] = ACTIONS(3065), - [anon_sym_lock] = ACTIONS(3065), - [anon_sym_rlock] = ACTIONS(3065), - [anon_sym_unsafe] = ACTIONS(3065), - [anon_sym_sql] = ACTIONS(3065), - [sym_int_literal] = ACTIONS(3065), - [sym_float_literal] = ACTIONS(3065), - [sym_rune_literal] = ACTIONS(3065), - [anon_sym_AT] = ACTIONS(3065), - [anon_sym_shared] = ACTIONS(3065), - [anon_sym_map_LBRACK] = ACTIONS(3065), - [anon_sym_chan] = ACTIONS(3065), - [anon_sym_thread] = ACTIONS(3065), - [anon_sym_atomic] = ACTIONS(3065), - [sym___double_quote] = ACTIONS(3065), - [sym___single_quote] = ACTIONS(3065), - [sym___c_double_quote] = ACTIONS(3065), - [sym___c_single_quote] = ACTIONS(3065), - [sym___r_double_quote] = ACTIONS(3065), - [sym___r_single_quote] = ACTIONS(3065), + [1177] = { + [sym_identifier] = ACTIONS(3026), + [anon_sym_LF] = ACTIONS(3026), + [anon_sym_CR] = ACTIONS(3026), + [anon_sym_CR_LF] = ACTIONS(3026), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3026), + [sym___single_quote] = ACTIONS(3026), + [sym___c_double_quote] = ACTIONS(3026), + [sym___c_single_quote] = ACTIONS(3026), + [sym___r_double_quote] = ACTIONS(3026), + [sym___r_single_quote] = ACTIONS(3026), }, - [1196] = { - [sym_identifier] = ACTIONS(3149), - [anon_sym_LF] = ACTIONS(3149), - [anon_sym_CR] = ACTIONS(3149), - [anon_sym_CR_LF] = ACTIONS(3149), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(3149), - [anon_sym_as] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_COMMA] = ACTIONS(3149), - [anon_sym_RBRACE] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3149), - [anon_sym_PIPE] = ACTIONS(3149), - [anon_sym_fn] = ACTIONS(3149), - [anon_sym_PLUS] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3149), - [anon_sym_SLASH] = ACTIONS(3149), - [anon_sym_PERCENT] = ACTIONS(3149), - [anon_sym_LT] = ACTIONS(3149), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_LT_EQ] = ACTIONS(3149), - [anon_sym_GT_EQ] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_struct] = ACTIONS(3149), - [anon_sym_mut] = ACTIONS(3149), - [anon_sym_PLUS_PLUS] = ACTIONS(3149), - [anon_sym_DASH_DASH] = ACTIONS(3149), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_BANG] = ACTIONS(3149), - [anon_sym_go] = ACTIONS(3149), - [anon_sym_spawn] = ACTIONS(3149), - [anon_sym_json_DOTdecode] = ACTIONS(3149), - [anon_sym_LBRACK2] = ACTIONS(3149), - [anon_sym_TILDE] = ACTIONS(3149), - [anon_sym_CARET] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_LT_DASH] = ACTIONS(3149), - [anon_sym_LT_LT] = ACTIONS(3149), - [anon_sym_GT_GT] = ACTIONS(3149), - [anon_sym_GT_GT_GT] = ACTIONS(3149), - [anon_sym_AMP_CARET] = ACTIONS(3149), - [anon_sym_AMP_AMP] = ACTIONS(3149), - [anon_sym_PIPE_PIPE] = ACTIONS(3149), - [anon_sym_or] = ACTIONS(3149), - [sym_none] = ACTIONS(3149), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_nil] = ACTIONS(3149), - [anon_sym_QMARK_DOT] = ACTIONS(3149), - [anon_sym_POUND_LBRACK] = ACTIONS(3149), - [anon_sym_if] = ACTIONS(3149), - [anon_sym_DOLLARif] = ACTIONS(3149), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3149), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_BANGin] = ACTIONS(3149), - [anon_sym_match] = ACTIONS(3149), - [anon_sym_select] = ACTIONS(3149), - [anon_sym_lock] = ACTIONS(3149), - [anon_sym_rlock] = ACTIONS(3149), - [anon_sym_unsafe] = ACTIONS(3149), - [anon_sym_sql] = ACTIONS(3149), - [sym_int_literal] = ACTIONS(3149), - [sym_float_literal] = ACTIONS(3149), - [sym_rune_literal] = ACTIONS(3149), - [anon_sym_AT] = ACTIONS(3149), - [anon_sym_shared] = ACTIONS(3149), - [anon_sym_map_LBRACK] = ACTIONS(3149), - [anon_sym_chan] = ACTIONS(3149), - [anon_sym_thread] = ACTIONS(3149), - [anon_sym_atomic] = ACTIONS(3149), - [sym___double_quote] = ACTIONS(3149), - [sym___single_quote] = ACTIONS(3149), - [sym___c_double_quote] = ACTIONS(3149), - [sym___c_single_quote] = ACTIONS(3149), - [sym___r_double_quote] = ACTIONS(3149), - [sym___r_single_quote] = ACTIONS(3149), + [1178] = { + [sym_identifier] = ACTIONS(3074), + [anon_sym_LF] = ACTIONS(3074), + [anon_sym_CR] = ACTIONS(3074), + [anon_sym_CR_LF] = ACTIONS(3074), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3074), + [anon_sym_DOT] = ACTIONS(3074), + [anon_sym_as] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3074), + [anon_sym_COMMA] = ACTIONS(3074), + [anon_sym_RBRACE] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3074), + [anon_sym_PIPE] = ACTIONS(3074), + [anon_sym_fn] = ACTIONS(3074), + [anon_sym_PLUS] = ACTIONS(3074), + [anon_sym_DASH] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(3074), + [anon_sym_SLASH] = ACTIONS(3074), + [anon_sym_PERCENT] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(3074), + [anon_sym_GT] = ACTIONS(3074), + [anon_sym_EQ_EQ] = ACTIONS(3074), + [anon_sym_BANG_EQ] = ACTIONS(3074), + [anon_sym_LT_EQ] = ACTIONS(3074), + [anon_sym_GT_EQ] = ACTIONS(3074), + [anon_sym_LBRACK] = ACTIONS(3072), + [anon_sym_struct] = ACTIONS(3074), + [anon_sym_mut] = ACTIONS(3074), + [anon_sym_PLUS_PLUS] = ACTIONS(3074), + [anon_sym_DASH_DASH] = ACTIONS(3074), + [anon_sym_QMARK] = ACTIONS(3074), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_go] = ACTIONS(3074), + [anon_sym_spawn] = ACTIONS(3074), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3074), + [anon_sym_TILDE] = ACTIONS(3074), + [anon_sym_CARET] = ACTIONS(3074), + [anon_sym_AMP] = ACTIONS(3074), + [anon_sym_LT_DASH] = ACTIONS(3074), + [anon_sym_LT_LT] = ACTIONS(3074), + [anon_sym_GT_GT] = ACTIONS(3074), + [anon_sym_GT_GT_GT] = ACTIONS(3074), + [anon_sym_AMP_CARET] = ACTIONS(3074), + [anon_sym_AMP_AMP] = ACTIONS(3074), + [anon_sym_PIPE_PIPE] = ACTIONS(3074), + [anon_sym_or] = ACTIONS(3074), + [sym_none] = ACTIONS(3074), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [sym_nil] = ACTIONS(3074), + [anon_sym_QMARK_DOT] = ACTIONS(3074), + [anon_sym_POUND_LBRACK] = ACTIONS(3074), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_DOLLARif] = ACTIONS(3074), + [anon_sym_is] = ACTIONS(3074), + [anon_sym_BANGis] = ACTIONS(3074), + [anon_sym_in] = ACTIONS(3074), + [anon_sym_BANGin] = ACTIONS(3074), + [anon_sym_match] = ACTIONS(3074), + [anon_sym_select] = ACTIONS(3074), + [anon_sym_lock] = ACTIONS(3074), + [anon_sym_rlock] = ACTIONS(3074), + [anon_sym_unsafe] = ACTIONS(3074), + [anon_sym_sql] = ACTIONS(3074), + [sym_int_literal] = ACTIONS(3074), + [sym_float_literal] = ACTIONS(3074), + [sym_rune_literal] = ACTIONS(3074), + [anon_sym_AT] = ACTIONS(3074), + [anon_sym_shared] = ACTIONS(3074), + [anon_sym_map_LBRACK] = ACTIONS(3074), + [anon_sym_chan] = ACTIONS(3074), + [anon_sym_thread] = ACTIONS(3074), + [anon_sym_atomic] = ACTIONS(3074), + [sym___double_quote] = ACTIONS(3074), + [sym___single_quote] = ACTIONS(3074), + [sym___c_double_quote] = ACTIONS(3074), + [sym___c_single_quote] = ACTIONS(3074), + [sym___r_double_quote] = ACTIONS(3074), + [sym___r_single_quote] = ACTIONS(3074), }, - [1197] = { - [sym_identifier] = ACTIONS(2884), - [anon_sym_LF] = ACTIONS(2884), - [anon_sym_CR] = ACTIONS(2884), - [anon_sym_CR_LF] = ACTIONS(2884), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2884), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_as] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(2884), - [anon_sym_RBRACE] = ACTIONS(2884), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_PIPE] = ACTIONS(2884), - [anon_sym_fn] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2884), - [anon_sym_SLASH] = ACTIONS(2884), - [anon_sym_PERCENT] = ACTIONS(2884), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_GT] = ACTIONS(2884), - [anon_sym_EQ_EQ] = ACTIONS(2884), - [anon_sym_BANG_EQ] = ACTIONS(2884), - [anon_sym_LT_EQ] = ACTIONS(2884), - [anon_sym_GT_EQ] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_mut] = ACTIONS(2884), - [anon_sym_PLUS_PLUS] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2884), - [anon_sym_QMARK] = ACTIONS(2884), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_go] = ACTIONS(2884), - [anon_sym_spawn] = ACTIONS(2884), - [anon_sym_json_DOTdecode] = ACTIONS(2884), - [anon_sym_LBRACK2] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2884), - [anon_sym_CARET] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_LT_DASH] = ACTIONS(2884), - [anon_sym_LT_LT] = ACTIONS(2884), - [anon_sym_GT_GT] = ACTIONS(2884), - [anon_sym_GT_GT_GT] = ACTIONS(2884), - [anon_sym_AMP_CARET] = ACTIONS(2884), - [anon_sym_AMP_AMP] = ACTIONS(2884), - [anon_sym_PIPE_PIPE] = ACTIONS(2884), - [anon_sym_or] = ACTIONS(2884), - [sym_none] = ACTIONS(2884), - [sym_true] = ACTIONS(2884), - [sym_false] = ACTIONS(2884), - [sym_nil] = ACTIONS(2884), - [anon_sym_QMARK_DOT] = ACTIONS(2884), - [anon_sym_POUND_LBRACK] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_DOLLARif] = ACTIONS(2884), - [anon_sym_is] = ACTIONS(2884), - [anon_sym_BANGis] = ACTIONS(2884), - [anon_sym_in] = ACTIONS(2884), - [anon_sym_BANGin] = ACTIONS(2884), - [anon_sym_match] = ACTIONS(2884), - [anon_sym_select] = ACTIONS(2884), - [anon_sym_lock] = ACTIONS(2884), - [anon_sym_rlock] = ACTIONS(2884), - [anon_sym_unsafe] = ACTIONS(2884), - [anon_sym_sql] = ACTIONS(2884), - [sym_int_literal] = ACTIONS(2884), - [sym_float_literal] = ACTIONS(2884), - [sym_rune_literal] = ACTIONS(2884), - [anon_sym_AT] = ACTIONS(2884), - [anon_sym_shared] = ACTIONS(2884), - [anon_sym_map_LBRACK] = ACTIONS(2884), - [anon_sym_chan] = ACTIONS(2884), - [anon_sym_thread] = ACTIONS(2884), - [anon_sym_atomic] = ACTIONS(2884), - [sym___double_quote] = ACTIONS(2884), - [sym___single_quote] = ACTIONS(2884), - [sym___c_double_quote] = ACTIONS(2884), - [sym___c_single_quote] = ACTIONS(2884), - [sym___r_double_quote] = ACTIONS(2884), - [sym___r_single_quote] = ACTIONS(2884), - }, - [1198] = { - [sym_identifier] = ACTIONS(3181), - [anon_sym_LF] = ACTIONS(3181), - [anon_sym_CR] = ACTIONS(3181), - [anon_sym_CR_LF] = ACTIONS(3181), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3181), - [anon_sym_DOT] = ACTIONS(3181), - [anon_sym_as] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3181), - [anon_sym_COMMA] = ACTIONS(3181), - [anon_sym_RBRACE] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3181), - [anon_sym_PIPE] = ACTIONS(3181), - [anon_sym_fn] = ACTIONS(3181), - [anon_sym_PLUS] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3181), - [anon_sym_SLASH] = ACTIONS(3181), - [anon_sym_PERCENT] = ACTIONS(3181), - [anon_sym_LT] = ACTIONS(3181), - [anon_sym_GT] = ACTIONS(3181), - [anon_sym_EQ_EQ] = ACTIONS(3181), - [anon_sym_BANG_EQ] = ACTIONS(3181), - [anon_sym_LT_EQ] = ACTIONS(3181), - [anon_sym_GT_EQ] = ACTIONS(3181), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_struct] = ACTIONS(3181), - [anon_sym_mut] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_BANG] = ACTIONS(3181), - [anon_sym_go] = ACTIONS(3181), - [anon_sym_spawn] = ACTIONS(3181), - [anon_sym_json_DOTdecode] = ACTIONS(3181), - [anon_sym_LBRACK2] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_CARET] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3181), - [anon_sym_LT_DASH] = ACTIONS(3181), - [anon_sym_LT_LT] = ACTIONS(3181), - [anon_sym_GT_GT] = ACTIONS(3181), - [anon_sym_GT_GT_GT] = ACTIONS(3181), - [anon_sym_AMP_CARET] = ACTIONS(3181), - [anon_sym_AMP_AMP] = ACTIONS(3181), - [anon_sym_PIPE_PIPE] = ACTIONS(3181), - [anon_sym_or] = ACTIONS(3181), - [sym_none] = ACTIONS(3181), - [sym_true] = ACTIONS(3181), - [sym_false] = ACTIONS(3181), - [sym_nil] = ACTIONS(3181), - [anon_sym_QMARK_DOT] = ACTIONS(3181), - [anon_sym_POUND_LBRACK] = ACTIONS(3181), - [anon_sym_if] = ACTIONS(3181), - [anon_sym_DOLLARif] = ACTIONS(3181), - [anon_sym_is] = ACTIONS(3181), - [anon_sym_BANGis] = ACTIONS(3181), - [anon_sym_in] = ACTIONS(3181), - [anon_sym_BANGin] = ACTIONS(3181), - [anon_sym_match] = ACTIONS(3181), - [anon_sym_select] = ACTIONS(3181), - [anon_sym_lock] = ACTIONS(3181), - [anon_sym_rlock] = ACTIONS(3181), - [anon_sym_unsafe] = ACTIONS(3181), - [anon_sym_sql] = ACTIONS(3181), - [sym_int_literal] = ACTIONS(3181), - [sym_float_literal] = ACTIONS(3181), - [sym_rune_literal] = ACTIONS(3181), - [anon_sym_AT] = ACTIONS(3181), - [anon_sym_shared] = ACTIONS(3181), - [anon_sym_map_LBRACK] = ACTIONS(3181), - [anon_sym_chan] = ACTIONS(3181), - [anon_sym_thread] = ACTIONS(3181), - [anon_sym_atomic] = ACTIONS(3181), - [sym___double_quote] = ACTIONS(3181), - [sym___single_quote] = ACTIONS(3181), - [sym___c_double_quote] = ACTIONS(3181), - [sym___c_single_quote] = ACTIONS(3181), - [sym___r_double_quote] = ACTIONS(3181), - [sym___r_single_quote] = ACTIONS(3181), - }, - [1199] = { - [sym_identifier] = ACTIONS(3185), - [anon_sym_LF] = ACTIONS(3185), - [anon_sym_CR] = ACTIONS(3185), - [anon_sym_CR_LF] = ACTIONS(3185), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3185), - [anon_sym_DOT] = ACTIONS(3185), - [anon_sym_as] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_COMMA] = ACTIONS(3185), - [anon_sym_RBRACE] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym_PIPE] = ACTIONS(3185), - [anon_sym_fn] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_SLASH] = ACTIONS(3185), - [anon_sym_PERCENT] = ACTIONS(3185), - [anon_sym_LT] = ACTIONS(3185), - [anon_sym_GT] = ACTIONS(3185), - [anon_sym_EQ_EQ] = ACTIONS(3185), - [anon_sym_BANG_EQ] = ACTIONS(3185), - [anon_sym_LT_EQ] = ACTIONS(3185), - [anon_sym_GT_EQ] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3183), - [anon_sym_struct] = ACTIONS(3185), - [anon_sym_mut] = ACTIONS(3185), - [anon_sym_PLUS_PLUS] = ACTIONS(3185), - [anon_sym_DASH_DASH] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_go] = ACTIONS(3185), - [anon_sym_spawn] = ACTIONS(3185), - [anon_sym_json_DOTdecode] = ACTIONS(3185), - [anon_sym_LBRACK2] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_CARET] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_LT_DASH] = ACTIONS(3185), - [anon_sym_LT_LT] = ACTIONS(3185), - [anon_sym_GT_GT] = ACTIONS(3185), - [anon_sym_GT_GT_GT] = ACTIONS(3185), - [anon_sym_AMP_CARET] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_PIPE_PIPE] = ACTIONS(3185), - [anon_sym_or] = ACTIONS(3185), - [sym_none] = ACTIONS(3185), - [sym_true] = ACTIONS(3185), - [sym_false] = ACTIONS(3185), - [sym_nil] = ACTIONS(3185), - [anon_sym_QMARK_DOT] = ACTIONS(3185), - [anon_sym_POUND_LBRACK] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_DOLLARif] = ACTIONS(3185), - [anon_sym_is] = ACTIONS(3185), - [anon_sym_BANGis] = ACTIONS(3185), - [anon_sym_in] = ACTIONS(3185), - [anon_sym_BANGin] = ACTIONS(3185), - [anon_sym_match] = ACTIONS(3185), - [anon_sym_select] = ACTIONS(3185), - [anon_sym_lock] = ACTIONS(3185), - [anon_sym_rlock] = ACTIONS(3185), - [anon_sym_unsafe] = ACTIONS(3185), - [anon_sym_sql] = ACTIONS(3185), - [sym_int_literal] = ACTIONS(3185), - [sym_float_literal] = ACTIONS(3185), - [sym_rune_literal] = ACTIONS(3185), - [anon_sym_AT] = ACTIONS(3185), - [anon_sym_shared] = ACTIONS(3185), - [anon_sym_map_LBRACK] = ACTIONS(3185), - [anon_sym_chan] = ACTIONS(3185), - [anon_sym_thread] = ACTIONS(3185), - [anon_sym_atomic] = ACTIONS(3185), - [sym___double_quote] = ACTIONS(3185), - [sym___single_quote] = ACTIONS(3185), - [sym___c_double_quote] = ACTIONS(3185), - [sym___c_single_quote] = ACTIONS(3185), - [sym___r_double_quote] = ACTIONS(3185), - [sym___r_single_quote] = ACTIONS(3185), + [1179] = { + [sym_identifier] = ACTIONS(3034), + [anon_sym_LF] = ACTIONS(3034), + [anon_sym_CR] = ACTIONS(3034), + [anon_sym_CR_LF] = ACTIONS(3034), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3034), + [anon_sym_DOT] = ACTIONS(3034), + [anon_sym_as] = ACTIONS(3034), + [anon_sym_LBRACE] = ACTIONS(3034), + [anon_sym_COMMA] = ACTIONS(3034), + [anon_sym_RBRACE] = ACTIONS(3034), + [anon_sym_LPAREN] = ACTIONS(3034), + [anon_sym_PIPE] = ACTIONS(3034), + [anon_sym_fn] = ACTIONS(3034), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_STAR] = ACTIONS(3034), + [anon_sym_SLASH] = ACTIONS(3034), + [anon_sym_PERCENT] = ACTIONS(3034), + [anon_sym_LT] = ACTIONS(3034), + [anon_sym_GT] = ACTIONS(3034), + [anon_sym_EQ_EQ] = ACTIONS(3034), + [anon_sym_BANG_EQ] = ACTIONS(3034), + [anon_sym_LT_EQ] = ACTIONS(3034), + [anon_sym_GT_EQ] = ACTIONS(3034), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_struct] = ACTIONS(3034), + [anon_sym_mut] = ACTIONS(3034), + [anon_sym_PLUS_PLUS] = ACTIONS(3034), + [anon_sym_DASH_DASH] = ACTIONS(3034), + [anon_sym_QMARK] = ACTIONS(3034), + [anon_sym_BANG] = ACTIONS(3034), + [anon_sym_go] = ACTIONS(3034), + [anon_sym_spawn] = ACTIONS(3034), + [anon_sym_json_DOTdecode] = ACTIONS(3034), + [anon_sym_LBRACK2] = ACTIONS(3034), + [anon_sym_TILDE] = ACTIONS(3034), + [anon_sym_CARET] = ACTIONS(3034), + [anon_sym_AMP] = ACTIONS(3034), + [anon_sym_LT_DASH] = ACTIONS(3034), + [anon_sym_LT_LT] = ACTIONS(3034), + [anon_sym_GT_GT] = ACTIONS(3034), + [anon_sym_GT_GT_GT] = ACTIONS(3034), + [anon_sym_AMP_CARET] = ACTIONS(3034), + [anon_sym_AMP_AMP] = ACTIONS(3034), + [anon_sym_PIPE_PIPE] = ACTIONS(3034), + [anon_sym_or] = ACTIONS(3034), + [sym_none] = ACTIONS(3034), + [sym_true] = ACTIONS(3034), + [sym_false] = ACTIONS(3034), + [sym_nil] = ACTIONS(3034), + [anon_sym_QMARK_DOT] = ACTIONS(3034), + [anon_sym_POUND_LBRACK] = ACTIONS(3034), + [anon_sym_if] = ACTIONS(3034), + [anon_sym_DOLLARif] = ACTIONS(3034), + [anon_sym_is] = ACTIONS(3034), + [anon_sym_BANGis] = ACTIONS(3034), + [anon_sym_in] = ACTIONS(3034), + [anon_sym_BANGin] = ACTIONS(3034), + [anon_sym_match] = ACTIONS(3034), + [anon_sym_select] = ACTIONS(3034), + [anon_sym_lock] = ACTIONS(3034), + [anon_sym_rlock] = ACTIONS(3034), + [anon_sym_unsafe] = ACTIONS(3034), + [anon_sym_sql] = ACTIONS(3034), + [sym_int_literal] = ACTIONS(3034), + [sym_float_literal] = ACTIONS(3034), + [sym_rune_literal] = ACTIONS(3034), + [anon_sym_AT] = ACTIONS(3034), + [anon_sym_shared] = ACTIONS(3034), + [anon_sym_map_LBRACK] = ACTIONS(3034), + [anon_sym_chan] = ACTIONS(3034), + [anon_sym_thread] = ACTIONS(3034), + [anon_sym_atomic] = ACTIONS(3034), + [sym___double_quote] = ACTIONS(3034), + [sym___single_quote] = ACTIONS(3034), + [sym___c_double_quote] = ACTIONS(3034), + [sym___c_single_quote] = ACTIONS(3034), + [sym___r_double_quote] = ACTIONS(3034), + [sym___r_single_quote] = ACTIONS(3034), }, - [1200] = { - [sym_identifier] = ACTIONS(3189), - [anon_sym_LF] = ACTIONS(3189), - [anon_sym_CR] = ACTIONS(3189), - [anon_sym_CR_LF] = ACTIONS(3189), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3189), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_as] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3189), - [anon_sym_RBRACE] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_PIPE] = ACTIONS(3189), - [anon_sym_fn] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_SLASH] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3189), - [anon_sym_GT] = ACTIONS(3189), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3187), - [anon_sym_struct] = ACTIONS(3189), - [anon_sym_mut] = ACTIONS(3189), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3189), - [anon_sym_go] = ACTIONS(3189), - [anon_sym_spawn] = ACTIONS(3189), - [anon_sym_json_DOTdecode] = ACTIONS(3189), - [anon_sym_LBRACK2] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3189), - [anon_sym_CARET] = ACTIONS(3189), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_LT_LT] = ACTIONS(3189), - [anon_sym_GT_GT] = ACTIONS(3189), - [anon_sym_GT_GT_GT] = ACTIONS(3189), - [anon_sym_AMP_CARET] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3189), - [sym_none] = ACTIONS(3189), - [sym_true] = ACTIONS(3189), - [sym_false] = ACTIONS(3189), - [sym_nil] = ACTIONS(3189), - [anon_sym_QMARK_DOT] = ACTIONS(3189), - [anon_sym_POUND_LBRACK] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_DOLLARif] = ACTIONS(3189), - [anon_sym_is] = ACTIONS(3189), - [anon_sym_BANGis] = ACTIONS(3189), - [anon_sym_in] = ACTIONS(3189), - [anon_sym_BANGin] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_select] = ACTIONS(3189), - [anon_sym_lock] = ACTIONS(3189), - [anon_sym_rlock] = ACTIONS(3189), - [anon_sym_unsafe] = ACTIONS(3189), - [anon_sym_sql] = ACTIONS(3189), - [sym_int_literal] = ACTIONS(3189), - [sym_float_literal] = ACTIONS(3189), - [sym_rune_literal] = ACTIONS(3189), - [anon_sym_AT] = ACTIONS(3189), - [anon_sym_shared] = ACTIONS(3189), - [anon_sym_map_LBRACK] = ACTIONS(3189), - [anon_sym_chan] = ACTIONS(3189), - [anon_sym_thread] = ACTIONS(3189), - [anon_sym_atomic] = ACTIONS(3189), - [sym___double_quote] = ACTIONS(3189), - [sym___single_quote] = ACTIONS(3189), - [sym___c_double_quote] = ACTIONS(3189), - [sym___c_single_quote] = ACTIONS(3189), - [sym___r_double_quote] = ACTIONS(3189), - [sym___r_single_quote] = ACTIONS(3189), + [1180] = { + [sym_identifier] = ACTIONS(3054), + [anon_sym_LF] = ACTIONS(3054), + [anon_sym_CR] = ACTIONS(3054), + [anon_sym_CR_LF] = ACTIONS(3054), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3054), + [sym___single_quote] = ACTIONS(3054), + [sym___c_double_quote] = ACTIONS(3054), + [sym___c_single_quote] = ACTIONS(3054), + [sym___r_double_quote] = ACTIONS(3054), + [sym___r_single_quote] = ACTIONS(3054), }, - [1201] = { - [sym_identifier] = ACTIONS(3165), - [anon_sym_LF] = ACTIONS(3165), - [anon_sym_CR] = ACTIONS(3165), - [anon_sym_CR_LF] = ACTIONS(3165), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_as] = ACTIONS(3165), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3165), - [anon_sym_RBRACE] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_PIPE] = ACTIONS(3165), - [anon_sym_fn] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_STAR] = ACTIONS(3165), - [anon_sym_SLASH] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_LT] = ACTIONS(3165), - [anon_sym_GT] = ACTIONS(3165), - [anon_sym_EQ_EQ] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_LT_EQ] = ACTIONS(3165), - [anon_sym_GT_EQ] = ACTIONS(3165), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3165), - [anon_sym_mut] = ACTIONS(3165), - [anon_sym_PLUS_PLUS] = ACTIONS(3165), - [anon_sym_DASH_DASH] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_BANG] = ACTIONS(3165), - [anon_sym_go] = ACTIONS(3165), - [anon_sym_spawn] = ACTIONS(3165), - [anon_sym_json_DOTdecode] = ACTIONS(3165), - [anon_sym_LBRACK2] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3165), - [anon_sym_CARET] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_LT_LT] = ACTIONS(3165), - [anon_sym_GT_GT] = ACTIONS(3165), - [anon_sym_GT_GT_GT] = ACTIONS(3165), - [anon_sym_AMP_CARET] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [sym_none] = ACTIONS(3165), - [sym_true] = ACTIONS(3165), - [sym_false] = ACTIONS(3165), - [sym_nil] = ACTIONS(3165), - [anon_sym_QMARK_DOT] = ACTIONS(3165), - [anon_sym_POUND_LBRACK] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_DOLLARif] = ACTIONS(3165), - [anon_sym_is] = ACTIONS(3165), - [anon_sym_BANGis] = ACTIONS(3165), - [anon_sym_in] = ACTIONS(3165), - [anon_sym_BANGin] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_select] = ACTIONS(3165), - [anon_sym_lock] = ACTIONS(3165), - [anon_sym_rlock] = ACTIONS(3165), - [anon_sym_unsafe] = ACTIONS(3165), - [anon_sym_sql] = ACTIONS(3165), - [sym_int_literal] = ACTIONS(3165), - [sym_float_literal] = ACTIONS(3165), - [sym_rune_literal] = ACTIONS(3165), - [anon_sym_AT] = ACTIONS(3165), - [anon_sym_shared] = ACTIONS(3165), - [anon_sym_map_LBRACK] = ACTIONS(3165), - [anon_sym_chan] = ACTIONS(3165), - [anon_sym_thread] = ACTIONS(3165), - [anon_sym_atomic] = ACTIONS(3165), - [sym___double_quote] = ACTIONS(3165), - [sym___single_quote] = ACTIONS(3165), - [sym___c_double_quote] = ACTIONS(3165), - [sym___c_single_quote] = ACTIONS(3165), - [sym___r_double_quote] = ACTIONS(3165), - [sym___r_single_quote] = ACTIONS(3165), + [1181] = { + [sym_identifier] = ACTIONS(2992), + [anon_sym_LF] = ACTIONS(2992), + [anon_sym_CR] = ACTIONS(2992), + [anon_sym_CR_LF] = ACTIONS(2992), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2992), + [anon_sym_DOT] = ACTIONS(2994), + [anon_sym_as] = ACTIONS(2994), + [anon_sym_LBRACE] = ACTIONS(2992), + [anon_sym_COMMA] = ACTIONS(2992), + [anon_sym_RBRACE] = ACTIONS(2992), + [anon_sym_LPAREN] = ACTIONS(2994), + [anon_sym_PIPE] = ACTIONS(2994), + [anon_sym_fn] = ACTIONS(2992), + [anon_sym_PLUS] = ACTIONS(2994), + [anon_sym_DASH] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2994), + [anon_sym_SLASH] = ACTIONS(2994), + [anon_sym_PERCENT] = ACTIONS(2994), + [anon_sym_LT] = ACTIONS(2994), + [anon_sym_GT] = ACTIONS(2994), + [anon_sym_EQ_EQ] = ACTIONS(2994), + [anon_sym_BANG_EQ] = ACTIONS(2994), + [anon_sym_LT_EQ] = ACTIONS(2994), + [anon_sym_GT_EQ] = ACTIONS(2994), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_struct] = ACTIONS(2992), + [anon_sym_mut] = ACTIONS(2992), + [anon_sym_PLUS_PLUS] = ACTIONS(2994), + [anon_sym_DASH_DASH] = ACTIONS(2994), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_BANG] = ACTIONS(2994), + [anon_sym_go] = ACTIONS(2992), + [anon_sym_spawn] = ACTIONS(2992), + [anon_sym_json_DOTdecode] = ACTIONS(2992), + [anon_sym_LBRACK2] = ACTIONS(2994), + [anon_sym_TILDE] = ACTIONS(2992), + [anon_sym_CARET] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2994), + [anon_sym_LT_DASH] = ACTIONS(2992), + [anon_sym_LT_LT] = ACTIONS(2994), + [anon_sym_GT_GT] = ACTIONS(2994), + [anon_sym_GT_GT_GT] = ACTIONS(2994), + [anon_sym_AMP_CARET] = ACTIONS(2994), + [anon_sym_AMP_AMP] = ACTIONS(2994), + [anon_sym_PIPE_PIPE] = ACTIONS(2994), + [anon_sym_or] = ACTIONS(2994), + [sym_none] = ACTIONS(2992), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [sym_nil] = ACTIONS(2992), + [anon_sym_QMARK_DOT] = ACTIONS(2994), + [anon_sym_POUND_LBRACK] = ACTIONS(2994), + [anon_sym_if] = ACTIONS(2992), + [anon_sym_DOLLARif] = ACTIONS(2992), + [anon_sym_is] = ACTIONS(2994), + [anon_sym_BANGis] = ACTIONS(2994), + [anon_sym_in] = ACTIONS(2994), + [anon_sym_BANGin] = ACTIONS(2994), + [anon_sym_match] = ACTIONS(2992), + [anon_sym_select] = ACTIONS(2992), + [anon_sym_lock] = ACTIONS(2992), + [anon_sym_rlock] = ACTIONS(2992), + [anon_sym_unsafe] = ACTIONS(2992), + [anon_sym_sql] = ACTIONS(2992), + [sym_int_literal] = ACTIONS(2992), + [sym_float_literal] = ACTIONS(2992), + [sym_rune_literal] = ACTIONS(2992), + [anon_sym_AT] = ACTIONS(2992), + [anon_sym_shared] = ACTIONS(2992), + [anon_sym_map_LBRACK] = ACTIONS(2992), + [anon_sym_chan] = ACTIONS(2992), + [anon_sym_thread] = ACTIONS(2992), + [anon_sym_atomic] = ACTIONS(2992), + [sym___double_quote] = ACTIONS(2992), + [sym___single_quote] = ACTIONS(2992), + [sym___c_double_quote] = ACTIONS(2992), + [sym___c_single_quote] = ACTIONS(2992), + [sym___r_double_quote] = ACTIONS(2992), + [sym___r_single_quote] = ACTIONS(2992), }, - [1202] = { - [sym_identifier] = ACTIONS(3161), - [anon_sym_LF] = ACTIONS(3161), - [anon_sym_CR] = ACTIONS(3161), - [anon_sym_CR_LF] = ACTIONS(3161), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_DOT] = ACTIONS(3161), - [anon_sym_as] = ACTIONS(3161), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_COMMA] = ACTIONS(3161), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_PIPE] = ACTIONS(3161), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_SLASH] = ACTIONS(3161), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(3161), - [anon_sym_GT] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_struct] = ACTIONS(3161), - [anon_sym_mut] = ACTIONS(3161), - [anon_sym_PLUS_PLUS] = ACTIONS(3161), - [anon_sym_DASH_DASH] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(3161), - [anon_sym_go] = ACTIONS(3161), - [anon_sym_spawn] = ACTIONS(3161), - [anon_sym_json_DOTdecode] = ACTIONS(3161), - [anon_sym_LBRACK2] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_CARET] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_LT_DASH] = ACTIONS(3161), - [anon_sym_LT_LT] = ACTIONS(3161), - [anon_sym_GT_GT] = ACTIONS(3161), - [anon_sym_GT_GT_GT] = ACTIONS(3161), - [anon_sym_AMP_CARET] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_or] = ACTIONS(3161), - [sym_none] = ACTIONS(3161), - [sym_true] = ACTIONS(3161), - [sym_false] = ACTIONS(3161), - [sym_nil] = ACTIONS(3161), - [anon_sym_QMARK_DOT] = ACTIONS(3161), - [anon_sym_POUND_LBRACK] = ACTIONS(3161), - [anon_sym_if] = ACTIONS(3161), - [anon_sym_DOLLARif] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3161), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_in] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_match] = ACTIONS(3161), - [anon_sym_select] = ACTIONS(3161), - [anon_sym_lock] = ACTIONS(3161), - [anon_sym_rlock] = ACTIONS(3161), - [anon_sym_unsafe] = ACTIONS(3161), - [anon_sym_sql] = ACTIONS(3161), - [sym_int_literal] = ACTIONS(3161), - [sym_float_literal] = ACTIONS(3161), - [sym_rune_literal] = ACTIONS(3161), - [anon_sym_AT] = ACTIONS(3161), - [anon_sym_shared] = ACTIONS(3161), - [anon_sym_map_LBRACK] = ACTIONS(3161), - [anon_sym_chan] = ACTIONS(3161), - [anon_sym_thread] = ACTIONS(3161), - [anon_sym_atomic] = ACTIONS(3161), - [sym___double_quote] = ACTIONS(3161), - [sym___single_quote] = ACTIONS(3161), - [sym___c_double_quote] = ACTIONS(3161), - [sym___c_single_quote] = ACTIONS(3161), - [sym___r_double_quote] = ACTIONS(3161), - [sym___r_single_quote] = ACTIONS(3161), + [1182] = { + [sym_identifier] = ACTIONS(2982), + [anon_sym_LF] = ACTIONS(2982), + [anon_sym_CR] = ACTIONS(2982), + [anon_sym_CR_LF] = ACTIONS(2982), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2982), + [anon_sym_DOT] = ACTIONS(2984), + [anon_sym_as] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_COMMA] = ACTIONS(2982), + [anon_sym_RBRACE] = ACTIONS(2982), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_PIPE] = ACTIONS(2984), + [anon_sym_fn] = ACTIONS(2982), + [anon_sym_PLUS] = ACTIONS(2984), + [anon_sym_DASH] = ACTIONS(2984), + [anon_sym_STAR] = ACTIONS(2984), + [anon_sym_SLASH] = ACTIONS(2984), + [anon_sym_PERCENT] = ACTIONS(2984), + [anon_sym_LT] = ACTIONS(2984), + [anon_sym_GT] = ACTIONS(2984), + [anon_sym_EQ_EQ] = ACTIONS(2984), + [anon_sym_BANG_EQ] = ACTIONS(2984), + [anon_sym_LT_EQ] = ACTIONS(2984), + [anon_sym_GT_EQ] = ACTIONS(2984), + [anon_sym_LBRACK] = ACTIONS(2987), + [anon_sym_struct] = ACTIONS(2982), + [anon_sym_mut] = ACTIONS(2982), + [anon_sym_PLUS_PLUS] = ACTIONS(2984), + [anon_sym_DASH_DASH] = ACTIONS(2984), + [anon_sym_QMARK] = ACTIONS(2984), + [anon_sym_BANG] = ACTIONS(2984), + [anon_sym_go] = ACTIONS(2982), + [anon_sym_spawn] = ACTIONS(2982), + [anon_sym_json_DOTdecode] = ACTIONS(2982), + [anon_sym_LBRACK2] = ACTIONS(2984), + [anon_sym_TILDE] = ACTIONS(2982), + [anon_sym_CARET] = ACTIONS(2984), + [anon_sym_AMP] = ACTIONS(2984), + [anon_sym_LT_DASH] = ACTIONS(2982), + [anon_sym_LT_LT] = ACTIONS(2984), + [anon_sym_GT_GT] = ACTIONS(2984), + [anon_sym_GT_GT_GT] = ACTIONS(2984), + [anon_sym_AMP_CARET] = ACTIONS(2984), + [anon_sym_AMP_AMP] = ACTIONS(2984), + [anon_sym_PIPE_PIPE] = ACTIONS(2984), + [anon_sym_or] = ACTIONS(2984), + [sym_none] = ACTIONS(2982), + [sym_true] = ACTIONS(2982), + [sym_false] = ACTIONS(2982), + [sym_nil] = ACTIONS(2982), + [anon_sym_QMARK_DOT] = ACTIONS(2984), + [anon_sym_POUND_LBRACK] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2982), + [anon_sym_DOLLARif] = ACTIONS(2982), + [anon_sym_is] = ACTIONS(2984), + [anon_sym_BANGis] = ACTIONS(2984), + [anon_sym_in] = ACTIONS(2984), + [anon_sym_BANGin] = ACTIONS(2984), + [anon_sym_match] = ACTIONS(2982), + [anon_sym_select] = ACTIONS(2982), + [anon_sym_lock] = ACTIONS(2982), + [anon_sym_rlock] = ACTIONS(2982), + [anon_sym_unsafe] = ACTIONS(2982), + [anon_sym_sql] = ACTIONS(2982), + [sym_int_literal] = ACTIONS(2982), + [sym_float_literal] = ACTIONS(2982), + [sym_rune_literal] = ACTIONS(2982), + [anon_sym_AT] = ACTIONS(2982), + [anon_sym_shared] = ACTIONS(2982), + [anon_sym_map_LBRACK] = ACTIONS(2982), + [anon_sym_chan] = ACTIONS(2982), + [anon_sym_thread] = ACTIONS(2982), + [anon_sym_atomic] = ACTIONS(2982), + [sym___double_quote] = ACTIONS(2982), + [sym___single_quote] = ACTIONS(2982), + [sym___c_double_quote] = ACTIONS(2982), + [sym___c_single_quote] = ACTIONS(2982), + [sym___r_double_quote] = ACTIONS(2982), + [sym___r_single_quote] = ACTIONS(2982), }, - [1203] = { - [sym_identifier] = ACTIONS(3153), - [anon_sym_LF] = ACTIONS(3153), - [anon_sym_CR] = ACTIONS(3153), - [anon_sym_CR_LF] = ACTIONS(3153), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3153), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_as] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_COMMA] = ACTIONS(3153), - [anon_sym_RBRACE] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_PIPE] = ACTIONS(3153), - [anon_sym_fn] = ACTIONS(3153), - [anon_sym_PLUS] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3153), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_SLASH] = ACTIONS(3153), - [anon_sym_PERCENT] = ACTIONS(3153), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3153), - [anon_sym_EQ_EQ] = ACTIONS(3153), - [anon_sym_BANG_EQ] = ACTIONS(3153), - [anon_sym_LT_EQ] = ACTIONS(3153), - [anon_sym_GT_EQ] = ACTIONS(3153), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_struct] = ACTIONS(3153), - [anon_sym_mut] = ACTIONS(3153), - [anon_sym_PLUS_PLUS] = ACTIONS(3153), - [anon_sym_DASH_DASH] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_go] = ACTIONS(3153), - [anon_sym_spawn] = ACTIONS(3153), - [anon_sym_json_DOTdecode] = ACTIONS(3153), - [anon_sym_LBRACK2] = ACTIONS(3153), - [anon_sym_TILDE] = ACTIONS(3153), - [anon_sym_CARET] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3153), - [anon_sym_LT_DASH] = ACTIONS(3153), - [anon_sym_LT_LT] = ACTIONS(3153), - [anon_sym_GT_GT] = ACTIONS(3153), - [anon_sym_GT_GT_GT] = ACTIONS(3153), - [anon_sym_AMP_CARET] = ACTIONS(3153), - [anon_sym_AMP_AMP] = ACTIONS(3153), - [anon_sym_PIPE_PIPE] = ACTIONS(3153), - [anon_sym_or] = ACTIONS(3153), - [sym_none] = ACTIONS(3153), - [sym_true] = ACTIONS(3153), - [sym_false] = ACTIONS(3153), - [sym_nil] = ACTIONS(3153), - [anon_sym_QMARK_DOT] = ACTIONS(3153), - [anon_sym_POUND_LBRACK] = ACTIONS(3153), - [anon_sym_if] = ACTIONS(3153), - [anon_sym_DOLLARif] = ACTIONS(3153), - [anon_sym_is] = ACTIONS(3153), - [anon_sym_BANGis] = ACTIONS(3153), - [anon_sym_in] = ACTIONS(3153), - [anon_sym_BANGin] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(3153), - [anon_sym_select] = ACTIONS(3153), - [anon_sym_lock] = ACTIONS(3153), - [anon_sym_rlock] = ACTIONS(3153), - [anon_sym_unsafe] = ACTIONS(3153), - [anon_sym_sql] = ACTIONS(3153), - [sym_int_literal] = ACTIONS(3153), - [sym_float_literal] = ACTIONS(3153), - [sym_rune_literal] = ACTIONS(3153), - [anon_sym_AT] = ACTIONS(3153), - [anon_sym_shared] = ACTIONS(3153), - [anon_sym_map_LBRACK] = ACTIONS(3153), - [anon_sym_chan] = ACTIONS(3153), - [anon_sym_thread] = ACTIONS(3153), - [anon_sym_atomic] = ACTIONS(3153), - [sym___double_quote] = ACTIONS(3153), - [sym___single_quote] = ACTIONS(3153), - [sym___c_double_quote] = ACTIONS(3153), - [sym___c_single_quote] = ACTIONS(3153), - [sym___r_double_quote] = ACTIONS(3153), - [sym___r_single_quote] = ACTIONS(3153), + [1183] = { + [sym_identifier] = ACTIONS(2790), + [anon_sym_LF] = ACTIONS(2790), + [anon_sym_CR] = ACTIONS(2790), + [anon_sym_CR_LF] = ACTIONS(2790), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_DOT] = ACTIONS(2790), + [anon_sym_as] = ACTIONS(2790), + [anon_sym_LBRACE] = ACTIONS(2790), + [anon_sym_COMMA] = ACTIONS(2790), + [anon_sym_RBRACE] = ACTIONS(2790), + [anon_sym_LPAREN] = ACTIONS(2790), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_fn] = ACTIONS(2790), + [anon_sym_PLUS] = ACTIONS(2790), + [anon_sym_DASH] = ACTIONS(2790), + [anon_sym_STAR] = ACTIONS(2790), + [anon_sym_SLASH] = ACTIONS(2790), + [anon_sym_PERCENT] = ACTIONS(2790), + [anon_sym_LT] = ACTIONS(2790), + [anon_sym_GT] = ACTIONS(2790), + [anon_sym_EQ_EQ] = ACTIONS(2790), + [anon_sym_BANG_EQ] = ACTIONS(2790), + [anon_sym_LT_EQ] = ACTIONS(2790), + [anon_sym_GT_EQ] = ACTIONS(2790), + [anon_sym_LBRACK] = ACTIONS(2788), + [anon_sym_struct] = ACTIONS(2790), + [anon_sym_mut] = ACTIONS(2790), + [anon_sym_PLUS_PLUS] = ACTIONS(2790), + [anon_sym_DASH_DASH] = ACTIONS(2790), + [anon_sym_QMARK] = ACTIONS(2790), + [anon_sym_BANG] = ACTIONS(2790), + [anon_sym_go] = ACTIONS(2790), + [anon_sym_spawn] = ACTIONS(2790), + [anon_sym_json_DOTdecode] = ACTIONS(2790), + [anon_sym_LBRACK2] = ACTIONS(2790), + [anon_sym_TILDE] = ACTIONS(2790), + [anon_sym_CARET] = ACTIONS(2790), + [anon_sym_AMP] = ACTIONS(2790), + [anon_sym_LT_DASH] = ACTIONS(2790), + [anon_sym_LT_LT] = ACTIONS(2790), + [anon_sym_GT_GT] = ACTIONS(2790), + [anon_sym_GT_GT_GT] = ACTIONS(2790), + [anon_sym_AMP_CARET] = ACTIONS(2790), + [anon_sym_AMP_AMP] = ACTIONS(2790), + [anon_sym_PIPE_PIPE] = ACTIONS(2790), + [anon_sym_or] = ACTIONS(2790), + [sym_none] = ACTIONS(2790), + [sym_true] = ACTIONS(2790), + [sym_false] = ACTIONS(2790), + [sym_nil] = ACTIONS(2790), + [anon_sym_QMARK_DOT] = ACTIONS(2790), + [anon_sym_POUND_LBRACK] = ACTIONS(2790), + [anon_sym_if] = ACTIONS(2790), + [anon_sym_DOLLARif] = ACTIONS(2790), + [anon_sym_is] = ACTIONS(2790), + [anon_sym_BANGis] = ACTIONS(2790), + [anon_sym_in] = ACTIONS(2790), + [anon_sym_BANGin] = ACTIONS(2790), + [anon_sym_match] = ACTIONS(2790), + [anon_sym_select] = ACTIONS(2790), + [anon_sym_lock] = ACTIONS(2790), + [anon_sym_rlock] = ACTIONS(2790), + [anon_sym_unsafe] = ACTIONS(2790), + [anon_sym_sql] = ACTIONS(2790), + [sym_int_literal] = ACTIONS(2790), + [sym_float_literal] = ACTIONS(2790), + [sym_rune_literal] = ACTIONS(2790), + [anon_sym_AT] = ACTIONS(2790), + [anon_sym_shared] = ACTIONS(2790), + [anon_sym_map_LBRACK] = ACTIONS(2790), + [anon_sym_chan] = ACTIONS(2790), + [anon_sym_thread] = ACTIONS(2790), + [anon_sym_atomic] = ACTIONS(2790), + [sym___double_quote] = ACTIONS(2790), + [sym___single_quote] = ACTIONS(2790), + [sym___c_double_quote] = ACTIONS(2790), + [sym___c_single_quote] = ACTIONS(2790), + [sym___r_double_quote] = ACTIONS(2790), + [sym___r_single_quote] = ACTIONS(2790), }, - [1204] = { - [sym_identifier] = ACTIONS(2766), - [anon_sym_LF] = ACTIONS(2766), - [anon_sym_CR] = ACTIONS(2766), - [anon_sym_CR_LF] = ACTIONS(2766), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2766), - [anon_sym_DOT] = ACTIONS(2766), - [anon_sym_as] = ACTIONS(2766), - [anon_sym_LBRACE] = ACTIONS(2766), - [anon_sym_COMMA] = ACTIONS(2766), - [anon_sym_RBRACE] = ACTIONS(2766), - [anon_sym_LPAREN] = ACTIONS(2766), - [anon_sym_PIPE] = ACTIONS(2766), - [anon_sym_fn] = ACTIONS(2766), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2766), - [anon_sym_SLASH] = ACTIONS(2766), - [anon_sym_PERCENT] = ACTIONS(2766), - [anon_sym_LT] = ACTIONS(2766), - [anon_sym_GT] = ACTIONS(2766), - [anon_sym_EQ_EQ] = ACTIONS(2766), - [anon_sym_BANG_EQ] = ACTIONS(2766), - [anon_sym_LT_EQ] = ACTIONS(2766), - [anon_sym_GT_EQ] = ACTIONS(2766), - [anon_sym_LBRACK] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2766), - [anon_sym_mut] = ACTIONS(2766), - [anon_sym_PLUS_PLUS] = ACTIONS(2766), - [anon_sym_DASH_DASH] = ACTIONS(2766), - [anon_sym_QMARK] = ACTIONS(2766), - [anon_sym_BANG] = ACTIONS(2766), - [anon_sym_go] = ACTIONS(2766), - [anon_sym_spawn] = ACTIONS(2766), - [anon_sym_json_DOTdecode] = ACTIONS(2766), - [anon_sym_LBRACK2] = ACTIONS(2766), - [anon_sym_TILDE] = ACTIONS(2766), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2766), - [anon_sym_LT_DASH] = ACTIONS(2766), - [anon_sym_LT_LT] = ACTIONS(2766), - [anon_sym_GT_GT] = ACTIONS(2766), - [anon_sym_GT_GT_GT] = ACTIONS(2766), - [anon_sym_AMP_CARET] = ACTIONS(2766), - [anon_sym_AMP_AMP] = ACTIONS(2766), - [anon_sym_PIPE_PIPE] = ACTIONS(2766), - [anon_sym_or] = ACTIONS(2766), - [sym_none] = ACTIONS(2766), - [sym_true] = ACTIONS(2766), - [sym_false] = ACTIONS(2766), - [sym_nil] = ACTIONS(2766), - [anon_sym_QMARK_DOT] = ACTIONS(2766), - [anon_sym_POUND_LBRACK] = ACTIONS(2766), - [anon_sym_if] = ACTIONS(2766), - [anon_sym_DOLLARif] = ACTIONS(2766), - [anon_sym_is] = ACTIONS(2766), - [anon_sym_BANGis] = ACTIONS(2766), - [anon_sym_in] = ACTIONS(2766), - [anon_sym_BANGin] = ACTIONS(2766), - [anon_sym_match] = ACTIONS(2766), - [anon_sym_select] = ACTIONS(2766), - [anon_sym_lock] = ACTIONS(2766), - [anon_sym_rlock] = ACTIONS(2766), - [anon_sym_unsafe] = ACTIONS(2766), - [anon_sym_sql] = ACTIONS(2766), - [sym_int_literal] = ACTIONS(2766), - [sym_float_literal] = ACTIONS(2766), - [sym_rune_literal] = ACTIONS(2766), - [anon_sym_AT] = ACTIONS(2766), - [anon_sym_shared] = ACTIONS(2766), - [anon_sym_map_LBRACK] = ACTIONS(2766), - [anon_sym_chan] = ACTIONS(2766), - [anon_sym_thread] = ACTIONS(2766), - [anon_sym_atomic] = ACTIONS(2766), - [sym___double_quote] = ACTIONS(2766), - [sym___single_quote] = ACTIONS(2766), - [sym___c_double_quote] = ACTIONS(2766), - [sym___c_single_quote] = ACTIONS(2766), - [sym___r_double_quote] = ACTIONS(2766), - [sym___r_single_quote] = ACTIONS(2766), + [1184] = { + [sym_identifier] = ACTIONS(3062), + [anon_sym_LF] = ACTIONS(3062), + [anon_sym_CR] = ACTIONS(3062), + [anon_sym_CR_LF] = ACTIONS(3062), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3062), + [sym___single_quote] = ACTIONS(3062), + [sym___c_double_quote] = ACTIONS(3062), + [sym___c_single_quote] = ACTIONS(3062), + [sym___r_double_quote] = ACTIONS(3062), + [sym___r_single_quote] = ACTIONS(3062), }, - [1205] = { - [sym_identifier] = ACTIONS(2963), - [anon_sym_LF] = ACTIONS(2963), - [anon_sym_CR] = ACTIONS(2963), - [anon_sym_CR_LF] = ACTIONS(2963), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2963), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_as] = ACTIONS(2963), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_COMMA] = ACTIONS(2963), - [anon_sym_RBRACE] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_fn] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_STAR] = ACTIONS(2963), - [anon_sym_SLASH] = ACTIONS(2963), - [anon_sym_PERCENT] = ACTIONS(2963), - [anon_sym_LT] = ACTIONS(2963), - [anon_sym_GT] = ACTIONS(2963), - [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(2961), - [anon_sym_struct] = ACTIONS(2963), - [anon_sym_mut] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2963), - [anon_sym_DASH_DASH] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_BANG] = ACTIONS(2963), - [anon_sym_go] = ACTIONS(2963), - [anon_sym_spawn] = ACTIONS(2963), - [anon_sym_json_DOTdecode] = ACTIONS(2963), - [anon_sym_LBRACK2] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2963), - [anon_sym_CARET] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_LT_DASH] = ACTIONS(2963), - [anon_sym_LT_LT] = ACTIONS(2963), - [anon_sym_GT_GT] = ACTIONS(2963), - [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(2963), - [sym_none] = ACTIONS(2963), - [sym_true] = ACTIONS(2963), - [sym_false] = ACTIONS(2963), - [sym_nil] = ACTIONS(2963), - [anon_sym_QMARK_DOT] = ACTIONS(2963), - [anon_sym_POUND_LBRACK] = ACTIONS(2963), - [anon_sym_if] = ACTIONS(2963), - [anon_sym_DOLLARif] = ACTIONS(2963), - [anon_sym_is] = ACTIONS(2963), - [anon_sym_BANGis] = ACTIONS(2963), - [anon_sym_in] = ACTIONS(2963), - [anon_sym_BANGin] = ACTIONS(2963), - [anon_sym_match] = ACTIONS(2963), - [anon_sym_select] = ACTIONS(2963), - [anon_sym_lock] = ACTIONS(2963), - [anon_sym_rlock] = ACTIONS(2963), - [anon_sym_unsafe] = ACTIONS(2963), - [anon_sym_sql] = ACTIONS(2963), - [sym_int_literal] = ACTIONS(2963), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [anon_sym_AT] = ACTIONS(2963), - [anon_sym_shared] = ACTIONS(2963), - [anon_sym_map_LBRACK] = ACTIONS(2963), - [anon_sym_chan] = ACTIONS(2963), - [anon_sym_thread] = ACTIONS(2963), - [anon_sym_atomic] = ACTIONS(2963), - [sym___double_quote] = ACTIONS(2963), - [sym___single_quote] = ACTIONS(2963), - [sym___c_double_quote] = ACTIONS(2963), - [sym___c_single_quote] = ACTIONS(2963), - [sym___r_double_quote] = ACTIONS(2963), - [sym___r_single_quote] = ACTIONS(2963), + [1185] = { + [sym_identifier] = ACTIONS(3070), + [anon_sym_LF] = ACTIONS(3070), + [anon_sym_CR] = ACTIONS(3070), + [anon_sym_CR_LF] = ACTIONS(3070), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3070), + [sym___single_quote] = ACTIONS(3070), + [sym___c_double_quote] = ACTIONS(3070), + [sym___c_single_quote] = ACTIONS(3070), + [sym___r_double_quote] = ACTIONS(3070), + [sym___r_single_quote] = ACTIONS(3070), }, - [1206] = { - [sym_identifier] = ACTIONS(3081), - [anon_sym_LF] = ACTIONS(3081), - [anon_sym_CR] = ACTIONS(3081), - [anon_sym_CR_LF] = ACTIONS(3081), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3081), - [anon_sym_DOT] = ACTIONS(3081), - [anon_sym_as] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_RBRACE] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_SLASH] = ACTIONS(3081), - [anon_sym_PERCENT] = ACTIONS(3081), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_GT] = ACTIONS(3081), - [anon_sym_EQ_EQ] = ACTIONS(3081), - [anon_sym_BANG_EQ] = ACTIONS(3081), - [anon_sym_LT_EQ] = ACTIONS(3081), - [anon_sym_GT_EQ] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_struct] = ACTIONS(3081), - [anon_sym_mut] = ACTIONS(3081), - [anon_sym_PLUS_PLUS] = ACTIONS(3081), - [anon_sym_DASH_DASH] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(3081), - [anon_sym_BANG] = ACTIONS(3081), - [anon_sym_go] = ACTIONS(3081), - [anon_sym_spawn] = ACTIONS(3081), - [anon_sym_json_DOTdecode] = ACTIONS(3081), - [anon_sym_LBRACK2] = ACTIONS(3081), - [anon_sym_TILDE] = ACTIONS(3081), - [anon_sym_CARET] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_LT_DASH] = ACTIONS(3081), - [anon_sym_LT_LT] = ACTIONS(3081), - [anon_sym_GT_GT] = ACTIONS(3081), - [anon_sym_GT_GT_GT] = ACTIONS(3081), - [anon_sym_AMP_CARET] = ACTIONS(3081), - [anon_sym_AMP_AMP] = ACTIONS(3081), - [anon_sym_PIPE_PIPE] = ACTIONS(3081), - [anon_sym_or] = ACTIONS(3081), - [sym_none] = ACTIONS(3081), - [sym_true] = ACTIONS(3081), - [sym_false] = ACTIONS(3081), - [sym_nil] = ACTIONS(3081), - [anon_sym_QMARK_DOT] = ACTIONS(3081), - [anon_sym_POUND_LBRACK] = ACTIONS(3081), - [anon_sym_if] = ACTIONS(3081), - [anon_sym_DOLLARif] = ACTIONS(3081), - [anon_sym_is] = ACTIONS(3081), - [anon_sym_BANGis] = ACTIONS(3081), - [anon_sym_in] = ACTIONS(3081), - [anon_sym_BANGin] = ACTIONS(3081), - [anon_sym_match] = ACTIONS(3081), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3081), - [anon_sym_rlock] = ACTIONS(3081), - [anon_sym_unsafe] = ACTIONS(3081), - [anon_sym_sql] = ACTIONS(3081), - [sym_int_literal] = ACTIONS(3081), - [sym_float_literal] = ACTIONS(3081), - [sym_rune_literal] = ACTIONS(3081), - [anon_sym_AT] = ACTIONS(3081), - [anon_sym_shared] = ACTIONS(3081), - [anon_sym_map_LBRACK] = ACTIONS(3081), - [anon_sym_chan] = ACTIONS(3081), - [anon_sym_thread] = ACTIONS(3081), - [anon_sym_atomic] = ACTIONS(3081), - [sym___double_quote] = ACTIONS(3081), - [sym___single_quote] = ACTIONS(3081), - [sym___c_double_quote] = ACTIONS(3081), - [sym___c_single_quote] = ACTIONS(3081), - [sym___r_double_quote] = ACTIONS(3081), - [sym___r_single_quote] = ACTIONS(3081), + [1186] = { + [sym_identifier] = ACTIONS(2834), + [anon_sym_LF] = ACTIONS(2834), + [anon_sym_CR] = ACTIONS(2834), + [anon_sym_CR_LF] = ACTIONS(2834), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_DOT] = ACTIONS(2834), + [anon_sym_as] = ACTIONS(2834), + [anon_sym_LBRACE] = ACTIONS(2834), + [anon_sym_COMMA] = ACTIONS(2834), + [anon_sym_RBRACE] = ACTIONS(2834), + [anon_sym_LPAREN] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_fn] = ACTIONS(2834), + [anon_sym_PLUS] = ACTIONS(2834), + [anon_sym_DASH] = ACTIONS(2834), + [anon_sym_STAR] = ACTIONS(2834), + [anon_sym_SLASH] = ACTIONS(2834), + [anon_sym_PERCENT] = ACTIONS(2834), + [anon_sym_LT] = ACTIONS(2834), + [anon_sym_GT] = ACTIONS(2834), + [anon_sym_EQ_EQ] = ACTIONS(2834), + [anon_sym_BANG_EQ] = ACTIONS(2834), + [anon_sym_LT_EQ] = ACTIONS(2834), + [anon_sym_GT_EQ] = ACTIONS(2834), + [anon_sym_LBRACK] = ACTIONS(2832), + [anon_sym_struct] = ACTIONS(2834), + [anon_sym_mut] = ACTIONS(2834), + [anon_sym_PLUS_PLUS] = ACTIONS(2834), + [anon_sym_DASH_DASH] = ACTIONS(2834), + [anon_sym_QMARK] = ACTIONS(2834), + [anon_sym_BANG] = ACTIONS(2834), + [anon_sym_go] = ACTIONS(2834), + [anon_sym_spawn] = ACTIONS(2834), + [anon_sym_json_DOTdecode] = ACTIONS(2834), + [anon_sym_LBRACK2] = ACTIONS(2834), + [anon_sym_TILDE] = ACTIONS(2834), + [anon_sym_CARET] = ACTIONS(2834), + [anon_sym_AMP] = ACTIONS(2834), + [anon_sym_LT_DASH] = ACTIONS(2834), + [anon_sym_LT_LT] = ACTIONS(2834), + [anon_sym_GT_GT] = ACTIONS(2834), + [anon_sym_GT_GT_GT] = ACTIONS(2834), + [anon_sym_AMP_CARET] = ACTIONS(2834), + [anon_sym_AMP_AMP] = ACTIONS(2834), + [anon_sym_PIPE_PIPE] = ACTIONS(2834), + [anon_sym_or] = ACTIONS(2834), + [sym_none] = ACTIONS(2834), + [sym_true] = ACTIONS(2834), + [sym_false] = ACTIONS(2834), + [sym_nil] = ACTIONS(2834), + [anon_sym_QMARK_DOT] = ACTIONS(2834), + [anon_sym_POUND_LBRACK] = ACTIONS(2834), + [anon_sym_if] = ACTIONS(2834), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_is] = ACTIONS(2834), + [anon_sym_BANGis] = ACTIONS(2834), + [anon_sym_in] = ACTIONS(2834), + [anon_sym_BANGin] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2834), + [anon_sym_select] = ACTIONS(2834), + [anon_sym_lock] = ACTIONS(2834), + [anon_sym_rlock] = ACTIONS(2834), + [anon_sym_unsafe] = ACTIONS(2834), + [anon_sym_sql] = ACTIONS(2834), + [sym_int_literal] = ACTIONS(2834), + [sym_float_literal] = ACTIONS(2834), + [sym_rune_literal] = ACTIONS(2834), + [anon_sym_AT] = ACTIONS(2834), + [anon_sym_shared] = ACTIONS(2834), + [anon_sym_map_LBRACK] = ACTIONS(2834), + [anon_sym_chan] = ACTIONS(2834), + [anon_sym_thread] = ACTIONS(2834), + [anon_sym_atomic] = ACTIONS(2834), + [sym___double_quote] = ACTIONS(2834), + [sym___single_quote] = ACTIONS(2834), + [sym___c_double_quote] = ACTIONS(2834), + [sym___c_single_quote] = ACTIONS(2834), + [sym___r_double_quote] = ACTIONS(2834), + [sym___r_single_quote] = ACTIONS(2834), }, - [1207] = { - [sym_identifier] = ACTIONS(2700), - [anon_sym_LF] = ACTIONS(2700), - [anon_sym_CR] = ACTIONS(2700), - [anon_sym_CR_LF] = ACTIONS(2700), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_COMMA] = ACTIONS(2700), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2700), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2700), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2700), - [anon_sym_AMP_CARET] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2700), - [anon_sym_POUND_LBRACK] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2700), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2700), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), - [sym_rune_literal] = ACTIONS(2700), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2700), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2700), - [sym___single_quote] = ACTIONS(2700), - [sym___c_double_quote] = ACTIONS(2700), - [sym___c_single_quote] = ACTIONS(2700), - [sym___r_double_quote] = ACTIONS(2700), - [sym___r_single_quote] = ACTIONS(2700), + [1187] = { + [sym_identifier] = ACTIONS(3114), + [anon_sym_LF] = ACTIONS(3114), + [anon_sym_CR] = ACTIONS(3114), + [anon_sym_CR_LF] = ACTIONS(3114), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3114), + [anon_sym_DOT] = ACTIONS(3114), + [anon_sym_as] = ACTIONS(3114), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_COMMA] = ACTIONS(3114), + [anon_sym_RBRACE] = ACTIONS(3114), + [anon_sym_LPAREN] = ACTIONS(3114), + [anon_sym_PIPE] = ACTIONS(3114), + [anon_sym_fn] = ACTIONS(3114), + [anon_sym_PLUS] = ACTIONS(3114), + [anon_sym_DASH] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(3114), + [anon_sym_SLASH] = ACTIONS(3114), + [anon_sym_PERCENT] = ACTIONS(3114), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_GT] = ACTIONS(3114), + [anon_sym_EQ_EQ] = ACTIONS(3114), + [anon_sym_BANG_EQ] = ACTIONS(3114), + [anon_sym_LT_EQ] = ACTIONS(3114), + [anon_sym_GT_EQ] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(3112), + [anon_sym_struct] = ACTIONS(3114), + [anon_sym_mut] = ACTIONS(3114), + [anon_sym_PLUS_PLUS] = ACTIONS(3114), + [anon_sym_DASH_DASH] = ACTIONS(3114), + [anon_sym_QMARK] = ACTIONS(3114), + [anon_sym_BANG] = ACTIONS(3114), + [anon_sym_go] = ACTIONS(3114), + [anon_sym_spawn] = ACTIONS(3114), + [anon_sym_json_DOTdecode] = ACTIONS(3114), + [anon_sym_LBRACK2] = ACTIONS(3114), + [anon_sym_TILDE] = ACTIONS(3114), + [anon_sym_CARET] = ACTIONS(3114), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_LT_DASH] = ACTIONS(3114), + [anon_sym_LT_LT] = ACTIONS(3114), + [anon_sym_GT_GT] = ACTIONS(3114), + [anon_sym_GT_GT_GT] = ACTIONS(3114), + [anon_sym_AMP_CARET] = ACTIONS(3114), + [anon_sym_AMP_AMP] = ACTIONS(3114), + [anon_sym_PIPE_PIPE] = ACTIONS(3114), + [anon_sym_or] = ACTIONS(3114), + [sym_none] = ACTIONS(3114), + [sym_true] = ACTIONS(3114), + [sym_false] = ACTIONS(3114), + [sym_nil] = ACTIONS(3114), + [anon_sym_QMARK_DOT] = ACTIONS(3114), + [anon_sym_POUND_LBRACK] = ACTIONS(3114), + [anon_sym_if] = ACTIONS(3114), + [anon_sym_DOLLARif] = ACTIONS(3114), + [anon_sym_is] = ACTIONS(3114), + [anon_sym_BANGis] = ACTIONS(3114), + [anon_sym_in] = ACTIONS(3114), + [anon_sym_BANGin] = ACTIONS(3114), + [anon_sym_match] = ACTIONS(3114), + [anon_sym_select] = ACTIONS(3114), + [anon_sym_lock] = ACTIONS(3114), + [anon_sym_rlock] = ACTIONS(3114), + [anon_sym_unsafe] = ACTIONS(3114), + [anon_sym_sql] = ACTIONS(3114), + [sym_int_literal] = ACTIONS(3114), + [sym_float_literal] = ACTIONS(3114), + [sym_rune_literal] = ACTIONS(3114), + [anon_sym_AT] = ACTIONS(3114), + [anon_sym_shared] = ACTIONS(3114), + [anon_sym_map_LBRACK] = ACTIONS(3114), + [anon_sym_chan] = ACTIONS(3114), + [anon_sym_thread] = ACTIONS(3114), + [anon_sym_atomic] = ACTIONS(3114), + [sym___double_quote] = ACTIONS(3114), + [sym___single_quote] = ACTIONS(3114), + [sym___c_double_quote] = ACTIONS(3114), + [sym___c_single_quote] = ACTIONS(3114), + [sym___r_double_quote] = ACTIONS(3114), + [sym___r_single_quote] = ACTIONS(3114), }, - [1208] = { - [sym_identifier] = ACTIONS(3113), - [anon_sym_LF] = ACTIONS(3113), - [anon_sym_CR] = ACTIONS(3113), - [anon_sym_CR_LF] = ACTIONS(3113), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3113), - [anon_sym_DOT] = ACTIONS(3113), - [anon_sym_as] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(3113), - [anon_sym_RBRACE] = ACTIONS(3113), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_PIPE] = ACTIONS(3113), - [anon_sym_fn] = ACTIONS(3113), - [anon_sym_PLUS] = ACTIONS(3113), - [anon_sym_DASH] = ACTIONS(3113), - [anon_sym_STAR] = ACTIONS(3113), - [anon_sym_SLASH] = ACTIONS(3113), - [anon_sym_PERCENT] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3113), - [anon_sym_EQ_EQ] = ACTIONS(3113), - [anon_sym_BANG_EQ] = ACTIONS(3113), - [anon_sym_LT_EQ] = ACTIONS(3113), - [anon_sym_GT_EQ] = ACTIONS(3113), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3113), - [anon_sym_mut] = ACTIONS(3113), - [anon_sym_PLUS_PLUS] = ACTIONS(3113), - [anon_sym_DASH_DASH] = ACTIONS(3113), - [anon_sym_QMARK] = ACTIONS(3113), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(3113), - [anon_sym_spawn] = ACTIONS(3113), - [anon_sym_json_DOTdecode] = ACTIONS(3113), - [anon_sym_LBRACK2] = ACTIONS(3113), - [anon_sym_TILDE] = ACTIONS(3113), - [anon_sym_CARET] = ACTIONS(3113), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT_DASH] = ACTIONS(3113), - [anon_sym_LT_LT] = ACTIONS(3113), - [anon_sym_GT_GT] = ACTIONS(3113), - [anon_sym_GT_GT_GT] = ACTIONS(3113), - [anon_sym_AMP_CARET] = ACTIONS(3113), - [anon_sym_AMP_AMP] = ACTIONS(3113), - [anon_sym_PIPE_PIPE] = ACTIONS(3113), - [anon_sym_or] = ACTIONS(3113), - [sym_none] = ACTIONS(3113), - [sym_true] = ACTIONS(3113), - [sym_false] = ACTIONS(3113), - [sym_nil] = ACTIONS(3113), - [anon_sym_QMARK_DOT] = ACTIONS(3113), - [anon_sym_POUND_LBRACK] = ACTIONS(3113), - [anon_sym_if] = ACTIONS(3113), - [anon_sym_DOLLARif] = ACTIONS(3113), - [anon_sym_is] = ACTIONS(3113), - [anon_sym_BANGis] = ACTIONS(3113), - [anon_sym_in] = ACTIONS(3113), - [anon_sym_BANGin] = ACTIONS(3113), - [anon_sym_match] = ACTIONS(3113), - [anon_sym_select] = ACTIONS(3113), - [anon_sym_lock] = ACTIONS(3113), - [anon_sym_rlock] = ACTIONS(3113), - [anon_sym_unsafe] = ACTIONS(3113), - [anon_sym_sql] = ACTIONS(3113), - [sym_int_literal] = ACTIONS(3113), - [sym_float_literal] = ACTIONS(3113), - [sym_rune_literal] = ACTIONS(3113), - [anon_sym_AT] = ACTIONS(3113), - [anon_sym_shared] = ACTIONS(3113), - [anon_sym_map_LBRACK] = ACTIONS(3113), - [anon_sym_chan] = ACTIONS(3113), - [anon_sym_thread] = ACTIONS(3113), - [anon_sym_atomic] = ACTIONS(3113), - [sym___double_quote] = ACTIONS(3113), - [sym___single_quote] = ACTIONS(3113), - [sym___c_double_quote] = ACTIONS(3113), - [sym___c_single_quote] = ACTIONS(3113), - [sym___r_double_quote] = ACTIONS(3113), - [sym___r_single_quote] = ACTIONS(3113), + [1188] = { + [sym_identifier] = ACTIONS(3133), + [anon_sym_LF] = ACTIONS(3133), + [anon_sym_CR] = ACTIONS(3133), + [anon_sym_CR_LF] = ACTIONS(3133), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3133), + [anon_sym_DOT] = ACTIONS(3133), + [anon_sym_as] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3133), + [anon_sym_COMMA] = ACTIONS(3133), + [anon_sym_RBRACE] = ACTIONS(3133), + [anon_sym_LPAREN] = ACTIONS(3133), + [anon_sym_PIPE] = ACTIONS(3133), + [anon_sym_fn] = ACTIONS(3133), + [anon_sym_PLUS] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(3133), + [anon_sym_SLASH] = ACTIONS(3133), + [anon_sym_PERCENT] = ACTIONS(3133), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_LT_EQ] = ACTIONS(3133), + [anon_sym_GT_EQ] = ACTIONS(3133), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_struct] = ACTIONS(3133), + [anon_sym_mut] = ACTIONS(3133), + [anon_sym_PLUS_PLUS] = ACTIONS(3133), + [anon_sym_DASH_DASH] = ACTIONS(3133), + [anon_sym_QMARK] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_go] = ACTIONS(3133), + [anon_sym_spawn] = ACTIONS(3133), + [anon_sym_json_DOTdecode] = ACTIONS(3133), + [anon_sym_LBRACK2] = ACTIONS(3133), + [anon_sym_TILDE] = ACTIONS(3133), + [anon_sym_CARET] = ACTIONS(3133), + [anon_sym_AMP] = ACTIONS(3133), + [anon_sym_LT_DASH] = ACTIONS(3133), + [anon_sym_LT_LT] = ACTIONS(3133), + [anon_sym_GT_GT] = ACTIONS(3133), + [anon_sym_GT_GT_GT] = ACTIONS(3133), + [anon_sym_AMP_CARET] = ACTIONS(3133), + [anon_sym_AMP_AMP] = ACTIONS(3133), + [anon_sym_PIPE_PIPE] = ACTIONS(3133), + [anon_sym_or] = ACTIONS(3133), + [sym_none] = ACTIONS(3133), + [sym_true] = ACTIONS(3133), + [sym_false] = ACTIONS(3133), + [sym_nil] = ACTIONS(3133), + [anon_sym_QMARK_DOT] = ACTIONS(3133), + [anon_sym_POUND_LBRACK] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_DOLLARif] = ACTIONS(3133), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3133), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_BANGin] = ACTIONS(3133), + [anon_sym_match] = ACTIONS(3133), + [anon_sym_select] = ACTIONS(3133), + [anon_sym_lock] = ACTIONS(3133), + [anon_sym_rlock] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(3133), + [anon_sym_sql] = ACTIONS(3133), + [sym_int_literal] = ACTIONS(3133), + [sym_float_literal] = ACTIONS(3133), + [sym_rune_literal] = ACTIONS(3133), + [anon_sym_AT] = ACTIONS(3133), + [anon_sym_shared] = ACTIONS(3133), + [anon_sym_map_LBRACK] = ACTIONS(3133), + [anon_sym_chan] = ACTIONS(3133), + [anon_sym_thread] = ACTIONS(3133), + [anon_sym_atomic] = ACTIONS(3133), + [sym___double_quote] = ACTIONS(3133), + [sym___single_quote] = ACTIONS(3133), + [sym___c_double_quote] = ACTIONS(3133), + [sym___c_single_quote] = ACTIONS(3133), + [sym___r_double_quote] = ACTIONS(3133), + [sym___r_single_quote] = ACTIONS(3133), }, - [1209] = { - [sym_identifier] = ACTIONS(2828), - [anon_sym_LF] = ACTIONS(2828), - [anon_sym_CR] = ACTIONS(2828), - [anon_sym_CR_LF] = ACTIONS(2828), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2828), - [anon_sym_DOT] = ACTIONS(2828), - [anon_sym_as] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2828), - [anon_sym_COMMA] = ACTIONS(2828), - [anon_sym_RBRACE] = ACTIONS(2828), - [anon_sym_LPAREN] = ACTIONS(2828), - [anon_sym_PIPE] = ACTIONS(2828), - [anon_sym_fn] = ACTIONS(2828), - [anon_sym_PLUS] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_SLASH] = ACTIONS(2828), - [anon_sym_PERCENT] = ACTIONS(2828), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_GT] = ACTIONS(2828), - [anon_sym_EQ_EQ] = ACTIONS(2828), - [anon_sym_BANG_EQ] = ACTIONS(2828), - [anon_sym_LT_EQ] = ACTIONS(2828), - [anon_sym_GT_EQ] = ACTIONS(2828), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2828), - [anon_sym_mut] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2828), - [anon_sym_DASH_DASH] = ACTIONS(2828), - [anon_sym_QMARK] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_go] = ACTIONS(2828), - [anon_sym_spawn] = ACTIONS(2828), - [anon_sym_json_DOTdecode] = ACTIONS(2828), - [anon_sym_LBRACK2] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_CARET] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2828), - [anon_sym_LT_DASH] = ACTIONS(2828), - [anon_sym_LT_LT] = ACTIONS(2828), - [anon_sym_GT_GT] = ACTIONS(2828), - [anon_sym_GT_GT_GT] = ACTIONS(2828), - [anon_sym_AMP_CARET] = ACTIONS(2828), - [anon_sym_AMP_AMP] = ACTIONS(2828), - [anon_sym_PIPE_PIPE] = ACTIONS(2828), - [anon_sym_or] = ACTIONS(2828), - [sym_none] = ACTIONS(2828), - [sym_true] = ACTIONS(2828), - [sym_false] = ACTIONS(2828), - [sym_nil] = ACTIONS(2828), - [anon_sym_QMARK_DOT] = ACTIONS(2828), - [anon_sym_POUND_LBRACK] = ACTIONS(2828), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_DOLLARif] = ACTIONS(2828), - [anon_sym_is] = ACTIONS(2828), - [anon_sym_BANGis] = ACTIONS(2828), - [anon_sym_in] = ACTIONS(2828), - [anon_sym_BANGin] = ACTIONS(2828), - [anon_sym_match] = ACTIONS(2828), - [anon_sym_select] = ACTIONS(2828), - [anon_sym_lock] = ACTIONS(2828), - [anon_sym_rlock] = ACTIONS(2828), - [anon_sym_unsafe] = ACTIONS(2828), - [anon_sym_sql] = ACTIONS(2828), - [sym_int_literal] = ACTIONS(2828), - [sym_float_literal] = ACTIONS(2828), - [sym_rune_literal] = ACTIONS(2828), - [anon_sym_AT] = ACTIONS(2828), - [anon_sym_shared] = ACTIONS(2828), - [anon_sym_map_LBRACK] = ACTIONS(2828), - [anon_sym_chan] = ACTIONS(2828), - [anon_sym_thread] = ACTIONS(2828), - [anon_sym_atomic] = ACTIONS(2828), - [sym___double_quote] = ACTIONS(2828), - [sym___single_quote] = ACTIONS(2828), - [sym___c_double_quote] = ACTIONS(2828), - [sym___c_single_quote] = ACTIONS(2828), - [sym___r_double_quote] = ACTIONS(2828), - [sym___r_single_quote] = ACTIONS(2828), + [1189] = { + [sym_identifier] = ACTIONS(3151), + [anon_sym_LF] = ACTIONS(3151), + [anon_sym_CR] = ACTIONS(3151), + [anon_sym_CR_LF] = ACTIONS(3151), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3151), + [anon_sym_DOT] = ACTIONS(3151), + [anon_sym_as] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_COMMA] = ACTIONS(3151), + [anon_sym_RBRACE] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_PIPE] = ACTIONS(3151), + [anon_sym_fn] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_SLASH] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(3151), + [anon_sym_GT] = ACTIONS(3151), + [anon_sym_EQ_EQ] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3151), + [anon_sym_LT_EQ] = ACTIONS(3151), + [anon_sym_GT_EQ] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_struct] = ACTIONS(3151), + [anon_sym_mut] = ACTIONS(3151), + [anon_sym_PLUS_PLUS] = ACTIONS(3151), + [anon_sym_DASH_DASH] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3151), + [anon_sym_BANG] = ACTIONS(3151), + [anon_sym_go] = ACTIONS(3151), + [anon_sym_spawn] = ACTIONS(3151), + [anon_sym_json_DOTdecode] = ACTIONS(3151), + [anon_sym_LBRACK2] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3151), + [anon_sym_CARET] = ACTIONS(3151), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LT_DASH] = ACTIONS(3151), + [anon_sym_LT_LT] = ACTIONS(3151), + [anon_sym_GT_GT] = ACTIONS(3151), + [anon_sym_GT_GT_GT] = ACTIONS(3151), + [anon_sym_AMP_CARET] = ACTIONS(3151), + [anon_sym_AMP_AMP] = ACTIONS(3151), + [anon_sym_PIPE_PIPE] = ACTIONS(3151), + [anon_sym_or] = ACTIONS(3151), + [sym_none] = ACTIONS(3151), + [sym_true] = ACTIONS(3151), + [sym_false] = ACTIONS(3151), + [sym_nil] = ACTIONS(3151), + [anon_sym_QMARK_DOT] = ACTIONS(3151), + [anon_sym_POUND_LBRACK] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_DOLLARif] = ACTIONS(3151), + [anon_sym_is] = ACTIONS(3151), + [anon_sym_BANGis] = ACTIONS(3151), + [anon_sym_in] = ACTIONS(3151), + [anon_sym_BANGin] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(3151), + [anon_sym_select] = ACTIONS(3151), + [anon_sym_lock] = ACTIONS(3151), + [anon_sym_rlock] = ACTIONS(3151), + [anon_sym_unsafe] = ACTIONS(3151), + [anon_sym_sql] = ACTIONS(3151), + [sym_int_literal] = ACTIONS(3151), + [sym_float_literal] = ACTIONS(3151), + [sym_rune_literal] = ACTIONS(3151), + [anon_sym_AT] = ACTIONS(3151), + [anon_sym_shared] = ACTIONS(3151), + [anon_sym_map_LBRACK] = ACTIONS(3151), + [anon_sym_chan] = ACTIONS(3151), + [anon_sym_thread] = ACTIONS(3151), + [anon_sym_atomic] = ACTIONS(3151), + [sym___double_quote] = ACTIONS(3151), + [sym___single_quote] = ACTIONS(3151), + [sym___c_double_quote] = ACTIONS(3151), + [sym___c_single_quote] = ACTIONS(3151), + [sym___r_double_quote] = ACTIONS(3151), + [sym___r_single_quote] = ACTIONS(3151), }, - [1210] = { - [sym_identifier] = ACTIONS(2800), - [anon_sym_LF] = ACTIONS(2800), - [anon_sym_CR] = ACTIONS(2800), - [anon_sym_CR_LF] = ACTIONS(2800), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2800), - [anon_sym_DOT] = ACTIONS(2800), - [anon_sym_as] = ACTIONS(2800), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_COMMA] = ACTIONS(2800), - [anon_sym_RBRACE] = ACTIONS(2800), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_PIPE] = ACTIONS(2800), - [anon_sym_fn] = ACTIONS(2800), - [anon_sym_PLUS] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(2800), - [anon_sym_STAR] = ACTIONS(2800), - [anon_sym_SLASH] = ACTIONS(2800), - [anon_sym_PERCENT] = ACTIONS(2800), - [anon_sym_LT] = ACTIONS(2800), - [anon_sym_GT] = ACTIONS(2800), - [anon_sym_EQ_EQ] = ACTIONS(2800), - [anon_sym_BANG_EQ] = ACTIONS(2800), - [anon_sym_LT_EQ] = ACTIONS(2800), - [anon_sym_GT_EQ] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2798), - [anon_sym_struct] = ACTIONS(2800), - [anon_sym_mut] = ACTIONS(2800), - [anon_sym_PLUS_PLUS] = ACTIONS(2800), - [anon_sym_DASH_DASH] = ACTIONS(2800), - [anon_sym_QMARK] = ACTIONS(2800), - [anon_sym_BANG] = ACTIONS(2800), - [anon_sym_go] = ACTIONS(2800), - [anon_sym_spawn] = ACTIONS(2800), - [anon_sym_json_DOTdecode] = ACTIONS(2800), - [anon_sym_LBRACK2] = ACTIONS(2800), - [anon_sym_TILDE] = ACTIONS(2800), - [anon_sym_CARET] = ACTIONS(2800), - [anon_sym_AMP] = ACTIONS(2800), - [anon_sym_LT_DASH] = ACTIONS(2800), - [anon_sym_LT_LT] = ACTIONS(2800), - [anon_sym_GT_GT] = ACTIONS(2800), - [anon_sym_GT_GT_GT] = ACTIONS(2800), - [anon_sym_AMP_CARET] = ACTIONS(2800), - [anon_sym_AMP_AMP] = ACTIONS(2800), - [anon_sym_PIPE_PIPE] = ACTIONS(2800), - [anon_sym_or] = ACTIONS(2800), - [sym_none] = ACTIONS(2800), - [sym_true] = ACTIONS(2800), - [sym_false] = ACTIONS(2800), - [sym_nil] = ACTIONS(2800), - [anon_sym_QMARK_DOT] = ACTIONS(2800), - [anon_sym_POUND_LBRACK] = ACTIONS(2800), - [anon_sym_if] = ACTIONS(2800), - [anon_sym_DOLLARif] = ACTIONS(2800), - [anon_sym_is] = ACTIONS(2800), - [anon_sym_BANGis] = ACTIONS(2800), - [anon_sym_in] = ACTIONS(2800), - [anon_sym_BANGin] = ACTIONS(2800), - [anon_sym_match] = ACTIONS(2800), - [anon_sym_select] = ACTIONS(2800), - [anon_sym_lock] = ACTIONS(2800), - [anon_sym_rlock] = ACTIONS(2800), - [anon_sym_unsafe] = ACTIONS(2800), - [anon_sym_sql] = ACTIONS(2800), - [sym_int_literal] = ACTIONS(2800), - [sym_float_literal] = ACTIONS(2800), - [sym_rune_literal] = ACTIONS(2800), - [anon_sym_AT] = ACTIONS(2800), - [anon_sym_shared] = ACTIONS(2800), - [anon_sym_map_LBRACK] = ACTIONS(2800), - [anon_sym_chan] = ACTIONS(2800), - [anon_sym_thread] = ACTIONS(2800), - [anon_sym_atomic] = ACTIONS(2800), - [sym___double_quote] = ACTIONS(2800), - [sym___single_quote] = ACTIONS(2800), - [sym___c_double_quote] = ACTIONS(2800), - [sym___c_single_quote] = ACTIONS(2800), - [sym___r_double_quote] = ACTIONS(2800), - [sym___r_single_quote] = ACTIONS(2800), + [1190] = { + [sym_identifier] = ACTIONS(3155), + [anon_sym_LF] = ACTIONS(3155), + [anon_sym_CR] = ACTIONS(3155), + [anon_sym_CR_LF] = ACTIONS(3155), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3155), + [anon_sym_DOT] = ACTIONS(3155), + [anon_sym_as] = ACTIONS(3155), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_COMMA] = ACTIONS(3155), + [anon_sym_RBRACE] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_PIPE] = ACTIONS(3155), + [anon_sym_fn] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_SLASH] = ACTIONS(3155), + [anon_sym_PERCENT] = ACTIONS(3155), + [anon_sym_LT] = ACTIONS(3155), + [anon_sym_GT] = ACTIONS(3155), + [anon_sym_EQ_EQ] = ACTIONS(3155), + [anon_sym_BANG_EQ] = ACTIONS(3155), + [anon_sym_LT_EQ] = ACTIONS(3155), + [anon_sym_GT_EQ] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3153), + [anon_sym_struct] = ACTIONS(3155), + [anon_sym_mut] = ACTIONS(3155), + [anon_sym_PLUS_PLUS] = ACTIONS(3155), + [anon_sym_DASH_DASH] = ACTIONS(3155), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3155), + [anon_sym_go] = ACTIONS(3155), + [anon_sym_spawn] = ACTIONS(3155), + [anon_sym_json_DOTdecode] = ACTIONS(3155), + [anon_sym_LBRACK2] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_CARET] = ACTIONS(3155), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_LT_DASH] = ACTIONS(3155), + [anon_sym_LT_LT] = ACTIONS(3155), + [anon_sym_GT_GT] = ACTIONS(3155), + [anon_sym_GT_GT_GT] = ACTIONS(3155), + [anon_sym_AMP_CARET] = ACTIONS(3155), + [anon_sym_AMP_AMP] = ACTIONS(3155), + [anon_sym_PIPE_PIPE] = ACTIONS(3155), + [anon_sym_or] = ACTIONS(3155), + [sym_none] = ACTIONS(3155), + [sym_true] = ACTIONS(3155), + [sym_false] = ACTIONS(3155), + [sym_nil] = ACTIONS(3155), + [anon_sym_QMARK_DOT] = ACTIONS(3155), + [anon_sym_POUND_LBRACK] = ACTIONS(3155), + [anon_sym_if] = ACTIONS(3155), + [anon_sym_DOLLARif] = ACTIONS(3155), + [anon_sym_is] = ACTIONS(3155), + [anon_sym_BANGis] = ACTIONS(3155), + [anon_sym_in] = ACTIONS(3155), + [anon_sym_BANGin] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3155), + [anon_sym_select] = ACTIONS(3155), + [anon_sym_lock] = ACTIONS(3155), + [anon_sym_rlock] = ACTIONS(3155), + [anon_sym_unsafe] = ACTIONS(3155), + [anon_sym_sql] = ACTIONS(3155), + [sym_int_literal] = ACTIONS(3155), + [sym_float_literal] = ACTIONS(3155), + [sym_rune_literal] = ACTIONS(3155), + [anon_sym_AT] = ACTIONS(3155), + [anon_sym_shared] = ACTIONS(3155), + [anon_sym_map_LBRACK] = ACTIONS(3155), + [anon_sym_chan] = ACTIONS(3155), + [anon_sym_thread] = ACTIONS(3155), + [anon_sym_atomic] = ACTIONS(3155), + [sym___double_quote] = ACTIONS(3155), + [sym___single_quote] = ACTIONS(3155), + [sym___c_double_quote] = ACTIONS(3155), + [sym___c_single_quote] = ACTIONS(3155), + [sym___r_double_quote] = ACTIONS(3155), + [sym___r_single_quote] = ACTIONS(3155), }, - [1211] = { - [sym_identifier] = ACTIONS(2804), - [anon_sym_LF] = ACTIONS(2804), - [anon_sym_CR] = ACTIONS(2804), - [anon_sym_CR_LF] = ACTIONS(2804), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2804), - [anon_sym_DOT] = ACTIONS(2804), - [anon_sym_as] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_RBRACE] = ACTIONS(2804), - [anon_sym_LPAREN] = ACTIONS(2804), - [anon_sym_PIPE] = ACTIONS(2804), - [anon_sym_fn] = ACTIONS(2804), - [anon_sym_PLUS] = ACTIONS(2804), - [anon_sym_DASH] = ACTIONS(2804), - [anon_sym_STAR] = ACTIONS(2804), - [anon_sym_SLASH] = ACTIONS(2804), - [anon_sym_PERCENT] = ACTIONS(2804), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_GT] = ACTIONS(2804), - [anon_sym_EQ_EQ] = ACTIONS(2804), - [anon_sym_BANG_EQ] = ACTIONS(2804), - [anon_sym_LT_EQ] = ACTIONS(2804), - [anon_sym_GT_EQ] = ACTIONS(2804), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_struct] = ACTIONS(2804), - [anon_sym_mut] = ACTIONS(2804), - [anon_sym_PLUS_PLUS] = ACTIONS(2804), - [anon_sym_DASH_DASH] = ACTIONS(2804), - [anon_sym_QMARK] = ACTIONS(2804), - [anon_sym_BANG] = ACTIONS(2804), - [anon_sym_go] = ACTIONS(2804), - [anon_sym_spawn] = ACTIONS(2804), - [anon_sym_json_DOTdecode] = ACTIONS(2804), - [anon_sym_LBRACK2] = ACTIONS(2804), - [anon_sym_TILDE] = ACTIONS(2804), - [anon_sym_CARET] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2804), - [anon_sym_LT_DASH] = ACTIONS(2804), - [anon_sym_LT_LT] = ACTIONS(2804), - [anon_sym_GT_GT] = ACTIONS(2804), - [anon_sym_GT_GT_GT] = ACTIONS(2804), - [anon_sym_AMP_CARET] = ACTIONS(2804), - [anon_sym_AMP_AMP] = ACTIONS(2804), - [anon_sym_PIPE_PIPE] = ACTIONS(2804), - [anon_sym_or] = ACTIONS(2804), - [sym_none] = ACTIONS(2804), - [sym_true] = ACTIONS(2804), - [sym_false] = ACTIONS(2804), - [sym_nil] = ACTIONS(2804), - [anon_sym_QMARK_DOT] = ACTIONS(2804), - [anon_sym_POUND_LBRACK] = ACTIONS(2804), - [anon_sym_if] = ACTIONS(2804), - [anon_sym_DOLLARif] = ACTIONS(2804), - [anon_sym_is] = ACTIONS(2804), - [anon_sym_BANGis] = ACTIONS(2804), - [anon_sym_in] = ACTIONS(2804), - [anon_sym_BANGin] = ACTIONS(2804), - [anon_sym_match] = ACTIONS(2804), - [anon_sym_select] = ACTIONS(2804), - [anon_sym_lock] = ACTIONS(2804), - [anon_sym_rlock] = ACTIONS(2804), - [anon_sym_unsafe] = ACTIONS(2804), - [anon_sym_sql] = ACTIONS(2804), - [sym_int_literal] = ACTIONS(2804), - [sym_float_literal] = ACTIONS(2804), - [sym_rune_literal] = ACTIONS(2804), - [anon_sym_AT] = ACTIONS(2804), - [anon_sym_shared] = ACTIONS(2804), - [anon_sym_map_LBRACK] = ACTIONS(2804), - [anon_sym_chan] = ACTIONS(2804), - [anon_sym_thread] = ACTIONS(2804), - [anon_sym_atomic] = ACTIONS(2804), - [sym___double_quote] = ACTIONS(2804), - [sym___single_quote] = ACTIONS(2804), - [sym___c_double_quote] = ACTIONS(2804), - [sym___c_single_quote] = ACTIONS(2804), - [sym___r_double_quote] = ACTIONS(2804), - [sym___r_single_quote] = ACTIONS(2804), + [1191] = { + [sym_identifier] = ACTIONS(2740), + [anon_sym_LF] = ACTIONS(2740), + [anon_sym_CR] = ACTIONS(2740), + [anon_sym_CR_LF] = ACTIONS(2740), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2740), + [anon_sym_DOT] = ACTIONS(2740), + [anon_sym_as] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2740), + [anon_sym_COMMA] = ACTIONS(2740), + [anon_sym_RBRACE] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(2740), + [anon_sym_PIPE] = ACTIONS(2740), + [anon_sym_fn] = ACTIONS(2740), + [anon_sym_PLUS] = ACTIONS(2740), + [anon_sym_DASH] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_SLASH] = ACTIONS(2740), + [anon_sym_PERCENT] = ACTIONS(2740), + [anon_sym_LT] = ACTIONS(2740), + [anon_sym_GT] = ACTIONS(2740), + [anon_sym_EQ_EQ] = ACTIONS(2740), + [anon_sym_BANG_EQ] = ACTIONS(2740), + [anon_sym_LT_EQ] = ACTIONS(2740), + [anon_sym_GT_EQ] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(2738), + [anon_sym_struct] = ACTIONS(2740), + [anon_sym_mut] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2740), + [anon_sym_DASH_DASH] = ACTIONS(2740), + [anon_sym_QMARK] = ACTIONS(2740), + [anon_sym_BANG] = ACTIONS(2740), + [anon_sym_go] = ACTIONS(2740), + [anon_sym_spawn] = ACTIONS(2740), + [anon_sym_json_DOTdecode] = ACTIONS(2740), + [anon_sym_LBRACK2] = ACTIONS(2740), + [anon_sym_TILDE] = ACTIONS(2740), + [anon_sym_CARET] = ACTIONS(2740), + [anon_sym_AMP] = ACTIONS(2740), + [anon_sym_LT_DASH] = ACTIONS(2740), + [anon_sym_LT_LT] = ACTIONS(2740), + [anon_sym_GT_GT] = ACTIONS(2740), + [anon_sym_GT_GT_GT] = ACTIONS(2740), + [anon_sym_AMP_CARET] = ACTIONS(2740), + [anon_sym_AMP_AMP] = ACTIONS(2740), + [anon_sym_PIPE_PIPE] = ACTIONS(2740), + [anon_sym_or] = ACTIONS(2740), + [sym_none] = ACTIONS(2740), + [sym_true] = ACTIONS(2740), + [sym_false] = ACTIONS(2740), + [sym_nil] = ACTIONS(2740), + [anon_sym_QMARK_DOT] = ACTIONS(2740), + [anon_sym_POUND_LBRACK] = ACTIONS(2740), + [anon_sym_if] = ACTIONS(2740), + [anon_sym_DOLLARif] = ACTIONS(2740), + [anon_sym_is] = ACTIONS(2740), + [anon_sym_BANGis] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2740), + [anon_sym_BANGin] = ACTIONS(2740), + [anon_sym_match] = ACTIONS(2740), + [anon_sym_select] = ACTIONS(2740), + [anon_sym_lock] = ACTIONS(2740), + [anon_sym_rlock] = ACTIONS(2740), + [anon_sym_unsafe] = ACTIONS(2740), + [anon_sym_sql] = ACTIONS(2740), + [sym_int_literal] = ACTIONS(2740), + [sym_float_literal] = ACTIONS(2740), + [sym_rune_literal] = ACTIONS(2740), + [anon_sym_AT] = ACTIONS(2740), + [anon_sym_shared] = ACTIONS(2740), + [anon_sym_map_LBRACK] = ACTIONS(2740), + [anon_sym_chan] = ACTIONS(2740), + [anon_sym_thread] = ACTIONS(2740), + [anon_sym_atomic] = ACTIONS(2740), + [sym___double_quote] = ACTIONS(2740), + [sym___single_quote] = ACTIONS(2740), + [sym___c_double_quote] = ACTIONS(2740), + [sym___c_single_quote] = ACTIONS(2740), + [sym___r_double_quote] = ACTIONS(2740), + [sym___r_single_quote] = ACTIONS(2740), }, - [1212] = { - [sym_identifier] = ACTIONS(2816), - [anon_sym_LF] = ACTIONS(2816), - [anon_sym_CR] = ACTIONS(2816), - [anon_sym_CR_LF] = ACTIONS(2816), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_DOT] = ACTIONS(2816), - [anon_sym_as] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2816), - [anon_sym_COMMA] = ACTIONS(2816), - [anon_sym_RBRACE] = ACTIONS(2816), - [anon_sym_LPAREN] = ACTIONS(2816), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_fn] = ACTIONS(2816), - [anon_sym_PLUS] = ACTIONS(2816), - [anon_sym_DASH] = ACTIONS(2816), - [anon_sym_STAR] = ACTIONS(2816), - [anon_sym_SLASH] = ACTIONS(2816), - [anon_sym_PERCENT] = ACTIONS(2816), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_EQ_EQ] = ACTIONS(2816), - [anon_sym_BANG_EQ] = ACTIONS(2816), - [anon_sym_LT_EQ] = ACTIONS(2816), - [anon_sym_GT_EQ] = ACTIONS(2816), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_struct] = ACTIONS(2816), - [anon_sym_mut] = ACTIONS(2816), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_DASH_DASH] = ACTIONS(2816), - [anon_sym_QMARK] = ACTIONS(2816), - [anon_sym_BANG] = ACTIONS(2816), - [anon_sym_go] = ACTIONS(2816), - [anon_sym_spawn] = ACTIONS(2816), - [anon_sym_json_DOTdecode] = ACTIONS(2816), - [anon_sym_LBRACK2] = ACTIONS(2816), - [anon_sym_TILDE] = ACTIONS(2816), - [anon_sym_CARET] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2816), - [anon_sym_LT_DASH] = ACTIONS(2816), - [anon_sym_LT_LT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(2816), - [anon_sym_GT_GT_GT] = ACTIONS(2816), - [anon_sym_AMP_CARET] = ACTIONS(2816), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_PIPE_PIPE] = ACTIONS(2816), - [anon_sym_or] = ACTIONS(2816), - [sym_none] = ACTIONS(2816), - [sym_true] = ACTIONS(2816), - [sym_false] = ACTIONS(2816), - [sym_nil] = ACTIONS(2816), - [anon_sym_QMARK_DOT] = ACTIONS(2816), - [anon_sym_POUND_LBRACK] = ACTIONS(2816), - [anon_sym_if] = ACTIONS(2816), - [anon_sym_DOLLARif] = ACTIONS(2816), - [anon_sym_is] = ACTIONS(2816), - [anon_sym_BANGis] = ACTIONS(2816), - [anon_sym_in] = ACTIONS(2816), - [anon_sym_BANGin] = ACTIONS(2816), - [anon_sym_match] = ACTIONS(2816), - [anon_sym_select] = ACTIONS(2816), - [anon_sym_lock] = ACTIONS(2816), - [anon_sym_rlock] = ACTIONS(2816), - [anon_sym_unsafe] = ACTIONS(2816), - [anon_sym_sql] = ACTIONS(2816), - [sym_int_literal] = ACTIONS(2816), - [sym_float_literal] = ACTIONS(2816), - [sym_rune_literal] = ACTIONS(2816), - [anon_sym_AT] = ACTIONS(2816), - [anon_sym_shared] = ACTIONS(2816), - [anon_sym_map_LBRACK] = ACTIONS(2816), - [anon_sym_chan] = ACTIONS(2816), - [anon_sym_thread] = ACTIONS(2816), - [anon_sym_atomic] = ACTIONS(2816), - [sym___double_quote] = ACTIONS(2816), - [sym___single_quote] = ACTIONS(2816), - [sym___c_double_quote] = ACTIONS(2816), - [sym___c_single_quote] = ACTIONS(2816), - [sym___r_double_quote] = ACTIONS(2816), - [sym___r_single_quote] = ACTIONS(2816), + [1192] = { + [sym_identifier] = ACTIONS(3159), + [anon_sym_LF] = ACTIONS(3159), + [anon_sym_CR] = ACTIONS(3159), + [anon_sym_CR_LF] = ACTIONS(3159), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3159), + [anon_sym_DOT] = ACTIONS(3159), + [anon_sym_as] = ACTIONS(3159), + [anon_sym_LBRACE] = ACTIONS(3159), + [anon_sym_COMMA] = ACTIONS(3159), + [anon_sym_RBRACE] = ACTIONS(3159), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_PIPE] = ACTIONS(3159), + [anon_sym_fn] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3159), + [anon_sym_SLASH] = ACTIONS(3159), + [anon_sym_PERCENT] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(3159), + [anon_sym_GT] = ACTIONS(3159), + [anon_sym_EQ_EQ] = ACTIONS(3159), + [anon_sym_BANG_EQ] = ACTIONS(3159), + [anon_sym_LT_EQ] = ACTIONS(3159), + [anon_sym_GT_EQ] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_struct] = ACTIONS(3159), + [anon_sym_mut] = ACTIONS(3159), + [anon_sym_PLUS_PLUS] = ACTIONS(3159), + [anon_sym_DASH_DASH] = ACTIONS(3159), + [anon_sym_QMARK] = ACTIONS(3159), + [anon_sym_BANG] = ACTIONS(3159), + [anon_sym_go] = ACTIONS(3159), + [anon_sym_spawn] = ACTIONS(3159), + [anon_sym_json_DOTdecode] = ACTIONS(3159), + [anon_sym_LBRACK2] = ACTIONS(3159), + [anon_sym_TILDE] = ACTIONS(3159), + [anon_sym_CARET] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LT_DASH] = ACTIONS(3159), + [anon_sym_LT_LT] = ACTIONS(3159), + [anon_sym_GT_GT] = ACTIONS(3159), + [anon_sym_GT_GT_GT] = ACTIONS(3159), + [anon_sym_AMP_CARET] = ACTIONS(3159), + [anon_sym_AMP_AMP] = ACTIONS(3159), + [anon_sym_PIPE_PIPE] = ACTIONS(3159), + [anon_sym_or] = ACTIONS(3159), + [sym_none] = ACTIONS(3159), + [sym_true] = ACTIONS(3159), + [sym_false] = ACTIONS(3159), + [sym_nil] = ACTIONS(3159), + [anon_sym_QMARK_DOT] = ACTIONS(3159), + [anon_sym_POUND_LBRACK] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_DOLLARif] = ACTIONS(3159), + [anon_sym_is] = ACTIONS(3159), + [anon_sym_BANGis] = ACTIONS(3159), + [anon_sym_in] = ACTIONS(3159), + [anon_sym_BANGin] = ACTIONS(3159), + [anon_sym_match] = ACTIONS(3159), + [anon_sym_select] = ACTIONS(3159), + [anon_sym_lock] = ACTIONS(3159), + [anon_sym_rlock] = ACTIONS(3159), + [anon_sym_unsafe] = ACTIONS(3159), + [anon_sym_sql] = ACTIONS(3159), + [sym_int_literal] = ACTIONS(3159), + [sym_float_literal] = ACTIONS(3159), + [sym_rune_literal] = ACTIONS(3159), + [anon_sym_AT] = ACTIONS(3159), + [anon_sym_shared] = ACTIONS(3159), + [anon_sym_map_LBRACK] = ACTIONS(3159), + [anon_sym_chan] = ACTIONS(3159), + [anon_sym_thread] = ACTIONS(3159), + [anon_sym_atomic] = ACTIONS(3159), + [sym___double_quote] = ACTIONS(3159), + [sym___single_quote] = ACTIONS(3159), + [sym___c_double_quote] = ACTIONS(3159), + [sym___c_single_quote] = ACTIONS(3159), + [sym___r_double_quote] = ACTIONS(3159), + [sym___r_single_quote] = ACTIONS(3159), }, - [1213] = { - [sym_identifier] = ACTIONS(3021), - [anon_sym_LF] = ACTIONS(3021), - [anon_sym_CR] = ACTIONS(3021), - [anon_sym_CR_LF] = ACTIONS(3021), - [sym_comment] = ACTIONS(487), - [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_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_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_AT] = 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___double_quote] = ACTIONS(3021), - [sym___single_quote] = ACTIONS(3021), - [sym___c_double_quote] = ACTIONS(3021), - [sym___c_single_quote] = ACTIONS(3021), - [sym___r_double_quote] = ACTIONS(3021), - [sym___r_single_quote] = ACTIONS(3021), + [1193] = { + [sym_identifier] = ACTIONS(3167), + [anon_sym_LF] = ACTIONS(3167), + [anon_sym_CR] = ACTIONS(3167), + [anon_sym_CR_LF] = ACTIONS(3167), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(3167), + [anon_sym_as] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_COMMA] = ACTIONS(3167), + [anon_sym_RBRACE] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_PIPE] = ACTIONS(3167), + [anon_sym_fn] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(3167), + [anon_sym_SLASH] = ACTIONS(3167), + [anon_sym_PERCENT] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_GT] = ACTIONS(3167), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_BANG_EQ] = ACTIONS(3167), + [anon_sym_LT_EQ] = ACTIONS(3167), + [anon_sym_GT_EQ] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_struct] = ACTIONS(3167), + [anon_sym_mut] = ACTIONS(3167), + [anon_sym_PLUS_PLUS] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3167), + [anon_sym_QMARK] = ACTIONS(3167), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_go] = ACTIONS(3167), + [anon_sym_spawn] = ACTIONS(3167), + [anon_sym_json_DOTdecode] = ACTIONS(3167), + [anon_sym_LBRACK2] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_CARET] = ACTIONS(3167), + [anon_sym_AMP] = ACTIONS(3167), + [anon_sym_LT_DASH] = ACTIONS(3167), + [anon_sym_LT_LT] = ACTIONS(3167), + [anon_sym_GT_GT] = ACTIONS(3167), + [anon_sym_GT_GT_GT] = ACTIONS(3167), + [anon_sym_AMP_CARET] = ACTIONS(3167), + [anon_sym_AMP_AMP] = ACTIONS(3167), + [anon_sym_PIPE_PIPE] = ACTIONS(3167), + [anon_sym_or] = ACTIONS(3167), + [sym_none] = ACTIONS(3167), + [sym_true] = ACTIONS(3167), + [sym_false] = ACTIONS(3167), + [sym_nil] = ACTIONS(3167), + [anon_sym_QMARK_DOT] = ACTIONS(3167), + [anon_sym_POUND_LBRACK] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_DOLLARif] = ACTIONS(3167), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_BANGis] = ACTIONS(3167), + [anon_sym_in] = ACTIONS(3167), + [anon_sym_BANGin] = ACTIONS(3167), + [anon_sym_match] = ACTIONS(3167), + [anon_sym_select] = ACTIONS(3167), + [anon_sym_lock] = ACTIONS(3167), + [anon_sym_rlock] = ACTIONS(3167), + [anon_sym_unsafe] = ACTIONS(3167), + [anon_sym_sql] = ACTIONS(3167), + [sym_int_literal] = ACTIONS(3167), + [sym_float_literal] = ACTIONS(3167), + [sym_rune_literal] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(3167), + [anon_sym_shared] = ACTIONS(3167), + [anon_sym_map_LBRACK] = ACTIONS(3167), + [anon_sym_chan] = ACTIONS(3167), + [anon_sym_thread] = ACTIONS(3167), + [anon_sym_atomic] = ACTIONS(3167), + [sym___double_quote] = ACTIONS(3167), + [sym___single_quote] = ACTIONS(3167), + [sym___c_double_quote] = ACTIONS(3167), + [sym___c_single_quote] = ACTIONS(3167), + [sym___r_double_quote] = ACTIONS(3167), + [sym___r_single_quote] = ACTIONS(3167), }, - [1214] = { - [sym_identifier] = ACTIONS(3109), - [anon_sym_LF] = ACTIONS(3109), - [anon_sym_CR] = ACTIONS(3109), - [anon_sym_CR_LF] = ACTIONS(3109), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3109), - [anon_sym_DOT] = ACTIONS(3109), - [anon_sym_as] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(3109), - [anon_sym_RBRACE] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_fn] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_PERCENT] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_LT_EQ] = ACTIONS(3109), - [anon_sym_GT_EQ] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3109), - [anon_sym_mut] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3109), - [anon_sym_DASH_DASH] = ACTIONS(3109), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_go] = ACTIONS(3109), - [anon_sym_spawn] = ACTIONS(3109), - [anon_sym_json_DOTdecode] = ACTIONS(3109), - [anon_sym_LBRACK2] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT_DASH] = ACTIONS(3109), - [anon_sym_LT_LT] = ACTIONS(3109), - [anon_sym_GT_GT] = ACTIONS(3109), - [anon_sym_GT_GT_GT] = ACTIONS(3109), - [anon_sym_AMP_CARET] = ACTIONS(3109), - [anon_sym_AMP_AMP] = ACTIONS(3109), - [anon_sym_PIPE_PIPE] = ACTIONS(3109), - [anon_sym_or] = ACTIONS(3109), - [sym_none] = ACTIONS(3109), - [sym_true] = ACTIONS(3109), - [sym_false] = ACTIONS(3109), - [sym_nil] = ACTIONS(3109), - [anon_sym_QMARK_DOT] = ACTIONS(3109), - [anon_sym_POUND_LBRACK] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_DOLLARif] = ACTIONS(3109), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3109), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_BANGin] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(3109), - [anon_sym_select] = ACTIONS(3109), - [anon_sym_lock] = ACTIONS(3109), - [anon_sym_rlock] = ACTIONS(3109), - [anon_sym_unsafe] = ACTIONS(3109), - [anon_sym_sql] = ACTIONS(3109), - [sym_int_literal] = ACTIONS(3109), - [sym_float_literal] = ACTIONS(3109), - [sym_rune_literal] = ACTIONS(3109), - [anon_sym_AT] = ACTIONS(3109), - [anon_sym_shared] = ACTIONS(3109), - [anon_sym_map_LBRACK] = ACTIONS(3109), - [anon_sym_chan] = ACTIONS(3109), - [anon_sym_thread] = ACTIONS(3109), - [anon_sym_atomic] = ACTIONS(3109), - [sym___double_quote] = ACTIONS(3109), - [sym___single_quote] = ACTIONS(3109), - [sym___c_double_quote] = ACTIONS(3109), - [sym___c_single_quote] = ACTIONS(3109), - [sym___r_double_quote] = ACTIONS(3109), - [sym___r_single_quote] = ACTIONS(3109), + [1194] = { + [sym_identifier] = ACTIONS(2822), + [anon_sym_LF] = ACTIONS(2822), + [anon_sym_CR] = ACTIONS(2822), + [anon_sym_CR_LF] = ACTIONS(2822), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym_DOT] = ACTIONS(2822), + [anon_sym_as] = ACTIONS(2822), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_COMMA] = ACTIONS(2822), + [anon_sym_RBRACE] = ACTIONS(2822), + [anon_sym_LPAREN] = ACTIONS(2822), + [anon_sym_PIPE] = ACTIONS(2822), + [anon_sym_fn] = ACTIONS(2822), + [anon_sym_PLUS] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2822), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_SLASH] = ACTIONS(2822), + [anon_sym_PERCENT] = ACTIONS(2822), + [anon_sym_LT] = ACTIONS(2822), + [anon_sym_GT] = ACTIONS(2822), + [anon_sym_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ] = ACTIONS(2822), + [anon_sym_LT_EQ] = ACTIONS(2822), + [anon_sym_GT_EQ] = ACTIONS(2822), + [anon_sym_LBRACK] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2822), + [anon_sym_mut] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [anon_sym_QMARK] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_go] = ACTIONS(2822), + [anon_sym_spawn] = ACTIONS(2822), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_CARET] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_LT_DASH] = ACTIONS(2822), + [anon_sym_LT_LT] = ACTIONS(2822), + [anon_sym_GT_GT] = ACTIONS(2822), + [anon_sym_GT_GT_GT] = ACTIONS(2822), + [anon_sym_AMP_CARET] = ACTIONS(2822), + [anon_sym_AMP_AMP] = ACTIONS(2822), + [anon_sym_PIPE_PIPE] = ACTIONS(2822), + [anon_sym_or] = ACTIONS(2822), + [sym_none] = ACTIONS(2822), + [sym_true] = ACTIONS(2822), + [sym_false] = ACTIONS(2822), + [sym_nil] = ACTIONS(2822), + [anon_sym_QMARK_DOT] = ACTIONS(2822), + [anon_sym_POUND_LBRACK] = ACTIONS(2822), + [anon_sym_if] = ACTIONS(2822), + [anon_sym_DOLLARif] = ACTIONS(2822), + [anon_sym_is] = ACTIONS(2822), + [anon_sym_BANGis] = ACTIONS(2822), + [anon_sym_in] = ACTIONS(2822), + [anon_sym_BANGin] = ACTIONS(2822), + [anon_sym_match] = ACTIONS(2822), + [anon_sym_select] = ACTIONS(2822), + [anon_sym_lock] = ACTIONS(2822), + [anon_sym_rlock] = ACTIONS(2822), + [anon_sym_unsafe] = ACTIONS(2822), + [anon_sym_sql] = ACTIONS(2822), + [sym_int_literal] = ACTIONS(2822), + [sym_float_literal] = ACTIONS(2822), + [sym_rune_literal] = ACTIONS(2822), + [anon_sym_AT] = ACTIONS(2822), + [anon_sym_shared] = ACTIONS(2822), + [anon_sym_map_LBRACK] = ACTIONS(2822), + [anon_sym_chan] = ACTIONS(2822), + [anon_sym_thread] = ACTIONS(2822), + [anon_sym_atomic] = ACTIONS(2822), + [sym___double_quote] = ACTIONS(2822), + [sym___single_quote] = ACTIONS(2822), + [sym___c_double_quote] = ACTIONS(2822), + [sym___c_single_quote] = ACTIONS(2822), + [sym___r_double_quote] = ACTIONS(2822), + [sym___r_single_quote] = ACTIONS(2822), }, - [1215] = { - [sym_identifier] = ACTIONS(2911), - [anon_sym_LF] = ACTIONS(2911), - [anon_sym_CR] = ACTIONS(2911), - [anon_sym_CR_LF] = ACTIONS(2911), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2911), - [anon_sym_DOT] = ACTIONS(2911), - [anon_sym_as] = ACTIONS(2911), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_COMMA] = ACTIONS(2911), - [anon_sym_RBRACE] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_PIPE] = ACTIONS(2911), - [anon_sym_fn] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2911), - [anon_sym_DASH] = ACTIONS(2911), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_SLASH] = ACTIONS(2911), - [anon_sym_PERCENT] = ACTIONS(2911), - [anon_sym_LT] = ACTIONS(2911), - [anon_sym_GT] = ACTIONS(2911), - [anon_sym_EQ_EQ] = ACTIONS(2911), - [anon_sym_BANG_EQ] = ACTIONS(2911), - [anon_sym_LT_EQ] = ACTIONS(2911), - [anon_sym_GT_EQ] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(2911), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_QMARK] = ACTIONS(2911), - [anon_sym_BANG] = ACTIONS(2911), - [anon_sym_go] = ACTIONS(2911), - [anon_sym_spawn] = ACTIONS(2911), - [anon_sym_json_DOTdecode] = ACTIONS(2911), - [anon_sym_LBRACK2] = ACTIONS(2911), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_CARET] = ACTIONS(2911), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_LT_DASH] = ACTIONS(2911), - [anon_sym_LT_LT] = ACTIONS(2911), - [anon_sym_GT_GT] = ACTIONS(2911), - [anon_sym_GT_GT_GT] = ACTIONS(2911), - [anon_sym_AMP_CARET] = ACTIONS(2911), - [anon_sym_AMP_AMP] = ACTIONS(2911), - [anon_sym_PIPE_PIPE] = ACTIONS(2911), - [anon_sym_or] = ACTIONS(2911), - [sym_none] = ACTIONS(2911), - [sym_true] = ACTIONS(2911), - [sym_false] = ACTIONS(2911), - [sym_nil] = ACTIONS(2911), - [anon_sym_QMARK_DOT] = ACTIONS(2911), - [anon_sym_POUND_LBRACK] = ACTIONS(2911), - [anon_sym_if] = ACTIONS(2911), - [anon_sym_DOLLARif] = ACTIONS(2911), - [anon_sym_is] = ACTIONS(2911), - [anon_sym_BANGis] = ACTIONS(2911), - [anon_sym_in] = ACTIONS(2911), - [anon_sym_BANGin] = ACTIONS(2911), - [anon_sym_match] = ACTIONS(2911), - [anon_sym_select] = ACTIONS(2911), - [anon_sym_lock] = ACTIONS(2911), - [anon_sym_rlock] = ACTIONS(2911), - [anon_sym_unsafe] = ACTIONS(2911), - [anon_sym_sql] = ACTIONS(2911), - [sym_int_literal] = ACTIONS(2911), - [sym_float_literal] = ACTIONS(2911), - [sym_rune_literal] = ACTIONS(2911), - [anon_sym_AT] = ACTIONS(2911), - [anon_sym_shared] = ACTIONS(2911), - [anon_sym_map_LBRACK] = ACTIONS(2911), - [anon_sym_chan] = ACTIONS(2911), - [anon_sym_thread] = ACTIONS(2911), - [anon_sym_atomic] = ACTIONS(2911), - [sym___double_quote] = ACTIONS(2911), - [sym___single_quote] = ACTIONS(2911), - [sym___c_double_quote] = ACTIONS(2911), - [sym___c_single_quote] = ACTIONS(2911), - [sym___r_double_quote] = ACTIONS(2911), - [sym___r_single_quote] = ACTIONS(2911), + [1195] = { + [sym_identifier] = ACTIONS(3179), + [anon_sym_LF] = ACTIONS(3179), + [anon_sym_CR] = ACTIONS(3179), + [anon_sym_CR_LF] = ACTIONS(3179), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3179), + [anon_sym_DOT] = ACTIONS(3179), + [anon_sym_as] = ACTIONS(3179), + [anon_sym_LBRACE] = ACTIONS(3179), + [anon_sym_COMMA] = ACTIONS(3179), + [anon_sym_RBRACE] = ACTIONS(3179), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_PIPE] = ACTIONS(3179), + [anon_sym_fn] = ACTIONS(3179), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3179), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_SLASH] = ACTIONS(3179), + [anon_sym_PERCENT] = ACTIONS(3179), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3179), + [anon_sym_EQ_EQ] = ACTIONS(3179), + [anon_sym_BANG_EQ] = ACTIONS(3179), + [anon_sym_LT_EQ] = ACTIONS(3179), + [anon_sym_GT_EQ] = ACTIONS(3179), + [anon_sym_LBRACK] = ACTIONS(3177), + [anon_sym_struct] = ACTIONS(3179), + [anon_sym_mut] = ACTIONS(3179), + [anon_sym_PLUS_PLUS] = ACTIONS(3179), + [anon_sym_DASH_DASH] = ACTIONS(3179), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_BANG] = ACTIONS(3179), + [anon_sym_go] = ACTIONS(3179), + [anon_sym_spawn] = ACTIONS(3179), + [anon_sym_json_DOTdecode] = ACTIONS(3179), + [anon_sym_LBRACK2] = ACTIONS(3179), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_CARET] = ACTIONS(3179), + [anon_sym_AMP] = ACTIONS(3179), + [anon_sym_LT_DASH] = ACTIONS(3179), + [anon_sym_LT_LT] = ACTIONS(3179), + [anon_sym_GT_GT] = ACTIONS(3179), + [anon_sym_GT_GT_GT] = ACTIONS(3179), + [anon_sym_AMP_CARET] = ACTIONS(3179), + [anon_sym_AMP_AMP] = ACTIONS(3179), + [anon_sym_PIPE_PIPE] = ACTIONS(3179), + [anon_sym_or] = ACTIONS(3179), + [sym_none] = ACTIONS(3179), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_nil] = ACTIONS(3179), + [anon_sym_QMARK_DOT] = ACTIONS(3179), + [anon_sym_POUND_LBRACK] = ACTIONS(3179), + [anon_sym_if] = ACTIONS(3179), + [anon_sym_DOLLARif] = ACTIONS(3179), + [anon_sym_is] = ACTIONS(3179), + [anon_sym_BANGis] = ACTIONS(3179), + [anon_sym_in] = ACTIONS(3179), + [anon_sym_BANGin] = ACTIONS(3179), + [anon_sym_match] = ACTIONS(3179), + [anon_sym_select] = ACTIONS(3179), + [anon_sym_lock] = ACTIONS(3179), + [anon_sym_rlock] = ACTIONS(3179), + [anon_sym_unsafe] = ACTIONS(3179), + [anon_sym_sql] = ACTIONS(3179), + [sym_int_literal] = ACTIONS(3179), + [sym_float_literal] = ACTIONS(3179), + [sym_rune_literal] = ACTIONS(3179), + [anon_sym_AT] = ACTIONS(3179), + [anon_sym_shared] = ACTIONS(3179), + [anon_sym_map_LBRACK] = ACTIONS(3179), + [anon_sym_chan] = ACTIONS(3179), + [anon_sym_thread] = ACTIONS(3179), + [anon_sym_atomic] = ACTIONS(3179), + [sym___double_quote] = ACTIONS(3179), + [sym___single_quote] = ACTIONS(3179), + [sym___c_double_quote] = ACTIONS(3179), + [sym___c_single_quote] = ACTIONS(3179), + [sym___r_double_quote] = ACTIONS(3179), + [sym___r_single_quote] = ACTIONS(3179), }, - [1216] = { - [sym_identifier] = ACTIONS(3121), - [anon_sym_LF] = ACTIONS(3121), - [anon_sym_CR] = ACTIONS(3121), - [anon_sym_CR_LF] = ACTIONS(3121), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3121), - [anon_sym_DOT] = ACTIONS(3121), - [anon_sym_as] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(3121), - [anon_sym_COMMA] = ACTIONS(3121), - [anon_sym_RBRACE] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_PIPE] = ACTIONS(3121), - [anon_sym_fn] = ACTIONS(3121), - [anon_sym_PLUS] = ACTIONS(3121), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(3121), - [anon_sym_SLASH] = ACTIONS(3121), - [anon_sym_PERCENT] = ACTIONS(3121), - [anon_sym_LT] = ACTIONS(3121), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_LT_EQ] = ACTIONS(3121), - [anon_sym_GT_EQ] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_mut] = ACTIONS(3121), - [anon_sym_PLUS_PLUS] = ACTIONS(3121), - [anon_sym_DASH_DASH] = ACTIONS(3121), - [anon_sym_QMARK] = ACTIONS(3121), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_go] = ACTIONS(3121), - [anon_sym_spawn] = ACTIONS(3121), - [anon_sym_json_DOTdecode] = ACTIONS(3121), - [anon_sym_LBRACK2] = ACTIONS(3121), - [anon_sym_TILDE] = ACTIONS(3121), - [anon_sym_CARET] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3121), - [anon_sym_LT_DASH] = ACTIONS(3121), - [anon_sym_LT_LT] = ACTIONS(3121), - [anon_sym_GT_GT] = ACTIONS(3121), - [anon_sym_GT_GT_GT] = ACTIONS(3121), - [anon_sym_AMP_CARET] = ACTIONS(3121), - [anon_sym_AMP_AMP] = ACTIONS(3121), - [anon_sym_PIPE_PIPE] = ACTIONS(3121), - [anon_sym_or] = ACTIONS(3121), - [sym_none] = ACTIONS(3121), - [sym_true] = ACTIONS(3121), - [sym_false] = ACTIONS(3121), - [sym_nil] = ACTIONS(3121), - [anon_sym_QMARK_DOT] = ACTIONS(3121), - [anon_sym_POUND_LBRACK] = ACTIONS(3121), - [anon_sym_if] = ACTIONS(3121), - [anon_sym_DOLLARif] = ACTIONS(3121), - [anon_sym_is] = ACTIONS(3121), - [anon_sym_BANGis] = ACTIONS(3121), - [anon_sym_in] = ACTIONS(3121), - [anon_sym_BANGin] = ACTIONS(3121), - [anon_sym_match] = ACTIONS(3121), - [anon_sym_select] = ACTIONS(3121), - [anon_sym_lock] = ACTIONS(3121), - [anon_sym_rlock] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(3121), - [anon_sym_sql] = ACTIONS(3121), - [sym_int_literal] = ACTIONS(3121), - [sym_float_literal] = ACTIONS(3121), - [sym_rune_literal] = ACTIONS(3121), - [anon_sym_AT] = ACTIONS(3121), - [anon_sym_shared] = ACTIONS(3121), - [anon_sym_map_LBRACK] = ACTIONS(3121), - [anon_sym_chan] = ACTIONS(3121), - [anon_sym_thread] = ACTIONS(3121), - [anon_sym_atomic] = ACTIONS(3121), - [sym___double_quote] = ACTIONS(3121), - [sym___single_quote] = ACTIONS(3121), - [sym___c_double_quote] = ACTIONS(3121), - [sym___c_single_quote] = ACTIONS(3121), - [sym___r_double_quote] = ACTIONS(3121), - [sym___r_single_quote] = ACTIONS(3121), + [1196] = { + [sym_identifier] = ACTIONS(3082), + [anon_sym_LF] = ACTIONS(3082), + [anon_sym_CR] = ACTIONS(3082), + [anon_sym_CR_LF] = ACTIONS(3082), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_DOT] = ACTIONS(3082), + [anon_sym_as] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3082), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3082), + [anon_sym_PIPE] = ACTIONS(3082), + [anon_sym_fn] = ACTIONS(3082), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_SLASH] = ACTIONS(3082), + [anon_sym_PERCENT] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(3082), + [anon_sym_GT] = ACTIONS(3082), + [anon_sym_EQ_EQ] = ACTIONS(3082), + [anon_sym_BANG_EQ] = ACTIONS(3082), + [anon_sym_LT_EQ] = ACTIONS(3082), + [anon_sym_GT_EQ] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(3080), + [anon_sym_struct] = ACTIONS(3082), + [anon_sym_mut] = ACTIONS(3082), + [anon_sym_PLUS_PLUS] = ACTIONS(3082), + [anon_sym_DASH_DASH] = ACTIONS(3082), + [anon_sym_QMARK] = ACTIONS(3082), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_go] = ACTIONS(3082), + [anon_sym_spawn] = ACTIONS(3082), + [anon_sym_json_DOTdecode] = ACTIONS(3082), + [anon_sym_LBRACK2] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3082), + [anon_sym_LT_DASH] = ACTIONS(3082), + [anon_sym_LT_LT] = ACTIONS(3082), + [anon_sym_GT_GT] = ACTIONS(3082), + [anon_sym_GT_GT_GT] = ACTIONS(3082), + [anon_sym_AMP_CARET] = ACTIONS(3082), + [anon_sym_AMP_AMP] = ACTIONS(3082), + [anon_sym_PIPE_PIPE] = ACTIONS(3082), + [anon_sym_or] = ACTIONS(3082), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_QMARK_DOT] = ACTIONS(3082), + [anon_sym_POUND_LBRACK] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_DOLLARif] = ACTIONS(3082), + [anon_sym_is] = ACTIONS(3082), + [anon_sym_BANGis] = ACTIONS(3082), + [anon_sym_in] = ACTIONS(3082), + [anon_sym_BANGin] = ACTIONS(3082), + [anon_sym_match] = ACTIONS(3082), + [anon_sym_select] = ACTIONS(3082), + [anon_sym_lock] = ACTIONS(3082), + [anon_sym_rlock] = ACTIONS(3082), + [anon_sym_unsafe] = ACTIONS(3082), + [anon_sym_sql] = ACTIONS(3082), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3082), + [sym_rune_literal] = ACTIONS(3082), + [anon_sym_AT] = ACTIONS(3082), + [anon_sym_shared] = ACTIONS(3082), + [anon_sym_map_LBRACK] = ACTIONS(3082), + [anon_sym_chan] = ACTIONS(3082), + [anon_sym_thread] = ACTIONS(3082), + [anon_sym_atomic] = ACTIONS(3082), + [sym___double_quote] = ACTIONS(3082), + [sym___single_quote] = ACTIONS(3082), + [sym___c_double_quote] = ACTIONS(3082), + [sym___c_single_quote] = ACTIONS(3082), + [sym___r_double_quote] = ACTIONS(3082), + [sym___r_single_quote] = ACTIONS(3082), }, - [1217] = { - [sym_identifier] = ACTIONS(2852), - [anon_sym_LF] = ACTIONS(2852), - [anon_sym_CR] = ACTIONS(2852), - [anon_sym_CR_LF] = ACTIONS(2852), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2852), - [anon_sym_DOT] = ACTIONS(2852), - [anon_sym_as] = ACTIONS(2852), - [anon_sym_LBRACE] = ACTIONS(2852), - [anon_sym_COMMA] = ACTIONS(2852), - [anon_sym_RBRACE] = ACTIONS(2852), - [anon_sym_LPAREN] = ACTIONS(2852), - [anon_sym_PIPE] = ACTIONS(2852), - [anon_sym_fn] = ACTIONS(2852), - [anon_sym_PLUS] = ACTIONS(2852), - [anon_sym_DASH] = ACTIONS(2852), - [anon_sym_STAR] = ACTIONS(2852), - [anon_sym_SLASH] = ACTIONS(2852), - [anon_sym_PERCENT] = ACTIONS(2852), - [anon_sym_LT] = ACTIONS(2852), - [anon_sym_GT] = ACTIONS(2852), - [anon_sym_EQ_EQ] = ACTIONS(2852), - [anon_sym_BANG_EQ] = ACTIONS(2852), - [anon_sym_LT_EQ] = ACTIONS(2852), - [anon_sym_GT_EQ] = ACTIONS(2852), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_struct] = ACTIONS(2852), - [anon_sym_mut] = ACTIONS(2852), - [anon_sym_PLUS_PLUS] = ACTIONS(2852), - [anon_sym_DASH_DASH] = ACTIONS(2852), - [anon_sym_QMARK] = ACTIONS(2852), - [anon_sym_BANG] = ACTIONS(2852), - [anon_sym_go] = ACTIONS(2852), - [anon_sym_spawn] = ACTIONS(2852), - [anon_sym_json_DOTdecode] = ACTIONS(2852), - [anon_sym_LBRACK2] = ACTIONS(2852), - [anon_sym_TILDE] = ACTIONS(2852), - [anon_sym_CARET] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2852), - [anon_sym_LT_DASH] = ACTIONS(2852), - [anon_sym_LT_LT] = ACTIONS(2852), - [anon_sym_GT_GT] = ACTIONS(2852), - [anon_sym_GT_GT_GT] = ACTIONS(2852), - [anon_sym_AMP_CARET] = ACTIONS(2852), - [anon_sym_AMP_AMP] = ACTIONS(2852), - [anon_sym_PIPE_PIPE] = ACTIONS(2852), - [anon_sym_or] = ACTIONS(2852), - [sym_none] = ACTIONS(2852), - [sym_true] = ACTIONS(2852), - [sym_false] = ACTIONS(2852), - [sym_nil] = ACTIONS(2852), - [anon_sym_QMARK_DOT] = ACTIONS(2852), - [anon_sym_POUND_LBRACK] = ACTIONS(2852), - [anon_sym_if] = ACTIONS(2852), - [anon_sym_DOLLARif] = ACTIONS(2852), - [anon_sym_is] = ACTIONS(2852), - [anon_sym_BANGis] = ACTIONS(2852), - [anon_sym_in] = ACTIONS(2852), - [anon_sym_BANGin] = ACTIONS(2852), - [anon_sym_match] = ACTIONS(2852), - [anon_sym_select] = ACTIONS(2852), - [anon_sym_lock] = ACTIONS(2852), - [anon_sym_rlock] = ACTIONS(2852), - [anon_sym_unsafe] = ACTIONS(2852), - [anon_sym_sql] = ACTIONS(2852), - [sym_int_literal] = ACTIONS(2852), - [sym_float_literal] = ACTIONS(2852), - [sym_rune_literal] = ACTIONS(2852), - [anon_sym_AT] = ACTIONS(2852), - [anon_sym_shared] = ACTIONS(2852), - [anon_sym_map_LBRACK] = ACTIONS(2852), - [anon_sym_chan] = ACTIONS(2852), - [anon_sym_thread] = ACTIONS(2852), - [anon_sym_atomic] = ACTIONS(2852), - [sym___double_quote] = ACTIONS(2852), - [sym___single_quote] = ACTIONS(2852), - [sym___c_double_quote] = ACTIONS(2852), - [sym___c_single_quote] = ACTIONS(2852), - [sym___r_double_quote] = ACTIONS(2852), - [sym___r_single_quote] = ACTIONS(2852), + [1197] = { + [sym_identifier] = ACTIONS(3203), + [anon_sym_LF] = ACTIONS(3203), + [anon_sym_CR] = ACTIONS(3203), + [anon_sym_CR_LF] = ACTIONS(3203), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3203), + [anon_sym_DOT] = ACTIONS(3203), + [anon_sym_as] = ACTIONS(3203), + [anon_sym_LBRACE] = ACTIONS(3203), + [anon_sym_COMMA] = ACTIONS(3203), + [anon_sym_RBRACE] = ACTIONS(3203), + [anon_sym_LPAREN] = ACTIONS(3203), + [anon_sym_PIPE] = ACTIONS(3203), + [anon_sym_fn] = ACTIONS(3203), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_STAR] = ACTIONS(3203), + [anon_sym_SLASH] = ACTIONS(3203), + [anon_sym_PERCENT] = ACTIONS(3203), + [anon_sym_LT] = ACTIONS(3203), + [anon_sym_GT] = ACTIONS(3203), + [anon_sym_EQ_EQ] = ACTIONS(3203), + [anon_sym_BANG_EQ] = ACTIONS(3203), + [anon_sym_LT_EQ] = ACTIONS(3203), + [anon_sym_GT_EQ] = ACTIONS(3203), + [anon_sym_LBRACK] = ACTIONS(3201), + [anon_sym_struct] = ACTIONS(3203), + [anon_sym_mut] = ACTIONS(3203), + [anon_sym_PLUS_PLUS] = ACTIONS(3203), + [anon_sym_DASH_DASH] = ACTIONS(3203), + [anon_sym_QMARK] = ACTIONS(3203), + [anon_sym_BANG] = ACTIONS(3203), + [anon_sym_go] = ACTIONS(3203), + [anon_sym_spawn] = ACTIONS(3203), + [anon_sym_json_DOTdecode] = ACTIONS(3203), + [anon_sym_LBRACK2] = ACTIONS(3203), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_CARET] = ACTIONS(3203), + [anon_sym_AMP] = ACTIONS(3203), + [anon_sym_LT_DASH] = ACTIONS(3203), + [anon_sym_LT_LT] = ACTIONS(3203), + [anon_sym_GT_GT] = ACTIONS(3203), + [anon_sym_GT_GT_GT] = ACTIONS(3203), + [anon_sym_AMP_CARET] = ACTIONS(3203), + [anon_sym_AMP_AMP] = ACTIONS(3203), + [anon_sym_PIPE_PIPE] = ACTIONS(3203), + [anon_sym_or] = ACTIONS(3203), + [sym_none] = ACTIONS(3203), + [sym_true] = ACTIONS(3203), + [sym_false] = ACTIONS(3203), + [sym_nil] = ACTIONS(3203), + [anon_sym_QMARK_DOT] = ACTIONS(3203), + [anon_sym_POUND_LBRACK] = ACTIONS(3203), + [anon_sym_if] = ACTIONS(3203), + [anon_sym_DOLLARif] = ACTIONS(3203), + [anon_sym_is] = ACTIONS(3203), + [anon_sym_BANGis] = ACTIONS(3203), + [anon_sym_in] = ACTIONS(3203), + [anon_sym_BANGin] = ACTIONS(3203), + [anon_sym_match] = ACTIONS(3203), + [anon_sym_select] = ACTIONS(3203), + [anon_sym_lock] = ACTIONS(3203), + [anon_sym_rlock] = ACTIONS(3203), + [anon_sym_unsafe] = ACTIONS(3203), + [anon_sym_sql] = ACTIONS(3203), + [sym_int_literal] = ACTIONS(3203), + [sym_float_literal] = ACTIONS(3203), + [sym_rune_literal] = ACTIONS(3203), + [anon_sym_AT] = ACTIONS(3203), + [anon_sym_shared] = ACTIONS(3203), + [anon_sym_map_LBRACK] = ACTIONS(3203), + [anon_sym_chan] = ACTIONS(3203), + [anon_sym_thread] = ACTIONS(3203), + [anon_sym_atomic] = ACTIONS(3203), + [sym___double_quote] = ACTIONS(3203), + [sym___single_quote] = ACTIONS(3203), + [sym___c_double_quote] = ACTIONS(3203), + [sym___c_single_quote] = ACTIONS(3203), + [sym___r_double_quote] = ACTIONS(3203), + [sym___r_single_quote] = ACTIONS(3203), }, - [1218] = { - [sym_identifier] = ACTIONS(3009), - [anon_sym_LF] = ACTIONS(3009), - [anon_sym_CR] = ACTIONS(3009), - [anon_sym_CR_LF] = ACTIONS(3009), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3009), - [anon_sym_DOT] = ACTIONS(3009), - [anon_sym_as] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3009), - [anon_sym_fn] = ACTIONS(3009), - [anon_sym_PLUS] = ACTIONS(3009), - [anon_sym_DASH] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3009), - [anon_sym_SLASH] = ACTIONS(3009), - [anon_sym_PERCENT] = ACTIONS(3009), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3009), - [anon_sym_EQ_EQ] = ACTIONS(3009), - [anon_sym_BANG_EQ] = ACTIONS(3009), - [anon_sym_LT_EQ] = ACTIONS(3009), - [anon_sym_GT_EQ] = ACTIONS(3009), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3009), - [anon_sym_mut] = ACTIONS(3009), - [anon_sym_PLUS_PLUS] = ACTIONS(3009), - [anon_sym_DASH_DASH] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3009), - [anon_sym_BANG] = ACTIONS(3009), - [anon_sym_go] = ACTIONS(3009), - [anon_sym_spawn] = ACTIONS(3009), - [anon_sym_json_DOTdecode] = ACTIONS(3009), - [anon_sym_LBRACK2] = ACTIONS(3009), - [anon_sym_TILDE] = ACTIONS(3009), - [anon_sym_CARET] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_LT_DASH] = ACTIONS(3009), - [anon_sym_LT_LT] = ACTIONS(3009), - [anon_sym_GT_GT] = ACTIONS(3009), - [anon_sym_GT_GT_GT] = ACTIONS(3009), - [anon_sym_AMP_CARET] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3009), - [anon_sym_or] = ACTIONS(3009), - [sym_none] = ACTIONS(3009), - [sym_true] = ACTIONS(3009), - [sym_false] = ACTIONS(3009), - [sym_nil] = ACTIONS(3009), - [anon_sym_QMARK_DOT] = ACTIONS(3009), - [anon_sym_POUND_LBRACK] = ACTIONS(3009), - [anon_sym_if] = ACTIONS(3009), - [anon_sym_DOLLARif] = ACTIONS(3009), - [anon_sym_is] = ACTIONS(3009), - [anon_sym_BANGis] = ACTIONS(3009), - [anon_sym_in] = ACTIONS(3009), - [anon_sym_BANGin] = ACTIONS(3009), - [anon_sym_match] = ACTIONS(3009), - [anon_sym_select] = ACTIONS(3009), - [anon_sym_lock] = ACTIONS(3009), - [anon_sym_rlock] = ACTIONS(3009), - [anon_sym_unsafe] = ACTIONS(3009), - [anon_sym_sql] = ACTIONS(3009), - [sym_int_literal] = ACTIONS(3009), - [sym_float_literal] = ACTIONS(3009), - [sym_rune_literal] = ACTIONS(3009), - [anon_sym_AT] = ACTIONS(3009), - [anon_sym_shared] = ACTIONS(3009), - [anon_sym_map_LBRACK] = ACTIONS(3009), - [anon_sym_chan] = ACTIONS(3009), - [anon_sym_thread] = ACTIONS(3009), - [anon_sym_atomic] = ACTIONS(3009), - [sym___double_quote] = ACTIONS(3009), - [sym___single_quote] = ACTIONS(3009), - [sym___c_double_quote] = ACTIONS(3009), - [sym___c_single_quote] = ACTIONS(3009), - [sym___r_double_quote] = ACTIONS(3009), - [sym___r_single_quote] = ACTIONS(3009), + [1198] = { + [sym_identifier] = ACTIONS(3199), + [anon_sym_LF] = ACTIONS(3199), + [anon_sym_CR] = ACTIONS(3199), + [anon_sym_CR_LF] = ACTIONS(3199), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3199), + [anon_sym_DOT] = ACTIONS(3199), + [anon_sym_as] = ACTIONS(3199), + [anon_sym_LBRACE] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3199), + [anon_sym_PIPE] = ACTIONS(3199), + [anon_sym_fn] = ACTIONS(3199), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3199), + [anon_sym_STAR] = ACTIONS(3199), + [anon_sym_SLASH] = ACTIONS(3199), + [anon_sym_PERCENT] = ACTIONS(3199), + [anon_sym_LT] = ACTIONS(3199), + [anon_sym_GT] = ACTIONS(3199), + [anon_sym_EQ_EQ] = ACTIONS(3199), + [anon_sym_BANG_EQ] = ACTIONS(3199), + [anon_sym_LT_EQ] = ACTIONS(3199), + [anon_sym_GT_EQ] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_struct] = ACTIONS(3199), + [anon_sym_mut] = ACTIONS(3199), + [anon_sym_PLUS_PLUS] = ACTIONS(3199), + [anon_sym_DASH_DASH] = ACTIONS(3199), + [anon_sym_QMARK] = ACTIONS(3199), + [anon_sym_BANG] = ACTIONS(3199), + [anon_sym_go] = ACTIONS(3199), + [anon_sym_spawn] = ACTIONS(3199), + [anon_sym_json_DOTdecode] = ACTIONS(3199), + [anon_sym_LBRACK2] = ACTIONS(3199), + [anon_sym_TILDE] = ACTIONS(3199), + [anon_sym_CARET] = ACTIONS(3199), + [anon_sym_AMP] = ACTIONS(3199), + [anon_sym_LT_DASH] = ACTIONS(3199), + [anon_sym_LT_LT] = ACTIONS(3199), + [anon_sym_GT_GT] = ACTIONS(3199), + [anon_sym_GT_GT_GT] = ACTIONS(3199), + [anon_sym_AMP_CARET] = ACTIONS(3199), + [anon_sym_AMP_AMP] = ACTIONS(3199), + [anon_sym_PIPE_PIPE] = ACTIONS(3199), + [anon_sym_or] = ACTIONS(3199), + [sym_none] = ACTIONS(3199), + [sym_true] = ACTIONS(3199), + [sym_false] = ACTIONS(3199), + [sym_nil] = ACTIONS(3199), + [anon_sym_QMARK_DOT] = ACTIONS(3199), + [anon_sym_POUND_LBRACK] = ACTIONS(3199), + [anon_sym_if] = ACTIONS(3199), + [anon_sym_DOLLARif] = ACTIONS(3199), + [anon_sym_is] = ACTIONS(3199), + [anon_sym_BANGis] = ACTIONS(3199), + [anon_sym_in] = ACTIONS(3199), + [anon_sym_BANGin] = ACTIONS(3199), + [anon_sym_match] = ACTIONS(3199), + [anon_sym_select] = ACTIONS(3199), + [anon_sym_lock] = ACTIONS(3199), + [anon_sym_rlock] = ACTIONS(3199), + [anon_sym_unsafe] = ACTIONS(3199), + [anon_sym_sql] = ACTIONS(3199), + [sym_int_literal] = ACTIONS(3199), + [sym_float_literal] = ACTIONS(3199), + [sym_rune_literal] = ACTIONS(3199), + [anon_sym_AT] = ACTIONS(3199), + [anon_sym_shared] = ACTIONS(3199), + [anon_sym_map_LBRACK] = ACTIONS(3199), + [anon_sym_chan] = ACTIONS(3199), + [anon_sym_thread] = ACTIONS(3199), + [anon_sym_atomic] = ACTIONS(3199), + [sym___double_quote] = ACTIONS(3199), + [sym___single_quote] = ACTIONS(3199), + [sym___c_double_quote] = ACTIONS(3199), + [sym___c_single_quote] = ACTIONS(3199), + [sym___r_double_quote] = ACTIONS(3199), + [sym___r_single_quote] = ACTIONS(3199), }, - [1219] = { - [sym_identifier] = ACTIONS(2993), - [anon_sym_LF] = ACTIONS(2993), - [anon_sym_CR] = ACTIONS(2993), - [anon_sym_CR_LF] = ACTIONS(2993), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2993), - [anon_sym_DOT] = ACTIONS(2993), - [anon_sym_as] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2993), - [anon_sym_COMMA] = ACTIONS(2993), - [anon_sym_RBRACE] = ACTIONS(2993), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2993), - [anon_sym_fn] = ACTIONS(2993), - [anon_sym_PLUS] = ACTIONS(2993), - [anon_sym_DASH] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2993), - [anon_sym_SLASH] = ACTIONS(2993), - [anon_sym_PERCENT] = ACTIONS(2993), - [anon_sym_LT] = ACTIONS(2993), - [anon_sym_GT] = ACTIONS(2993), - [anon_sym_EQ_EQ] = ACTIONS(2993), - [anon_sym_BANG_EQ] = ACTIONS(2993), - [anon_sym_LT_EQ] = ACTIONS(2993), - [anon_sym_GT_EQ] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_struct] = ACTIONS(2993), - [anon_sym_mut] = ACTIONS(2993), - [anon_sym_PLUS_PLUS] = ACTIONS(2993), - [anon_sym_DASH_DASH] = ACTIONS(2993), - [anon_sym_QMARK] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2993), - [anon_sym_go] = ACTIONS(2993), - [anon_sym_spawn] = ACTIONS(2993), - [anon_sym_json_DOTdecode] = ACTIONS(2993), - [anon_sym_LBRACK2] = ACTIONS(2993), - [anon_sym_TILDE] = ACTIONS(2993), - [anon_sym_CARET] = ACTIONS(2993), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_LT_DASH] = ACTIONS(2993), - [anon_sym_LT_LT] = ACTIONS(2993), - [anon_sym_GT_GT] = ACTIONS(2993), - [anon_sym_GT_GT_GT] = ACTIONS(2993), - [anon_sym_AMP_CARET] = ACTIONS(2993), - [anon_sym_AMP_AMP] = ACTIONS(2993), - [anon_sym_PIPE_PIPE] = ACTIONS(2993), - [anon_sym_or] = ACTIONS(2993), - [sym_none] = ACTIONS(2993), - [sym_true] = ACTIONS(2993), - [sym_false] = ACTIONS(2993), - [sym_nil] = ACTIONS(2993), - [anon_sym_QMARK_DOT] = ACTIONS(2993), - [anon_sym_POUND_LBRACK] = ACTIONS(2993), - [anon_sym_if] = ACTIONS(2993), - [anon_sym_DOLLARif] = ACTIONS(2993), - [anon_sym_is] = ACTIONS(2993), - [anon_sym_BANGis] = ACTIONS(2993), - [anon_sym_in] = ACTIONS(2993), - [anon_sym_BANGin] = ACTIONS(2993), - [anon_sym_match] = ACTIONS(2993), - [anon_sym_select] = ACTIONS(2993), - [anon_sym_lock] = ACTIONS(2993), - [anon_sym_rlock] = ACTIONS(2993), - [anon_sym_unsafe] = ACTIONS(2993), - [anon_sym_sql] = ACTIONS(2993), - [sym_int_literal] = ACTIONS(2993), - [sym_float_literal] = ACTIONS(2993), - [sym_rune_literal] = ACTIONS(2993), - [anon_sym_AT] = ACTIONS(2993), - [anon_sym_shared] = ACTIONS(2993), - [anon_sym_map_LBRACK] = ACTIONS(2993), - [anon_sym_chan] = ACTIONS(2993), - [anon_sym_thread] = ACTIONS(2993), - [anon_sym_atomic] = ACTIONS(2993), - [sym___double_quote] = ACTIONS(2993), - [sym___single_quote] = ACTIONS(2993), - [sym___c_double_quote] = ACTIONS(2993), - [sym___c_single_quote] = ACTIONS(2993), - [sym___r_double_quote] = ACTIONS(2993), - [sym___r_single_quote] = ACTIONS(2993), + [1199] = { + [sym_identifier] = ACTIONS(3191), + [anon_sym_LF] = ACTIONS(3191), + [anon_sym_CR] = ACTIONS(3191), + [anon_sym_CR_LF] = ACTIONS(3191), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3191), + [anon_sym_as] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(3191), + [anon_sym_COMMA] = ACTIONS(3191), + [anon_sym_RBRACE] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3191), + [anon_sym_PIPE] = ACTIONS(3191), + [anon_sym_fn] = ACTIONS(3191), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_STAR] = ACTIONS(3191), + [anon_sym_SLASH] = ACTIONS(3191), + [anon_sym_PERCENT] = ACTIONS(3191), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_GT] = ACTIONS(3191), + [anon_sym_EQ_EQ] = ACTIONS(3191), + [anon_sym_BANG_EQ] = ACTIONS(3191), + [anon_sym_LT_EQ] = ACTIONS(3191), + [anon_sym_GT_EQ] = ACTIONS(3191), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_struct] = ACTIONS(3191), + [anon_sym_mut] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3191), + [anon_sym_DASH_DASH] = ACTIONS(3191), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_go] = ACTIONS(3191), + [anon_sym_spawn] = ACTIONS(3191), + [anon_sym_json_DOTdecode] = ACTIONS(3191), + [anon_sym_LBRACK2] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3191), + [anon_sym_CARET] = ACTIONS(3191), + [anon_sym_AMP] = ACTIONS(3191), + [anon_sym_LT_DASH] = ACTIONS(3191), + [anon_sym_LT_LT] = ACTIONS(3191), + [anon_sym_GT_GT] = ACTIONS(3191), + [anon_sym_GT_GT_GT] = ACTIONS(3191), + [anon_sym_AMP_CARET] = ACTIONS(3191), + [anon_sym_AMP_AMP] = ACTIONS(3191), + [anon_sym_PIPE_PIPE] = ACTIONS(3191), + [anon_sym_or] = ACTIONS(3191), + [sym_none] = ACTIONS(3191), + [sym_true] = ACTIONS(3191), + [sym_false] = ACTIONS(3191), + [sym_nil] = ACTIONS(3191), + [anon_sym_QMARK_DOT] = ACTIONS(3191), + [anon_sym_POUND_LBRACK] = ACTIONS(3191), + [anon_sym_if] = ACTIONS(3191), + [anon_sym_DOLLARif] = ACTIONS(3191), + [anon_sym_is] = ACTIONS(3191), + [anon_sym_BANGis] = ACTIONS(3191), + [anon_sym_in] = ACTIONS(3191), + [anon_sym_BANGin] = ACTIONS(3191), + [anon_sym_match] = ACTIONS(3191), + [anon_sym_select] = ACTIONS(3191), + [anon_sym_lock] = ACTIONS(3191), + [anon_sym_rlock] = ACTIONS(3191), + [anon_sym_unsafe] = ACTIONS(3191), + [anon_sym_sql] = ACTIONS(3191), + [sym_int_literal] = ACTIONS(3191), + [sym_float_literal] = ACTIONS(3191), + [sym_rune_literal] = ACTIONS(3191), + [anon_sym_AT] = ACTIONS(3191), + [anon_sym_shared] = ACTIONS(3191), + [anon_sym_map_LBRACK] = ACTIONS(3191), + [anon_sym_chan] = ACTIONS(3191), + [anon_sym_thread] = ACTIONS(3191), + [anon_sym_atomic] = ACTIONS(3191), + [sym___double_quote] = ACTIONS(3191), + [sym___single_quote] = ACTIONS(3191), + [sym___c_double_quote] = ACTIONS(3191), + [sym___c_single_quote] = ACTIONS(3191), + [sym___r_double_quote] = ACTIONS(3191), + [sym___r_single_quote] = ACTIONS(3191), }, - [1220] = { - [sym_identifier] = ACTIONS(2939), - [anon_sym_LF] = ACTIONS(2939), - [anon_sym_CR] = ACTIONS(2939), - [anon_sym_CR_LF] = ACTIONS(2939), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2939), - [anon_sym_DOT] = ACTIONS(2939), - [anon_sym_as] = ACTIONS(2939), - [anon_sym_LBRACE] = ACTIONS(2939), - [anon_sym_COMMA] = ACTIONS(2939), - [anon_sym_RBRACE] = ACTIONS(2939), - [anon_sym_LPAREN] = ACTIONS(2939), - [anon_sym_PIPE] = ACTIONS(2939), - [anon_sym_fn] = ACTIONS(2939), - [anon_sym_PLUS] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2939), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_SLASH] = ACTIONS(2939), - [anon_sym_PERCENT] = ACTIONS(2939), - [anon_sym_LT] = ACTIONS(2939), - [anon_sym_GT] = ACTIONS(2939), - [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(2937), - [anon_sym_struct] = ACTIONS(2939), - [anon_sym_mut] = ACTIONS(2939), - [anon_sym_PLUS_PLUS] = ACTIONS(2939), - [anon_sym_DASH_DASH] = ACTIONS(2939), - [anon_sym_QMARK] = ACTIONS(2939), - [anon_sym_BANG] = ACTIONS(2939), - [anon_sym_go] = ACTIONS(2939), - [anon_sym_spawn] = ACTIONS(2939), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2939), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_CARET] = ACTIONS(2939), - [anon_sym_AMP] = ACTIONS(2939), - [anon_sym_LT_DASH] = ACTIONS(2939), - [anon_sym_LT_LT] = ACTIONS(2939), - [anon_sym_GT_GT] = ACTIONS(2939), - [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(2939), - [sym_none] = ACTIONS(2939), - [sym_true] = ACTIONS(2939), - [sym_false] = ACTIONS(2939), - [sym_nil] = ACTIONS(2939), - [anon_sym_QMARK_DOT] = ACTIONS(2939), - [anon_sym_POUND_LBRACK] = ACTIONS(2939), - [anon_sym_if] = ACTIONS(2939), - [anon_sym_DOLLARif] = ACTIONS(2939), - [anon_sym_is] = ACTIONS(2939), - [anon_sym_BANGis] = ACTIONS(2939), - [anon_sym_in] = ACTIONS(2939), - [anon_sym_BANGin] = ACTIONS(2939), - [anon_sym_match] = ACTIONS(2939), - [anon_sym_select] = ACTIONS(2939), - [anon_sym_lock] = ACTIONS(2939), - [anon_sym_rlock] = ACTIONS(2939), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2939), - [sym_int_literal] = ACTIONS(2939), - [sym_float_literal] = ACTIONS(2939), - [sym_rune_literal] = ACTIONS(2939), - [anon_sym_AT] = ACTIONS(2939), - [anon_sym_shared] = ACTIONS(2939), - [anon_sym_map_LBRACK] = ACTIONS(2939), - [anon_sym_chan] = ACTIONS(2939), - [anon_sym_thread] = ACTIONS(2939), - [anon_sym_atomic] = ACTIONS(2939), - [sym___double_quote] = ACTIONS(2939), - [sym___single_quote] = ACTIONS(2939), - [sym___c_double_quote] = ACTIONS(2939), - [sym___c_single_quote] = ACTIONS(2939), - [sym___r_double_quote] = ACTIONS(2939), - [sym___r_single_quote] = ACTIONS(2939), + [1200] = { + [sym_identifier] = ACTIONS(3187), + [anon_sym_LF] = ACTIONS(3187), + [anon_sym_CR] = ACTIONS(3187), + [anon_sym_CR_LF] = ACTIONS(3187), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3187), + [anon_sym_DOT] = ACTIONS(3187), + [anon_sym_as] = ACTIONS(3187), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_COMMA] = ACTIONS(3187), + [anon_sym_RBRACE] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3187), + [anon_sym_PIPE] = ACTIONS(3187), + [anon_sym_fn] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [anon_sym_STAR] = ACTIONS(3187), + [anon_sym_SLASH] = ACTIONS(3187), + [anon_sym_PERCENT] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_GT] = ACTIONS(3187), + [anon_sym_EQ_EQ] = ACTIONS(3187), + [anon_sym_BANG_EQ] = ACTIONS(3187), + [anon_sym_LT_EQ] = ACTIONS(3187), + [anon_sym_GT_EQ] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3185), + [anon_sym_struct] = ACTIONS(3187), + [anon_sym_mut] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3187), + [anon_sym_DASH_DASH] = ACTIONS(3187), + [anon_sym_QMARK] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_go] = ACTIONS(3187), + [anon_sym_spawn] = ACTIONS(3187), + [anon_sym_json_DOTdecode] = ACTIONS(3187), + [anon_sym_LBRACK2] = ACTIONS(3187), + [anon_sym_TILDE] = ACTIONS(3187), + [anon_sym_CARET] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_LT_DASH] = ACTIONS(3187), + [anon_sym_LT_LT] = ACTIONS(3187), + [anon_sym_GT_GT] = ACTIONS(3187), + [anon_sym_GT_GT_GT] = ACTIONS(3187), + [anon_sym_AMP_CARET] = ACTIONS(3187), + [anon_sym_AMP_AMP] = ACTIONS(3187), + [anon_sym_PIPE_PIPE] = ACTIONS(3187), + [anon_sym_or] = ACTIONS(3187), + [sym_none] = ACTIONS(3187), + [sym_true] = ACTIONS(3187), + [sym_false] = ACTIONS(3187), + [sym_nil] = ACTIONS(3187), + [anon_sym_QMARK_DOT] = ACTIONS(3187), + [anon_sym_POUND_LBRACK] = ACTIONS(3187), + [anon_sym_if] = ACTIONS(3187), + [anon_sym_DOLLARif] = ACTIONS(3187), + [anon_sym_is] = ACTIONS(3187), + [anon_sym_BANGis] = ACTIONS(3187), + [anon_sym_in] = ACTIONS(3187), + [anon_sym_BANGin] = ACTIONS(3187), + [anon_sym_match] = ACTIONS(3187), + [anon_sym_select] = ACTIONS(3187), + [anon_sym_lock] = ACTIONS(3187), + [anon_sym_rlock] = ACTIONS(3187), + [anon_sym_unsafe] = ACTIONS(3187), + [anon_sym_sql] = ACTIONS(3187), + [sym_int_literal] = ACTIONS(3187), + [sym_float_literal] = ACTIONS(3187), + [sym_rune_literal] = ACTIONS(3187), + [anon_sym_AT] = ACTIONS(3187), + [anon_sym_shared] = ACTIONS(3187), + [anon_sym_map_LBRACK] = ACTIONS(3187), + [anon_sym_chan] = ACTIONS(3187), + [anon_sym_thread] = ACTIONS(3187), + [anon_sym_atomic] = ACTIONS(3187), + [sym___double_quote] = ACTIONS(3187), + [sym___single_quote] = ACTIONS(3187), + [sym___c_double_quote] = ACTIONS(3187), + [sym___c_single_quote] = ACTIONS(3187), + [sym___r_double_quote] = ACTIONS(3187), + [sym___r_single_quote] = ACTIONS(3187), }, - [1221] = { - [sym_identifier] = ACTIONS(2935), - [anon_sym_LF] = ACTIONS(2935), - [anon_sym_CR] = ACTIONS(2935), - [anon_sym_CR_LF] = ACTIONS(2935), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2935), - [anon_sym_DOT] = ACTIONS(2935), - [anon_sym_as] = ACTIONS(2935), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_COMMA] = ACTIONS(2935), - [anon_sym_RBRACE] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_PIPE] = ACTIONS(2935), - [anon_sym_fn] = ACTIONS(2935), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2935), - [anon_sym_GT] = ACTIONS(2935), - [anon_sym_EQ_EQ] = ACTIONS(2935), - [anon_sym_BANG_EQ] = ACTIONS(2935), - [anon_sym_LT_EQ] = ACTIONS(2935), - [anon_sym_GT_EQ] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_struct] = ACTIONS(2935), - [anon_sym_mut] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2935), - [anon_sym_DASH_DASH] = ACTIONS(2935), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2935), - [anon_sym_json_DOTdecode] = ACTIONS(2935), - [anon_sym_LBRACK2] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_CARET] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LT_DASH] = ACTIONS(2935), - [anon_sym_LT_LT] = ACTIONS(2935), - [anon_sym_GT_GT] = ACTIONS(2935), - [anon_sym_GT_GT_GT] = ACTIONS(2935), - [anon_sym_AMP_CARET] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_PIPE_PIPE] = ACTIONS(2935), - [anon_sym_or] = ACTIONS(2935), - [sym_none] = ACTIONS(2935), - [sym_true] = ACTIONS(2935), - [sym_false] = ACTIONS(2935), - [sym_nil] = ACTIONS(2935), - [anon_sym_QMARK_DOT] = ACTIONS(2935), - [anon_sym_POUND_LBRACK] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_DOLLARif] = ACTIONS(2935), - [anon_sym_is] = ACTIONS(2935), - [anon_sym_BANGis] = ACTIONS(2935), - [anon_sym_in] = ACTIONS(2935), - [anon_sym_BANGin] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2935), - [anon_sym_rlock] = ACTIONS(2935), - [anon_sym_unsafe] = ACTIONS(2935), - [anon_sym_sql] = ACTIONS(2935), - [sym_int_literal] = ACTIONS(2935), - [sym_float_literal] = ACTIONS(2935), - [sym_rune_literal] = ACTIONS(2935), - [anon_sym_AT] = ACTIONS(2935), - [anon_sym_shared] = ACTIONS(2935), - [anon_sym_map_LBRACK] = ACTIONS(2935), - [anon_sym_chan] = ACTIONS(2935), - [anon_sym_thread] = ACTIONS(2935), - [anon_sym_atomic] = ACTIONS(2935), - [sym___double_quote] = ACTIONS(2935), - [sym___single_quote] = ACTIONS(2935), - [sym___c_double_quote] = ACTIONS(2935), - [sym___c_single_quote] = ACTIONS(2935), - [sym___r_double_quote] = ACTIONS(2935), - [sym___r_single_quote] = ACTIONS(2935), + [1201] = { + [sym_identifier] = ACTIONS(2806), + [anon_sym_LF] = ACTIONS(2806), + [anon_sym_CR] = ACTIONS(2806), + [anon_sym_CR_LF] = ACTIONS(2806), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_DOT] = ACTIONS(2806), + [anon_sym_as] = ACTIONS(2806), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_COMMA] = ACTIONS(2806), + [anon_sym_RBRACE] = ACTIONS(2806), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2806), + [anon_sym_PLUS] = ACTIONS(2806), + [anon_sym_DASH] = ACTIONS(2806), + [anon_sym_STAR] = ACTIONS(2806), + [anon_sym_SLASH] = ACTIONS(2806), + [anon_sym_PERCENT] = ACTIONS(2806), + [anon_sym_LT] = ACTIONS(2806), + [anon_sym_GT] = ACTIONS(2806), + [anon_sym_EQ_EQ] = ACTIONS(2806), + [anon_sym_BANG_EQ] = ACTIONS(2806), + [anon_sym_LT_EQ] = ACTIONS(2806), + [anon_sym_GT_EQ] = ACTIONS(2806), + [anon_sym_LBRACK] = ACTIONS(2804), + [anon_sym_struct] = ACTIONS(2806), + [anon_sym_mut] = ACTIONS(2806), + [anon_sym_PLUS_PLUS] = ACTIONS(2806), + [anon_sym_DASH_DASH] = ACTIONS(2806), + [anon_sym_QMARK] = ACTIONS(2806), + [anon_sym_BANG] = ACTIONS(2806), + [anon_sym_go] = ACTIONS(2806), + [anon_sym_spawn] = ACTIONS(2806), + [anon_sym_json_DOTdecode] = ACTIONS(2806), + [anon_sym_LBRACK2] = ACTIONS(2806), + [anon_sym_TILDE] = ACTIONS(2806), + [anon_sym_CARET] = ACTIONS(2806), + [anon_sym_AMP] = ACTIONS(2806), + [anon_sym_LT_DASH] = ACTIONS(2806), + [anon_sym_LT_LT] = ACTIONS(2806), + [anon_sym_GT_GT] = ACTIONS(2806), + [anon_sym_GT_GT_GT] = ACTIONS(2806), + [anon_sym_AMP_CARET] = ACTIONS(2806), + [anon_sym_AMP_AMP] = ACTIONS(2806), + [anon_sym_PIPE_PIPE] = ACTIONS(2806), + [anon_sym_or] = ACTIONS(2806), + [sym_none] = ACTIONS(2806), + [sym_true] = ACTIONS(2806), + [sym_false] = ACTIONS(2806), + [sym_nil] = ACTIONS(2806), + [anon_sym_QMARK_DOT] = ACTIONS(2806), + [anon_sym_POUND_LBRACK] = ACTIONS(2806), + [anon_sym_if] = ACTIONS(2806), + [anon_sym_DOLLARif] = ACTIONS(2806), + [anon_sym_is] = ACTIONS(2806), + [anon_sym_BANGis] = ACTIONS(2806), + [anon_sym_in] = ACTIONS(2806), + [anon_sym_BANGin] = ACTIONS(2806), + [anon_sym_match] = ACTIONS(2806), + [anon_sym_select] = ACTIONS(2806), + [anon_sym_lock] = ACTIONS(2806), + [anon_sym_rlock] = ACTIONS(2806), + [anon_sym_unsafe] = ACTIONS(2806), + [anon_sym_sql] = ACTIONS(2806), + [sym_int_literal] = ACTIONS(2806), + [sym_float_literal] = ACTIONS(2806), + [sym_rune_literal] = ACTIONS(2806), + [anon_sym_AT] = ACTIONS(2806), + [anon_sym_shared] = ACTIONS(2806), + [anon_sym_map_LBRACK] = ACTIONS(2806), + [anon_sym_chan] = ACTIONS(2806), + [anon_sym_thread] = ACTIONS(2806), + [anon_sym_atomic] = ACTIONS(2806), + [sym___double_quote] = ACTIONS(2806), + [sym___single_quote] = ACTIONS(2806), + [sym___c_double_quote] = ACTIONS(2806), + [sym___c_single_quote] = ACTIONS(2806), + [sym___r_double_quote] = ACTIONS(2806), + [sym___r_single_quote] = ACTIONS(2806), }, - [1222] = { - [sym_identifier] = ACTIONS(2919), - [anon_sym_LF] = ACTIONS(2919), - [anon_sym_CR] = ACTIONS(2919), - [anon_sym_CR_LF] = ACTIONS(2919), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_as] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_COMMA] = ACTIONS(2919), - [anon_sym_RBRACE] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_PIPE] = ACTIONS(2919), - [anon_sym_fn] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_SLASH] = ACTIONS(2919), - [anon_sym_PERCENT] = ACTIONS(2919), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_GT] = ACTIONS(2919), - [anon_sym_EQ_EQ] = ACTIONS(2919), - [anon_sym_BANG_EQ] = ACTIONS(2919), - [anon_sym_LT_EQ] = ACTIONS(2919), - [anon_sym_GT_EQ] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_mut] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2919), - [anon_sym_DASH_DASH] = ACTIONS(2919), - [anon_sym_QMARK] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_go] = ACTIONS(2919), - [anon_sym_spawn] = ACTIONS(2919), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_CARET] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_LT_DASH] = ACTIONS(2919), - [anon_sym_LT_LT] = ACTIONS(2919), - [anon_sym_GT_GT] = ACTIONS(2919), - [anon_sym_GT_GT_GT] = ACTIONS(2919), - [anon_sym_AMP_CARET] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_PIPE_PIPE] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(2919), - [sym_none] = ACTIONS(2919), - [sym_true] = ACTIONS(2919), - [sym_false] = ACTIONS(2919), - [sym_nil] = ACTIONS(2919), - [anon_sym_QMARK_DOT] = ACTIONS(2919), - [anon_sym_POUND_LBRACK] = ACTIONS(2919), - [anon_sym_if] = ACTIONS(2919), - [anon_sym_DOLLARif] = ACTIONS(2919), - [anon_sym_is] = ACTIONS(2919), - [anon_sym_BANGis] = ACTIONS(2919), - [anon_sym_in] = ACTIONS(2919), - [anon_sym_BANGin] = ACTIONS(2919), - [anon_sym_match] = ACTIONS(2919), - [anon_sym_select] = ACTIONS(2919), - [anon_sym_lock] = ACTIONS(2919), - [anon_sym_rlock] = ACTIONS(2919), - [anon_sym_unsafe] = ACTIONS(2919), - [anon_sym_sql] = ACTIONS(2919), - [sym_int_literal] = ACTIONS(2919), - [sym_float_literal] = ACTIONS(2919), - [sym_rune_literal] = ACTIONS(2919), - [anon_sym_AT] = ACTIONS(2919), - [anon_sym_shared] = ACTIONS(2919), - [anon_sym_map_LBRACK] = ACTIONS(2919), - [anon_sym_chan] = ACTIONS(2919), - [anon_sym_thread] = ACTIONS(2919), - [anon_sym_atomic] = ACTIONS(2919), - [sym___double_quote] = ACTIONS(2919), - [sym___single_quote] = ACTIONS(2919), - [sym___c_double_quote] = ACTIONS(2919), - [sym___c_single_quote] = ACTIONS(2919), - [sym___r_double_quote] = ACTIONS(2919), - [sym___r_single_quote] = ACTIONS(2919), + [1202] = { + [sym_identifier] = ACTIONS(3022), + [anon_sym_LF] = ACTIONS(3022), + [anon_sym_CR] = ACTIONS(3022), + [anon_sym_CR_LF] = ACTIONS(3022), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3022), + [sym___single_quote] = ACTIONS(3022), + [sym___c_double_quote] = ACTIONS(3022), + [sym___c_single_quote] = ACTIONS(3022), + [sym___r_double_quote] = ACTIONS(3022), + [sym___r_single_quote] = ACTIONS(3022), }, - [1223] = { - [sym_identifier] = ACTIONS(2903), - [anon_sym_LF] = ACTIONS(2903), - [anon_sym_CR] = ACTIONS(2903), - [anon_sym_CR_LF] = ACTIONS(2903), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2903), - [anon_sym_DOT] = ACTIONS(2903), - [anon_sym_as] = ACTIONS(2903), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_COMMA] = ACTIONS(2903), - [anon_sym_RBRACE] = ACTIONS(2903), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2903), - [anon_sym_PLUS] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_STAR] = ACTIONS(2903), - [anon_sym_SLASH] = ACTIONS(2903), - [anon_sym_PERCENT] = ACTIONS(2903), - [anon_sym_LT] = ACTIONS(2903), - [anon_sym_GT] = ACTIONS(2903), - [anon_sym_EQ_EQ] = ACTIONS(2903), - [anon_sym_BANG_EQ] = ACTIONS(2903), - [anon_sym_LT_EQ] = ACTIONS(2903), - [anon_sym_GT_EQ] = ACTIONS(2903), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_struct] = ACTIONS(2903), - [anon_sym_mut] = ACTIONS(2903), - [anon_sym_PLUS_PLUS] = ACTIONS(2903), - [anon_sym_DASH_DASH] = ACTIONS(2903), - [anon_sym_QMARK] = ACTIONS(2903), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_go] = ACTIONS(2903), - [anon_sym_spawn] = ACTIONS(2903), - [anon_sym_json_DOTdecode] = ACTIONS(2903), - [anon_sym_LBRACK2] = ACTIONS(2903), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_CARET] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2903), - [anon_sym_LT_DASH] = ACTIONS(2903), - [anon_sym_LT_LT] = ACTIONS(2903), - [anon_sym_GT_GT] = ACTIONS(2903), - [anon_sym_GT_GT_GT] = ACTIONS(2903), - [anon_sym_AMP_CARET] = ACTIONS(2903), - [anon_sym_AMP_AMP] = ACTIONS(2903), - [anon_sym_PIPE_PIPE] = ACTIONS(2903), - [anon_sym_or] = ACTIONS(2903), - [sym_none] = ACTIONS(2903), - [sym_true] = ACTIONS(2903), - [sym_false] = ACTIONS(2903), - [sym_nil] = ACTIONS(2903), - [anon_sym_QMARK_DOT] = ACTIONS(2903), - [anon_sym_POUND_LBRACK] = ACTIONS(2903), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_DOLLARif] = ACTIONS(2903), - [anon_sym_is] = ACTIONS(2903), - [anon_sym_BANGis] = ACTIONS(2903), - [anon_sym_in] = ACTIONS(2903), - [anon_sym_BANGin] = ACTIONS(2903), - [anon_sym_match] = ACTIONS(2903), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2903), - [anon_sym_rlock] = ACTIONS(2903), - [anon_sym_unsafe] = ACTIONS(2903), - [anon_sym_sql] = ACTIONS(2903), - [sym_int_literal] = ACTIONS(2903), - [sym_float_literal] = ACTIONS(2903), - [sym_rune_literal] = ACTIONS(2903), - [anon_sym_AT] = ACTIONS(2903), - [anon_sym_shared] = ACTIONS(2903), - [anon_sym_map_LBRACK] = ACTIONS(2903), - [anon_sym_chan] = ACTIONS(2903), - [anon_sym_thread] = ACTIONS(2903), - [anon_sym_atomic] = ACTIONS(2903), - [sym___double_quote] = ACTIONS(2903), - [sym___single_quote] = ACTIONS(2903), - [sym___c_double_quote] = ACTIONS(2903), - [sym___c_single_quote] = ACTIONS(2903), - [sym___r_double_quote] = ACTIONS(2903), - [sym___r_single_quote] = ACTIONS(2903), + [1203] = { + [sym_identifier] = ACTIONS(2974), + [anon_sym_LF] = ACTIONS(2974), + [anon_sym_CR] = ACTIONS(2974), + [anon_sym_CR_LF] = ACTIONS(2974), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2974), + [anon_sym_DOT] = ACTIONS(2974), + [anon_sym_as] = ACTIONS(2974), + [anon_sym_LBRACE] = ACTIONS(2974), + [anon_sym_COMMA] = ACTIONS(2974), + [anon_sym_RBRACE] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2974), + [anon_sym_PIPE] = ACTIONS(2974), + [anon_sym_fn] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(2974), + [anon_sym_SLASH] = ACTIONS(2974), + [anon_sym_PERCENT] = ACTIONS(2974), + [anon_sym_LT] = ACTIONS(2974), + [anon_sym_GT] = ACTIONS(2974), + [anon_sym_EQ_EQ] = ACTIONS(2974), + [anon_sym_BANG_EQ] = ACTIONS(2974), + [anon_sym_LT_EQ] = ACTIONS(2974), + [anon_sym_GT_EQ] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_struct] = ACTIONS(2974), + [anon_sym_mut] = ACTIONS(2974), + [anon_sym_PLUS_PLUS] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(2974), + [anon_sym_QMARK] = ACTIONS(2974), + [anon_sym_BANG] = ACTIONS(2974), + [anon_sym_go] = ACTIONS(2974), + [anon_sym_spawn] = ACTIONS(2974), + [anon_sym_json_DOTdecode] = ACTIONS(2974), + [anon_sym_LBRACK2] = ACTIONS(2974), + [anon_sym_TILDE] = ACTIONS(2974), + [anon_sym_CARET] = ACTIONS(2974), + [anon_sym_AMP] = ACTIONS(2974), + [anon_sym_LT_DASH] = ACTIONS(2974), + [anon_sym_LT_LT] = ACTIONS(2974), + [anon_sym_GT_GT] = ACTIONS(2974), + [anon_sym_GT_GT_GT] = ACTIONS(2974), + [anon_sym_AMP_CARET] = ACTIONS(2974), + [anon_sym_AMP_AMP] = ACTIONS(2974), + [anon_sym_PIPE_PIPE] = ACTIONS(2974), + [anon_sym_or] = ACTIONS(2974), + [sym_none] = ACTIONS(2974), + [sym_true] = ACTIONS(2974), + [sym_false] = ACTIONS(2974), + [sym_nil] = ACTIONS(2974), + [anon_sym_QMARK_DOT] = ACTIONS(2974), + [anon_sym_POUND_LBRACK] = ACTIONS(2974), + [anon_sym_if] = ACTIONS(2974), + [anon_sym_DOLLARif] = ACTIONS(2974), + [anon_sym_is] = ACTIONS(2974), + [anon_sym_BANGis] = ACTIONS(2974), + [anon_sym_in] = ACTIONS(2974), + [anon_sym_BANGin] = ACTIONS(2974), + [anon_sym_match] = ACTIONS(2974), + [anon_sym_select] = ACTIONS(2974), + [anon_sym_lock] = ACTIONS(2974), + [anon_sym_rlock] = ACTIONS(2974), + [anon_sym_unsafe] = ACTIONS(2974), + [anon_sym_sql] = ACTIONS(2974), + [sym_int_literal] = ACTIONS(2974), + [sym_float_literal] = ACTIONS(2974), + [sym_rune_literal] = ACTIONS(2974), + [anon_sym_AT] = ACTIONS(2974), + [anon_sym_shared] = ACTIONS(2974), + [anon_sym_map_LBRACK] = ACTIONS(2974), + [anon_sym_chan] = ACTIONS(2974), + [anon_sym_thread] = ACTIONS(2974), + [anon_sym_atomic] = ACTIONS(2974), + [sym___double_quote] = ACTIONS(2974), + [sym___single_quote] = ACTIONS(2974), + [sym___c_double_quote] = ACTIONS(2974), + [sym___c_single_quote] = ACTIONS(2974), + [sym___r_double_quote] = ACTIONS(2974), + [sym___r_single_quote] = ACTIONS(2974), }, - [1224] = { - [sym_identifier] = ACTIONS(2943), - [anon_sym_LF] = ACTIONS(2943), - [anon_sym_CR] = ACTIONS(2943), - [anon_sym_CR_LF] = ACTIONS(2943), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2943), - [anon_sym_DOT] = ACTIONS(2943), - [anon_sym_as] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2943), - [anon_sym_COMMA] = ACTIONS(2943), - [anon_sym_RBRACE] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2943), - [anon_sym_fn] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_SLASH] = ACTIONS(2943), - [anon_sym_PERCENT] = ACTIONS(2943), - [anon_sym_LT] = ACTIONS(2943), - [anon_sym_GT] = ACTIONS(2943), - [anon_sym_EQ_EQ] = ACTIONS(2943), - [anon_sym_BANG_EQ] = ACTIONS(2943), - [anon_sym_LT_EQ] = ACTIONS(2943), - [anon_sym_GT_EQ] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_struct] = ACTIONS(2943), - [anon_sym_mut] = ACTIONS(2943), - [anon_sym_PLUS_PLUS] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(2943), - [anon_sym_QMARK] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(3594), - [anon_sym_go] = ACTIONS(2943), - [anon_sym_spawn] = ACTIONS(2943), - [anon_sym_json_DOTdecode] = ACTIONS(2943), - [anon_sym_LBRACK2] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_CARET] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_LT_DASH] = ACTIONS(2943), - [anon_sym_LT_LT] = ACTIONS(2943), - [anon_sym_GT_GT] = ACTIONS(2943), - [anon_sym_GT_GT_GT] = ACTIONS(2943), - [anon_sym_AMP_CARET] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2943), - [anon_sym_PIPE_PIPE] = ACTIONS(2943), - [anon_sym_or] = ACTIONS(2943), - [sym_none] = ACTIONS(2943), - [sym_true] = ACTIONS(2943), - [sym_false] = ACTIONS(2943), - [sym_nil] = ACTIONS(2943), - [anon_sym_QMARK_DOT] = ACTIONS(2943), - [anon_sym_POUND_LBRACK] = ACTIONS(2943), - [anon_sym_if] = ACTIONS(2943), - [anon_sym_DOLLARif] = ACTIONS(2943), - [anon_sym_is] = ACTIONS(2943), - [anon_sym_BANGis] = ACTIONS(2943), - [anon_sym_in] = ACTIONS(2943), - [anon_sym_BANGin] = ACTIONS(2943), - [anon_sym_match] = ACTIONS(2943), - [anon_sym_select] = ACTIONS(2943), - [anon_sym_lock] = ACTIONS(2943), - [anon_sym_rlock] = ACTIONS(2943), - [anon_sym_unsafe] = ACTIONS(2943), - [anon_sym_sql] = ACTIONS(2943), - [sym_int_literal] = ACTIONS(2943), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [anon_sym_AT] = ACTIONS(2943), - [anon_sym_shared] = ACTIONS(2943), - [anon_sym_map_LBRACK] = ACTIONS(2943), - [anon_sym_chan] = ACTIONS(2943), - [anon_sym_thread] = ACTIONS(2943), - [anon_sym_atomic] = ACTIONS(2943), - [sym___double_quote] = ACTIONS(2943), - [sym___single_quote] = ACTIONS(2943), - [sym___c_double_quote] = ACTIONS(2943), - [sym___c_single_quote] = ACTIONS(2943), - [sym___r_double_quote] = ACTIONS(2943), - [sym___r_single_quote] = ACTIONS(2943), + [1204] = { + [sym_identifier] = ACTIONS(2846), + [anon_sym_LF] = ACTIONS(2846), + [anon_sym_CR] = ACTIONS(2846), + [anon_sym_CR_LF] = ACTIONS(2846), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2846), + [anon_sym_DOT] = ACTIONS(2846), + [anon_sym_as] = ACTIONS(2846), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_COMMA] = ACTIONS(2846), + [anon_sym_RBRACE] = ACTIONS(2846), + [anon_sym_LPAREN] = ACTIONS(2846), + [anon_sym_PIPE] = ACTIONS(2846), + [anon_sym_fn] = ACTIONS(2846), + [anon_sym_PLUS] = ACTIONS(2846), + [anon_sym_DASH] = ACTIONS(2846), + [anon_sym_STAR] = ACTIONS(2846), + [anon_sym_SLASH] = ACTIONS(2846), + [anon_sym_PERCENT] = ACTIONS(2846), + [anon_sym_LT] = ACTIONS(2846), + [anon_sym_GT] = ACTIONS(2846), + [anon_sym_EQ_EQ] = ACTIONS(2846), + [anon_sym_BANG_EQ] = ACTIONS(2846), + [anon_sym_LT_EQ] = ACTIONS(2846), + [anon_sym_GT_EQ] = ACTIONS(2846), + [anon_sym_LBRACK] = ACTIONS(2844), + [anon_sym_struct] = ACTIONS(2846), + [anon_sym_mut] = ACTIONS(2846), + [anon_sym_PLUS_PLUS] = ACTIONS(2846), + [anon_sym_DASH_DASH] = ACTIONS(2846), + [anon_sym_QMARK] = ACTIONS(2846), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_go] = ACTIONS(2846), + [anon_sym_spawn] = ACTIONS(2846), + [anon_sym_json_DOTdecode] = ACTIONS(2846), + [anon_sym_LBRACK2] = ACTIONS(2846), + [anon_sym_TILDE] = ACTIONS(2846), + [anon_sym_CARET] = ACTIONS(2846), + [anon_sym_AMP] = ACTIONS(2846), + [anon_sym_LT_DASH] = ACTIONS(2846), + [anon_sym_LT_LT] = ACTIONS(2846), + [anon_sym_GT_GT] = ACTIONS(2846), + [anon_sym_GT_GT_GT] = ACTIONS(2846), + [anon_sym_AMP_CARET] = ACTIONS(2846), + [anon_sym_AMP_AMP] = ACTIONS(2846), + [anon_sym_PIPE_PIPE] = ACTIONS(2846), + [anon_sym_or] = ACTIONS(2846), + [sym_none] = ACTIONS(2846), + [sym_true] = ACTIONS(2846), + [sym_false] = ACTIONS(2846), + [sym_nil] = ACTIONS(2846), + [anon_sym_QMARK_DOT] = ACTIONS(2846), + [anon_sym_POUND_LBRACK] = ACTIONS(2846), + [anon_sym_if] = ACTIONS(2846), + [anon_sym_DOLLARif] = ACTIONS(2846), + [anon_sym_is] = ACTIONS(2846), + [anon_sym_BANGis] = ACTIONS(2846), + [anon_sym_in] = ACTIONS(2846), + [anon_sym_BANGin] = ACTIONS(2846), + [anon_sym_match] = ACTIONS(2846), + [anon_sym_select] = ACTIONS(2846), + [anon_sym_lock] = ACTIONS(2846), + [anon_sym_rlock] = ACTIONS(2846), + [anon_sym_unsafe] = ACTIONS(2846), + [anon_sym_sql] = ACTIONS(2846), + [sym_int_literal] = ACTIONS(2846), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2846), + [anon_sym_shared] = ACTIONS(2846), + [anon_sym_map_LBRACK] = ACTIONS(2846), + [anon_sym_chan] = ACTIONS(2846), + [anon_sym_thread] = ACTIONS(2846), + [anon_sym_atomic] = ACTIONS(2846), + [sym___double_quote] = ACTIONS(2846), + [sym___single_quote] = ACTIONS(2846), + [sym___c_double_quote] = ACTIONS(2846), + [sym___c_single_quote] = ACTIONS(2846), + [sym___r_double_quote] = ACTIONS(2846), + [sym___r_single_quote] = ACTIONS(2846), }, - [1225] = { - [sym_identifier] = ACTIONS(3029), - [anon_sym_LF] = ACTIONS(3029), - [anon_sym_CR] = ACTIONS(3029), - [anon_sym_CR_LF] = ACTIONS(3029), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(2774), - [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_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_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_AT] = ACTIONS(3029), - [anon_sym_shared] = ACTIONS(3029), - [anon_sym_map_LBRACK] = ACTIONS(3029), - [anon_sym_chan] = ACTIONS(3029), - [anon_sym_thread] = ACTIONS(3029), - [anon_sym_atomic] = ACTIONS(3029), - [sym___double_quote] = ACTIONS(3029), - [sym___single_quote] = ACTIONS(3029), - [sym___c_double_quote] = ACTIONS(3029), - [sym___c_single_quote] = ACTIONS(3029), - [sym___r_double_quote] = ACTIONS(3029), - [sym___r_single_quote] = ACTIONS(3029), + [1205] = { + [sym_identifier] = ACTIONS(2962), + [anon_sym_LF] = ACTIONS(2962), + [anon_sym_CR] = ACTIONS(2962), + [anon_sym_CR_LF] = ACTIONS(2962), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2962), + [anon_sym_DOT] = ACTIONS(2962), + [anon_sym_as] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_COMMA] = ACTIONS(2962), + [anon_sym_RBRACE] = ACTIONS(2962), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(2962), + [anon_sym_fn] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_SLASH] = ACTIONS(2962), + [anon_sym_PERCENT] = ACTIONS(2962), + [anon_sym_LT] = ACTIONS(2962), + [anon_sym_GT] = ACTIONS(2962), + [anon_sym_EQ_EQ] = ACTIONS(2962), + [anon_sym_BANG_EQ] = ACTIONS(2962), + [anon_sym_LT_EQ] = ACTIONS(2962), + [anon_sym_GT_EQ] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(2960), + [anon_sym_struct] = ACTIONS(2962), + [anon_sym_mut] = ACTIONS(2962), + [anon_sym_PLUS_PLUS] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(2962), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_go] = ACTIONS(2962), + [anon_sym_spawn] = ACTIONS(2962), + [anon_sym_json_DOTdecode] = ACTIONS(2962), + [anon_sym_LBRACK2] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_CARET] = ACTIONS(2962), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_LT_DASH] = ACTIONS(2962), + [anon_sym_LT_LT] = ACTIONS(2962), + [anon_sym_GT_GT] = ACTIONS(2962), + [anon_sym_GT_GT_GT] = ACTIONS(2962), + [anon_sym_AMP_CARET] = ACTIONS(2962), + [anon_sym_AMP_AMP] = ACTIONS(2962), + [anon_sym_PIPE_PIPE] = ACTIONS(2962), + [anon_sym_or] = ACTIONS(2962), + [sym_none] = ACTIONS(2962), + [sym_true] = ACTIONS(2962), + [sym_false] = ACTIONS(2962), + [sym_nil] = ACTIONS(2962), + [anon_sym_QMARK_DOT] = ACTIONS(2962), + [anon_sym_POUND_LBRACK] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_DOLLARif] = ACTIONS(2962), + [anon_sym_is] = ACTIONS(2962), + [anon_sym_BANGis] = ACTIONS(2962), + [anon_sym_in] = ACTIONS(2962), + [anon_sym_BANGin] = ACTIONS(2962), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_select] = ACTIONS(2962), + [anon_sym_lock] = ACTIONS(2962), + [anon_sym_rlock] = ACTIONS(2962), + [anon_sym_unsafe] = ACTIONS(2962), + [anon_sym_sql] = ACTIONS(2962), + [sym_int_literal] = ACTIONS(2962), + [sym_float_literal] = ACTIONS(2962), + [sym_rune_literal] = ACTIONS(2962), + [anon_sym_AT] = ACTIONS(2962), + [anon_sym_shared] = ACTIONS(2962), + [anon_sym_map_LBRACK] = ACTIONS(2962), + [anon_sym_chan] = ACTIONS(2962), + [anon_sym_thread] = ACTIONS(2962), + [anon_sym_atomic] = ACTIONS(2962), + [sym___double_quote] = ACTIONS(2962), + [sym___single_quote] = ACTIONS(2962), + [sym___c_double_quote] = ACTIONS(2962), + [sym___c_single_quote] = ACTIONS(2962), + [sym___r_double_quote] = ACTIONS(2962), + [sym___r_single_quote] = ACTIONS(2962), }, - [1226] = { - [sym_identifier] = ACTIONS(3025), - [anon_sym_LF] = ACTIONS(3025), - [anon_sym_CR] = ACTIONS(3025), - [anon_sym_CR_LF] = ACTIONS(3025), - [sym_comment] = ACTIONS(487), - [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_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_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_AT] = 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), - [sym___double_quote] = ACTIONS(3025), - [sym___single_quote] = ACTIONS(3025), - [sym___c_double_quote] = ACTIONS(3025), - [sym___c_single_quote] = ACTIONS(3025), - [sym___r_double_quote] = ACTIONS(3025), - [sym___r_single_quote] = ACTIONS(3025), + [1206] = { + [sym_identifier] = ACTIONS(2934), + [anon_sym_LF] = ACTIONS(2934), + [anon_sym_CR] = ACTIONS(2934), + [anon_sym_CR_LF] = ACTIONS(2934), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2934), + [anon_sym_DOT] = ACTIONS(2934), + [anon_sym_as] = ACTIONS(2934), + [anon_sym_LBRACE] = ACTIONS(2934), + [anon_sym_COMMA] = ACTIONS(2934), + [anon_sym_RBRACE] = ACTIONS(2934), + [anon_sym_LPAREN] = ACTIONS(2934), + [anon_sym_PIPE] = ACTIONS(2934), + [anon_sym_fn] = ACTIONS(2934), + [anon_sym_PLUS] = ACTIONS(2934), + [anon_sym_DASH] = ACTIONS(2934), + [anon_sym_STAR] = ACTIONS(2934), + [anon_sym_SLASH] = ACTIONS(2934), + [anon_sym_PERCENT] = ACTIONS(2934), + [anon_sym_LT] = ACTIONS(2934), + [anon_sym_GT] = ACTIONS(2934), + [anon_sym_EQ_EQ] = ACTIONS(2934), + [anon_sym_BANG_EQ] = ACTIONS(2934), + [anon_sym_LT_EQ] = ACTIONS(2934), + [anon_sym_GT_EQ] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2932), + [anon_sym_struct] = ACTIONS(2934), + [anon_sym_mut] = ACTIONS(2934), + [anon_sym_PLUS_PLUS] = ACTIONS(2934), + [anon_sym_DASH_DASH] = ACTIONS(2934), + [anon_sym_QMARK] = ACTIONS(2934), + [anon_sym_BANG] = ACTIONS(2934), + [anon_sym_go] = ACTIONS(2934), + [anon_sym_spawn] = ACTIONS(2934), + [anon_sym_json_DOTdecode] = ACTIONS(2934), + [anon_sym_LBRACK2] = ACTIONS(2934), + [anon_sym_TILDE] = ACTIONS(2934), + [anon_sym_CARET] = ACTIONS(2934), + [anon_sym_AMP] = ACTIONS(2934), + [anon_sym_LT_DASH] = ACTIONS(2934), + [anon_sym_LT_LT] = ACTIONS(2934), + [anon_sym_GT_GT] = ACTIONS(2934), + [anon_sym_GT_GT_GT] = ACTIONS(2934), + [anon_sym_AMP_CARET] = ACTIONS(2934), + [anon_sym_AMP_AMP] = ACTIONS(2934), + [anon_sym_PIPE_PIPE] = ACTIONS(2934), + [anon_sym_or] = ACTIONS(2934), + [sym_none] = ACTIONS(2934), + [sym_true] = ACTIONS(2934), + [sym_false] = ACTIONS(2934), + [sym_nil] = ACTIONS(2934), + [anon_sym_QMARK_DOT] = ACTIONS(2934), + [anon_sym_POUND_LBRACK] = ACTIONS(2934), + [anon_sym_if] = ACTIONS(2934), + [anon_sym_DOLLARif] = ACTIONS(2934), + [anon_sym_is] = ACTIONS(2934), + [anon_sym_BANGis] = ACTIONS(2934), + [anon_sym_in] = ACTIONS(2934), + [anon_sym_BANGin] = ACTIONS(2934), + [anon_sym_match] = ACTIONS(2934), + [anon_sym_select] = ACTIONS(2934), + [anon_sym_lock] = ACTIONS(2934), + [anon_sym_rlock] = ACTIONS(2934), + [anon_sym_unsafe] = ACTIONS(2934), + [anon_sym_sql] = ACTIONS(2934), + [sym_int_literal] = ACTIONS(2934), + [sym_float_literal] = ACTIONS(2934), + [sym_rune_literal] = ACTIONS(2934), + [anon_sym_AT] = ACTIONS(2934), + [anon_sym_shared] = ACTIONS(2934), + [anon_sym_map_LBRACK] = ACTIONS(2934), + [anon_sym_chan] = ACTIONS(2934), + [anon_sym_thread] = ACTIONS(2934), + [anon_sym_atomic] = ACTIONS(2934), + [sym___double_quote] = ACTIONS(2934), + [sym___single_quote] = ACTIONS(2934), + [sym___c_double_quote] = ACTIONS(2934), + [sym___c_single_quote] = ACTIONS(2934), + [sym___r_double_quote] = ACTIONS(2934), + [sym___r_single_quote] = ACTIONS(2934), }, - [1227] = { - [sym_identifier] = ACTIONS(3005), - [anon_sym_LF] = ACTIONS(3005), - [anon_sym_CR] = ACTIONS(3005), - [anon_sym_CR_LF] = ACTIONS(3005), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_as] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3005), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_fn] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_SLASH] = ACTIONS(3005), - [anon_sym_PERCENT] = ACTIONS(3005), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_LT_EQ] = ACTIONS(3005), - [anon_sym_GT_EQ] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_mut] = ACTIONS(3005), - [anon_sym_PLUS_PLUS] = ACTIONS(3005), - [anon_sym_DASH_DASH] = ACTIONS(3005), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_go] = ACTIONS(3005), - [anon_sym_spawn] = ACTIONS(3005), - [anon_sym_json_DOTdecode] = ACTIONS(3005), - [anon_sym_LBRACK2] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3005), - [anon_sym_LT_DASH] = ACTIONS(3005), - [anon_sym_LT_LT] = ACTIONS(3005), - [anon_sym_GT_GT] = ACTIONS(3005), - [anon_sym_GT_GT_GT] = ACTIONS(3005), - [anon_sym_AMP_CARET] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(3005), - [anon_sym_PIPE_PIPE] = ACTIONS(3005), - [anon_sym_or] = ACTIONS(3005), - [sym_none] = ACTIONS(3005), - [sym_true] = ACTIONS(3005), - [sym_false] = ACTIONS(3005), - [sym_nil] = ACTIONS(3005), - [anon_sym_QMARK_DOT] = ACTIONS(3005), - [anon_sym_POUND_LBRACK] = ACTIONS(3005), - [anon_sym_if] = ACTIONS(3005), - [anon_sym_DOLLARif] = ACTIONS(3005), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3005), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_BANGin] = ACTIONS(3005), - [anon_sym_match] = ACTIONS(3005), - [anon_sym_select] = ACTIONS(3005), - [anon_sym_lock] = ACTIONS(3005), - [anon_sym_rlock] = ACTIONS(3005), - [anon_sym_unsafe] = ACTIONS(3005), - [anon_sym_sql] = ACTIONS(3005), - [sym_int_literal] = ACTIONS(3005), - [sym_float_literal] = ACTIONS(3005), - [sym_rune_literal] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(3005), - [anon_sym_shared] = ACTIONS(3005), - [anon_sym_map_LBRACK] = ACTIONS(3005), - [anon_sym_chan] = ACTIONS(3005), - [anon_sym_thread] = ACTIONS(3005), - [anon_sym_atomic] = ACTIONS(3005), - [sym___double_quote] = ACTIONS(3005), - [sym___single_quote] = ACTIONS(3005), - [sym___c_double_quote] = ACTIONS(3005), - [sym___c_single_quote] = ACTIONS(3005), - [sym___r_double_quote] = ACTIONS(3005), - [sym___r_single_quote] = ACTIONS(3005), + [1207] = { + [sym_identifier] = ACTIONS(2870), + [anon_sym_LF] = ACTIONS(2870), + [anon_sym_CR] = ACTIONS(2870), + [anon_sym_CR_LF] = ACTIONS(2870), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym_DOT] = ACTIONS(2870), + [anon_sym_as] = ACTIONS(2870), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_COMMA] = ACTIONS(2870), + [anon_sym_RBRACE] = ACTIONS(2870), + [anon_sym_LPAREN] = ACTIONS(2870), + [anon_sym_PIPE] = ACTIONS(2870), + [anon_sym_fn] = ACTIONS(2870), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_SLASH] = ACTIONS(2870), + [anon_sym_PERCENT] = ACTIONS(2870), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_GT] = ACTIONS(2870), + [anon_sym_EQ_EQ] = ACTIONS(2870), + [anon_sym_BANG_EQ] = ACTIONS(2870), + [anon_sym_LT_EQ] = ACTIONS(2870), + [anon_sym_GT_EQ] = ACTIONS(2870), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2870), + [anon_sym_mut] = ACTIONS(2870), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_QMARK] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_go] = ACTIONS(2870), + [anon_sym_spawn] = ACTIONS(2870), + [anon_sym_json_DOTdecode] = ACTIONS(2870), + [anon_sym_LBRACK2] = ACTIONS(2870), + [anon_sym_TILDE] = ACTIONS(2870), + [anon_sym_CARET] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2870), + [anon_sym_LT_DASH] = ACTIONS(2870), + [anon_sym_LT_LT] = ACTIONS(2870), + [anon_sym_GT_GT] = ACTIONS(2870), + [anon_sym_GT_GT_GT] = ACTIONS(2870), + [anon_sym_AMP_CARET] = ACTIONS(2870), + [anon_sym_AMP_AMP] = ACTIONS(2870), + [anon_sym_PIPE_PIPE] = ACTIONS(2870), + [anon_sym_or] = ACTIONS(2870), + [sym_none] = ACTIONS(2870), + [sym_true] = ACTIONS(2870), + [sym_false] = ACTIONS(2870), + [sym_nil] = ACTIONS(2870), + [anon_sym_QMARK_DOT] = ACTIONS(2870), + [anon_sym_POUND_LBRACK] = ACTIONS(2870), + [anon_sym_if] = ACTIONS(2870), + [anon_sym_DOLLARif] = ACTIONS(2870), + [anon_sym_is] = ACTIONS(2870), + [anon_sym_BANGis] = ACTIONS(2870), + [anon_sym_in] = ACTIONS(2870), + [anon_sym_BANGin] = ACTIONS(2870), + [anon_sym_match] = ACTIONS(2870), + [anon_sym_select] = ACTIONS(2870), + [anon_sym_lock] = ACTIONS(2870), + [anon_sym_rlock] = ACTIONS(2870), + [anon_sym_unsafe] = ACTIONS(2870), + [anon_sym_sql] = ACTIONS(2870), + [sym_int_literal] = ACTIONS(2870), + [sym_float_literal] = ACTIONS(2870), + [sym_rune_literal] = ACTIONS(2870), + [anon_sym_AT] = ACTIONS(2870), + [anon_sym_shared] = ACTIONS(2870), + [anon_sym_map_LBRACK] = ACTIONS(2870), + [anon_sym_chan] = ACTIONS(2870), + [anon_sym_thread] = ACTIONS(2870), + [anon_sym_atomic] = ACTIONS(2870), + [sym___double_quote] = ACTIONS(2870), + [sym___single_quote] = ACTIONS(2870), + [sym___c_double_quote] = ACTIONS(2870), + [sym___c_single_quote] = ACTIONS(2870), + [sym___r_double_quote] = ACTIONS(2870), + [sym___r_single_quote] = ACTIONS(2870), }, - [1228] = { - [sym_identifier] = ACTIONS(2788), - [anon_sym_LF] = ACTIONS(2788), - [anon_sym_CR] = ACTIONS(2788), - [anon_sym_CR_LF] = ACTIONS(2788), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym_DOT] = ACTIONS(2788), - [anon_sym_as] = ACTIONS(2788), - [anon_sym_LBRACE] = ACTIONS(2788), - [anon_sym_COMMA] = ACTIONS(2788), - [anon_sym_RBRACE] = ACTIONS(2788), - [anon_sym_LPAREN] = ACTIONS(2788), - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_fn] = ACTIONS(2788), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_STAR] = ACTIONS(2788), - [anon_sym_SLASH] = ACTIONS(2788), - [anon_sym_PERCENT] = ACTIONS(2788), - [anon_sym_LT] = ACTIONS(2788), - [anon_sym_GT] = ACTIONS(2788), - [anon_sym_EQ_EQ] = ACTIONS(2788), - [anon_sym_BANG_EQ] = ACTIONS(2788), - [anon_sym_LT_EQ] = ACTIONS(2788), - [anon_sym_GT_EQ] = ACTIONS(2788), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2788), - [anon_sym_mut] = ACTIONS(2788), - [anon_sym_PLUS_PLUS] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2788), - [anon_sym_QMARK] = ACTIONS(2788), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_go] = ACTIONS(2788), - [anon_sym_spawn] = ACTIONS(2788), - [anon_sym_json_DOTdecode] = ACTIONS(2788), - [anon_sym_LBRACK2] = ACTIONS(2788), - [anon_sym_TILDE] = ACTIONS(2788), - [anon_sym_CARET] = ACTIONS(2788), - [anon_sym_AMP] = ACTIONS(2788), - [anon_sym_LT_DASH] = ACTIONS(2788), - [anon_sym_LT_LT] = ACTIONS(2788), - [anon_sym_GT_GT] = ACTIONS(2788), - [anon_sym_GT_GT_GT] = ACTIONS(2788), - [anon_sym_AMP_CARET] = ACTIONS(2788), - [anon_sym_AMP_AMP] = ACTIONS(2788), - [anon_sym_PIPE_PIPE] = ACTIONS(2788), - [anon_sym_or] = ACTIONS(2788), - [sym_none] = ACTIONS(2788), - [sym_true] = ACTIONS(2788), - [sym_false] = ACTIONS(2788), - [sym_nil] = ACTIONS(2788), - [anon_sym_QMARK_DOT] = ACTIONS(2788), - [anon_sym_POUND_LBRACK] = ACTIONS(2788), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_DOLLARif] = ACTIONS(2788), - [anon_sym_is] = ACTIONS(2788), - [anon_sym_BANGis] = ACTIONS(2788), - [anon_sym_in] = ACTIONS(2788), - [anon_sym_BANGin] = ACTIONS(2788), - [anon_sym_match] = ACTIONS(2788), - [anon_sym_select] = ACTIONS(2788), - [anon_sym_lock] = ACTIONS(2788), - [anon_sym_rlock] = ACTIONS(2788), - [anon_sym_unsafe] = ACTIONS(2788), - [anon_sym_sql] = ACTIONS(2788), - [sym_int_literal] = ACTIONS(2788), - [sym_float_literal] = ACTIONS(2788), - [sym_rune_literal] = ACTIONS(2788), - [anon_sym_AT] = ACTIONS(2788), - [anon_sym_shared] = ACTIONS(2788), - [anon_sym_map_LBRACK] = ACTIONS(2788), - [anon_sym_chan] = ACTIONS(2788), - [anon_sym_thread] = ACTIONS(2788), - [anon_sym_atomic] = ACTIONS(2788), - [sym___double_quote] = ACTIONS(2788), - [sym___single_quote] = ACTIONS(2788), - [sym___c_double_quote] = ACTIONS(2788), - [sym___c_single_quote] = ACTIONS(2788), - [sym___r_double_quote] = ACTIONS(2788), - [sym___r_single_quote] = ACTIONS(2788), - }, - [1229] = { - [sym_identifier] = ACTIONS(3089), - [anon_sym_LF] = ACTIONS(3089), - [anon_sym_CR] = ACTIONS(3089), - [anon_sym_CR_LF] = ACTIONS(3089), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3089), - [anon_sym_as] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_RBRACE] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3089), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_fn] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(3089), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_LT_EQ] = ACTIONS(3089), - [anon_sym_GT_EQ] = ACTIONS(3089), - [anon_sym_LBRACK] = ACTIONS(3087), - [anon_sym_struct] = ACTIONS(3089), - [anon_sym_mut] = ACTIONS(3089), - [anon_sym_PLUS_PLUS] = ACTIONS(3089), - [anon_sym_DASH_DASH] = ACTIONS(3089), - [anon_sym_QMARK] = ACTIONS(3089), - [anon_sym_BANG] = ACTIONS(3089), - [anon_sym_go] = ACTIONS(3089), - [anon_sym_spawn] = ACTIONS(3089), - [anon_sym_json_DOTdecode] = ACTIONS(3089), - [anon_sym_LBRACK2] = ACTIONS(3089), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_LT_DASH] = ACTIONS(3089), - [anon_sym_LT_LT] = ACTIONS(3089), - [anon_sym_GT_GT] = ACTIONS(3089), - [anon_sym_GT_GT_GT] = ACTIONS(3089), - [anon_sym_AMP_CARET] = ACTIONS(3089), - [anon_sym_AMP_AMP] = ACTIONS(3089), - [anon_sym_PIPE_PIPE] = ACTIONS(3089), - [anon_sym_or] = ACTIONS(3089), - [sym_none] = ACTIONS(3089), - [sym_true] = ACTIONS(3089), - [sym_false] = ACTIONS(3089), - [sym_nil] = ACTIONS(3089), - [anon_sym_QMARK_DOT] = ACTIONS(3089), - [anon_sym_POUND_LBRACK] = ACTIONS(3089), - [anon_sym_if] = ACTIONS(3089), - [anon_sym_DOLLARif] = ACTIONS(3089), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3089), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_BANGin] = ACTIONS(3089), - [anon_sym_match] = ACTIONS(3089), - [anon_sym_select] = ACTIONS(3089), - [anon_sym_lock] = ACTIONS(3089), - [anon_sym_rlock] = ACTIONS(3089), - [anon_sym_unsafe] = ACTIONS(3089), - [anon_sym_sql] = ACTIONS(3089), - [sym_int_literal] = ACTIONS(3089), - [sym_float_literal] = ACTIONS(3089), - [sym_rune_literal] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(3089), - [anon_sym_shared] = ACTIONS(3089), - [anon_sym_map_LBRACK] = ACTIONS(3089), - [anon_sym_chan] = ACTIONS(3089), - [anon_sym_thread] = ACTIONS(3089), - [anon_sym_atomic] = ACTIONS(3089), - [sym___double_quote] = ACTIONS(3089), - [sym___single_quote] = ACTIONS(3089), - [sym___c_double_quote] = ACTIONS(3089), - [sym___c_single_quote] = ACTIONS(3089), - [sym___r_double_quote] = ACTIONS(3089), - [sym___r_single_quote] = ACTIONS(3089), - }, - [1230] = { - [sym_identifier] = ACTIONS(3093), - [anon_sym_LF] = ACTIONS(3093), - [anon_sym_CR] = ACTIONS(3093), - [anon_sym_CR_LF] = ACTIONS(3093), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3093), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_as] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(3093), - [anon_sym_RBRACE] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_PIPE] = ACTIONS(3093), - [anon_sym_fn] = ACTIONS(3093), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_SLASH] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3093), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3093), - [anon_sym_EQ_EQ] = ACTIONS(3093), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_LT_EQ] = ACTIONS(3093), - [anon_sym_GT_EQ] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(3093), - [anon_sym_mut] = ACTIONS(3093), - [anon_sym_PLUS_PLUS] = ACTIONS(3093), - [anon_sym_DASH_DASH] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_go] = ACTIONS(3093), - [anon_sym_spawn] = ACTIONS(3093), - [anon_sym_json_DOTdecode] = ACTIONS(3093), - [anon_sym_LBRACK2] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3093), - [anon_sym_CARET] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_LT_DASH] = ACTIONS(3093), - [anon_sym_LT_LT] = ACTIONS(3093), - [anon_sym_GT_GT] = ACTIONS(3093), - [anon_sym_GT_GT_GT] = ACTIONS(3093), - [anon_sym_AMP_CARET] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_PIPE_PIPE] = ACTIONS(3093), - [anon_sym_or] = ACTIONS(3093), - [sym_none] = ACTIONS(3093), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [sym_nil] = ACTIONS(3093), - [anon_sym_QMARK_DOT] = ACTIONS(3093), - [anon_sym_POUND_LBRACK] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_DOLLARif] = ACTIONS(3093), - [anon_sym_is] = ACTIONS(3093), - [anon_sym_BANGis] = ACTIONS(3093), - [anon_sym_in] = ACTIONS(3093), - [anon_sym_BANGin] = ACTIONS(3093), - [anon_sym_match] = ACTIONS(3093), - [anon_sym_select] = ACTIONS(3093), - [anon_sym_lock] = ACTIONS(3093), - [anon_sym_rlock] = ACTIONS(3093), - [anon_sym_unsafe] = ACTIONS(3093), - [anon_sym_sql] = ACTIONS(3093), - [sym_int_literal] = ACTIONS(3093), - [sym_float_literal] = ACTIONS(3093), - [sym_rune_literal] = ACTIONS(3093), - [anon_sym_AT] = ACTIONS(3093), - [anon_sym_shared] = ACTIONS(3093), - [anon_sym_map_LBRACK] = ACTIONS(3093), - [anon_sym_chan] = ACTIONS(3093), - [anon_sym_thread] = ACTIONS(3093), - [anon_sym_atomic] = ACTIONS(3093), - [sym___double_quote] = ACTIONS(3093), - [sym___single_quote] = ACTIONS(3093), - [sym___c_double_quote] = ACTIONS(3093), - [sym___c_single_quote] = ACTIONS(3093), - [sym___r_double_quote] = ACTIONS(3093), - [sym___r_single_quote] = ACTIONS(3093), - }, - [1231] = { - [sym_identifier] = ACTIONS(2792), - [anon_sym_LF] = ACTIONS(2792), - [anon_sym_CR] = ACTIONS(2792), - [anon_sym_CR_LF] = ACTIONS(2792), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2792), - [anon_sym_DOT] = ACTIONS(2792), - [anon_sym_as] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_COMMA] = ACTIONS(2792), - [anon_sym_RBRACE] = ACTIONS(2792), - [anon_sym_LPAREN] = ACTIONS(2792), - [anon_sym_PIPE] = ACTIONS(2792), - [anon_sym_fn] = ACTIONS(2792), - [anon_sym_PLUS] = ACTIONS(2792), - [anon_sym_DASH] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(2792), - [anon_sym_SLASH] = ACTIONS(2792), - [anon_sym_PERCENT] = ACTIONS(2792), - [anon_sym_LT] = ACTIONS(2792), - [anon_sym_GT] = ACTIONS(2792), - [anon_sym_EQ_EQ] = ACTIONS(2792), - [anon_sym_BANG_EQ] = ACTIONS(2792), - [anon_sym_LT_EQ] = ACTIONS(2792), - [anon_sym_GT_EQ] = ACTIONS(2792), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_struct] = ACTIONS(2792), - [anon_sym_mut] = ACTIONS(2792), - [anon_sym_PLUS_PLUS] = ACTIONS(2792), - [anon_sym_DASH_DASH] = ACTIONS(2792), - [anon_sym_QMARK] = ACTIONS(2792), - [anon_sym_BANG] = ACTIONS(2792), - [anon_sym_go] = ACTIONS(2792), - [anon_sym_spawn] = ACTIONS(2792), - [anon_sym_json_DOTdecode] = ACTIONS(2792), - [anon_sym_LBRACK2] = ACTIONS(2792), - [anon_sym_TILDE] = ACTIONS(2792), - [anon_sym_CARET] = ACTIONS(2792), - [anon_sym_AMP] = ACTIONS(2792), - [anon_sym_LT_DASH] = ACTIONS(2792), - [anon_sym_LT_LT] = ACTIONS(2792), - [anon_sym_GT_GT] = ACTIONS(2792), - [anon_sym_GT_GT_GT] = ACTIONS(2792), - [anon_sym_AMP_CARET] = ACTIONS(2792), - [anon_sym_AMP_AMP] = ACTIONS(2792), - [anon_sym_PIPE_PIPE] = ACTIONS(2792), - [anon_sym_or] = ACTIONS(2792), - [sym_none] = ACTIONS(2792), - [sym_true] = ACTIONS(2792), - [sym_false] = ACTIONS(2792), - [sym_nil] = ACTIONS(2792), - [anon_sym_QMARK_DOT] = ACTIONS(2792), - [anon_sym_POUND_LBRACK] = ACTIONS(2792), - [anon_sym_if] = ACTIONS(2792), - [anon_sym_DOLLARif] = ACTIONS(2792), - [anon_sym_is] = ACTIONS(2792), - [anon_sym_BANGis] = ACTIONS(2792), - [anon_sym_in] = ACTIONS(2792), - [anon_sym_BANGin] = ACTIONS(2792), - [anon_sym_match] = ACTIONS(2792), - [anon_sym_select] = ACTIONS(2792), - [anon_sym_lock] = ACTIONS(2792), - [anon_sym_rlock] = ACTIONS(2792), - [anon_sym_unsafe] = ACTIONS(2792), - [anon_sym_sql] = ACTIONS(2792), - [sym_int_literal] = ACTIONS(2792), - [sym_float_literal] = ACTIONS(2792), - [sym_rune_literal] = ACTIONS(2792), - [anon_sym_AT] = ACTIONS(2792), - [anon_sym_shared] = ACTIONS(2792), - [anon_sym_map_LBRACK] = ACTIONS(2792), - [anon_sym_chan] = ACTIONS(2792), - [anon_sym_thread] = ACTIONS(2792), - [anon_sym_atomic] = ACTIONS(2792), - [sym___double_quote] = ACTIONS(2792), - [sym___single_quote] = ACTIONS(2792), - [sym___c_double_quote] = ACTIONS(2792), - [sym___c_single_quote] = ACTIONS(2792), - [sym___r_double_quote] = ACTIONS(2792), - [sym___r_single_quote] = ACTIONS(2792), - }, - [1232] = { - [sym_identifier] = ACTIONS(2836), - [anon_sym_LF] = ACTIONS(2836), - [anon_sym_CR] = ACTIONS(2836), - [anon_sym_CR_LF] = ACTIONS(2836), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2836), - [anon_sym_DOT] = ACTIONS(2836), - [anon_sym_as] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2836), - [anon_sym_COMMA] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(2836), - [anon_sym_LPAREN] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_fn] = ACTIONS(2836), - [anon_sym_PLUS] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2836), - [anon_sym_STAR] = ACTIONS(2836), - [anon_sym_SLASH] = ACTIONS(2836), - [anon_sym_PERCENT] = ACTIONS(2836), - [anon_sym_LT] = ACTIONS(2836), - [anon_sym_GT] = ACTIONS(2836), - [anon_sym_EQ_EQ] = ACTIONS(2836), - [anon_sym_BANG_EQ] = ACTIONS(2836), - [anon_sym_LT_EQ] = ACTIONS(2836), - [anon_sym_GT_EQ] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_struct] = ACTIONS(2836), - [anon_sym_mut] = ACTIONS(2836), - [anon_sym_PLUS_PLUS] = ACTIONS(2836), - [anon_sym_DASH_DASH] = ACTIONS(2836), - [anon_sym_QMARK] = ACTIONS(2836), - [anon_sym_BANG] = ACTIONS(2836), - [anon_sym_go] = ACTIONS(2836), - [anon_sym_spawn] = ACTIONS(2836), - [anon_sym_json_DOTdecode] = ACTIONS(2836), - [anon_sym_LBRACK2] = ACTIONS(2836), - [anon_sym_TILDE] = ACTIONS(2836), - [anon_sym_CARET] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2836), - [anon_sym_LT_DASH] = ACTIONS(2836), - [anon_sym_LT_LT] = ACTIONS(2836), - [anon_sym_GT_GT] = ACTIONS(2836), - [anon_sym_GT_GT_GT] = ACTIONS(2836), - [anon_sym_AMP_CARET] = ACTIONS(2836), - [anon_sym_AMP_AMP] = ACTIONS(2836), - [anon_sym_PIPE_PIPE] = ACTIONS(2836), - [anon_sym_or] = ACTIONS(2836), - [sym_none] = ACTIONS(2836), - [sym_true] = ACTIONS(2836), - [sym_false] = ACTIONS(2836), - [sym_nil] = ACTIONS(2836), - [anon_sym_QMARK_DOT] = ACTIONS(2836), - [anon_sym_POUND_LBRACK] = ACTIONS(2836), - [anon_sym_if] = ACTIONS(2836), - [anon_sym_DOLLARif] = ACTIONS(2836), - [anon_sym_is] = ACTIONS(2836), - [anon_sym_BANGis] = ACTIONS(2836), - [anon_sym_in] = ACTIONS(2836), - [anon_sym_BANGin] = ACTIONS(2836), - [anon_sym_match] = ACTIONS(2836), - [anon_sym_select] = ACTIONS(2836), - [anon_sym_lock] = ACTIONS(2836), - [anon_sym_rlock] = ACTIONS(2836), - [anon_sym_unsafe] = ACTIONS(2836), - [anon_sym_sql] = ACTIONS(2836), - [sym_int_literal] = ACTIONS(2836), - [sym_float_literal] = ACTIONS(2836), - [sym_rune_literal] = ACTIONS(2836), - [anon_sym_AT] = ACTIONS(2836), - [anon_sym_shared] = ACTIONS(2836), - [anon_sym_map_LBRACK] = ACTIONS(2836), - [anon_sym_chan] = ACTIONS(2836), - [anon_sym_thread] = ACTIONS(2836), - [anon_sym_atomic] = ACTIONS(2836), - [sym___double_quote] = ACTIONS(2836), - [sym___single_quote] = ACTIONS(2836), - [sym___c_double_quote] = ACTIONS(2836), - [sym___c_single_quote] = ACTIONS(2836), - [sym___r_double_quote] = ACTIONS(2836), - [sym___r_single_quote] = ACTIONS(2836), - }, - [1233] = { - [sym_identifier] = ACTIONS(2864), - [anon_sym_LF] = ACTIONS(2864), - [anon_sym_CR] = ACTIONS(2864), - [anon_sym_CR_LF] = ACTIONS(2864), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2864), - [anon_sym_DOT] = ACTIONS(2864), - [anon_sym_as] = ACTIONS(2864), - [anon_sym_LBRACE] = ACTIONS(2864), - [anon_sym_COMMA] = ACTIONS(2864), - [anon_sym_RBRACE] = ACTIONS(2864), - [anon_sym_LPAREN] = ACTIONS(2864), - [anon_sym_PIPE] = ACTIONS(2864), - [anon_sym_fn] = ACTIONS(2864), - [anon_sym_PLUS] = ACTIONS(2864), - [anon_sym_DASH] = ACTIONS(2864), - [anon_sym_STAR] = ACTIONS(2864), - [anon_sym_SLASH] = ACTIONS(2864), - [anon_sym_PERCENT] = ACTIONS(2864), - [anon_sym_LT] = ACTIONS(2864), - [anon_sym_GT] = ACTIONS(2864), - [anon_sym_EQ_EQ] = ACTIONS(2864), - [anon_sym_BANG_EQ] = ACTIONS(2864), - [anon_sym_LT_EQ] = ACTIONS(2864), - [anon_sym_GT_EQ] = ACTIONS(2864), - [anon_sym_LBRACK] = ACTIONS(2862), - [anon_sym_struct] = ACTIONS(2864), - [anon_sym_mut] = ACTIONS(2864), - [anon_sym_PLUS_PLUS] = ACTIONS(2864), - [anon_sym_DASH_DASH] = ACTIONS(2864), - [anon_sym_QMARK] = ACTIONS(2864), - [anon_sym_BANG] = ACTIONS(2864), - [anon_sym_go] = ACTIONS(2864), - [anon_sym_spawn] = ACTIONS(2864), - [anon_sym_json_DOTdecode] = ACTIONS(2864), - [anon_sym_LBRACK2] = ACTIONS(2864), - [anon_sym_TILDE] = ACTIONS(2864), - [anon_sym_CARET] = ACTIONS(2864), - [anon_sym_AMP] = ACTIONS(2864), - [anon_sym_LT_DASH] = ACTIONS(2864), - [anon_sym_LT_LT] = ACTIONS(2864), - [anon_sym_GT_GT] = ACTIONS(2864), - [anon_sym_GT_GT_GT] = ACTIONS(2864), - [anon_sym_AMP_CARET] = ACTIONS(2864), - [anon_sym_AMP_AMP] = ACTIONS(2864), - [anon_sym_PIPE_PIPE] = ACTIONS(2864), - [anon_sym_or] = ACTIONS(2864), - [sym_none] = ACTIONS(2864), - [sym_true] = ACTIONS(2864), - [sym_false] = ACTIONS(2864), - [sym_nil] = ACTIONS(2864), - [anon_sym_QMARK_DOT] = ACTIONS(2864), - [anon_sym_POUND_LBRACK] = ACTIONS(2864), - [anon_sym_if] = ACTIONS(2864), - [anon_sym_DOLLARif] = ACTIONS(2864), - [anon_sym_is] = ACTIONS(2864), - [anon_sym_BANGis] = ACTIONS(2864), - [anon_sym_in] = ACTIONS(2864), - [anon_sym_BANGin] = ACTIONS(2864), - [anon_sym_match] = ACTIONS(2864), - [anon_sym_select] = ACTIONS(2864), - [anon_sym_lock] = ACTIONS(2864), - [anon_sym_rlock] = ACTIONS(2864), - [anon_sym_unsafe] = ACTIONS(2864), - [anon_sym_sql] = ACTIONS(2864), - [sym_int_literal] = ACTIONS(2864), - [sym_float_literal] = ACTIONS(2864), - [sym_rune_literal] = ACTIONS(2864), - [anon_sym_AT] = ACTIONS(2864), - [anon_sym_shared] = ACTIONS(2864), - [anon_sym_map_LBRACK] = ACTIONS(2864), - [anon_sym_chan] = ACTIONS(2864), - [anon_sym_thread] = ACTIONS(2864), - [anon_sym_atomic] = ACTIONS(2864), - [sym___double_quote] = ACTIONS(2864), - [sym___single_quote] = ACTIONS(2864), - [sym___c_double_quote] = ACTIONS(2864), - [sym___c_single_quote] = ACTIONS(2864), - [sym___r_double_quote] = ACTIONS(2864), - [sym___r_single_quote] = ACTIONS(2864), - }, - [1234] = { - [sym_identifier] = ACTIONS(2967), - [anon_sym_LF] = ACTIONS(2967), - [anon_sym_CR] = ACTIONS(2967), - [anon_sym_CR_LF] = ACTIONS(2967), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2967), - [anon_sym_DOT] = ACTIONS(2967), - [anon_sym_as] = ACTIONS(2967), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_COMMA] = ACTIONS(2967), - [anon_sym_RBRACE] = ACTIONS(2967), - [anon_sym_LPAREN] = ACTIONS(2967), - [anon_sym_PIPE] = ACTIONS(2967), - [anon_sym_fn] = ACTIONS(2967), - [anon_sym_PLUS] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2967), - [anon_sym_STAR] = ACTIONS(2967), - [anon_sym_SLASH] = ACTIONS(2967), - [anon_sym_PERCENT] = ACTIONS(2967), - [anon_sym_LT] = ACTIONS(2967), - [anon_sym_GT] = ACTIONS(2967), - [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(2965), - [anon_sym_struct] = ACTIONS(2967), - [anon_sym_mut] = ACTIONS(2967), - [anon_sym_PLUS_PLUS] = ACTIONS(2967), - [anon_sym_DASH_DASH] = ACTIONS(2967), - [anon_sym_QMARK] = ACTIONS(2967), - [anon_sym_BANG] = ACTIONS(2967), - [anon_sym_go] = ACTIONS(2967), - [anon_sym_spawn] = ACTIONS(2967), - [anon_sym_json_DOTdecode] = ACTIONS(2967), - [anon_sym_LBRACK2] = ACTIONS(2967), - [anon_sym_TILDE] = ACTIONS(2967), - [anon_sym_CARET] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_LT_DASH] = ACTIONS(2967), - [anon_sym_LT_LT] = ACTIONS(2967), - [anon_sym_GT_GT] = ACTIONS(2967), - [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(2967), - [sym_none] = ACTIONS(2967), - [sym_true] = ACTIONS(2967), - [sym_false] = ACTIONS(2967), - [sym_nil] = ACTIONS(2967), - [anon_sym_QMARK_DOT] = ACTIONS(2967), - [anon_sym_POUND_LBRACK] = ACTIONS(2967), - [anon_sym_if] = ACTIONS(2967), - [anon_sym_DOLLARif] = ACTIONS(2967), - [anon_sym_is] = ACTIONS(2967), - [anon_sym_BANGis] = ACTIONS(2967), - [anon_sym_in] = ACTIONS(2967), - [anon_sym_BANGin] = ACTIONS(2967), - [anon_sym_match] = ACTIONS(2967), - [anon_sym_select] = ACTIONS(2967), - [anon_sym_lock] = ACTIONS(2967), - [anon_sym_rlock] = ACTIONS(2967), - [anon_sym_unsafe] = ACTIONS(2967), - [anon_sym_sql] = ACTIONS(2967), - [sym_int_literal] = ACTIONS(2967), - [sym_float_literal] = ACTIONS(2967), - [sym_rune_literal] = ACTIONS(2967), - [anon_sym_AT] = ACTIONS(2967), - [anon_sym_shared] = ACTIONS(2967), - [anon_sym_map_LBRACK] = ACTIONS(2967), - [anon_sym_chan] = ACTIONS(2967), - [anon_sym_thread] = ACTIONS(2967), - [anon_sym_atomic] = ACTIONS(2967), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2967), - [sym___c_double_quote] = ACTIONS(2967), - [sym___c_single_quote] = ACTIONS(2967), - [sym___r_double_quote] = ACTIONS(2967), - [sym___r_single_quote] = ACTIONS(2967), - }, - [1235] = { - [sym_identifier] = ACTIONS(2872), - [anon_sym_LF] = ACTIONS(2872), - [anon_sym_CR] = ACTIONS(2872), - [anon_sym_CR_LF] = ACTIONS(2872), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2872), - [anon_sym_DOT] = ACTIONS(2872), - [anon_sym_as] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2872), - [anon_sym_COMMA] = ACTIONS(2872), - [anon_sym_RBRACE] = ACTIONS(2872), - [anon_sym_LPAREN] = ACTIONS(2872), - [anon_sym_PIPE] = ACTIONS(2872), - [anon_sym_fn] = ACTIONS(2872), - [anon_sym_PLUS] = ACTIONS(2872), - [anon_sym_DASH] = ACTIONS(2872), - [anon_sym_STAR] = ACTIONS(2872), - [anon_sym_SLASH] = ACTIONS(2872), - [anon_sym_PERCENT] = ACTIONS(2872), - [anon_sym_LT] = ACTIONS(2872), - [anon_sym_GT] = ACTIONS(2872), - [anon_sym_EQ_EQ] = ACTIONS(2872), - [anon_sym_BANG_EQ] = ACTIONS(2872), - [anon_sym_LT_EQ] = ACTIONS(2872), - [anon_sym_GT_EQ] = ACTIONS(2872), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_struct] = ACTIONS(2872), - [anon_sym_mut] = ACTIONS(2872), - [anon_sym_PLUS_PLUS] = ACTIONS(2872), - [anon_sym_DASH_DASH] = ACTIONS(2872), - [anon_sym_QMARK] = ACTIONS(2872), - [anon_sym_BANG] = ACTIONS(2872), - [anon_sym_go] = ACTIONS(2872), - [anon_sym_spawn] = ACTIONS(2872), - [anon_sym_json_DOTdecode] = ACTIONS(2872), - [anon_sym_LBRACK2] = ACTIONS(2872), - [anon_sym_TILDE] = ACTIONS(2872), - [anon_sym_CARET] = ACTIONS(2872), - [anon_sym_AMP] = ACTIONS(2872), - [anon_sym_LT_DASH] = ACTIONS(2872), - [anon_sym_LT_LT] = ACTIONS(2872), - [anon_sym_GT_GT] = ACTIONS(2872), - [anon_sym_GT_GT_GT] = ACTIONS(2872), - [anon_sym_AMP_CARET] = ACTIONS(2872), - [anon_sym_AMP_AMP] = ACTIONS(2872), - [anon_sym_PIPE_PIPE] = ACTIONS(2872), - [anon_sym_or] = ACTIONS(2872), - [sym_none] = ACTIONS(2872), - [sym_true] = ACTIONS(2872), - [sym_false] = ACTIONS(2872), - [sym_nil] = ACTIONS(2872), - [anon_sym_QMARK_DOT] = ACTIONS(2872), - [anon_sym_POUND_LBRACK] = ACTIONS(2872), - [anon_sym_if] = ACTIONS(2872), - [anon_sym_DOLLARif] = ACTIONS(2872), - [anon_sym_is] = ACTIONS(2872), - [anon_sym_BANGis] = ACTIONS(2872), - [anon_sym_in] = ACTIONS(2872), - [anon_sym_BANGin] = ACTIONS(2872), - [anon_sym_match] = ACTIONS(2872), - [anon_sym_select] = ACTIONS(2872), - [anon_sym_lock] = ACTIONS(2872), - [anon_sym_rlock] = ACTIONS(2872), - [anon_sym_unsafe] = ACTIONS(2872), - [anon_sym_sql] = ACTIONS(2872), - [sym_int_literal] = ACTIONS(2872), - [sym_float_literal] = ACTIONS(2872), - [sym_rune_literal] = ACTIONS(2872), - [anon_sym_AT] = ACTIONS(2872), - [anon_sym_shared] = ACTIONS(2872), - [anon_sym_map_LBRACK] = ACTIONS(2872), - [anon_sym_chan] = ACTIONS(2872), - [anon_sym_thread] = ACTIONS(2872), - [anon_sym_atomic] = ACTIONS(2872), - [sym___double_quote] = ACTIONS(2872), - [sym___single_quote] = ACTIONS(2872), - [sym___c_double_quote] = ACTIONS(2872), - [sym___c_single_quote] = ACTIONS(2872), - [sym___r_double_quote] = ACTIONS(2872), - [sym___r_single_quote] = ACTIONS(2872), - }, - [1236] = { - [sym_identifier] = ACTIONS(2876), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_CR] = ACTIONS(2876), - [anon_sym_CR_LF] = ACTIONS(2876), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2876), - [anon_sym_DOT] = ACTIONS(2876), - [anon_sym_as] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2876), - [anon_sym_COMMA] = ACTIONS(2876), - [anon_sym_RBRACE] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2876), - [anon_sym_PIPE] = ACTIONS(2876), - [anon_sym_fn] = ACTIONS(2876), - [anon_sym_PLUS] = ACTIONS(2876), - [anon_sym_DASH] = ACTIONS(2876), - [anon_sym_STAR] = ACTIONS(2876), - [anon_sym_SLASH] = ACTIONS(2876), - [anon_sym_PERCENT] = ACTIONS(2876), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_GT] = ACTIONS(2876), - [anon_sym_EQ_EQ] = ACTIONS(2876), - [anon_sym_BANG_EQ] = ACTIONS(2876), - [anon_sym_LT_EQ] = ACTIONS(2876), - [anon_sym_GT_EQ] = ACTIONS(2876), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_struct] = ACTIONS(2876), - [anon_sym_mut] = ACTIONS(2876), - [anon_sym_PLUS_PLUS] = ACTIONS(2876), - [anon_sym_DASH_DASH] = ACTIONS(2876), - [anon_sym_QMARK] = ACTIONS(2876), - [anon_sym_BANG] = ACTIONS(2876), - [anon_sym_go] = ACTIONS(2876), - [anon_sym_spawn] = ACTIONS(2876), - [anon_sym_json_DOTdecode] = ACTIONS(2876), - [anon_sym_LBRACK2] = ACTIONS(2876), - [anon_sym_TILDE] = ACTIONS(2876), - [anon_sym_CARET] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2876), - [anon_sym_LT_DASH] = ACTIONS(2876), - [anon_sym_LT_LT] = ACTIONS(2876), - [anon_sym_GT_GT] = ACTIONS(2876), - [anon_sym_GT_GT_GT] = ACTIONS(2876), - [anon_sym_AMP_CARET] = ACTIONS(2876), - [anon_sym_AMP_AMP] = ACTIONS(2876), - [anon_sym_PIPE_PIPE] = ACTIONS(2876), - [anon_sym_or] = ACTIONS(2876), - [sym_none] = ACTIONS(2876), - [sym_true] = ACTIONS(2876), - [sym_false] = ACTIONS(2876), - [sym_nil] = ACTIONS(2876), - [anon_sym_QMARK_DOT] = ACTIONS(2876), - [anon_sym_POUND_LBRACK] = ACTIONS(2876), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_DOLLARif] = ACTIONS(2876), - [anon_sym_is] = ACTIONS(2876), - [anon_sym_BANGis] = ACTIONS(2876), - [anon_sym_in] = ACTIONS(2876), - [anon_sym_BANGin] = ACTIONS(2876), - [anon_sym_match] = ACTIONS(2876), - [anon_sym_select] = ACTIONS(2876), - [anon_sym_lock] = ACTIONS(2876), - [anon_sym_rlock] = ACTIONS(2876), - [anon_sym_unsafe] = ACTIONS(2876), - [anon_sym_sql] = ACTIONS(2876), - [sym_int_literal] = ACTIONS(2876), - [sym_float_literal] = ACTIONS(2876), - [sym_rune_literal] = ACTIONS(2876), - [anon_sym_AT] = ACTIONS(2876), - [anon_sym_shared] = ACTIONS(2876), - [anon_sym_map_LBRACK] = ACTIONS(2876), - [anon_sym_chan] = ACTIONS(2876), - [anon_sym_thread] = ACTIONS(2876), - [anon_sym_atomic] = ACTIONS(2876), - [sym___double_quote] = ACTIONS(2876), - [sym___single_quote] = ACTIONS(2876), - [sym___c_double_quote] = ACTIONS(2876), - [sym___c_single_quote] = ACTIONS(2876), - [sym___r_double_quote] = ACTIONS(2876), - [sym___r_single_quote] = ACTIONS(2876), - }, - [1237] = { - [sym_identifier] = ACTIONS(2899), - [anon_sym_LF] = ACTIONS(2899), - [anon_sym_CR] = ACTIONS(2899), - [anon_sym_CR_LF] = ACTIONS(2899), - [sym_comment] = ACTIONS(487), - [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_PIPE] = ACTIONS(2899), - [anon_sym_fn] = ACTIONS(2899), - [anon_sym_PLUS] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_STAR] = ACTIONS(2899), - [anon_sym_SLASH] = ACTIONS(2899), - [anon_sym_PERCENT] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_GT] = ACTIONS(2899), - [anon_sym_EQ_EQ] = ACTIONS(2899), - [anon_sym_BANG_EQ] = ACTIONS(2899), - [anon_sym_LT_EQ] = ACTIONS(2899), - [anon_sym_GT_EQ] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_struct] = ACTIONS(2899), - [anon_sym_mut] = ACTIONS(2899), - [anon_sym_PLUS_PLUS] = ACTIONS(2899), - [anon_sym_DASH_DASH] = ACTIONS(2899), - [anon_sym_QMARK] = ACTIONS(2899), - [anon_sym_BANG] = ACTIONS(2899), - [anon_sym_go] = ACTIONS(2899), - [anon_sym_spawn] = ACTIONS(2899), - [anon_sym_json_DOTdecode] = ACTIONS(2899), - [anon_sym_LBRACK2] = ACTIONS(2899), - [anon_sym_TILDE] = ACTIONS(2899), - [anon_sym_CARET] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_LT_DASH] = ACTIONS(2899), - [anon_sym_LT_LT] = ACTIONS(2899), - [anon_sym_GT_GT] = ACTIONS(2899), - [anon_sym_GT_GT_GT] = ACTIONS(2899), - [anon_sym_AMP_CARET] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_PIPE_PIPE] = ACTIONS(2899), - [anon_sym_or] = ACTIONS(2899), - [sym_none] = ACTIONS(2899), - [sym_true] = ACTIONS(2899), - [sym_false] = ACTIONS(2899), - [sym_nil] = ACTIONS(2899), - [anon_sym_QMARK_DOT] = ACTIONS(2899), - [anon_sym_POUND_LBRACK] = ACTIONS(2899), - [anon_sym_if] = ACTIONS(2899), - [anon_sym_DOLLARif] = ACTIONS(2899), - [anon_sym_is] = ACTIONS(2899), - [anon_sym_BANGis] = ACTIONS(2899), - [anon_sym_in] = ACTIONS(2899), - [anon_sym_BANGin] = ACTIONS(2899), - [anon_sym_match] = ACTIONS(2899), - [anon_sym_select] = ACTIONS(2899), - [anon_sym_lock] = ACTIONS(2899), - [anon_sym_rlock] = ACTIONS(2899), - [anon_sym_unsafe] = ACTIONS(2899), - [anon_sym_sql] = ACTIONS(2899), - [sym_int_literal] = ACTIONS(2899), - [sym_float_literal] = ACTIONS(2899), - [sym_rune_literal] = ACTIONS(2899), - [anon_sym_AT] = ACTIONS(2899), - [anon_sym_shared] = ACTIONS(2899), - [anon_sym_map_LBRACK] = ACTIONS(2899), - [anon_sym_chan] = ACTIONS(2899), - [anon_sym_thread] = ACTIONS(2899), - [anon_sym_atomic] = ACTIONS(2899), - [sym___double_quote] = ACTIONS(2899), - [sym___single_quote] = ACTIONS(2899), - [sym___c_double_quote] = ACTIONS(2899), - [sym___c_single_quote] = ACTIONS(2899), - [sym___r_double_quote] = ACTIONS(2899), - [sym___r_single_quote] = ACTIONS(2899), - }, - [1238] = { - [sym_identifier] = ACTIONS(2868), - [anon_sym_LF] = ACTIONS(2868), - [anon_sym_CR] = ACTIONS(2868), - [anon_sym_CR_LF] = ACTIONS(2868), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2868), - [anon_sym_DOT] = ACTIONS(2868), - [anon_sym_as] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2868), - [anon_sym_COMMA] = ACTIONS(2868), - [anon_sym_RBRACE] = ACTIONS(2868), - [anon_sym_LPAREN] = ACTIONS(2868), - [anon_sym_PIPE] = ACTIONS(2868), - [anon_sym_fn] = ACTIONS(2868), - [anon_sym_PLUS] = ACTIONS(2868), - [anon_sym_DASH] = ACTIONS(2868), - [anon_sym_STAR] = ACTIONS(2868), - [anon_sym_SLASH] = ACTIONS(2868), - [anon_sym_PERCENT] = ACTIONS(2868), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_GT] = ACTIONS(2868), - [anon_sym_EQ_EQ] = ACTIONS(2868), - [anon_sym_BANG_EQ] = ACTIONS(2868), - [anon_sym_LT_EQ] = ACTIONS(2868), - [anon_sym_GT_EQ] = ACTIONS(2868), - [anon_sym_LBRACK] = ACTIONS(2866), - [anon_sym_struct] = ACTIONS(2868), - [anon_sym_mut] = ACTIONS(2868), - [anon_sym_PLUS_PLUS] = ACTIONS(2868), - [anon_sym_DASH_DASH] = ACTIONS(2868), - [anon_sym_QMARK] = ACTIONS(2868), - [anon_sym_BANG] = ACTIONS(2868), - [anon_sym_go] = ACTIONS(2868), - [anon_sym_spawn] = ACTIONS(2868), - [anon_sym_json_DOTdecode] = ACTIONS(2868), - [anon_sym_LBRACK2] = ACTIONS(2868), - [anon_sym_TILDE] = ACTIONS(2868), - [anon_sym_CARET] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2868), - [anon_sym_LT_DASH] = ACTIONS(2868), - [anon_sym_LT_LT] = ACTIONS(2868), - [anon_sym_GT_GT] = ACTIONS(2868), - [anon_sym_GT_GT_GT] = ACTIONS(2868), - [anon_sym_AMP_CARET] = ACTIONS(2868), - [anon_sym_AMP_AMP] = ACTIONS(2868), - [anon_sym_PIPE_PIPE] = ACTIONS(2868), - [anon_sym_or] = ACTIONS(2868), - [sym_none] = ACTIONS(2868), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_nil] = ACTIONS(2868), - [anon_sym_QMARK_DOT] = ACTIONS(2868), - [anon_sym_POUND_LBRACK] = ACTIONS(2868), - [anon_sym_if] = ACTIONS(2868), - [anon_sym_DOLLARif] = ACTIONS(2868), - [anon_sym_is] = ACTIONS(2868), - [anon_sym_BANGis] = ACTIONS(2868), - [anon_sym_in] = ACTIONS(2868), - [anon_sym_BANGin] = ACTIONS(2868), - [anon_sym_match] = ACTIONS(2868), - [anon_sym_select] = ACTIONS(2868), - [anon_sym_lock] = ACTIONS(2868), - [anon_sym_rlock] = ACTIONS(2868), - [anon_sym_unsafe] = ACTIONS(2868), - [anon_sym_sql] = ACTIONS(2868), - [sym_int_literal] = ACTIONS(2868), - [sym_float_literal] = ACTIONS(2868), - [sym_rune_literal] = ACTIONS(2868), - [anon_sym_AT] = ACTIONS(2868), - [anon_sym_shared] = ACTIONS(2868), - [anon_sym_map_LBRACK] = ACTIONS(2868), - [anon_sym_chan] = ACTIONS(2868), - [anon_sym_thread] = ACTIONS(2868), - [anon_sym_atomic] = ACTIONS(2868), - [sym___double_quote] = ACTIONS(2868), - [sym___single_quote] = ACTIONS(2868), - [sym___c_double_quote] = ACTIONS(2868), - [sym___c_single_quote] = ACTIONS(2868), - [sym___r_double_quote] = ACTIONS(2868), - [sym___r_single_quote] = ACTIONS(2868), - }, - [1239] = { - [sym_identifier] = ACTIONS(2907), - [anon_sym_LF] = ACTIONS(2907), - [anon_sym_CR] = ACTIONS(2907), - [anon_sym_CR_LF] = ACTIONS(2907), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2907), - [anon_sym_DOT] = ACTIONS(2907), - [anon_sym_as] = ACTIONS(2907), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_COMMA] = ACTIONS(2907), - [anon_sym_RBRACE] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_PIPE] = ACTIONS(2907), - [anon_sym_fn] = ACTIONS(2907), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_SLASH] = ACTIONS(2907), - [anon_sym_PERCENT] = ACTIONS(2907), - [anon_sym_LT] = ACTIONS(2907), - [anon_sym_GT] = ACTIONS(2907), - [anon_sym_EQ_EQ] = ACTIONS(2907), - [anon_sym_BANG_EQ] = ACTIONS(2907), - [anon_sym_LT_EQ] = ACTIONS(2907), - [anon_sym_GT_EQ] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2907), - [anon_sym_mut] = ACTIONS(2907), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_QMARK] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_go] = ACTIONS(2907), - [anon_sym_spawn] = ACTIONS(2907), - [anon_sym_json_DOTdecode] = ACTIONS(2907), - [anon_sym_LBRACK2] = ACTIONS(2907), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_LT_DASH] = ACTIONS(2907), - [anon_sym_LT_LT] = ACTIONS(2907), - [anon_sym_GT_GT] = ACTIONS(2907), - [anon_sym_GT_GT_GT] = ACTIONS(2907), - [anon_sym_AMP_CARET] = ACTIONS(2907), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_PIPE_PIPE] = ACTIONS(2907), - [anon_sym_or] = ACTIONS(2907), - [sym_none] = ACTIONS(2907), - [sym_true] = ACTIONS(2907), - [sym_false] = ACTIONS(2907), - [sym_nil] = ACTIONS(2907), - [anon_sym_QMARK_DOT] = ACTIONS(2907), - [anon_sym_POUND_LBRACK] = ACTIONS(2907), - [anon_sym_if] = ACTIONS(2907), - [anon_sym_DOLLARif] = ACTIONS(2907), - [anon_sym_is] = ACTIONS(2907), - [anon_sym_BANGis] = ACTIONS(2907), - [anon_sym_in] = ACTIONS(2907), - [anon_sym_BANGin] = ACTIONS(2907), - [anon_sym_match] = ACTIONS(2907), - [anon_sym_select] = ACTIONS(2907), - [anon_sym_lock] = ACTIONS(2907), - [anon_sym_rlock] = ACTIONS(2907), - [anon_sym_unsafe] = ACTIONS(2907), - [anon_sym_sql] = ACTIONS(2907), - [sym_int_literal] = ACTIONS(2907), - [sym_float_literal] = ACTIONS(2907), - [sym_rune_literal] = ACTIONS(2907), - [anon_sym_AT] = ACTIONS(2907), - [anon_sym_shared] = ACTIONS(2907), - [anon_sym_map_LBRACK] = ACTIONS(2907), - [anon_sym_chan] = ACTIONS(2907), - [anon_sym_thread] = ACTIONS(2907), - [anon_sym_atomic] = ACTIONS(2907), - [sym___double_quote] = ACTIONS(2907), - [sym___single_quote] = ACTIONS(2907), - [sym___c_double_quote] = ACTIONS(2907), - [sym___c_single_quote] = ACTIONS(2907), - [sym___r_double_quote] = ACTIONS(2907), - [sym___r_single_quote] = ACTIONS(2907), + [1208] = { + [sym_identifier] = ACTIONS(2862), + [anon_sym_LF] = ACTIONS(2862), + [anon_sym_CR] = ACTIONS(2862), + [anon_sym_CR_LF] = ACTIONS(2862), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_as] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_COMMA] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2862), + [anon_sym_PIPE] = ACTIONS(2862), + [anon_sym_fn] = ACTIONS(2862), + [anon_sym_PLUS] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2862), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_SLASH] = ACTIONS(2862), + [anon_sym_PERCENT] = ACTIONS(2862), + [anon_sym_LT] = ACTIONS(2862), + [anon_sym_GT] = ACTIONS(2862), + [anon_sym_EQ_EQ] = ACTIONS(2862), + [anon_sym_BANG_EQ] = ACTIONS(2862), + [anon_sym_LT_EQ] = ACTIONS(2862), + [anon_sym_GT_EQ] = ACTIONS(2862), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2862), + [anon_sym_mut] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_QMARK] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_go] = ACTIONS(2862), + [anon_sym_spawn] = ACTIONS(2862), + [anon_sym_json_DOTdecode] = ACTIONS(2862), + [anon_sym_LBRACK2] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_CARET] = ACTIONS(2862), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_LT_DASH] = ACTIONS(2862), + [anon_sym_LT_LT] = ACTIONS(2862), + [anon_sym_GT_GT] = ACTIONS(2862), + [anon_sym_GT_GT_GT] = ACTIONS(2862), + [anon_sym_AMP_CARET] = ACTIONS(2862), + [anon_sym_AMP_AMP] = ACTIONS(2862), + [anon_sym_PIPE_PIPE] = ACTIONS(2862), + [anon_sym_or] = ACTIONS(2862), + [sym_none] = ACTIONS(2862), + [sym_true] = ACTIONS(2862), + [sym_false] = ACTIONS(2862), + [sym_nil] = ACTIONS(2862), + [anon_sym_QMARK_DOT] = ACTIONS(2862), + [anon_sym_POUND_LBRACK] = ACTIONS(2862), + [anon_sym_if] = ACTIONS(2862), + [anon_sym_DOLLARif] = ACTIONS(2862), + [anon_sym_is] = ACTIONS(2862), + [anon_sym_BANGis] = ACTIONS(2862), + [anon_sym_in] = ACTIONS(2862), + [anon_sym_BANGin] = ACTIONS(2862), + [anon_sym_match] = ACTIONS(2862), + [anon_sym_select] = ACTIONS(2862), + [anon_sym_lock] = ACTIONS(2862), + [anon_sym_rlock] = ACTIONS(2862), + [anon_sym_unsafe] = ACTIONS(2862), + [anon_sym_sql] = ACTIONS(2862), + [sym_int_literal] = ACTIONS(2862), + [sym_float_literal] = ACTIONS(2862), + [sym_rune_literal] = ACTIONS(2862), + [anon_sym_AT] = ACTIONS(2862), + [anon_sym_shared] = ACTIONS(2862), + [anon_sym_map_LBRACK] = ACTIONS(2862), + [anon_sym_chan] = ACTIONS(2862), + [anon_sym_thread] = ACTIONS(2862), + [anon_sym_atomic] = ACTIONS(2862), + [sym___double_quote] = ACTIONS(2862), + [sym___single_quote] = ACTIONS(2862), + [sym___c_double_quote] = ACTIONS(2862), + [sym___c_single_quote] = ACTIONS(2862), + [sym___r_double_quote] = ACTIONS(2862), + [sym___r_single_quote] = ACTIONS(2862), }, - [1240] = { - [sym_identifier] = ACTIONS(3029), - [anon_sym_LF] = ACTIONS(3029), - [anon_sym_CR] = ACTIONS(3029), - [anon_sym_CR_LF] = ACTIONS(3029), - [sym_comment] = ACTIONS(487), - [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_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_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_AT] = ACTIONS(3029), - [anon_sym_shared] = ACTIONS(3029), - [anon_sym_map_LBRACK] = ACTIONS(3029), - [anon_sym_chan] = ACTIONS(3029), - [anon_sym_thread] = ACTIONS(3029), - [anon_sym_atomic] = ACTIONS(3029), - [sym___double_quote] = ACTIONS(3029), - [sym___single_quote] = ACTIONS(3029), - [sym___c_double_quote] = ACTIONS(3029), - [sym___c_single_quote] = ACTIONS(3029), - [sym___r_double_quote] = ACTIONS(3029), - [sym___r_single_quote] = ACTIONS(3029), + [1209] = { + [sym_identifier] = ACTIONS(2818), + [anon_sym_LF] = ACTIONS(2818), + [anon_sym_CR] = ACTIONS(2818), + [anon_sym_CR_LF] = ACTIONS(2818), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym_DOT] = ACTIONS(2818), + [anon_sym_as] = ACTIONS(2818), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_COMMA] = ACTIONS(2818), + [anon_sym_RBRACE] = ACTIONS(2818), + [anon_sym_LPAREN] = ACTIONS(2818), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_fn] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2818), + [anon_sym_DASH] = ACTIONS(2818), + [anon_sym_STAR] = ACTIONS(2818), + [anon_sym_SLASH] = ACTIONS(2818), + [anon_sym_PERCENT] = ACTIONS(2818), + [anon_sym_LT] = ACTIONS(2818), + [anon_sym_GT] = ACTIONS(2818), + [anon_sym_EQ_EQ] = ACTIONS(2818), + [anon_sym_BANG_EQ] = ACTIONS(2818), + [anon_sym_LT_EQ] = ACTIONS(2818), + [anon_sym_GT_EQ] = ACTIONS(2818), + [anon_sym_LBRACK] = ACTIONS(2816), + [anon_sym_struct] = ACTIONS(2818), + [anon_sym_mut] = ACTIONS(2818), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_DASH_DASH] = ACTIONS(2818), + [anon_sym_QMARK] = ACTIONS(2818), + [anon_sym_BANG] = ACTIONS(2818), + [anon_sym_go] = ACTIONS(2818), + [anon_sym_spawn] = ACTIONS(2818), + [anon_sym_json_DOTdecode] = ACTIONS(2818), + [anon_sym_LBRACK2] = ACTIONS(2818), + [anon_sym_TILDE] = ACTIONS(2818), + [anon_sym_CARET] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2818), + [anon_sym_LT_DASH] = ACTIONS(2818), + [anon_sym_LT_LT] = ACTIONS(2818), + [anon_sym_GT_GT] = ACTIONS(2818), + [anon_sym_GT_GT_GT] = ACTIONS(2818), + [anon_sym_AMP_CARET] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2818), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_or] = ACTIONS(2818), + [sym_none] = ACTIONS(2818), + [sym_true] = ACTIONS(2818), + [sym_false] = ACTIONS(2818), + [sym_nil] = ACTIONS(2818), + [anon_sym_QMARK_DOT] = ACTIONS(2818), + [anon_sym_POUND_LBRACK] = ACTIONS(2818), + [anon_sym_if] = ACTIONS(2818), + [anon_sym_DOLLARif] = ACTIONS(2818), + [anon_sym_is] = ACTIONS(2818), + [anon_sym_BANGis] = ACTIONS(2818), + [anon_sym_in] = ACTIONS(2818), + [anon_sym_BANGin] = ACTIONS(2818), + [anon_sym_match] = ACTIONS(2818), + [anon_sym_select] = ACTIONS(2818), + [anon_sym_lock] = ACTIONS(2818), + [anon_sym_rlock] = ACTIONS(2818), + [anon_sym_unsafe] = ACTIONS(2818), + [anon_sym_sql] = ACTIONS(2818), + [sym_int_literal] = ACTIONS(2818), + [sym_float_literal] = ACTIONS(2818), + [sym_rune_literal] = ACTIONS(2818), + [anon_sym_AT] = ACTIONS(2818), + [anon_sym_shared] = ACTIONS(2818), + [anon_sym_map_LBRACK] = ACTIONS(2818), + [anon_sym_chan] = ACTIONS(2818), + [anon_sym_thread] = ACTIONS(2818), + [anon_sym_atomic] = ACTIONS(2818), + [sym___double_quote] = ACTIONS(2818), + [sym___single_quote] = ACTIONS(2818), + [sym___c_double_quote] = ACTIONS(2818), + [sym___c_single_quote] = ACTIONS(2818), + [sym___r_double_quote] = ACTIONS(2818), + [sym___r_single_quote] = ACTIONS(2818), }, - [1241] = { - [sym_identifier] = ACTIONS(3169), - [anon_sym_LF] = ACTIONS(3169), - [anon_sym_CR] = ACTIONS(3169), - [anon_sym_CR_LF] = ACTIONS(3169), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3169), - [anon_sym_as] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_RBRACE] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3169), - [anon_sym_PIPE] = ACTIONS(3169), - [anon_sym_fn] = ACTIONS(3169), - [anon_sym_PLUS] = ACTIONS(3169), - [anon_sym_DASH] = ACTIONS(3169), - [anon_sym_STAR] = ACTIONS(3169), - [anon_sym_SLASH] = ACTIONS(3169), - [anon_sym_PERCENT] = ACTIONS(3169), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_GT] = ACTIONS(3169), - [anon_sym_EQ_EQ] = ACTIONS(3169), - [anon_sym_BANG_EQ] = ACTIONS(3169), - [anon_sym_LT_EQ] = ACTIONS(3169), - [anon_sym_GT_EQ] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_struct] = ACTIONS(3169), - [anon_sym_mut] = ACTIONS(3169), - [anon_sym_PLUS_PLUS] = ACTIONS(3169), - [anon_sym_DASH_DASH] = ACTIONS(3169), - [anon_sym_QMARK] = ACTIONS(3169), - [anon_sym_BANG] = ACTIONS(3169), - [anon_sym_go] = ACTIONS(3169), - [anon_sym_spawn] = ACTIONS(3169), - [anon_sym_json_DOTdecode] = ACTIONS(3169), - [anon_sym_LBRACK2] = ACTIONS(3169), - [anon_sym_TILDE] = ACTIONS(3169), - [anon_sym_CARET] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3169), - [anon_sym_LT_DASH] = ACTIONS(3169), - [anon_sym_LT_LT] = ACTIONS(3169), - [anon_sym_GT_GT] = ACTIONS(3169), - [anon_sym_GT_GT_GT] = ACTIONS(3169), - [anon_sym_AMP_CARET] = ACTIONS(3169), - [anon_sym_AMP_AMP] = ACTIONS(3169), - [anon_sym_PIPE_PIPE] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3169), - [sym_none] = ACTIONS(3169), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [sym_nil] = ACTIONS(3169), - [anon_sym_QMARK_DOT] = ACTIONS(3169), - [anon_sym_POUND_LBRACK] = ACTIONS(3169), - [anon_sym_if] = ACTIONS(3169), - [anon_sym_DOLLARif] = ACTIONS(3169), - [anon_sym_is] = ACTIONS(3169), - [anon_sym_BANGis] = ACTIONS(3169), - [anon_sym_in] = ACTIONS(3169), - [anon_sym_BANGin] = ACTIONS(3169), - [anon_sym_match] = ACTIONS(3169), - [anon_sym_select] = ACTIONS(3169), - [anon_sym_lock] = ACTIONS(3169), - [anon_sym_rlock] = ACTIONS(3169), - [anon_sym_unsafe] = ACTIONS(3169), - [anon_sym_sql] = ACTIONS(3169), - [sym_int_literal] = ACTIONS(3169), - [sym_float_literal] = ACTIONS(3169), - [sym_rune_literal] = ACTIONS(3169), - [anon_sym_AT] = ACTIONS(3169), - [anon_sym_shared] = ACTIONS(3169), - [anon_sym_map_LBRACK] = ACTIONS(3169), - [anon_sym_chan] = ACTIONS(3169), - [anon_sym_thread] = ACTIONS(3169), - [anon_sym_atomic] = ACTIONS(3169), - [sym___double_quote] = ACTIONS(3169), - [sym___single_quote] = ACTIONS(3169), - [sym___c_double_quote] = ACTIONS(3169), - [sym___c_single_quote] = ACTIONS(3169), - [sym___r_double_quote] = ACTIONS(3169), - [sym___r_single_quote] = ACTIONS(3169), + [1210] = { + [sym_identifier] = ACTIONS(3094), + [anon_sym_LF] = ACTIONS(3094), + [anon_sym_CR] = ACTIONS(3094), + [anon_sym_CR_LF] = ACTIONS(3094), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_DOT] = ACTIONS(3094), + [anon_sym_as] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_COMMA] = ACTIONS(3094), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3094), + [anon_sym_PIPE] = ACTIONS(3094), + [anon_sym_fn] = ACTIONS(3094), + [anon_sym_PLUS] = ACTIONS(3094), + [anon_sym_DASH] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(3094), + [anon_sym_SLASH] = ACTIONS(3094), + [anon_sym_PERCENT] = ACTIONS(3094), + [anon_sym_LT] = ACTIONS(3094), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_EQ_EQ] = ACTIONS(3094), + [anon_sym_BANG_EQ] = ACTIONS(3094), + [anon_sym_LT_EQ] = ACTIONS(3094), + [anon_sym_GT_EQ] = ACTIONS(3094), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(3094), + [anon_sym_mut] = ACTIONS(3094), + [anon_sym_PLUS_PLUS] = ACTIONS(3094), + [anon_sym_DASH_DASH] = ACTIONS(3094), + [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3094), + [anon_sym_spawn] = ACTIONS(3094), + [anon_sym_json_DOTdecode] = ACTIONS(3094), + [anon_sym_LBRACK2] = ACTIONS(3094), + [anon_sym_TILDE] = ACTIONS(3094), + [anon_sym_CARET] = ACTIONS(3094), + [anon_sym_AMP] = ACTIONS(3094), + [anon_sym_LT_DASH] = ACTIONS(3094), + [anon_sym_LT_LT] = ACTIONS(3094), + [anon_sym_GT_GT] = ACTIONS(3094), + [anon_sym_GT_GT_GT] = ACTIONS(3094), + [anon_sym_AMP_CARET] = ACTIONS(3094), + [anon_sym_AMP_AMP] = ACTIONS(3094), + [anon_sym_PIPE_PIPE] = ACTIONS(3094), + [anon_sym_or] = ACTIONS(3094), + [sym_none] = ACTIONS(3094), + [sym_true] = ACTIONS(3094), + [sym_false] = ACTIONS(3094), + [sym_nil] = ACTIONS(3094), + [anon_sym_QMARK_DOT] = ACTIONS(3094), + [anon_sym_POUND_LBRACK] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3094), + [anon_sym_DOLLARif] = ACTIONS(3094), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3094), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_BANGin] = ACTIONS(3094), + [anon_sym_match] = ACTIONS(3094), + [anon_sym_select] = ACTIONS(3094), + [anon_sym_lock] = ACTIONS(3094), + [anon_sym_rlock] = ACTIONS(3094), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3094), + [sym_int_literal] = ACTIONS(3094), + [sym_float_literal] = ACTIONS(3094), + [sym_rune_literal] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(3094), + [anon_sym_shared] = ACTIONS(3094), + [anon_sym_map_LBRACK] = ACTIONS(3094), + [anon_sym_chan] = ACTIONS(3094), + [anon_sym_thread] = ACTIONS(3094), + [anon_sym_atomic] = ACTIONS(3094), + [sym___double_quote] = ACTIONS(3094), + [sym___single_quote] = ACTIONS(3094), + [sym___c_double_quote] = ACTIONS(3094), + [sym___c_single_quote] = ACTIONS(3094), + [sym___r_double_quote] = ACTIONS(3094), + [sym___r_single_quote] = ACTIONS(3094), }, - [1242] = { - [sym_identifier] = ACTIONS(3041), - [anon_sym_LF] = ACTIONS(3041), - [anon_sym_CR] = ACTIONS(3041), - [anon_sym_CR_LF] = ACTIONS(3041), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_DOT] = ACTIONS(3041), - [anon_sym_as] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3041), - [anon_sym_COMMA] = ACTIONS(3041), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3041), - [anon_sym_fn] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3041), - [anon_sym_SLASH] = ACTIONS(3041), - [anon_sym_PERCENT] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(3041), - [anon_sym_GT] = ACTIONS(3041), - [anon_sym_EQ_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ] = ACTIONS(3041), - [anon_sym_LT_EQ] = ACTIONS(3041), - [anon_sym_GT_EQ] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3039), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_mut] = ACTIONS(3041), - [anon_sym_PLUS_PLUS] = ACTIONS(3041), - [anon_sym_DASH_DASH] = ACTIONS(3041), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3041), - [anon_sym_go] = ACTIONS(3041), - [anon_sym_spawn] = ACTIONS(3041), - [anon_sym_json_DOTdecode] = ACTIONS(3041), - [anon_sym_LBRACK2] = ACTIONS(3041), - [anon_sym_TILDE] = ACTIONS(3041), - [anon_sym_CARET] = ACTIONS(3041), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_LT_DASH] = ACTIONS(3041), - [anon_sym_LT_LT] = ACTIONS(3041), - [anon_sym_GT_GT] = ACTIONS(3041), - [anon_sym_GT_GT_GT] = ACTIONS(3041), - [anon_sym_AMP_CARET] = ACTIONS(3041), - [anon_sym_AMP_AMP] = ACTIONS(3041), - [anon_sym_PIPE_PIPE] = ACTIONS(3041), - [anon_sym_or] = ACTIONS(3041), - [sym_none] = ACTIONS(3041), - [sym_true] = ACTIONS(3041), - [sym_false] = ACTIONS(3041), - [sym_nil] = ACTIONS(3041), - [anon_sym_QMARK_DOT] = ACTIONS(3041), - [anon_sym_POUND_LBRACK] = ACTIONS(3041), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_DOLLARif] = ACTIONS(3041), - [anon_sym_is] = ACTIONS(3041), - [anon_sym_BANGis] = ACTIONS(3041), - [anon_sym_in] = ACTIONS(3041), - [anon_sym_BANGin] = ACTIONS(3041), - [anon_sym_match] = ACTIONS(3041), - [anon_sym_select] = ACTIONS(3041), - [anon_sym_lock] = ACTIONS(3041), - [anon_sym_rlock] = ACTIONS(3041), - [anon_sym_unsafe] = ACTIONS(3041), - [anon_sym_sql] = ACTIONS(3041), - [sym_int_literal] = ACTIONS(3041), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [anon_sym_AT] = ACTIONS(3041), - [anon_sym_shared] = ACTIONS(3041), - [anon_sym_map_LBRACK] = ACTIONS(3041), - [anon_sym_chan] = ACTIONS(3041), - [anon_sym_thread] = ACTIONS(3041), - [anon_sym_atomic] = ACTIONS(3041), - [sym___double_quote] = ACTIONS(3041), - [sym___single_quote] = ACTIONS(3041), - [sym___c_double_quote] = ACTIONS(3041), - [sym___c_single_quote] = ACTIONS(3041), - [sym___r_double_quote] = ACTIONS(3041), - [sym___r_single_quote] = ACTIONS(3041), + [1211] = { + [sym_identifier] = ACTIONS(3050), + [anon_sym_LF] = ACTIONS(3050), + [anon_sym_CR] = ACTIONS(3050), + [anon_sym_CR_LF] = ACTIONS(3050), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3050), + [sym___single_quote] = ACTIONS(3050), + [sym___c_double_quote] = ACTIONS(3050), + [sym___c_single_quote] = ACTIONS(3050), + [sym___r_double_quote] = ACTIONS(3050), + [sym___r_single_quote] = ACTIONS(3050), }, - [1243] = { - [sym_identifier] = ACTIONS(3173), - [anon_sym_LF] = ACTIONS(3173), - [anon_sym_CR] = ACTIONS(3173), - [anon_sym_CR_LF] = ACTIONS(3173), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_as] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3173), - [anon_sym_RBRACE] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3173), - [anon_sym_fn] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_SLASH] = ACTIONS(3173), - [anon_sym_PERCENT] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3173), - [anon_sym_GT] = ACTIONS(3173), - [anon_sym_EQ_EQ] = ACTIONS(3173), - [anon_sym_BANG_EQ] = ACTIONS(3173), - [anon_sym_LT_EQ] = ACTIONS(3173), - [anon_sym_GT_EQ] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3173), - [anon_sym_mut] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_go] = ACTIONS(3173), - [anon_sym_spawn] = ACTIONS(3173), - [anon_sym_json_DOTdecode] = ACTIONS(3173), - [anon_sym_LBRACK2] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_CARET] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_LT_DASH] = ACTIONS(3173), - [anon_sym_LT_LT] = ACTIONS(3173), - [anon_sym_GT_GT] = ACTIONS(3173), - [anon_sym_GT_GT_GT] = ACTIONS(3173), - [anon_sym_AMP_CARET] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_PIPE_PIPE] = ACTIONS(3173), - [anon_sym_or] = ACTIONS(3173), - [sym_none] = ACTIONS(3173), - [sym_true] = ACTIONS(3173), - [sym_false] = ACTIONS(3173), - [sym_nil] = ACTIONS(3173), - [anon_sym_QMARK_DOT] = ACTIONS(3173), - [anon_sym_POUND_LBRACK] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_DOLLARif] = ACTIONS(3173), - [anon_sym_is] = ACTIONS(3173), - [anon_sym_BANGis] = ACTIONS(3173), - [anon_sym_in] = ACTIONS(3173), - [anon_sym_BANGin] = ACTIONS(3173), - [anon_sym_match] = ACTIONS(3173), - [anon_sym_select] = ACTIONS(3173), - [anon_sym_lock] = ACTIONS(3173), - [anon_sym_rlock] = ACTIONS(3173), - [anon_sym_unsafe] = ACTIONS(3173), - [anon_sym_sql] = ACTIONS(3173), - [sym_int_literal] = ACTIONS(3173), - [sym_float_literal] = ACTIONS(3173), - [sym_rune_literal] = ACTIONS(3173), - [anon_sym_AT] = ACTIONS(3173), - [anon_sym_shared] = ACTIONS(3173), - [anon_sym_map_LBRACK] = ACTIONS(3173), - [anon_sym_chan] = ACTIONS(3173), - [anon_sym_thread] = ACTIONS(3173), - [anon_sym_atomic] = ACTIONS(3173), - [sym___double_quote] = ACTIONS(3173), - [sym___single_quote] = ACTIONS(3173), - [sym___c_double_quote] = ACTIONS(3173), - [sym___c_single_quote] = ACTIONS(3173), - [sym___r_double_quote] = ACTIONS(3173), - [sym___r_single_quote] = ACTIONS(3173), + [1212] = { + [sym_identifier] = ACTIONS(3010), + [anon_sym_LF] = ACTIONS(3010), + [anon_sym_CR] = ACTIONS(3010), + [anon_sym_CR_LF] = ACTIONS(3010), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3010), + [sym___single_quote] = ACTIONS(3010), + [sym___c_double_quote] = ACTIONS(3010), + [sym___c_single_quote] = ACTIONS(3010), + [sym___r_double_quote] = ACTIONS(3010), + [sym___r_single_quote] = ACTIONS(3010), }, - [1244] = { - [sym_identifier] = ACTIONS(2931), - [anon_sym_LF] = ACTIONS(2931), - [anon_sym_CR] = ACTIONS(2931), - [anon_sym_CR_LF] = ACTIONS(2931), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2931), - [anon_sym_DOT] = ACTIONS(2931), - [anon_sym_as] = ACTIONS(2931), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_COMMA] = ACTIONS(2931), - [anon_sym_RBRACE] = ACTIONS(2931), - [anon_sym_LPAREN] = ACTIONS(2931), - [anon_sym_PIPE] = ACTIONS(2931), - [anon_sym_fn] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2931), - [anon_sym_STAR] = ACTIONS(2931), - [anon_sym_SLASH] = ACTIONS(2931), - [anon_sym_PERCENT] = ACTIONS(2931), - [anon_sym_LT] = ACTIONS(2931), - [anon_sym_GT] = ACTIONS(2931), - [anon_sym_EQ_EQ] = ACTIONS(2931), - [anon_sym_BANG_EQ] = ACTIONS(2931), - [anon_sym_LT_EQ] = ACTIONS(2931), - [anon_sym_GT_EQ] = ACTIONS(2931), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(2931), - [anon_sym_PLUS_PLUS] = ACTIONS(2931), - [anon_sym_DASH_DASH] = ACTIONS(2931), - [anon_sym_QMARK] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2931), - [anon_sym_go] = ACTIONS(2931), - [anon_sym_spawn] = ACTIONS(2931), - [anon_sym_json_DOTdecode] = ACTIONS(2931), - [anon_sym_LBRACK2] = ACTIONS(2931), - [anon_sym_TILDE] = ACTIONS(2931), - [anon_sym_CARET] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(2931), - [anon_sym_LT_DASH] = ACTIONS(2931), - [anon_sym_LT_LT] = ACTIONS(2931), - [anon_sym_GT_GT] = ACTIONS(2931), - [anon_sym_GT_GT_GT] = ACTIONS(2931), - [anon_sym_AMP_CARET] = ACTIONS(2931), - [anon_sym_AMP_AMP] = ACTIONS(2931), - [anon_sym_PIPE_PIPE] = ACTIONS(2931), - [anon_sym_or] = ACTIONS(2931), - [sym_none] = ACTIONS(2931), - [sym_true] = ACTIONS(2931), - [sym_false] = ACTIONS(2931), - [sym_nil] = ACTIONS(2931), - [anon_sym_QMARK_DOT] = ACTIONS(2931), - [anon_sym_POUND_LBRACK] = ACTIONS(2931), - [anon_sym_if] = ACTIONS(2931), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_BANGis] = ACTIONS(2931), - [anon_sym_in] = ACTIONS(2931), - [anon_sym_BANGin] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2931), - [anon_sym_select] = ACTIONS(2931), - [anon_sym_lock] = ACTIONS(2931), - [anon_sym_rlock] = ACTIONS(2931), - [anon_sym_unsafe] = ACTIONS(2931), - [anon_sym_sql] = ACTIONS(2931), - [sym_int_literal] = ACTIONS(2931), - [sym_float_literal] = ACTIONS(2931), - [sym_rune_literal] = ACTIONS(2931), - [anon_sym_AT] = ACTIONS(2931), - [anon_sym_shared] = ACTIONS(2931), - [anon_sym_map_LBRACK] = ACTIONS(2931), - [anon_sym_chan] = ACTIONS(2931), - [anon_sym_thread] = ACTIONS(2931), - [anon_sym_atomic] = ACTIONS(2931), - [sym___double_quote] = ACTIONS(2931), - [sym___single_quote] = ACTIONS(2931), - [sym___c_double_quote] = ACTIONS(2931), - [sym___c_single_quote] = ACTIONS(2931), - [sym___r_double_quote] = ACTIONS(2931), - [sym___r_single_quote] = ACTIONS(2931), + [1213] = { + [sym_identifier] = ACTIONS(3006), + [anon_sym_LF] = ACTIONS(3006), + [anon_sym_CR] = ACTIONS(3006), + [anon_sym_CR_LF] = ACTIONS(3006), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3006), + [anon_sym_DOT] = ACTIONS(3006), + [anon_sym_as] = ACTIONS(3006), + [anon_sym_LBRACE] = ACTIONS(3006), + [anon_sym_COMMA] = ACTIONS(3006), + [anon_sym_RBRACE] = ACTIONS(3006), + [anon_sym_LPAREN] = ACTIONS(3006), + [anon_sym_PIPE] = ACTIONS(3006), + [anon_sym_fn] = ACTIONS(3006), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_SLASH] = ACTIONS(3006), + [anon_sym_PERCENT] = ACTIONS(3006), + [anon_sym_LT] = ACTIONS(3006), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_EQ_EQ] = ACTIONS(3006), + [anon_sym_BANG_EQ] = ACTIONS(3006), + [anon_sym_LT_EQ] = ACTIONS(3006), + [anon_sym_GT_EQ] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3004), + [anon_sym_struct] = ACTIONS(3006), + [anon_sym_mut] = ACTIONS(3006), + [anon_sym_PLUS_PLUS] = ACTIONS(3006), + [anon_sym_DASH_DASH] = ACTIONS(3006), + [anon_sym_QMARK] = ACTIONS(3006), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_go] = ACTIONS(3006), + [anon_sym_spawn] = ACTIONS(3006), + [anon_sym_json_DOTdecode] = ACTIONS(3006), + [anon_sym_LBRACK2] = ACTIONS(3006), + [anon_sym_TILDE] = ACTIONS(3006), + [anon_sym_CARET] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3006), + [anon_sym_LT_DASH] = ACTIONS(3006), + [anon_sym_LT_LT] = ACTIONS(3006), + [anon_sym_GT_GT] = ACTIONS(3006), + [anon_sym_GT_GT_GT] = ACTIONS(3006), + [anon_sym_AMP_CARET] = ACTIONS(3006), + [anon_sym_AMP_AMP] = ACTIONS(3006), + [anon_sym_PIPE_PIPE] = ACTIONS(3006), + [anon_sym_or] = ACTIONS(3006), + [sym_none] = ACTIONS(3006), + [sym_true] = ACTIONS(3006), + [sym_false] = ACTIONS(3006), + [sym_nil] = ACTIONS(3006), + [anon_sym_QMARK_DOT] = ACTIONS(3006), + [anon_sym_POUND_LBRACK] = ACTIONS(3006), + [anon_sym_if] = ACTIONS(3006), + [anon_sym_DOLLARif] = ACTIONS(3006), + [anon_sym_is] = ACTIONS(3006), + [anon_sym_BANGis] = ACTIONS(3006), + [anon_sym_in] = ACTIONS(3006), + [anon_sym_BANGin] = ACTIONS(3006), + [anon_sym_match] = ACTIONS(3006), + [anon_sym_select] = ACTIONS(3006), + [anon_sym_lock] = ACTIONS(3006), + [anon_sym_rlock] = ACTIONS(3006), + [anon_sym_unsafe] = ACTIONS(3006), + [anon_sym_sql] = ACTIONS(3006), + [sym_int_literal] = ACTIONS(3006), + [sym_float_literal] = ACTIONS(3006), + [sym_rune_literal] = ACTIONS(3006), + [anon_sym_AT] = ACTIONS(3006), + [anon_sym_shared] = ACTIONS(3006), + [anon_sym_map_LBRACK] = ACTIONS(3006), + [anon_sym_chan] = ACTIONS(3006), + [anon_sym_thread] = ACTIONS(3006), + [anon_sym_atomic] = ACTIONS(3006), + [sym___double_quote] = ACTIONS(3006), + [sym___single_quote] = ACTIONS(3006), + [sym___c_double_quote] = ACTIONS(3006), + [sym___c_single_quote] = ACTIONS(3006), + [sym___r_double_quote] = ACTIONS(3006), + [sym___r_single_quote] = ACTIONS(3006), }, - [1245] = { - [sym_identifier] = ACTIONS(2923), - [anon_sym_LF] = ACTIONS(2923), - [anon_sym_CR] = ACTIONS(2923), - [anon_sym_CR_LF] = ACTIONS(2923), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2923), - [anon_sym_DOT] = ACTIONS(2923), - [anon_sym_as] = ACTIONS(2923), - [anon_sym_LBRACE] = ACTIONS(2923), - [anon_sym_COMMA] = ACTIONS(2923), - [anon_sym_RBRACE] = ACTIONS(2923), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_PIPE] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2923), - [anon_sym_PLUS] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2923), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_SLASH] = ACTIONS(2923), - [anon_sym_PERCENT] = ACTIONS(2923), - [anon_sym_LT] = ACTIONS(2923), - [anon_sym_GT] = ACTIONS(2923), - [anon_sym_EQ_EQ] = ACTIONS(2923), - [anon_sym_BANG_EQ] = ACTIONS(2923), - [anon_sym_LT_EQ] = ACTIONS(2923), - [anon_sym_GT_EQ] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_mut] = ACTIONS(2923), - [anon_sym_PLUS_PLUS] = ACTIONS(2923), - [anon_sym_DASH_DASH] = ACTIONS(2923), - [anon_sym_QMARK] = ACTIONS(2923), - [anon_sym_BANG] = ACTIONS(2923), - [anon_sym_go] = ACTIONS(2923), - [anon_sym_spawn] = ACTIONS(2923), - [anon_sym_json_DOTdecode] = ACTIONS(2923), - [anon_sym_LBRACK2] = ACTIONS(2923), - [anon_sym_TILDE] = ACTIONS(2923), - [anon_sym_CARET] = ACTIONS(2923), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_LT_DASH] = ACTIONS(2923), - [anon_sym_LT_LT] = ACTIONS(2923), - [anon_sym_GT_GT] = ACTIONS(2923), - [anon_sym_GT_GT_GT] = ACTIONS(2923), - [anon_sym_AMP_CARET] = ACTIONS(2923), - [anon_sym_AMP_AMP] = ACTIONS(2923), - [anon_sym_PIPE_PIPE] = ACTIONS(2923), - [anon_sym_or] = ACTIONS(2923), - [sym_none] = ACTIONS(2923), - [sym_true] = ACTIONS(2923), - [sym_false] = ACTIONS(2923), - [sym_nil] = ACTIONS(2923), - [anon_sym_QMARK_DOT] = ACTIONS(2923), - [anon_sym_POUND_LBRACK] = ACTIONS(2923), - [anon_sym_if] = ACTIONS(2923), - [anon_sym_DOLLARif] = ACTIONS(2923), - [anon_sym_is] = ACTIONS(2923), - [anon_sym_BANGis] = ACTIONS(2923), - [anon_sym_in] = ACTIONS(2923), - [anon_sym_BANGin] = ACTIONS(2923), - [anon_sym_match] = ACTIONS(2923), - [anon_sym_select] = ACTIONS(2923), - [anon_sym_lock] = ACTIONS(2923), - [anon_sym_rlock] = ACTIONS(2923), - [anon_sym_unsafe] = ACTIONS(2923), - [anon_sym_sql] = ACTIONS(2923), - [sym_int_literal] = ACTIONS(2923), - [sym_float_literal] = ACTIONS(2923), - [sym_rune_literal] = ACTIONS(2923), - [anon_sym_AT] = ACTIONS(2923), - [anon_sym_shared] = ACTIONS(2923), - [anon_sym_map_LBRACK] = ACTIONS(2923), - [anon_sym_chan] = ACTIONS(2923), - [anon_sym_thread] = ACTIONS(2923), - [anon_sym_atomic] = ACTIONS(2923), - [sym___double_quote] = ACTIONS(2923), - [sym___single_quote] = ACTIONS(2923), - [sym___c_double_quote] = ACTIONS(2923), - [sym___c_single_quote] = ACTIONS(2923), - [sym___r_double_quote] = ACTIONS(2923), - [sym___r_single_quote] = ACTIONS(2923), + [1214] = { + [sym_identifier] = ACTIONS(2970), + [anon_sym_LF] = ACTIONS(2970), + [anon_sym_CR] = ACTIONS(2970), + [anon_sym_CR_LF] = ACTIONS(2970), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2970), + [anon_sym_DOT] = ACTIONS(2970), + [anon_sym_as] = ACTIONS(2970), + [anon_sym_LBRACE] = ACTIONS(2970), + [anon_sym_COMMA] = ACTIONS(2970), + [anon_sym_RBRACE] = ACTIONS(2970), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_PIPE] = ACTIONS(2970), + [anon_sym_fn] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2970), + [anon_sym_DASH] = ACTIONS(2970), + [anon_sym_STAR] = ACTIONS(2970), + [anon_sym_SLASH] = ACTIONS(2970), + [anon_sym_PERCENT] = ACTIONS(2970), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_GT] = ACTIONS(2970), + [anon_sym_EQ_EQ] = ACTIONS(2970), + [anon_sym_BANG_EQ] = ACTIONS(2970), + [anon_sym_LT_EQ] = ACTIONS(2970), + [anon_sym_GT_EQ] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2968), + [anon_sym_struct] = ACTIONS(2970), + [anon_sym_mut] = ACTIONS(2970), + [anon_sym_PLUS_PLUS] = ACTIONS(2970), + [anon_sym_DASH_DASH] = ACTIONS(2970), + [anon_sym_QMARK] = ACTIONS(2970), + [anon_sym_BANG] = ACTIONS(2970), + [anon_sym_go] = ACTIONS(2970), + [anon_sym_spawn] = ACTIONS(2970), + [anon_sym_json_DOTdecode] = ACTIONS(2970), + [anon_sym_LBRACK2] = ACTIONS(2970), + [anon_sym_TILDE] = ACTIONS(2970), + [anon_sym_CARET] = ACTIONS(2970), + [anon_sym_AMP] = ACTIONS(2970), + [anon_sym_LT_DASH] = ACTIONS(2970), + [anon_sym_LT_LT] = ACTIONS(2970), + [anon_sym_GT_GT] = ACTIONS(2970), + [anon_sym_GT_GT_GT] = ACTIONS(2970), + [anon_sym_AMP_CARET] = ACTIONS(2970), + [anon_sym_AMP_AMP] = ACTIONS(2970), + [anon_sym_PIPE_PIPE] = ACTIONS(2970), + [anon_sym_or] = ACTIONS(2970), + [sym_none] = ACTIONS(2970), + [sym_true] = ACTIONS(2970), + [sym_false] = ACTIONS(2970), + [sym_nil] = ACTIONS(2970), + [anon_sym_QMARK_DOT] = ACTIONS(2970), + [anon_sym_POUND_LBRACK] = ACTIONS(2970), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_DOLLARif] = ACTIONS(2970), + [anon_sym_is] = ACTIONS(2970), + [anon_sym_BANGis] = ACTIONS(2970), + [anon_sym_in] = ACTIONS(2970), + [anon_sym_BANGin] = ACTIONS(2970), + [anon_sym_match] = ACTIONS(2970), + [anon_sym_select] = ACTIONS(2970), + [anon_sym_lock] = ACTIONS(2970), + [anon_sym_rlock] = ACTIONS(2970), + [anon_sym_unsafe] = ACTIONS(2970), + [anon_sym_sql] = ACTIONS(2970), + [sym_int_literal] = ACTIONS(2970), + [sym_float_literal] = ACTIONS(2970), + [sym_rune_literal] = ACTIONS(2970), + [anon_sym_AT] = ACTIONS(2970), + [anon_sym_shared] = ACTIONS(2970), + [anon_sym_map_LBRACK] = ACTIONS(2970), + [anon_sym_chan] = ACTIONS(2970), + [anon_sym_thread] = ACTIONS(2970), + [anon_sym_atomic] = ACTIONS(2970), + [sym___double_quote] = ACTIONS(2970), + [sym___single_quote] = ACTIONS(2970), + [sym___c_double_quote] = ACTIONS(2970), + [sym___c_single_quote] = ACTIONS(2970), + [sym___r_double_quote] = ACTIONS(2970), + [sym___r_single_quote] = ACTIONS(2970), }, - [1246] = { - [sym_identifier] = ACTIONS(2949), - [anon_sym_LF] = ACTIONS(2949), - [anon_sym_CR] = ACTIONS(2949), - [anon_sym_CR_LF] = ACTIONS(2949), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2949), - [anon_sym_DOT] = ACTIONS(2951), - [anon_sym_as] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_COMMA] = ACTIONS(2949), - [anon_sym_RBRACE] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_fn] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_PERCENT] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_GT] = ACTIONS(2951), - [anon_sym_EQ_EQ] = ACTIONS(2951), - [anon_sym_BANG_EQ] = ACTIONS(2951), - [anon_sym_LT_EQ] = ACTIONS(2951), - [anon_sym_GT_EQ] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_struct] = ACTIONS(2949), - [anon_sym_mut] = ACTIONS(2949), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_QMARK] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_go] = ACTIONS(2949), - [anon_sym_spawn] = ACTIONS(2949), - [anon_sym_json_DOTdecode] = ACTIONS(2949), - [anon_sym_LBRACK2] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2949), - [anon_sym_CARET] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_LT_DASH] = ACTIONS(2949), - [anon_sym_LT_LT] = ACTIONS(2951), - [anon_sym_GT_GT] = ACTIONS(2951), - [anon_sym_GT_GT_GT] = ACTIONS(2951), - [anon_sym_AMP_CARET] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2951), - [anon_sym_PIPE_PIPE] = ACTIONS(2951), - [anon_sym_or] = ACTIONS(2951), - [sym_none] = ACTIONS(2949), - [sym_true] = ACTIONS(2949), - [sym_false] = ACTIONS(2949), - [sym_nil] = ACTIONS(2949), - [anon_sym_QMARK_DOT] = ACTIONS(2951), - [anon_sym_POUND_LBRACK] = ACTIONS(2951), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2949), - [anon_sym_is] = ACTIONS(2951), - [anon_sym_BANGis] = ACTIONS(2951), - [anon_sym_in] = ACTIONS(2951), - [anon_sym_BANGin] = ACTIONS(2951), - [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_AT] = ACTIONS(2949), - [anon_sym_shared] = ACTIONS(2949), - [anon_sym_map_LBRACK] = ACTIONS(2949), - [anon_sym_chan] = ACTIONS(2949), - [anon_sym_thread] = ACTIONS(2949), - [anon_sym_atomic] = ACTIONS(2949), - [sym___double_quote] = ACTIONS(2949), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2949), - [sym___c_single_quote] = ACTIONS(2949), - [sym___r_double_quote] = ACTIONS(2949), - [sym___r_single_quote] = ACTIONS(2949), + [1215] = { + [sym_identifier] = ACTIONS(3066), + [anon_sym_LF] = ACTIONS(3066), + [anon_sym_CR] = ACTIONS(3066), + [anon_sym_CR_LF] = ACTIONS(3066), + [sym_comment] = ACTIONS(493), + [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_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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3066), + [sym___single_quote] = ACTIONS(3066), + [sym___c_double_quote] = ACTIONS(3066), + [sym___c_single_quote] = ACTIONS(3066), + [sym___r_double_quote] = ACTIONS(3066), + [sym___r_single_quote] = ACTIONS(3066), }, - [1247] = { - [sym_identifier] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2971), - [anon_sym_CR] = ACTIONS(2971), - [anon_sym_CR_LF] = ACTIONS(2971), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2971), - [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(2973), - [anon_sym_PIPE] = ACTIONS(2973), - [anon_sym_fn] = ACTIONS(2971), - [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), + [1216] = { + [sym_identifier] = ACTIONS(2978), + [anon_sym_LF] = ACTIONS(2978), + [anon_sym_CR] = ACTIONS(2978), + [anon_sym_CR_LF] = ACTIONS(2978), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2978), + [anon_sym_DOT] = ACTIONS(2978), + [anon_sym_as] = ACTIONS(2978), + [anon_sym_LBRACE] = ACTIONS(2978), + [anon_sym_COMMA] = ACTIONS(2978), + [anon_sym_RBRACE] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2978), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_fn] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2978), + [anon_sym_DASH] = ACTIONS(2978), + [anon_sym_STAR] = ACTIONS(2978), + [anon_sym_SLASH] = ACTIONS(2978), + [anon_sym_PERCENT] = ACTIONS(2978), + [anon_sym_LT] = ACTIONS(2978), + [anon_sym_GT] = ACTIONS(2978), + [anon_sym_EQ_EQ] = ACTIONS(2978), + [anon_sym_BANG_EQ] = ACTIONS(2978), + [anon_sym_LT_EQ] = ACTIONS(2978), + [anon_sym_GT_EQ] = ACTIONS(2978), [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_struct] = ACTIONS(2971), - [anon_sym_mut] = ACTIONS(2971), - [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(2971), - [anon_sym_spawn] = ACTIONS(2971), - [anon_sym_json_DOTdecode] = ACTIONS(2971), - [anon_sym_LBRACK2] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_CARET] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2971), - [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(2971), - [sym_true] = ACTIONS(2971), - [sym_false] = ACTIONS(2971), - [sym_nil] = ACTIONS(2971), - [anon_sym_QMARK_DOT] = ACTIONS(2973), - [anon_sym_POUND_LBRACK] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2971), - [anon_sym_DOLLARif] = ACTIONS(2971), - [anon_sym_is] = ACTIONS(2973), - [anon_sym_BANGis] = ACTIONS(2973), - [anon_sym_in] = ACTIONS(2973), - [anon_sym_BANGin] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [anon_sym_lock] = ACTIONS(2971), - [anon_sym_rlock] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(2971), - [anon_sym_sql] = ACTIONS(2971), - [sym_int_literal] = ACTIONS(2971), - [sym_float_literal] = ACTIONS(2971), - [sym_rune_literal] = ACTIONS(2971), - [anon_sym_AT] = ACTIONS(2971), - [anon_sym_shared] = ACTIONS(2971), - [anon_sym_map_LBRACK] = ACTIONS(2971), - [anon_sym_chan] = ACTIONS(2971), - [anon_sym_thread] = ACTIONS(2971), - [anon_sym_atomic] = ACTIONS(2971), - [sym___double_quote] = ACTIONS(2971), - [sym___single_quote] = ACTIONS(2971), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2971), - [sym___r_double_quote] = ACTIONS(2971), - [sym___r_single_quote] = ACTIONS(2971), + [anon_sym_struct] = ACTIONS(2978), + [anon_sym_mut] = ACTIONS(2978), + [anon_sym_PLUS_PLUS] = ACTIONS(2978), + [anon_sym_DASH_DASH] = ACTIONS(2978), + [anon_sym_QMARK] = ACTIONS(2978), + [anon_sym_BANG] = ACTIONS(2978), + [anon_sym_go] = ACTIONS(2978), + [anon_sym_spawn] = ACTIONS(2978), + [anon_sym_json_DOTdecode] = ACTIONS(2978), + [anon_sym_LBRACK2] = ACTIONS(2978), + [anon_sym_TILDE] = ACTIONS(2978), + [anon_sym_CARET] = ACTIONS(2978), + [anon_sym_AMP] = ACTIONS(2978), + [anon_sym_LT_DASH] = ACTIONS(2978), + [anon_sym_LT_LT] = ACTIONS(2978), + [anon_sym_GT_GT] = ACTIONS(2978), + [anon_sym_GT_GT_GT] = ACTIONS(2978), + [anon_sym_AMP_CARET] = ACTIONS(2978), + [anon_sym_AMP_AMP] = ACTIONS(2978), + [anon_sym_PIPE_PIPE] = ACTIONS(2978), + [anon_sym_or] = ACTIONS(2978), + [sym_none] = ACTIONS(2978), + [sym_true] = ACTIONS(2978), + [sym_false] = ACTIONS(2978), + [sym_nil] = ACTIONS(2978), + [anon_sym_QMARK_DOT] = ACTIONS(2978), + [anon_sym_POUND_LBRACK] = ACTIONS(2978), + [anon_sym_if] = ACTIONS(2978), + [anon_sym_DOLLARif] = ACTIONS(2978), + [anon_sym_is] = ACTIONS(2978), + [anon_sym_BANGis] = ACTIONS(2978), + [anon_sym_in] = ACTIONS(2978), + [anon_sym_BANGin] = ACTIONS(2978), + [anon_sym_match] = ACTIONS(2978), + [anon_sym_select] = ACTIONS(2978), + [anon_sym_lock] = ACTIONS(2978), + [anon_sym_rlock] = ACTIONS(2978), + [anon_sym_unsafe] = ACTIONS(2978), + [anon_sym_sql] = ACTIONS(2978), + [sym_int_literal] = ACTIONS(2978), + [sym_float_literal] = ACTIONS(2978), + [sym_rune_literal] = ACTIONS(2978), + [anon_sym_AT] = ACTIONS(2978), + [anon_sym_shared] = ACTIONS(2978), + [anon_sym_map_LBRACK] = ACTIONS(2978), + [anon_sym_chan] = ACTIONS(2978), + [anon_sym_thread] = ACTIONS(2978), + [anon_sym_atomic] = ACTIONS(2978), + [sym___double_quote] = ACTIONS(2978), + [sym___single_quote] = ACTIONS(2978), + [sym___c_double_quote] = ACTIONS(2978), + [sym___c_single_quote] = ACTIONS(2978), + [sym___r_double_quote] = ACTIONS(2978), + [sym___r_single_quote] = ACTIONS(2978), }, - [1248] = { - [sym_identifier] = ACTIONS(3097), - [anon_sym_LF] = ACTIONS(3097), - [anon_sym_CR] = ACTIONS(3097), - [anon_sym_CR_LF] = ACTIONS(3097), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym_DOT] = ACTIONS(3097), - [anon_sym_as] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_COMMA] = ACTIONS(3097), - [anon_sym_RBRACE] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3097), - [anon_sym_fn] = ACTIONS(3097), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_SLASH] = ACTIONS(3097), - [anon_sym_PERCENT] = ACTIONS(3097), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_LT_EQ] = ACTIONS(3097), - [anon_sym_GT_EQ] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_struct] = ACTIONS(3097), - [anon_sym_mut] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3097), - [anon_sym_DASH_DASH] = ACTIONS(3097), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_go] = ACTIONS(3097), - [anon_sym_spawn] = ACTIONS(3097), - [anon_sym_json_DOTdecode] = ACTIONS(3097), - [anon_sym_LBRACK2] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_CARET] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_LT_DASH] = ACTIONS(3097), - [anon_sym_LT_LT] = ACTIONS(3097), - [anon_sym_GT_GT] = ACTIONS(3097), - [anon_sym_GT_GT_GT] = ACTIONS(3097), - [anon_sym_AMP_CARET] = ACTIONS(3097), - [anon_sym_AMP_AMP] = ACTIONS(3097), - [anon_sym_PIPE_PIPE] = ACTIONS(3097), - [anon_sym_or] = ACTIONS(3097), - [sym_none] = ACTIONS(3097), - [sym_true] = ACTIONS(3097), - [sym_false] = ACTIONS(3097), - [sym_nil] = ACTIONS(3097), - [anon_sym_QMARK_DOT] = ACTIONS(3097), - [anon_sym_POUND_LBRACK] = ACTIONS(3097), - [anon_sym_if] = ACTIONS(3097), - [anon_sym_DOLLARif] = ACTIONS(3097), - [anon_sym_is] = ACTIONS(3097), - [anon_sym_BANGis] = ACTIONS(3097), - [anon_sym_in] = ACTIONS(3097), - [anon_sym_BANGin] = ACTIONS(3097), - [anon_sym_match] = ACTIONS(3097), - [anon_sym_select] = ACTIONS(3097), - [anon_sym_lock] = ACTIONS(3097), - [anon_sym_rlock] = ACTIONS(3097), - [anon_sym_unsafe] = ACTIONS(3097), - [anon_sym_sql] = ACTIONS(3097), - [sym_int_literal] = ACTIONS(3097), - [sym_float_literal] = ACTIONS(3097), - [sym_rune_literal] = ACTIONS(3097), - [anon_sym_AT] = ACTIONS(3097), - [anon_sym_shared] = ACTIONS(3097), - [anon_sym_map_LBRACK] = ACTIONS(3097), - [anon_sym_chan] = ACTIONS(3097), - [anon_sym_thread] = ACTIONS(3097), - [anon_sym_atomic] = ACTIONS(3097), - [sym___double_quote] = ACTIONS(3097), - [sym___single_quote] = ACTIONS(3097), - [sym___c_double_quote] = ACTIONS(3097), - [sym___c_single_quote] = ACTIONS(3097), - [sym___r_double_quote] = ACTIONS(3097), - [sym___r_single_quote] = ACTIONS(3097), + [1217] = { + [sym_identifier] = ACTIONS(2966), + [anon_sym_LF] = ACTIONS(2966), + [anon_sym_CR] = ACTIONS(2966), + [anon_sym_CR_LF] = ACTIONS(2966), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2966), + [anon_sym_DOT] = ACTIONS(2966), + [anon_sym_as] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_RBRACE] = ACTIONS(2966), + [anon_sym_LPAREN] = ACTIONS(2966), + [anon_sym_PIPE] = ACTIONS(2966), + [anon_sym_fn] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_STAR] = ACTIONS(2966), + [anon_sym_SLASH] = ACTIONS(2966), + [anon_sym_PERCENT] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_GT] = ACTIONS(2966), + [anon_sym_EQ_EQ] = ACTIONS(2966), + [anon_sym_BANG_EQ] = ACTIONS(2966), + [anon_sym_LT_EQ] = ACTIONS(2966), + [anon_sym_GT_EQ] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_struct] = ACTIONS(2966), + [anon_sym_mut] = ACTIONS(2966), + [anon_sym_PLUS_PLUS] = ACTIONS(2966), + [anon_sym_DASH_DASH] = ACTIONS(2966), + [anon_sym_QMARK] = ACTIONS(2966), + [anon_sym_BANG] = ACTIONS(2966), + [anon_sym_go] = ACTIONS(2966), + [anon_sym_spawn] = ACTIONS(2966), + [anon_sym_json_DOTdecode] = ACTIONS(2966), + [anon_sym_LBRACK2] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2966), + [anon_sym_CARET] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_LT_DASH] = ACTIONS(2966), + [anon_sym_LT_LT] = ACTIONS(2966), + [anon_sym_GT_GT] = ACTIONS(2966), + [anon_sym_GT_GT_GT] = ACTIONS(2966), + [anon_sym_AMP_CARET] = ACTIONS(2966), + [anon_sym_AMP_AMP] = ACTIONS(2966), + [anon_sym_PIPE_PIPE] = ACTIONS(2966), + [anon_sym_or] = ACTIONS(2966), + [sym_none] = ACTIONS(2966), + [sym_true] = ACTIONS(2966), + [sym_false] = ACTIONS(2966), + [sym_nil] = ACTIONS(2966), + [anon_sym_QMARK_DOT] = ACTIONS(2966), + [anon_sym_POUND_LBRACK] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_DOLLARif] = ACTIONS(2966), + [anon_sym_is] = ACTIONS(2966), + [anon_sym_BANGis] = ACTIONS(2966), + [anon_sym_in] = ACTIONS(2966), + [anon_sym_BANGin] = ACTIONS(2966), + [anon_sym_match] = ACTIONS(2966), + [anon_sym_select] = ACTIONS(2966), + [anon_sym_lock] = ACTIONS(2966), + [anon_sym_rlock] = ACTIONS(2966), + [anon_sym_unsafe] = ACTIONS(2966), + [anon_sym_sql] = ACTIONS(2966), + [sym_int_literal] = ACTIONS(2966), + [sym_float_literal] = ACTIONS(2966), + [sym_rune_literal] = ACTIONS(2966), + [anon_sym_AT] = ACTIONS(2966), + [anon_sym_shared] = ACTIONS(2966), + [anon_sym_map_LBRACK] = ACTIONS(2966), + [anon_sym_chan] = ACTIONS(2966), + [anon_sym_thread] = ACTIONS(2966), + [anon_sym_atomic] = ACTIONS(2966), + [sym___double_quote] = ACTIONS(2966), + [sym___single_quote] = ACTIONS(2966), + [sym___c_double_quote] = ACTIONS(2966), + [sym___c_single_quote] = ACTIONS(2966), + [sym___r_double_quote] = ACTIONS(2966), + [sym___r_single_quote] = ACTIONS(2966), }, - [1249] = { - [sym_identifier] = ACTIONS(2981), - [anon_sym_LF] = ACTIONS(2981), - [anon_sym_CR] = ACTIONS(2981), - [anon_sym_CR_LF] = ACTIONS(2981), - [sym_comment] = ACTIONS(487), - [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_PIPE] = ACTIONS(2981), - [anon_sym_fn] = ACTIONS(2981), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2981), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_EQ_EQ] = ACTIONS(2981), - [anon_sym_BANG_EQ] = ACTIONS(2981), - [anon_sym_LT_EQ] = ACTIONS(2981), - [anon_sym_GT_EQ] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(2981), - [anon_sym_mut] = ACTIONS(2981), - [anon_sym_PLUS_PLUS] = ACTIONS(2981), - [anon_sym_DASH_DASH] = ACTIONS(2981), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2981), - [anon_sym_spawn] = ACTIONS(2981), - [anon_sym_json_DOTdecode] = ACTIONS(2981), - [anon_sym_LBRACK2] = ACTIONS(2981), - [anon_sym_TILDE] = ACTIONS(2981), - [anon_sym_CARET] = ACTIONS(2981), - [anon_sym_AMP] = ACTIONS(2981), - [anon_sym_LT_DASH] = ACTIONS(2981), - [anon_sym_LT_LT] = ACTIONS(2981), - [anon_sym_GT_GT] = ACTIONS(2981), - [anon_sym_GT_GT_GT] = ACTIONS(2981), - [anon_sym_AMP_CARET] = ACTIONS(2981), - [anon_sym_AMP_AMP] = ACTIONS(2981), - [anon_sym_PIPE_PIPE] = ACTIONS(2981), - [anon_sym_or] = ACTIONS(2981), - [sym_none] = ACTIONS(2981), - [sym_true] = ACTIONS(2981), - [sym_false] = ACTIONS(2981), - [sym_nil] = ACTIONS(2981), - [anon_sym_QMARK_DOT] = ACTIONS(2981), - [anon_sym_POUND_LBRACK] = ACTIONS(2981), - [anon_sym_if] = ACTIONS(2981), - [anon_sym_DOLLARif] = ACTIONS(2981), - [anon_sym_is] = ACTIONS(2981), - [anon_sym_BANGis] = ACTIONS(2981), - [anon_sym_in] = ACTIONS(2981), - [anon_sym_BANGin] = ACTIONS(2981), - [anon_sym_match] = ACTIONS(2981), - [anon_sym_select] = ACTIONS(2981), - [anon_sym_lock] = ACTIONS(2981), - [anon_sym_rlock] = ACTIONS(2981), - [anon_sym_unsafe] = ACTIONS(2981), - [anon_sym_sql] = ACTIONS(2981), - [sym_int_literal] = ACTIONS(2981), - [sym_float_literal] = ACTIONS(2981), - [sym_rune_literal] = ACTIONS(2981), - [anon_sym_AT] = ACTIONS(2981), - [anon_sym_shared] = ACTIONS(2981), - [anon_sym_map_LBRACK] = ACTIONS(2981), - [anon_sym_chan] = ACTIONS(2981), - [anon_sym_thread] = ACTIONS(2981), - [anon_sym_atomic] = ACTIONS(2981), - [sym___double_quote] = ACTIONS(2981), - [sym___single_quote] = ACTIONS(2981), - [sym___c_double_quote] = ACTIONS(2981), - [sym___c_single_quote] = ACTIONS(2981), - [sym___r_double_quote] = ACTIONS(2981), - [sym___r_single_quote] = ACTIONS(2981), + [1218] = { + [sym_identifier] = ACTIONS(3058), + [anon_sym_LF] = ACTIONS(3058), + [anon_sym_CR] = ACTIONS(3058), + [anon_sym_CR_LF] = ACTIONS(3058), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3058), + [sym___single_quote] = ACTIONS(3058), + [sym___c_double_quote] = ACTIONS(3058), + [sym___c_single_quote] = ACTIONS(3058), + [sym___r_double_quote] = ACTIONS(3058), + [sym___r_single_quote] = ACTIONS(3058), }, - [1250] = { - [sym_identifier] = ACTIONS(3013), - [anon_sym_LF] = ACTIONS(3013), - [anon_sym_CR] = ACTIONS(3013), - [anon_sym_CR_LF] = ACTIONS(3013), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym_DOT] = ACTIONS(3013), - [anon_sym_as] = ACTIONS(3013), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_COMMA] = ACTIONS(3013), - [anon_sym_RBRACE] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3013), - [anon_sym_fn] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_SLASH] = ACTIONS(3013), - [anon_sym_PERCENT] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3013), - [anon_sym_GT] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3011), - [anon_sym_struct] = ACTIONS(3013), - [anon_sym_mut] = ACTIONS(3013), - [anon_sym_PLUS_PLUS] = ACTIONS(3013), - [anon_sym_DASH_DASH] = ACTIONS(3013), - [anon_sym_QMARK] = ACTIONS(3013), - [anon_sym_BANG] = ACTIONS(3013), - [anon_sym_go] = ACTIONS(3013), - [anon_sym_spawn] = ACTIONS(3013), - [anon_sym_json_DOTdecode] = ACTIONS(3013), - [anon_sym_LBRACK2] = ACTIONS(3013), - [anon_sym_TILDE] = ACTIONS(3013), - [anon_sym_CARET] = ACTIONS(3013), - [anon_sym_AMP] = ACTIONS(3013), - [anon_sym_LT_DASH] = ACTIONS(3013), - [anon_sym_LT_LT] = ACTIONS(3013), - [anon_sym_GT_GT] = ACTIONS(3013), - [anon_sym_GT_GT_GT] = ACTIONS(3013), - [anon_sym_AMP_CARET] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_or] = ACTIONS(3013), - [sym_none] = ACTIONS(3013), - [sym_true] = ACTIONS(3013), - [sym_false] = ACTIONS(3013), - [sym_nil] = ACTIONS(3013), - [anon_sym_QMARK_DOT] = ACTIONS(3013), - [anon_sym_POUND_LBRACK] = ACTIONS(3013), - [anon_sym_if] = ACTIONS(3013), - [anon_sym_DOLLARif] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3013), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_in] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_match] = ACTIONS(3013), - [anon_sym_select] = ACTIONS(3013), - [anon_sym_lock] = ACTIONS(3013), - [anon_sym_rlock] = ACTIONS(3013), - [anon_sym_unsafe] = ACTIONS(3013), - [anon_sym_sql] = ACTIONS(3013), - [sym_int_literal] = ACTIONS(3013), - [sym_float_literal] = ACTIONS(3013), - [sym_rune_literal] = ACTIONS(3013), - [anon_sym_AT] = ACTIONS(3013), - [anon_sym_shared] = ACTIONS(3013), - [anon_sym_map_LBRACK] = ACTIONS(3013), - [anon_sym_chan] = ACTIONS(3013), - [anon_sym_thread] = ACTIONS(3013), - [anon_sym_atomic] = ACTIONS(3013), - [sym___double_quote] = ACTIONS(3013), - [sym___single_quote] = ACTIONS(3013), - [sym___c_double_quote] = ACTIONS(3013), - [sym___c_single_quote] = ACTIONS(3013), - [sym___r_double_quote] = ACTIONS(3013), - [sym___r_single_quote] = ACTIONS(3013), + [1219] = { + [sym_identifier] = ACTIONS(2918), + [anon_sym_LF] = ACTIONS(2918), + [anon_sym_CR] = ACTIONS(2918), + [anon_sym_CR_LF] = ACTIONS(2918), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2918), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_as] = ACTIONS(2918), + [anon_sym_LBRACE] = ACTIONS(2918), + [anon_sym_COMMA] = ACTIONS(2918), + [anon_sym_RBRACE] = ACTIONS(2918), + [anon_sym_LPAREN] = ACTIONS(2918), + [anon_sym_PIPE] = ACTIONS(2918), + [anon_sym_fn] = ACTIONS(2918), + [anon_sym_PLUS] = ACTIONS(2918), + [anon_sym_DASH] = ACTIONS(2918), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_SLASH] = ACTIONS(2918), + [anon_sym_PERCENT] = ACTIONS(2918), + [anon_sym_LT] = ACTIONS(2918), + [anon_sym_GT] = ACTIONS(2918), + [anon_sym_EQ_EQ] = ACTIONS(2918), + [anon_sym_BANG_EQ] = ACTIONS(2918), + [anon_sym_LT_EQ] = ACTIONS(2918), + [anon_sym_GT_EQ] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_struct] = ACTIONS(2918), + [anon_sym_mut] = ACTIONS(2918), + [anon_sym_PLUS_PLUS] = ACTIONS(2918), + [anon_sym_DASH_DASH] = ACTIONS(2918), + [anon_sym_QMARK] = ACTIONS(2918), + [anon_sym_BANG] = ACTIONS(2918), + [anon_sym_go] = ACTIONS(2918), + [anon_sym_spawn] = ACTIONS(2918), + [anon_sym_json_DOTdecode] = ACTIONS(2918), + [anon_sym_LBRACK2] = ACTIONS(2918), + [anon_sym_TILDE] = ACTIONS(2918), + [anon_sym_CARET] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2918), + [anon_sym_LT_DASH] = ACTIONS(2918), + [anon_sym_LT_LT] = ACTIONS(2918), + [anon_sym_GT_GT] = ACTIONS(2918), + [anon_sym_GT_GT_GT] = ACTIONS(2918), + [anon_sym_AMP_CARET] = ACTIONS(2918), + [anon_sym_AMP_AMP] = ACTIONS(2918), + [anon_sym_PIPE_PIPE] = ACTIONS(2918), + [anon_sym_or] = ACTIONS(2918), + [sym_none] = ACTIONS(2918), + [sym_true] = ACTIONS(2918), + [sym_false] = ACTIONS(2918), + [sym_nil] = ACTIONS(2918), + [anon_sym_QMARK_DOT] = ACTIONS(2918), + [anon_sym_POUND_LBRACK] = ACTIONS(2918), + [anon_sym_if] = ACTIONS(2918), + [anon_sym_DOLLARif] = ACTIONS(2918), + [anon_sym_is] = ACTIONS(2918), + [anon_sym_BANGis] = ACTIONS(2918), + [anon_sym_in] = ACTIONS(2918), + [anon_sym_BANGin] = ACTIONS(2918), + [anon_sym_match] = ACTIONS(2918), + [anon_sym_select] = ACTIONS(2918), + [anon_sym_lock] = ACTIONS(2918), + [anon_sym_rlock] = ACTIONS(2918), + [anon_sym_unsafe] = ACTIONS(2918), + [anon_sym_sql] = ACTIONS(2918), + [sym_int_literal] = ACTIONS(2918), + [sym_float_literal] = ACTIONS(2918), + [sym_rune_literal] = ACTIONS(2918), + [anon_sym_AT] = ACTIONS(2918), + [anon_sym_shared] = ACTIONS(2918), + [anon_sym_map_LBRACK] = ACTIONS(2918), + [anon_sym_chan] = ACTIONS(2918), + [anon_sym_thread] = ACTIONS(2918), + [anon_sym_atomic] = ACTIONS(2918), + [sym___double_quote] = ACTIONS(2918), + [sym___single_quote] = ACTIONS(2918), + [sym___c_double_quote] = ACTIONS(2918), + [sym___c_single_quote] = ACTIONS(2918), + [sym___r_double_quote] = ACTIONS(2918), + [sym___r_single_quote] = ACTIONS(2918), }, - [1251] = { - [sym_identifier] = ACTIONS(2985), - [anon_sym_LF] = ACTIONS(2985), - [anon_sym_CR] = ACTIONS(2985), - [anon_sym_CR_LF] = ACTIONS(2985), - [sym_comment] = ACTIONS(487), - [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_PIPE] = ACTIONS(2985), - [anon_sym_fn] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_SLASH] = ACTIONS(2985), - [anon_sym_PERCENT] = ACTIONS(2985), - [anon_sym_LT] = ACTIONS(2985), - [anon_sym_GT] = ACTIONS(2985), - [anon_sym_EQ_EQ] = ACTIONS(2985), - [anon_sym_BANG_EQ] = ACTIONS(2985), - [anon_sym_LT_EQ] = ACTIONS(2985), - [anon_sym_GT_EQ] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_mut] = ACTIONS(2985), - [anon_sym_PLUS_PLUS] = ACTIONS(2985), - [anon_sym_DASH_DASH] = ACTIONS(2985), - [anon_sym_QMARK] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_go] = ACTIONS(2985), - [anon_sym_spawn] = ACTIONS(2985), - [anon_sym_json_DOTdecode] = ACTIONS(2985), - [anon_sym_LBRACK2] = ACTIONS(2985), - [anon_sym_TILDE] = ACTIONS(2985), - [anon_sym_CARET] = ACTIONS(2985), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_LT_DASH] = ACTIONS(2985), - [anon_sym_LT_LT] = ACTIONS(2985), - [anon_sym_GT_GT] = ACTIONS(2985), - [anon_sym_GT_GT_GT] = ACTIONS(2985), - [anon_sym_AMP_CARET] = ACTIONS(2985), - [anon_sym_AMP_AMP] = ACTIONS(2985), - [anon_sym_PIPE_PIPE] = ACTIONS(2985), - [anon_sym_or] = ACTIONS(2985), - [sym_none] = ACTIONS(2985), - [sym_true] = ACTIONS(2985), - [sym_false] = ACTIONS(2985), - [sym_nil] = ACTIONS(2985), - [anon_sym_QMARK_DOT] = ACTIONS(2985), - [anon_sym_POUND_LBRACK] = ACTIONS(2985), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_DOLLARif] = ACTIONS(2985), - [anon_sym_is] = ACTIONS(2985), - [anon_sym_BANGis] = ACTIONS(2985), - [anon_sym_in] = ACTIONS(2985), - [anon_sym_BANGin] = ACTIONS(2985), - [anon_sym_match] = ACTIONS(2985), - [anon_sym_select] = ACTIONS(2985), - [anon_sym_lock] = ACTIONS(2985), - [anon_sym_rlock] = ACTIONS(2985), - [anon_sym_unsafe] = ACTIONS(2985), - [anon_sym_sql] = ACTIONS(2985), - [sym_int_literal] = ACTIONS(2985), - [sym_float_literal] = ACTIONS(2985), - [sym_rune_literal] = ACTIONS(2985), - [anon_sym_AT] = ACTIONS(2985), - [anon_sym_shared] = ACTIONS(2985), - [anon_sym_map_LBRACK] = ACTIONS(2985), - [anon_sym_chan] = ACTIONS(2985), - [anon_sym_thread] = ACTIONS(2985), - [anon_sym_atomic] = ACTIONS(2985), - [sym___double_quote] = ACTIONS(2985), - [sym___single_quote] = ACTIONS(2985), - [sym___c_double_quote] = ACTIONS(2985), - [sym___c_single_quote] = ACTIONS(2985), - [sym___r_double_quote] = ACTIONS(2985), - [sym___r_single_quote] = ACTIONS(2985), + [1220] = { + [sym_identifier] = ACTIONS(2906), + [anon_sym_LF] = ACTIONS(2906), + [anon_sym_CR] = ACTIONS(2906), + [anon_sym_CR_LF] = ACTIONS(2906), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2906), + [anon_sym_DOT] = ACTIONS(2906), + [anon_sym_as] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_COMMA] = ACTIONS(2906), + [anon_sym_RBRACE] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_PIPE] = ACTIONS(2906), + [anon_sym_fn] = ACTIONS(2906), + [anon_sym_PLUS] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2906), + [anon_sym_SLASH] = ACTIONS(2906), + [anon_sym_PERCENT] = ACTIONS(2906), + [anon_sym_LT] = ACTIONS(2906), + [anon_sym_GT] = ACTIONS(2906), + [anon_sym_EQ_EQ] = ACTIONS(2906), + [anon_sym_BANG_EQ] = ACTIONS(2906), + [anon_sym_LT_EQ] = ACTIONS(2906), + [anon_sym_GT_EQ] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_struct] = ACTIONS(2906), + [anon_sym_mut] = ACTIONS(2906), + [anon_sym_PLUS_PLUS] = ACTIONS(2906), + [anon_sym_DASH_DASH] = ACTIONS(2906), + [anon_sym_QMARK] = ACTIONS(2906), + [anon_sym_BANG] = ACTIONS(2906), + [anon_sym_go] = ACTIONS(2906), + [anon_sym_spawn] = ACTIONS(2906), + [anon_sym_json_DOTdecode] = ACTIONS(2906), + [anon_sym_LBRACK2] = ACTIONS(2906), + [anon_sym_TILDE] = ACTIONS(2906), + [anon_sym_CARET] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2906), + [anon_sym_LT_DASH] = ACTIONS(2906), + [anon_sym_LT_LT] = ACTIONS(2906), + [anon_sym_GT_GT] = ACTIONS(2906), + [anon_sym_GT_GT_GT] = ACTIONS(2906), + [anon_sym_AMP_CARET] = ACTIONS(2906), + [anon_sym_AMP_AMP] = ACTIONS(2906), + [anon_sym_PIPE_PIPE] = ACTIONS(2906), + [anon_sym_or] = ACTIONS(2906), + [sym_none] = ACTIONS(2906), + [sym_true] = ACTIONS(2906), + [sym_false] = ACTIONS(2906), + [sym_nil] = ACTIONS(2906), + [anon_sym_QMARK_DOT] = ACTIONS(2906), + [anon_sym_POUND_LBRACK] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_DOLLARif] = ACTIONS(2906), + [anon_sym_is] = ACTIONS(2906), + [anon_sym_BANGis] = ACTIONS(2906), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_BANGin] = ACTIONS(2906), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_select] = ACTIONS(2906), + [anon_sym_lock] = ACTIONS(2906), + [anon_sym_rlock] = ACTIONS(2906), + [anon_sym_unsafe] = ACTIONS(2906), + [anon_sym_sql] = ACTIONS(2906), + [sym_int_literal] = ACTIONS(2906), + [sym_float_literal] = ACTIONS(2906), + [sym_rune_literal] = ACTIONS(2906), + [anon_sym_AT] = ACTIONS(2906), + [anon_sym_shared] = ACTIONS(2906), + [anon_sym_map_LBRACK] = ACTIONS(2906), + [anon_sym_chan] = ACTIONS(2906), + [anon_sym_thread] = ACTIONS(2906), + [anon_sym_atomic] = ACTIONS(2906), + [sym___double_quote] = ACTIONS(2906), + [sym___single_quote] = ACTIONS(2906), + [sym___c_double_quote] = ACTIONS(2906), + [sym___c_single_quote] = ACTIONS(2906), + [sym___r_double_quote] = ACTIONS(2906), + [sym___r_single_quote] = ACTIONS(2906), }, - [1252] = { - [sym_identifier] = ACTIONS(3017), - [anon_sym_LF] = ACTIONS(3017), - [anon_sym_CR] = ACTIONS(3017), - [anon_sym_CR_LF] = ACTIONS(3017), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3017), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_as] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_COMMA] = ACTIONS(3017), - [anon_sym_RBRACE] = ACTIONS(3017), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_PIPE] = ACTIONS(3017), - [anon_sym_fn] = ACTIONS(3017), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_SLASH] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3017), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_LT_EQ] = ACTIONS(3017), - [anon_sym_GT_EQ] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_struct] = ACTIONS(3017), - [anon_sym_mut] = ACTIONS(3017), - [anon_sym_PLUS_PLUS] = ACTIONS(3017), - [anon_sym_DASH_DASH] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3017), - [anon_sym_go] = ACTIONS(3017), - [anon_sym_spawn] = ACTIONS(3017), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3017), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), - [anon_sym_LT_LT] = ACTIONS(3017), - [anon_sym_GT_GT] = ACTIONS(3017), - [anon_sym_GT_GT_GT] = ACTIONS(3017), - [anon_sym_AMP_CARET] = ACTIONS(3017), - [anon_sym_AMP_AMP] = ACTIONS(3017), - [anon_sym_PIPE_PIPE] = ACTIONS(3017), - [anon_sym_or] = ACTIONS(3017), - [sym_none] = ACTIONS(3017), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_nil] = ACTIONS(3017), - [anon_sym_QMARK_DOT] = ACTIONS(3017), - [anon_sym_POUND_LBRACK] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_DOLLARif] = ACTIONS(3017), - [anon_sym_is] = ACTIONS(3017), - [anon_sym_BANGis] = ACTIONS(3017), - [anon_sym_in] = ACTIONS(3017), - [anon_sym_BANGin] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_select] = ACTIONS(3017), - [anon_sym_lock] = ACTIONS(3017), - [anon_sym_rlock] = ACTIONS(3017), - [anon_sym_unsafe] = ACTIONS(3017), - [anon_sym_sql] = ACTIONS(3017), - [sym_int_literal] = ACTIONS(3017), - [sym_float_literal] = ACTIONS(3017), - [sym_rune_literal] = ACTIONS(3017), - [anon_sym_AT] = ACTIONS(3017), - [anon_sym_shared] = ACTIONS(3017), - [anon_sym_map_LBRACK] = ACTIONS(3017), - [anon_sym_chan] = ACTIONS(3017), - [anon_sym_thread] = ACTIONS(3017), - [anon_sym_atomic] = ACTIONS(3017), - [sym___double_quote] = ACTIONS(3017), - [sym___single_quote] = ACTIONS(3017), - [sym___c_double_quote] = ACTIONS(3017), - [sym___c_single_quote] = ACTIONS(3017), - [sym___r_double_quote] = ACTIONS(3017), - [sym___r_single_quote] = ACTIONS(3017), + [1221] = { + [sym_identifier] = ACTIONS(3141), + [anon_sym_LF] = ACTIONS(3141), + [anon_sym_CR] = ACTIONS(3141), + [anon_sym_CR_LF] = ACTIONS(3141), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3141), + [anon_sym_DOT] = ACTIONS(3141), + [anon_sym_as] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3141), + [anon_sym_COMMA] = ACTIONS(3141), + [anon_sym_RBRACE] = ACTIONS(3141), + [anon_sym_LPAREN] = ACTIONS(3141), + [anon_sym_PIPE] = ACTIONS(3141), + [anon_sym_fn] = ACTIONS(3141), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(3141), + [anon_sym_PERCENT] = ACTIONS(3141), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_GT] = ACTIONS(3141), + [anon_sym_EQ_EQ] = ACTIONS(3141), + [anon_sym_BANG_EQ] = ACTIONS(3141), + [anon_sym_LT_EQ] = ACTIONS(3141), + [anon_sym_GT_EQ] = ACTIONS(3141), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_struct] = ACTIONS(3141), + [anon_sym_mut] = ACTIONS(3141), + [anon_sym_PLUS_PLUS] = ACTIONS(3141), + [anon_sym_DASH_DASH] = ACTIONS(3141), + [anon_sym_QMARK] = ACTIONS(3141), + [anon_sym_BANG] = ACTIONS(3600), + [anon_sym_go] = ACTIONS(3141), + [anon_sym_spawn] = ACTIONS(3141), + [anon_sym_json_DOTdecode] = ACTIONS(3141), + [anon_sym_LBRACK2] = ACTIONS(3141), + [anon_sym_TILDE] = ACTIONS(3141), + [anon_sym_CARET] = ACTIONS(3141), + [anon_sym_AMP] = ACTIONS(3141), + [anon_sym_LT_DASH] = ACTIONS(3141), + [anon_sym_LT_LT] = ACTIONS(3141), + [anon_sym_GT_GT] = ACTIONS(3141), + [anon_sym_GT_GT_GT] = ACTIONS(3141), + [anon_sym_AMP_CARET] = ACTIONS(3141), + [anon_sym_AMP_AMP] = ACTIONS(3141), + [anon_sym_PIPE_PIPE] = ACTIONS(3141), + [anon_sym_or] = ACTIONS(3141), + [sym_none] = ACTIONS(3141), + [sym_true] = ACTIONS(3141), + [sym_false] = ACTIONS(3141), + [sym_nil] = ACTIONS(3141), + [anon_sym_QMARK_DOT] = ACTIONS(3141), + [anon_sym_POUND_LBRACK] = ACTIONS(3141), + [anon_sym_if] = ACTIONS(3141), + [anon_sym_DOLLARif] = ACTIONS(3141), + [anon_sym_is] = ACTIONS(3141), + [anon_sym_BANGis] = ACTIONS(3141), + [anon_sym_in] = ACTIONS(3141), + [anon_sym_BANGin] = ACTIONS(3141), + [anon_sym_match] = ACTIONS(3141), + [anon_sym_select] = ACTIONS(3141), + [anon_sym_lock] = ACTIONS(3141), + [anon_sym_rlock] = ACTIONS(3141), + [anon_sym_unsafe] = ACTIONS(3141), + [anon_sym_sql] = ACTIONS(3141), + [sym_int_literal] = ACTIONS(3141), + [sym_float_literal] = ACTIONS(3141), + [sym_rune_literal] = ACTIONS(3141), + [anon_sym_AT] = ACTIONS(3141), + [anon_sym_shared] = ACTIONS(3141), + [anon_sym_map_LBRACK] = ACTIONS(3141), + [anon_sym_chan] = ACTIONS(3141), + [anon_sym_thread] = ACTIONS(3141), + [anon_sym_atomic] = ACTIONS(3141), + [sym___double_quote] = ACTIONS(3141), + [sym___single_quote] = ACTIONS(3141), + [sym___c_double_quote] = ACTIONS(3141), + [sym___c_single_quote] = ACTIONS(3141), + [sym___r_double_quote] = ACTIONS(3141), + [sym___r_single_quote] = ACTIONS(3141), }, - [1253] = { - [sym_identifier] = ACTIONS(2824), - [anon_sym_LF] = ACTIONS(2824), - [anon_sym_CR] = ACTIONS(2824), - [anon_sym_CR_LF] = ACTIONS(2824), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2824), - [anon_sym_DOT] = ACTIONS(2824), - [anon_sym_as] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2824), - [anon_sym_COMMA] = ACTIONS(2824), - [anon_sym_RBRACE] = ACTIONS(2824), - [anon_sym_LPAREN] = ACTIONS(2824), - [anon_sym_PIPE] = ACTIONS(2824), - [anon_sym_fn] = ACTIONS(2824), - [anon_sym_PLUS] = ACTIONS(2824), - [anon_sym_DASH] = ACTIONS(2824), - [anon_sym_STAR] = ACTIONS(2824), - [anon_sym_SLASH] = ACTIONS(2824), - [anon_sym_PERCENT] = ACTIONS(2824), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_GT] = ACTIONS(2824), - [anon_sym_EQ_EQ] = ACTIONS(2824), - [anon_sym_BANG_EQ] = ACTIONS(2824), - [anon_sym_LT_EQ] = ACTIONS(2824), - [anon_sym_GT_EQ] = ACTIONS(2824), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_struct] = ACTIONS(2824), - [anon_sym_mut] = ACTIONS(2824), - [anon_sym_PLUS_PLUS] = ACTIONS(2824), - [anon_sym_DASH_DASH] = ACTIONS(2824), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_BANG] = ACTIONS(2824), - [anon_sym_go] = ACTIONS(2824), - [anon_sym_spawn] = ACTIONS(2824), - [anon_sym_json_DOTdecode] = ACTIONS(2824), - [anon_sym_LBRACK2] = ACTIONS(2824), - [anon_sym_TILDE] = ACTIONS(2824), - [anon_sym_CARET] = ACTIONS(2824), - [anon_sym_AMP] = ACTIONS(2824), - [anon_sym_LT_DASH] = ACTIONS(2824), - [anon_sym_LT_LT] = ACTIONS(2824), - [anon_sym_GT_GT] = ACTIONS(2824), - [anon_sym_GT_GT_GT] = ACTIONS(2824), - [anon_sym_AMP_CARET] = ACTIONS(2824), - [anon_sym_AMP_AMP] = ACTIONS(2824), - [anon_sym_PIPE_PIPE] = ACTIONS(2824), - [anon_sym_or] = ACTIONS(2824), - [sym_none] = ACTIONS(2824), - [sym_true] = ACTIONS(2824), - [sym_false] = ACTIONS(2824), - [sym_nil] = ACTIONS(2824), - [anon_sym_QMARK_DOT] = ACTIONS(2824), - [anon_sym_POUND_LBRACK] = ACTIONS(2824), - [anon_sym_if] = ACTIONS(2824), - [anon_sym_DOLLARif] = ACTIONS(2824), - [anon_sym_is] = ACTIONS(2824), - [anon_sym_BANGis] = ACTIONS(2824), - [anon_sym_in] = ACTIONS(2824), - [anon_sym_BANGin] = ACTIONS(2824), - [anon_sym_match] = ACTIONS(2824), - [anon_sym_select] = ACTIONS(2824), - [anon_sym_lock] = ACTIONS(2824), - [anon_sym_rlock] = ACTIONS(2824), - [anon_sym_unsafe] = ACTIONS(2824), - [anon_sym_sql] = ACTIONS(2824), - [sym_int_literal] = ACTIONS(2824), - [sym_float_literal] = ACTIONS(2824), - [sym_rune_literal] = ACTIONS(2824), - [anon_sym_AT] = ACTIONS(2824), - [anon_sym_shared] = ACTIONS(2824), - [anon_sym_map_LBRACK] = ACTIONS(2824), - [anon_sym_chan] = ACTIONS(2824), - [anon_sym_thread] = ACTIONS(2824), - [anon_sym_atomic] = ACTIONS(2824), - [sym___double_quote] = ACTIONS(2824), - [sym___single_quote] = ACTIONS(2824), - [sym___c_double_quote] = ACTIONS(2824), - [sym___c_single_quote] = ACTIONS(2824), - [sym___r_double_quote] = ACTIONS(2824), - [sym___r_single_quote] = ACTIONS(2824), + [1222] = { + [sym_identifier] = ACTIONS(2866), + [anon_sym_LF] = ACTIONS(2866), + [anon_sym_CR] = ACTIONS(2866), + [anon_sym_CR_LF] = ACTIONS(2866), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2866), + [anon_sym_DOT] = ACTIONS(2866), + [anon_sym_as] = ACTIONS(2866), + [anon_sym_LBRACE] = ACTIONS(2866), + [anon_sym_COMMA] = ACTIONS(2866), + [anon_sym_RBRACE] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2866), + [anon_sym_PIPE] = ACTIONS(2866), + [anon_sym_fn] = ACTIONS(2866), + [anon_sym_PLUS] = ACTIONS(2866), + [anon_sym_DASH] = ACTIONS(2866), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_SLASH] = ACTIONS(2866), + [anon_sym_PERCENT] = ACTIONS(2866), + [anon_sym_LT] = ACTIONS(2866), + [anon_sym_GT] = ACTIONS(2866), + [anon_sym_EQ_EQ] = ACTIONS(2866), + [anon_sym_BANG_EQ] = ACTIONS(2866), + [anon_sym_LT_EQ] = ACTIONS(2866), + [anon_sym_GT_EQ] = ACTIONS(2866), + [anon_sym_LBRACK] = ACTIONS(2864), + [anon_sym_struct] = ACTIONS(2866), + [anon_sym_mut] = ACTIONS(2866), + [anon_sym_PLUS_PLUS] = ACTIONS(2866), + [anon_sym_DASH_DASH] = ACTIONS(2866), + [anon_sym_QMARK] = ACTIONS(2866), + [anon_sym_BANG] = ACTIONS(2866), + [anon_sym_go] = ACTIONS(2866), + [anon_sym_spawn] = ACTIONS(2866), + [anon_sym_json_DOTdecode] = ACTIONS(2866), + [anon_sym_LBRACK2] = ACTIONS(2866), + [anon_sym_TILDE] = ACTIONS(2866), + [anon_sym_CARET] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_LT_DASH] = ACTIONS(2866), + [anon_sym_LT_LT] = ACTIONS(2866), + [anon_sym_GT_GT] = ACTIONS(2866), + [anon_sym_GT_GT_GT] = ACTIONS(2866), + [anon_sym_AMP_CARET] = ACTIONS(2866), + [anon_sym_AMP_AMP] = ACTIONS(2866), + [anon_sym_PIPE_PIPE] = ACTIONS(2866), + [anon_sym_or] = ACTIONS(2866), + [sym_none] = ACTIONS(2866), + [sym_true] = ACTIONS(2866), + [sym_false] = ACTIONS(2866), + [sym_nil] = ACTIONS(2866), + [anon_sym_QMARK_DOT] = ACTIONS(2866), + [anon_sym_POUND_LBRACK] = ACTIONS(2866), + [anon_sym_if] = ACTIONS(2866), + [anon_sym_DOLLARif] = ACTIONS(2866), + [anon_sym_is] = ACTIONS(2866), + [anon_sym_BANGis] = ACTIONS(2866), + [anon_sym_in] = ACTIONS(2866), + [anon_sym_BANGin] = ACTIONS(2866), + [anon_sym_match] = ACTIONS(2866), + [anon_sym_select] = ACTIONS(2866), + [anon_sym_lock] = ACTIONS(2866), + [anon_sym_rlock] = ACTIONS(2866), + [anon_sym_unsafe] = ACTIONS(2866), + [anon_sym_sql] = ACTIONS(2866), + [sym_int_literal] = ACTIONS(2866), + [sym_float_literal] = ACTIONS(2866), + [sym_rune_literal] = ACTIONS(2866), + [anon_sym_AT] = ACTIONS(2866), + [anon_sym_shared] = ACTIONS(2866), + [anon_sym_map_LBRACK] = ACTIONS(2866), + [anon_sym_chan] = ACTIONS(2866), + [anon_sym_thread] = ACTIONS(2866), + [anon_sym_atomic] = ACTIONS(2866), + [sym___double_quote] = ACTIONS(2866), + [sym___single_quote] = ACTIONS(2866), + [sym___c_double_quote] = ACTIONS(2866), + [sym___c_single_quote] = ACTIONS(2866), + [sym___r_double_quote] = ACTIONS(2866), + [sym___r_single_quote] = ACTIONS(2866), }, - [1254] = { - [sym_identifier] = ACTIONS(2820), - [anon_sym_LF] = ACTIONS(2820), - [anon_sym_CR] = ACTIONS(2820), - [anon_sym_CR_LF] = ACTIONS(2820), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2820), - [anon_sym_DOT] = ACTIONS(2820), - [anon_sym_as] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2820), - [anon_sym_COMMA] = ACTIONS(2820), - [anon_sym_RBRACE] = ACTIONS(2820), - [anon_sym_LPAREN] = ACTIONS(2820), - [anon_sym_PIPE] = ACTIONS(2820), - [anon_sym_fn] = ACTIONS(2820), - [anon_sym_PLUS] = ACTIONS(2820), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_STAR] = ACTIONS(2820), - [anon_sym_SLASH] = ACTIONS(2820), - [anon_sym_PERCENT] = ACTIONS(2820), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_GT] = ACTIONS(2820), - [anon_sym_EQ_EQ] = ACTIONS(2820), - [anon_sym_BANG_EQ] = ACTIONS(2820), - [anon_sym_LT_EQ] = ACTIONS(2820), - [anon_sym_GT_EQ] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2820), - [anon_sym_mut] = ACTIONS(2820), - [anon_sym_PLUS_PLUS] = ACTIONS(2820), - [anon_sym_DASH_DASH] = ACTIONS(2820), - [anon_sym_QMARK] = ACTIONS(2820), - [anon_sym_BANG] = ACTIONS(2820), - [anon_sym_go] = ACTIONS(2820), - [anon_sym_spawn] = ACTIONS(2820), - [anon_sym_json_DOTdecode] = ACTIONS(2820), - [anon_sym_LBRACK2] = ACTIONS(2820), - [anon_sym_TILDE] = ACTIONS(2820), - [anon_sym_CARET] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2820), - [anon_sym_LT_DASH] = ACTIONS(2820), - [anon_sym_LT_LT] = ACTIONS(2820), - [anon_sym_GT_GT] = ACTIONS(2820), - [anon_sym_GT_GT_GT] = ACTIONS(2820), - [anon_sym_AMP_CARET] = ACTIONS(2820), - [anon_sym_AMP_AMP] = ACTIONS(2820), - [anon_sym_PIPE_PIPE] = ACTIONS(2820), - [anon_sym_or] = ACTIONS(2820), - [sym_none] = ACTIONS(2820), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [sym_nil] = ACTIONS(2820), - [anon_sym_QMARK_DOT] = ACTIONS(2820), - [anon_sym_POUND_LBRACK] = ACTIONS(2820), - [anon_sym_if] = ACTIONS(2820), - [anon_sym_DOLLARif] = ACTIONS(2820), - [anon_sym_is] = ACTIONS(2820), - [anon_sym_BANGis] = ACTIONS(2820), - [anon_sym_in] = ACTIONS(2820), - [anon_sym_BANGin] = ACTIONS(2820), - [anon_sym_match] = ACTIONS(2820), - [anon_sym_select] = ACTIONS(2820), - [anon_sym_lock] = ACTIONS(2820), - [anon_sym_rlock] = ACTIONS(2820), - [anon_sym_unsafe] = ACTIONS(2820), - [anon_sym_sql] = ACTIONS(2820), - [sym_int_literal] = ACTIONS(2820), - [sym_float_literal] = ACTIONS(2820), - [sym_rune_literal] = ACTIONS(2820), - [anon_sym_AT] = ACTIONS(2820), - [anon_sym_shared] = ACTIONS(2820), - [anon_sym_map_LBRACK] = ACTIONS(2820), - [anon_sym_chan] = ACTIONS(2820), - [anon_sym_thread] = ACTIONS(2820), - [anon_sym_atomic] = ACTIONS(2820), - [sym___double_quote] = ACTIONS(2820), - [sym___single_quote] = ACTIONS(2820), - [sym___c_double_quote] = ACTIONS(2820), - [sym___c_single_quote] = ACTIONS(2820), - [sym___r_double_quote] = ACTIONS(2820), - [sym___r_single_quote] = ACTIONS(2820), + [1223] = { + [sym_identifier] = ACTIONS(2878), + [anon_sym_LF] = ACTIONS(2878), + [anon_sym_CR] = ACTIONS(2878), + [anon_sym_CR_LF] = ACTIONS(2878), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(2878), + [anon_sym_as] = ACTIONS(2878), + [anon_sym_LBRACE] = ACTIONS(2878), + [anon_sym_COMMA] = ACTIONS(2878), + [anon_sym_RBRACE] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2878), + [anon_sym_PIPE] = ACTIONS(2878), + [anon_sym_fn] = ACTIONS(2878), + [anon_sym_PLUS] = ACTIONS(2878), + [anon_sym_DASH] = ACTIONS(2878), + [anon_sym_STAR] = ACTIONS(2878), + [anon_sym_SLASH] = ACTIONS(2878), + [anon_sym_PERCENT] = ACTIONS(2878), + [anon_sym_LT] = ACTIONS(2878), + [anon_sym_GT] = ACTIONS(2878), + [anon_sym_EQ_EQ] = ACTIONS(2878), + [anon_sym_BANG_EQ] = ACTIONS(2878), + [anon_sym_LT_EQ] = ACTIONS(2878), + [anon_sym_GT_EQ] = ACTIONS(2878), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_struct] = ACTIONS(2878), + [anon_sym_mut] = ACTIONS(2878), + [anon_sym_PLUS_PLUS] = ACTIONS(2878), + [anon_sym_DASH_DASH] = ACTIONS(2878), + [anon_sym_QMARK] = ACTIONS(2878), + [anon_sym_BANG] = ACTIONS(2878), + [anon_sym_go] = ACTIONS(2878), + [anon_sym_spawn] = ACTIONS(2878), + [anon_sym_json_DOTdecode] = ACTIONS(2878), + [anon_sym_LBRACK2] = ACTIONS(2878), + [anon_sym_TILDE] = ACTIONS(2878), + [anon_sym_CARET] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2878), + [anon_sym_LT_DASH] = ACTIONS(2878), + [anon_sym_LT_LT] = ACTIONS(2878), + [anon_sym_GT_GT] = ACTIONS(2878), + [anon_sym_GT_GT_GT] = ACTIONS(2878), + [anon_sym_AMP_CARET] = ACTIONS(2878), + [anon_sym_AMP_AMP] = ACTIONS(2878), + [anon_sym_PIPE_PIPE] = ACTIONS(2878), + [anon_sym_or] = ACTIONS(2878), + [sym_none] = ACTIONS(2878), + [sym_true] = ACTIONS(2878), + [sym_false] = ACTIONS(2878), + [sym_nil] = ACTIONS(2878), + [anon_sym_QMARK_DOT] = ACTIONS(2878), + [anon_sym_POUND_LBRACK] = ACTIONS(2878), + [anon_sym_if] = ACTIONS(2878), + [anon_sym_DOLLARif] = ACTIONS(2878), + [anon_sym_is] = ACTIONS(2878), + [anon_sym_BANGis] = ACTIONS(2878), + [anon_sym_in] = ACTIONS(2878), + [anon_sym_BANGin] = ACTIONS(2878), + [anon_sym_match] = ACTIONS(2878), + [anon_sym_select] = ACTIONS(2878), + [anon_sym_lock] = ACTIONS(2878), + [anon_sym_rlock] = ACTIONS(2878), + [anon_sym_unsafe] = ACTIONS(2878), + [anon_sym_sql] = ACTIONS(2878), + [sym_int_literal] = ACTIONS(2878), + [sym_float_literal] = ACTIONS(2878), + [sym_rune_literal] = ACTIONS(2878), + [anon_sym_AT] = ACTIONS(2878), + [anon_sym_shared] = ACTIONS(2878), + [anon_sym_map_LBRACK] = ACTIONS(2878), + [anon_sym_chan] = ACTIONS(2878), + [anon_sym_thread] = ACTIONS(2878), + [anon_sym_atomic] = ACTIONS(2878), + [sym___double_quote] = ACTIONS(2878), + [sym___single_quote] = ACTIONS(2878), + [sym___c_double_quote] = ACTIONS(2878), + [sym___c_single_quote] = ACTIONS(2878), + [sym___r_double_quote] = ACTIONS(2878), + [sym___r_single_quote] = ACTIONS(2878), }, - [1255] = { - [sym_identifier] = ACTIONS(2796), - [anon_sym_LF] = ACTIONS(2796), - [anon_sym_CR] = ACTIONS(2796), - [anon_sym_CR_LF] = ACTIONS(2796), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2796), - [anon_sym_DOT] = ACTIONS(2796), - [anon_sym_as] = ACTIONS(2796), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_COMMA] = ACTIONS(2796), - [anon_sym_RBRACE] = ACTIONS(2796), - [anon_sym_LPAREN] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(2796), - [anon_sym_fn] = ACTIONS(2796), - [anon_sym_PLUS] = ACTIONS(2796), - [anon_sym_DASH] = ACTIONS(2796), - [anon_sym_STAR] = ACTIONS(2796), - [anon_sym_SLASH] = ACTIONS(2796), - [anon_sym_PERCENT] = ACTIONS(2796), - [anon_sym_LT] = ACTIONS(2796), - [anon_sym_GT] = ACTIONS(2796), - [anon_sym_EQ_EQ] = ACTIONS(2796), - [anon_sym_BANG_EQ] = ACTIONS(2796), - [anon_sym_LT_EQ] = ACTIONS(2796), - [anon_sym_GT_EQ] = ACTIONS(2796), - [anon_sym_LBRACK] = ACTIONS(2794), - [anon_sym_struct] = ACTIONS(2796), - [anon_sym_mut] = ACTIONS(2796), - [anon_sym_PLUS_PLUS] = ACTIONS(2796), - [anon_sym_DASH_DASH] = ACTIONS(2796), - [anon_sym_QMARK] = ACTIONS(2796), - [anon_sym_BANG] = ACTIONS(2796), - [anon_sym_go] = ACTIONS(2796), - [anon_sym_spawn] = ACTIONS(2796), - [anon_sym_json_DOTdecode] = ACTIONS(2796), - [anon_sym_LBRACK2] = ACTIONS(2796), - [anon_sym_TILDE] = ACTIONS(2796), - [anon_sym_CARET] = ACTIONS(2796), - [anon_sym_AMP] = ACTIONS(2796), - [anon_sym_LT_DASH] = ACTIONS(2796), - [anon_sym_LT_LT] = ACTIONS(2796), - [anon_sym_GT_GT] = ACTIONS(2796), - [anon_sym_GT_GT_GT] = ACTIONS(2796), - [anon_sym_AMP_CARET] = ACTIONS(2796), - [anon_sym_AMP_AMP] = ACTIONS(2796), - [anon_sym_PIPE_PIPE] = ACTIONS(2796), - [anon_sym_or] = ACTIONS(2796), - [sym_none] = ACTIONS(2796), - [sym_true] = ACTIONS(2796), - [sym_false] = ACTIONS(2796), - [sym_nil] = ACTIONS(2796), - [anon_sym_QMARK_DOT] = ACTIONS(2796), - [anon_sym_POUND_LBRACK] = ACTIONS(2796), - [anon_sym_if] = ACTIONS(2796), - [anon_sym_DOLLARif] = ACTIONS(2796), - [anon_sym_is] = ACTIONS(2796), - [anon_sym_BANGis] = ACTIONS(2796), - [anon_sym_in] = ACTIONS(2796), - [anon_sym_BANGin] = ACTIONS(2796), - [anon_sym_match] = ACTIONS(2796), - [anon_sym_select] = ACTIONS(2796), - [anon_sym_lock] = ACTIONS(2796), - [anon_sym_rlock] = ACTIONS(2796), - [anon_sym_unsafe] = ACTIONS(2796), - [anon_sym_sql] = ACTIONS(2796), - [sym_int_literal] = ACTIONS(2796), - [sym_float_literal] = ACTIONS(2796), - [sym_rune_literal] = ACTIONS(2796), - [anon_sym_AT] = ACTIONS(2796), - [anon_sym_shared] = ACTIONS(2796), - [anon_sym_map_LBRACK] = ACTIONS(2796), - [anon_sym_chan] = ACTIONS(2796), - [anon_sym_thread] = ACTIONS(2796), - [anon_sym_atomic] = ACTIONS(2796), - [sym___double_quote] = ACTIONS(2796), - [sym___single_quote] = ACTIONS(2796), - [sym___c_double_quote] = ACTIONS(2796), - [sym___c_single_quote] = ACTIONS(2796), - [sym___r_double_quote] = ACTIONS(2796), - [sym___r_single_quote] = ACTIONS(2796), + [1224] = { + [sym_identifier] = ACTIONS(3030), + [anon_sym_LF] = ACTIONS(3030), + [anon_sym_CR] = ACTIONS(3030), + [anon_sym_CR_LF] = ACTIONS(3030), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3030), + [sym___single_quote] = ACTIONS(3030), + [sym___c_double_quote] = ACTIONS(3030), + [sym___c_single_quote] = ACTIONS(3030), + [sym___r_double_quote] = ACTIONS(3030), + [sym___r_single_quote] = ACTIONS(3030), }, - [1256] = { - [sym_identifier] = ACTIONS(2812), - [anon_sym_LF] = ACTIONS(2812), - [anon_sym_CR] = ACTIONS(2812), - [anon_sym_CR_LF] = ACTIONS(2812), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_DOT] = ACTIONS(2812), - [anon_sym_as] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2812), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_RBRACE] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2812), - [anon_sym_PIPE] = ACTIONS(2812), - [anon_sym_fn] = ACTIONS(2812), - [anon_sym_PLUS] = ACTIONS(2812), - [anon_sym_DASH] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(2812), - [anon_sym_SLASH] = ACTIONS(2812), - [anon_sym_PERCENT] = ACTIONS(2812), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_GT] = ACTIONS(2812), - [anon_sym_EQ_EQ] = ACTIONS(2812), - [anon_sym_BANG_EQ] = ACTIONS(2812), - [anon_sym_LT_EQ] = ACTIONS(2812), - [anon_sym_GT_EQ] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_struct] = ACTIONS(2812), - [anon_sym_mut] = ACTIONS(2812), - [anon_sym_PLUS_PLUS] = ACTIONS(2812), - [anon_sym_DASH_DASH] = ACTIONS(2812), - [anon_sym_QMARK] = ACTIONS(2812), - [anon_sym_BANG] = ACTIONS(2812), - [anon_sym_go] = ACTIONS(2812), - [anon_sym_spawn] = ACTIONS(2812), - [anon_sym_json_DOTdecode] = ACTIONS(2812), - [anon_sym_LBRACK2] = ACTIONS(2812), - [anon_sym_TILDE] = ACTIONS(2812), - [anon_sym_CARET] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2812), - [anon_sym_LT_DASH] = ACTIONS(2812), - [anon_sym_LT_LT] = ACTIONS(2812), - [anon_sym_GT_GT] = ACTIONS(2812), - [anon_sym_GT_GT_GT] = ACTIONS(2812), - [anon_sym_AMP_CARET] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2812), - [anon_sym_PIPE_PIPE] = ACTIONS(2812), - [anon_sym_or] = ACTIONS(2812), - [sym_none] = ACTIONS(2812), - [sym_true] = ACTIONS(2812), - [sym_false] = ACTIONS(2812), - [sym_nil] = ACTIONS(2812), - [anon_sym_QMARK_DOT] = ACTIONS(2812), - [anon_sym_POUND_LBRACK] = ACTIONS(2812), - [anon_sym_if] = ACTIONS(2812), - [anon_sym_DOLLARif] = ACTIONS(2812), - [anon_sym_is] = ACTIONS(2812), - [anon_sym_BANGis] = ACTIONS(2812), - [anon_sym_in] = ACTIONS(2812), - [anon_sym_BANGin] = ACTIONS(2812), - [anon_sym_match] = ACTIONS(2812), - [anon_sym_select] = ACTIONS(2812), - [anon_sym_lock] = ACTIONS(2812), - [anon_sym_rlock] = ACTIONS(2812), - [anon_sym_unsafe] = ACTIONS(2812), - [anon_sym_sql] = ACTIONS(2812), - [sym_int_literal] = ACTIONS(2812), - [sym_float_literal] = ACTIONS(2812), - [sym_rune_literal] = ACTIONS(2812), - [anon_sym_AT] = ACTIONS(2812), - [anon_sym_shared] = ACTIONS(2812), - [anon_sym_map_LBRACK] = ACTIONS(2812), - [anon_sym_chan] = ACTIONS(2812), - [anon_sym_thread] = ACTIONS(2812), - [anon_sym_atomic] = ACTIONS(2812), - [sym___double_quote] = ACTIONS(2812), - [sym___single_quote] = ACTIONS(2812), - [sym___c_double_quote] = ACTIONS(2812), - [sym___c_single_quote] = ACTIONS(2812), - [sym___r_double_quote] = ACTIONS(2812), - [sym___r_single_quote] = ACTIONS(2812), + [1225] = { + [sym_identifier] = ACTIONS(3002), + [anon_sym_LF] = ACTIONS(3002), + [anon_sym_CR] = ACTIONS(3002), + [anon_sym_CR_LF] = ACTIONS(3002), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3002), + [anon_sym_DOT] = ACTIONS(3002), + [anon_sym_as] = ACTIONS(3002), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_COMMA] = ACTIONS(3002), + [anon_sym_RBRACE] = ACTIONS(3002), + [anon_sym_LPAREN] = ACTIONS(3002), + [anon_sym_PIPE] = ACTIONS(3002), + [anon_sym_fn] = ACTIONS(3002), + [anon_sym_PLUS] = ACTIONS(3002), + [anon_sym_DASH] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(3002), + [anon_sym_SLASH] = ACTIONS(3002), + [anon_sym_PERCENT] = ACTIONS(3002), + [anon_sym_LT] = ACTIONS(3002), + [anon_sym_GT] = ACTIONS(3002), + [anon_sym_EQ_EQ] = ACTIONS(3002), + [anon_sym_BANG_EQ] = ACTIONS(3002), + [anon_sym_LT_EQ] = ACTIONS(3002), + [anon_sym_GT_EQ] = ACTIONS(3002), + [anon_sym_LBRACK] = ACTIONS(3000), + [anon_sym_struct] = ACTIONS(3002), + [anon_sym_mut] = ACTIONS(3002), + [anon_sym_PLUS_PLUS] = ACTIONS(3002), + [anon_sym_DASH_DASH] = ACTIONS(3002), + [anon_sym_QMARK] = ACTIONS(3002), + [anon_sym_BANG] = ACTIONS(3002), + [anon_sym_go] = ACTIONS(3002), + [anon_sym_spawn] = ACTIONS(3002), + [anon_sym_json_DOTdecode] = ACTIONS(3002), + [anon_sym_LBRACK2] = ACTIONS(3002), + [anon_sym_TILDE] = ACTIONS(3002), + [anon_sym_CARET] = ACTIONS(3002), + [anon_sym_AMP] = ACTIONS(3002), + [anon_sym_LT_DASH] = ACTIONS(3002), + [anon_sym_LT_LT] = ACTIONS(3002), + [anon_sym_GT_GT] = ACTIONS(3002), + [anon_sym_GT_GT_GT] = ACTIONS(3002), + [anon_sym_AMP_CARET] = ACTIONS(3002), + [anon_sym_AMP_AMP] = ACTIONS(3002), + [anon_sym_PIPE_PIPE] = ACTIONS(3002), + [anon_sym_or] = ACTIONS(3002), + [sym_none] = ACTIONS(3002), + [sym_true] = ACTIONS(3002), + [sym_false] = ACTIONS(3002), + [sym_nil] = ACTIONS(3002), + [anon_sym_QMARK_DOT] = ACTIONS(3002), + [anon_sym_POUND_LBRACK] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3002), + [anon_sym_DOLLARif] = ACTIONS(3002), + [anon_sym_is] = ACTIONS(3002), + [anon_sym_BANGis] = ACTIONS(3002), + [anon_sym_in] = ACTIONS(3002), + [anon_sym_BANGin] = ACTIONS(3002), + [anon_sym_match] = ACTIONS(3002), + [anon_sym_select] = ACTIONS(3002), + [anon_sym_lock] = ACTIONS(3002), + [anon_sym_rlock] = ACTIONS(3002), + [anon_sym_unsafe] = ACTIONS(3002), + [anon_sym_sql] = ACTIONS(3002), + [sym_int_literal] = ACTIONS(3002), + [sym_float_literal] = ACTIONS(3002), + [sym_rune_literal] = ACTIONS(3002), + [anon_sym_AT] = ACTIONS(3002), + [anon_sym_shared] = ACTIONS(3002), + [anon_sym_map_LBRACK] = ACTIONS(3002), + [anon_sym_chan] = ACTIONS(3002), + [anon_sym_thread] = ACTIONS(3002), + [anon_sym_atomic] = ACTIONS(3002), + [sym___double_quote] = ACTIONS(3002), + [sym___single_quote] = ACTIONS(3002), + [sym___c_double_quote] = ACTIONS(3002), + [sym___c_single_quote] = ACTIONS(3002), + [sym___r_double_quote] = ACTIONS(3002), + [sym___r_single_quote] = ACTIONS(3002), }, - [1257] = { - [sym_identifier] = ACTIONS(2808), - [anon_sym_LF] = ACTIONS(2808), - [anon_sym_CR] = ACTIONS(2808), - [anon_sym_CR_LF] = ACTIONS(2808), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2808), - [anon_sym_as] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_RBRACE] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2808), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_fn] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_SLASH] = ACTIONS(2808), - [anon_sym_PERCENT] = ACTIONS(2808), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_GT] = ACTIONS(2808), - [anon_sym_EQ_EQ] = ACTIONS(2808), - [anon_sym_BANG_EQ] = ACTIONS(2808), - [anon_sym_LT_EQ] = ACTIONS(2808), - [anon_sym_GT_EQ] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_struct] = ACTIONS(2808), - [anon_sym_mut] = ACTIONS(2808), - [anon_sym_PLUS_PLUS] = ACTIONS(2808), - [anon_sym_DASH_DASH] = ACTIONS(2808), - [anon_sym_QMARK] = ACTIONS(2808), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_go] = ACTIONS(2808), - [anon_sym_spawn] = ACTIONS(2808), - [anon_sym_json_DOTdecode] = ACTIONS(2808), - [anon_sym_LBRACK2] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_CARET] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2808), - [anon_sym_LT_DASH] = ACTIONS(2808), - [anon_sym_LT_LT] = ACTIONS(2808), - [anon_sym_GT_GT] = ACTIONS(2808), - [anon_sym_GT_GT_GT] = ACTIONS(2808), - [anon_sym_AMP_CARET] = ACTIONS(2808), - [anon_sym_AMP_AMP] = ACTIONS(2808), - [anon_sym_PIPE_PIPE] = ACTIONS(2808), - [anon_sym_or] = ACTIONS(2808), - [sym_none] = ACTIONS(2808), - [sym_true] = ACTIONS(2808), - [sym_false] = ACTIONS(2808), - [sym_nil] = ACTIONS(2808), - [anon_sym_QMARK_DOT] = ACTIONS(2808), - [anon_sym_POUND_LBRACK] = ACTIONS(2808), - [anon_sym_if] = ACTIONS(2808), - [anon_sym_DOLLARif] = ACTIONS(2808), - [anon_sym_is] = ACTIONS(2808), - [anon_sym_BANGis] = ACTIONS(2808), - [anon_sym_in] = ACTIONS(2808), - [anon_sym_BANGin] = ACTIONS(2808), - [anon_sym_match] = ACTIONS(2808), - [anon_sym_select] = ACTIONS(2808), - [anon_sym_lock] = ACTIONS(2808), - [anon_sym_rlock] = ACTIONS(2808), - [anon_sym_unsafe] = ACTIONS(2808), - [anon_sym_sql] = ACTIONS(2808), - [sym_int_literal] = ACTIONS(2808), - [sym_float_literal] = ACTIONS(2808), - [sym_rune_literal] = ACTIONS(2808), - [anon_sym_AT] = ACTIONS(2808), - [anon_sym_shared] = ACTIONS(2808), - [anon_sym_map_LBRACK] = ACTIONS(2808), - [anon_sym_chan] = ACTIONS(2808), - [anon_sym_thread] = ACTIONS(2808), - [anon_sym_atomic] = ACTIONS(2808), - [sym___double_quote] = ACTIONS(2808), - [sym___single_quote] = ACTIONS(2808), - [sym___c_double_quote] = ACTIONS(2808), - [sym___c_single_quote] = ACTIONS(2808), - [sym___r_double_quote] = ACTIONS(2808), - [sym___r_single_quote] = ACTIONS(2808), + [1226] = { + [sym_identifier] = ACTIONS(2874), + [anon_sym_LF] = ACTIONS(2874), + [anon_sym_CR] = ACTIONS(2874), + [anon_sym_CR_LF] = ACTIONS(2874), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2874), + [anon_sym_DOT] = ACTIONS(2874), + [anon_sym_as] = ACTIONS(2874), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_COMMA] = ACTIONS(2874), + [anon_sym_RBRACE] = ACTIONS(2874), + [anon_sym_LPAREN] = ACTIONS(2874), + [anon_sym_PIPE] = ACTIONS(2874), + [anon_sym_fn] = ACTIONS(2874), + [anon_sym_PLUS] = ACTIONS(2874), + [anon_sym_DASH] = ACTIONS(2874), + [anon_sym_STAR] = ACTIONS(2874), + [anon_sym_SLASH] = ACTIONS(2874), + [anon_sym_PERCENT] = ACTIONS(2874), + [anon_sym_LT] = ACTIONS(2874), + [anon_sym_GT] = ACTIONS(2874), + [anon_sym_EQ_EQ] = ACTIONS(2874), + [anon_sym_BANG_EQ] = ACTIONS(2874), + [anon_sym_LT_EQ] = ACTIONS(2874), + [anon_sym_GT_EQ] = ACTIONS(2874), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2874), + [anon_sym_mut] = ACTIONS(2874), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [anon_sym_QMARK] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_go] = ACTIONS(2874), + [anon_sym_spawn] = ACTIONS(2874), + [anon_sym_json_DOTdecode] = ACTIONS(2874), + [anon_sym_LBRACK2] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_CARET] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_LT_DASH] = ACTIONS(2874), + [anon_sym_LT_LT] = ACTIONS(2874), + [anon_sym_GT_GT] = ACTIONS(2874), + [anon_sym_GT_GT_GT] = ACTIONS(2874), + [anon_sym_AMP_CARET] = ACTIONS(2874), + [anon_sym_AMP_AMP] = ACTIONS(2874), + [anon_sym_PIPE_PIPE] = ACTIONS(2874), + [anon_sym_or] = ACTIONS(2874), + [sym_none] = ACTIONS(2874), + [sym_true] = ACTIONS(2874), + [sym_false] = ACTIONS(2874), + [sym_nil] = ACTIONS(2874), + [anon_sym_QMARK_DOT] = ACTIONS(2874), + [anon_sym_POUND_LBRACK] = ACTIONS(2874), + [anon_sym_if] = ACTIONS(2874), + [anon_sym_DOLLARif] = ACTIONS(2874), + [anon_sym_is] = ACTIONS(2874), + [anon_sym_BANGis] = ACTIONS(2874), + [anon_sym_in] = ACTIONS(2874), + [anon_sym_BANGin] = ACTIONS(2874), + [anon_sym_match] = ACTIONS(2874), + [anon_sym_select] = ACTIONS(2874), + [anon_sym_lock] = ACTIONS(2874), + [anon_sym_rlock] = ACTIONS(2874), + [anon_sym_unsafe] = ACTIONS(2874), + [anon_sym_sql] = ACTIONS(2874), + [sym_int_literal] = ACTIONS(2874), + [sym_float_literal] = ACTIONS(2874), + [sym_rune_literal] = ACTIONS(2874), + [anon_sym_AT] = ACTIONS(2874), + [anon_sym_shared] = ACTIONS(2874), + [anon_sym_map_LBRACK] = ACTIONS(2874), + [anon_sym_chan] = ACTIONS(2874), + [anon_sym_thread] = ACTIONS(2874), + [anon_sym_atomic] = ACTIONS(2874), + [sym___double_quote] = ACTIONS(2874), + [sym___single_quote] = ACTIONS(2874), + [sym___c_double_quote] = ACTIONS(2874), + [sym___c_single_quote] = ACTIONS(2874), + [sym___r_double_quote] = ACTIONS(2874), + [sym___r_single_quote] = ACTIONS(2874), }, - [1258] = { - [sym_identifier] = ACTIONS(3177), - [anon_sym_LF] = ACTIONS(3177), - [anon_sym_CR] = ACTIONS(3177), - [anon_sym_CR_LF] = ACTIONS(3177), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3177), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_as] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3177), - [anon_sym_RBRACE] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym_PIPE] = ACTIONS(3177), - [anon_sym_fn] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3177), - [anon_sym_SLASH] = ACTIONS(3177), - [anon_sym_PERCENT] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3177), - [anon_sym_EQ_EQ] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_LT_EQ] = ACTIONS(3177), - [anon_sym_GT_EQ] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3175), - [anon_sym_struct] = ACTIONS(3177), - [anon_sym_mut] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_DASH_DASH] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_go] = ACTIONS(3177), - [anon_sym_spawn] = ACTIONS(3177), - [anon_sym_json_DOTdecode] = ACTIONS(3177), - [anon_sym_LBRACK2] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_CARET] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LT_DASH] = ACTIONS(3177), - [anon_sym_LT_LT] = ACTIONS(3177), - [anon_sym_GT_GT] = ACTIONS(3177), - [anon_sym_GT_GT_GT] = ACTIONS(3177), - [anon_sym_AMP_CARET] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_PIPE_PIPE] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [sym_none] = ACTIONS(3177), - [sym_true] = ACTIONS(3177), - [sym_false] = ACTIONS(3177), - [sym_nil] = ACTIONS(3177), - [anon_sym_QMARK_DOT] = ACTIONS(3177), - [anon_sym_POUND_LBRACK] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_DOLLARif] = ACTIONS(3177), - [anon_sym_is] = ACTIONS(3177), - [anon_sym_BANGis] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_BANGin] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_select] = ACTIONS(3177), - [anon_sym_lock] = ACTIONS(3177), - [anon_sym_rlock] = ACTIONS(3177), - [anon_sym_unsafe] = ACTIONS(3177), - [anon_sym_sql] = ACTIONS(3177), - [sym_int_literal] = ACTIONS(3177), - [sym_float_literal] = ACTIONS(3177), - [sym_rune_literal] = ACTIONS(3177), - [anon_sym_AT] = ACTIONS(3177), - [anon_sym_shared] = ACTIONS(3177), - [anon_sym_map_LBRACK] = ACTIONS(3177), - [anon_sym_chan] = ACTIONS(3177), - [anon_sym_thread] = ACTIONS(3177), - [anon_sym_atomic] = ACTIONS(3177), - [sym___double_quote] = ACTIONS(3177), - [sym___single_quote] = ACTIONS(3177), - [sym___c_double_quote] = ACTIONS(3177), - [sym___c_single_quote] = ACTIONS(3177), - [sym___r_double_quote] = ACTIONS(3177), - [sym___r_single_quote] = ACTIONS(3177), + [1227] = { + [sym_identifier] = ACTIONS(2882), + [anon_sym_LF] = ACTIONS(2882), + [anon_sym_CR] = ACTIONS(2882), + [anon_sym_CR_LF] = ACTIONS(2882), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2882), + [anon_sym_DOT] = ACTIONS(2882), + [anon_sym_as] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2882), + [anon_sym_COMMA] = ACTIONS(2882), + [anon_sym_RBRACE] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_PIPE] = ACTIONS(2882), + [anon_sym_fn] = ACTIONS(2882), + [anon_sym_PLUS] = ACTIONS(2882), + [anon_sym_DASH] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(2882), + [anon_sym_SLASH] = ACTIONS(2882), + [anon_sym_PERCENT] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_GT] = ACTIONS(2882), + [anon_sym_EQ_EQ] = ACTIONS(2882), + [anon_sym_BANG_EQ] = ACTIONS(2882), + [anon_sym_LT_EQ] = ACTIONS(2882), + [anon_sym_GT_EQ] = ACTIONS(2882), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_struct] = ACTIONS(2882), + [anon_sym_mut] = ACTIONS(2882), + [anon_sym_PLUS_PLUS] = ACTIONS(2882), + [anon_sym_DASH_DASH] = ACTIONS(2882), + [anon_sym_QMARK] = ACTIONS(2882), + [anon_sym_BANG] = ACTIONS(2882), + [anon_sym_go] = ACTIONS(2882), + [anon_sym_spawn] = ACTIONS(2882), + [anon_sym_json_DOTdecode] = ACTIONS(2882), + [anon_sym_LBRACK2] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2882), + [anon_sym_CARET] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2882), + [anon_sym_LT_DASH] = ACTIONS(2882), + [anon_sym_LT_LT] = ACTIONS(2882), + [anon_sym_GT_GT] = ACTIONS(2882), + [anon_sym_GT_GT_GT] = ACTIONS(2882), + [anon_sym_AMP_CARET] = ACTIONS(2882), + [anon_sym_AMP_AMP] = ACTIONS(2882), + [anon_sym_PIPE_PIPE] = ACTIONS(2882), + [anon_sym_or] = ACTIONS(2882), + [sym_none] = ACTIONS(2882), + [sym_true] = ACTIONS(2882), + [sym_false] = ACTIONS(2882), + [sym_nil] = ACTIONS(2882), + [anon_sym_QMARK_DOT] = ACTIONS(2882), + [anon_sym_POUND_LBRACK] = ACTIONS(2882), + [anon_sym_if] = ACTIONS(2882), + [anon_sym_DOLLARif] = ACTIONS(2882), + [anon_sym_is] = ACTIONS(2882), + [anon_sym_BANGis] = ACTIONS(2882), + [anon_sym_in] = ACTIONS(2882), + [anon_sym_BANGin] = ACTIONS(2882), + [anon_sym_match] = ACTIONS(2882), + [anon_sym_select] = ACTIONS(2882), + [anon_sym_lock] = ACTIONS(2882), + [anon_sym_rlock] = ACTIONS(2882), + [anon_sym_unsafe] = ACTIONS(2882), + [anon_sym_sql] = ACTIONS(2882), + [sym_int_literal] = ACTIONS(2882), + [sym_float_literal] = ACTIONS(2882), + [sym_rune_literal] = ACTIONS(2882), + [anon_sym_AT] = ACTIONS(2882), + [anon_sym_shared] = ACTIONS(2882), + [anon_sym_map_LBRACK] = ACTIONS(2882), + [anon_sym_chan] = ACTIONS(2882), + [anon_sym_thread] = ACTIONS(2882), + [anon_sym_atomic] = ACTIONS(2882), + [sym___double_quote] = ACTIONS(2882), + [sym___single_quote] = ACTIONS(2882), + [sym___c_double_quote] = ACTIONS(2882), + [sym___c_single_quote] = ACTIONS(2882), + [sym___r_double_quote] = ACTIONS(2882), + [sym___r_single_quote] = ACTIONS(2882), }, - [1259] = { - [sym_identifier] = ACTIONS(2860), - [anon_sym_LF] = ACTIONS(2860), - [anon_sym_CR] = ACTIONS(2860), - [anon_sym_CR_LF] = ACTIONS(2860), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2860), - [anon_sym_DOT] = ACTIONS(2860), - [anon_sym_as] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2860), - [anon_sym_COMMA] = ACTIONS(2860), - [anon_sym_RBRACE] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(2860), - [anon_sym_PIPE] = ACTIONS(2860), - [anon_sym_fn] = ACTIONS(2860), - [anon_sym_PLUS] = ACTIONS(2860), - [anon_sym_DASH] = ACTIONS(2860), - [anon_sym_STAR] = ACTIONS(2860), - [anon_sym_SLASH] = ACTIONS(2860), - [anon_sym_PERCENT] = ACTIONS(2860), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_GT] = ACTIONS(2860), - [anon_sym_EQ_EQ] = ACTIONS(2860), - [anon_sym_BANG_EQ] = ACTIONS(2860), - [anon_sym_LT_EQ] = ACTIONS(2860), - [anon_sym_GT_EQ] = ACTIONS(2860), - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_struct] = ACTIONS(2860), - [anon_sym_mut] = ACTIONS(2860), - [anon_sym_PLUS_PLUS] = ACTIONS(2860), - [anon_sym_DASH_DASH] = ACTIONS(2860), - [anon_sym_QMARK] = ACTIONS(2860), - [anon_sym_BANG] = ACTIONS(2860), - [anon_sym_go] = ACTIONS(2860), - [anon_sym_spawn] = ACTIONS(2860), - [anon_sym_json_DOTdecode] = ACTIONS(2860), - [anon_sym_LBRACK2] = ACTIONS(2860), - [anon_sym_TILDE] = ACTIONS(2860), - [anon_sym_CARET] = ACTIONS(2860), - [anon_sym_AMP] = ACTIONS(2860), - [anon_sym_LT_DASH] = ACTIONS(2860), - [anon_sym_LT_LT] = ACTIONS(2860), - [anon_sym_GT_GT] = ACTIONS(2860), - [anon_sym_GT_GT_GT] = ACTIONS(2860), - [anon_sym_AMP_CARET] = ACTIONS(2860), - [anon_sym_AMP_AMP] = ACTIONS(2860), - [anon_sym_PIPE_PIPE] = ACTIONS(2860), - [anon_sym_or] = ACTIONS(2860), - [sym_none] = ACTIONS(2860), - [sym_true] = ACTIONS(2860), - [sym_false] = ACTIONS(2860), - [sym_nil] = ACTIONS(2860), - [anon_sym_QMARK_DOT] = ACTIONS(2860), - [anon_sym_POUND_LBRACK] = ACTIONS(2860), - [anon_sym_if] = ACTIONS(2860), - [anon_sym_DOLLARif] = ACTIONS(2860), - [anon_sym_is] = ACTIONS(2860), - [anon_sym_BANGis] = ACTIONS(2860), - [anon_sym_in] = ACTIONS(2860), - [anon_sym_BANGin] = ACTIONS(2860), - [anon_sym_match] = ACTIONS(2860), - [anon_sym_select] = ACTIONS(2860), - [anon_sym_lock] = ACTIONS(2860), - [anon_sym_rlock] = ACTIONS(2860), - [anon_sym_unsafe] = ACTIONS(2860), - [anon_sym_sql] = ACTIONS(2860), - [sym_int_literal] = ACTIONS(2860), - [sym_float_literal] = ACTIONS(2860), - [sym_rune_literal] = ACTIONS(2860), - [anon_sym_AT] = ACTIONS(2860), - [anon_sym_shared] = ACTIONS(2860), - [anon_sym_map_LBRACK] = ACTIONS(2860), - [anon_sym_chan] = ACTIONS(2860), - [anon_sym_thread] = ACTIONS(2860), - [anon_sym_atomic] = ACTIONS(2860), - [sym___double_quote] = ACTIONS(2860), - [sym___single_quote] = ACTIONS(2860), - [sym___c_double_quote] = ACTIONS(2860), - [sym___c_single_quote] = ACTIONS(2860), - [sym___r_double_quote] = ACTIONS(2860), - [sym___r_single_quote] = ACTIONS(2860), + [1228] = { + [sym_identifier] = ACTIONS(2886), + [anon_sym_LF] = ACTIONS(2886), + [anon_sym_CR] = ACTIONS(2886), + [anon_sym_CR_LF] = ACTIONS(2886), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2886), + [anon_sym_DOT] = ACTIONS(2886), + [anon_sym_as] = ACTIONS(2886), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_COMMA] = ACTIONS(2886), + [anon_sym_RBRACE] = ACTIONS(2886), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_PIPE] = ACTIONS(2886), + [anon_sym_fn] = ACTIONS(2886), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(2886), + [anon_sym_SLASH] = ACTIONS(2886), + [anon_sym_PERCENT] = ACTIONS(2886), + [anon_sym_LT] = ACTIONS(2886), + [anon_sym_GT] = ACTIONS(2886), + [anon_sym_EQ_EQ] = ACTIONS(2886), + [anon_sym_BANG_EQ] = ACTIONS(2886), + [anon_sym_LT_EQ] = ACTIONS(2886), + [anon_sym_GT_EQ] = ACTIONS(2886), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_struct] = ACTIONS(2886), + [anon_sym_mut] = ACTIONS(2886), + [anon_sym_PLUS_PLUS] = ACTIONS(2886), + [anon_sym_DASH_DASH] = ACTIONS(2886), + [anon_sym_QMARK] = ACTIONS(2886), + [anon_sym_BANG] = ACTIONS(2886), + [anon_sym_go] = ACTIONS(2886), + [anon_sym_spawn] = ACTIONS(2886), + [anon_sym_json_DOTdecode] = ACTIONS(2886), + [anon_sym_LBRACK2] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2886), + [anon_sym_CARET] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_LT_DASH] = ACTIONS(2886), + [anon_sym_LT_LT] = ACTIONS(2886), + [anon_sym_GT_GT] = ACTIONS(2886), + [anon_sym_GT_GT_GT] = ACTIONS(2886), + [anon_sym_AMP_CARET] = ACTIONS(2886), + [anon_sym_AMP_AMP] = ACTIONS(2886), + [anon_sym_PIPE_PIPE] = ACTIONS(2886), + [anon_sym_or] = ACTIONS(2886), + [sym_none] = ACTIONS(2886), + [sym_true] = ACTIONS(2886), + [sym_false] = ACTIONS(2886), + [sym_nil] = ACTIONS(2886), + [anon_sym_QMARK_DOT] = ACTIONS(2886), + [anon_sym_POUND_LBRACK] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_DOLLARif] = ACTIONS(2886), + [anon_sym_is] = ACTIONS(2886), + [anon_sym_BANGis] = ACTIONS(2886), + [anon_sym_in] = ACTIONS(2886), + [anon_sym_BANGin] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_select] = ACTIONS(2886), + [anon_sym_lock] = ACTIONS(2886), + [anon_sym_rlock] = ACTIONS(2886), + [anon_sym_unsafe] = ACTIONS(2886), + [anon_sym_sql] = ACTIONS(2886), + [sym_int_literal] = ACTIONS(2886), + [sym_float_literal] = ACTIONS(2886), + [sym_rune_literal] = ACTIONS(2886), + [anon_sym_AT] = ACTIONS(2886), + [anon_sym_shared] = ACTIONS(2886), + [anon_sym_map_LBRACK] = ACTIONS(2886), + [anon_sym_chan] = ACTIONS(2886), + [anon_sym_thread] = ACTIONS(2886), + [anon_sym_atomic] = ACTIONS(2886), + [sym___double_quote] = ACTIONS(2886), + [sym___single_quote] = ACTIONS(2886), + [sym___c_double_quote] = ACTIONS(2886), + [sym___c_single_quote] = ACTIONS(2886), + [sym___r_double_quote] = ACTIONS(2886), + [sym___r_single_quote] = ACTIONS(2886), }, - [1260] = { - [sym_identifier] = ACTIONS(3073), - [anon_sym_LF] = ACTIONS(3073), - [anon_sym_CR] = ACTIONS(3073), - [anon_sym_CR_LF] = ACTIONS(3073), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_as] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3073), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_PIPE] = ACTIONS(3073), - [anon_sym_fn] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_SLASH] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_struct] = ACTIONS(3073), - [anon_sym_mut] = ACTIONS(3073), - [anon_sym_PLUS_PLUS] = ACTIONS(3073), - [anon_sym_DASH_DASH] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_go] = ACTIONS(3073), - [anon_sym_spawn] = ACTIONS(3073), - [anon_sym_json_DOTdecode] = ACTIONS(3073), - [anon_sym_LBRACK2] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3073), - [anon_sym_CARET] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3073), - [anon_sym_LT_LT] = ACTIONS(3073), - [anon_sym_GT_GT] = ACTIONS(3073), - [anon_sym_GT_GT_GT] = ACTIONS(3073), - [anon_sym_AMP_CARET] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_or] = ACTIONS(3073), - [sym_none] = ACTIONS(3073), - [sym_true] = ACTIONS(3073), - [sym_false] = ACTIONS(3073), - [sym_nil] = ACTIONS(3073), - [anon_sym_QMARK_DOT] = ACTIONS(3073), - [anon_sym_POUND_LBRACK] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_DOLLARif] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3073), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_in] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_select] = ACTIONS(3073), - [anon_sym_lock] = ACTIONS(3073), - [anon_sym_rlock] = ACTIONS(3073), - [anon_sym_unsafe] = ACTIONS(3073), - [anon_sym_sql] = ACTIONS(3073), - [sym_int_literal] = ACTIONS(3073), - [sym_float_literal] = ACTIONS(3073), - [sym_rune_literal] = ACTIONS(3073), - [anon_sym_AT] = ACTIONS(3073), - [anon_sym_shared] = ACTIONS(3073), - [anon_sym_map_LBRACK] = ACTIONS(3073), - [anon_sym_chan] = ACTIONS(3073), - [anon_sym_thread] = ACTIONS(3073), - [anon_sym_atomic] = ACTIONS(3073), - [sym___double_quote] = ACTIONS(3073), - [sym___single_quote] = ACTIONS(3073), - [sym___c_double_quote] = ACTIONS(3073), - [sym___c_single_quote] = ACTIONS(3073), - [sym___r_double_quote] = ACTIONS(3073), - [sym___r_single_quote] = ACTIONS(3073), + [1229] = { + [sym_identifier] = ACTIONS(2894), + [anon_sym_LF] = ACTIONS(2894), + [anon_sym_CR] = ACTIONS(2894), + [anon_sym_CR_LF] = ACTIONS(2894), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2894), + [anon_sym_DOT] = ACTIONS(2894), + [anon_sym_as] = ACTIONS(2894), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_COMMA] = ACTIONS(2894), + [anon_sym_RBRACE] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(2894), + [anon_sym_PIPE] = ACTIONS(2894), + [anon_sym_fn] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2894), + [anon_sym_SLASH] = ACTIONS(2894), + [anon_sym_PERCENT] = ACTIONS(2894), + [anon_sym_LT] = ACTIONS(2894), + [anon_sym_GT] = ACTIONS(2894), + [anon_sym_EQ_EQ] = ACTIONS(2894), + [anon_sym_BANG_EQ] = ACTIONS(2894), + [anon_sym_LT_EQ] = ACTIONS(2894), + [anon_sym_GT_EQ] = ACTIONS(2894), + [anon_sym_LBRACK] = ACTIONS(2892), + [anon_sym_struct] = ACTIONS(2894), + [anon_sym_mut] = ACTIONS(2894), + [anon_sym_PLUS_PLUS] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2894), + [anon_sym_QMARK] = ACTIONS(2894), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_go] = ACTIONS(2894), + [anon_sym_spawn] = ACTIONS(2894), + [anon_sym_json_DOTdecode] = ACTIONS(2894), + [anon_sym_LBRACK2] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_CARET] = ACTIONS(2894), + [anon_sym_AMP] = ACTIONS(2894), + [anon_sym_LT_DASH] = ACTIONS(2894), + [anon_sym_LT_LT] = ACTIONS(2894), + [anon_sym_GT_GT] = ACTIONS(2894), + [anon_sym_GT_GT_GT] = ACTIONS(2894), + [anon_sym_AMP_CARET] = ACTIONS(2894), + [anon_sym_AMP_AMP] = ACTIONS(2894), + [anon_sym_PIPE_PIPE] = ACTIONS(2894), + [anon_sym_or] = ACTIONS(2894), + [sym_none] = ACTIONS(2894), + [sym_true] = ACTIONS(2894), + [sym_false] = ACTIONS(2894), + [sym_nil] = ACTIONS(2894), + [anon_sym_QMARK_DOT] = ACTIONS(2894), + [anon_sym_POUND_LBRACK] = ACTIONS(2894), + [anon_sym_if] = ACTIONS(2894), + [anon_sym_DOLLARif] = ACTIONS(2894), + [anon_sym_is] = ACTIONS(2894), + [anon_sym_BANGis] = ACTIONS(2894), + [anon_sym_in] = ACTIONS(2894), + [anon_sym_BANGin] = ACTIONS(2894), + [anon_sym_match] = ACTIONS(2894), + [anon_sym_select] = ACTIONS(2894), + [anon_sym_lock] = ACTIONS(2894), + [anon_sym_rlock] = ACTIONS(2894), + [anon_sym_unsafe] = ACTIONS(2894), + [anon_sym_sql] = ACTIONS(2894), + [sym_int_literal] = ACTIONS(2894), + [sym_float_literal] = ACTIONS(2894), + [sym_rune_literal] = ACTIONS(2894), + [anon_sym_AT] = ACTIONS(2894), + [anon_sym_shared] = ACTIONS(2894), + [anon_sym_map_LBRACK] = ACTIONS(2894), + [anon_sym_chan] = ACTIONS(2894), + [anon_sym_thread] = ACTIONS(2894), + [anon_sym_atomic] = ACTIONS(2894), + [sym___double_quote] = ACTIONS(2894), + [sym___single_quote] = ACTIONS(2894), + [sym___c_double_quote] = ACTIONS(2894), + [sym___c_single_quote] = ACTIONS(2894), + [sym___r_double_quote] = ACTIONS(2894), + [sym___r_single_quote] = ACTIONS(2894), }, - [1261] = { - [sym_identifier] = ACTIONS(3077), - [anon_sym_LF] = ACTIONS(3077), - [anon_sym_CR] = ACTIONS(3077), - [anon_sym_CR_LF] = ACTIONS(3077), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_DOT] = ACTIONS(3077), - [anon_sym_as] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(3077), - [anon_sym_COMMA] = ACTIONS(3077), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3077), - [anon_sym_PIPE] = ACTIONS(3077), - [anon_sym_fn] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3077), - [anon_sym_SLASH] = ACTIONS(3077), - [anon_sym_PERCENT] = ACTIONS(3077), - [anon_sym_LT] = ACTIONS(3077), - [anon_sym_GT] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3077), - [anon_sym_BANG_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_mut] = ACTIONS(3077), - [anon_sym_PLUS_PLUS] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3077), - [anon_sym_BANG] = ACTIONS(3077), - [anon_sym_go] = ACTIONS(3077), - [anon_sym_spawn] = ACTIONS(3077), - [anon_sym_json_DOTdecode] = ACTIONS(3077), - [anon_sym_LBRACK2] = ACTIONS(3077), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_CARET] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3077), - [anon_sym_LT_LT] = ACTIONS(3077), - [anon_sym_GT_GT] = ACTIONS(3077), - [anon_sym_GT_GT_GT] = ACTIONS(3077), - [anon_sym_AMP_CARET] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_or] = ACTIONS(3077), - [sym_none] = ACTIONS(3077), - [sym_true] = ACTIONS(3077), - [sym_false] = ACTIONS(3077), - [sym_nil] = ACTIONS(3077), - [anon_sym_QMARK_DOT] = ACTIONS(3077), - [anon_sym_POUND_LBRACK] = ACTIONS(3077), - [anon_sym_if] = ACTIONS(3077), - [anon_sym_DOLLARif] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3077), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_in] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_match] = ACTIONS(3077), - [anon_sym_select] = ACTIONS(3077), - [anon_sym_lock] = ACTIONS(3077), - [anon_sym_rlock] = ACTIONS(3077), - [anon_sym_unsafe] = ACTIONS(3077), - [anon_sym_sql] = ACTIONS(3077), - [sym_int_literal] = ACTIONS(3077), - [sym_float_literal] = ACTIONS(3077), - [sym_rune_literal] = ACTIONS(3077), - [anon_sym_AT] = ACTIONS(3077), - [anon_sym_shared] = ACTIONS(3077), - [anon_sym_map_LBRACK] = ACTIONS(3077), - [anon_sym_chan] = ACTIONS(3077), - [anon_sym_thread] = ACTIONS(3077), - [anon_sym_atomic] = ACTIONS(3077), - [sym___double_quote] = ACTIONS(3077), - [sym___single_quote] = ACTIONS(3077), - [sym___c_double_quote] = ACTIONS(3077), - [sym___c_single_quote] = ACTIONS(3077), - [sym___r_double_quote] = ACTIONS(3077), - [sym___r_single_quote] = ACTIONS(3077), + [1230] = { + [sym_identifier] = ACTIONS(2910), + [anon_sym_LF] = ACTIONS(2910), + [anon_sym_CR] = ACTIONS(2910), + [anon_sym_CR_LF] = ACTIONS(2910), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2910), + [anon_sym_DOT] = ACTIONS(2910), + [anon_sym_as] = ACTIONS(2910), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_COMMA] = ACTIONS(2910), + [anon_sym_RBRACE] = ACTIONS(2910), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_PIPE] = ACTIONS(2910), + [anon_sym_fn] = ACTIONS(2910), + [anon_sym_PLUS] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2910), + [anon_sym_SLASH] = ACTIONS(2910), + [anon_sym_PERCENT] = ACTIONS(2910), + [anon_sym_LT] = ACTIONS(2910), + [anon_sym_GT] = ACTIONS(2910), + [anon_sym_EQ_EQ] = ACTIONS(2910), + [anon_sym_BANG_EQ] = ACTIONS(2910), + [anon_sym_LT_EQ] = ACTIONS(2910), + [anon_sym_GT_EQ] = ACTIONS(2910), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_struct] = ACTIONS(2910), + [anon_sym_mut] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2910), + [anon_sym_DASH_DASH] = ACTIONS(2910), + [anon_sym_QMARK] = ACTIONS(2910), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_go] = ACTIONS(2910), + [anon_sym_spawn] = ACTIONS(2910), + [anon_sym_json_DOTdecode] = ACTIONS(2910), + [anon_sym_LBRACK2] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_CARET] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_LT_DASH] = ACTIONS(2910), + [anon_sym_LT_LT] = ACTIONS(2910), + [anon_sym_GT_GT] = ACTIONS(2910), + [anon_sym_GT_GT_GT] = ACTIONS(2910), + [anon_sym_AMP_CARET] = ACTIONS(2910), + [anon_sym_AMP_AMP] = ACTIONS(2910), + [anon_sym_PIPE_PIPE] = ACTIONS(2910), + [anon_sym_or] = ACTIONS(2910), + [sym_none] = ACTIONS(2910), + [sym_true] = ACTIONS(2910), + [sym_false] = ACTIONS(2910), + [sym_nil] = ACTIONS(2910), + [anon_sym_QMARK_DOT] = ACTIONS(2910), + [anon_sym_POUND_LBRACK] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_DOLLARif] = ACTIONS(2910), + [anon_sym_is] = ACTIONS(2910), + [anon_sym_BANGis] = ACTIONS(2910), + [anon_sym_in] = ACTIONS(2910), + [anon_sym_BANGin] = ACTIONS(2910), + [anon_sym_match] = ACTIONS(2910), + [anon_sym_select] = ACTIONS(2910), + [anon_sym_lock] = ACTIONS(2910), + [anon_sym_rlock] = ACTIONS(2910), + [anon_sym_unsafe] = ACTIONS(2910), + [anon_sym_sql] = ACTIONS(2910), + [sym_int_literal] = ACTIONS(2910), + [sym_float_literal] = ACTIONS(2910), + [sym_rune_literal] = ACTIONS(2910), + [anon_sym_AT] = ACTIONS(2910), + [anon_sym_shared] = ACTIONS(2910), + [anon_sym_map_LBRACK] = ACTIONS(2910), + [anon_sym_chan] = ACTIONS(2910), + [anon_sym_thread] = ACTIONS(2910), + [anon_sym_atomic] = ACTIONS(2910), + [sym___double_quote] = ACTIONS(2910), + [sym___single_quote] = ACTIONS(2910), + [sym___c_double_quote] = ACTIONS(2910), + [sym___c_single_quote] = ACTIONS(2910), + [sym___r_double_quote] = ACTIONS(2910), + [sym___r_single_quote] = ACTIONS(2910), }, - [1262] = { - [sym_identifier] = ACTIONS(3117), - [anon_sym_LF] = ACTIONS(3117), - [anon_sym_CR] = ACTIONS(3117), - [anon_sym_CR_LF] = ACTIONS(3117), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3117), - [anon_sym_DOT] = ACTIONS(3117), - [anon_sym_as] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_COMMA] = ACTIONS(3117), - [anon_sym_RBRACE] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3117), - [anon_sym_PIPE] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_SLASH] = ACTIONS(3117), - [anon_sym_PERCENT] = ACTIONS(3117), - [anon_sym_LT] = ACTIONS(3117), - [anon_sym_GT] = ACTIONS(3117), - [anon_sym_EQ_EQ] = ACTIONS(3117), - [anon_sym_BANG_EQ] = ACTIONS(3117), - [anon_sym_LT_EQ] = ACTIONS(3117), - [anon_sym_GT_EQ] = ACTIONS(3117), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_struct] = ACTIONS(3117), - [anon_sym_mut] = ACTIONS(3117), - [anon_sym_PLUS_PLUS] = ACTIONS(3117), - [anon_sym_DASH_DASH] = ACTIONS(3117), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3117), - [anon_sym_go] = ACTIONS(3117), - [anon_sym_spawn] = ACTIONS(3117), - [anon_sym_json_DOTdecode] = ACTIONS(3117), - [anon_sym_LBRACK2] = ACTIONS(3117), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_CARET] = ACTIONS(3117), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_LT_DASH] = ACTIONS(3117), - [anon_sym_LT_LT] = ACTIONS(3117), - [anon_sym_GT_GT] = ACTIONS(3117), - [anon_sym_GT_GT_GT] = ACTIONS(3117), - [anon_sym_AMP_CARET] = ACTIONS(3117), - [anon_sym_AMP_AMP] = ACTIONS(3117), - [anon_sym_PIPE_PIPE] = ACTIONS(3117), - [anon_sym_or] = ACTIONS(3117), - [sym_none] = ACTIONS(3117), - [sym_true] = ACTIONS(3117), - [sym_false] = ACTIONS(3117), - [sym_nil] = ACTIONS(3117), - [anon_sym_QMARK_DOT] = ACTIONS(3117), - [anon_sym_POUND_LBRACK] = ACTIONS(3117), - [anon_sym_if] = ACTIONS(3117), - [anon_sym_DOLLARif] = ACTIONS(3117), - [anon_sym_is] = ACTIONS(3117), - [anon_sym_BANGis] = ACTIONS(3117), - [anon_sym_in] = ACTIONS(3117), - [anon_sym_BANGin] = ACTIONS(3117), - [anon_sym_match] = ACTIONS(3117), - [anon_sym_select] = ACTIONS(3117), - [anon_sym_lock] = ACTIONS(3117), - [anon_sym_rlock] = ACTIONS(3117), - [anon_sym_unsafe] = ACTIONS(3117), - [anon_sym_sql] = ACTIONS(3117), - [sym_int_literal] = ACTIONS(3117), - [sym_float_literal] = ACTIONS(3117), - [sym_rune_literal] = ACTIONS(3117), - [anon_sym_AT] = ACTIONS(3117), - [anon_sym_shared] = ACTIONS(3117), - [anon_sym_map_LBRACK] = ACTIONS(3117), - [anon_sym_chan] = ACTIONS(3117), - [anon_sym_thread] = ACTIONS(3117), - [anon_sym_atomic] = ACTIONS(3117), - [sym___double_quote] = ACTIONS(3117), - [sym___single_quote] = ACTIONS(3117), - [sym___c_double_quote] = ACTIONS(3117), - [sym___c_single_quote] = ACTIONS(3117), - [sym___r_double_quote] = ACTIONS(3117), - [sym___r_single_quote] = ACTIONS(3117), + [1231] = { + [sym_identifier] = ACTIONS(2914), + [anon_sym_LF] = ACTIONS(2914), + [anon_sym_CR] = ACTIONS(2914), + [anon_sym_CR_LF] = ACTIONS(2914), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2914), + [anon_sym_DOT] = ACTIONS(2914), + [anon_sym_as] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2914), + [anon_sym_COMMA] = ACTIONS(2914), + [anon_sym_RBRACE] = ACTIONS(2914), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym_PIPE] = ACTIONS(2914), + [anon_sym_fn] = ACTIONS(2914), + [anon_sym_PLUS] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_SLASH] = ACTIONS(2914), + [anon_sym_PERCENT] = ACTIONS(2914), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_EQ_EQ] = ACTIONS(2914), + [anon_sym_BANG_EQ] = ACTIONS(2914), + [anon_sym_LT_EQ] = ACTIONS(2914), + [anon_sym_GT_EQ] = ACTIONS(2914), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_struct] = ACTIONS(2914), + [anon_sym_mut] = ACTIONS(2914), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_QMARK] = ACTIONS(2914), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_go] = ACTIONS(2914), + [anon_sym_spawn] = ACTIONS(2914), + [anon_sym_json_DOTdecode] = ACTIONS(2914), + [anon_sym_LBRACK2] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2914), + [anon_sym_CARET] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2914), + [anon_sym_LT_DASH] = ACTIONS(2914), + [anon_sym_LT_LT] = ACTIONS(2914), + [anon_sym_GT_GT] = ACTIONS(2914), + [anon_sym_GT_GT_GT] = ACTIONS(2914), + [anon_sym_AMP_CARET] = ACTIONS(2914), + [anon_sym_AMP_AMP] = ACTIONS(2914), + [anon_sym_PIPE_PIPE] = ACTIONS(2914), + [anon_sym_or] = ACTIONS(2914), + [sym_none] = ACTIONS(2914), + [sym_true] = ACTIONS(2914), + [sym_false] = ACTIONS(2914), + [sym_nil] = ACTIONS(2914), + [anon_sym_QMARK_DOT] = ACTIONS(2914), + [anon_sym_POUND_LBRACK] = ACTIONS(2914), + [anon_sym_if] = ACTIONS(2914), + [anon_sym_DOLLARif] = ACTIONS(2914), + [anon_sym_is] = ACTIONS(2914), + [anon_sym_BANGis] = ACTIONS(2914), + [anon_sym_in] = ACTIONS(2914), + [anon_sym_BANGin] = ACTIONS(2914), + [anon_sym_match] = ACTIONS(2914), + [anon_sym_select] = ACTIONS(2914), + [anon_sym_lock] = ACTIONS(2914), + [anon_sym_rlock] = ACTIONS(2914), + [anon_sym_unsafe] = ACTIONS(2914), + [anon_sym_sql] = ACTIONS(2914), + [sym_int_literal] = ACTIONS(2914), + [sym_float_literal] = ACTIONS(2914), + [sym_rune_literal] = ACTIONS(2914), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_shared] = ACTIONS(2914), + [anon_sym_map_LBRACK] = ACTIONS(2914), + [anon_sym_chan] = ACTIONS(2914), + [anon_sym_thread] = ACTIONS(2914), + [anon_sym_atomic] = ACTIONS(2914), + [sym___double_quote] = ACTIONS(2914), + [sym___single_quote] = ACTIONS(2914), + [sym___c_double_quote] = ACTIONS(2914), + [sym___c_single_quote] = ACTIONS(2914), + [sym___r_double_quote] = ACTIONS(2914), + [sym___r_single_quote] = ACTIONS(2914), }, - [1263] = { - [sym_identifier] = ACTIONS(3125), - [anon_sym_LF] = ACTIONS(3125), - [anon_sym_CR] = ACTIONS(3125), - [anon_sym_CR_LF] = ACTIONS(3125), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_DOT] = ACTIONS(3125), - [anon_sym_as] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3125), - [anon_sym_COMMA] = ACTIONS(3125), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_PIPE] = ACTIONS(3125), - [anon_sym_fn] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3125), - [anon_sym_SLASH] = ACTIONS(3125), - [anon_sym_PERCENT] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3125), - [anon_sym_GT] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_struct] = ACTIONS(3125), - [anon_sym_mut] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3125), - [anon_sym_DASH_DASH] = ACTIONS(3125), - [anon_sym_QMARK] = ACTIONS(3125), - [anon_sym_BANG] = ACTIONS(3125), - [anon_sym_go] = ACTIONS(3125), - [anon_sym_spawn] = ACTIONS(3125), - [anon_sym_json_DOTdecode] = ACTIONS(3125), - [anon_sym_LBRACK2] = ACTIONS(3125), - [anon_sym_TILDE] = ACTIONS(3125), - [anon_sym_CARET] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3125), - [anon_sym_LT_DASH] = ACTIONS(3125), - [anon_sym_LT_LT] = ACTIONS(3125), - [anon_sym_GT_GT] = ACTIONS(3125), - [anon_sym_GT_GT_GT] = ACTIONS(3125), - [anon_sym_AMP_CARET] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_or] = ACTIONS(3125), - [sym_none] = ACTIONS(3125), - [sym_true] = ACTIONS(3125), - [sym_false] = ACTIONS(3125), - [sym_nil] = ACTIONS(3125), - [anon_sym_QMARK_DOT] = ACTIONS(3125), - [anon_sym_POUND_LBRACK] = ACTIONS(3125), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_DOLLARif] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3125), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_in] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_match] = ACTIONS(3125), - [anon_sym_select] = ACTIONS(3125), - [anon_sym_lock] = ACTIONS(3125), - [anon_sym_rlock] = ACTIONS(3125), - [anon_sym_unsafe] = ACTIONS(3125), - [anon_sym_sql] = ACTIONS(3125), - [sym_int_literal] = ACTIONS(3125), - [sym_float_literal] = ACTIONS(3125), - [sym_rune_literal] = ACTIONS(3125), - [anon_sym_AT] = ACTIONS(3125), - [anon_sym_shared] = ACTIONS(3125), - [anon_sym_map_LBRACK] = ACTIONS(3125), - [anon_sym_chan] = ACTIONS(3125), - [anon_sym_thread] = ACTIONS(3125), - [anon_sym_atomic] = ACTIONS(3125), - [sym___double_quote] = ACTIONS(3125), - [sym___single_quote] = ACTIONS(3125), - [sym___c_double_quote] = ACTIONS(3125), - [sym___c_single_quote] = ACTIONS(3125), - [sym___r_double_quote] = ACTIONS(3125), - [sym___r_single_quote] = ACTIONS(3125), + [1232] = { + [sym_identifier] = ACTIONS(3175), + [anon_sym_LF] = ACTIONS(3175), + [anon_sym_CR] = ACTIONS(3175), + [anon_sym_CR_LF] = ACTIONS(3175), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3175), + [anon_sym_DOT] = ACTIONS(3175), + [anon_sym_as] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(3175), + [anon_sym_COMMA] = ACTIONS(3175), + [anon_sym_RBRACE] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_PIPE] = ACTIONS(3175), + [anon_sym_fn] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3175), + [anon_sym_SLASH] = ACTIONS(3175), + [anon_sym_PERCENT] = ACTIONS(3175), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_LT_EQ] = ACTIONS(3175), + [anon_sym_GT_EQ] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3173), + [anon_sym_struct] = ACTIONS(3175), + [anon_sym_mut] = ACTIONS(3175), + [anon_sym_PLUS_PLUS] = ACTIONS(3175), + [anon_sym_DASH_DASH] = ACTIONS(3175), + [anon_sym_QMARK] = ACTIONS(3175), + [anon_sym_BANG] = ACTIONS(3175), + [anon_sym_go] = ACTIONS(3175), + [anon_sym_spawn] = ACTIONS(3175), + [anon_sym_json_DOTdecode] = ACTIONS(3175), + [anon_sym_LBRACK2] = ACTIONS(3175), + [anon_sym_TILDE] = ACTIONS(3175), + [anon_sym_CARET] = ACTIONS(3175), + [anon_sym_AMP] = ACTIONS(3175), + [anon_sym_LT_DASH] = ACTIONS(3175), + [anon_sym_LT_LT] = ACTIONS(3175), + [anon_sym_GT_GT] = ACTIONS(3175), + [anon_sym_GT_GT_GT] = ACTIONS(3175), + [anon_sym_AMP_CARET] = ACTIONS(3175), + [anon_sym_AMP_AMP] = ACTIONS(3175), + [anon_sym_PIPE_PIPE] = ACTIONS(3175), + [anon_sym_or] = ACTIONS(3175), + [sym_none] = ACTIONS(3175), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_nil] = ACTIONS(3175), + [anon_sym_QMARK_DOT] = ACTIONS(3175), + [anon_sym_POUND_LBRACK] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_DOLLARif] = ACTIONS(3175), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3175), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_BANGin] = ACTIONS(3175), + [anon_sym_match] = ACTIONS(3175), + [anon_sym_select] = ACTIONS(3175), + [anon_sym_lock] = ACTIONS(3175), + [anon_sym_rlock] = ACTIONS(3175), + [anon_sym_unsafe] = ACTIONS(3175), + [anon_sym_sql] = ACTIONS(3175), + [sym_int_literal] = ACTIONS(3175), + [sym_float_literal] = ACTIONS(3175), + [sym_rune_literal] = ACTIONS(3175), + [anon_sym_AT] = ACTIONS(3175), + [anon_sym_shared] = ACTIONS(3175), + [anon_sym_map_LBRACK] = ACTIONS(3175), + [anon_sym_chan] = ACTIONS(3175), + [anon_sym_thread] = ACTIONS(3175), + [anon_sym_atomic] = ACTIONS(3175), + [sym___double_quote] = ACTIONS(3175), + [sym___single_quote] = ACTIONS(3175), + [sym___c_double_quote] = ACTIONS(3175), + [sym___c_single_quote] = ACTIONS(3175), + [sym___r_double_quote] = ACTIONS(3175), + [sym___r_single_quote] = ACTIONS(3175), }, - [1264] = { - [sym_identifier] = ACTIONS(3141), - [anon_sym_LF] = ACTIONS(3141), - [anon_sym_CR] = ACTIONS(3141), - [anon_sym_CR_LF] = ACTIONS(3141), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3141), - [anon_sym_DOT] = ACTIONS(3141), - [anon_sym_as] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_COMMA] = ACTIONS(3141), - [anon_sym_RBRACE] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_fn] = ACTIONS(3141), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(3141), - [anon_sym_PERCENT] = ACTIONS(3141), - [anon_sym_LT] = ACTIONS(3141), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_EQ_EQ] = ACTIONS(3141), - [anon_sym_BANG_EQ] = ACTIONS(3141), - [anon_sym_LT_EQ] = ACTIONS(3141), - [anon_sym_GT_EQ] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3141), - [anon_sym_mut] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_QMARK] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_go] = ACTIONS(3141), - [anon_sym_spawn] = ACTIONS(3141), - [anon_sym_json_DOTdecode] = ACTIONS(3141), - [anon_sym_LBRACK2] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_CARET] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_LT_DASH] = ACTIONS(3141), - [anon_sym_LT_LT] = ACTIONS(3141), - [anon_sym_GT_GT] = ACTIONS(3141), - [anon_sym_GT_GT_GT] = ACTIONS(3141), - [anon_sym_AMP_CARET] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3141), - [anon_sym_PIPE_PIPE] = ACTIONS(3141), - [anon_sym_or] = ACTIONS(3141), - [sym_none] = ACTIONS(3141), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_nil] = ACTIONS(3141), - [anon_sym_QMARK_DOT] = ACTIONS(3141), - [anon_sym_POUND_LBRACK] = ACTIONS(3141), - [anon_sym_if] = ACTIONS(3141), - [anon_sym_DOLLARif] = ACTIONS(3141), - [anon_sym_is] = ACTIONS(3141), - [anon_sym_BANGis] = ACTIONS(3141), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_BANGin] = ACTIONS(3141), - [anon_sym_match] = ACTIONS(3141), - [anon_sym_select] = ACTIONS(3141), - [anon_sym_lock] = ACTIONS(3141), - [anon_sym_rlock] = ACTIONS(3141), - [anon_sym_unsafe] = ACTIONS(3141), - [anon_sym_sql] = ACTIONS(3141), - [sym_int_literal] = ACTIONS(3141), - [sym_float_literal] = ACTIONS(3141), - [sym_rune_literal] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(3141), - [anon_sym_shared] = ACTIONS(3141), - [anon_sym_map_LBRACK] = ACTIONS(3141), - [anon_sym_chan] = ACTIONS(3141), - [anon_sym_thread] = ACTIONS(3141), - [anon_sym_atomic] = ACTIONS(3141), - [sym___double_quote] = ACTIONS(3141), - [sym___single_quote] = ACTIONS(3141), - [sym___c_double_quote] = ACTIONS(3141), - [sym___c_single_quote] = ACTIONS(3141), - [sym___r_double_quote] = ACTIONS(3141), - [sym___r_single_quote] = ACTIONS(3141), + [1233] = { + [sym_identifier] = ACTIONS(2926), + [anon_sym_LF] = ACTIONS(2926), + [anon_sym_CR] = ACTIONS(2926), + [anon_sym_CR_LF] = ACTIONS(2926), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2926), + [anon_sym_DOT] = ACTIONS(2926), + [anon_sym_as] = ACTIONS(2926), + [anon_sym_LBRACE] = ACTIONS(2926), + [anon_sym_COMMA] = ACTIONS(2926), + [anon_sym_RBRACE] = ACTIONS(2926), + [anon_sym_LPAREN] = ACTIONS(2926), + [anon_sym_PIPE] = ACTIONS(2926), + [anon_sym_fn] = ACTIONS(2926), + [anon_sym_PLUS] = ACTIONS(2926), + [anon_sym_DASH] = ACTIONS(2926), + [anon_sym_STAR] = ACTIONS(2926), + [anon_sym_SLASH] = ACTIONS(2926), + [anon_sym_PERCENT] = ACTIONS(2926), + [anon_sym_LT] = ACTIONS(2926), + [anon_sym_GT] = ACTIONS(2926), + [anon_sym_EQ_EQ] = ACTIONS(2926), + [anon_sym_BANG_EQ] = ACTIONS(2926), + [anon_sym_LT_EQ] = ACTIONS(2926), + [anon_sym_GT_EQ] = ACTIONS(2926), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_struct] = ACTIONS(2926), + [anon_sym_mut] = ACTIONS(2926), + [anon_sym_PLUS_PLUS] = ACTIONS(2926), + [anon_sym_DASH_DASH] = ACTIONS(2926), + [anon_sym_QMARK] = ACTIONS(2926), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_go] = ACTIONS(2926), + [anon_sym_spawn] = ACTIONS(2926), + [anon_sym_json_DOTdecode] = ACTIONS(2926), + [anon_sym_LBRACK2] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2926), + [anon_sym_CARET] = ACTIONS(2926), + [anon_sym_AMP] = ACTIONS(2926), + [anon_sym_LT_DASH] = ACTIONS(2926), + [anon_sym_LT_LT] = ACTIONS(2926), + [anon_sym_GT_GT] = ACTIONS(2926), + [anon_sym_GT_GT_GT] = ACTIONS(2926), + [anon_sym_AMP_CARET] = ACTIONS(2926), + [anon_sym_AMP_AMP] = ACTIONS(2926), + [anon_sym_PIPE_PIPE] = ACTIONS(2926), + [anon_sym_or] = ACTIONS(2926), + [sym_none] = ACTIONS(2926), + [sym_true] = ACTIONS(2926), + [sym_false] = ACTIONS(2926), + [sym_nil] = ACTIONS(2926), + [anon_sym_QMARK_DOT] = ACTIONS(2926), + [anon_sym_POUND_LBRACK] = ACTIONS(2926), + [anon_sym_if] = ACTIONS(2926), + [anon_sym_DOLLARif] = ACTIONS(2926), + [anon_sym_is] = ACTIONS(2926), + [anon_sym_BANGis] = ACTIONS(2926), + [anon_sym_in] = ACTIONS(2926), + [anon_sym_BANGin] = ACTIONS(2926), + [anon_sym_match] = ACTIONS(2926), + [anon_sym_select] = ACTIONS(2926), + [anon_sym_lock] = ACTIONS(2926), + [anon_sym_rlock] = ACTIONS(2926), + [anon_sym_unsafe] = ACTIONS(2926), + [anon_sym_sql] = ACTIONS(2926), + [sym_int_literal] = ACTIONS(2926), + [sym_float_literal] = ACTIONS(2926), + [sym_rune_literal] = ACTIONS(2926), + [anon_sym_AT] = ACTIONS(2926), + [anon_sym_shared] = ACTIONS(2926), + [anon_sym_map_LBRACK] = ACTIONS(2926), + [anon_sym_chan] = ACTIONS(2926), + [anon_sym_thread] = ACTIONS(2926), + [anon_sym_atomic] = ACTIONS(2926), + [sym___double_quote] = ACTIONS(2926), + [sym___single_quote] = ACTIONS(2926), + [sym___c_double_quote] = ACTIONS(2926), + [sym___c_single_quote] = ACTIONS(2926), + [sym___r_double_quote] = ACTIONS(2926), + [sym___r_single_quote] = ACTIONS(2926), }, - [1265] = { - [sym_identifier] = ACTIONS(3145), - [anon_sym_LF] = ACTIONS(3145), - [anon_sym_CR] = ACTIONS(3145), - [anon_sym_CR_LF] = ACTIONS(3145), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3145), - [anon_sym_DOT] = ACTIONS(3145), - [anon_sym_as] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_COMMA] = ACTIONS(3145), - [anon_sym_RBRACE] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_PIPE] = ACTIONS(3145), - [anon_sym_fn] = ACTIONS(3145), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3145), - [anon_sym_SLASH] = ACTIONS(3145), - [anon_sym_PERCENT] = ACTIONS(3145), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_GT] = ACTIONS(3145), - [anon_sym_EQ_EQ] = ACTIONS(3145), - [anon_sym_BANG_EQ] = ACTIONS(3145), - [anon_sym_LT_EQ] = ACTIONS(3145), - [anon_sym_GT_EQ] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_struct] = ACTIONS(3145), - [anon_sym_mut] = ACTIONS(3145), - [anon_sym_PLUS_PLUS] = ACTIONS(3145), - [anon_sym_DASH_DASH] = ACTIONS(3145), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_go] = ACTIONS(3145), - [anon_sym_spawn] = ACTIONS(3145), - [anon_sym_json_DOTdecode] = ACTIONS(3145), - [anon_sym_LBRACK2] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_CARET] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_LT_DASH] = ACTIONS(3145), - [anon_sym_LT_LT] = ACTIONS(3145), - [anon_sym_GT_GT] = ACTIONS(3145), - [anon_sym_GT_GT_GT] = ACTIONS(3145), - [anon_sym_AMP_CARET] = ACTIONS(3145), - [anon_sym_AMP_AMP] = ACTIONS(3145), - [anon_sym_PIPE_PIPE] = ACTIONS(3145), - [anon_sym_or] = ACTIONS(3145), - [sym_none] = ACTIONS(3145), - [sym_true] = ACTIONS(3145), - [sym_false] = ACTIONS(3145), - [sym_nil] = ACTIONS(3145), - [anon_sym_QMARK_DOT] = ACTIONS(3145), - [anon_sym_POUND_LBRACK] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_DOLLARif] = ACTIONS(3145), - [anon_sym_is] = ACTIONS(3145), - [anon_sym_BANGis] = ACTIONS(3145), - [anon_sym_in] = ACTIONS(3145), - [anon_sym_BANGin] = ACTIONS(3145), - [anon_sym_match] = ACTIONS(3145), - [anon_sym_select] = ACTIONS(3145), - [anon_sym_lock] = ACTIONS(3145), - [anon_sym_rlock] = ACTIONS(3145), - [anon_sym_unsafe] = ACTIONS(3145), - [anon_sym_sql] = ACTIONS(3145), - [sym_int_literal] = ACTIONS(3145), - [sym_float_literal] = ACTIONS(3145), - [sym_rune_literal] = ACTIONS(3145), - [anon_sym_AT] = ACTIONS(3145), - [anon_sym_shared] = ACTIONS(3145), - [anon_sym_map_LBRACK] = ACTIONS(3145), - [anon_sym_chan] = ACTIONS(3145), - [anon_sym_thread] = ACTIONS(3145), - [anon_sym_atomic] = ACTIONS(3145), - [sym___double_quote] = ACTIONS(3145), - [sym___single_quote] = ACTIONS(3145), - [sym___c_double_quote] = ACTIONS(3145), - [sym___c_single_quote] = ACTIONS(3145), - [sym___r_double_quote] = ACTIONS(3145), - [sym___r_single_quote] = ACTIONS(3145), + [1234] = { + [sym_identifier] = ACTIONS(3183), + [anon_sym_LF] = ACTIONS(3183), + [anon_sym_CR] = ACTIONS(3183), + [anon_sym_CR_LF] = ACTIONS(3183), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3183), + [anon_sym_DOT] = ACTIONS(3183), + [anon_sym_as] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_COMMA] = ACTIONS(3183), + [anon_sym_RBRACE] = ACTIONS(3183), + [anon_sym_LPAREN] = ACTIONS(3183), + [anon_sym_PIPE] = ACTIONS(3183), + [anon_sym_fn] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3183), + [anon_sym_SLASH] = ACTIONS(3183), + [anon_sym_PERCENT] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT_EQ] = ACTIONS(3183), + [anon_sym_LBRACK] = ACTIONS(3181), + [anon_sym_struct] = ACTIONS(3183), + [anon_sym_mut] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_DASH_DASH] = ACTIONS(3183), + [anon_sym_QMARK] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_go] = ACTIONS(3183), + [anon_sym_spawn] = ACTIONS(3183), + [anon_sym_json_DOTdecode] = ACTIONS(3183), + [anon_sym_LBRACK2] = ACTIONS(3183), + [anon_sym_TILDE] = ACTIONS(3183), + [anon_sym_CARET] = ACTIONS(3183), + [anon_sym_AMP] = ACTIONS(3183), + [anon_sym_LT_DASH] = ACTIONS(3183), + [anon_sym_LT_LT] = ACTIONS(3183), + [anon_sym_GT_GT] = ACTIONS(3183), + [anon_sym_GT_GT_GT] = ACTIONS(3183), + [anon_sym_AMP_CARET] = ACTIONS(3183), + [anon_sym_AMP_AMP] = ACTIONS(3183), + [anon_sym_PIPE_PIPE] = ACTIONS(3183), + [anon_sym_or] = ACTIONS(3183), + [sym_none] = ACTIONS(3183), + [sym_true] = ACTIONS(3183), + [sym_false] = ACTIONS(3183), + [sym_nil] = ACTIONS(3183), + [anon_sym_QMARK_DOT] = ACTIONS(3183), + [anon_sym_POUND_LBRACK] = ACTIONS(3183), + [anon_sym_if] = ACTIONS(3183), + [anon_sym_DOLLARif] = ACTIONS(3183), + [anon_sym_is] = ACTIONS(3183), + [anon_sym_BANGis] = ACTIONS(3183), + [anon_sym_in] = ACTIONS(3183), + [anon_sym_BANGin] = ACTIONS(3183), + [anon_sym_match] = ACTIONS(3183), + [anon_sym_select] = ACTIONS(3183), + [anon_sym_lock] = ACTIONS(3183), + [anon_sym_rlock] = ACTIONS(3183), + [anon_sym_unsafe] = ACTIONS(3183), + [anon_sym_sql] = ACTIONS(3183), + [sym_int_literal] = ACTIONS(3183), + [sym_float_literal] = ACTIONS(3183), + [sym_rune_literal] = ACTIONS(3183), + [anon_sym_AT] = ACTIONS(3183), + [anon_sym_shared] = ACTIONS(3183), + [anon_sym_map_LBRACK] = ACTIONS(3183), + [anon_sym_chan] = ACTIONS(3183), + [anon_sym_thread] = ACTIONS(3183), + [anon_sym_atomic] = ACTIONS(3183), + [sym___double_quote] = ACTIONS(3183), + [sym___single_quote] = ACTIONS(3183), + [sym___c_double_quote] = ACTIONS(3183), + [sym___c_single_quote] = ACTIONS(3183), + [sym___r_double_quote] = ACTIONS(3183), + [sym___r_single_quote] = ACTIONS(3183), }, - [1266] = { - [sym_identifier] = ACTIONS(3069), - [anon_sym_LF] = ACTIONS(3069), - [anon_sym_CR] = ACTIONS(3069), - [anon_sym_CR_LF] = ACTIONS(3069), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_DOT] = ACTIONS(3069), - [anon_sym_as] = ACTIONS(3069), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_COMMA] = ACTIONS(3069), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3069), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_fn] = ACTIONS(3069), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_SLASH] = ACTIONS(3069), - [anon_sym_PERCENT] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_EQ_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ] = ACTIONS(3069), - [anon_sym_LT_EQ] = ACTIONS(3069), - [anon_sym_GT_EQ] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_struct] = ACTIONS(3069), - [anon_sym_mut] = ACTIONS(3069), - [anon_sym_PLUS_PLUS] = ACTIONS(3069), - [anon_sym_DASH_DASH] = ACTIONS(3069), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_BANG] = ACTIONS(3069), - [anon_sym_go] = ACTIONS(3069), - [anon_sym_spawn] = ACTIONS(3069), - [anon_sym_json_DOTdecode] = ACTIONS(3069), - [anon_sym_LBRACK2] = ACTIONS(3069), - [anon_sym_TILDE] = ACTIONS(3069), - [anon_sym_CARET] = ACTIONS(3069), - [anon_sym_AMP] = ACTIONS(3069), - [anon_sym_LT_DASH] = ACTIONS(3069), - [anon_sym_LT_LT] = ACTIONS(3069), - [anon_sym_GT_GT] = ACTIONS(3069), - [anon_sym_GT_GT_GT] = ACTIONS(3069), - [anon_sym_AMP_CARET] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_or] = ACTIONS(3069), - [sym_none] = ACTIONS(3069), - [sym_true] = ACTIONS(3069), - [sym_false] = ACTIONS(3069), - [sym_nil] = ACTIONS(3069), - [anon_sym_QMARK_DOT] = ACTIONS(3069), - [anon_sym_POUND_LBRACK] = ACTIONS(3069), - [anon_sym_if] = ACTIONS(3069), - [anon_sym_DOLLARif] = ACTIONS(3069), - [anon_sym_is] = ACTIONS(3069), - [anon_sym_BANGis] = ACTIONS(3069), - [anon_sym_in] = ACTIONS(3069), - [anon_sym_BANGin] = ACTIONS(3069), - [anon_sym_match] = ACTIONS(3069), - [anon_sym_select] = ACTIONS(3069), - [anon_sym_lock] = ACTIONS(3069), - [anon_sym_rlock] = ACTIONS(3069), - [anon_sym_unsafe] = ACTIONS(3069), - [anon_sym_sql] = ACTIONS(3069), - [sym_int_literal] = ACTIONS(3069), - [sym_float_literal] = ACTIONS(3069), - [sym_rune_literal] = ACTIONS(3069), - [anon_sym_AT] = ACTIONS(3069), - [anon_sym_shared] = ACTIONS(3069), - [anon_sym_map_LBRACK] = ACTIONS(3069), - [anon_sym_chan] = ACTIONS(3069), - [anon_sym_thread] = ACTIONS(3069), - [anon_sym_atomic] = ACTIONS(3069), - [sym___double_quote] = ACTIONS(3069), - [sym___single_quote] = ACTIONS(3069), - [sym___c_double_quote] = ACTIONS(3069), - [sym___c_single_quote] = ACTIONS(3069), - [sym___r_double_quote] = ACTIONS(3069), - [sym___r_single_quote] = ACTIONS(3069), + [1235] = { + [sym_identifier] = ACTIONS(2798), + [anon_sym_LF] = ACTIONS(2798), + [anon_sym_CR] = ACTIONS(2798), + [anon_sym_CR_LF] = ACTIONS(2798), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2798), + [anon_sym_DOT] = ACTIONS(2798), + [anon_sym_as] = ACTIONS(2798), + [anon_sym_LBRACE] = ACTIONS(2798), + [anon_sym_COMMA] = ACTIONS(2798), + [anon_sym_RBRACE] = ACTIONS(2798), + [anon_sym_LPAREN] = ACTIONS(2798), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_fn] = ACTIONS(2798), + [anon_sym_PLUS] = ACTIONS(2798), + [anon_sym_DASH] = ACTIONS(2798), + [anon_sym_STAR] = ACTIONS(2798), + [anon_sym_SLASH] = ACTIONS(2798), + [anon_sym_PERCENT] = ACTIONS(2798), + [anon_sym_LT] = ACTIONS(2798), + [anon_sym_GT] = ACTIONS(2798), + [anon_sym_EQ_EQ] = ACTIONS(2798), + [anon_sym_BANG_EQ] = ACTIONS(2798), + [anon_sym_LT_EQ] = ACTIONS(2798), + [anon_sym_GT_EQ] = ACTIONS(2798), + [anon_sym_LBRACK] = ACTIONS(2796), + [anon_sym_struct] = ACTIONS(2798), + [anon_sym_mut] = ACTIONS(2798), + [anon_sym_PLUS_PLUS] = ACTIONS(2798), + [anon_sym_DASH_DASH] = ACTIONS(2798), + [anon_sym_QMARK] = ACTIONS(2798), + [anon_sym_BANG] = ACTIONS(2798), + [anon_sym_go] = ACTIONS(2798), + [anon_sym_spawn] = ACTIONS(2798), + [anon_sym_json_DOTdecode] = ACTIONS(2798), + [anon_sym_LBRACK2] = ACTIONS(2798), + [anon_sym_TILDE] = ACTIONS(2798), + [anon_sym_CARET] = ACTIONS(2798), + [anon_sym_AMP] = ACTIONS(2798), + [anon_sym_LT_DASH] = ACTIONS(2798), + [anon_sym_LT_LT] = ACTIONS(2798), + [anon_sym_GT_GT] = ACTIONS(2798), + [anon_sym_GT_GT_GT] = ACTIONS(2798), + [anon_sym_AMP_CARET] = ACTIONS(2798), + [anon_sym_AMP_AMP] = ACTIONS(2798), + [anon_sym_PIPE_PIPE] = ACTIONS(2798), + [anon_sym_or] = ACTIONS(2798), + [sym_none] = ACTIONS(2798), + [sym_true] = ACTIONS(2798), + [sym_false] = ACTIONS(2798), + [sym_nil] = ACTIONS(2798), + [anon_sym_QMARK_DOT] = ACTIONS(2798), + [anon_sym_POUND_LBRACK] = ACTIONS(2798), + [anon_sym_if] = ACTIONS(2798), + [anon_sym_DOLLARif] = ACTIONS(2798), + [anon_sym_is] = ACTIONS(2798), + [anon_sym_BANGis] = ACTIONS(2798), + [anon_sym_in] = ACTIONS(2798), + [anon_sym_BANGin] = ACTIONS(2798), + [anon_sym_match] = ACTIONS(2798), + [anon_sym_select] = ACTIONS(2798), + [anon_sym_lock] = ACTIONS(2798), + [anon_sym_rlock] = ACTIONS(2798), + [anon_sym_unsafe] = ACTIONS(2798), + [anon_sym_sql] = ACTIONS(2798), + [sym_int_literal] = ACTIONS(2798), + [sym_float_literal] = ACTIONS(2798), + [sym_rune_literal] = ACTIONS(2798), + [anon_sym_AT] = ACTIONS(2798), + [anon_sym_shared] = ACTIONS(2798), + [anon_sym_map_LBRACK] = ACTIONS(2798), + [anon_sym_chan] = ACTIONS(2798), + [anon_sym_thread] = ACTIONS(2798), + [anon_sym_atomic] = ACTIONS(2798), + [sym___double_quote] = ACTIONS(2798), + [sym___single_quote] = ACTIONS(2798), + [sym___c_double_quote] = ACTIONS(2798), + [sym___c_single_quote] = ACTIONS(2798), + [sym___r_double_quote] = ACTIONS(2798), + [sym___r_single_quote] = ACTIONS(2798), + }, + [1236] = { + [sym_identifier] = ACTIONS(3078), + [anon_sym_LF] = ACTIONS(3078), + [anon_sym_CR] = ACTIONS(3078), + [anon_sym_CR_LF] = ACTIONS(3078), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_DOT] = ACTIONS(3078), + [anon_sym_as] = ACTIONS(3078), + [anon_sym_LBRACE] = ACTIONS(3078), + [anon_sym_COMMA] = ACTIONS(3078), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3078), + [anon_sym_fn] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(3078), + [anon_sym_SLASH] = ACTIONS(3078), + [anon_sym_PERCENT] = ACTIONS(3078), + [anon_sym_LT] = ACTIONS(3078), + [anon_sym_GT] = ACTIONS(3078), + [anon_sym_EQ_EQ] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(3078), + [anon_sym_LT_EQ] = ACTIONS(3078), + [anon_sym_GT_EQ] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_struct] = ACTIONS(3078), + [anon_sym_mut] = ACTIONS(3078), + [anon_sym_PLUS_PLUS] = ACTIONS(3078), + [anon_sym_DASH_DASH] = ACTIONS(3078), + [anon_sym_QMARK] = ACTIONS(3078), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_go] = ACTIONS(3078), + [anon_sym_spawn] = ACTIONS(3078), + [anon_sym_json_DOTdecode] = ACTIONS(3078), + [anon_sym_LBRACK2] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_CARET] = ACTIONS(3078), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3078), + [anon_sym_LT_LT] = ACTIONS(3078), + [anon_sym_GT_GT] = ACTIONS(3078), + [anon_sym_GT_GT_GT] = ACTIONS(3078), + [anon_sym_AMP_CARET] = ACTIONS(3078), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_or] = ACTIONS(3078), + [sym_none] = ACTIONS(3078), + [sym_true] = ACTIONS(3078), + [sym_false] = ACTIONS(3078), + [sym_nil] = ACTIONS(3078), + [anon_sym_QMARK_DOT] = ACTIONS(3078), + [anon_sym_POUND_LBRACK] = ACTIONS(3078), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_DOLLARif] = ACTIONS(3078), + [anon_sym_is] = ACTIONS(3078), + [anon_sym_BANGis] = ACTIONS(3078), + [anon_sym_in] = ACTIONS(3078), + [anon_sym_BANGin] = ACTIONS(3078), + [anon_sym_match] = ACTIONS(3078), + [anon_sym_select] = ACTIONS(3078), + [anon_sym_lock] = ACTIONS(3078), + [anon_sym_rlock] = ACTIONS(3078), + [anon_sym_unsafe] = ACTIONS(3078), + [anon_sym_sql] = ACTIONS(3078), + [sym_int_literal] = ACTIONS(3078), + [sym_float_literal] = ACTIONS(3078), + [sym_rune_literal] = ACTIONS(3078), + [anon_sym_AT] = ACTIONS(3078), + [anon_sym_shared] = ACTIONS(3078), + [anon_sym_map_LBRACK] = ACTIONS(3078), + [anon_sym_chan] = ACTIONS(3078), + [anon_sym_thread] = ACTIONS(3078), + [anon_sym_atomic] = ACTIONS(3078), + [sym___double_quote] = ACTIONS(3078), + [sym___single_quote] = ACTIONS(3078), + [sym___c_double_quote] = ACTIONS(3078), + [sym___c_single_quote] = ACTIONS(3078), + [sym___r_double_quote] = ACTIONS(3078), + [sym___r_single_quote] = ACTIONS(3078), + }, + [1237] = { + [sym_identifier] = ACTIONS(2802), + [anon_sym_LF] = ACTIONS(2802), + [anon_sym_CR] = ACTIONS(2802), + [anon_sym_CR_LF] = ACTIONS(2802), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_as] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_COMMA] = ACTIONS(2802), + [anon_sym_RBRACE] = ACTIONS(2802), + [anon_sym_LPAREN] = ACTIONS(2802), + [anon_sym_PIPE] = ACTIONS(2802), + [anon_sym_fn] = ACTIONS(2802), + [anon_sym_PLUS] = ACTIONS(2802), + [anon_sym_DASH] = ACTIONS(2802), + [anon_sym_STAR] = ACTIONS(2802), + [anon_sym_SLASH] = ACTIONS(2802), + [anon_sym_PERCENT] = ACTIONS(2802), + [anon_sym_LT] = ACTIONS(2802), + [anon_sym_GT] = ACTIONS(2802), + [anon_sym_EQ_EQ] = ACTIONS(2802), + [anon_sym_BANG_EQ] = ACTIONS(2802), + [anon_sym_LT_EQ] = ACTIONS(2802), + [anon_sym_GT_EQ] = ACTIONS(2802), + [anon_sym_LBRACK] = ACTIONS(2800), + [anon_sym_struct] = ACTIONS(2802), + [anon_sym_mut] = ACTIONS(2802), + [anon_sym_PLUS_PLUS] = ACTIONS(2802), + [anon_sym_DASH_DASH] = ACTIONS(2802), + [anon_sym_QMARK] = ACTIONS(2802), + [anon_sym_BANG] = ACTIONS(2802), + [anon_sym_go] = ACTIONS(2802), + [anon_sym_spawn] = ACTIONS(2802), + [anon_sym_json_DOTdecode] = ACTIONS(2802), + [anon_sym_LBRACK2] = ACTIONS(2802), + [anon_sym_TILDE] = ACTIONS(2802), + [anon_sym_CARET] = ACTIONS(2802), + [anon_sym_AMP] = ACTIONS(2802), + [anon_sym_LT_DASH] = ACTIONS(2802), + [anon_sym_LT_LT] = ACTIONS(2802), + [anon_sym_GT_GT] = ACTIONS(2802), + [anon_sym_GT_GT_GT] = ACTIONS(2802), + [anon_sym_AMP_CARET] = ACTIONS(2802), + [anon_sym_AMP_AMP] = ACTIONS(2802), + [anon_sym_PIPE_PIPE] = ACTIONS(2802), + [anon_sym_or] = ACTIONS(2802), + [sym_none] = ACTIONS(2802), + [sym_true] = ACTIONS(2802), + [sym_false] = ACTIONS(2802), + [sym_nil] = ACTIONS(2802), + [anon_sym_QMARK_DOT] = ACTIONS(2802), + [anon_sym_POUND_LBRACK] = ACTIONS(2802), + [anon_sym_if] = ACTIONS(2802), + [anon_sym_DOLLARif] = ACTIONS(2802), + [anon_sym_is] = ACTIONS(2802), + [anon_sym_BANGis] = ACTIONS(2802), + [anon_sym_in] = ACTIONS(2802), + [anon_sym_BANGin] = ACTIONS(2802), + [anon_sym_match] = ACTIONS(2802), + [anon_sym_select] = ACTIONS(2802), + [anon_sym_lock] = ACTIONS(2802), + [anon_sym_rlock] = ACTIONS(2802), + [anon_sym_unsafe] = ACTIONS(2802), + [anon_sym_sql] = ACTIONS(2802), + [sym_int_literal] = ACTIONS(2802), + [sym_float_literal] = ACTIONS(2802), + [sym_rune_literal] = ACTIONS(2802), + [anon_sym_AT] = ACTIONS(2802), + [anon_sym_shared] = ACTIONS(2802), + [anon_sym_map_LBRACK] = ACTIONS(2802), + [anon_sym_chan] = ACTIONS(2802), + [anon_sym_thread] = ACTIONS(2802), + [anon_sym_atomic] = ACTIONS(2802), + [sym___double_quote] = ACTIONS(2802), + [sym___single_quote] = ACTIONS(2802), + [sym___c_double_quote] = ACTIONS(2802), + [sym___c_single_quote] = ACTIONS(2802), + [sym___r_double_quote] = ACTIONS(2802), + [sym___r_single_quote] = ACTIONS(2802), + }, + [1238] = { + [sym_identifier] = ACTIONS(2938), + [anon_sym_LF] = ACTIONS(2938), + [anon_sym_CR] = ACTIONS(2938), + [anon_sym_CR_LF] = ACTIONS(2938), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2938), + [anon_sym_DOT] = ACTIONS(2938), + [anon_sym_as] = ACTIONS(2938), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_COMMA] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(2938), + [anon_sym_LPAREN] = ACTIONS(2938), + [anon_sym_PIPE] = ACTIONS(2938), + [anon_sym_fn] = ACTIONS(2938), + [anon_sym_PLUS] = ACTIONS(2938), + [anon_sym_DASH] = ACTIONS(2938), + [anon_sym_STAR] = ACTIONS(2938), + [anon_sym_SLASH] = ACTIONS(2938), + [anon_sym_PERCENT] = ACTIONS(2938), + [anon_sym_LT] = ACTIONS(2938), + [anon_sym_GT] = ACTIONS(2938), + [anon_sym_EQ_EQ] = ACTIONS(2938), + [anon_sym_BANG_EQ] = ACTIONS(2938), + [anon_sym_LT_EQ] = ACTIONS(2938), + [anon_sym_GT_EQ] = ACTIONS(2938), + [anon_sym_LBRACK] = ACTIONS(2936), + [anon_sym_struct] = ACTIONS(2938), + [anon_sym_mut] = ACTIONS(2938), + [anon_sym_PLUS_PLUS] = ACTIONS(2938), + [anon_sym_DASH_DASH] = ACTIONS(2938), + [anon_sym_QMARK] = ACTIONS(2938), + [anon_sym_BANG] = ACTIONS(2938), + [anon_sym_go] = ACTIONS(2938), + [anon_sym_spawn] = ACTIONS(2938), + [anon_sym_json_DOTdecode] = ACTIONS(2938), + [anon_sym_LBRACK2] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2938), + [anon_sym_CARET] = ACTIONS(2938), + [anon_sym_AMP] = ACTIONS(2938), + [anon_sym_LT_DASH] = ACTIONS(2938), + [anon_sym_LT_LT] = ACTIONS(2938), + [anon_sym_GT_GT] = ACTIONS(2938), + [anon_sym_GT_GT_GT] = ACTIONS(2938), + [anon_sym_AMP_CARET] = ACTIONS(2938), + [anon_sym_AMP_AMP] = ACTIONS(2938), + [anon_sym_PIPE_PIPE] = ACTIONS(2938), + [anon_sym_or] = ACTIONS(2938), + [sym_none] = ACTIONS(2938), + [sym_true] = ACTIONS(2938), + [sym_false] = ACTIONS(2938), + [sym_nil] = ACTIONS(2938), + [anon_sym_QMARK_DOT] = ACTIONS(2938), + [anon_sym_POUND_LBRACK] = ACTIONS(2938), + [anon_sym_if] = ACTIONS(2938), + [anon_sym_DOLLARif] = ACTIONS(2938), + [anon_sym_is] = ACTIONS(2938), + [anon_sym_BANGis] = ACTIONS(2938), + [anon_sym_in] = ACTIONS(2938), + [anon_sym_BANGin] = ACTIONS(2938), + [anon_sym_match] = ACTIONS(2938), + [anon_sym_select] = ACTIONS(2938), + [anon_sym_lock] = ACTIONS(2938), + [anon_sym_rlock] = ACTIONS(2938), + [anon_sym_unsafe] = ACTIONS(2938), + [anon_sym_sql] = ACTIONS(2938), + [sym_int_literal] = ACTIONS(2938), + [sym_float_literal] = ACTIONS(2938), + [sym_rune_literal] = ACTIONS(2938), + [anon_sym_AT] = ACTIONS(2938), + [anon_sym_shared] = ACTIONS(2938), + [anon_sym_map_LBRACK] = ACTIONS(2938), + [anon_sym_chan] = ACTIONS(2938), + [anon_sym_thread] = ACTIONS(2938), + [anon_sym_atomic] = ACTIONS(2938), + [sym___double_quote] = ACTIONS(2938), + [sym___single_quote] = ACTIONS(2938), + [sym___c_double_quote] = ACTIONS(2938), + [sym___c_single_quote] = ACTIONS(2938), + [sym___r_double_quote] = ACTIONS(2938), + [sym___r_single_quote] = ACTIONS(2938), + }, + [1239] = { + [sym_identifier] = ACTIONS(3195), + [anon_sym_LF] = ACTIONS(3195), + [anon_sym_CR] = ACTIONS(3195), + [anon_sym_CR_LF] = ACTIONS(3195), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3195), + [anon_sym_DOT] = ACTIONS(3195), + [anon_sym_as] = ACTIONS(3195), + [anon_sym_LBRACE] = ACTIONS(3195), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3195), + [anon_sym_PIPE] = ACTIONS(3195), + [anon_sym_fn] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3195), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3195), + [anon_sym_SLASH] = ACTIONS(3195), + [anon_sym_PERCENT] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_struct] = ACTIONS(3195), + [anon_sym_mut] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_DASH_DASH] = ACTIONS(3195), + [anon_sym_QMARK] = ACTIONS(3195), + [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_go] = ACTIONS(3195), + [anon_sym_spawn] = ACTIONS(3195), + [anon_sym_json_DOTdecode] = ACTIONS(3195), + [anon_sym_LBRACK2] = ACTIONS(3195), + [anon_sym_TILDE] = ACTIONS(3195), + [anon_sym_CARET] = ACTIONS(3195), + [anon_sym_AMP] = ACTIONS(3195), + [anon_sym_LT_DASH] = ACTIONS(3195), + [anon_sym_LT_LT] = ACTIONS(3195), + [anon_sym_GT_GT] = ACTIONS(3195), + [anon_sym_GT_GT_GT] = ACTIONS(3195), + [anon_sym_AMP_CARET] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_or] = ACTIONS(3195), + [sym_none] = ACTIONS(3195), + [sym_true] = ACTIONS(3195), + [sym_false] = ACTIONS(3195), + [sym_nil] = ACTIONS(3195), + [anon_sym_QMARK_DOT] = ACTIONS(3195), + [anon_sym_POUND_LBRACK] = ACTIONS(3195), + [anon_sym_if] = ACTIONS(3195), + [anon_sym_DOLLARif] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3195), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_in] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_match] = ACTIONS(3195), + [anon_sym_select] = ACTIONS(3195), + [anon_sym_lock] = ACTIONS(3195), + [anon_sym_rlock] = ACTIONS(3195), + [anon_sym_unsafe] = ACTIONS(3195), + [anon_sym_sql] = ACTIONS(3195), + [sym_int_literal] = ACTIONS(3195), + [sym_float_literal] = ACTIONS(3195), + [sym_rune_literal] = ACTIONS(3195), + [anon_sym_AT] = ACTIONS(3195), + [anon_sym_shared] = ACTIONS(3195), + [anon_sym_map_LBRACK] = ACTIONS(3195), + [anon_sym_chan] = ACTIONS(3195), + [anon_sym_thread] = ACTIONS(3195), + [anon_sym_atomic] = ACTIONS(3195), + [sym___double_quote] = ACTIONS(3195), + [sym___single_quote] = ACTIONS(3195), + [sym___c_double_quote] = ACTIONS(3195), + [sym___c_single_quote] = ACTIONS(3195), + [sym___r_double_quote] = ACTIONS(3195), + [sym___r_single_quote] = ACTIONS(3195), + }, + [1240] = { + [sym_identifier] = ACTIONS(3038), + [anon_sym_LF] = ACTIONS(3038), + [anon_sym_CR] = ACTIONS(3038), + [anon_sym_CR_LF] = ACTIONS(3038), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3038), + [sym___single_quote] = ACTIONS(3038), + [sym___c_double_quote] = ACTIONS(3038), + [sym___c_single_quote] = ACTIONS(3038), + [sym___r_double_quote] = ACTIONS(3038), + [sym___r_single_quote] = ACTIONS(3038), + }, + [1241] = { + [sym_identifier] = ACTIONS(3042), + [anon_sym_LF] = ACTIONS(3042), + [anon_sym_CR] = ACTIONS(3042), + [anon_sym_CR_LF] = ACTIONS(3042), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3042), + [sym___single_quote] = ACTIONS(3042), + [sym___c_double_quote] = ACTIONS(3042), + [sym___c_single_quote] = ACTIONS(3042), + [sym___r_double_quote] = ACTIONS(3042), + [sym___r_single_quote] = ACTIONS(3042), + }, + [1242] = { + [sym_identifier] = ACTIONS(3118), + [anon_sym_LF] = ACTIONS(3118), + [anon_sym_CR] = ACTIONS(3118), + [anon_sym_CR_LF] = ACTIONS(3118), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3118), + [anon_sym_DOT] = ACTIONS(3120), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_COMMA] = ACTIONS(3118), + [anon_sym_RBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_fn] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_mut] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3118), + [anon_sym_DASH_DASH] = ACTIONS(3118), + [anon_sym_QMARK] = ACTIONS(3118), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_go] = ACTIONS(3118), + [anon_sym_spawn] = ACTIONS(3118), + [anon_sym_json_DOTdecode] = ACTIONS(3118), + [anon_sym_LBRACK2] = ACTIONS(3118), + [anon_sym_TILDE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_LT_DASH] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym_GT_GT_GT] = ACTIONS(3118), + [anon_sym_AMP_CARET] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3118), + [anon_sym_or] = ACTIONS(3118), + [sym_none] = ACTIONS(3118), + [sym_true] = ACTIONS(3118), + [sym_false] = ACTIONS(3118), + [sym_nil] = ACTIONS(3118), + [anon_sym_QMARK_DOT] = ACTIONS(3118), + [anon_sym_POUND_LBRACK] = ACTIONS(3118), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_DOLLARif] = ACTIONS(3118), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3118), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_BANGin] = ACTIONS(3118), + [anon_sym_match] = ACTIONS(3118), + [anon_sym_select] = ACTIONS(3118), + [anon_sym_lock] = ACTIONS(3118), + [anon_sym_rlock] = ACTIONS(3118), + [anon_sym_unsafe] = ACTIONS(3118), + [anon_sym_sql] = ACTIONS(3118), + [sym_int_literal] = ACTIONS(3118), + [sym_float_literal] = ACTIONS(3118), + [sym_rune_literal] = ACTIONS(3118), + [anon_sym_AT] = ACTIONS(3118), + [anon_sym_shared] = ACTIONS(3118), + [anon_sym_map_LBRACK] = ACTIONS(3118), + [anon_sym_chan] = ACTIONS(3118), + [anon_sym_thread] = ACTIONS(3118), + [anon_sym_atomic] = ACTIONS(3118), + [sym___double_quote] = ACTIONS(3118), + [sym___single_quote] = ACTIONS(3118), + [sym___c_double_quote] = ACTIONS(3118), + [sym___c_single_quote] = ACTIONS(3118), + [sym___r_double_quote] = ACTIONS(3118), + [sym___r_single_quote] = ACTIONS(3118), + }, + [1243] = { + [sym_identifier] = ACTIONS(3171), + [anon_sym_LF] = ACTIONS(3171), + [anon_sym_CR] = ACTIONS(3171), + [anon_sym_CR_LF] = ACTIONS(3171), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3171), + [anon_sym_DOT] = ACTIONS(3171), + [anon_sym_as] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_COMMA] = ACTIONS(3171), + [anon_sym_RBRACE] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_PIPE] = ACTIONS(3171), + [anon_sym_fn] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_SLASH] = ACTIONS(3171), + [anon_sym_PERCENT] = ACTIONS(3171), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3171), + [anon_sym_EQ_EQ] = ACTIONS(3171), + [anon_sym_BANG_EQ] = ACTIONS(3171), + [anon_sym_LT_EQ] = ACTIONS(3171), + [anon_sym_GT_EQ] = ACTIONS(3171), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_struct] = ACTIONS(3171), + [anon_sym_mut] = ACTIONS(3171), + [anon_sym_PLUS_PLUS] = ACTIONS(3171), + [anon_sym_DASH_DASH] = ACTIONS(3171), + [anon_sym_QMARK] = ACTIONS(3171), + [anon_sym_BANG] = ACTIONS(3171), + [anon_sym_go] = ACTIONS(3171), + [anon_sym_spawn] = ACTIONS(3171), + [anon_sym_json_DOTdecode] = ACTIONS(3171), + [anon_sym_LBRACK2] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3171), + [anon_sym_CARET] = ACTIONS(3171), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_LT_DASH] = ACTIONS(3171), + [anon_sym_LT_LT] = ACTIONS(3171), + [anon_sym_GT_GT] = ACTIONS(3171), + [anon_sym_GT_GT_GT] = ACTIONS(3171), + [anon_sym_AMP_CARET] = ACTIONS(3171), + [anon_sym_AMP_AMP] = ACTIONS(3171), + [anon_sym_PIPE_PIPE] = ACTIONS(3171), + [anon_sym_or] = ACTIONS(3171), + [sym_none] = ACTIONS(3171), + [sym_true] = ACTIONS(3171), + [sym_false] = ACTIONS(3171), + [sym_nil] = ACTIONS(3171), + [anon_sym_QMARK_DOT] = ACTIONS(3171), + [anon_sym_POUND_LBRACK] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_DOLLARif] = ACTIONS(3171), + [anon_sym_is] = ACTIONS(3171), + [anon_sym_BANGis] = ACTIONS(3171), + [anon_sym_in] = ACTIONS(3171), + [anon_sym_BANGin] = ACTIONS(3171), + [anon_sym_match] = ACTIONS(3171), + [anon_sym_select] = ACTIONS(3171), + [anon_sym_lock] = ACTIONS(3171), + [anon_sym_rlock] = ACTIONS(3171), + [anon_sym_unsafe] = ACTIONS(3171), + [anon_sym_sql] = ACTIONS(3171), + [sym_int_literal] = ACTIONS(3171), + [sym_float_literal] = ACTIONS(3171), + [sym_rune_literal] = ACTIONS(3171), + [anon_sym_AT] = ACTIONS(3171), + [anon_sym_shared] = ACTIONS(3171), + [anon_sym_map_LBRACK] = ACTIONS(3171), + [anon_sym_chan] = ACTIONS(3171), + [anon_sym_thread] = ACTIONS(3171), + [anon_sym_atomic] = ACTIONS(3171), + [sym___double_quote] = ACTIONS(3171), + [sym___single_quote] = ACTIONS(3171), + [sym___c_double_quote] = ACTIONS(3171), + [sym___c_single_quote] = ACTIONS(3171), + [sym___r_double_quote] = ACTIONS(3171), + [sym___r_single_quote] = ACTIONS(3171), + }, + [1244] = { + [sym_identifier] = ACTIONS(3163), + [anon_sym_LF] = ACTIONS(3163), + [anon_sym_CR] = ACTIONS(3163), + [anon_sym_CR_LF] = ACTIONS(3163), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3163), + [anon_sym_DOT] = ACTIONS(3163), + [anon_sym_as] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_COMMA] = ACTIONS(3163), + [anon_sym_RBRACE] = ACTIONS(3163), + [anon_sym_LPAREN] = ACTIONS(3163), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_fn] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_SLASH] = ACTIONS(3163), + [anon_sym_PERCENT] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(3163), + [anon_sym_GT] = ACTIONS(3163), + [anon_sym_EQ_EQ] = ACTIONS(3163), + [anon_sym_BANG_EQ] = ACTIONS(3163), + [anon_sym_LT_EQ] = ACTIONS(3163), + [anon_sym_GT_EQ] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_struct] = ACTIONS(3163), + [anon_sym_mut] = ACTIONS(3163), + [anon_sym_PLUS_PLUS] = ACTIONS(3163), + [anon_sym_DASH_DASH] = ACTIONS(3163), + [anon_sym_QMARK] = ACTIONS(3163), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_go] = ACTIONS(3163), + [anon_sym_spawn] = ACTIONS(3163), + [anon_sym_json_DOTdecode] = ACTIONS(3163), + [anon_sym_LBRACK2] = ACTIONS(3163), + [anon_sym_TILDE] = ACTIONS(3163), + [anon_sym_CARET] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LT_DASH] = ACTIONS(3163), + [anon_sym_LT_LT] = ACTIONS(3163), + [anon_sym_GT_GT] = ACTIONS(3163), + [anon_sym_GT_GT_GT] = ACTIONS(3163), + [anon_sym_AMP_CARET] = ACTIONS(3163), + [anon_sym_AMP_AMP] = ACTIONS(3163), + [anon_sym_PIPE_PIPE] = ACTIONS(3163), + [anon_sym_or] = ACTIONS(3163), + [sym_none] = ACTIONS(3163), + [sym_true] = ACTIONS(3163), + [sym_false] = ACTIONS(3163), + [sym_nil] = ACTIONS(3163), + [anon_sym_QMARK_DOT] = ACTIONS(3163), + [anon_sym_POUND_LBRACK] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_DOLLARif] = ACTIONS(3163), + [anon_sym_is] = ACTIONS(3163), + [anon_sym_BANGis] = ACTIONS(3163), + [anon_sym_in] = ACTIONS(3163), + [anon_sym_BANGin] = ACTIONS(3163), + [anon_sym_match] = ACTIONS(3163), + [anon_sym_select] = ACTIONS(3163), + [anon_sym_lock] = ACTIONS(3163), + [anon_sym_rlock] = ACTIONS(3163), + [anon_sym_unsafe] = ACTIONS(3163), + [anon_sym_sql] = ACTIONS(3163), + [sym_int_literal] = ACTIONS(3163), + [sym_float_literal] = ACTIONS(3163), + [sym_rune_literal] = ACTIONS(3163), + [anon_sym_AT] = ACTIONS(3163), + [anon_sym_shared] = ACTIONS(3163), + [anon_sym_map_LBRACK] = ACTIONS(3163), + [anon_sym_chan] = ACTIONS(3163), + [anon_sym_thread] = ACTIONS(3163), + [anon_sym_atomic] = ACTIONS(3163), + [sym___double_quote] = ACTIONS(3163), + [sym___single_quote] = ACTIONS(3163), + [sym___c_double_quote] = ACTIONS(3163), + [sym___c_single_quote] = ACTIONS(3163), + [sym___r_double_quote] = ACTIONS(3163), + [sym___r_single_quote] = ACTIONS(3163), + }, + [1245] = { + [sym_identifier] = ACTIONS(2958), + [anon_sym_LF] = ACTIONS(2958), + [anon_sym_CR] = ACTIONS(2958), + [anon_sym_CR_LF] = ACTIONS(2958), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2958), + [anon_sym_DOT] = ACTIONS(2958), + [anon_sym_as] = ACTIONS(2958), + [anon_sym_LBRACE] = ACTIONS(2958), + [anon_sym_COMMA] = ACTIONS(2958), + [anon_sym_RBRACE] = ACTIONS(2958), + [anon_sym_LPAREN] = ACTIONS(2958), + [anon_sym_PIPE] = ACTIONS(2958), + [anon_sym_fn] = ACTIONS(2958), + [anon_sym_PLUS] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2958), + [anon_sym_STAR] = ACTIONS(2958), + [anon_sym_SLASH] = ACTIONS(2958), + [anon_sym_PERCENT] = ACTIONS(2958), + [anon_sym_LT] = ACTIONS(2958), + [anon_sym_GT] = ACTIONS(2958), + [anon_sym_EQ_EQ] = ACTIONS(2958), + [anon_sym_BANG_EQ] = ACTIONS(2958), + [anon_sym_LT_EQ] = ACTIONS(2958), + [anon_sym_GT_EQ] = ACTIONS(2958), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_struct] = ACTIONS(2958), + [anon_sym_mut] = ACTIONS(2958), + [anon_sym_PLUS_PLUS] = ACTIONS(2958), + [anon_sym_DASH_DASH] = ACTIONS(2958), + [anon_sym_QMARK] = ACTIONS(2958), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_go] = ACTIONS(2958), + [anon_sym_spawn] = ACTIONS(2958), + [anon_sym_json_DOTdecode] = ACTIONS(2958), + [anon_sym_LBRACK2] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_CARET] = ACTIONS(2958), + [anon_sym_AMP] = ACTIONS(2958), + [anon_sym_LT_DASH] = ACTIONS(2958), + [anon_sym_LT_LT] = ACTIONS(2958), + [anon_sym_GT_GT] = ACTIONS(2958), + [anon_sym_GT_GT_GT] = ACTIONS(2958), + [anon_sym_AMP_CARET] = ACTIONS(2958), + [anon_sym_AMP_AMP] = ACTIONS(2958), + [anon_sym_PIPE_PIPE] = ACTIONS(2958), + [anon_sym_or] = ACTIONS(2958), + [sym_none] = ACTIONS(2958), + [sym_true] = ACTIONS(2958), + [sym_false] = ACTIONS(2958), + [sym_nil] = ACTIONS(2958), + [anon_sym_QMARK_DOT] = ACTIONS(2958), + [anon_sym_POUND_LBRACK] = ACTIONS(2958), + [anon_sym_if] = ACTIONS(2958), + [anon_sym_DOLLARif] = ACTIONS(2958), + [anon_sym_is] = ACTIONS(2958), + [anon_sym_BANGis] = ACTIONS(2958), + [anon_sym_in] = ACTIONS(2958), + [anon_sym_BANGin] = ACTIONS(2958), + [anon_sym_match] = ACTIONS(2958), + [anon_sym_select] = ACTIONS(2958), + [anon_sym_lock] = ACTIONS(2958), + [anon_sym_rlock] = ACTIONS(2958), + [anon_sym_unsafe] = ACTIONS(2958), + [anon_sym_sql] = ACTIONS(2958), + [sym_int_literal] = ACTIONS(2958), + [sym_float_literal] = ACTIONS(2958), + [sym_rune_literal] = ACTIONS(2958), + [anon_sym_AT] = ACTIONS(2958), + [anon_sym_shared] = ACTIONS(2958), + [anon_sym_map_LBRACK] = ACTIONS(2958), + [anon_sym_chan] = ACTIONS(2958), + [anon_sym_thread] = ACTIONS(2958), + [anon_sym_atomic] = ACTIONS(2958), + [sym___double_quote] = ACTIONS(2958), + [sym___single_quote] = ACTIONS(2958), + [sym___c_double_quote] = ACTIONS(2958), + [sym___c_single_quote] = ACTIONS(2958), + [sym___r_double_quote] = ACTIONS(2958), + [sym___r_single_quote] = ACTIONS(2958), + }, + [1246] = { + [sym_identifier] = ACTIONS(3147), + [anon_sym_LF] = ACTIONS(3147), + [anon_sym_CR] = ACTIONS(3147), + [anon_sym_CR_LF] = ACTIONS(3147), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3147), + [anon_sym_DOT] = ACTIONS(3147), + [anon_sym_as] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_COMMA] = ACTIONS(3147), + [anon_sym_RBRACE] = ACTIONS(3147), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_PIPE] = ACTIONS(3147), + [anon_sym_fn] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_SLASH] = ACTIONS(3147), + [anon_sym_PERCENT] = ACTIONS(3147), + [anon_sym_LT] = ACTIONS(3147), + [anon_sym_GT] = ACTIONS(3147), + [anon_sym_EQ_EQ] = ACTIONS(3147), + [anon_sym_BANG_EQ] = ACTIONS(3147), + [anon_sym_LT_EQ] = ACTIONS(3147), + [anon_sym_GT_EQ] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3145), + [anon_sym_struct] = ACTIONS(3147), + [anon_sym_mut] = ACTIONS(3147), + [anon_sym_PLUS_PLUS] = ACTIONS(3147), + [anon_sym_DASH_DASH] = ACTIONS(3147), + [anon_sym_QMARK] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3147), + [anon_sym_go] = ACTIONS(3147), + [anon_sym_spawn] = ACTIONS(3147), + [anon_sym_json_DOTdecode] = ACTIONS(3147), + [anon_sym_LBRACK2] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3147), + [anon_sym_CARET] = ACTIONS(3147), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym_LT_DASH] = ACTIONS(3147), + [anon_sym_LT_LT] = ACTIONS(3147), + [anon_sym_GT_GT] = ACTIONS(3147), + [anon_sym_GT_GT_GT] = ACTIONS(3147), + [anon_sym_AMP_CARET] = ACTIONS(3147), + [anon_sym_AMP_AMP] = ACTIONS(3147), + [anon_sym_PIPE_PIPE] = ACTIONS(3147), + [anon_sym_or] = ACTIONS(3147), + [sym_none] = ACTIONS(3147), + [sym_true] = ACTIONS(3147), + [sym_false] = ACTIONS(3147), + [sym_nil] = ACTIONS(3147), + [anon_sym_QMARK_DOT] = ACTIONS(3147), + [anon_sym_POUND_LBRACK] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_DOLLARif] = ACTIONS(3147), + [anon_sym_is] = ACTIONS(3147), + [anon_sym_BANGis] = ACTIONS(3147), + [anon_sym_in] = ACTIONS(3147), + [anon_sym_BANGin] = ACTIONS(3147), + [anon_sym_match] = ACTIONS(3147), + [anon_sym_select] = ACTIONS(3147), + [anon_sym_lock] = ACTIONS(3147), + [anon_sym_rlock] = ACTIONS(3147), + [anon_sym_unsafe] = ACTIONS(3147), + [anon_sym_sql] = ACTIONS(3147), + [sym_int_literal] = ACTIONS(3147), + [sym_float_literal] = ACTIONS(3147), + [sym_rune_literal] = ACTIONS(3147), + [anon_sym_AT] = ACTIONS(3147), + [anon_sym_shared] = ACTIONS(3147), + [anon_sym_map_LBRACK] = ACTIONS(3147), + [anon_sym_chan] = ACTIONS(3147), + [anon_sym_thread] = ACTIONS(3147), + [anon_sym_atomic] = ACTIONS(3147), + [sym___double_quote] = ACTIONS(3147), + [sym___single_quote] = ACTIONS(3147), + [sym___c_double_quote] = ACTIONS(3147), + [sym___c_single_quote] = ACTIONS(3147), + [sym___r_double_quote] = ACTIONS(3147), + [sym___r_single_quote] = ACTIONS(3147), + }, + [1247] = { + [sym_identifier] = ACTIONS(2858), + [anon_sym_LF] = ACTIONS(2858), + [anon_sym_CR] = ACTIONS(2858), + [anon_sym_CR_LF] = ACTIONS(2858), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym_DOT] = ACTIONS(2858), + [anon_sym_as] = ACTIONS(2858), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_COMMA] = ACTIONS(2858), + [anon_sym_RBRACE] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2858), + [anon_sym_PIPE] = ACTIONS(2858), + [anon_sym_fn] = ACTIONS(2858), + [anon_sym_PLUS] = ACTIONS(2858), + [anon_sym_DASH] = ACTIONS(2858), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_SLASH] = ACTIONS(2858), + [anon_sym_PERCENT] = ACTIONS(2858), + [anon_sym_LT] = ACTIONS(2858), + [anon_sym_GT] = ACTIONS(2858), + [anon_sym_EQ_EQ] = ACTIONS(2858), + [anon_sym_BANG_EQ] = ACTIONS(2858), + [anon_sym_LT_EQ] = ACTIONS(2858), + [anon_sym_GT_EQ] = ACTIONS(2858), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2858), + [anon_sym_mut] = ACTIONS(2858), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [anon_sym_QMARK] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_go] = ACTIONS(2858), + [anon_sym_spawn] = ACTIONS(2858), + [anon_sym_json_DOTdecode] = ACTIONS(2858), + [anon_sym_LBRACK2] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2858), + [anon_sym_CARET] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2858), + [anon_sym_LT_DASH] = ACTIONS(2858), + [anon_sym_LT_LT] = ACTIONS(2858), + [anon_sym_GT_GT] = ACTIONS(2858), + [anon_sym_GT_GT_GT] = ACTIONS(2858), + [anon_sym_AMP_CARET] = ACTIONS(2858), + [anon_sym_AMP_AMP] = ACTIONS(2858), + [anon_sym_PIPE_PIPE] = ACTIONS(2858), + [anon_sym_or] = ACTIONS(2858), + [sym_none] = ACTIONS(2858), + [sym_true] = ACTIONS(2858), + [sym_false] = ACTIONS(2858), + [sym_nil] = ACTIONS(2858), + [anon_sym_QMARK_DOT] = ACTIONS(2858), + [anon_sym_POUND_LBRACK] = ACTIONS(2858), + [anon_sym_if] = ACTIONS(2858), + [anon_sym_DOLLARif] = ACTIONS(2858), + [anon_sym_is] = ACTIONS(2858), + [anon_sym_BANGis] = ACTIONS(2858), + [anon_sym_in] = ACTIONS(2858), + [anon_sym_BANGin] = ACTIONS(2858), + [anon_sym_match] = ACTIONS(2858), + [anon_sym_select] = ACTIONS(2858), + [anon_sym_lock] = ACTIONS(2858), + [anon_sym_rlock] = ACTIONS(2858), + [anon_sym_unsafe] = ACTIONS(2858), + [anon_sym_sql] = ACTIONS(2858), + [sym_int_literal] = ACTIONS(2858), + [sym_float_literal] = ACTIONS(2858), + [sym_rune_literal] = ACTIONS(2858), + [anon_sym_AT] = ACTIONS(2858), + [anon_sym_shared] = ACTIONS(2858), + [anon_sym_map_LBRACK] = ACTIONS(2858), + [anon_sym_chan] = ACTIONS(2858), + [anon_sym_thread] = ACTIONS(2858), + [anon_sym_atomic] = ACTIONS(2858), + [sym___double_quote] = ACTIONS(2858), + [sym___single_quote] = ACTIONS(2858), + [sym___c_double_quote] = ACTIONS(2858), + [sym___c_single_quote] = ACTIONS(2858), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2858), + }, + [1248] = { + [sym_identifier] = ACTIONS(2854), + [anon_sym_LF] = ACTIONS(2854), + [anon_sym_CR] = ACTIONS(2854), + [anon_sym_CR_LF] = ACTIONS(2854), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_DOT] = ACTIONS(2854), + [anon_sym_as] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_COMMA] = ACTIONS(2854), + [anon_sym_RBRACE] = ACTIONS(2854), + [anon_sym_LPAREN] = ACTIONS(2854), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_fn] = ACTIONS(2854), + [anon_sym_PLUS] = ACTIONS(2854), + [anon_sym_DASH] = ACTIONS(2854), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_SLASH] = ACTIONS(2854), + [anon_sym_PERCENT] = ACTIONS(2854), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_GT] = ACTIONS(2854), + [anon_sym_EQ_EQ] = ACTIONS(2854), + [anon_sym_BANG_EQ] = ACTIONS(2854), + [anon_sym_LT_EQ] = ACTIONS(2854), + [anon_sym_GT_EQ] = ACTIONS(2854), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2854), + [anon_sym_mut] = ACTIONS(2854), + [anon_sym_PLUS_PLUS] = ACTIONS(2854), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [anon_sym_QMARK] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_go] = ACTIONS(2854), + [anon_sym_spawn] = ACTIONS(2854), + [anon_sym_json_DOTdecode] = ACTIONS(2854), + [anon_sym_LBRACK2] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2854), + [anon_sym_CARET] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_LT_DASH] = ACTIONS(2854), + [anon_sym_LT_LT] = ACTIONS(2854), + [anon_sym_GT_GT] = ACTIONS(2854), + [anon_sym_GT_GT_GT] = ACTIONS(2854), + [anon_sym_AMP_CARET] = ACTIONS(2854), + [anon_sym_AMP_AMP] = ACTIONS(2854), + [anon_sym_PIPE_PIPE] = ACTIONS(2854), + [anon_sym_or] = ACTIONS(2854), + [sym_none] = ACTIONS(2854), + [sym_true] = ACTIONS(2854), + [sym_false] = ACTIONS(2854), + [sym_nil] = ACTIONS(2854), + [anon_sym_QMARK_DOT] = ACTIONS(2854), + [anon_sym_POUND_LBRACK] = ACTIONS(2854), + [anon_sym_if] = ACTIONS(2854), + [anon_sym_DOLLARif] = ACTIONS(2854), + [anon_sym_is] = ACTIONS(2854), + [anon_sym_BANGis] = ACTIONS(2854), + [anon_sym_in] = ACTIONS(2854), + [anon_sym_BANGin] = ACTIONS(2854), + [anon_sym_match] = ACTIONS(2854), + [anon_sym_select] = ACTIONS(2854), + [anon_sym_lock] = ACTIONS(2854), + [anon_sym_rlock] = ACTIONS(2854), + [anon_sym_unsafe] = ACTIONS(2854), + [anon_sym_sql] = ACTIONS(2854), + [sym_int_literal] = ACTIONS(2854), + [sym_float_literal] = ACTIONS(2854), + [sym_rune_literal] = ACTIONS(2854), + [anon_sym_AT] = ACTIONS(2854), + [anon_sym_shared] = ACTIONS(2854), + [anon_sym_map_LBRACK] = ACTIONS(2854), + [anon_sym_chan] = ACTIONS(2854), + [anon_sym_thread] = ACTIONS(2854), + [anon_sym_atomic] = ACTIONS(2854), + [sym___double_quote] = ACTIONS(2854), + [sym___single_quote] = ACTIONS(2854), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2854), + [sym___r_double_quote] = ACTIONS(2854), + [sym___r_single_quote] = ACTIONS(2854), + }, + [1249] = { + [sym_identifier] = ACTIONS(2794), + [anon_sym_LF] = ACTIONS(2794), + [anon_sym_CR] = ACTIONS(2794), + [anon_sym_CR_LF] = ACTIONS(2794), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym_DOT] = ACTIONS(2794), + [anon_sym_as] = ACTIONS(2794), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_COMMA] = ACTIONS(2794), + [anon_sym_RBRACE] = ACTIONS(2794), + [anon_sym_LPAREN] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_fn] = ACTIONS(2794), + [anon_sym_PLUS] = ACTIONS(2794), + [anon_sym_DASH] = ACTIONS(2794), + [anon_sym_STAR] = ACTIONS(2794), + [anon_sym_SLASH] = ACTIONS(2794), + [anon_sym_PERCENT] = ACTIONS(2794), + [anon_sym_LT] = ACTIONS(2794), + [anon_sym_GT] = ACTIONS(2794), + [anon_sym_EQ_EQ] = ACTIONS(2794), + [anon_sym_BANG_EQ] = ACTIONS(2794), + [anon_sym_LT_EQ] = ACTIONS(2794), + [anon_sym_GT_EQ] = ACTIONS(2794), + [anon_sym_LBRACK] = ACTIONS(2792), + [anon_sym_struct] = ACTIONS(2794), + [anon_sym_mut] = ACTIONS(2794), + [anon_sym_PLUS_PLUS] = ACTIONS(2794), + [anon_sym_DASH_DASH] = ACTIONS(2794), + [anon_sym_QMARK] = ACTIONS(2794), + [anon_sym_BANG] = ACTIONS(2794), + [anon_sym_go] = ACTIONS(2794), + [anon_sym_spawn] = ACTIONS(2794), + [anon_sym_json_DOTdecode] = ACTIONS(2794), + [anon_sym_LBRACK2] = ACTIONS(2794), + [anon_sym_TILDE] = ACTIONS(2794), + [anon_sym_CARET] = ACTIONS(2794), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_LT_DASH] = ACTIONS(2794), + [anon_sym_LT_LT] = ACTIONS(2794), + [anon_sym_GT_GT] = ACTIONS(2794), + [anon_sym_GT_GT_GT] = ACTIONS(2794), + [anon_sym_AMP_CARET] = ACTIONS(2794), + [anon_sym_AMP_AMP] = ACTIONS(2794), + [anon_sym_PIPE_PIPE] = ACTIONS(2794), + [anon_sym_or] = ACTIONS(2794), + [sym_none] = ACTIONS(2794), + [sym_true] = ACTIONS(2794), + [sym_false] = ACTIONS(2794), + [sym_nil] = ACTIONS(2794), + [anon_sym_QMARK_DOT] = ACTIONS(2794), + [anon_sym_POUND_LBRACK] = ACTIONS(2794), + [anon_sym_if] = ACTIONS(2794), + [anon_sym_DOLLARif] = ACTIONS(2794), + [anon_sym_is] = ACTIONS(2794), + [anon_sym_BANGis] = ACTIONS(2794), + [anon_sym_in] = ACTIONS(2794), + [anon_sym_BANGin] = ACTIONS(2794), + [anon_sym_match] = ACTIONS(2794), + [anon_sym_select] = ACTIONS(2794), + [anon_sym_lock] = ACTIONS(2794), + [anon_sym_rlock] = ACTIONS(2794), + [anon_sym_unsafe] = ACTIONS(2794), + [anon_sym_sql] = ACTIONS(2794), + [sym_int_literal] = ACTIONS(2794), + [sym_float_literal] = ACTIONS(2794), + [sym_rune_literal] = ACTIONS(2794), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_shared] = ACTIONS(2794), + [anon_sym_map_LBRACK] = ACTIONS(2794), + [anon_sym_chan] = ACTIONS(2794), + [anon_sym_thread] = ACTIONS(2794), + [anon_sym_atomic] = ACTIONS(2794), + [sym___double_quote] = ACTIONS(2794), + [sym___single_quote] = ACTIONS(2794), + [sym___c_double_quote] = ACTIONS(2794), + [sym___c_single_quote] = ACTIONS(2794), + [sym___r_double_quote] = ACTIONS(2794), + [sym___r_single_quote] = ACTIONS(2794), + }, + [1250] = { + [sym_identifier] = ACTIONS(3046), + [anon_sym_LF] = ACTIONS(3046), + [anon_sym_CR] = ACTIONS(3046), + [anon_sym_CR_LF] = ACTIONS(3046), + [sym_comment] = ACTIONS(493), + [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_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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3046), + [sym___single_quote] = ACTIONS(3046), + [sym___c_double_quote] = ACTIONS(3046), + [sym___c_single_quote] = ACTIONS(3046), + [sym___r_double_quote] = ACTIONS(3046), + [sym___r_single_quote] = ACTIONS(3046), + }, + [1251] = { + [sym_identifier] = ACTIONS(3125), + [anon_sym_LF] = ACTIONS(3125), + [anon_sym_CR] = ACTIONS(3125), + [anon_sym_CR_LF] = ACTIONS(3125), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3125), + [anon_sym_DOT] = ACTIONS(3125), + [anon_sym_as] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(3125), + [anon_sym_COMMA] = ACTIONS(3125), + [anon_sym_RBRACE] = ACTIONS(3125), + [anon_sym_LPAREN] = ACTIONS(3125), + [anon_sym_PIPE] = ACTIONS(3125), + [anon_sym_fn] = ACTIONS(3125), + [anon_sym_PLUS] = ACTIONS(3125), + [anon_sym_DASH] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(3125), + [anon_sym_SLASH] = ACTIONS(3125), + [anon_sym_PERCENT] = ACTIONS(3125), + [anon_sym_LT] = ACTIONS(3125), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_EQ_EQ] = ACTIONS(3125), + [anon_sym_BANG_EQ] = ACTIONS(3125), + [anon_sym_LT_EQ] = ACTIONS(3125), + [anon_sym_GT_EQ] = ACTIONS(3125), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_struct] = ACTIONS(3125), + [anon_sym_mut] = ACTIONS(3125), + [anon_sym_PLUS_PLUS] = ACTIONS(3125), + [anon_sym_DASH_DASH] = ACTIONS(3125), + [anon_sym_QMARK] = ACTIONS(3125), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_go] = ACTIONS(3125), + [anon_sym_spawn] = ACTIONS(3125), + [anon_sym_json_DOTdecode] = ACTIONS(3125), + [anon_sym_LBRACK2] = ACTIONS(3125), + [anon_sym_TILDE] = ACTIONS(3125), + [anon_sym_CARET] = ACTIONS(3125), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_LT_DASH] = ACTIONS(3125), + [anon_sym_LT_LT] = ACTIONS(3125), + [anon_sym_GT_GT] = ACTIONS(3125), + [anon_sym_GT_GT_GT] = ACTIONS(3125), + [anon_sym_AMP_CARET] = ACTIONS(3125), + [anon_sym_AMP_AMP] = ACTIONS(3125), + [anon_sym_PIPE_PIPE] = ACTIONS(3125), + [anon_sym_or] = ACTIONS(3125), + [sym_none] = ACTIONS(3125), + [sym_true] = ACTIONS(3125), + [sym_false] = ACTIONS(3125), + [sym_nil] = ACTIONS(3125), + [anon_sym_QMARK_DOT] = ACTIONS(3125), + [anon_sym_POUND_LBRACK] = ACTIONS(3125), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_DOLLARif] = ACTIONS(3125), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3125), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_BANGin] = ACTIONS(3125), + [anon_sym_match] = ACTIONS(3125), + [anon_sym_select] = ACTIONS(3125), + [anon_sym_lock] = ACTIONS(3125), + [anon_sym_rlock] = ACTIONS(3125), + [anon_sym_unsafe] = ACTIONS(3125), + [anon_sym_sql] = ACTIONS(3125), + [sym_int_literal] = ACTIONS(3125), + [sym_float_literal] = ACTIONS(3125), + [sym_rune_literal] = ACTIONS(3125), + [anon_sym_AT] = ACTIONS(3125), + [anon_sym_shared] = ACTIONS(3125), + [anon_sym_map_LBRACK] = ACTIONS(3125), + [anon_sym_chan] = ACTIONS(3125), + [anon_sym_thread] = ACTIONS(3125), + [anon_sym_atomic] = ACTIONS(3125), + [sym___double_quote] = ACTIONS(3125), + [sym___single_quote] = ACTIONS(3125), + [sym___c_double_quote] = ACTIONS(3125), + [sym___c_single_quote] = ACTIONS(3125), + [sym___r_double_quote] = ACTIONS(3125), + [sym___r_single_quote] = ACTIONS(3125), }, - [1267] = { - [sym_identifier] = ACTIONS(2848), - [anon_sym_LF] = ACTIONS(2848), - [anon_sym_CR] = ACTIONS(2848), - [anon_sym_CR_LF] = ACTIONS(2848), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2848), - [anon_sym_DOT] = ACTIONS(2848), - [anon_sym_as] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2848), - [anon_sym_COMMA] = ACTIONS(2848), - [anon_sym_RBRACE] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_PIPE] = ACTIONS(2848), - [anon_sym_fn] = ACTIONS(2848), - [anon_sym_PLUS] = ACTIONS(2848), - [anon_sym_DASH] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2848), - [anon_sym_SLASH] = ACTIONS(2848), - [anon_sym_PERCENT] = ACTIONS(2848), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_GT] = ACTIONS(2848), - [anon_sym_EQ_EQ] = ACTIONS(2848), - [anon_sym_BANG_EQ] = ACTIONS(2848), - [anon_sym_LT_EQ] = ACTIONS(2848), - [anon_sym_GT_EQ] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2846), - [anon_sym_struct] = ACTIONS(2848), - [anon_sym_mut] = ACTIONS(2848), - [anon_sym_PLUS_PLUS] = ACTIONS(2848), - [anon_sym_DASH_DASH] = ACTIONS(2848), - [anon_sym_QMARK] = ACTIONS(2848), - [anon_sym_BANG] = ACTIONS(2848), - [anon_sym_go] = ACTIONS(2848), - [anon_sym_spawn] = ACTIONS(2848), - [anon_sym_json_DOTdecode] = ACTIONS(2848), - [anon_sym_LBRACK2] = ACTIONS(2848), - [anon_sym_TILDE] = ACTIONS(2848), - [anon_sym_CARET] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2848), - [anon_sym_LT_DASH] = ACTIONS(2848), - [anon_sym_LT_LT] = ACTIONS(2848), - [anon_sym_GT_GT] = ACTIONS(2848), - [anon_sym_GT_GT_GT] = ACTIONS(2848), - [anon_sym_AMP_CARET] = ACTIONS(2848), - [anon_sym_AMP_AMP] = ACTIONS(2848), - [anon_sym_PIPE_PIPE] = ACTIONS(2848), - [anon_sym_or] = ACTIONS(2848), - [sym_none] = ACTIONS(2848), - [sym_true] = ACTIONS(2848), - [sym_false] = ACTIONS(2848), - [sym_nil] = ACTIONS(2848), - [anon_sym_QMARK_DOT] = ACTIONS(2848), - [anon_sym_POUND_LBRACK] = ACTIONS(2848), - [anon_sym_if] = ACTIONS(2848), - [anon_sym_DOLLARif] = ACTIONS(2848), - [anon_sym_is] = ACTIONS(2848), - [anon_sym_BANGis] = ACTIONS(2848), - [anon_sym_in] = ACTIONS(2848), - [anon_sym_BANGin] = ACTIONS(2848), - [anon_sym_match] = ACTIONS(2848), - [anon_sym_select] = ACTIONS(2848), - [anon_sym_lock] = ACTIONS(2848), - [anon_sym_rlock] = ACTIONS(2848), - [anon_sym_unsafe] = ACTIONS(2848), - [anon_sym_sql] = ACTIONS(2848), - [sym_int_literal] = ACTIONS(2848), - [sym_float_literal] = ACTIONS(2848), - [sym_rune_literal] = ACTIONS(2848), - [anon_sym_AT] = ACTIONS(2848), - [anon_sym_shared] = ACTIONS(2848), - [anon_sym_map_LBRACK] = ACTIONS(2848), - [anon_sym_chan] = ACTIONS(2848), - [anon_sym_thread] = ACTIONS(2848), - [anon_sym_atomic] = ACTIONS(2848), - [sym___double_quote] = ACTIONS(2848), - [sym___single_quote] = ACTIONS(2848), - [sym___c_double_quote] = ACTIONS(2848), - [sym___c_single_quote] = ACTIONS(2848), - [sym___r_double_quote] = ACTIONS(2848), - [sym___r_single_quote] = ACTIONS(2848), + [1252] = { + [sym_identifier] = ACTIONS(3137), + [anon_sym_LF] = ACTIONS(3137), + [anon_sym_CR] = ACTIONS(3137), + [anon_sym_CR_LF] = ACTIONS(3137), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3137), + [anon_sym_DOT] = ACTIONS(3137), + [anon_sym_as] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3137), + [anon_sym_COMMA] = ACTIONS(3137), + [anon_sym_RBRACE] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_PIPE] = ACTIONS(3137), + [anon_sym_fn] = ACTIONS(3137), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(3137), + [anon_sym_SLASH] = ACTIONS(3137), + [anon_sym_PERCENT] = ACTIONS(3137), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3137), + [anon_sym_EQ_EQ] = ACTIONS(3137), + [anon_sym_BANG_EQ] = ACTIONS(3137), + [anon_sym_LT_EQ] = ACTIONS(3137), + [anon_sym_GT_EQ] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_struct] = ACTIONS(3137), + [anon_sym_mut] = ACTIONS(3137), + [anon_sym_PLUS_PLUS] = ACTIONS(3137), + [anon_sym_DASH_DASH] = ACTIONS(3137), + [anon_sym_QMARK] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_go] = ACTIONS(3137), + [anon_sym_spawn] = ACTIONS(3137), + [anon_sym_json_DOTdecode] = ACTIONS(3137), + [anon_sym_LBRACK2] = ACTIONS(3137), + [anon_sym_TILDE] = ACTIONS(3137), + [anon_sym_CARET] = ACTIONS(3137), + [anon_sym_AMP] = ACTIONS(3137), + [anon_sym_LT_DASH] = ACTIONS(3137), + [anon_sym_LT_LT] = ACTIONS(3137), + [anon_sym_GT_GT] = ACTIONS(3137), + [anon_sym_GT_GT_GT] = ACTIONS(3137), + [anon_sym_AMP_CARET] = ACTIONS(3137), + [anon_sym_AMP_AMP] = ACTIONS(3137), + [anon_sym_PIPE_PIPE] = ACTIONS(3137), + [anon_sym_or] = ACTIONS(3137), + [sym_none] = ACTIONS(3137), + [sym_true] = ACTIONS(3137), + [sym_false] = ACTIONS(3137), + [sym_nil] = ACTIONS(3137), + [anon_sym_QMARK_DOT] = ACTIONS(3137), + [anon_sym_POUND_LBRACK] = ACTIONS(3137), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_DOLLARif] = ACTIONS(3137), + [anon_sym_is] = ACTIONS(3137), + [anon_sym_BANGis] = ACTIONS(3137), + [anon_sym_in] = ACTIONS(3137), + [anon_sym_BANGin] = ACTIONS(3137), + [anon_sym_match] = ACTIONS(3137), + [anon_sym_select] = ACTIONS(3137), + [anon_sym_lock] = ACTIONS(3137), + [anon_sym_rlock] = ACTIONS(3137), + [anon_sym_unsafe] = ACTIONS(3137), + [anon_sym_sql] = ACTIONS(3137), + [sym_int_literal] = ACTIONS(3137), + [sym_float_literal] = ACTIONS(3137), + [sym_rune_literal] = ACTIONS(3137), + [anon_sym_AT] = ACTIONS(3137), + [anon_sym_shared] = ACTIONS(3137), + [anon_sym_map_LBRACK] = ACTIONS(3137), + [anon_sym_chan] = ACTIONS(3137), + [anon_sym_thread] = ACTIONS(3137), + [anon_sym_atomic] = ACTIONS(3137), + [sym___double_quote] = ACTIONS(3137), + [sym___single_quote] = ACTIONS(3137), + [sym___c_double_quote] = ACTIONS(3137), + [sym___c_single_quote] = ACTIONS(3137), + [sym___r_double_quote] = ACTIONS(3137), + [sym___r_single_quote] = ACTIONS(3137), }, - [1268] = { - [sym_identifier] = ACTIONS(3193), - [anon_sym_LF] = ACTIONS(3193), - [anon_sym_CR] = ACTIONS(3193), - [anon_sym_CR_LF] = ACTIONS(3193), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3193), - [anon_sym_DOT] = ACTIONS(3193), - [anon_sym_as] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_COMMA] = ACTIONS(3193), - [anon_sym_RBRACE] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym_PIPE] = ACTIONS(3193), - [anon_sym_fn] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(3193), - [anon_sym_SLASH] = ACTIONS(3193), - [anon_sym_PERCENT] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(3193), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_LT_EQ] = ACTIONS(3193), - [anon_sym_GT_EQ] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3191), - [anon_sym_struct] = ACTIONS(3193), - [anon_sym_mut] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3193), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [anon_sym_QMARK] = ACTIONS(3193), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_go] = ACTIONS(3193), - [anon_sym_spawn] = ACTIONS(3193), - [anon_sym_json_DOTdecode] = ACTIONS(3193), - [anon_sym_LBRACK2] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_CARET] = ACTIONS(3193), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT_DASH] = ACTIONS(3193), - [anon_sym_LT_LT] = ACTIONS(3193), - [anon_sym_GT_GT] = ACTIONS(3193), - [anon_sym_GT_GT_GT] = ACTIONS(3193), - [anon_sym_AMP_CARET] = ACTIONS(3193), - [anon_sym_AMP_AMP] = ACTIONS(3193), - [anon_sym_PIPE_PIPE] = ACTIONS(3193), - [anon_sym_or] = ACTIONS(3193), - [sym_none] = ACTIONS(3193), - [sym_true] = ACTIONS(3193), - [sym_false] = ACTIONS(3193), - [sym_nil] = ACTIONS(3193), - [anon_sym_QMARK_DOT] = ACTIONS(3193), - [anon_sym_POUND_LBRACK] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_DOLLARif] = ACTIONS(3193), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3193), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_BANGin] = ACTIONS(3193), - [anon_sym_match] = ACTIONS(3193), - [anon_sym_select] = ACTIONS(3193), - [anon_sym_lock] = ACTIONS(3193), - [anon_sym_rlock] = ACTIONS(3193), - [anon_sym_unsafe] = ACTIONS(3193), - [anon_sym_sql] = ACTIONS(3193), - [sym_int_literal] = ACTIONS(3193), - [sym_float_literal] = ACTIONS(3193), - [sym_rune_literal] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(3193), - [anon_sym_shared] = ACTIONS(3193), - [anon_sym_map_LBRACK] = ACTIONS(3193), - [anon_sym_chan] = ACTIONS(3193), - [anon_sym_thread] = ACTIONS(3193), - [anon_sym_atomic] = ACTIONS(3193), - [sym___double_quote] = ACTIONS(3193), - [sym___single_quote] = ACTIONS(3193), - [sym___c_double_quote] = ACTIONS(3193), - [sym___c_single_quote] = ACTIONS(3193), - [sym___r_double_quote] = ACTIONS(3193), - [sym___r_single_quote] = ACTIONS(3193), + [1253] = { + [sym_identifier] = ACTIONS(2922), + [anon_sym_LF] = ACTIONS(2922), + [anon_sym_CR] = ACTIONS(2922), + [anon_sym_CR_LF] = ACTIONS(2922), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2922), + [anon_sym_DOT] = ACTIONS(2922), + [anon_sym_as] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2922), + [anon_sym_COMMA] = ACTIONS(2922), + [anon_sym_RBRACE] = ACTIONS(2922), + [anon_sym_LPAREN] = ACTIONS(2922), + [anon_sym_PIPE] = ACTIONS(2922), + [anon_sym_fn] = ACTIONS(2922), + [anon_sym_PLUS] = ACTIONS(2922), + [anon_sym_DASH] = ACTIONS(2922), + [anon_sym_STAR] = ACTIONS(2922), + [anon_sym_SLASH] = ACTIONS(2922), + [anon_sym_PERCENT] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_GT] = ACTIONS(2922), + [anon_sym_EQ_EQ] = ACTIONS(2922), + [anon_sym_BANG_EQ] = ACTIONS(2922), + [anon_sym_LT_EQ] = ACTIONS(2922), + [anon_sym_GT_EQ] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2920), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_mut] = ACTIONS(2922), + [anon_sym_PLUS_PLUS] = ACTIONS(2922), + [anon_sym_DASH_DASH] = ACTIONS(2922), + [anon_sym_QMARK] = ACTIONS(2922), + [anon_sym_BANG] = ACTIONS(2922), + [anon_sym_go] = ACTIONS(2922), + [anon_sym_spawn] = ACTIONS(2922), + [anon_sym_json_DOTdecode] = ACTIONS(2922), + [anon_sym_LBRACK2] = ACTIONS(2922), + [anon_sym_TILDE] = ACTIONS(2922), + [anon_sym_CARET] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2922), + [anon_sym_LT_DASH] = ACTIONS(2922), + [anon_sym_LT_LT] = ACTIONS(2922), + [anon_sym_GT_GT] = ACTIONS(2922), + [anon_sym_GT_GT_GT] = ACTIONS(2922), + [anon_sym_AMP_CARET] = ACTIONS(2922), + [anon_sym_AMP_AMP] = ACTIONS(2922), + [anon_sym_PIPE_PIPE] = ACTIONS(2922), + [anon_sym_or] = ACTIONS(2922), + [sym_none] = ACTIONS(2922), + [sym_true] = ACTIONS(2922), + [sym_false] = ACTIONS(2922), + [sym_nil] = ACTIONS(2922), + [anon_sym_QMARK_DOT] = ACTIONS(2922), + [anon_sym_POUND_LBRACK] = ACTIONS(2922), + [anon_sym_if] = ACTIONS(2922), + [anon_sym_DOLLARif] = ACTIONS(2922), + [anon_sym_is] = ACTIONS(2922), + [anon_sym_BANGis] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(2922), + [anon_sym_BANGin] = ACTIONS(2922), + [anon_sym_match] = ACTIONS(2922), + [anon_sym_select] = ACTIONS(2922), + [anon_sym_lock] = ACTIONS(2922), + [anon_sym_rlock] = ACTIONS(2922), + [anon_sym_unsafe] = ACTIONS(2922), + [anon_sym_sql] = ACTIONS(2922), + [sym_int_literal] = ACTIONS(2922), + [sym_float_literal] = ACTIONS(2922), + [sym_rune_literal] = ACTIONS(2922), + [anon_sym_AT] = ACTIONS(2922), + [anon_sym_shared] = ACTIONS(2922), + [anon_sym_map_LBRACK] = ACTIONS(2922), + [anon_sym_chan] = ACTIONS(2922), + [anon_sym_thread] = ACTIONS(2922), + [anon_sym_atomic] = ACTIONS(2922), + [sym___double_quote] = ACTIONS(2922), + [sym___single_quote] = ACTIONS(2922), + [sym___c_double_quote] = ACTIONS(2922), + [sym___c_single_quote] = ACTIONS(2922), + [sym___r_double_quote] = ACTIONS(2922), + [sym___r_single_quote] = ACTIONS(2922), }, - [1269] = { + [1254] = { [sym_identifier] = ACTIONS(3129), [anon_sym_LF] = ACTIONS(3129), [anon_sym_CR] = ACTIONS(3129), [anon_sym_CR_LF] = ACTIONS(3129), - [sym_comment] = ACTIONS(487), + [sym_comment] = ACTIONS(493), [anon_sym_SEMI] = ACTIONS(3129), [anon_sym_DOT] = ACTIONS(3129), [anon_sym_as] = ACTIONS(3129), @@ -164693,100 +163761,1577 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3129), [sym___r_single_quote] = ACTIONS(3129), }, + [1255] = { + [sym_identifier] = ACTIONS(2764), + [anon_sym_LF] = ACTIONS(2764), + [anon_sym_CR] = ACTIONS(2764), + [anon_sym_CR_LF] = ACTIONS(2764), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym_DOT] = ACTIONS(2764), + [anon_sym_as] = ACTIONS(2764), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_COMMA] = ACTIONS(2764), + [anon_sym_RBRACE] = ACTIONS(2764), + [anon_sym_LPAREN] = ACTIONS(2764), + [anon_sym_PIPE] = ACTIONS(2764), + [anon_sym_fn] = ACTIONS(2764), + [anon_sym_PLUS] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2764), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_SLASH] = ACTIONS(2764), + [anon_sym_PERCENT] = ACTIONS(2764), + [anon_sym_LT] = ACTIONS(2764), + [anon_sym_GT] = ACTIONS(2764), + [anon_sym_EQ_EQ] = ACTIONS(2764), + [anon_sym_BANG_EQ] = ACTIONS(2764), + [anon_sym_LT_EQ] = ACTIONS(2764), + [anon_sym_GT_EQ] = ACTIONS(2764), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2764), + [anon_sym_mut] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2764), + [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_QMARK] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_go] = ACTIONS(2764), + [anon_sym_spawn] = ACTIONS(2764), + [anon_sym_json_DOTdecode] = ACTIONS(2764), + [anon_sym_LBRACK2] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_CARET] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_LT_DASH] = ACTIONS(2764), + [anon_sym_LT_LT] = ACTIONS(2764), + [anon_sym_GT_GT] = ACTIONS(2764), + [anon_sym_GT_GT_GT] = ACTIONS(2764), + [anon_sym_AMP_CARET] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_PIPE_PIPE] = ACTIONS(2764), + [anon_sym_or] = ACTIONS(2764), + [sym_none] = ACTIONS(2764), + [sym_true] = ACTIONS(2764), + [sym_false] = ACTIONS(2764), + [sym_nil] = ACTIONS(2764), + [anon_sym_QMARK_DOT] = ACTIONS(2764), + [anon_sym_POUND_LBRACK] = ACTIONS(2764), + [anon_sym_if] = ACTIONS(2764), + [anon_sym_DOLLARif] = ACTIONS(2764), + [anon_sym_is] = ACTIONS(2764), + [anon_sym_BANGis] = ACTIONS(2764), + [anon_sym_in] = ACTIONS(2764), + [anon_sym_BANGin] = ACTIONS(2764), + [anon_sym_match] = ACTIONS(2764), + [anon_sym_select] = ACTIONS(2764), + [anon_sym_lock] = ACTIONS(2764), + [anon_sym_rlock] = ACTIONS(2764), + [anon_sym_unsafe] = ACTIONS(2764), + [anon_sym_sql] = ACTIONS(2764), + [sym_int_literal] = ACTIONS(2764), + [sym_float_literal] = ACTIONS(2764), + [sym_rune_literal] = ACTIONS(2764), + [anon_sym_AT] = ACTIONS(2764), + [anon_sym_shared] = ACTIONS(2764), + [anon_sym_map_LBRACK] = ACTIONS(2764), + [anon_sym_chan] = ACTIONS(2764), + [anon_sym_thread] = ACTIONS(2764), + [anon_sym_atomic] = ACTIONS(2764), + [sym___double_quote] = ACTIONS(2764), + [sym___single_quote] = ACTIONS(2764), + [sym___c_double_quote] = ACTIONS(2764), + [sym___c_single_quote] = ACTIONS(2764), + [sym___r_double_quote] = ACTIONS(2764), + [sym___r_single_quote] = ACTIONS(2764), + }, + [1256] = { + [sym_identifier] = ACTIONS(3018), + [anon_sym_LF] = ACTIONS(3018), + [anon_sym_CR] = ACTIONS(3018), + [anon_sym_CR_LF] = ACTIONS(3018), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3018), + [sym___single_quote] = ACTIONS(3018), + [sym___c_double_quote] = ACTIONS(3018), + [sym___c_single_quote] = ACTIONS(3018), + [sym___r_double_quote] = ACTIONS(3018), + [sym___r_single_quote] = ACTIONS(3018), + }, + [1257] = { + [sym_identifier] = ACTIONS(2826), + [anon_sym_LF] = ACTIONS(2826), + [anon_sym_CR] = ACTIONS(2826), + [anon_sym_CR_LF] = ACTIONS(2826), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_DOT] = ACTIONS(2826), + [anon_sym_as] = ACTIONS(2826), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_COMMA] = ACTIONS(2826), + [anon_sym_RBRACE] = ACTIONS(2826), + [anon_sym_LPAREN] = ACTIONS(2826), + [anon_sym_PIPE] = ACTIONS(2826), + [anon_sym_fn] = ACTIONS(2826), + [anon_sym_PLUS] = ACTIONS(2826), + [anon_sym_DASH] = ACTIONS(2826), + [anon_sym_STAR] = ACTIONS(2826), + [anon_sym_SLASH] = ACTIONS(2826), + [anon_sym_PERCENT] = ACTIONS(2826), + [anon_sym_LT] = ACTIONS(2826), + [anon_sym_GT] = ACTIONS(2826), + [anon_sym_EQ_EQ] = ACTIONS(2826), + [anon_sym_BANG_EQ] = ACTIONS(2826), + [anon_sym_LT_EQ] = ACTIONS(2826), + [anon_sym_GT_EQ] = ACTIONS(2826), + [anon_sym_LBRACK] = ACTIONS(2824), + [anon_sym_struct] = ACTIONS(2826), + [anon_sym_mut] = ACTIONS(2826), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [anon_sym_QMARK] = ACTIONS(2826), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_go] = ACTIONS(2826), + [anon_sym_spawn] = ACTIONS(2826), + [anon_sym_json_DOTdecode] = ACTIONS(2826), + [anon_sym_LBRACK2] = ACTIONS(2826), + [anon_sym_TILDE] = ACTIONS(2826), + [anon_sym_CARET] = ACTIONS(2826), + [anon_sym_AMP] = ACTIONS(2826), + [anon_sym_LT_DASH] = ACTIONS(2826), + [anon_sym_LT_LT] = ACTIONS(2826), + [anon_sym_GT_GT] = ACTIONS(2826), + [anon_sym_GT_GT_GT] = ACTIONS(2826), + [anon_sym_AMP_CARET] = ACTIONS(2826), + [anon_sym_AMP_AMP] = ACTIONS(2826), + [anon_sym_PIPE_PIPE] = ACTIONS(2826), + [anon_sym_or] = ACTIONS(2826), + [sym_none] = ACTIONS(2826), + [sym_true] = ACTIONS(2826), + [sym_false] = ACTIONS(2826), + [sym_nil] = ACTIONS(2826), + [anon_sym_QMARK_DOT] = ACTIONS(2826), + [anon_sym_POUND_LBRACK] = ACTIONS(2826), + [anon_sym_if] = ACTIONS(2826), + [anon_sym_DOLLARif] = ACTIONS(2826), + [anon_sym_is] = ACTIONS(2826), + [anon_sym_BANGis] = ACTIONS(2826), + [anon_sym_in] = ACTIONS(2826), + [anon_sym_BANGin] = ACTIONS(2826), + [anon_sym_match] = ACTIONS(2826), + [anon_sym_select] = ACTIONS(2826), + [anon_sym_lock] = ACTIONS(2826), + [anon_sym_rlock] = ACTIONS(2826), + [anon_sym_unsafe] = ACTIONS(2826), + [anon_sym_sql] = ACTIONS(2826), + [sym_int_literal] = ACTIONS(2826), + [sym_float_literal] = ACTIONS(2826), + [sym_rune_literal] = ACTIONS(2826), + [anon_sym_AT] = ACTIONS(2826), + [anon_sym_shared] = ACTIONS(2826), + [anon_sym_map_LBRACK] = ACTIONS(2826), + [anon_sym_chan] = ACTIONS(2826), + [anon_sym_thread] = ACTIONS(2826), + [anon_sym_atomic] = ACTIONS(2826), + [sym___double_quote] = ACTIONS(2826), + [sym___single_quote] = ACTIONS(2826), + [sym___c_double_quote] = ACTIONS(2826), + [sym___c_single_quote] = ACTIONS(2826), + [sym___r_double_quote] = ACTIONS(2826), + [sym___r_single_quote] = ACTIONS(2826), + }, + [1258] = { + [sym_identifier] = ACTIONS(3106), + [anon_sym_LF] = ACTIONS(3106), + [anon_sym_CR] = ACTIONS(3106), + [anon_sym_CR_LF] = ACTIONS(3106), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3106), + [anon_sym_DOT] = ACTIONS(3106), + [anon_sym_as] = ACTIONS(3106), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_COMMA] = ACTIONS(3106), + [anon_sym_RBRACE] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3106), + [anon_sym_PIPE] = ACTIONS(3106), + [anon_sym_fn] = ACTIONS(3106), + [anon_sym_PLUS] = ACTIONS(3106), + [anon_sym_DASH] = ACTIONS(3106), + [anon_sym_STAR] = ACTIONS(3106), + [anon_sym_SLASH] = ACTIONS(3106), + [anon_sym_PERCENT] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(3106), + [anon_sym_GT] = ACTIONS(3106), + [anon_sym_EQ_EQ] = ACTIONS(3106), + [anon_sym_BANG_EQ] = ACTIONS(3106), + [anon_sym_LT_EQ] = ACTIONS(3106), + [anon_sym_GT_EQ] = ACTIONS(3106), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_struct] = ACTIONS(3106), + [anon_sym_mut] = ACTIONS(3106), + [anon_sym_PLUS_PLUS] = ACTIONS(3106), + [anon_sym_DASH_DASH] = ACTIONS(3106), + [anon_sym_QMARK] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(3106), + [anon_sym_go] = ACTIONS(3106), + [anon_sym_spawn] = ACTIONS(3106), + [anon_sym_json_DOTdecode] = ACTIONS(3106), + [anon_sym_LBRACK2] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3106), + [anon_sym_CARET] = ACTIONS(3106), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT_DASH] = ACTIONS(3106), + [anon_sym_LT_LT] = ACTIONS(3106), + [anon_sym_GT_GT] = ACTIONS(3106), + [anon_sym_GT_GT_GT] = ACTIONS(3106), + [anon_sym_AMP_CARET] = ACTIONS(3106), + [anon_sym_AMP_AMP] = ACTIONS(3106), + [anon_sym_PIPE_PIPE] = ACTIONS(3106), + [anon_sym_or] = ACTIONS(3106), + [sym_none] = ACTIONS(3106), + [sym_true] = ACTIONS(3106), + [sym_false] = ACTIONS(3106), + [sym_nil] = ACTIONS(3106), + [anon_sym_QMARK_DOT] = ACTIONS(3106), + [anon_sym_POUND_LBRACK] = ACTIONS(3106), + [anon_sym_if] = ACTIONS(3106), + [anon_sym_DOLLARif] = ACTIONS(3106), + [anon_sym_is] = ACTIONS(3106), + [anon_sym_BANGis] = ACTIONS(3106), + [anon_sym_in] = ACTIONS(3106), + [anon_sym_BANGin] = ACTIONS(3106), + [anon_sym_match] = ACTIONS(3106), + [anon_sym_select] = ACTIONS(3106), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(3106), + [anon_sym_sql] = ACTIONS(3106), + [sym_int_literal] = ACTIONS(3106), + [sym_float_literal] = ACTIONS(3106), + [sym_rune_literal] = ACTIONS(3106), + [anon_sym_AT] = ACTIONS(3106), + [anon_sym_shared] = ACTIONS(3106), + [anon_sym_map_LBRACK] = ACTIONS(3106), + [anon_sym_chan] = ACTIONS(3106), + [anon_sym_thread] = ACTIONS(3106), + [anon_sym_atomic] = ACTIONS(3106), + [sym___double_quote] = ACTIONS(3106), + [sym___single_quote] = ACTIONS(3106), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3106), + [sym___r_double_quote] = ACTIONS(3106), + [sym___r_single_quote] = ACTIONS(3106), + }, + [1259] = { + [sym_identifier] = ACTIONS(2814), + [anon_sym_LF] = ACTIONS(2814), + [anon_sym_CR] = ACTIONS(2814), + [anon_sym_CR_LF] = ACTIONS(2814), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_DOT] = ACTIONS(2814), + [anon_sym_as] = ACTIONS(2814), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_COMMA] = ACTIONS(2814), + [anon_sym_RBRACE] = ACTIONS(2814), + [anon_sym_LPAREN] = ACTIONS(2814), + [anon_sym_PIPE] = ACTIONS(2814), + [anon_sym_fn] = ACTIONS(2814), + [anon_sym_PLUS] = ACTIONS(2814), + [anon_sym_DASH] = ACTIONS(2814), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_SLASH] = ACTIONS(2814), + [anon_sym_PERCENT] = ACTIONS(2814), + [anon_sym_LT] = ACTIONS(2814), + [anon_sym_GT] = ACTIONS(2814), + [anon_sym_EQ_EQ] = ACTIONS(2814), + [anon_sym_BANG_EQ] = ACTIONS(2814), + [anon_sym_LT_EQ] = ACTIONS(2814), + [anon_sym_GT_EQ] = ACTIONS(2814), + [anon_sym_LBRACK] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2814), + [anon_sym_mut] = ACTIONS(2814), + [anon_sym_PLUS_PLUS] = ACTIONS(2814), + [anon_sym_DASH_DASH] = ACTIONS(2814), + [anon_sym_QMARK] = ACTIONS(2814), + [anon_sym_BANG] = ACTIONS(2814), + [anon_sym_go] = ACTIONS(2814), + [anon_sym_spawn] = ACTIONS(2814), + [anon_sym_json_DOTdecode] = ACTIONS(2814), + [anon_sym_LBRACK2] = ACTIONS(2814), + [anon_sym_TILDE] = ACTIONS(2814), + [anon_sym_CARET] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2814), + [anon_sym_LT_DASH] = ACTIONS(2814), + [anon_sym_LT_LT] = ACTIONS(2814), + [anon_sym_GT_GT] = ACTIONS(2814), + [anon_sym_GT_GT_GT] = ACTIONS(2814), + [anon_sym_AMP_CARET] = ACTIONS(2814), + [anon_sym_AMP_AMP] = ACTIONS(2814), + [anon_sym_PIPE_PIPE] = ACTIONS(2814), + [anon_sym_or] = ACTIONS(2814), + [sym_none] = ACTIONS(2814), + [sym_true] = ACTIONS(2814), + [sym_false] = ACTIONS(2814), + [sym_nil] = ACTIONS(2814), + [anon_sym_QMARK_DOT] = ACTIONS(2814), + [anon_sym_POUND_LBRACK] = ACTIONS(2814), + [anon_sym_if] = ACTIONS(2814), + [anon_sym_DOLLARif] = ACTIONS(2814), + [anon_sym_is] = ACTIONS(2814), + [anon_sym_BANGis] = ACTIONS(2814), + [anon_sym_in] = ACTIONS(2814), + [anon_sym_BANGin] = ACTIONS(2814), + [anon_sym_match] = ACTIONS(2814), + [anon_sym_select] = ACTIONS(2814), + [anon_sym_lock] = ACTIONS(2814), + [anon_sym_rlock] = ACTIONS(2814), + [anon_sym_unsafe] = ACTIONS(2814), + [anon_sym_sql] = ACTIONS(2814), + [sym_int_literal] = ACTIONS(2814), + [sym_float_literal] = ACTIONS(2814), + [sym_rune_literal] = ACTIONS(2814), + [anon_sym_AT] = ACTIONS(2814), + [anon_sym_shared] = ACTIONS(2814), + [anon_sym_map_LBRACK] = ACTIONS(2814), + [anon_sym_chan] = ACTIONS(2814), + [anon_sym_thread] = ACTIONS(2814), + [anon_sym_atomic] = ACTIONS(2814), + [sym___double_quote] = ACTIONS(2814), + [sym___single_quote] = ACTIONS(2814), + [sym___c_double_quote] = ACTIONS(2814), + [sym___c_single_quote] = ACTIONS(2814), + [sym___r_double_quote] = ACTIONS(2814), + [sym___r_single_quote] = ACTIONS(2814), + }, + [1260] = { + [sym_identifier] = ACTIONS(2810), + [anon_sym_LF] = ACTIONS(2810), + [anon_sym_CR] = ACTIONS(2810), + [anon_sym_CR_LF] = ACTIONS(2810), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_DOT] = ACTIONS(2810), + [anon_sym_as] = ACTIONS(2810), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_COMMA] = ACTIONS(2810), + [anon_sym_RBRACE] = ACTIONS(2810), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_fn] = ACTIONS(2810), + [anon_sym_PLUS] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_STAR] = ACTIONS(2810), + [anon_sym_SLASH] = ACTIONS(2810), + [anon_sym_PERCENT] = ACTIONS(2810), + [anon_sym_LT] = ACTIONS(2810), + [anon_sym_GT] = ACTIONS(2810), + [anon_sym_EQ_EQ] = ACTIONS(2810), + [anon_sym_BANG_EQ] = ACTIONS(2810), + [anon_sym_LT_EQ] = ACTIONS(2810), + [anon_sym_GT_EQ] = ACTIONS(2810), + [anon_sym_LBRACK] = ACTIONS(2808), + [anon_sym_struct] = ACTIONS(2810), + [anon_sym_mut] = ACTIONS(2810), + [anon_sym_PLUS_PLUS] = ACTIONS(2810), + [anon_sym_DASH_DASH] = ACTIONS(2810), + [anon_sym_QMARK] = ACTIONS(2810), + [anon_sym_BANG] = ACTIONS(2810), + [anon_sym_go] = ACTIONS(2810), + [anon_sym_spawn] = ACTIONS(2810), + [anon_sym_json_DOTdecode] = ACTIONS(2810), + [anon_sym_LBRACK2] = ACTIONS(2810), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2810), + [anon_sym_LT_DASH] = ACTIONS(2810), + [anon_sym_LT_LT] = ACTIONS(2810), + [anon_sym_GT_GT] = ACTIONS(2810), + [anon_sym_GT_GT_GT] = ACTIONS(2810), + [anon_sym_AMP_CARET] = ACTIONS(2810), + [anon_sym_AMP_AMP] = ACTIONS(2810), + [anon_sym_PIPE_PIPE] = ACTIONS(2810), + [anon_sym_or] = ACTIONS(2810), + [sym_none] = ACTIONS(2810), + [sym_true] = ACTIONS(2810), + [sym_false] = ACTIONS(2810), + [sym_nil] = ACTIONS(2810), + [anon_sym_QMARK_DOT] = ACTIONS(2810), + [anon_sym_POUND_LBRACK] = ACTIONS(2810), + [anon_sym_if] = ACTIONS(2810), + [anon_sym_DOLLARif] = ACTIONS(2810), + [anon_sym_is] = ACTIONS(2810), + [anon_sym_BANGis] = ACTIONS(2810), + [anon_sym_in] = ACTIONS(2810), + [anon_sym_BANGin] = ACTIONS(2810), + [anon_sym_match] = ACTIONS(2810), + [anon_sym_select] = ACTIONS(2810), + [anon_sym_lock] = ACTIONS(2810), + [anon_sym_rlock] = ACTIONS(2810), + [anon_sym_unsafe] = ACTIONS(2810), + [anon_sym_sql] = ACTIONS(2810), + [sym_int_literal] = ACTIONS(2810), + [sym_float_literal] = ACTIONS(2810), + [sym_rune_literal] = ACTIONS(2810), + [anon_sym_AT] = ACTIONS(2810), + [anon_sym_shared] = ACTIONS(2810), + [anon_sym_map_LBRACK] = ACTIONS(2810), + [anon_sym_chan] = ACTIONS(2810), + [anon_sym_thread] = ACTIONS(2810), + [anon_sym_atomic] = ACTIONS(2810), + [sym___double_quote] = ACTIONS(2810), + [sym___single_quote] = ACTIONS(2810), + [sym___c_double_quote] = ACTIONS(2810), + [sym___c_single_quote] = ACTIONS(2810), + [sym___r_double_quote] = ACTIONS(2810), + [sym___r_single_quote] = ACTIONS(2810), + }, + [1261] = { + [sym_identifier] = ACTIONS(3086), + [anon_sym_LF] = ACTIONS(3086), + [anon_sym_CR] = ACTIONS(3086), + [anon_sym_CR_LF] = ACTIONS(3086), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_DOT] = ACTIONS(3086), + [anon_sym_as] = ACTIONS(3086), + [anon_sym_LBRACE] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_PIPE] = ACTIONS(3086), + [anon_sym_fn] = ACTIONS(3086), + [anon_sym_PLUS] = ACTIONS(3086), + [anon_sym_DASH] = ACTIONS(3086), + [anon_sym_STAR] = ACTIONS(3086), + [anon_sym_SLASH] = ACTIONS(3086), + [anon_sym_PERCENT] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(3086), + [anon_sym_GT] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(3086), + [anon_sym_GT_EQ] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(3086), + [anon_sym_mut] = ACTIONS(3086), + [anon_sym_PLUS_PLUS] = ACTIONS(3086), + [anon_sym_DASH_DASH] = ACTIONS(3086), + [anon_sym_QMARK] = ACTIONS(3086), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3086), + [anon_sym_spawn] = ACTIONS(3086), + [anon_sym_json_DOTdecode] = ACTIONS(3086), + [anon_sym_LBRACK2] = ACTIONS(3086), + [anon_sym_TILDE] = ACTIONS(3086), + [anon_sym_CARET] = ACTIONS(3086), + [anon_sym_AMP] = ACTIONS(3086), + [anon_sym_LT_DASH] = ACTIONS(3086), + [anon_sym_LT_LT] = ACTIONS(3086), + [anon_sym_GT_GT] = ACTIONS(3086), + [anon_sym_GT_GT_GT] = ACTIONS(3086), + [anon_sym_AMP_CARET] = ACTIONS(3086), + [anon_sym_AMP_AMP] = ACTIONS(3086), + [anon_sym_PIPE_PIPE] = ACTIONS(3086), + [anon_sym_or] = ACTIONS(3086), + [sym_none] = ACTIONS(3086), + [sym_true] = ACTIONS(3086), + [sym_false] = ACTIONS(3086), + [sym_nil] = ACTIONS(3086), + [anon_sym_QMARK_DOT] = ACTIONS(3086), + [anon_sym_POUND_LBRACK] = ACTIONS(3086), + [anon_sym_if] = ACTIONS(3086), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_is] = ACTIONS(3086), + [anon_sym_BANGis] = ACTIONS(3086), + [anon_sym_in] = ACTIONS(3086), + [anon_sym_BANGin] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3086), + [anon_sym_select] = ACTIONS(3086), + [anon_sym_lock] = ACTIONS(3086), + [anon_sym_rlock] = ACTIONS(3086), + [anon_sym_unsafe] = ACTIONS(3086), + [anon_sym_sql] = ACTIONS(3086), + [sym_int_literal] = ACTIONS(3086), + [sym_float_literal] = ACTIONS(3086), + [sym_rune_literal] = ACTIONS(3086), + [anon_sym_AT] = ACTIONS(3086), + [anon_sym_shared] = ACTIONS(3086), + [anon_sym_map_LBRACK] = ACTIONS(3086), + [anon_sym_chan] = ACTIONS(3086), + [anon_sym_thread] = ACTIONS(3086), + [anon_sym_atomic] = ACTIONS(3086), + [sym___double_quote] = ACTIONS(3086), + [sym___single_quote] = ACTIONS(3086), + [sym___c_double_quote] = ACTIONS(3086), + [sym___c_single_quote] = ACTIONS(3086), + [sym___r_double_quote] = ACTIONS(3086), + [sym___r_single_quote] = ACTIONS(3086), + }, + [1262] = { + [sym_identifier] = ACTIONS(2830), + [anon_sym_LF] = ACTIONS(2830), + [anon_sym_CR] = ACTIONS(2830), + [anon_sym_CR_LF] = ACTIONS(2830), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_DOT] = ACTIONS(2830), + [anon_sym_as] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_COMMA] = ACTIONS(2830), + [anon_sym_RBRACE] = ACTIONS(2830), + [anon_sym_LPAREN] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_fn] = ACTIONS(2830), + [anon_sym_PLUS] = ACTIONS(2830), + [anon_sym_DASH] = ACTIONS(2830), + [anon_sym_STAR] = ACTIONS(2830), + [anon_sym_SLASH] = ACTIONS(2830), + [anon_sym_PERCENT] = ACTIONS(2830), + [anon_sym_LT] = ACTIONS(2830), + [anon_sym_GT] = ACTIONS(2830), + [anon_sym_EQ_EQ] = ACTIONS(2830), + [anon_sym_BANG_EQ] = ACTIONS(2830), + [anon_sym_LT_EQ] = ACTIONS(2830), + [anon_sym_GT_EQ] = ACTIONS(2830), + [anon_sym_LBRACK] = ACTIONS(2828), + [anon_sym_struct] = ACTIONS(2830), + [anon_sym_mut] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2830), + [anon_sym_DASH_DASH] = ACTIONS(2830), + [anon_sym_QMARK] = ACTIONS(2830), + [anon_sym_BANG] = ACTIONS(2830), + [anon_sym_go] = ACTIONS(2830), + [anon_sym_spawn] = ACTIONS(2830), + [anon_sym_json_DOTdecode] = ACTIONS(2830), + [anon_sym_LBRACK2] = ACTIONS(2830), + [anon_sym_TILDE] = ACTIONS(2830), + [anon_sym_CARET] = ACTIONS(2830), + [anon_sym_AMP] = ACTIONS(2830), + [anon_sym_LT_DASH] = ACTIONS(2830), + [anon_sym_LT_LT] = ACTIONS(2830), + [anon_sym_GT_GT] = ACTIONS(2830), + [anon_sym_GT_GT_GT] = ACTIONS(2830), + [anon_sym_AMP_CARET] = ACTIONS(2830), + [anon_sym_AMP_AMP] = ACTIONS(2830), + [anon_sym_PIPE_PIPE] = ACTIONS(2830), + [anon_sym_or] = ACTIONS(2830), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_QMARK_DOT] = ACTIONS(2830), + [anon_sym_POUND_LBRACK] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2830), + [anon_sym_DOLLARif] = ACTIONS(2830), + [anon_sym_is] = ACTIONS(2830), + [anon_sym_BANGis] = ACTIONS(2830), + [anon_sym_in] = ACTIONS(2830), + [anon_sym_BANGin] = ACTIONS(2830), + [anon_sym_match] = ACTIONS(2830), + [anon_sym_select] = ACTIONS(2830), + [anon_sym_lock] = ACTIONS(2830), + [anon_sym_rlock] = ACTIONS(2830), + [anon_sym_unsafe] = ACTIONS(2830), + [anon_sym_sql] = ACTIONS(2830), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2830), + [sym_rune_literal] = ACTIONS(2830), + [anon_sym_AT] = ACTIONS(2830), + [anon_sym_shared] = ACTIONS(2830), + [anon_sym_map_LBRACK] = ACTIONS(2830), + [anon_sym_chan] = ACTIONS(2830), + [anon_sym_thread] = ACTIONS(2830), + [anon_sym_atomic] = ACTIONS(2830), + [sym___double_quote] = ACTIONS(2830), + [sym___single_quote] = ACTIONS(2830), + [sym___c_double_quote] = ACTIONS(2830), + [sym___c_single_quote] = ACTIONS(2830), + [sym___r_double_quote] = ACTIONS(2830), + [sym___r_single_quote] = ACTIONS(2830), + }, + [1263] = { + [sym_identifier] = ACTIONS(3102), + [anon_sym_LF] = ACTIONS(3102), + [anon_sym_CR] = ACTIONS(3102), + [anon_sym_CR_LF] = ACTIONS(3102), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_DOT] = ACTIONS(3102), + [anon_sym_as] = ACTIONS(3102), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_COMMA] = ACTIONS(3102), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(3102), + [anon_sym_PIPE] = ACTIONS(3102), + [anon_sym_fn] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3102), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_SLASH] = ACTIONS(3102), + [anon_sym_PERCENT] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3102), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_EQ_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3102), + [anon_sym_LBRACK] = ACTIONS(3100), + [anon_sym_struct] = ACTIONS(3102), + [anon_sym_mut] = ACTIONS(3102), + [anon_sym_PLUS_PLUS] = ACTIONS(3102), + [anon_sym_DASH_DASH] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3102), + [anon_sym_BANG] = ACTIONS(3102), + [anon_sym_go] = ACTIONS(3102), + [anon_sym_spawn] = ACTIONS(3102), + [anon_sym_json_DOTdecode] = ACTIONS(3102), + [anon_sym_LBRACK2] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3102), + [anon_sym_CARET] = ACTIONS(3102), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT_DASH] = ACTIONS(3102), + [anon_sym_LT_LT] = ACTIONS(3102), + [anon_sym_GT_GT] = ACTIONS(3102), + [anon_sym_GT_GT_GT] = ACTIONS(3102), + [anon_sym_AMP_CARET] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_or] = ACTIONS(3102), + [sym_none] = ACTIONS(3102), + [sym_true] = ACTIONS(3102), + [sym_false] = ACTIONS(3102), + [sym_nil] = ACTIONS(3102), + [anon_sym_QMARK_DOT] = ACTIONS(3102), + [anon_sym_POUND_LBRACK] = ACTIONS(3102), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_DOLLARif] = ACTIONS(3102), + [anon_sym_is] = ACTIONS(3102), + [anon_sym_BANGis] = ACTIONS(3102), + [anon_sym_in] = ACTIONS(3102), + [anon_sym_BANGin] = ACTIONS(3102), + [anon_sym_match] = ACTIONS(3102), + [anon_sym_select] = ACTIONS(3102), + [anon_sym_lock] = ACTIONS(3102), + [anon_sym_rlock] = ACTIONS(3102), + [anon_sym_unsafe] = ACTIONS(3102), + [anon_sym_sql] = ACTIONS(3102), + [sym_int_literal] = ACTIONS(3102), + [sym_float_literal] = ACTIONS(3102), + [sym_rune_literal] = ACTIONS(3102), + [anon_sym_AT] = ACTIONS(3102), + [anon_sym_shared] = ACTIONS(3102), + [anon_sym_map_LBRACK] = ACTIONS(3102), + [anon_sym_chan] = ACTIONS(3102), + [anon_sym_thread] = ACTIONS(3102), + [anon_sym_atomic] = ACTIONS(3102), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3102), + [sym___c_double_quote] = ACTIONS(3102), + [sym___c_single_quote] = ACTIONS(3102), + [sym___r_double_quote] = ACTIONS(3102), + [sym___r_single_quote] = ACTIONS(3102), + }, + [1264] = { + [sym_identifier] = ACTIONS(2850), + [anon_sym_LF] = ACTIONS(2850), + [anon_sym_CR] = ACTIONS(2850), + [anon_sym_CR_LF] = ACTIONS(2850), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2850), + [anon_sym_DOT] = ACTIONS(2850), + [anon_sym_as] = ACTIONS(2850), + [anon_sym_LBRACE] = ACTIONS(2850), + [anon_sym_COMMA] = ACTIONS(2850), + [anon_sym_RBRACE] = ACTIONS(2850), + [anon_sym_LPAREN] = ACTIONS(2850), + [anon_sym_PIPE] = ACTIONS(2850), + [anon_sym_fn] = ACTIONS(2850), + [anon_sym_PLUS] = ACTIONS(2850), + [anon_sym_DASH] = ACTIONS(2850), + [anon_sym_STAR] = ACTIONS(2850), + [anon_sym_SLASH] = ACTIONS(2850), + [anon_sym_PERCENT] = ACTIONS(2850), + [anon_sym_LT] = ACTIONS(2850), + [anon_sym_GT] = ACTIONS(2850), + [anon_sym_EQ_EQ] = ACTIONS(2850), + [anon_sym_BANG_EQ] = ACTIONS(2850), + [anon_sym_LT_EQ] = ACTIONS(2850), + [anon_sym_GT_EQ] = ACTIONS(2850), + [anon_sym_LBRACK] = ACTIONS(2848), + [anon_sym_struct] = ACTIONS(2850), + [anon_sym_mut] = ACTIONS(2850), + [anon_sym_PLUS_PLUS] = ACTIONS(2850), + [anon_sym_DASH_DASH] = ACTIONS(2850), + [anon_sym_QMARK] = ACTIONS(2850), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_go] = ACTIONS(2850), + [anon_sym_spawn] = ACTIONS(2850), + [anon_sym_json_DOTdecode] = ACTIONS(2850), + [anon_sym_LBRACK2] = ACTIONS(2850), + [anon_sym_TILDE] = ACTIONS(2850), + [anon_sym_CARET] = ACTIONS(2850), + [anon_sym_AMP] = ACTIONS(2850), + [anon_sym_LT_DASH] = ACTIONS(2850), + [anon_sym_LT_LT] = ACTIONS(2850), + [anon_sym_GT_GT] = ACTIONS(2850), + [anon_sym_GT_GT_GT] = ACTIONS(2850), + [anon_sym_AMP_CARET] = ACTIONS(2850), + [anon_sym_AMP_AMP] = ACTIONS(2850), + [anon_sym_PIPE_PIPE] = ACTIONS(2850), + [anon_sym_or] = ACTIONS(2850), + [sym_none] = ACTIONS(2850), + [sym_true] = ACTIONS(2850), + [sym_false] = ACTIONS(2850), + [sym_nil] = ACTIONS(2850), + [anon_sym_QMARK_DOT] = ACTIONS(2850), + [anon_sym_POUND_LBRACK] = ACTIONS(2850), + [anon_sym_if] = ACTIONS(2850), + [anon_sym_DOLLARif] = ACTIONS(2850), + [anon_sym_is] = ACTIONS(2850), + [anon_sym_BANGis] = ACTIONS(2850), + [anon_sym_in] = ACTIONS(2850), + [anon_sym_BANGin] = ACTIONS(2850), + [anon_sym_match] = ACTIONS(2850), + [anon_sym_select] = ACTIONS(2850), + [anon_sym_lock] = ACTIONS(2850), + [anon_sym_rlock] = ACTIONS(2850), + [anon_sym_unsafe] = ACTIONS(2850), + [anon_sym_sql] = ACTIONS(2850), + [sym_int_literal] = ACTIONS(2850), + [sym_float_literal] = ACTIONS(2850), + [sym_rune_literal] = ACTIONS(2850), + [anon_sym_AT] = ACTIONS(2850), + [anon_sym_shared] = ACTIONS(2850), + [anon_sym_map_LBRACK] = ACTIONS(2850), + [anon_sym_chan] = ACTIONS(2850), + [anon_sym_thread] = ACTIONS(2850), + [anon_sym_atomic] = ACTIONS(2850), + [sym___double_quote] = ACTIONS(2850), + [sym___single_quote] = ACTIONS(2850), + [sym___c_double_quote] = ACTIONS(2850), + [sym___c_single_quote] = ACTIONS(2850), + [sym___r_double_quote] = ACTIONS(2850), + [sym___r_single_quote] = ACTIONS(2850), + }, + [1265] = { + [sym_identifier] = ACTIONS(3110), + [anon_sym_LF] = ACTIONS(3110), + [anon_sym_CR] = ACTIONS(3110), + [anon_sym_CR_LF] = ACTIONS(3110), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3110), + [anon_sym_DOT] = ACTIONS(3110), + [anon_sym_as] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3110), + [anon_sym_COMMA] = ACTIONS(3110), + [anon_sym_RBRACE] = ACTIONS(3110), + [anon_sym_LPAREN] = ACTIONS(3110), + [anon_sym_PIPE] = ACTIONS(3110), + [anon_sym_fn] = ACTIONS(3110), + [anon_sym_PLUS] = ACTIONS(3110), + [anon_sym_DASH] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(3110), + [anon_sym_SLASH] = ACTIONS(3110), + [anon_sym_PERCENT] = ACTIONS(3110), + [anon_sym_LT] = ACTIONS(3110), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_EQ_EQ] = ACTIONS(3110), + [anon_sym_BANG_EQ] = ACTIONS(3110), + [anon_sym_LT_EQ] = ACTIONS(3110), + [anon_sym_GT_EQ] = ACTIONS(3110), + [anon_sym_LBRACK] = ACTIONS(3108), + [anon_sym_struct] = ACTIONS(3110), + [anon_sym_mut] = ACTIONS(3110), + [anon_sym_PLUS_PLUS] = ACTIONS(3110), + [anon_sym_DASH_DASH] = ACTIONS(3110), + [anon_sym_QMARK] = ACTIONS(3110), + [anon_sym_BANG] = ACTIONS(3110), + [anon_sym_go] = ACTIONS(3110), + [anon_sym_spawn] = ACTIONS(3110), + [anon_sym_json_DOTdecode] = ACTIONS(3110), + [anon_sym_LBRACK2] = ACTIONS(3110), + [anon_sym_TILDE] = ACTIONS(3110), + [anon_sym_CARET] = ACTIONS(3110), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_LT_DASH] = ACTIONS(3110), + [anon_sym_LT_LT] = ACTIONS(3110), + [anon_sym_GT_GT] = ACTIONS(3110), + [anon_sym_GT_GT_GT] = ACTIONS(3110), + [anon_sym_AMP_CARET] = ACTIONS(3110), + [anon_sym_AMP_AMP] = ACTIONS(3110), + [anon_sym_PIPE_PIPE] = ACTIONS(3110), + [anon_sym_or] = ACTIONS(3110), + [sym_none] = ACTIONS(3110), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [sym_nil] = ACTIONS(3110), + [anon_sym_QMARK_DOT] = ACTIONS(3110), + [anon_sym_POUND_LBRACK] = ACTIONS(3110), + [anon_sym_if] = ACTIONS(3110), + [anon_sym_DOLLARif] = ACTIONS(3110), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3110), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_BANGin] = ACTIONS(3110), + [anon_sym_match] = ACTIONS(3110), + [anon_sym_select] = ACTIONS(3110), + [anon_sym_lock] = ACTIONS(3110), + [anon_sym_rlock] = ACTIONS(3110), + [anon_sym_unsafe] = ACTIONS(3110), + [anon_sym_sql] = ACTIONS(3110), + [sym_int_literal] = ACTIONS(3110), + [sym_float_literal] = ACTIONS(3110), + [sym_rune_literal] = ACTIONS(3110), + [anon_sym_AT] = ACTIONS(3110), + [anon_sym_shared] = ACTIONS(3110), + [anon_sym_map_LBRACK] = ACTIONS(3110), + [anon_sym_chan] = ACTIONS(3110), + [anon_sym_thread] = ACTIONS(3110), + [anon_sym_atomic] = ACTIONS(3110), + [sym___double_quote] = ACTIONS(3110), + [sym___single_quote] = ACTIONS(3110), + [sym___c_double_quote] = ACTIONS(3110), + [sym___c_single_quote] = ACTIONS(3110), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3110), + }, + [1266] = { + [sym_identifier] = ACTIONS(3098), + [anon_sym_LF] = ACTIONS(3098), + [anon_sym_CR] = ACTIONS(3098), + [anon_sym_CR_LF] = ACTIONS(3098), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_DOT] = ACTIONS(3098), + [anon_sym_as] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3098), + [anon_sym_PIPE] = ACTIONS(3098), + [anon_sym_fn] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_DASH] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_PERCENT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(3096), + [anon_sym_struct] = ACTIONS(3098), + [anon_sym_mut] = ACTIONS(3098), + [anon_sym_PLUS_PLUS] = ACTIONS(3098), + [anon_sym_DASH_DASH] = ACTIONS(3098), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_BANG] = ACTIONS(3098), + [anon_sym_go] = ACTIONS(3098), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(3098), + [anon_sym_LBRACK2] = ACTIONS(3098), + [anon_sym_TILDE] = ACTIONS(3098), + [anon_sym_CARET] = ACTIONS(3098), + [anon_sym_AMP] = ACTIONS(3098), + [anon_sym_LT_DASH] = ACTIONS(3098), + [anon_sym_LT_LT] = ACTIONS(3098), + [anon_sym_GT_GT] = ACTIONS(3098), + [anon_sym_GT_GT_GT] = ACTIONS(3098), + [anon_sym_AMP_CARET] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_or] = ACTIONS(3098), + [sym_none] = ACTIONS(3098), + [sym_true] = ACTIONS(3098), + [sym_false] = ACTIONS(3098), + [sym_nil] = ACTIONS(3098), + [anon_sym_QMARK_DOT] = ACTIONS(3098), + [anon_sym_POUND_LBRACK] = ACTIONS(3098), + [anon_sym_if] = ACTIONS(3098), + [anon_sym_DOLLARif] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3098), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_in] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_match] = ACTIONS(3098), + [anon_sym_select] = ACTIONS(3098), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(3098), + [anon_sym_sql] = ACTIONS(3098), + [sym_int_literal] = ACTIONS(3098), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [anon_sym_AT] = ACTIONS(3098), + [anon_sym_shared] = ACTIONS(3098), + [anon_sym_map_LBRACK] = ACTIONS(3098), + [anon_sym_chan] = ACTIONS(3098), + [anon_sym_thread] = ACTIONS(3098), + [anon_sym_atomic] = ACTIONS(3098), + [sym___double_quote] = ACTIONS(3098), + [sym___single_quote] = ACTIONS(3098), + [sym___c_double_quote] = ACTIONS(3098), + [sym___c_single_quote] = ACTIONS(3098), + [sym___r_double_quote] = ACTIONS(3098), + [sym___r_single_quote] = ACTIONS(3098), + }, + [1267] = { + [sym_identifier] = ACTIONS(2846), + [anon_sym_LF] = ACTIONS(2846), + [anon_sym_CR] = ACTIONS(2846), + [anon_sym_CR_LF] = ACTIONS(2846), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2846), + [anon_sym_DOT] = ACTIONS(2742), + [anon_sym_as] = ACTIONS(2846), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_COMMA] = ACTIONS(2846), + [anon_sym_RBRACE] = ACTIONS(2846), + [anon_sym_LPAREN] = ACTIONS(2846), + [anon_sym_PIPE] = ACTIONS(2846), + [anon_sym_fn] = ACTIONS(2846), + [anon_sym_PLUS] = ACTIONS(2846), + [anon_sym_DASH] = ACTIONS(2846), + [anon_sym_STAR] = ACTIONS(2846), + [anon_sym_SLASH] = ACTIONS(2846), + [anon_sym_PERCENT] = ACTIONS(2846), + [anon_sym_LT] = ACTIONS(2846), + [anon_sym_GT] = ACTIONS(2846), + [anon_sym_EQ_EQ] = ACTIONS(2846), + [anon_sym_BANG_EQ] = ACTIONS(2846), + [anon_sym_LT_EQ] = ACTIONS(2846), + [anon_sym_GT_EQ] = ACTIONS(2846), + [anon_sym_LBRACK] = ACTIONS(2844), + [anon_sym_struct] = ACTIONS(2846), + [anon_sym_mut] = ACTIONS(2846), + [anon_sym_PLUS_PLUS] = ACTIONS(2846), + [anon_sym_DASH_DASH] = ACTIONS(2846), + [anon_sym_QMARK] = ACTIONS(2846), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_go] = ACTIONS(2846), + [anon_sym_spawn] = ACTIONS(2846), + [anon_sym_json_DOTdecode] = ACTIONS(2846), + [anon_sym_LBRACK2] = ACTIONS(2846), + [anon_sym_TILDE] = ACTIONS(2846), + [anon_sym_CARET] = ACTIONS(2846), + [anon_sym_AMP] = ACTIONS(2846), + [anon_sym_LT_DASH] = ACTIONS(2846), + [anon_sym_LT_LT] = ACTIONS(2846), + [anon_sym_GT_GT] = ACTIONS(2846), + [anon_sym_GT_GT_GT] = ACTIONS(2846), + [anon_sym_AMP_CARET] = ACTIONS(2846), + [anon_sym_AMP_AMP] = ACTIONS(2846), + [anon_sym_PIPE_PIPE] = ACTIONS(2846), + [anon_sym_or] = ACTIONS(2846), + [sym_none] = ACTIONS(2846), + [sym_true] = ACTIONS(2846), + [sym_false] = ACTIONS(2846), + [sym_nil] = ACTIONS(2846), + [anon_sym_QMARK_DOT] = ACTIONS(2846), + [anon_sym_POUND_LBRACK] = ACTIONS(2846), + [anon_sym_if] = ACTIONS(2846), + [anon_sym_DOLLARif] = ACTIONS(2846), + [anon_sym_is] = ACTIONS(2846), + [anon_sym_BANGis] = ACTIONS(2846), + [anon_sym_in] = ACTIONS(2846), + [anon_sym_BANGin] = ACTIONS(2846), + [anon_sym_match] = ACTIONS(2846), + [anon_sym_select] = ACTIONS(2846), + [anon_sym_lock] = ACTIONS(2846), + [anon_sym_rlock] = ACTIONS(2846), + [anon_sym_unsafe] = ACTIONS(2846), + [anon_sym_sql] = ACTIONS(2846), + [sym_int_literal] = ACTIONS(2846), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2846), + [anon_sym_shared] = ACTIONS(2846), + [anon_sym_map_LBRACK] = ACTIONS(2846), + [anon_sym_chan] = ACTIONS(2846), + [anon_sym_thread] = ACTIONS(2846), + [anon_sym_atomic] = ACTIONS(2846), + [sym___double_quote] = ACTIONS(2846), + [sym___single_quote] = ACTIONS(2846), + [sym___c_double_quote] = ACTIONS(2846), + [sym___c_single_quote] = ACTIONS(2846), + [sym___r_double_quote] = ACTIONS(2846), + [sym___r_single_quote] = ACTIONS(2846), + }, + [1268] = { + [sym_identifier] = ACTIONS(2890), + [anon_sym_LF] = ACTIONS(2890), + [anon_sym_CR] = ACTIONS(2890), + [anon_sym_CR_LF] = ACTIONS(2890), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2890), + [anon_sym_DOT] = ACTIONS(2890), + [anon_sym_as] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2890), + [anon_sym_COMMA] = ACTIONS(2890), + [anon_sym_RBRACE] = ACTIONS(2890), + [anon_sym_LPAREN] = ACTIONS(2890), + [anon_sym_PIPE] = ACTIONS(2890), + [anon_sym_fn] = ACTIONS(2890), + [anon_sym_PLUS] = ACTIONS(2890), + [anon_sym_DASH] = ACTIONS(2890), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_SLASH] = ACTIONS(2890), + [anon_sym_PERCENT] = ACTIONS(2890), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_GT] = ACTIONS(2890), + [anon_sym_EQ_EQ] = ACTIONS(2890), + [anon_sym_BANG_EQ] = ACTIONS(2890), + [anon_sym_LT_EQ] = ACTIONS(2890), + [anon_sym_GT_EQ] = ACTIONS(2890), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_struct] = ACTIONS(2890), + [anon_sym_mut] = ACTIONS(2890), + [anon_sym_PLUS_PLUS] = ACTIONS(2890), + [anon_sym_DASH_DASH] = ACTIONS(2890), + [anon_sym_QMARK] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2890), + [anon_sym_go] = ACTIONS(2890), + [anon_sym_spawn] = ACTIONS(2890), + [anon_sym_json_DOTdecode] = ACTIONS(2890), + [anon_sym_LBRACK2] = ACTIONS(2890), + [anon_sym_TILDE] = ACTIONS(2890), + [anon_sym_CARET] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2890), + [anon_sym_LT_DASH] = ACTIONS(2890), + [anon_sym_LT_LT] = ACTIONS(2890), + [anon_sym_GT_GT] = ACTIONS(2890), + [anon_sym_GT_GT_GT] = ACTIONS(2890), + [anon_sym_AMP_CARET] = ACTIONS(2890), + [anon_sym_AMP_AMP] = ACTIONS(2890), + [anon_sym_PIPE_PIPE] = ACTIONS(2890), + [anon_sym_or] = ACTIONS(2890), + [sym_none] = ACTIONS(2890), + [sym_true] = ACTIONS(2890), + [sym_false] = ACTIONS(2890), + [sym_nil] = ACTIONS(2890), + [anon_sym_QMARK_DOT] = ACTIONS(2890), + [anon_sym_POUND_LBRACK] = ACTIONS(2890), + [anon_sym_if] = ACTIONS(2890), + [anon_sym_DOLLARif] = ACTIONS(2890), + [anon_sym_is] = ACTIONS(2890), + [anon_sym_BANGis] = ACTIONS(2890), + [anon_sym_in] = ACTIONS(2890), + [anon_sym_BANGin] = ACTIONS(2890), + [anon_sym_match] = ACTIONS(2890), + [anon_sym_select] = ACTIONS(2890), + [anon_sym_lock] = ACTIONS(2890), + [anon_sym_rlock] = ACTIONS(2890), + [anon_sym_unsafe] = ACTIONS(2890), + [anon_sym_sql] = ACTIONS(2890), + [sym_int_literal] = ACTIONS(2890), + [sym_float_literal] = ACTIONS(2890), + [sym_rune_literal] = ACTIONS(2890), + [anon_sym_AT] = ACTIONS(2890), + [anon_sym_shared] = ACTIONS(2890), + [anon_sym_map_LBRACK] = ACTIONS(2890), + [anon_sym_chan] = ACTIONS(2890), + [anon_sym_thread] = ACTIONS(2890), + [anon_sym_atomic] = ACTIONS(2890), + [sym___double_quote] = ACTIONS(2890), + [sym___single_quote] = ACTIONS(2890), + [sym___c_double_quote] = ACTIONS(2890), + [sym___c_single_quote] = ACTIONS(2890), + [sym___r_double_quote] = ACTIONS(2890), + [sym___r_single_quote] = ACTIONS(2890), + }, + [1269] = { + [sym_identifier] = ACTIONS(3090), + [anon_sym_LF] = ACTIONS(3090), + [anon_sym_CR] = ACTIONS(3090), + [anon_sym_CR_LF] = ACTIONS(3090), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_DOT] = ACTIONS(3090), + [anon_sym_as] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_COMMA] = ACTIONS(3090), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3090), + [anon_sym_fn] = ACTIONS(3090), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3090), + [anon_sym_SLASH] = ACTIONS(3090), + [anon_sym_PERCENT] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(3090), + [anon_sym_GT] = ACTIONS(3090), + [anon_sym_EQ_EQ] = ACTIONS(3090), + [anon_sym_BANG_EQ] = ACTIONS(3090), + [anon_sym_LT_EQ] = ACTIONS(3090), + [anon_sym_GT_EQ] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3088), + [anon_sym_struct] = ACTIONS(3090), + [anon_sym_mut] = ACTIONS(3090), + [anon_sym_PLUS_PLUS] = ACTIONS(3090), + [anon_sym_DASH_DASH] = ACTIONS(3090), + [anon_sym_QMARK] = ACTIONS(3090), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_go] = ACTIONS(3090), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(3090), + [anon_sym_LBRACK2] = ACTIONS(3090), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_CARET] = ACTIONS(3090), + [anon_sym_AMP] = ACTIONS(3090), + [anon_sym_LT_DASH] = ACTIONS(3090), + [anon_sym_LT_LT] = ACTIONS(3090), + [anon_sym_GT_GT] = ACTIONS(3090), + [anon_sym_GT_GT_GT] = ACTIONS(3090), + [anon_sym_AMP_CARET] = ACTIONS(3090), + [anon_sym_AMP_AMP] = ACTIONS(3090), + [anon_sym_PIPE_PIPE] = ACTIONS(3090), + [anon_sym_or] = ACTIONS(3090), + [sym_none] = ACTIONS(3090), + [sym_true] = ACTIONS(3090), + [sym_false] = ACTIONS(3090), + [sym_nil] = ACTIONS(3090), + [anon_sym_QMARK_DOT] = ACTIONS(3090), + [anon_sym_POUND_LBRACK] = ACTIONS(3090), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_DOLLARif] = ACTIONS(3090), + [anon_sym_is] = ACTIONS(3090), + [anon_sym_BANGis] = ACTIONS(3090), + [anon_sym_in] = ACTIONS(3090), + [anon_sym_BANGin] = ACTIONS(3090), + [anon_sym_match] = ACTIONS(3090), + [anon_sym_select] = ACTIONS(3090), + [anon_sym_lock] = ACTIONS(3090), + [anon_sym_rlock] = ACTIONS(3090), + [anon_sym_unsafe] = ACTIONS(3090), + [anon_sym_sql] = ACTIONS(3090), + [sym_int_literal] = ACTIONS(3090), + [sym_float_literal] = ACTIONS(3090), + [sym_rune_literal] = ACTIONS(3090), + [anon_sym_AT] = ACTIONS(3090), + [anon_sym_shared] = ACTIONS(3090), + [anon_sym_map_LBRACK] = ACTIONS(3090), + [anon_sym_chan] = ACTIONS(3090), + [anon_sym_thread] = ACTIONS(3090), + [anon_sym_atomic] = ACTIONS(3090), + [sym___double_quote] = ACTIONS(3090), + [sym___single_quote] = ACTIONS(3090), + [sym___c_double_quote] = ACTIONS(3090), + [sym___c_single_quote] = ACTIONS(3090), + [sym___r_double_quote] = ACTIONS(3090), + [sym___r_single_quote] = ACTIONS(3090), + }, [1270] = { - [sym_type_parameters] = STATE(4295), - [sym_argument_list] = STATE(1342), - [sym_or_block] = STATE(1343), - [sym_identifier] = ACTIONS(2164), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_as] = ACTIONS(2164), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_fn] = ACTIONS(2164), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_STAR] = ACTIONS(2162), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_PERCENT] = ACTIONS(2162), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_GT_EQ] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_RBRACK] = ACTIONS(2162), - [anon_sym_struct] = ACTIONS(2164), - [anon_sym_mut] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3604), - [anon_sym_go] = ACTIONS(2164), - [anon_sym_spawn] = ACTIONS(2164), - [anon_sym_json_DOTdecode] = ACTIONS(2162), - [anon_sym_LBRACK2] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(2162), - [anon_sym_AMP] = ACTIONS(2164), - [anon_sym_LT_DASH] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(2162), - [anon_sym_GT_GT] = ACTIONS(2164), - [anon_sym_GT_GT_GT] = ACTIONS(2162), - [anon_sym_AMP_CARET] = ACTIONS(2162), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_or] = ACTIONS(2164), - [sym_none] = ACTIONS(2164), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), - [sym_nil] = ACTIONS(2164), - [anon_sym_QMARK_DOT] = ACTIONS(3608), - [anon_sym_POUND_LBRACK] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(2164), - [anon_sym_DOLLARif] = ACTIONS(2164), - [anon_sym_is] = ACTIONS(2164), - [anon_sym_BANGis] = ACTIONS(2162), - [anon_sym_in] = ACTIONS(2164), - [anon_sym_BANGin] = ACTIONS(2162), - [anon_sym_match] = ACTIONS(2164), - [anon_sym_select] = ACTIONS(2164), - [anon_sym_lock] = ACTIONS(2164), - [anon_sym_rlock] = ACTIONS(2164), - [anon_sym_unsafe] = ACTIONS(2164), - [anon_sym_sql] = ACTIONS(2164), - [sym_int_literal] = ACTIONS(2164), - [sym_float_literal] = ACTIONS(2162), - [sym_rune_literal] = ACTIONS(2162), - [anon_sym_AT] = ACTIONS(2164), - [anon_sym_shared] = ACTIONS(2164), - [anon_sym_map_LBRACK] = ACTIONS(2162), - [anon_sym_chan] = ACTIONS(2164), - [anon_sym_thread] = ACTIONS(2164), - [anon_sym_atomic] = ACTIONS(2164), - [sym___double_quote] = ACTIONS(2162), - [sym___single_quote] = ACTIONS(2162), - [sym___c_double_quote] = ACTIONS(2162), - [sym___c_single_quote] = ACTIONS(2162), - [sym___r_double_quote] = ACTIONS(2162), - [sym___r_single_quote] = ACTIONS(2162), + [sym_identifier] = ACTIONS(2898), + [anon_sym_LF] = ACTIONS(2898), + [anon_sym_CR] = ACTIONS(2898), + [anon_sym_CR_LF] = ACTIONS(2898), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2898), + [anon_sym_DOT] = ACTIONS(2898), + [anon_sym_as] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(2898), + [anon_sym_COMMA] = ACTIONS(2898), + [anon_sym_RBRACE] = ACTIONS(2898), + [anon_sym_LPAREN] = ACTIONS(2898), + [anon_sym_PIPE] = ACTIONS(2898), + [anon_sym_fn] = ACTIONS(2898), + [anon_sym_PLUS] = ACTIONS(2898), + [anon_sym_DASH] = ACTIONS(2898), + [anon_sym_STAR] = ACTIONS(2898), + [anon_sym_SLASH] = ACTIONS(2898), + [anon_sym_PERCENT] = ACTIONS(2898), + [anon_sym_LT] = ACTIONS(2898), + [anon_sym_GT] = ACTIONS(2898), + [anon_sym_EQ_EQ] = ACTIONS(2898), + [anon_sym_BANG_EQ] = ACTIONS(2898), + [anon_sym_LT_EQ] = ACTIONS(2898), + [anon_sym_GT_EQ] = ACTIONS(2898), + [anon_sym_LBRACK] = ACTIONS(2896), + [anon_sym_struct] = ACTIONS(2898), + [anon_sym_mut] = ACTIONS(2898), + [anon_sym_PLUS_PLUS] = ACTIONS(2898), + [anon_sym_DASH_DASH] = ACTIONS(2898), + [anon_sym_QMARK] = ACTIONS(2898), + [anon_sym_BANG] = ACTIONS(2898), + [anon_sym_go] = ACTIONS(2898), + [anon_sym_spawn] = ACTIONS(2898), + [anon_sym_json_DOTdecode] = ACTIONS(2898), + [anon_sym_LBRACK2] = ACTIONS(2898), + [anon_sym_TILDE] = ACTIONS(2898), + [anon_sym_CARET] = ACTIONS(2898), + [anon_sym_AMP] = ACTIONS(2898), + [anon_sym_LT_DASH] = ACTIONS(2898), + [anon_sym_LT_LT] = ACTIONS(2898), + [anon_sym_GT_GT] = ACTIONS(2898), + [anon_sym_GT_GT_GT] = ACTIONS(2898), + [anon_sym_AMP_CARET] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2898), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [sym_none] = ACTIONS(2898), + [sym_true] = ACTIONS(2898), + [sym_false] = ACTIONS(2898), + [sym_nil] = ACTIONS(2898), + [anon_sym_QMARK_DOT] = ACTIONS(2898), + [anon_sym_POUND_LBRACK] = ACTIONS(2898), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_DOLLARif] = ACTIONS(2898), + [anon_sym_is] = ACTIONS(2898), + [anon_sym_BANGis] = ACTIONS(2898), + [anon_sym_in] = ACTIONS(2898), + [anon_sym_BANGin] = ACTIONS(2898), + [anon_sym_match] = ACTIONS(2898), + [anon_sym_select] = ACTIONS(2898), + [anon_sym_lock] = ACTIONS(2898), + [anon_sym_rlock] = ACTIONS(2898), + [anon_sym_unsafe] = ACTIONS(2898), + [anon_sym_sql] = ACTIONS(2898), + [sym_int_literal] = ACTIONS(2898), + [sym_float_literal] = ACTIONS(2898), + [sym_rune_literal] = ACTIONS(2898), + [anon_sym_AT] = ACTIONS(2898), + [anon_sym_shared] = ACTIONS(2898), + [anon_sym_map_LBRACK] = ACTIONS(2898), + [anon_sym_chan] = ACTIONS(2898), + [anon_sym_thread] = ACTIONS(2898), + [anon_sym_atomic] = ACTIONS(2898), + [sym___double_quote] = ACTIONS(2898), + [sym___single_quote] = ACTIONS(2898), + [sym___c_double_quote] = ACTIONS(2898), + [sym___c_single_quote] = ACTIONS(2898), + [sym___r_double_quote] = ACTIONS(2898), + [sym___r_single_quote] = ACTIONS(2898), + }, + [1271] = { + [sym_identifier] = ACTIONS(2930), + [anon_sym_LF] = ACTIONS(2930), + [anon_sym_CR] = ACTIONS(2930), + [anon_sym_CR_LF] = ACTIONS(2930), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2930), + [anon_sym_DOT] = ACTIONS(2930), + [anon_sym_as] = ACTIONS(2930), + [anon_sym_LBRACE] = ACTIONS(2930), + [anon_sym_COMMA] = ACTIONS(2930), + [anon_sym_RBRACE] = ACTIONS(2930), + [anon_sym_LPAREN] = ACTIONS(2930), + [anon_sym_PIPE] = ACTIONS(2930), + [anon_sym_fn] = ACTIONS(2930), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_STAR] = ACTIONS(2930), + [anon_sym_SLASH] = ACTIONS(2930), + [anon_sym_PERCENT] = ACTIONS(2930), + [anon_sym_LT] = ACTIONS(2930), + [anon_sym_GT] = ACTIONS(2930), + [anon_sym_EQ_EQ] = ACTIONS(2930), + [anon_sym_BANG_EQ] = ACTIONS(2930), + [anon_sym_LT_EQ] = ACTIONS(2930), + [anon_sym_GT_EQ] = ACTIONS(2930), + [anon_sym_LBRACK] = ACTIONS(2928), + [anon_sym_struct] = ACTIONS(2930), + [anon_sym_mut] = ACTIONS(2930), + [anon_sym_PLUS_PLUS] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2930), + [anon_sym_QMARK] = ACTIONS(2930), + [anon_sym_BANG] = ACTIONS(2930), + [anon_sym_go] = ACTIONS(2930), + [anon_sym_spawn] = ACTIONS(2930), + [anon_sym_json_DOTdecode] = ACTIONS(2930), + [anon_sym_LBRACK2] = ACTIONS(2930), + [anon_sym_TILDE] = ACTIONS(2930), + [anon_sym_CARET] = ACTIONS(2930), + [anon_sym_AMP] = ACTIONS(2930), + [anon_sym_LT_DASH] = ACTIONS(2930), + [anon_sym_LT_LT] = ACTIONS(2930), + [anon_sym_GT_GT] = ACTIONS(2930), + [anon_sym_GT_GT_GT] = ACTIONS(2930), + [anon_sym_AMP_CARET] = ACTIONS(2930), + [anon_sym_AMP_AMP] = ACTIONS(2930), + [anon_sym_PIPE_PIPE] = ACTIONS(2930), + [anon_sym_or] = ACTIONS(2930), + [sym_none] = ACTIONS(2930), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [sym_nil] = ACTIONS(2930), + [anon_sym_QMARK_DOT] = ACTIONS(2930), + [anon_sym_POUND_LBRACK] = ACTIONS(2930), + [anon_sym_if] = ACTIONS(2930), + [anon_sym_DOLLARif] = ACTIONS(2930), + [anon_sym_is] = ACTIONS(2930), + [anon_sym_BANGis] = ACTIONS(2930), + [anon_sym_in] = ACTIONS(2930), + [anon_sym_BANGin] = ACTIONS(2930), + [anon_sym_match] = ACTIONS(2930), + [anon_sym_select] = ACTIONS(2930), + [anon_sym_lock] = ACTIONS(2930), + [anon_sym_rlock] = ACTIONS(2930), + [anon_sym_unsafe] = ACTIONS(2930), + [anon_sym_sql] = ACTIONS(2930), + [sym_int_literal] = ACTIONS(2930), + [sym_float_literal] = ACTIONS(2930), + [sym_rune_literal] = ACTIONS(2930), + [anon_sym_AT] = ACTIONS(2930), + [anon_sym_shared] = ACTIONS(2930), + [anon_sym_map_LBRACK] = ACTIONS(2930), + [anon_sym_chan] = ACTIONS(2930), + [anon_sym_thread] = ACTIONS(2930), + [anon_sym_atomic] = ACTIONS(2930), + [sym___double_quote] = ACTIONS(2930), + [sym___single_quote] = ACTIONS(2930), + [sym___c_double_quote] = ACTIONS(2930), + [sym___c_single_quote] = ACTIONS(2930), + [sym___r_double_quote] = ACTIONS(2930), + [sym___r_single_quote] = ACTIONS(2930), + }, + [1272] = { + [sym_identifier] = ACTIONS(2902), + [anon_sym_LF] = ACTIONS(2902), + [anon_sym_CR] = ACTIONS(2902), + [anon_sym_CR_LF] = ACTIONS(2902), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2902), + [anon_sym_DOT] = ACTIONS(2902), + [anon_sym_as] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_COMMA] = ACTIONS(2902), + [anon_sym_RBRACE] = ACTIONS(2902), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_PIPE] = ACTIONS(2902), + [anon_sym_fn] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(2902), + [anon_sym_SLASH] = ACTIONS(2902), + [anon_sym_PERCENT] = ACTIONS(2902), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_GT] = ACTIONS(2902), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2902), + [anon_sym_GT_EQ] = ACTIONS(2902), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_struct] = ACTIONS(2902), + [anon_sym_mut] = ACTIONS(2902), + [anon_sym_PLUS_PLUS] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(2902), + [anon_sym_QMARK] = ACTIONS(2902), + [anon_sym_BANG] = ACTIONS(2902), + [anon_sym_go] = ACTIONS(2902), + [anon_sym_spawn] = ACTIONS(2902), + [anon_sym_json_DOTdecode] = ACTIONS(2902), + [anon_sym_LBRACK2] = ACTIONS(2902), + [anon_sym_TILDE] = ACTIONS(2902), + [anon_sym_CARET] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_LT_DASH] = ACTIONS(2902), + [anon_sym_LT_LT] = ACTIONS(2902), + [anon_sym_GT_GT] = ACTIONS(2902), + [anon_sym_GT_GT_GT] = ACTIONS(2902), + [anon_sym_AMP_CARET] = ACTIONS(2902), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_PIPE_PIPE] = ACTIONS(2902), + [anon_sym_or] = ACTIONS(2902), + [sym_none] = ACTIONS(2902), + [sym_true] = ACTIONS(2902), + [sym_false] = ACTIONS(2902), + [sym_nil] = ACTIONS(2902), + [anon_sym_QMARK_DOT] = ACTIONS(2902), + [anon_sym_POUND_LBRACK] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_DOLLARif] = ACTIONS(2902), + [anon_sym_is] = ACTIONS(2902), + [anon_sym_BANGis] = ACTIONS(2902), + [anon_sym_in] = ACTIONS(2902), + [anon_sym_BANGin] = ACTIONS(2902), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_select] = ACTIONS(2902), + [anon_sym_lock] = ACTIONS(2902), + [anon_sym_rlock] = ACTIONS(2902), + [anon_sym_unsafe] = ACTIONS(2902), + [anon_sym_sql] = ACTIONS(2902), + [sym_int_literal] = ACTIONS(2902), + [sym_float_literal] = ACTIONS(2902), + [sym_rune_literal] = ACTIONS(2902), + [anon_sym_AT] = ACTIONS(2902), + [anon_sym_shared] = ACTIONS(2902), + [anon_sym_map_LBRACK] = ACTIONS(2902), + [anon_sym_chan] = ACTIONS(2902), + [anon_sym_thread] = ACTIONS(2902), + [anon_sym_atomic] = ACTIONS(2902), + [sym___double_quote] = ACTIONS(2902), + [sym___single_quote] = ACTIONS(2902), + [sym___c_double_quote] = ACTIONS(2902), + [sym___c_single_quote] = ACTIONS(2902), + [sym___r_double_quote] = ACTIONS(2902), + [sym___r_single_quote] = ACTIONS(2902), + }, + [1273] = { + [sym_identifier] = ACTIONS(2838), + [anon_sym_LF] = ACTIONS(2838), + [anon_sym_CR] = ACTIONS(2838), + [anon_sym_CR_LF] = ACTIONS(2838), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(2838), + [anon_sym_DOT] = ACTIONS(2838), + [anon_sym_as] = ACTIONS(2838), + [anon_sym_LBRACE] = ACTIONS(2838), + [anon_sym_COMMA] = ACTIONS(2838), + [anon_sym_RBRACE] = ACTIONS(2838), + [anon_sym_LPAREN] = ACTIONS(2838), + [anon_sym_PIPE] = ACTIONS(2838), + [anon_sym_fn] = ACTIONS(2838), + [anon_sym_PLUS] = ACTIONS(2838), + [anon_sym_DASH] = ACTIONS(2838), + [anon_sym_STAR] = ACTIONS(2838), + [anon_sym_SLASH] = ACTIONS(2838), + [anon_sym_PERCENT] = ACTIONS(2838), + [anon_sym_LT] = ACTIONS(2838), + [anon_sym_GT] = ACTIONS(2838), + [anon_sym_EQ_EQ] = ACTIONS(2838), + [anon_sym_BANG_EQ] = ACTIONS(2838), + [anon_sym_LT_EQ] = ACTIONS(2838), + [anon_sym_GT_EQ] = ACTIONS(2838), + [anon_sym_LBRACK] = ACTIONS(2836), + [anon_sym_struct] = ACTIONS(2838), + [anon_sym_mut] = ACTIONS(2838), + [anon_sym_PLUS_PLUS] = ACTIONS(2838), + [anon_sym_DASH_DASH] = ACTIONS(2838), + [anon_sym_QMARK] = ACTIONS(2838), + [anon_sym_BANG] = ACTIONS(2838), + [anon_sym_go] = ACTIONS(2838), + [anon_sym_spawn] = ACTIONS(2838), + [anon_sym_json_DOTdecode] = ACTIONS(2838), + [anon_sym_LBRACK2] = ACTIONS(2838), + [anon_sym_TILDE] = ACTIONS(2838), + [anon_sym_CARET] = ACTIONS(2838), + [anon_sym_AMP] = ACTIONS(2838), + [anon_sym_LT_DASH] = ACTIONS(2838), + [anon_sym_LT_LT] = ACTIONS(2838), + [anon_sym_GT_GT] = ACTIONS(2838), + [anon_sym_GT_GT_GT] = ACTIONS(2838), + [anon_sym_AMP_CARET] = ACTIONS(2838), + [anon_sym_AMP_AMP] = ACTIONS(2838), + [anon_sym_PIPE_PIPE] = ACTIONS(2838), + [anon_sym_or] = ACTIONS(2838), + [sym_none] = ACTIONS(2838), + [sym_true] = ACTIONS(2838), + [sym_false] = ACTIONS(2838), + [sym_nil] = ACTIONS(2838), + [anon_sym_QMARK_DOT] = ACTIONS(2838), + [anon_sym_POUND_LBRACK] = ACTIONS(2838), + [anon_sym_if] = ACTIONS(2838), + [anon_sym_DOLLARif] = ACTIONS(2838), + [anon_sym_is] = ACTIONS(2838), + [anon_sym_BANGis] = ACTIONS(2838), + [anon_sym_in] = ACTIONS(2838), + [anon_sym_BANGin] = ACTIONS(2838), + [anon_sym_match] = ACTIONS(2838), + [anon_sym_select] = ACTIONS(2838), + [anon_sym_lock] = ACTIONS(2838), + [anon_sym_rlock] = ACTIONS(2838), + [anon_sym_unsafe] = ACTIONS(2838), + [anon_sym_sql] = ACTIONS(2838), + [sym_int_literal] = ACTIONS(2838), + [sym_float_literal] = ACTIONS(2838), + [sym_rune_literal] = ACTIONS(2838), + [anon_sym_AT] = ACTIONS(2838), + [anon_sym_shared] = ACTIONS(2838), + [anon_sym_map_LBRACK] = ACTIONS(2838), + [anon_sym_chan] = ACTIONS(2838), + [anon_sym_thread] = ACTIONS(2838), + [anon_sym_atomic] = ACTIONS(2838), + [sym___double_quote] = ACTIONS(2838), + [sym___single_quote] = ACTIONS(2838), + [sym___c_double_quote] = ACTIONS(2838), + [sym___c_single_quote] = ACTIONS(2838), + [sym___r_double_quote] = ACTIONS(2838), + [sym___r_single_quote] = ACTIONS(2838), }, - [1271] = { - [sym_type_parameters] = STATE(4295), - [sym_argument_list] = STATE(1342), - [sym_or_block] = STATE(1343), - [sym_identifier] = ACTIONS(2210), + [1274] = { + [sym_type_parameters] = STATE(4375), + [sym_argument_list] = STATE(1355), + [sym_or_block] = STATE(1356), + [sym_identifier] = ACTIONS(3602), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_as] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_COMMA] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_DOT] = ACTIONS(3604), + [anon_sym_as] = ACTIONS(3606), + [anon_sym_LBRACE] = ACTIONS(3608), + [anon_sym_COMMA] = ACTIONS(3610), + [anon_sym_LPAREN] = ACTIONS(3612), [anon_sym_PIPE] = ACTIONS(3614), - [anon_sym_fn] = ACTIONS(2210), + [anon_sym_fn] = ACTIONS(3602), [anon_sym_PLUS] = ACTIONS(3614), [anon_sym_DASH] = ACTIONS(3614), [anon_sym_STAR] = ACTIONS(3616), @@ -164798,481 +165343,562 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(3622), [anon_sym_LT_EQ] = ACTIONS(3622), [anon_sym_GT_EQ] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_RBRACK] = ACTIONS(2208), - [anon_sym_struct] = ACTIONS(2210), - [anon_sym_mut] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(3624), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3604), - [anon_sym_go] = ACTIONS(2210), - [anon_sym_spawn] = ACTIONS(2210), - [anon_sym_json_DOTdecode] = ACTIONS(2208), - [anon_sym_LBRACK2] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_CARET] = ACTIONS(3628), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_RBRACK] = ACTIONS(3608), + [anon_sym_struct] = ACTIONS(3602), + [anon_sym_mut] = ACTIONS(3602), + [anon_sym_PLUS_PLUS] = ACTIONS(3626), + [anon_sym_DASH_DASH] = ACTIONS(3628), + [anon_sym_QMARK] = ACTIONS(3630), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_go] = ACTIONS(3602), + [anon_sym_spawn] = ACTIONS(3602), + [anon_sym_json_DOTdecode] = ACTIONS(3608), + [anon_sym_LBRACK2] = ACTIONS(3634), + [anon_sym_TILDE] = ACTIONS(3608), + [anon_sym_CARET] = ACTIONS(3636), [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(2208), + [anon_sym_LT_DASH] = ACTIONS(3608), [anon_sym_LT_LT] = ACTIONS(3616), [anon_sym_GT_GT] = ACTIONS(3618), [anon_sym_GT_GT_GT] = ACTIONS(3616), [anon_sym_AMP_CARET] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3632), - [anon_sym_or] = ACTIONS(3634), - [sym_none] = ACTIONS(2210), - [sym_true] = ACTIONS(2210), - [sym_false] = ACTIONS(2210), - [sym_nil] = ACTIONS(2210), - [anon_sym_QMARK_DOT] = ACTIONS(3608), - [anon_sym_POUND_LBRACK] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(2210), - [anon_sym_DOLLARif] = ACTIONS(2210), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_BANGis] = ACTIONS(3638), - [anon_sym_in] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_match] = ACTIONS(2210), - [anon_sym_select] = ACTIONS(2210), - [anon_sym_lock] = ACTIONS(2210), - [anon_sym_rlock] = ACTIONS(2210), - [anon_sym_unsafe] = ACTIONS(2210), - [anon_sym_sql] = ACTIONS(2210), - [sym_int_literal] = ACTIONS(2210), - [sym_float_literal] = ACTIONS(2208), - [sym_rune_literal] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2210), - [anon_sym_shared] = ACTIONS(2210), - [anon_sym_map_LBRACK] = ACTIONS(2208), - [anon_sym_chan] = ACTIONS(2210), - [anon_sym_thread] = ACTIONS(2210), - [anon_sym_atomic] = ACTIONS(2210), - [sym___double_quote] = ACTIONS(2208), - [sym___single_quote] = ACTIONS(2208), - [sym___c_double_quote] = ACTIONS(2208), - [sym___c_single_quote] = ACTIONS(2208), - [sym___r_double_quote] = ACTIONS(2208), - [sym___r_single_quote] = ACTIONS(2208), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3642), + [sym_none] = ACTIONS(3602), + [sym_true] = ACTIONS(3602), + [sym_false] = ACTIONS(3602), + [sym_nil] = ACTIONS(3602), + [anon_sym_QMARK_DOT] = ACTIONS(3644), + [anon_sym_POUND_LBRACK] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3602), + [anon_sym_DOLLARif] = ACTIONS(3602), + [anon_sym_is] = ACTIONS(3648), + [anon_sym_BANGis] = ACTIONS(3650), + [anon_sym_in] = ACTIONS(3652), + [anon_sym_BANGin] = ACTIONS(3654), + [anon_sym_match] = ACTIONS(3602), + [anon_sym_select] = ACTIONS(3602), + [anon_sym_lock] = ACTIONS(3602), + [anon_sym_rlock] = ACTIONS(3602), + [anon_sym_unsafe] = ACTIONS(3602), + [anon_sym_sql] = ACTIONS(3602), + [sym_int_literal] = ACTIONS(3602), + [sym_float_literal] = ACTIONS(3608), + [sym_rune_literal] = ACTIONS(3608), + [anon_sym_AT] = ACTIONS(3602), + [anon_sym_shared] = ACTIONS(3602), + [anon_sym_map_LBRACK] = ACTIONS(3608), + [anon_sym_chan] = ACTIONS(3602), + [anon_sym_thread] = ACTIONS(3602), + [anon_sym_atomic] = ACTIONS(3602), + [sym___double_quote] = ACTIONS(3608), + [sym___single_quote] = ACTIONS(3608), + [sym___c_double_quote] = ACTIONS(3608), + [sym___c_single_quote] = ACTIONS(3608), + [sym___r_double_quote] = ACTIONS(3608), + [sym___r_single_quote] = ACTIONS(3608), }, - [1272] = { - [sym_type_parameters] = STATE(4295), - [sym_argument_list] = STATE(1342), - [sym_or_block] = STATE(1343), - [sym_identifier] = ACTIONS(2220), + [1275] = { + [sym_type_parameters] = STATE(4375), + [sym_argument_list] = STATE(1355), + [sym_or_block] = STATE(1356), + [sym_identifier] = ACTIONS(2162), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_as] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(2218), - [anon_sym_COMMA] = ACTIONS(2218), - [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_DOT] = ACTIONS(3604), + [anon_sym_as] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_COMMA] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(3612), + [anon_sym_PIPE] = ACTIONS(2162), + [anon_sym_fn] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(2162), + [anon_sym_DASH] = ACTIONS(2162), + [anon_sym_STAR] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2162), + [anon_sym_PERCENT] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2162), + [anon_sym_GT] = ACTIONS(2162), + [anon_sym_EQ_EQ] = ACTIONS(2160), + [anon_sym_BANG_EQ] = ACTIONS(2160), + [anon_sym_LT_EQ] = ACTIONS(2160), + [anon_sym_GT_EQ] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_RBRACK] = ACTIONS(2160), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_mut] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [anon_sym_QMARK] = ACTIONS(3630), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_go] = ACTIONS(2162), + [anon_sym_spawn] = ACTIONS(2162), + [anon_sym_json_DOTdecode] = ACTIONS(2160), + [anon_sym_LBRACK2] = ACTIONS(3634), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_AMP] = ACTIONS(2162), + [anon_sym_LT_DASH] = ACTIONS(2160), + [anon_sym_LT_LT] = ACTIONS(2160), + [anon_sym_GT_GT] = ACTIONS(2162), + [anon_sym_GT_GT_GT] = ACTIONS(2160), + [anon_sym_AMP_CARET] = ACTIONS(2160), + [anon_sym_AMP_AMP] = ACTIONS(2160), + [anon_sym_PIPE_PIPE] = ACTIONS(2160), + [anon_sym_or] = ACTIONS(2162), + [sym_none] = ACTIONS(2162), + [sym_true] = ACTIONS(2162), + [sym_false] = ACTIONS(2162), + [sym_nil] = ACTIONS(2162), + [anon_sym_QMARK_DOT] = ACTIONS(3644), + [anon_sym_POUND_LBRACK] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_DOLLARif] = ACTIONS(2162), + [anon_sym_is] = ACTIONS(2162), + [anon_sym_BANGis] = ACTIONS(2160), + [anon_sym_in] = ACTIONS(2162), + [anon_sym_BANGin] = ACTIONS(2160), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_select] = ACTIONS(2162), + [anon_sym_lock] = ACTIONS(2162), + [anon_sym_rlock] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_sql] = ACTIONS(2162), + [sym_int_literal] = ACTIONS(2162), + [sym_float_literal] = ACTIONS(2160), + [sym_rune_literal] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2162), + [anon_sym_shared] = ACTIONS(2162), + [anon_sym_map_LBRACK] = ACTIONS(2160), + [anon_sym_chan] = ACTIONS(2162), + [anon_sym_thread] = ACTIONS(2162), + [anon_sym_atomic] = ACTIONS(2162), + [sym___double_quote] = ACTIONS(2160), + [sym___single_quote] = ACTIONS(2160), + [sym___c_double_quote] = ACTIONS(2160), + [sym___c_single_quote] = ACTIONS(2160), + [sym___r_double_quote] = ACTIONS(2160), + [sym___r_single_quote] = ACTIONS(2160), + }, + [1276] = { + [sym_type_parameters] = STATE(4375), + [sym_argument_list] = STATE(1355), + [sym_or_block] = STATE(1356), + [sym_identifier] = ACTIONS(2246), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3604), + [anon_sym_as] = ACTIONS(2246), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_COMMA] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(3612), + [anon_sym_PIPE] = ACTIONS(2246), + [anon_sym_fn] = ACTIONS(2246), + [anon_sym_PLUS] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_SLASH] = ACTIONS(2246), + [anon_sym_PERCENT] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2246), + [anon_sym_GT] = ACTIONS(2246), + [anon_sym_EQ_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ] = ACTIONS(2244), + [anon_sym_LT_EQ] = ACTIONS(2244), + [anon_sym_GT_EQ] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_RBRACK] = ACTIONS(2244), + [anon_sym_struct] = ACTIONS(2246), + [anon_sym_mut] = ACTIONS(2246), + [anon_sym_PLUS_PLUS] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(3630), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_go] = ACTIONS(2246), + [anon_sym_spawn] = ACTIONS(2246), + [anon_sym_json_DOTdecode] = ACTIONS(2244), + [anon_sym_LBRACK2] = ACTIONS(3634), + [anon_sym_TILDE] = ACTIONS(2244), + [anon_sym_CARET] = ACTIONS(2244), + [anon_sym_AMP] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(2244), + [anon_sym_LT_LT] = ACTIONS(2244), + [anon_sym_GT_GT] = ACTIONS(2246), + [anon_sym_GT_GT_GT] = ACTIONS(2244), + [anon_sym_AMP_CARET] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2244), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_or] = ACTIONS(2246), + [sym_none] = ACTIONS(2246), + [sym_true] = ACTIONS(2246), + [sym_false] = ACTIONS(2246), + [sym_nil] = ACTIONS(2246), + [anon_sym_QMARK_DOT] = ACTIONS(3644), + [anon_sym_POUND_LBRACK] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(2246), + [anon_sym_DOLLARif] = ACTIONS(2246), + [anon_sym_is] = ACTIONS(2246), + [anon_sym_BANGis] = ACTIONS(2244), + [anon_sym_in] = ACTIONS(2246), + [anon_sym_BANGin] = ACTIONS(2244), + [anon_sym_match] = ACTIONS(2246), + [anon_sym_select] = ACTIONS(2246), + [anon_sym_lock] = ACTIONS(2246), + [anon_sym_rlock] = ACTIONS(2246), + [anon_sym_unsafe] = ACTIONS(2246), + [anon_sym_sql] = ACTIONS(2246), + [sym_int_literal] = ACTIONS(2246), + [sym_float_literal] = ACTIONS(2244), + [sym_rune_literal] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_shared] = ACTIONS(2246), + [anon_sym_map_LBRACK] = ACTIONS(2244), + [anon_sym_chan] = ACTIONS(2246), + [anon_sym_thread] = ACTIONS(2246), + [anon_sym_atomic] = ACTIONS(2246), + [sym___double_quote] = ACTIONS(2244), + [sym___single_quote] = ACTIONS(2244), + [sym___c_double_quote] = ACTIONS(2244), + [sym___c_single_quote] = ACTIONS(2244), + [sym___r_double_quote] = ACTIONS(2244), + [sym___r_single_quote] = ACTIONS(2244), + }, + [1277] = { + [sym_type_parameters] = STATE(4375), + [sym_argument_list] = STATE(1355), + [sym_or_block] = STATE(1356), + [sym_identifier] = ACTIONS(2224), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3604), + [anon_sym_as] = ACTIONS(2224), + [anon_sym_LBRACE] = ACTIONS(2222), + [anon_sym_COMMA] = ACTIONS(2222), + [anon_sym_LPAREN] = ACTIONS(3612), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_fn] = ACTIONS(2224), + [anon_sym_PLUS] = ACTIONS(2224), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(2222), + [anon_sym_SLASH] = ACTIONS(2224), + [anon_sym_PERCENT] = ACTIONS(2222), + [anon_sym_LT] = ACTIONS(2224), + [anon_sym_GT] = ACTIONS(2224), + [anon_sym_EQ_EQ] = ACTIONS(2222), + [anon_sym_BANG_EQ] = ACTIONS(2222), + [anon_sym_LT_EQ] = ACTIONS(2222), + [anon_sym_GT_EQ] = ACTIONS(2222), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_RBRACK] = ACTIONS(2222), + [anon_sym_struct] = ACTIONS(2224), + [anon_sym_mut] = ACTIONS(2224), + [anon_sym_PLUS_PLUS] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2222), + [anon_sym_QMARK] = ACTIONS(3630), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_go] = ACTIONS(2224), + [anon_sym_spawn] = ACTIONS(2224), + [anon_sym_json_DOTdecode] = ACTIONS(2222), + [anon_sym_LBRACK2] = ACTIONS(3634), + [anon_sym_TILDE] = ACTIONS(2222), + [anon_sym_CARET] = ACTIONS(2222), + [anon_sym_AMP] = ACTIONS(2224), + [anon_sym_LT_DASH] = ACTIONS(2222), + [anon_sym_LT_LT] = ACTIONS(2222), + [anon_sym_GT_GT] = ACTIONS(2224), + [anon_sym_GT_GT_GT] = ACTIONS(2222), + [anon_sym_AMP_CARET] = ACTIONS(2222), + [anon_sym_AMP_AMP] = ACTIONS(2222), + [anon_sym_PIPE_PIPE] = ACTIONS(2222), + [anon_sym_or] = ACTIONS(2224), + [sym_none] = ACTIONS(2224), + [sym_true] = ACTIONS(2224), + [sym_false] = ACTIONS(2224), + [sym_nil] = ACTIONS(2224), + [anon_sym_QMARK_DOT] = ACTIONS(3644), + [anon_sym_POUND_LBRACK] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(2224), + [anon_sym_DOLLARif] = ACTIONS(2224), + [anon_sym_is] = ACTIONS(2224), + [anon_sym_BANGis] = ACTIONS(2222), + [anon_sym_in] = ACTIONS(2224), + [anon_sym_BANGin] = ACTIONS(2222), + [anon_sym_match] = ACTIONS(2224), + [anon_sym_select] = ACTIONS(2224), + [anon_sym_lock] = ACTIONS(2224), + [anon_sym_rlock] = ACTIONS(2224), + [anon_sym_unsafe] = ACTIONS(2224), + [anon_sym_sql] = ACTIONS(2224), + [sym_int_literal] = ACTIONS(2224), + [sym_float_literal] = ACTIONS(2222), + [sym_rune_literal] = ACTIONS(2222), + [anon_sym_AT] = ACTIONS(2224), + [anon_sym_shared] = ACTIONS(2224), + [anon_sym_map_LBRACK] = ACTIONS(2222), + [anon_sym_chan] = ACTIONS(2224), + [anon_sym_thread] = ACTIONS(2224), + [anon_sym_atomic] = ACTIONS(2224), + [sym___double_quote] = ACTIONS(2222), + [sym___single_quote] = ACTIONS(2222), + [sym___c_double_quote] = ACTIONS(2222), + [sym___c_single_quote] = ACTIONS(2222), + [sym___r_double_quote] = ACTIONS(2222), + [sym___r_single_quote] = ACTIONS(2222), + }, + [1278] = { + [sym_type_parameters] = STATE(4375), + [sym_argument_list] = STATE(1355), + [sym_or_block] = STATE(1356), + [sym_identifier] = ACTIONS(2144), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3604), + [anon_sym_as] = ACTIONS(2144), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_COMMA] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(3612), [anon_sym_PIPE] = ACTIONS(3614), - [anon_sym_fn] = ACTIONS(2220), + [anon_sym_fn] = ACTIONS(2144), [anon_sym_PLUS] = ACTIONS(3614), [anon_sym_DASH] = ACTIONS(3614), [anon_sym_STAR] = ACTIONS(3616), [anon_sym_SLASH] = ACTIONS(3618), [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(3620), - [anon_sym_GT] = ACTIONS(3620), - [anon_sym_EQ_EQ] = ACTIONS(3622), - [anon_sym_BANG_EQ] = ACTIONS(3622), - [anon_sym_LT_EQ] = ACTIONS(3622), - [anon_sym_GT_EQ] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_RBRACK] = ACTIONS(2218), - [anon_sym_struct] = ACTIONS(2220), - [anon_sym_mut] = ACTIONS(2220), - [anon_sym_PLUS_PLUS] = ACTIONS(3624), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3604), - [anon_sym_go] = ACTIONS(2220), - [anon_sym_spawn] = ACTIONS(2220), - [anon_sym_json_DOTdecode] = ACTIONS(2218), - [anon_sym_LBRACK2] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(2218), - [anon_sym_CARET] = ACTIONS(3628), + [anon_sym_LT] = ACTIONS(2144), + [anon_sym_GT] = ACTIONS(2144), + [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(3624), + [anon_sym_RBRACK] = ACTIONS(2142), + [anon_sym_struct] = ACTIONS(2144), + [anon_sym_mut] = ACTIONS(2144), + [anon_sym_PLUS_PLUS] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(2142), + [anon_sym_QMARK] = ACTIONS(3630), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_go] = ACTIONS(2144), + [anon_sym_spawn] = ACTIONS(2144), + [anon_sym_json_DOTdecode] = ACTIONS(2142), + [anon_sym_LBRACK2] = ACTIONS(3634), + [anon_sym_TILDE] = ACTIONS(2142), + [anon_sym_CARET] = ACTIONS(3636), [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(2218), + [anon_sym_LT_DASH] = ACTIONS(2142), [anon_sym_LT_LT] = ACTIONS(3616), [anon_sym_GT_GT] = ACTIONS(3618), [anon_sym_GT_GT_GT] = ACTIONS(3616), [anon_sym_AMP_CARET] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3632), - [anon_sym_or] = ACTIONS(3634), - [sym_none] = ACTIONS(2220), - [sym_true] = ACTIONS(2220), - [sym_false] = ACTIONS(2220), - [sym_nil] = ACTIONS(2220), - [anon_sym_QMARK_DOT] = ACTIONS(3608), - [anon_sym_POUND_LBRACK] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(2220), - [anon_sym_DOLLARif] = ACTIONS(2220), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_BANGis] = ACTIONS(3638), - [anon_sym_in] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_match] = ACTIONS(2220), - [anon_sym_select] = ACTIONS(2220), - [anon_sym_lock] = ACTIONS(2220), - [anon_sym_rlock] = ACTIONS(2220), - [anon_sym_unsafe] = ACTIONS(2220), - [anon_sym_sql] = ACTIONS(2220), - [sym_int_literal] = ACTIONS(2220), - [sym_float_literal] = ACTIONS(2218), - [sym_rune_literal] = ACTIONS(2218), - [anon_sym_AT] = ACTIONS(2220), - [anon_sym_shared] = ACTIONS(2220), - [anon_sym_map_LBRACK] = ACTIONS(2218), - [anon_sym_chan] = ACTIONS(2220), - [anon_sym_thread] = ACTIONS(2220), - [anon_sym_atomic] = ACTIONS(2220), - [sym___double_quote] = ACTIONS(2218), - [sym___single_quote] = ACTIONS(2218), - [sym___c_double_quote] = ACTIONS(2218), - [sym___c_single_quote] = ACTIONS(2218), - [sym___r_double_quote] = ACTIONS(2218), - [sym___r_single_quote] = ACTIONS(2218), - }, - [1273] = { - [sym_type_parameters] = STATE(4295), - [sym_argument_list] = STATE(1342), - [sym_or_block] = STATE(1343), - [sym_identifier] = ACTIONS(2230), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_as] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2228), - [anon_sym_COMMA] = ACTIONS(2228), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_fn] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2228), - [anon_sym_SLASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2228), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2230), - [anon_sym_EQ_EQ] = ACTIONS(2228), - [anon_sym_BANG_EQ] = ACTIONS(2228), - [anon_sym_LT_EQ] = ACTIONS(2228), - [anon_sym_GT_EQ] = ACTIONS(2228), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_RBRACK] = ACTIONS(2228), - [anon_sym_struct] = ACTIONS(2230), - [anon_sym_mut] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2228), - [anon_sym_DASH_DASH] = ACTIONS(2228), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3604), - [anon_sym_go] = ACTIONS(2230), - [anon_sym_spawn] = ACTIONS(2230), - [anon_sym_json_DOTdecode] = ACTIONS(2228), - [anon_sym_LBRACK2] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_CARET] = ACTIONS(2228), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_LT_DASH] = ACTIONS(2228), - [anon_sym_LT_LT] = ACTIONS(2228), - [anon_sym_GT_GT] = ACTIONS(2230), - [anon_sym_GT_GT_GT] = ACTIONS(2228), - [anon_sym_AMP_CARET] = ACTIONS(2228), - [anon_sym_AMP_AMP] = ACTIONS(2228), - [anon_sym_PIPE_PIPE] = ACTIONS(2228), - [anon_sym_or] = ACTIONS(2230), - [sym_none] = ACTIONS(2230), - [sym_true] = ACTIONS(2230), - [sym_false] = ACTIONS(2230), - [sym_nil] = ACTIONS(2230), - [anon_sym_QMARK_DOT] = ACTIONS(3608), - [anon_sym_POUND_LBRACK] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_DOLLARif] = ACTIONS(2230), - [anon_sym_is] = ACTIONS(2230), - [anon_sym_BANGis] = ACTIONS(2228), - [anon_sym_in] = ACTIONS(2230), - [anon_sym_BANGin] = ACTIONS(2228), - [anon_sym_match] = ACTIONS(2230), - [anon_sym_select] = ACTIONS(2230), - [anon_sym_lock] = ACTIONS(2230), - [anon_sym_rlock] = ACTIONS(2230), - [anon_sym_unsafe] = ACTIONS(2230), - [anon_sym_sql] = ACTIONS(2230), - [sym_int_literal] = ACTIONS(2230), - [sym_float_literal] = ACTIONS(2228), - [sym_rune_literal] = ACTIONS(2228), - [anon_sym_AT] = ACTIONS(2230), - [anon_sym_shared] = ACTIONS(2230), - [anon_sym_map_LBRACK] = ACTIONS(2228), - [anon_sym_chan] = ACTIONS(2230), - [anon_sym_thread] = ACTIONS(2230), - [anon_sym_atomic] = ACTIONS(2230), - [sym___double_quote] = ACTIONS(2228), - [sym___single_quote] = ACTIONS(2228), - [sym___c_double_quote] = ACTIONS(2228), - [sym___c_single_quote] = ACTIONS(2228), - [sym___r_double_quote] = ACTIONS(2228), - [sym___r_single_quote] = ACTIONS(2228), + [anon_sym_AMP_AMP] = ACTIONS(2142), + [anon_sym_PIPE_PIPE] = ACTIONS(2142), + [anon_sym_or] = ACTIONS(2144), + [sym_none] = ACTIONS(2144), + [sym_true] = ACTIONS(2144), + [sym_false] = ACTIONS(2144), + [sym_nil] = ACTIONS(2144), + [anon_sym_QMARK_DOT] = ACTIONS(3644), + [anon_sym_POUND_LBRACK] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(2144), + [anon_sym_DOLLARif] = ACTIONS(2144), + [anon_sym_is] = ACTIONS(2144), + [anon_sym_BANGis] = ACTIONS(2142), + [anon_sym_in] = ACTIONS(2144), + [anon_sym_BANGin] = ACTIONS(2142), + [anon_sym_match] = ACTIONS(2144), + [anon_sym_select] = ACTIONS(2144), + [anon_sym_lock] = ACTIONS(2144), + [anon_sym_rlock] = ACTIONS(2144), + [anon_sym_unsafe] = ACTIONS(2144), + [anon_sym_sql] = ACTIONS(2144), + [sym_int_literal] = ACTIONS(2144), + [sym_float_literal] = ACTIONS(2142), + [sym_rune_literal] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(2144), + [anon_sym_shared] = ACTIONS(2144), + [anon_sym_map_LBRACK] = ACTIONS(2142), + [anon_sym_chan] = ACTIONS(2144), + [anon_sym_thread] = ACTIONS(2144), + [anon_sym_atomic] = ACTIONS(2144), + [sym___double_quote] = ACTIONS(2142), + [sym___single_quote] = ACTIONS(2142), + [sym___c_double_quote] = ACTIONS(2142), + [sym___c_single_quote] = ACTIONS(2142), + [sym___r_double_quote] = ACTIONS(2142), + [sym___r_single_quote] = ACTIONS(2142), }, - [1274] = { - [sym_type_parameters] = STATE(4295), - [sym_argument_list] = STATE(1342), - [sym_or_block] = STATE(1343), - [sym_identifier] = ACTIONS(2076), + [1279] = { + [sym_type_parameters] = STATE(4375), + [sym_argument_list] = STATE(1355), + [sym_or_block] = STATE(1356), + [sym_identifier] = ACTIONS(2156), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2074), - [anon_sym_COMMA] = ACTIONS(2074), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2076), + [anon_sym_DOT] = ACTIONS(3604), + [anon_sym_as] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_COMMA] = ACTIONS(2154), + [anon_sym_LPAREN] = ACTIONS(3612), + [anon_sym_PIPE] = ACTIONS(3614), + [anon_sym_fn] = ACTIONS(2156), + [anon_sym_PLUS] = ACTIONS(3614), + [anon_sym_DASH] = ACTIONS(3614), [anon_sym_STAR] = ACTIONS(3616), [anon_sym_SLASH] = ACTIONS(3618), [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2074), - [anon_sym_BANG_EQ] = ACTIONS(2074), - [anon_sym_LT_EQ] = ACTIONS(2074), - [anon_sym_GT_EQ] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_RBRACK] = ACTIONS(2074), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2074), - [anon_sym_DASH_DASH] = ACTIONS(2074), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3604), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2074), - [anon_sym_LBRACK2] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_LT] = ACTIONS(2156), + [anon_sym_GT] = ACTIONS(2156), + [anon_sym_EQ_EQ] = ACTIONS(2154), + [anon_sym_BANG_EQ] = ACTIONS(2154), + [anon_sym_LT_EQ] = ACTIONS(2154), + [anon_sym_GT_EQ] = ACTIONS(2154), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_RBRACK] = ACTIONS(2154), + [anon_sym_struct] = ACTIONS(2156), + [anon_sym_mut] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2154), + [anon_sym_DASH_DASH] = ACTIONS(2154), + [anon_sym_QMARK] = ACTIONS(3630), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_go] = ACTIONS(2156), + [anon_sym_spawn] = ACTIONS(2156), + [anon_sym_json_DOTdecode] = ACTIONS(2154), + [anon_sym_LBRACK2] = ACTIONS(3634), + [anon_sym_TILDE] = ACTIONS(2154), + [anon_sym_CARET] = ACTIONS(3636), [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(2074), + [anon_sym_LT_DASH] = ACTIONS(2154), [anon_sym_LT_LT] = ACTIONS(3616), [anon_sym_GT_GT] = ACTIONS(3618), [anon_sym_GT_GT_GT] = ACTIONS(3616), [anon_sym_AMP_CARET] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(2074), - [anon_sym_PIPE_PIPE] = ACTIONS(2074), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3608), - [anon_sym_POUND_LBRACK] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2074), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2074), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2074), - [sym_rune_literal] = ACTIONS(2074), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2074), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2074), - [sym___single_quote] = ACTIONS(2074), - [sym___c_double_quote] = ACTIONS(2074), - [sym___c_single_quote] = ACTIONS(2074), - [sym___r_double_quote] = ACTIONS(2074), - [sym___r_single_quote] = ACTIONS(2074), + [anon_sym_AMP_AMP] = ACTIONS(2154), + [anon_sym_PIPE_PIPE] = ACTIONS(2154), + [anon_sym_or] = ACTIONS(2156), + [sym_none] = ACTIONS(2156), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [sym_nil] = ACTIONS(2156), + [anon_sym_QMARK_DOT] = ACTIONS(3644), + [anon_sym_POUND_LBRACK] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_DOLLARif] = ACTIONS(2156), + [anon_sym_is] = ACTIONS(2156), + [anon_sym_BANGis] = ACTIONS(2154), + [anon_sym_in] = ACTIONS(2156), + [anon_sym_BANGin] = ACTIONS(2154), + [anon_sym_match] = ACTIONS(2156), + [anon_sym_select] = ACTIONS(2156), + [anon_sym_lock] = ACTIONS(2156), + [anon_sym_rlock] = ACTIONS(2156), + [anon_sym_unsafe] = ACTIONS(2156), + [anon_sym_sql] = ACTIONS(2156), + [sym_int_literal] = ACTIONS(2156), + [sym_float_literal] = ACTIONS(2154), + [sym_rune_literal] = ACTIONS(2154), + [anon_sym_AT] = ACTIONS(2156), + [anon_sym_shared] = ACTIONS(2156), + [anon_sym_map_LBRACK] = ACTIONS(2154), + [anon_sym_chan] = ACTIONS(2156), + [anon_sym_thread] = ACTIONS(2156), + [anon_sym_atomic] = ACTIONS(2156), + [sym___double_quote] = ACTIONS(2154), + [sym___single_quote] = ACTIONS(2154), + [sym___c_double_quote] = ACTIONS(2154), + [sym___c_single_quote] = ACTIONS(2154), + [sym___r_double_quote] = ACTIONS(2154), + [sym___r_single_quote] = ACTIONS(2154), }, - [1275] = { - [sym_type_parameters] = STATE(4295), - [sym_argument_list] = STATE(1342), - [sym_or_block] = STATE(1343), - [sym_identifier] = ACTIONS(2076), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2074), - [anon_sym_COMMA] = ACTIONS(2074), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2076), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_SLASH] = ACTIONS(2076), - [anon_sym_PERCENT] = ACTIONS(2074), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2074), - [anon_sym_BANG_EQ] = ACTIONS(2074), - [anon_sym_LT_EQ] = ACTIONS(2074), - [anon_sym_GT_EQ] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_RBRACK] = ACTIONS(2074), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2074), - [anon_sym_DASH_DASH] = ACTIONS(2074), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3604), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2074), - [anon_sym_LBRACK2] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_CARET] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2076), - [anon_sym_LT_DASH] = ACTIONS(2074), - [anon_sym_LT_LT] = ACTIONS(2074), - [anon_sym_GT_GT] = ACTIONS(2076), - [anon_sym_GT_GT_GT] = ACTIONS(2074), - [anon_sym_AMP_CARET] = ACTIONS(2074), - [anon_sym_AMP_AMP] = ACTIONS(2074), - [anon_sym_PIPE_PIPE] = ACTIONS(2074), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3608), - [anon_sym_POUND_LBRACK] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2074), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2074), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2074), - [sym_rune_literal] = ACTIONS(2074), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2074), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2074), - [sym___single_quote] = ACTIONS(2074), - [sym___c_double_quote] = ACTIONS(2074), - [sym___c_single_quote] = ACTIONS(2074), - [sym___r_double_quote] = ACTIONS(2074), - [sym___r_single_quote] = ACTIONS(2074), - }, - [1276] = { - [sym_type_parameters] = STATE(4295), - [sym_argument_list] = STATE(1342), - [sym_or_block] = STATE(1343), - [sym_identifier] = ACTIONS(2076), + [1280] = { + [sym_type_parameters] = STATE(4375), + [sym_argument_list] = STATE(1355), + [sym_or_block] = STATE(1356), + [sym_identifier] = ACTIONS(2162), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2074), - [anon_sym_COMMA] = ACTIONS(2074), - [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_DOT] = ACTIONS(3604), + [anon_sym_as] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_COMMA] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(3612), [anon_sym_PIPE] = ACTIONS(3614), - [anon_sym_fn] = ACTIONS(2076), + [anon_sym_fn] = ACTIONS(2162), [anon_sym_PLUS] = ACTIONS(3614), [anon_sym_DASH] = ACTIONS(3614), [anon_sym_STAR] = ACTIONS(3616), [anon_sym_SLASH] = ACTIONS(3618), [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2074), - [anon_sym_BANG_EQ] = ACTIONS(2074), - [anon_sym_LT_EQ] = ACTIONS(2074), - [anon_sym_GT_EQ] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_RBRACK] = ACTIONS(2074), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2074), - [anon_sym_DASH_DASH] = ACTIONS(2074), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3604), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2074), - [anon_sym_LBRACK2] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_CARET] = ACTIONS(3628), + [anon_sym_LT] = ACTIONS(2162), + [anon_sym_GT] = ACTIONS(2162), + [anon_sym_EQ_EQ] = ACTIONS(2160), + [anon_sym_BANG_EQ] = ACTIONS(2160), + [anon_sym_LT_EQ] = ACTIONS(2160), + [anon_sym_GT_EQ] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_RBRACK] = ACTIONS(2160), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_mut] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [anon_sym_QMARK] = ACTIONS(3630), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_go] = ACTIONS(2162), + [anon_sym_spawn] = ACTIONS(2162), + [anon_sym_json_DOTdecode] = ACTIONS(2160), + [anon_sym_LBRACK2] = ACTIONS(3634), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(3636), [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(2074), + [anon_sym_LT_DASH] = ACTIONS(2160), [anon_sym_LT_LT] = ACTIONS(3616), [anon_sym_GT_GT] = ACTIONS(3618), [anon_sym_GT_GT_GT] = ACTIONS(3616), [anon_sym_AMP_CARET] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(2074), - [anon_sym_PIPE_PIPE] = ACTIONS(2074), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3608), - [anon_sym_POUND_LBRACK] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2074), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2074), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2074), - [sym_rune_literal] = ACTIONS(2074), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2074), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2074), - [sym___single_quote] = ACTIONS(2074), - [sym___c_double_quote] = ACTIONS(2074), - [sym___c_single_quote] = ACTIONS(2074), - [sym___r_double_quote] = ACTIONS(2074), - [sym___r_single_quote] = ACTIONS(2074), + [anon_sym_AMP_AMP] = ACTIONS(2160), + [anon_sym_PIPE_PIPE] = ACTIONS(2160), + [anon_sym_or] = ACTIONS(2162), + [sym_none] = ACTIONS(2162), + [sym_true] = ACTIONS(2162), + [sym_false] = ACTIONS(2162), + [sym_nil] = ACTIONS(2162), + [anon_sym_QMARK_DOT] = ACTIONS(3644), + [anon_sym_POUND_LBRACK] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_DOLLARif] = ACTIONS(2162), + [anon_sym_is] = ACTIONS(2162), + [anon_sym_BANGis] = ACTIONS(2160), + [anon_sym_in] = ACTIONS(2162), + [anon_sym_BANGin] = ACTIONS(2160), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_select] = ACTIONS(2162), + [anon_sym_lock] = ACTIONS(2162), + [anon_sym_rlock] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_sql] = ACTIONS(2162), + [sym_int_literal] = ACTIONS(2162), + [sym_float_literal] = ACTIONS(2160), + [sym_rune_literal] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2162), + [anon_sym_shared] = ACTIONS(2162), + [anon_sym_map_LBRACK] = ACTIONS(2160), + [anon_sym_chan] = ACTIONS(2162), + [anon_sym_thread] = ACTIONS(2162), + [anon_sym_atomic] = ACTIONS(2162), + [sym___double_quote] = ACTIONS(2160), + [sym___single_quote] = ACTIONS(2160), + [sym___c_double_quote] = ACTIONS(2160), + [sym___c_single_quote] = ACTIONS(2160), + [sym___r_double_quote] = ACTIONS(2160), + [sym___r_single_quote] = ACTIONS(2160), }, - [1277] = { - [sym_type_parameters] = STATE(4295), - [sym_argument_list] = STATE(1342), - [sym_or_block] = STATE(1343), - [sym_identifier] = ACTIONS(2076), + [1281] = { + [sym_type_parameters] = STATE(4375), + [sym_argument_list] = STATE(1355), + [sym_or_block] = STATE(1356), + [sym_identifier] = ACTIONS(2162), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2074), - [anon_sym_COMMA] = ACTIONS(2074), - [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_DOT] = ACTIONS(3604), + [anon_sym_as] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_COMMA] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(3612), [anon_sym_PIPE] = ACTIONS(3614), - [anon_sym_fn] = ACTIONS(2076), + [anon_sym_fn] = ACTIONS(2162), [anon_sym_PLUS] = ACTIONS(3614), [anon_sym_DASH] = ACTIONS(3614), [anon_sym_STAR] = ACTIONS(3616), @@ -165284,76 +165910,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(3622), [anon_sym_LT_EQ] = ACTIONS(3622), [anon_sym_GT_EQ] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_RBRACK] = ACTIONS(2074), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2074), - [anon_sym_DASH_DASH] = ACTIONS(2074), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3604), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2074), - [anon_sym_LBRACK2] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_CARET] = ACTIONS(3628), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_RBRACK] = ACTIONS(2160), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_mut] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [anon_sym_QMARK] = ACTIONS(3630), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_go] = ACTIONS(2162), + [anon_sym_spawn] = ACTIONS(2162), + [anon_sym_json_DOTdecode] = ACTIONS(2160), + [anon_sym_LBRACK2] = ACTIONS(3634), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(3636), [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(2074), + [anon_sym_LT_DASH] = ACTIONS(2160), [anon_sym_LT_LT] = ACTIONS(3616), [anon_sym_GT_GT] = ACTIONS(3618), [anon_sym_GT_GT_GT] = ACTIONS(3616), [anon_sym_AMP_CARET] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(2074), - [anon_sym_PIPE_PIPE] = ACTIONS(2074), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3608), - [anon_sym_POUND_LBRACK] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2074), - [anon_sym_in] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2074), - [sym_rune_literal] = ACTIONS(2074), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2074), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2074), - [sym___single_quote] = ACTIONS(2074), - [sym___c_double_quote] = ACTIONS(2074), - [sym___c_single_quote] = ACTIONS(2074), - [sym___r_double_quote] = ACTIONS(2074), - [sym___r_single_quote] = ACTIONS(2074), + [anon_sym_AMP_AMP] = ACTIONS(2160), + [anon_sym_PIPE_PIPE] = ACTIONS(2160), + [anon_sym_or] = ACTIONS(2162), + [sym_none] = ACTIONS(2162), + [sym_true] = ACTIONS(2162), + [sym_false] = ACTIONS(2162), + [sym_nil] = ACTIONS(2162), + [anon_sym_QMARK_DOT] = ACTIONS(3644), + [anon_sym_POUND_LBRACK] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_DOLLARif] = ACTIONS(2162), + [anon_sym_is] = ACTIONS(2162), + [anon_sym_BANGis] = ACTIONS(2160), + [anon_sym_in] = ACTIONS(3652), + [anon_sym_BANGin] = ACTIONS(3654), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_select] = ACTIONS(2162), + [anon_sym_lock] = ACTIONS(2162), + [anon_sym_rlock] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_sql] = ACTIONS(2162), + [sym_int_literal] = ACTIONS(2162), + [sym_float_literal] = ACTIONS(2160), + [sym_rune_literal] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2162), + [anon_sym_shared] = ACTIONS(2162), + [anon_sym_map_LBRACK] = ACTIONS(2160), + [anon_sym_chan] = ACTIONS(2162), + [anon_sym_thread] = ACTIONS(2162), + [anon_sym_atomic] = ACTIONS(2162), + [sym___double_quote] = ACTIONS(2160), + [sym___single_quote] = ACTIONS(2160), + [sym___c_double_quote] = ACTIONS(2160), + [sym___c_single_quote] = ACTIONS(2160), + [sym___r_double_quote] = ACTIONS(2160), + [sym___r_single_quote] = ACTIONS(2160), }, - [1278] = { - [sym_type_parameters] = STATE(4295), - [sym_argument_list] = STATE(1342), - [sym_or_block] = STATE(1343), - [sym_identifier] = ACTIONS(2076), + [1282] = { + [sym_type_parameters] = STATE(4375), + [sym_argument_list] = STATE(1355), + [sym_or_block] = STATE(1356), + [sym_identifier] = ACTIONS(2162), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2074), - [anon_sym_COMMA] = ACTIONS(2074), - [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_DOT] = ACTIONS(3604), + [anon_sym_as] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_COMMA] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(3612), [anon_sym_PIPE] = ACTIONS(3614), - [anon_sym_fn] = ACTIONS(2076), + [anon_sym_fn] = ACTIONS(2162), [anon_sym_PLUS] = ACTIONS(3614), [anon_sym_DASH] = ACTIONS(3614), [anon_sym_STAR] = ACTIONS(3616), @@ -165365,1422 +165991,473 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(3622), [anon_sym_LT_EQ] = ACTIONS(3622), [anon_sym_GT_EQ] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_RBRACK] = ACTIONS(2074), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2074), - [anon_sym_DASH_DASH] = ACTIONS(2074), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3604), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2074), - [anon_sym_LBRACK2] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_CARET] = ACTIONS(3628), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_RBRACK] = ACTIONS(2160), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_mut] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [anon_sym_QMARK] = ACTIONS(3630), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_go] = ACTIONS(2162), + [anon_sym_spawn] = ACTIONS(2162), + [anon_sym_json_DOTdecode] = ACTIONS(2160), + [anon_sym_LBRACK2] = ACTIONS(3634), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(3636), [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(2074), + [anon_sym_LT_DASH] = ACTIONS(2160), [anon_sym_LT_LT] = ACTIONS(3616), [anon_sym_GT_GT] = ACTIONS(3618), [anon_sym_GT_GT_GT] = ACTIONS(3616), [anon_sym_AMP_CARET] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(2074), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3608), - [anon_sym_POUND_LBRACK] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2074), - [anon_sym_in] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2074), - [sym_rune_literal] = ACTIONS(2074), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2074), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2074), - [sym___single_quote] = ACTIONS(2074), - [sym___c_double_quote] = ACTIONS(2074), - [sym___c_single_quote] = ACTIONS(2074), - [sym___r_double_quote] = ACTIONS(2074), - [sym___r_single_quote] = ACTIONS(2074), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(2160), + [anon_sym_or] = ACTIONS(2162), + [sym_none] = ACTIONS(2162), + [sym_true] = ACTIONS(2162), + [sym_false] = ACTIONS(2162), + [sym_nil] = ACTIONS(2162), + [anon_sym_QMARK_DOT] = ACTIONS(3644), + [anon_sym_POUND_LBRACK] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_DOLLARif] = ACTIONS(2162), + [anon_sym_is] = ACTIONS(2162), + [anon_sym_BANGis] = ACTIONS(2160), + [anon_sym_in] = ACTIONS(3652), + [anon_sym_BANGin] = ACTIONS(3654), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_select] = ACTIONS(2162), + [anon_sym_lock] = ACTIONS(2162), + [anon_sym_rlock] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_sql] = ACTIONS(2162), + [sym_int_literal] = ACTIONS(2162), + [sym_float_literal] = ACTIONS(2160), + [sym_rune_literal] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2162), + [anon_sym_shared] = ACTIONS(2162), + [anon_sym_map_LBRACK] = ACTIONS(2160), + [anon_sym_chan] = ACTIONS(2162), + [anon_sym_thread] = ACTIONS(2162), + [anon_sym_atomic] = ACTIONS(2162), + [sym___double_quote] = ACTIONS(2160), + [sym___single_quote] = ACTIONS(2160), + [sym___c_double_quote] = ACTIONS(2160), + [sym___c_single_quote] = ACTIONS(2160), + [sym___r_double_quote] = ACTIONS(2160), + [sym___r_single_quote] = ACTIONS(2160), }, - [1279] = { - [sym_type_parameters] = STATE(4295), - [sym_argument_list] = STATE(1342), - [sym_or_block] = STATE(1343), - [sym_identifier] = ACTIONS(2108), + [1283] = { + [sym_type_parameters] = STATE(4375), + [sym_argument_list] = STATE(1355), + [sym_or_block] = STATE(1356), + [sym_identifier] = ACTIONS(2052), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_as] = ACTIONS(2108), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_COMMA] = ACTIONS(2106), - [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_DOT] = ACTIONS(3604), + [anon_sym_as] = ACTIONS(3606), + [anon_sym_LBRACE] = ACTIONS(2050), + [anon_sym_COMMA] = ACTIONS(2050), + [anon_sym_LPAREN] = ACTIONS(3612), [anon_sym_PIPE] = ACTIONS(3614), - [anon_sym_fn] = ACTIONS(2108), + [anon_sym_fn] = ACTIONS(2052), [anon_sym_PLUS] = ACTIONS(3614), [anon_sym_DASH] = ACTIONS(3614), [anon_sym_STAR] = ACTIONS(3616), [anon_sym_SLASH] = ACTIONS(3618), [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(2108), - [anon_sym_GT] = ACTIONS(2108), - [anon_sym_EQ_EQ] = ACTIONS(2106), - [anon_sym_BANG_EQ] = ACTIONS(2106), - [anon_sym_LT_EQ] = ACTIONS(2106), - [anon_sym_GT_EQ] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_RBRACK] = ACTIONS(2106), - [anon_sym_struct] = ACTIONS(2108), - [anon_sym_mut] = ACTIONS(2108), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3604), - [anon_sym_go] = ACTIONS(2108), - [anon_sym_spawn] = ACTIONS(2108), - [anon_sym_json_DOTdecode] = ACTIONS(2106), - [anon_sym_LBRACK2] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(2106), - [anon_sym_CARET] = ACTIONS(3628), + [anon_sym_LT] = ACTIONS(3620), + [anon_sym_GT] = ACTIONS(3620), + [anon_sym_EQ_EQ] = ACTIONS(3622), + [anon_sym_BANG_EQ] = ACTIONS(3622), + [anon_sym_LT_EQ] = ACTIONS(3622), + [anon_sym_GT_EQ] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_RBRACK] = ACTIONS(2050), + [anon_sym_struct] = ACTIONS(2052), + [anon_sym_mut] = ACTIONS(2052), + [anon_sym_PLUS_PLUS] = ACTIONS(3626), + [anon_sym_DASH_DASH] = ACTIONS(3628), + [anon_sym_QMARK] = ACTIONS(3630), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_go] = ACTIONS(2052), + [anon_sym_spawn] = ACTIONS(2052), + [anon_sym_json_DOTdecode] = ACTIONS(2050), + [anon_sym_LBRACK2] = ACTIONS(3634), + [anon_sym_TILDE] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(3636), [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(2106), + [anon_sym_LT_DASH] = ACTIONS(2050), [anon_sym_LT_LT] = ACTIONS(3616), [anon_sym_GT_GT] = ACTIONS(3618), [anon_sym_GT_GT_GT] = ACTIONS(3616), [anon_sym_AMP_CARET] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(2106), - [anon_sym_PIPE_PIPE] = ACTIONS(2106), - [anon_sym_or] = ACTIONS(2108), - [sym_none] = ACTIONS(2108), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_nil] = ACTIONS(2108), - [anon_sym_QMARK_DOT] = ACTIONS(3608), - [anon_sym_POUND_LBRACK] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(2108), - [anon_sym_DOLLARif] = ACTIONS(2108), - [anon_sym_is] = ACTIONS(2108), - [anon_sym_BANGis] = ACTIONS(2106), - [anon_sym_in] = ACTIONS(2108), - [anon_sym_BANGin] = ACTIONS(2106), - [anon_sym_match] = ACTIONS(2108), - [anon_sym_select] = ACTIONS(2108), - [anon_sym_lock] = ACTIONS(2108), - [anon_sym_rlock] = ACTIONS(2108), - [anon_sym_unsafe] = ACTIONS(2108), - [anon_sym_sql] = ACTIONS(2108), - [sym_int_literal] = ACTIONS(2108), - [sym_float_literal] = ACTIONS(2106), - [sym_rune_literal] = ACTIONS(2106), - [anon_sym_AT] = ACTIONS(2108), - [anon_sym_shared] = ACTIONS(2108), - [anon_sym_map_LBRACK] = ACTIONS(2106), - [anon_sym_chan] = ACTIONS(2108), - [anon_sym_thread] = ACTIONS(2108), - [anon_sym_atomic] = ACTIONS(2108), - [sym___double_quote] = ACTIONS(2106), - [sym___single_quote] = ACTIONS(2106), - [sym___c_double_quote] = ACTIONS(2106), - [sym___c_single_quote] = ACTIONS(2106), - [sym___r_double_quote] = ACTIONS(2106), - [sym___r_single_quote] = ACTIONS(2106), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3642), + [sym_none] = ACTIONS(2052), + [sym_true] = ACTIONS(2052), + [sym_false] = ACTIONS(2052), + [sym_nil] = ACTIONS(2052), + [anon_sym_QMARK_DOT] = ACTIONS(3644), + [anon_sym_POUND_LBRACK] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(2052), + [anon_sym_DOLLARif] = ACTIONS(2052), + [anon_sym_is] = ACTIONS(3648), + [anon_sym_BANGis] = ACTIONS(3650), + [anon_sym_in] = ACTIONS(3652), + [anon_sym_BANGin] = ACTIONS(3654), + [anon_sym_match] = ACTIONS(2052), + [anon_sym_select] = ACTIONS(2052), + [anon_sym_lock] = ACTIONS(2052), + [anon_sym_rlock] = ACTIONS(2052), + [anon_sym_unsafe] = ACTIONS(2052), + [anon_sym_sql] = ACTIONS(2052), + [sym_int_literal] = ACTIONS(2052), + [sym_float_literal] = ACTIONS(2050), + [sym_rune_literal] = ACTIONS(2050), + [anon_sym_AT] = ACTIONS(2052), + [anon_sym_shared] = ACTIONS(2052), + [anon_sym_map_LBRACK] = ACTIONS(2050), + [anon_sym_chan] = ACTIONS(2052), + [anon_sym_thread] = ACTIONS(2052), + [anon_sym_atomic] = ACTIONS(2052), + [sym___double_quote] = ACTIONS(2050), + [sym___single_quote] = ACTIONS(2050), + [sym___c_double_quote] = ACTIONS(2050), + [sym___c_single_quote] = ACTIONS(2050), + [sym___r_double_quote] = ACTIONS(2050), + [sym___r_single_quote] = ACTIONS(2050), }, - [1280] = { - [sym_type_parameters] = STATE(4295), - [sym_argument_list] = STATE(1342), - [sym_or_block] = STATE(1343), - [sym_identifier] = ACTIONS(2112), + [1284] = { + [sym_type_parameters] = STATE(4375), + [sym_argument_list] = STATE(1355), + [sym_or_block] = STATE(1356), + [sym_identifier] = ACTIONS(2234), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_as] = ACTIONS(2112), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_COMMA] = ACTIONS(2110), - [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_DOT] = ACTIONS(3604), + [anon_sym_as] = ACTIONS(3606), + [anon_sym_LBRACE] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(2232), + [anon_sym_LPAREN] = ACTIONS(3612), [anon_sym_PIPE] = ACTIONS(3614), - [anon_sym_fn] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2234), [anon_sym_PLUS] = ACTIONS(3614), [anon_sym_DASH] = ACTIONS(3614), [anon_sym_STAR] = ACTIONS(3616), [anon_sym_SLASH] = ACTIONS(3618), [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(2112), - [anon_sym_GT] = ACTIONS(2112), - [anon_sym_EQ_EQ] = ACTIONS(2110), - [anon_sym_BANG_EQ] = ACTIONS(2110), - [anon_sym_LT_EQ] = ACTIONS(2110), - [anon_sym_GT_EQ] = ACTIONS(2110), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_RBRACK] = ACTIONS(2110), - [anon_sym_struct] = ACTIONS(2112), - [anon_sym_mut] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2110), - [anon_sym_DASH_DASH] = ACTIONS(2110), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3604), - [anon_sym_go] = ACTIONS(2112), - [anon_sym_spawn] = ACTIONS(2112), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(2110), - [anon_sym_CARET] = ACTIONS(3628), + [anon_sym_LT] = ACTIONS(3620), + [anon_sym_GT] = ACTIONS(3620), + [anon_sym_EQ_EQ] = ACTIONS(3622), + [anon_sym_BANG_EQ] = ACTIONS(3622), + [anon_sym_LT_EQ] = ACTIONS(3622), + [anon_sym_GT_EQ] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_RBRACK] = ACTIONS(2232), + [anon_sym_struct] = ACTIONS(2234), + [anon_sym_mut] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(3626), + [anon_sym_DASH_DASH] = ACTIONS(3628), + [anon_sym_QMARK] = ACTIONS(3630), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_go] = ACTIONS(2234), + [anon_sym_spawn] = ACTIONS(2234), + [anon_sym_json_DOTdecode] = ACTIONS(2232), + [anon_sym_LBRACK2] = ACTIONS(3634), + [anon_sym_TILDE] = ACTIONS(2232), + [anon_sym_CARET] = ACTIONS(3636), [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(2110), + [anon_sym_LT_DASH] = ACTIONS(2232), [anon_sym_LT_LT] = ACTIONS(3616), [anon_sym_GT_GT] = ACTIONS(3618), [anon_sym_GT_GT_GT] = ACTIONS(3616), [anon_sym_AMP_CARET] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(2110), - [anon_sym_PIPE_PIPE] = ACTIONS(2110), - [anon_sym_or] = ACTIONS(2112), - [sym_none] = ACTIONS(2112), - [sym_true] = ACTIONS(2112), - [sym_false] = ACTIONS(2112), - [sym_nil] = ACTIONS(2112), - [anon_sym_QMARK_DOT] = ACTIONS(3608), - [anon_sym_POUND_LBRACK] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(2112), - [anon_sym_DOLLARif] = ACTIONS(2112), - [anon_sym_is] = ACTIONS(2112), - [anon_sym_BANGis] = ACTIONS(2110), - [anon_sym_in] = ACTIONS(2112), - [anon_sym_BANGin] = ACTIONS(2110), - [anon_sym_match] = ACTIONS(2112), - [anon_sym_select] = ACTIONS(2112), - [anon_sym_lock] = ACTIONS(2112), - [anon_sym_rlock] = ACTIONS(2112), - [anon_sym_unsafe] = ACTIONS(2112), - [anon_sym_sql] = ACTIONS(2112), - [sym_int_literal] = ACTIONS(2112), - [sym_float_literal] = ACTIONS(2110), - [sym_rune_literal] = ACTIONS(2110), - [anon_sym_AT] = ACTIONS(2112), - [anon_sym_shared] = ACTIONS(2112), - [anon_sym_map_LBRACK] = ACTIONS(2110), - [anon_sym_chan] = ACTIONS(2112), - [anon_sym_thread] = ACTIONS(2112), - [anon_sym_atomic] = ACTIONS(2112), - [sym___double_quote] = ACTIONS(2110), - [sym___single_quote] = ACTIONS(2110), - [sym___c_double_quote] = ACTIONS(2110), - [sym___c_single_quote] = ACTIONS(2110), - [sym___r_double_quote] = ACTIONS(2110), - [sym___r_single_quote] = ACTIONS(2110), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_or] = ACTIONS(3642), + [sym_none] = ACTIONS(2234), + [sym_true] = ACTIONS(2234), + [sym_false] = ACTIONS(2234), + [sym_nil] = ACTIONS(2234), + [anon_sym_QMARK_DOT] = ACTIONS(3644), + [anon_sym_POUND_LBRACK] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_DOLLARif] = ACTIONS(2234), + [anon_sym_is] = ACTIONS(3648), + [anon_sym_BANGis] = ACTIONS(3650), + [anon_sym_in] = ACTIONS(3652), + [anon_sym_BANGin] = ACTIONS(3654), + [anon_sym_match] = ACTIONS(2234), + [anon_sym_select] = ACTIONS(2234), + [anon_sym_lock] = ACTIONS(2234), + [anon_sym_rlock] = ACTIONS(2234), + [anon_sym_unsafe] = ACTIONS(2234), + [anon_sym_sql] = ACTIONS(2234), + [sym_int_literal] = ACTIONS(2234), + [sym_float_literal] = ACTIONS(2232), + [sym_rune_literal] = ACTIONS(2232), + [anon_sym_AT] = ACTIONS(2234), + [anon_sym_shared] = ACTIONS(2234), + [anon_sym_map_LBRACK] = ACTIONS(2232), + [anon_sym_chan] = ACTIONS(2234), + [anon_sym_thread] = ACTIONS(2234), + [anon_sym_atomic] = ACTIONS(2234), + [sym___double_quote] = ACTIONS(2232), + [sym___single_quote] = ACTIONS(2232), + [sym___c_double_quote] = ACTIONS(2232), + [sym___c_single_quote] = ACTIONS(2232), + [sym___r_double_quote] = ACTIONS(2232), + [sym___r_single_quote] = ACTIONS(2232), }, - [1281] = { - [sym_type_parameters] = STATE(4295), - [sym_argument_list] = STATE(1342), - [sym_or_block] = STATE(1343), - [sym_identifier] = ACTIONS(3644), + [1285] = { + [sym_type_parameters] = STATE(4375), + [sym_argument_list] = STATE(1355), + [sym_or_block] = STATE(1356), + [sym_identifier] = ACTIONS(2162), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_as] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_COMMA] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(3614), - [anon_sym_fn] = ACTIONS(3644), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), + [anon_sym_DOT] = ACTIONS(3604), + [anon_sym_as] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_COMMA] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(3612), + [anon_sym_PIPE] = ACTIONS(2162), + [anon_sym_fn] = ACTIONS(2162), + [anon_sym_PLUS] = ACTIONS(2162), + [anon_sym_DASH] = ACTIONS(2162), [anon_sym_STAR] = ACTIONS(3616), [anon_sym_SLASH] = ACTIONS(3618), [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(3620), - [anon_sym_GT] = ACTIONS(3620), - [anon_sym_EQ_EQ] = ACTIONS(3622), - [anon_sym_BANG_EQ] = ACTIONS(3622), - [anon_sym_LT_EQ] = ACTIONS(3622), - [anon_sym_GT_EQ] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_RBRACK] = ACTIONS(3646), - [anon_sym_struct] = ACTIONS(3644), - [anon_sym_mut] = ACTIONS(3644), - [anon_sym_PLUS_PLUS] = ACTIONS(3624), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3604), - [anon_sym_go] = ACTIONS(3644), - [anon_sym_spawn] = ACTIONS(3644), - [anon_sym_json_DOTdecode] = ACTIONS(3646), - [anon_sym_LBRACK2] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(3646), - [anon_sym_CARET] = ACTIONS(3628), + [anon_sym_LT] = ACTIONS(2162), + [anon_sym_GT] = ACTIONS(2162), + [anon_sym_EQ_EQ] = ACTIONS(2160), + [anon_sym_BANG_EQ] = ACTIONS(2160), + [anon_sym_LT_EQ] = ACTIONS(2160), + [anon_sym_GT_EQ] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_RBRACK] = ACTIONS(2160), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_mut] = ACTIONS(2162), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [anon_sym_QMARK] = ACTIONS(3630), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_go] = ACTIONS(2162), + [anon_sym_spawn] = ACTIONS(2162), + [anon_sym_json_DOTdecode] = ACTIONS(2160), + [anon_sym_LBRACK2] = ACTIONS(3634), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(3646), + [anon_sym_LT_DASH] = ACTIONS(2160), [anon_sym_LT_LT] = ACTIONS(3616), [anon_sym_GT_GT] = ACTIONS(3618), [anon_sym_GT_GT_GT] = ACTIONS(3616), [anon_sym_AMP_CARET] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3632), - [anon_sym_or] = ACTIONS(3634), - [sym_none] = ACTIONS(3644), - [sym_true] = ACTIONS(3644), - [sym_false] = ACTIONS(3644), - [sym_nil] = ACTIONS(3644), - [anon_sym_QMARK_DOT] = ACTIONS(3608), - [anon_sym_POUND_LBRACK] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(3644), - [anon_sym_DOLLARif] = ACTIONS(3644), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_BANGis] = ACTIONS(3638), - [anon_sym_in] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_match] = ACTIONS(3644), - [anon_sym_select] = ACTIONS(3644), - [anon_sym_lock] = ACTIONS(3644), - [anon_sym_rlock] = ACTIONS(3644), - [anon_sym_unsafe] = ACTIONS(3644), - [anon_sym_sql] = ACTIONS(3644), - [sym_int_literal] = ACTIONS(3644), - [sym_float_literal] = ACTIONS(3646), - [sym_rune_literal] = ACTIONS(3646), - [anon_sym_AT] = ACTIONS(3644), - [anon_sym_shared] = ACTIONS(3644), - [anon_sym_map_LBRACK] = ACTIONS(3646), - [anon_sym_chan] = ACTIONS(3644), - [anon_sym_thread] = ACTIONS(3644), - [anon_sym_atomic] = ACTIONS(3644), - [sym___double_quote] = ACTIONS(3646), - [sym___single_quote] = ACTIONS(3646), - [sym___c_double_quote] = ACTIONS(3646), - [sym___c_single_quote] = ACTIONS(3646), - [sym___r_double_quote] = ACTIONS(3646), - [sym___r_single_quote] = ACTIONS(3646), - }, - [1282] = { - [sym_identifier] = ACTIONS(2772), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2770), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_as] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2777), - [anon_sym_COMMA] = ACTIONS(2770), - [anon_sym_LPAREN] = ACTIONS(2770), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2770), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_PERCENT] = ACTIONS(2770), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2770), - [anon_sym_BANG_EQ] = ACTIONS(2770), - [anon_sym_LT_EQ] = ACTIONS(2770), - [anon_sym_GT_EQ] = ACTIONS(2770), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_RBRACK] = ACTIONS(2770), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_mut] = ACTIONS(2772), - [anon_sym_COLON] = ACTIONS(2770), - [anon_sym_PLUS_PLUS] = ACTIONS(2770), - [anon_sym_DASH_DASH] = ACTIONS(2770), - [anon_sym_QMARK] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2772), - [anon_sym_json_DOTdecode] = ACTIONS(2770), - [anon_sym_LBRACK2] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2770), - [anon_sym_CARET] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_LT_DASH] = ACTIONS(2770), - [anon_sym_LT_LT] = ACTIONS(2770), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_GT_GT_GT] = ACTIONS(2770), - [anon_sym_AMP_CARET] = ACTIONS(2770), - [anon_sym_AMP_AMP] = ACTIONS(2770), - [anon_sym_PIPE_PIPE] = ACTIONS(2770), - [anon_sym_or] = ACTIONS(2772), - [sym_none] = ACTIONS(2772), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_nil] = ACTIONS(2772), - [anon_sym_QMARK_DOT] = ACTIONS(2770), - [anon_sym_POUND_LBRACK] = ACTIONS(2770), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_DOLLARif] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_BANGis] = ACTIONS(2770), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_BANGin] = ACTIONS(2770), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_select] = ACTIONS(2772), - [anon_sym_lock] = ACTIONS(2772), - [anon_sym_rlock] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_sql] = ACTIONS(2772), - [sym_int_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2770), - [sym_rune_literal] = ACTIONS(2770), - [anon_sym_AT] = ACTIONS(2772), - [anon_sym_shared] = ACTIONS(2772), - [anon_sym_map_LBRACK] = ACTIONS(2770), - [anon_sym_chan] = ACTIONS(2772), - [anon_sym_thread] = ACTIONS(2772), - [anon_sym_atomic] = ACTIONS(2772), - [sym___double_quote] = ACTIONS(2770), - [sym___single_quote] = ACTIONS(2770), - [sym___c_double_quote] = ACTIONS(2770), - [sym___c_single_quote] = ACTIONS(2770), - [sym___r_double_quote] = ACTIONS(2770), - [sym___r_single_quote] = ACTIONS(2770), - }, - [1283] = { - [sym_else_branch] = STATE(1403), - [sym_identifier] = ACTIONS(2400), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2400), - [anon_sym_as] = ACTIONS(2400), - [anon_sym_LBRACE] = ACTIONS(2398), - [anon_sym_COMMA] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(2398), - [anon_sym_PIPE] = ACTIONS(2400), - [anon_sym_fn] = ACTIONS(2400), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2398), - [anon_sym_SLASH] = ACTIONS(2400), - [anon_sym_PERCENT] = ACTIONS(2398), - [anon_sym_LT] = ACTIONS(2400), - [anon_sym_GT] = ACTIONS(2400), - [anon_sym_EQ_EQ] = ACTIONS(2398), - [anon_sym_BANG_EQ] = ACTIONS(2398), - [anon_sym_LT_EQ] = ACTIONS(2398), - [anon_sym_GT_EQ] = ACTIONS(2398), - [anon_sym_LBRACK] = ACTIONS(2398), - [anon_sym_RBRACK] = ACTIONS(2398), - [anon_sym_struct] = ACTIONS(2400), - [anon_sym_mut] = ACTIONS(2400), - [anon_sym_PLUS_PLUS] = ACTIONS(2398), - [anon_sym_DASH_DASH] = ACTIONS(2398), - [anon_sym_QMARK] = ACTIONS(2400), - [anon_sym_BANG] = ACTIONS(2400), - [anon_sym_go] = ACTIONS(2400), - [anon_sym_spawn] = ACTIONS(2400), - [anon_sym_json_DOTdecode] = ACTIONS(2398), - [anon_sym_LBRACK2] = ACTIONS(2400), - [anon_sym_TILDE] = ACTIONS(2398), - [anon_sym_CARET] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2400), - [anon_sym_LT_DASH] = ACTIONS(2398), - [anon_sym_LT_LT] = ACTIONS(2398), - [anon_sym_GT_GT] = ACTIONS(2400), - [anon_sym_GT_GT_GT] = ACTIONS(2398), - [anon_sym_AMP_CARET] = ACTIONS(2398), - [anon_sym_AMP_AMP] = ACTIONS(2398), - [anon_sym_PIPE_PIPE] = ACTIONS(2398), - [anon_sym_or] = ACTIONS(2400), - [sym_none] = ACTIONS(2400), - [sym_true] = ACTIONS(2400), - [sym_false] = ACTIONS(2400), - [sym_nil] = ACTIONS(2400), - [anon_sym_QMARK_DOT] = ACTIONS(2398), - [anon_sym_POUND_LBRACK] = ACTIONS(2398), - [anon_sym_if] = ACTIONS(2400), - [anon_sym_else] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(2400), - [anon_sym_is] = ACTIONS(2400), - [anon_sym_BANGis] = ACTIONS(2398), - [anon_sym_in] = ACTIONS(2400), - [anon_sym_BANGin] = ACTIONS(2398), - [anon_sym_match] = ACTIONS(2400), - [anon_sym_select] = ACTIONS(2400), - [anon_sym_lock] = ACTIONS(2400), - [anon_sym_rlock] = ACTIONS(2400), - [anon_sym_unsafe] = ACTIONS(2400), - [anon_sym_sql] = ACTIONS(2400), - [sym_int_literal] = ACTIONS(2400), - [sym_float_literal] = ACTIONS(2398), - [sym_rune_literal] = ACTIONS(2398), - [anon_sym_AT] = ACTIONS(2400), - [anon_sym_shared] = ACTIONS(2400), - [anon_sym_map_LBRACK] = ACTIONS(2398), - [anon_sym_chan] = ACTIONS(2400), - [anon_sym_thread] = ACTIONS(2400), - [anon_sym_atomic] = ACTIONS(2400), - [sym___double_quote] = ACTIONS(2398), - [sym___single_quote] = ACTIONS(2398), - [sym___c_double_quote] = ACTIONS(2398), - [sym___c_single_quote] = ACTIONS(2398), - [sym___r_double_quote] = ACTIONS(2398), - [sym___r_single_quote] = ACTIONS(2398), - }, - [1284] = { - [sym_else_branch] = STATE(1404), - [sym_identifier] = ACTIONS(2406), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2406), - [anon_sym_as] = ACTIONS(2406), - [anon_sym_LBRACE] = ACTIONS(2404), - [anon_sym_COMMA] = ACTIONS(2404), - [anon_sym_LPAREN] = ACTIONS(2404), - [anon_sym_PIPE] = ACTIONS(2406), - [anon_sym_fn] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2406), - [anon_sym_DASH] = ACTIONS(2406), - [anon_sym_STAR] = ACTIONS(2404), - [anon_sym_SLASH] = ACTIONS(2406), - [anon_sym_PERCENT] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2406), - [anon_sym_GT] = ACTIONS(2406), - [anon_sym_EQ_EQ] = ACTIONS(2404), - [anon_sym_BANG_EQ] = ACTIONS(2404), - [anon_sym_LT_EQ] = ACTIONS(2404), - [anon_sym_GT_EQ] = ACTIONS(2404), - [anon_sym_LBRACK] = ACTIONS(2404), - [anon_sym_RBRACK] = ACTIONS(2404), - [anon_sym_struct] = ACTIONS(2406), - [anon_sym_mut] = ACTIONS(2406), - [anon_sym_PLUS_PLUS] = ACTIONS(2404), - [anon_sym_DASH_DASH] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_BANG] = ACTIONS(2406), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2406), - [anon_sym_json_DOTdecode] = ACTIONS(2404), - [anon_sym_LBRACK2] = ACTIONS(2406), - [anon_sym_TILDE] = ACTIONS(2404), - [anon_sym_CARET] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2406), - [anon_sym_LT_DASH] = ACTIONS(2404), - [anon_sym_LT_LT] = ACTIONS(2404), - [anon_sym_GT_GT] = ACTIONS(2406), - [anon_sym_GT_GT_GT] = ACTIONS(2404), - [anon_sym_AMP_CARET] = ACTIONS(2404), - [anon_sym_AMP_AMP] = ACTIONS(2404), - [anon_sym_PIPE_PIPE] = ACTIONS(2404), - [anon_sym_or] = ACTIONS(2406), - [sym_none] = ACTIONS(2406), - [sym_true] = ACTIONS(2406), - [sym_false] = ACTIONS(2406), - [sym_nil] = ACTIONS(2406), - [anon_sym_QMARK_DOT] = ACTIONS(2404), - [anon_sym_POUND_LBRACK] = ACTIONS(2404), - [anon_sym_if] = ACTIONS(2406), - [anon_sym_else] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(2406), - [anon_sym_is] = ACTIONS(2406), - [anon_sym_BANGis] = ACTIONS(2404), - [anon_sym_in] = ACTIONS(2406), - [anon_sym_BANGin] = ACTIONS(2404), - [anon_sym_match] = ACTIONS(2406), - [anon_sym_select] = ACTIONS(2406), - [anon_sym_lock] = ACTIONS(2406), - [anon_sym_rlock] = ACTIONS(2406), - [anon_sym_unsafe] = ACTIONS(2406), - [anon_sym_sql] = ACTIONS(2406), - [sym_int_literal] = ACTIONS(2406), - [sym_float_literal] = ACTIONS(2404), - [sym_rune_literal] = ACTIONS(2404), - [anon_sym_AT] = ACTIONS(2406), - [anon_sym_shared] = ACTIONS(2406), - [anon_sym_map_LBRACK] = ACTIONS(2404), - [anon_sym_chan] = ACTIONS(2406), - [anon_sym_thread] = ACTIONS(2406), - [anon_sym_atomic] = ACTIONS(2406), - [sym___double_quote] = ACTIONS(2404), - [sym___single_quote] = ACTIONS(2404), - [sym___c_double_quote] = ACTIONS(2404), - [sym___c_single_quote] = ACTIONS(2404), - [sym___r_double_quote] = ACTIONS(2404), - [sym___r_single_quote] = ACTIONS(2404), - }, - [1285] = { - [sym_identifier] = ACTIONS(2884), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_as] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_COMMA] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_PIPE] = ACTIONS(2884), - [anon_sym_fn] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2882), - [anon_sym_SLASH] = ACTIONS(2884), - [anon_sym_PERCENT] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_GT] = ACTIONS(2884), - [anon_sym_EQ_EQ] = ACTIONS(2882), - [anon_sym_BANG_EQ] = ACTIONS(2882), - [anon_sym_LT_EQ] = ACTIONS(2882), - [anon_sym_GT_EQ] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_RBRACK] = ACTIONS(3652), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_mut] = ACTIONS(2884), - [anon_sym_COLON] = ACTIONS(3652), - [anon_sym_PLUS_PLUS] = ACTIONS(2882), - [anon_sym_DASH_DASH] = ACTIONS(2882), - [anon_sym_QMARK] = ACTIONS(2884), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_go] = ACTIONS(2884), - [anon_sym_spawn] = ACTIONS(2884), - [anon_sym_json_DOTdecode] = ACTIONS(2882), - [anon_sym_LBRACK2] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2882), - [anon_sym_CARET] = ACTIONS(2882), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_LT_DASH] = ACTIONS(2882), - [anon_sym_LT_LT] = ACTIONS(2882), - [anon_sym_GT_GT] = ACTIONS(2884), - [anon_sym_GT_GT_GT] = ACTIONS(2882), - [anon_sym_AMP_CARET] = ACTIONS(2882), - [anon_sym_AMP_AMP] = ACTIONS(2882), - [anon_sym_PIPE_PIPE] = ACTIONS(2882), - [anon_sym_or] = ACTIONS(2884), - [sym_none] = ACTIONS(2884), - [sym_true] = ACTIONS(2884), - [sym_false] = ACTIONS(2884), - [sym_nil] = ACTIONS(2884), - [anon_sym_QMARK_DOT] = ACTIONS(2882), - [anon_sym_POUND_LBRACK] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_DOLLARif] = ACTIONS(2884), - [anon_sym_is] = ACTIONS(2884), - [anon_sym_BANGis] = ACTIONS(2882), - [anon_sym_in] = ACTIONS(2884), - [anon_sym_BANGin] = ACTIONS(2882), - [anon_sym_match] = ACTIONS(2884), - [anon_sym_select] = ACTIONS(2884), - [anon_sym_lock] = ACTIONS(2884), - [anon_sym_rlock] = ACTIONS(2884), - [anon_sym_unsafe] = ACTIONS(2884), - [anon_sym_sql] = ACTIONS(2884), - [sym_int_literal] = ACTIONS(2884), - [sym_float_literal] = ACTIONS(2882), - [sym_rune_literal] = ACTIONS(2882), - [anon_sym_AT] = ACTIONS(2884), - [anon_sym_shared] = ACTIONS(2884), - [anon_sym_map_LBRACK] = ACTIONS(2882), - [anon_sym_chan] = ACTIONS(2884), - [anon_sym_thread] = ACTIONS(2884), - [anon_sym_atomic] = ACTIONS(2884), - [sym___double_quote] = ACTIONS(2882), - [sym___single_quote] = ACTIONS(2882), - [sym___c_double_quote] = ACTIONS(2882), - [sym___c_single_quote] = ACTIONS(2882), - [sym___r_double_quote] = ACTIONS(2882), - [sym___r_single_quote] = ACTIONS(2882), + [anon_sym_AMP_AMP] = ACTIONS(2160), + [anon_sym_PIPE_PIPE] = ACTIONS(2160), + [anon_sym_or] = ACTIONS(2162), + [sym_none] = ACTIONS(2162), + [sym_true] = ACTIONS(2162), + [sym_false] = ACTIONS(2162), + [sym_nil] = ACTIONS(2162), + [anon_sym_QMARK_DOT] = ACTIONS(3644), + [anon_sym_POUND_LBRACK] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_DOLLARif] = ACTIONS(2162), + [anon_sym_is] = ACTIONS(2162), + [anon_sym_BANGis] = ACTIONS(2160), + [anon_sym_in] = ACTIONS(2162), + [anon_sym_BANGin] = ACTIONS(2160), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_select] = ACTIONS(2162), + [anon_sym_lock] = ACTIONS(2162), + [anon_sym_rlock] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_sql] = ACTIONS(2162), + [sym_int_literal] = ACTIONS(2162), + [sym_float_literal] = ACTIONS(2160), + [sym_rune_literal] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2162), + [anon_sym_shared] = ACTIONS(2162), + [anon_sym_map_LBRACK] = ACTIONS(2160), + [anon_sym_chan] = ACTIONS(2162), + [anon_sym_thread] = ACTIONS(2162), + [anon_sym_atomic] = ACTIONS(2162), + [sym___double_quote] = ACTIONS(2160), + [sym___single_quote] = ACTIONS(2160), + [sym___c_double_quote] = ACTIONS(2160), + [sym___c_single_quote] = ACTIONS(2160), + [sym___r_double_quote] = ACTIONS(2160), + [sym___r_single_quote] = ACTIONS(2160), }, [1286] = { - [sym_identifier] = ACTIONS(3089), + [sym_else_branch] = STATE(1407), + [sym_identifier] = ACTIONS(2392), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_DOT] = ACTIONS(3089), - [anon_sym_as] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3087), - [anon_sym_COMMA] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_fn] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3087), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(3089), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_EQ_EQ] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(3087), - [anon_sym_LT_EQ] = ACTIONS(3087), - [anon_sym_GT_EQ] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3087), - [anon_sym_RBRACK] = ACTIONS(3087), - [anon_sym_struct] = ACTIONS(3089), - [anon_sym_mut] = ACTIONS(3089), - [anon_sym_PLUS_PLUS] = ACTIONS(3087), - [anon_sym_DASH_DASH] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3089), - [anon_sym_BANG] = ACTIONS(3089), - [anon_sym_go] = ACTIONS(3089), - [anon_sym_spawn] = ACTIONS(3089), - [anon_sym_json_DOTdecode] = ACTIONS(3087), - [anon_sym_LBRACK2] = ACTIONS(3089), - [anon_sym_TILDE] = ACTIONS(3087), - [anon_sym_CARET] = ACTIONS(3087), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_LT_DASH] = ACTIONS(3087), - [anon_sym_LT_LT] = ACTIONS(3087), - [anon_sym_GT_GT] = ACTIONS(3089), - [anon_sym_GT_GT_GT] = ACTIONS(3087), - [anon_sym_AMP_CARET] = ACTIONS(3087), - [anon_sym_AMP_AMP] = ACTIONS(3087), - [anon_sym_PIPE_PIPE] = ACTIONS(3087), - [anon_sym_or] = ACTIONS(3089), - [sym_none] = ACTIONS(3089), - [sym_true] = ACTIONS(3089), - [sym_false] = ACTIONS(3089), - [sym_nil] = ACTIONS(3089), - [anon_sym_QMARK_DOT] = ACTIONS(3087), - [anon_sym_POUND_LBRACK] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3089), - [anon_sym_DOLLARif] = ACTIONS(3089), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3087), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_BANGin] = ACTIONS(3087), - [anon_sym_match] = ACTIONS(3089), - [anon_sym_select] = ACTIONS(3089), - [anon_sym_lock] = ACTIONS(3089), - [anon_sym_rlock] = ACTIONS(3089), - [anon_sym_unsafe] = ACTIONS(3089), - [anon_sym_sql] = ACTIONS(3089), - [sym_int_literal] = ACTIONS(3089), - [sym_float_literal] = ACTIONS(3087), - [sym_rune_literal] = ACTIONS(3087), - [anon_sym_AT] = ACTIONS(3089), - [anon_sym_shared] = ACTIONS(3089), - [anon_sym_map_LBRACK] = ACTIONS(3087), - [anon_sym_chan] = ACTIONS(3089), - [anon_sym_thread] = ACTIONS(3089), - [anon_sym_atomic] = ACTIONS(3089), - [sym___double_quote] = ACTIONS(3087), - [sym___single_quote] = ACTIONS(3087), - [sym___c_double_quote] = ACTIONS(3087), - [sym___c_single_quote] = ACTIONS(3087), - [sym___r_double_quote] = ACTIONS(3087), - [sym___r_single_quote] = ACTIONS(3087), + [anon_sym_DOT] = ACTIONS(2392), + [anon_sym_as] = ACTIONS(2392), + [anon_sym_LBRACE] = ACTIONS(2390), + [anon_sym_COMMA] = ACTIONS(2390), + [anon_sym_LPAREN] = ACTIONS(2390), + [anon_sym_PIPE] = ACTIONS(2392), + [anon_sym_fn] = ACTIONS(2392), + [anon_sym_PLUS] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2392), + [anon_sym_STAR] = ACTIONS(2390), + [anon_sym_SLASH] = ACTIONS(2392), + [anon_sym_PERCENT] = ACTIONS(2390), + [anon_sym_LT] = ACTIONS(2392), + [anon_sym_GT] = ACTIONS(2392), + [anon_sym_EQ_EQ] = ACTIONS(2390), + [anon_sym_BANG_EQ] = ACTIONS(2390), + [anon_sym_LT_EQ] = ACTIONS(2390), + [anon_sym_GT_EQ] = ACTIONS(2390), + [anon_sym_LBRACK] = ACTIONS(2390), + [anon_sym_RBRACK] = ACTIONS(2390), + [anon_sym_struct] = ACTIONS(2392), + [anon_sym_mut] = ACTIONS(2392), + [anon_sym_PLUS_PLUS] = ACTIONS(2390), + [anon_sym_DASH_DASH] = ACTIONS(2390), + [anon_sym_QMARK] = ACTIONS(2392), + [anon_sym_BANG] = ACTIONS(2392), + [anon_sym_go] = ACTIONS(2392), + [anon_sym_spawn] = ACTIONS(2392), + [anon_sym_json_DOTdecode] = ACTIONS(2390), + [anon_sym_LBRACK2] = ACTIONS(2392), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_CARET] = ACTIONS(2390), + [anon_sym_AMP] = ACTIONS(2392), + [anon_sym_LT_DASH] = ACTIONS(2390), + [anon_sym_LT_LT] = ACTIONS(2390), + [anon_sym_GT_GT] = ACTIONS(2392), + [anon_sym_GT_GT_GT] = ACTIONS(2390), + [anon_sym_AMP_CARET] = ACTIONS(2390), + [anon_sym_AMP_AMP] = ACTIONS(2390), + [anon_sym_PIPE_PIPE] = ACTIONS(2390), + [anon_sym_or] = ACTIONS(2392), + [sym_none] = ACTIONS(2392), + [sym_true] = ACTIONS(2392), + [sym_false] = ACTIONS(2392), + [sym_nil] = ACTIONS(2392), + [anon_sym_QMARK_DOT] = ACTIONS(2390), + [anon_sym_POUND_LBRACK] = ACTIONS(2390), + [anon_sym_if] = ACTIONS(2392), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_DOLLARif] = ACTIONS(2392), + [anon_sym_is] = ACTIONS(2392), + [anon_sym_BANGis] = ACTIONS(2390), + [anon_sym_in] = ACTIONS(2392), + [anon_sym_BANGin] = ACTIONS(2390), + [anon_sym_match] = ACTIONS(2392), + [anon_sym_select] = ACTIONS(2392), + [anon_sym_lock] = ACTIONS(2392), + [anon_sym_rlock] = ACTIONS(2392), + [anon_sym_unsafe] = ACTIONS(2392), + [anon_sym_sql] = ACTIONS(2392), + [sym_int_literal] = ACTIONS(2392), + [sym_float_literal] = ACTIONS(2390), + [sym_rune_literal] = ACTIONS(2390), + [anon_sym_AT] = ACTIONS(2392), + [anon_sym_shared] = ACTIONS(2392), + [anon_sym_map_LBRACK] = ACTIONS(2390), + [anon_sym_chan] = ACTIONS(2392), + [anon_sym_thread] = ACTIONS(2392), + [anon_sym_atomic] = ACTIONS(2392), + [sym___double_quote] = ACTIONS(2390), + [sym___single_quote] = ACTIONS(2390), + [sym___c_double_quote] = ACTIONS(2390), + [sym___c_single_quote] = ACTIONS(2390), + [sym___r_double_quote] = ACTIONS(2390), + [sym___r_single_quote] = ACTIONS(2390), }, [1287] = { - [sym_identifier] = ACTIONS(3033), + [sym_else_branch] = STATE(1408), + [sym_identifier] = ACTIONS(2398), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(3033), - [anon_sym_as] = ACTIONS(3033), - [anon_sym_LBRACE] = ACTIONS(3031), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3031), - [anon_sym_PIPE] = ACTIONS(3033), - [anon_sym_fn] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_SLASH] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3033), - [anon_sym_EQ_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3031), - [anon_sym_RBRACK] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(3033), - [anon_sym_mut] = ACTIONS(3033), - [anon_sym_PLUS_PLUS] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3031), - [anon_sym_QMARK] = ACTIONS(3033), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_go] = ACTIONS(3033), - [anon_sym_spawn] = ACTIONS(3033), - [anon_sym_json_DOTdecode] = ACTIONS(3031), - [anon_sym_LBRACK2] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3031), - [anon_sym_CARET] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3031), - [anon_sym_LT_LT] = ACTIONS(3031), - [anon_sym_GT_GT] = ACTIONS(3033), - [anon_sym_GT_GT_GT] = ACTIONS(3031), - [anon_sym_AMP_CARET] = ACTIONS(3031), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_or] = ACTIONS(3033), - [sym_none] = ACTIONS(3033), - [sym_true] = ACTIONS(3033), - [sym_false] = ACTIONS(3033), - [sym_nil] = ACTIONS(3033), - [anon_sym_QMARK_DOT] = ACTIONS(3031), - [anon_sym_POUND_LBRACK] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_DOLLARif] = ACTIONS(3033), - [anon_sym_is] = ACTIONS(3033), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_in] = ACTIONS(3033), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_select] = ACTIONS(3033), - [anon_sym_lock] = ACTIONS(3033), - [anon_sym_rlock] = ACTIONS(3033), - [anon_sym_unsafe] = ACTIONS(3033), - [anon_sym_sql] = ACTIONS(3033), - [sym_int_literal] = ACTIONS(3033), - [sym_float_literal] = ACTIONS(3031), - [sym_rune_literal] = ACTIONS(3031), - [anon_sym_AT] = ACTIONS(3033), - [anon_sym_shared] = ACTIONS(3033), - [anon_sym_map_LBRACK] = ACTIONS(3031), - [anon_sym_chan] = ACTIONS(3033), - [anon_sym_thread] = ACTIONS(3033), - [anon_sym_atomic] = ACTIONS(3033), - [sym___double_quote] = ACTIONS(3031), - [sym___single_quote] = ACTIONS(3031), - [sym___c_double_quote] = ACTIONS(3031), - [sym___c_single_quote] = ACTIONS(3031), - [sym___r_double_quote] = ACTIONS(3031), - [sym___r_single_quote] = ACTIONS(3031), + [anon_sym_DOT] = ACTIONS(2398), + [anon_sym_as] = ACTIONS(2398), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_COMMA] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_fn] = ACTIONS(2398), + [anon_sym_PLUS] = ACTIONS(2398), + [anon_sym_DASH] = ACTIONS(2398), + [anon_sym_STAR] = ACTIONS(2396), + [anon_sym_SLASH] = ACTIONS(2398), + [anon_sym_PERCENT] = ACTIONS(2396), + [anon_sym_LT] = ACTIONS(2398), + [anon_sym_GT] = ACTIONS(2398), + [anon_sym_EQ_EQ] = ACTIONS(2396), + [anon_sym_BANG_EQ] = ACTIONS(2396), + [anon_sym_LT_EQ] = ACTIONS(2396), + [anon_sym_GT_EQ] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_RBRACK] = ACTIONS(2396), + [anon_sym_struct] = ACTIONS(2398), + [anon_sym_mut] = ACTIONS(2398), + [anon_sym_PLUS_PLUS] = ACTIONS(2396), + [anon_sym_DASH_DASH] = ACTIONS(2396), + [anon_sym_QMARK] = ACTIONS(2398), + [anon_sym_BANG] = ACTIONS(2398), + [anon_sym_go] = ACTIONS(2398), + [anon_sym_spawn] = ACTIONS(2398), + [anon_sym_json_DOTdecode] = ACTIONS(2396), + [anon_sym_LBRACK2] = ACTIONS(2398), + [anon_sym_TILDE] = ACTIONS(2396), + [anon_sym_CARET] = ACTIONS(2396), + [anon_sym_AMP] = ACTIONS(2398), + [anon_sym_LT_DASH] = ACTIONS(2396), + [anon_sym_LT_LT] = ACTIONS(2396), + [anon_sym_GT_GT] = ACTIONS(2398), + [anon_sym_GT_GT_GT] = ACTIONS(2396), + [anon_sym_AMP_CARET] = ACTIONS(2396), + [anon_sym_AMP_AMP] = ACTIONS(2396), + [anon_sym_PIPE_PIPE] = ACTIONS(2396), + [anon_sym_or] = ACTIONS(2398), + [sym_none] = ACTIONS(2398), + [sym_true] = ACTIONS(2398), + [sym_false] = ACTIONS(2398), + [sym_nil] = ACTIONS(2398), + [anon_sym_QMARK_DOT] = ACTIONS(2396), + [anon_sym_POUND_LBRACK] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2398), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_DOLLARif] = ACTIONS(2398), + [anon_sym_is] = ACTIONS(2398), + [anon_sym_BANGis] = ACTIONS(2396), + [anon_sym_in] = ACTIONS(2398), + [anon_sym_BANGin] = ACTIONS(2396), + [anon_sym_match] = ACTIONS(2398), + [anon_sym_select] = ACTIONS(2398), + [anon_sym_lock] = ACTIONS(2398), + [anon_sym_rlock] = ACTIONS(2398), + [anon_sym_unsafe] = ACTIONS(2398), + [anon_sym_sql] = ACTIONS(2398), + [sym_int_literal] = ACTIONS(2398), + [sym_float_literal] = ACTIONS(2396), + [sym_rune_literal] = ACTIONS(2396), + [anon_sym_AT] = ACTIONS(2398), + [anon_sym_shared] = ACTIONS(2398), + [anon_sym_map_LBRACK] = ACTIONS(2396), + [anon_sym_chan] = ACTIONS(2398), + [anon_sym_thread] = ACTIONS(2398), + [anon_sym_atomic] = ACTIONS(2398), + [sym___double_quote] = ACTIONS(2396), + [sym___single_quote] = ACTIONS(2396), + [sym___c_double_quote] = ACTIONS(2396), + [sym___c_single_quote] = ACTIONS(2396), + [sym___r_double_quote] = ACTIONS(2396), + [sym___r_single_quote] = ACTIONS(2396), }, [1288] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(585), - [anon_sym_LF] = ACTIONS(585), - [anon_sym_CR] = ACTIONS(585), - [anon_sym_CR_LF] = ACTIONS(585), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_RBRACE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym___global] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(585), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_pub] = ACTIONS(585), - [anon_sym_mut] = ACTIONS(585), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_AMP_CARET] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_or] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(585), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(537), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_AT_LBRACK] = ACTIONS(585), - }, - [1289] = { - [sym_identifier] = ACTIONS(2730), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2730), - [anon_sym_as] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_COMMA] = ACTIONS(2728), - [anon_sym_LPAREN] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_fn] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2728), - [anon_sym_SLASH] = ACTIONS(2730), - [anon_sym_PERCENT] = ACTIONS(2728), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_GT] = ACTIONS(2730), - [anon_sym_EQ_EQ] = ACTIONS(2728), - [anon_sym_BANG_EQ] = ACTIONS(2728), - [anon_sym_LT_EQ] = ACTIONS(2728), - [anon_sym_GT_EQ] = ACTIONS(2728), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_RBRACK] = ACTIONS(2728), - [anon_sym_struct] = ACTIONS(2730), - [anon_sym_mut] = ACTIONS(2730), - [anon_sym_PLUS_PLUS] = ACTIONS(2728), - [anon_sym_DASH_DASH] = ACTIONS(2728), - [anon_sym_QMARK] = ACTIONS(2730), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_go] = ACTIONS(2730), - [anon_sym_spawn] = ACTIONS(2730), - [anon_sym_json_DOTdecode] = ACTIONS(2728), - [anon_sym_LBRACK2] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2728), - [anon_sym_CARET] = ACTIONS(2728), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_LT_DASH] = ACTIONS(2728), - [anon_sym_LT_LT] = ACTIONS(2728), - [anon_sym_GT_GT] = ACTIONS(2730), - [anon_sym_GT_GT_GT] = ACTIONS(2728), - [anon_sym_AMP_CARET] = ACTIONS(2728), - [anon_sym_AMP_AMP] = ACTIONS(2728), - [anon_sym_PIPE_PIPE] = ACTIONS(2728), - [anon_sym_or] = ACTIONS(2730), - [sym_none] = ACTIONS(2730), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_nil] = ACTIONS(2730), - [anon_sym_QMARK_DOT] = ACTIONS(2728), - [anon_sym_POUND_LBRACK] = ACTIONS(2728), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_else] = ACTIONS(2730), - [anon_sym_DOLLARif] = ACTIONS(2730), - [anon_sym_is] = ACTIONS(2730), - [anon_sym_BANGis] = ACTIONS(2728), - [anon_sym_in] = ACTIONS(2730), - [anon_sym_BANGin] = ACTIONS(2728), - [anon_sym_match] = ACTIONS(2730), - [anon_sym_select] = ACTIONS(2730), - [anon_sym_lock] = ACTIONS(2730), - [anon_sym_rlock] = ACTIONS(2730), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2730), - [sym_int_literal] = ACTIONS(2730), - [sym_float_literal] = ACTIONS(2728), - [sym_rune_literal] = ACTIONS(2728), - [anon_sym_AT] = ACTIONS(2730), - [anon_sym_shared] = ACTIONS(2730), - [anon_sym_map_LBRACK] = ACTIONS(2728), - [anon_sym_chan] = ACTIONS(2730), - [anon_sym_thread] = ACTIONS(2730), - [anon_sym_atomic] = ACTIONS(2730), - [sym___double_quote] = ACTIONS(2728), - [sym___single_quote] = ACTIONS(2728), - [sym___c_double_quote] = ACTIONS(2728), - [sym___c_single_quote] = ACTIONS(2728), - [sym___r_double_quote] = ACTIONS(2728), - [sym___r_single_quote] = ACTIONS(2728), - }, - [1290] = { - [sym_identifier] = ACTIONS(2700), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_COMMA] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2698), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2698), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2698), - [anon_sym_BANG_EQ] = ACTIONS(2698), - [anon_sym_LT_EQ] = ACTIONS(2698), - [anon_sym_GT_EQ] = ACTIONS(2698), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_RBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2698), - [anon_sym_DASH_DASH] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2698), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2698), - [anon_sym_CARET] = ACTIONS(2698), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2698), - [anon_sym_LT_LT] = ACTIONS(2698), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2698), - [anon_sym_AMP_CARET] = ACTIONS(2698), - [anon_sym_AMP_AMP] = ACTIONS(2698), - [anon_sym_PIPE_PIPE] = ACTIONS(2698), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2698), - [anon_sym_POUND_LBRACK] = ACTIONS(2698), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_else] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2698), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2698), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2698), - [sym_rune_literal] = ACTIONS(2698), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2698), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2698), - [sym___single_quote] = ACTIONS(2698), - [sym___c_double_quote] = ACTIONS(2698), - [sym___c_single_quote] = ACTIONS(2698), - [sym___r_double_quote] = ACTIONS(2698), - [sym___r_single_quote] = ACTIONS(2698), - }, - [1291] = { - [sym_identifier] = ACTIONS(2832), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2830), - [anon_sym_DOT] = ACTIONS(2832), - [anon_sym_as] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_fn] = ACTIONS(2832), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2830), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_PERCENT] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_EQ_EQ] = ACTIONS(2830), - [anon_sym_BANG_EQ] = ACTIONS(2830), - [anon_sym_LT_EQ] = ACTIONS(2830), - [anon_sym_GT_EQ] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_RBRACK] = ACTIONS(2830), - [anon_sym_struct] = ACTIONS(2832), - [anon_sym_mut] = ACTIONS(2832), - [anon_sym_PLUS_PLUS] = ACTIONS(2830), - [anon_sym_DASH_DASH] = ACTIONS(2830), - [anon_sym_QMARK] = ACTIONS(2832), - [anon_sym_BANG] = ACTIONS(2832), - [anon_sym_go] = ACTIONS(2832), - [anon_sym_spawn] = ACTIONS(2832), - [anon_sym_json_DOTdecode] = ACTIONS(2830), - [anon_sym_LBRACK2] = ACTIONS(2832), - [anon_sym_TILDE] = ACTIONS(2830), - [anon_sym_CARET] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2832), - [anon_sym_LT_DASH] = ACTIONS(2830), - [anon_sym_LT_LT] = ACTIONS(2830), - [anon_sym_GT_GT] = ACTIONS(2832), - [anon_sym_GT_GT_GT] = ACTIONS(2830), - [anon_sym_AMP_CARET] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(2830), - [anon_sym_PIPE_PIPE] = ACTIONS(2830), - [anon_sym_or] = ACTIONS(2832), - [sym_none] = ACTIONS(2832), - [sym_true] = ACTIONS(2832), - [sym_false] = ACTIONS(2832), - [sym_nil] = ACTIONS(2832), - [anon_sym_QMARK_DOT] = ACTIONS(2830), - [anon_sym_POUND_LBRACK] = ACTIONS(2830), - [anon_sym_if] = ACTIONS(2832), - [anon_sym_DOLLARif] = ACTIONS(2832), - [anon_sym_is] = ACTIONS(2832), - [anon_sym_BANGis] = ACTIONS(2830), - [anon_sym_in] = ACTIONS(2832), - [anon_sym_BANGin] = ACTIONS(2830), - [anon_sym_match] = ACTIONS(2832), - [anon_sym_select] = ACTIONS(2832), - [anon_sym_lock] = ACTIONS(2832), - [anon_sym_rlock] = ACTIONS(2832), - [anon_sym_unsafe] = ACTIONS(2832), - [anon_sym_sql] = ACTIONS(2832), - [sym_int_literal] = ACTIONS(2832), - [sym_float_literal] = ACTIONS(2830), - [sym_rune_literal] = ACTIONS(2830), - [anon_sym_AT] = ACTIONS(2832), - [anon_sym_shared] = ACTIONS(2832), - [anon_sym_map_LBRACK] = ACTIONS(2830), - [anon_sym_chan] = ACTIONS(2832), - [anon_sym_thread] = ACTIONS(2832), - [anon_sym_atomic] = ACTIONS(2832), - [sym___double_quote] = ACTIONS(2830), - [sym___single_quote] = ACTIONS(2830), - [sym___c_double_quote] = ACTIONS(2830), - [sym___c_single_quote] = ACTIONS(2830), - [sym___r_double_quote] = ACTIONS(2830), - [sym___r_single_quote] = ACTIONS(2830), - }, - [1292] = { - [sym_identifier] = ACTIONS(2832), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2830), - [anon_sym_DOT] = ACTIONS(2832), - [anon_sym_as] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_fn] = ACTIONS(2832), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2830), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_PERCENT] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_EQ_EQ] = ACTIONS(2830), - [anon_sym_BANG_EQ] = ACTIONS(2830), - [anon_sym_LT_EQ] = ACTIONS(2830), - [anon_sym_GT_EQ] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_RBRACK] = ACTIONS(3654), - [anon_sym_struct] = ACTIONS(2832), - [anon_sym_mut] = ACTIONS(2832), - [anon_sym_PLUS_PLUS] = ACTIONS(2830), - [anon_sym_DASH_DASH] = ACTIONS(2830), - [anon_sym_QMARK] = ACTIONS(2832), - [anon_sym_BANG] = ACTIONS(2832), - [anon_sym_go] = ACTIONS(2832), - [anon_sym_spawn] = ACTIONS(2832), - [anon_sym_json_DOTdecode] = ACTIONS(2830), - [anon_sym_LBRACK2] = ACTIONS(2832), - [anon_sym_TILDE] = ACTIONS(2830), - [anon_sym_CARET] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2832), - [anon_sym_LT_DASH] = ACTIONS(2830), - [anon_sym_LT_LT] = ACTIONS(2830), - [anon_sym_GT_GT] = ACTIONS(2832), - [anon_sym_GT_GT_GT] = ACTIONS(2830), - [anon_sym_AMP_CARET] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(2830), - [anon_sym_PIPE_PIPE] = ACTIONS(2830), - [anon_sym_or] = ACTIONS(2832), - [sym_none] = ACTIONS(2832), - [sym_true] = ACTIONS(2832), - [sym_false] = ACTIONS(2832), - [sym_nil] = ACTIONS(2832), - [anon_sym_QMARK_DOT] = ACTIONS(2830), - [anon_sym_POUND_LBRACK] = ACTIONS(2830), - [anon_sym_if] = ACTIONS(2832), - [anon_sym_DOLLARif] = ACTIONS(2832), - [anon_sym_is] = ACTIONS(2832), - [anon_sym_BANGis] = ACTIONS(2830), - [anon_sym_in] = ACTIONS(2832), - [anon_sym_BANGin] = ACTIONS(2830), - [anon_sym_match] = ACTIONS(2832), - [anon_sym_select] = ACTIONS(2832), - [anon_sym_lock] = ACTIONS(2832), - [anon_sym_rlock] = ACTIONS(2832), - [anon_sym_unsafe] = ACTIONS(2832), - [anon_sym_sql] = ACTIONS(2832), - [sym_int_literal] = ACTIONS(2832), - [sym_float_literal] = ACTIONS(2830), - [sym_rune_literal] = ACTIONS(2830), - [anon_sym_AT] = ACTIONS(2832), - [anon_sym_shared] = ACTIONS(2832), - [anon_sym_map_LBRACK] = ACTIONS(2830), - [anon_sym_chan] = ACTIONS(2832), - [anon_sym_thread] = ACTIONS(2832), - [anon_sym_atomic] = ACTIONS(2832), - [sym___double_quote] = ACTIONS(2830), - [sym___single_quote] = ACTIONS(2830), - [sym___c_double_quote] = ACTIONS(2830), - [sym___c_single_quote] = ACTIONS(2830), - [sym___r_double_quote] = ACTIONS(2830), - [sym___r_single_quote] = ACTIONS(2830), - }, - [1293] = { - [sym_identifier] = ACTIONS(3657), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3659), - [anon_sym_DOT] = ACTIONS(3657), - [anon_sym_as] = ACTIONS(3657), - [anon_sym_LBRACE] = ACTIONS(3661), - [anon_sym_COMMA] = ACTIONS(3661), - [anon_sym_LPAREN] = ACTIONS(3661), - [anon_sym_PIPE] = ACTIONS(3657), - [anon_sym_fn] = ACTIONS(3657), - [anon_sym_PLUS] = ACTIONS(3657), - [anon_sym_DASH] = ACTIONS(3657), - [anon_sym_STAR] = ACTIONS(3661), - [anon_sym_SLASH] = ACTIONS(3657), - [anon_sym_PERCENT] = ACTIONS(3661), - [anon_sym_LT] = ACTIONS(3657), - [anon_sym_GT] = ACTIONS(3657), - [anon_sym_EQ_EQ] = ACTIONS(3661), - [anon_sym_BANG_EQ] = ACTIONS(3661), - [anon_sym_LT_EQ] = ACTIONS(3661), - [anon_sym_GT_EQ] = ACTIONS(3661), - [anon_sym_LBRACK] = ACTIONS(3661), - [anon_sym_RBRACK] = ACTIONS(3659), - [anon_sym_struct] = ACTIONS(3657), - [anon_sym_mut] = ACTIONS(3657), - [anon_sym_PLUS_PLUS] = ACTIONS(3661), - [anon_sym_DASH_DASH] = ACTIONS(3661), - [anon_sym_QMARK] = ACTIONS(3657), - [anon_sym_BANG] = ACTIONS(3657), - [anon_sym_go] = ACTIONS(3657), - [anon_sym_spawn] = ACTIONS(3657), - [anon_sym_json_DOTdecode] = ACTIONS(3661), - [anon_sym_LBRACK2] = ACTIONS(3657), - [anon_sym_TILDE] = ACTIONS(3661), - [anon_sym_CARET] = ACTIONS(3661), - [anon_sym_AMP] = ACTIONS(3657), - [anon_sym_LT_DASH] = ACTIONS(3661), - [anon_sym_LT_LT] = ACTIONS(3661), - [anon_sym_GT_GT] = ACTIONS(3657), - [anon_sym_GT_GT_GT] = ACTIONS(3661), - [anon_sym_AMP_CARET] = ACTIONS(3661), - [anon_sym_AMP_AMP] = ACTIONS(3661), - [anon_sym_PIPE_PIPE] = ACTIONS(3661), - [anon_sym_or] = ACTIONS(3657), - [sym_none] = ACTIONS(3657), - [sym_true] = ACTIONS(3657), - [sym_false] = ACTIONS(3657), - [sym_nil] = ACTIONS(3657), - [anon_sym_QMARK_DOT] = ACTIONS(3661), - [anon_sym_POUND_LBRACK] = ACTIONS(3661), - [anon_sym_if] = ACTIONS(3657), - [anon_sym_DOLLARif] = ACTIONS(3657), - [anon_sym_is] = ACTIONS(3657), - [anon_sym_BANGis] = ACTIONS(3661), - [anon_sym_in] = ACTIONS(3657), - [anon_sym_BANGin] = ACTIONS(3661), - [anon_sym_match] = ACTIONS(3657), - [anon_sym_select] = ACTIONS(3657), - [anon_sym_lock] = ACTIONS(3657), - [anon_sym_rlock] = ACTIONS(3657), - [anon_sym_unsafe] = ACTIONS(3657), - [anon_sym_sql] = ACTIONS(3657), - [sym_int_literal] = ACTIONS(3657), - [sym_float_literal] = ACTIONS(3661), - [sym_rune_literal] = ACTIONS(3661), - [anon_sym_AT] = ACTIONS(3657), - [anon_sym_shared] = ACTIONS(3657), - [anon_sym_map_LBRACK] = ACTIONS(3661), - [anon_sym_chan] = ACTIONS(3657), - [anon_sym_thread] = ACTIONS(3657), - [anon_sym_atomic] = ACTIONS(3657), - [sym___double_quote] = ACTIONS(3661), - [sym___single_quote] = ACTIONS(3661), - [sym___c_double_quote] = ACTIONS(3661), - [sym___c_single_quote] = ACTIONS(3661), - [sym___r_double_quote] = ACTIONS(3661), - [sym___r_single_quote] = ACTIONS(3661), - }, - [1294] = { - [sym_type_parameters] = STATE(1330), - [sym_identifier] = ACTIONS(2704), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_as] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2702), - [anon_sym_COMMA] = ACTIONS(2702), - [anon_sym_LPAREN] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2702), - [anon_sym_SLASH] = ACTIONS(2704), - [anon_sym_PERCENT] = ACTIONS(2702), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_EQ_EQ] = ACTIONS(2702), - [anon_sym_BANG_EQ] = ACTIONS(2702), - [anon_sym_LT_EQ] = ACTIONS(2702), - [anon_sym_GT_EQ] = ACTIONS(2702), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_RBRACK] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_mut] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2702), - [anon_sym_DASH_DASH] = ACTIONS(2702), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_go] = ACTIONS(2704), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2702), - [anon_sym_LBRACK2] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2702), - [anon_sym_CARET] = ACTIONS(2702), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_LT_DASH] = ACTIONS(2702), - [anon_sym_LT_LT] = ACTIONS(2702), - [anon_sym_GT_GT] = ACTIONS(2704), - [anon_sym_GT_GT_GT] = ACTIONS(2702), - [anon_sym_AMP_CARET] = ACTIONS(2702), - [anon_sym_AMP_AMP] = ACTIONS(2702), - [anon_sym_PIPE_PIPE] = ACTIONS(2702), - [anon_sym_or] = ACTIONS(2704), - [sym_none] = ACTIONS(2704), - [sym_true] = ACTIONS(2704), - [sym_false] = ACTIONS(2704), - [sym_nil] = ACTIONS(2704), - [anon_sym_QMARK_DOT] = ACTIONS(2702), - [anon_sym_POUND_LBRACK] = ACTIONS(2702), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_DOLLARif] = ACTIONS(2704), - [anon_sym_is] = ACTIONS(2704), - [anon_sym_BANGis] = ACTIONS(2702), - [anon_sym_in] = ACTIONS(2704), - [anon_sym_BANGin] = ACTIONS(2702), - [anon_sym_match] = ACTIONS(2704), - [anon_sym_select] = ACTIONS(2704), - [anon_sym_lock] = ACTIONS(2704), - [anon_sym_rlock] = ACTIONS(2704), - [anon_sym_unsafe] = ACTIONS(2704), - [anon_sym_sql] = ACTIONS(2704), - [sym_int_literal] = ACTIONS(2704), - [sym_float_literal] = ACTIONS(2702), - [sym_rune_literal] = ACTIONS(2702), - [anon_sym_AT] = ACTIONS(2704), - [anon_sym_shared] = ACTIONS(2704), - [anon_sym_map_LBRACK] = ACTIONS(2702), - [anon_sym_chan] = ACTIONS(2704), - [anon_sym_thread] = ACTIONS(2704), - [anon_sym_atomic] = ACTIONS(2704), - [sym___double_quote] = ACTIONS(2702), - [sym___single_quote] = ACTIONS(2702), - [sym___c_double_quote] = ACTIONS(2702), - [sym___c_single_quote] = ACTIONS(2702), - [sym___r_double_quote] = ACTIONS(2702), - [sym___r_single_quote] = ACTIONS(2702), - }, - [1295] = { - [sym_identifier] = ACTIONS(2730), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2730), - [anon_sym_as] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_COMMA] = ACTIONS(2728), - [anon_sym_LPAREN] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_fn] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2728), - [anon_sym_SLASH] = ACTIONS(2730), - [anon_sym_PERCENT] = ACTIONS(2728), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_GT] = ACTIONS(2730), - [anon_sym_EQ_EQ] = ACTIONS(2728), - [anon_sym_BANG_EQ] = ACTIONS(2728), - [anon_sym_LT_EQ] = ACTIONS(2728), - [anon_sym_GT_EQ] = ACTIONS(2728), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_RBRACK] = ACTIONS(2728), - [anon_sym_struct] = ACTIONS(2730), - [anon_sym_mut] = ACTIONS(2730), - [anon_sym_PLUS_PLUS] = ACTIONS(2728), - [anon_sym_DASH_DASH] = ACTIONS(2728), - [anon_sym_QMARK] = ACTIONS(2730), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_go] = ACTIONS(2730), - [anon_sym_spawn] = ACTIONS(2730), - [anon_sym_json_DOTdecode] = ACTIONS(2728), - [anon_sym_LBRACK2] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2728), - [anon_sym_CARET] = ACTIONS(2728), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_LT_DASH] = ACTIONS(2728), - [anon_sym_LT_LT] = ACTIONS(2728), - [anon_sym_GT_GT] = ACTIONS(2730), - [anon_sym_GT_GT_GT] = ACTIONS(2728), - [anon_sym_AMP_CARET] = ACTIONS(2728), - [anon_sym_AMP_AMP] = ACTIONS(2728), - [anon_sym_PIPE_PIPE] = ACTIONS(2728), - [anon_sym_or] = ACTIONS(2730), - [sym_none] = ACTIONS(2730), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_nil] = ACTIONS(2730), - [anon_sym_QMARK_DOT] = ACTIONS(2728), - [anon_sym_POUND_LBRACK] = ACTIONS(2728), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_DOLLARif] = ACTIONS(2730), - [anon_sym_DOLLARelse] = ACTIONS(2730), - [anon_sym_is] = ACTIONS(2730), - [anon_sym_BANGis] = ACTIONS(2728), - [anon_sym_in] = ACTIONS(2730), - [anon_sym_BANGin] = ACTIONS(2728), - [anon_sym_match] = ACTIONS(2730), - [anon_sym_select] = ACTIONS(2730), - [anon_sym_lock] = ACTIONS(2730), - [anon_sym_rlock] = ACTIONS(2730), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2730), - [sym_int_literal] = ACTIONS(2730), - [sym_float_literal] = ACTIONS(2728), - [sym_rune_literal] = ACTIONS(2728), - [anon_sym_AT] = ACTIONS(2730), - [anon_sym_shared] = ACTIONS(2730), - [anon_sym_map_LBRACK] = ACTIONS(2728), - [anon_sym_chan] = ACTIONS(2730), - [anon_sym_thread] = ACTIONS(2730), - [anon_sym_atomic] = ACTIONS(2730), - [sym___double_quote] = ACTIONS(2728), - [sym___single_quote] = ACTIONS(2728), - [sym___c_double_quote] = ACTIONS(2728), - [sym___c_single_quote] = ACTIONS(2728), - [sym___r_double_quote] = ACTIONS(2728), - [sym___r_single_quote] = ACTIONS(2728), - }, - [1296] = { [sym_identifier] = ACTIONS(2740), [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2738), [anon_sym_DOT] = ACTIONS(2740), [anon_sym_as] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_LBRACE] = ACTIONS(2745), [anon_sym_COMMA] = ACTIONS(2738), [anon_sym_LPAREN] = ACTIONS(2738), [anon_sym_PIPE] = ACTIONS(2740), @@ -166796,10 +166473,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(2738), [anon_sym_LT_EQ] = ACTIONS(2738), [anon_sym_GT_EQ] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2745), [anon_sym_RBRACK] = ACTIONS(2738), [anon_sym_struct] = ACTIONS(2740), [anon_sym_mut] = ACTIONS(2740), + [anon_sym_COLON] = ACTIONS(2738), [anon_sym_PLUS_PLUS] = ACTIONS(2738), [anon_sym_DASH_DASH] = ACTIONS(2738), [anon_sym_QMARK] = ACTIONS(2740), @@ -166827,7 +166505,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND_LBRACK] = ACTIONS(2738), [anon_sym_if] = ACTIONS(2740), [anon_sym_DOLLARif] = ACTIONS(2740), - [anon_sym_DOLLARelse] = ACTIONS(3663), [anon_sym_is] = ACTIONS(2740), [anon_sym_BANGis] = ACTIONS(2738), [anon_sym_in] = ACTIONS(2740), @@ -166854,9874 +166531,10453 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2738), [sym___r_single_quote] = ACTIONS(2738), }, + [1289] = { + [sym_identifier] = ACTIONS(3118), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3658), + [anon_sym_DOT] = ACTIONS(3120), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(3116), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3116), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_fn] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3116), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(3116), + [anon_sym_LT_EQ] = ACTIONS(3116), + [anon_sym_GT_EQ] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_RBRACK] = ACTIONS(3658), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_mut] = ACTIONS(3118), + [anon_sym_COLON] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [anon_sym_QMARK] = ACTIONS(3118), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_go] = ACTIONS(3118), + [anon_sym_spawn] = ACTIONS(3118), + [anon_sym_json_DOTdecode] = ACTIONS(3116), + [anon_sym_LBRACK2] = ACTIONS(3118), + [anon_sym_TILDE] = ACTIONS(3116), + [anon_sym_CARET] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_LT_DASH] = ACTIONS(3116), + [anon_sym_LT_LT] = ACTIONS(3116), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym_GT_GT_GT] = ACTIONS(3116), + [anon_sym_AMP_CARET] = ACTIONS(3116), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_PIPE_PIPE] = ACTIONS(3116), + [anon_sym_or] = ACTIONS(3118), + [sym_none] = ACTIONS(3118), + [sym_true] = ACTIONS(3118), + [sym_false] = ACTIONS(3118), + [sym_nil] = ACTIONS(3118), + [anon_sym_QMARK_DOT] = ACTIONS(3116), + [anon_sym_POUND_LBRACK] = ACTIONS(3116), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_DOLLARif] = ACTIONS(3118), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3116), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_BANGin] = ACTIONS(3116), + [anon_sym_match] = ACTIONS(3118), + [anon_sym_select] = ACTIONS(3118), + [anon_sym_lock] = ACTIONS(3118), + [anon_sym_rlock] = ACTIONS(3118), + [anon_sym_unsafe] = ACTIONS(3118), + [anon_sym_sql] = ACTIONS(3118), + [sym_int_literal] = ACTIONS(3118), + [sym_float_literal] = ACTIONS(3116), + [sym_rune_literal] = ACTIONS(3116), + [anon_sym_AT] = ACTIONS(3118), + [anon_sym_shared] = ACTIONS(3118), + [anon_sym_map_LBRACK] = ACTIONS(3116), + [anon_sym_chan] = ACTIONS(3118), + [anon_sym_thread] = ACTIONS(3118), + [anon_sym_atomic] = ACTIONS(3118), + [sym___double_quote] = ACTIONS(3116), + [sym___single_quote] = ACTIONS(3116), + [sym___c_double_quote] = ACTIONS(3116), + [sym___c_single_quote] = ACTIONS(3116), + [sym___r_double_quote] = ACTIONS(3116), + [sym___r_single_quote] = ACTIONS(3116), + }, + [1290] = { + [sym_identifier] = ACTIONS(3660), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym_DOT] = ACTIONS(3660), + [anon_sym_as] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_COMMA] = ACTIONS(3664), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_PIPE] = ACTIONS(3660), + [anon_sym_fn] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_STAR] = ACTIONS(3664), + [anon_sym_SLASH] = ACTIONS(3660), + [anon_sym_PERCENT] = ACTIONS(3664), + [anon_sym_LT] = ACTIONS(3660), + [anon_sym_GT] = ACTIONS(3660), + [anon_sym_EQ_EQ] = ACTIONS(3664), + [anon_sym_BANG_EQ] = ACTIONS(3664), + [anon_sym_LT_EQ] = ACTIONS(3664), + [anon_sym_GT_EQ] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_RBRACK] = ACTIONS(3662), + [anon_sym_struct] = ACTIONS(3660), + [anon_sym_mut] = ACTIONS(3660), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3664), + [anon_sym_QMARK] = ACTIONS(3660), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_go] = ACTIONS(3660), + [anon_sym_spawn] = ACTIONS(3660), + [anon_sym_json_DOTdecode] = ACTIONS(3664), + [anon_sym_LBRACK2] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3664), + [anon_sym_CARET] = ACTIONS(3664), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_LT_DASH] = ACTIONS(3664), + [anon_sym_LT_LT] = ACTIONS(3664), + [anon_sym_GT_GT] = ACTIONS(3660), + [anon_sym_GT_GT_GT] = ACTIONS(3664), + [anon_sym_AMP_CARET] = ACTIONS(3664), + [anon_sym_AMP_AMP] = ACTIONS(3664), + [anon_sym_PIPE_PIPE] = ACTIONS(3664), + [anon_sym_or] = ACTIONS(3660), + [sym_none] = ACTIONS(3660), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [sym_nil] = ACTIONS(3660), + [anon_sym_QMARK_DOT] = ACTIONS(3664), + [anon_sym_POUND_LBRACK] = ACTIONS(3664), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_DOLLARif] = ACTIONS(3660), + [anon_sym_is] = ACTIONS(3660), + [anon_sym_BANGis] = ACTIONS(3664), + [anon_sym_in] = ACTIONS(3660), + [anon_sym_BANGin] = ACTIONS(3664), + [anon_sym_match] = ACTIONS(3660), + [anon_sym_select] = ACTIONS(3660), + [anon_sym_lock] = ACTIONS(3660), + [anon_sym_rlock] = ACTIONS(3660), + [anon_sym_unsafe] = ACTIONS(3660), + [anon_sym_sql] = ACTIONS(3660), + [sym_int_literal] = ACTIONS(3660), + [sym_float_literal] = ACTIONS(3664), + [sym_rune_literal] = ACTIONS(3664), + [anon_sym_AT] = ACTIONS(3660), + [anon_sym_shared] = ACTIONS(3660), + [anon_sym_map_LBRACK] = ACTIONS(3664), + [anon_sym_chan] = ACTIONS(3660), + [anon_sym_thread] = ACTIONS(3660), + [anon_sym_atomic] = ACTIONS(3660), + [sym___double_quote] = ACTIONS(3664), + [sym___single_quote] = ACTIONS(3664), + [sym___c_double_quote] = ACTIONS(3664), + [sym___c_single_quote] = ACTIONS(3664), + [sym___r_double_quote] = ACTIONS(3664), + [sym___r_single_quote] = ACTIONS(3664), + }, + [1291] = { + [sym_identifier] = ACTIONS(3171), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3171), + [anon_sym_as] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3169), + [anon_sym_PIPE] = ACTIONS(3171), + [anon_sym_fn] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_STAR] = ACTIONS(3169), + [anon_sym_SLASH] = ACTIONS(3171), + [anon_sym_PERCENT] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3171), + [anon_sym_EQ_EQ] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3169), + [anon_sym_LT_EQ] = ACTIONS(3169), + [anon_sym_GT_EQ] = ACTIONS(3169), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_RBRACK] = ACTIONS(3666), + [anon_sym_struct] = ACTIONS(3171), + [anon_sym_mut] = ACTIONS(3171), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_QMARK] = ACTIONS(3171), + [anon_sym_BANG] = ACTIONS(3171), + [anon_sym_go] = ACTIONS(3171), + [anon_sym_spawn] = ACTIONS(3171), + [anon_sym_json_DOTdecode] = ACTIONS(3169), + [anon_sym_LBRACK2] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3169), + [anon_sym_CARET] = ACTIONS(3169), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_LT_DASH] = ACTIONS(3169), + [anon_sym_LT_LT] = ACTIONS(3169), + [anon_sym_GT_GT] = ACTIONS(3171), + [anon_sym_GT_GT_GT] = ACTIONS(3169), + [anon_sym_AMP_CARET] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3171), + [sym_none] = ACTIONS(3171), + [sym_true] = ACTIONS(3171), + [sym_false] = ACTIONS(3171), + [sym_nil] = ACTIONS(3171), + [anon_sym_QMARK_DOT] = ACTIONS(3169), + [anon_sym_POUND_LBRACK] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_DOLLARif] = ACTIONS(3171), + [anon_sym_is] = ACTIONS(3171), + [anon_sym_BANGis] = ACTIONS(3169), + [anon_sym_in] = ACTIONS(3171), + [anon_sym_BANGin] = ACTIONS(3169), + [anon_sym_match] = ACTIONS(3171), + [anon_sym_select] = ACTIONS(3171), + [anon_sym_lock] = ACTIONS(3171), + [anon_sym_rlock] = ACTIONS(3171), + [anon_sym_unsafe] = ACTIONS(3171), + [anon_sym_sql] = ACTIONS(3171), + [sym_int_literal] = ACTIONS(3171), + [sym_float_literal] = ACTIONS(3169), + [sym_rune_literal] = ACTIONS(3169), + [anon_sym_AT] = ACTIONS(3171), + [anon_sym_shared] = ACTIONS(3171), + [anon_sym_map_LBRACK] = ACTIONS(3169), + [anon_sym_chan] = ACTIONS(3171), + [anon_sym_thread] = ACTIONS(3171), + [anon_sym_atomic] = ACTIONS(3171), + [sym___double_quote] = ACTIONS(3169), + [sym___single_quote] = ACTIONS(3169), + [sym___c_double_quote] = ACTIONS(3169), + [sym___c_single_quote] = ACTIONS(3169), + [sym___r_double_quote] = ACTIONS(3169), + [sym___r_single_quote] = ACTIONS(3169), + }, + [1292] = { + [sym_identifier] = ACTIONS(2736), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2736), + [anon_sym_as] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_COMMA] = ACTIONS(2734), + [anon_sym_LPAREN] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2736), + [anon_sym_fn] = ACTIONS(2736), + [anon_sym_PLUS] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2736), + [anon_sym_STAR] = ACTIONS(2734), + [anon_sym_SLASH] = ACTIONS(2736), + [anon_sym_PERCENT] = ACTIONS(2734), + [anon_sym_LT] = ACTIONS(2736), + [anon_sym_GT] = ACTIONS(2736), + [anon_sym_EQ_EQ] = ACTIONS(2734), + [anon_sym_BANG_EQ] = ACTIONS(2734), + [anon_sym_LT_EQ] = ACTIONS(2734), + [anon_sym_GT_EQ] = ACTIONS(2734), + [anon_sym_LBRACK] = ACTIONS(2734), + [anon_sym_RBRACK] = ACTIONS(2734), + [anon_sym_struct] = ACTIONS(2736), + [anon_sym_mut] = ACTIONS(2736), + [anon_sym_PLUS_PLUS] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(2734), + [anon_sym_QMARK] = ACTIONS(2736), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_go] = ACTIONS(2736), + [anon_sym_spawn] = ACTIONS(2736), + [anon_sym_json_DOTdecode] = ACTIONS(2734), + [anon_sym_LBRACK2] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2734), + [anon_sym_CARET] = ACTIONS(2734), + [anon_sym_AMP] = ACTIONS(2736), + [anon_sym_LT_DASH] = ACTIONS(2734), + [anon_sym_LT_LT] = ACTIONS(2734), + [anon_sym_GT_GT] = ACTIONS(2736), + [anon_sym_GT_GT_GT] = ACTIONS(2734), + [anon_sym_AMP_CARET] = ACTIONS(2734), + [anon_sym_AMP_AMP] = ACTIONS(2734), + [anon_sym_PIPE_PIPE] = ACTIONS(2734), + [anon_sym_or] = ACTIONS(2736), + [sym_none] = ACTIONS(2736), + [sym_true] = ACTIONS(2736), + [sym_false] = ACTIONS(2736), + [sym_nil] = ACTIONS(2736), + [anon_sym_QMARK_DOT] = ACTIONS(2734), + [anon_sym_POUND_LBRACK] = ACTIONS(2734), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_else] = ACTIONS(2736), + [anon_sym_DOLLARif] = ACTIONS(2736), + [anon_sym_is] = ACTIONS(2736), + [anon_sym_BANGis] = ACTIONS(2734), + [anon_sym_in] = ACTIONS(2736), + [anon_sym_BANGin] = ACTIONS(2734), + [anon_sym_match] = ACTIONS(2736), + [anon_sym_select] = ACTIONS(2736), + [anon_sym_lock] = ACTIONS(2736), + [anon_sym_rlock] = ACTIONS(2736), + [anon_sym_unsafe] = ACTIONS(2736), + [anon_sym_sql] = ACTIONS(2736), + [sym_int_literal] = ACTIONS(2736), + [sym_float_literal] = ACTIONS(2734), + [sym_rune_literal] = ACTIONS(2734), + [anon_sym_AT] = ACTIONS(2736), + [anon_sym_shared] = ACTIONS(2736), + [anon_sym_map_LBRACK] = ACTIONS(2734), + [anon_sym_chan] = ACTIONS(2736), + [anon_sym_thread] = ACTIONS(2736), + [anon_sym_atomic] = ACTIONS(2736), + [sym___double_quote] = ACTIONS(2734), + [sym___single_quote] = ACTIONS(2734), + [sym___c_double_quote] = ACTIONS(2734), + [sym___c_single_quote] = ACTIONS(2734), + [sym___r_double_quote] = ACTIONS(2734), + [sym___r_single_quote] = ACTIONS(2734), + }, + [1293] = { + [sym_identifier] = ACTIONS(2694), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2694), + [anon_sym_as] = ACTIONS(2694), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_COMMA] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2694), + [anon_sym_fn] = ACTIONS(2694), + [anon_sym_PLUS] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(2692), + [anon_sym_SLASH] = ACTIONS(2694), + [anon_sym_PERCENT] = ACTIONS(2692), + [anon_sym_LT] = ACTIONS(2694), + [anon_sym_GT] = ACTIONS(2694), + [anon_sym_EQ_EQ] = ACTIONS(2692), + [anon_sym_BANG_EQ] = ACTIONS(2692), + [anon_sym_LT_EQ] = ACTIONS(2692), + [anon_sym_GT_EQ] = ACTIONS(2692), + [anon_sym_LBRACK] = ACTIONS(2692), + [anon_sym_RBRACK] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2694), + [anon_sym_mut] = ACTIONS(2694), + [anon_sym_PLUS_PLUS] = ACTIONS(2692), + [anon_sym_DASH_DASH] = ACTIONS(2692), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_BANG] = ACTIONS(2694), + [anon_sym_go] = ACTIONS(2694), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2692), + [anon_sym_LBRACK2] = ACTIONS(2694), + [anon_sym_TILDE] = ACTIONS(2692), + [anon_sym_CARET] = ACTIONS(2692), + [anon_sym_AMP] = ACTIONS(2694), + [anon_sym_LT_DASH] = ACTIONS(2692), + [anon_sym_LT_LT] = ACTIONS(2692), + [anon_sym_GT_GT] = ACTIONS(2694), + [anon_sym_GT_GT_GT] = ACTIONS(2692), + [anon_sym_AMP_CARET] = ACTIONS(2692), + [anon_sym_AMP_AMP] = ACTIONS(2692), + [anon_sym_PIPE_PIPE] = ACTIONS(2692), + [anon_sym_or] = ACTIONS(2694), + [sym_none] = ACTIONS(2694), + [sym_true] = ACTIONS(2694), + [sym_false] = ACTIONS(2694), + [sym_nil] = ACTIONS(2694), + [anon_sym_QMARK_DOT] = ACTIONS(2692), + [anon_sym_POUND_LBRACK] = ACTIONS(2692), + [anon_sym_if] = ACTIONS(2694), + [anon_sym_else] = ACTIONS(2694), + [anon_sym_DOLLARif] = ACTIONS(2694), + [anon_sym_is] = ACTIONS(2694), + [anon_sym_BANGis] = ACTIONS(2692), + [anon_sym_in] = ACTIONS(2694), + [anon_sym_BANGin] = ACTIONS(2692), + [anon_sym_match] = ACTIONS(2694), + [anon_sym_select] = ACTIONS(2694), + [anon_sym_lock] = ACTIONS(2694), + [anon_sym_rlock] = ACTIONS(2694), + [anon_sym_unsafe] = ACTIONS(2694), + [anon_sym_sql] = ACTIONS(2694), + [sym_int_literal] = ACTIONS(2694), + [sym_float_literal] = ACTIONS(2692), + [sym_rune_literal] = ACTIONS(2692), + [anon_sym_AT] = ACTIONS(2694), + [anon_sym_shared] = ACTIONS(2694), + [anon_sym_map_LBRACK] = ACTIONS(2692), + [anon_sym_chan] = ACTIONS(2694), + [anon_sym_thread] = ACTIONS(2694), + [anon_sym_atomic] = ACTIONS(2694), + [sym___double_quote] = ACTIONS(2692), + [sym___single_quote] = ACTIONS(2692), + [sym___c_double_quote] = ACTIONS(2692), + [sym___c_single_quote] = ACTIONS(2692), + [sym___r_double_quote] = ACTIONS(2692), + [sym___r_single_quote] = ACTIONS(2692), + }, + [1294] = { + [sym_identifier] = ACTIONS(3171), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_DOT] = ACTIONS(3171), + [anon_sym_as] = ACTIONS(3171), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_COMMA] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3169), + [anon_sym_PIPE] = ACTIONS(3171), + [anon_sym_fn] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3171), + [anon_sym_STAR] = ACTIONS(3169), + [anon_sym_SLASH] = ACTIONS(3171), + [anon_sym_PERCENT] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3171), + [anon_sym_EQ_EQ] = ACTIONS(3169), + [anon_sym_BANG_EQ] = ACTIONS(3169), + [anon_sym_LT_EQ] = ACTIONS(3169), + [anon_sym_GT_EQ] = ACTIONS(3169), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_RBRACK] = ACTIONS(3169), + [anon_sym_struct] = ACTIONS(3171), + [anon_sym_mut] = ACTIONS(3171), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_QMARK] = ACTIONS(3171), + [anon_sym_BANG] = ACTIONS(3171), + [anon_sym_go] = ACTIONS(3171), + [anon_sym_spawn] = ACTIONS(3171), + [anon_sym_json_DOTdecode] = ACTIONS(3169), + [anon_sym_LBRACK2] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3169), + [anon_sym_CARET] = ACTIONS(3169), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_LT_DASH] = ACTIONS(3169), + [anon_sym_LT_LT] = ACTIONS(3169), + [anon_sym_GT_GT] = ACTIONS(3171), + [anon_sym_GT_GT_GT] = ACTIONS(3169), + [anon_sym_AMP_CARET] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_PIPE_PIPE] = ACTIONS(3169), + [anon_sym_or] = ACTIONS(3171), + [sym_none] = ACTIONS(3171), + [sym_true] = ACTIONS(3171), + [sym_false] = ACTIONS(3171), + [sym_nil] = ACTIONS(3171), + [anon_sym_QMARK_DOT] = ACTIONS(3169), + [anon_sym_POUND_LBRACK] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_DOLLARif] = ACTIONS(3171), + [anon_sym_is] = ACTIONS(3171), + [anon_sym_BANGis] = ACTIONS(3169), + [anon_sym_in] = ACTIONS(3171), + [anon_sym_BANGin] = ACTIONS(3169), + [anon_sym_match] = ACTIONS(3171), + [anon_sym_select] = ACTIONS(3171), + [anon_sym_lock] = ACTIONS(3171), + [anon_sym_rlock] = ACTIONS(3171), + [anon_sym_unsafe] = ACTIONS(3171), + [anon_sym_sql] = ACTIONS(3171), + [sym_int_literal] = ACTIONS(3171), + [sym_float_literal] = ACTIONS(3169), + [sym_rune_literal] = ACTIONS(3169), + [anon_sym_AT] = ACTIONS(3171), + [anon_sym_shared] = ACTIONS(3171), + [anon_sym_map_LBRACK] = ACTIONS(3169), + [anon_sym_chan] = ACTIONS(3171), + [anon_sym_thread] = ACTIONS(3171), + [anon_sym_atomic] = ACTIONS(3171), + [sym___double_quote] = ACTIONS(3169), + [sym___single_quote] = ACTIONS(3169), + [sym___c_double_quote] = ACTIONS(3169), + [sym___c_single_quote] = ACTIONS(3169), + [sym___r_double_quote] = ACTIONS(3169), + [sym___r_single_quote] = ACTIONS(3169), + }, + [1295] = { + [sym_identifier] = ACTIONS(2694), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2694), + [anon_sym_as] = ACTIONS(2694), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_COMMA] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2694), + [anon_sym_fn] = ACTIONS(2694), + [anon_sym_PLUS] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(2692), + [anon_sym_SLASH] = ACTIONS(2694), + [anon_sym_PERCENT] = ACTIONS(2692), + [anon_sym_LT] = ACTIONS(2694), + [anon_sym_GT] = ACTIONS(2694), + [anon_sym_EQ_EQ] = ACTIONS(2692), + [anon_sym_BANG_EQ] = ACTIONS(2692), + [anon_sym_LT_EQ] = ACTIONS(2692), + [anon_sym_GT_EQ] = ACTIONS(2692), + [anon_sym_LBRACK] = ACTIONS(2692), + [anon_sym_RBRACK] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2694), + [anon_sym_mut] = ACTIONS(2694), + [anon_sym_PLUS_PLUS] = ACTIONS(2692), + [anon_sym_DASH_DASH] = ACTIONS(2692), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_BANG] = ACTIONS(2694), + [anon_sym_go] = ACTIONS(2694), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2692), + [anon_sym_LBRACK2] = ACTIONS(2694), + [anon_sym_TILDE] = ACTIONS(2692), + [anon_sym_CARET] = ACTIONS(2692), + [anon_sym_AMP] = ACTIONS(2694), + [anon_sym_LT_DASH] = ACTIONS(2692), + [anon_sym_LT_LT] = ACTIONS(2692), + [anon_sym_GT_GT] = ACTIONS(2694), + [anon_sym_GT_GT_GT] = ACTIONS(2692), + [anon_sym_AMP_CARET] = ACTIONS(2692), + [anon_sym_AMP_AMP] = ACTIONS(2692), + [anon_sym_PIPE_PIPE] = ACTIONS(2692), + [anon_sym_or] = ACTIONS(2694), + [sym_none] = ACTIONS(2694), + [sym_true] = ACTIONS(2694), + [sym_false] = ACTIONS(2694), + [sym_nil] = ACTIONS(2694), + [anon_sym_QMARK_DOT] = ACTIONS(2692), + [anon_sym_POUND_LBRACK] = ACTIONS(2692), + [anon_sym_if] = ACTIONS(2694), + [anon_sym_DOLLARif] = ACTIONS(2694), + [anon_sym_DOLLARelse] = ACTIONS(2694), + [anon_sym_is] = ACTIONS(2694), + [anon_sym_BANGis] = ACTIONS(2692), + [anon_sym_in] = ACTIONS(2694), + [anon_sym_BANGin] = ACTIONS(2692), + [anon_sym_match] = ACTIONS(2694), + [anon_sym_select] = ACTIONS(2694), + [anon_sym_lock] = ACTIONS(2694), + [anon_sym_rlock] = ACTIONS(2694), + [anon_sym_unsafe] = ACTIONS(2694), + [anon_sym_sql] = ACTIONS(2694), + [sym_int_literal] = ACTIONS(2694), + [sym_float_literal] = ACTIONS(2692), + [sym_rune_literal] = ACTIONS(2692), + [anon_sym_AT] = ACTIONS(2694), + [anon_sym_shared] = ACTIONS(2694), + [anon_sym_map_LBRACK] = ACTIONS(2692), + [anon_sym_chan] = ACTIONS(2694), + [anon_sym_thread] = ACTIONS(2694), + [anon_sym_atomic] = ACTIONS(2694), + [sym___double_quote] = ACTIONS(2692), + [sym___single_quote] = ACTIONS(2692), + [sym___c_double_quote] = ACTIONS(2692), + [sym___c_single_quote] = ACTIONS(2692), + [sym___r_double_quote] = ACTIONS(2692), + [sym___r_single_quote] = ACTIONS(2692), + }, + [1296] = { + [sym_identifier] = ACTIONS(3066), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3064), + [anon_sym_DOT] = ACTIONS(3066), + [anon_sym_as] = ACTIONS(3066), + [anon_sym_LBRACE] = ACTIONS(3064), + [anon_sym_COMMA] = 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), + [anon_sym_STAR] = ACTIONS(3064), + [anon_sym_SLASH] = ACTIONS(3066), + [anon_sym_PERCENT] = ACTIONS(3064), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_GT] = ACTIONS(3066), + [anon_sym_EQ_EQ] = ACTIONS(3064), + [anon_sym_BANG_EQ] = ACTIONS(3064), + [anon_sym_LT_EQ] = ACTIONS(3064), + [anon_sym_GT_EQ] = ACTIONS(3064), + [anon_sym_LBRACK] = ACTIONS(3064), + [anon_sym_RBRACK] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(3066), + [anon_sym_PLUS_PLUS] = ACTIONS(3064), + [anon_sym_DASH_DASH] = ACTIONS(3064), + [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(3064), + [anon_sym_LBRACK2] = ACTIONS(3066), + [anon_sym_TILDE] = ACTIONS(3064), + [anon_sym_CARET] = ACTIONS(3064), + [anon_sym_AMP] = ACTIONS(3066), + [anon_sym_LT_DASH] = ACTIONS(3064), + [anon_sym_LT_LT] = ACTIONS(3064), + [anon_sym_GT_GT] = ACTIONS(3066), + [anon_sym_GT_GT_GT] = ACTIONS(3064), + [anon_sym_AMP_CARET] = ACTIONS(3064), + [anon_sym_AMP_AMP] = ACTIONS(3064), + [anon_sym_PIPE_PIPE] = ACTIONS(3064), + [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(3064), + [anon_sym_POUND_LBRACK] = ACTIONS(3064), + [anon_sym_if] = ACTIONS(3066), + [anon_sym_DOLLARif] = ACTIONS(3066), + [anon_sym_is] = ACTIONS(3066), + [anon_sym_BANGis] = ACTIONS(3064), + [anon_sym_in] = ACTIONS(3066), + [anon_sym_BANGin] = ACTIONS(3064), + [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(3064), + [sym_rune_literal] = ACTIONS(3064), + [anon_sym_AT] = ACTIONS(3066), + [anon_sym_shared] = ACTIONS(3066), + [anon_sym_map_LBRACK] = ACTIONS(3064), + [anon_sym_chan] = ACTIONS(3066), + [anon_sym_thread] = ACTIONS(3066), + [anon_sym_atomic] = ACTIONS(3066), + [sym___double_quote] = ACTIONS(3064), + [sym___single_quote] = ACTIONS(3064), + [sym___c_double_quote] = ACTIONS(3064), + [sym___c_single_quote] = ACTIONS(3064), + [sym___r_double_quote] = ACTIONS(3064), + [sym___r_single_quote] = ACTIONS(3064), + }, [1297] = { - [sym_identifier] = ACTIONS(3037), + [sym_identifier] = ACTIONS(2970), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_as] = ACTIONS(3037), - [anon_sym_LBRACE] = ACTIONS(3035), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_PIPE] = ACTIONS(3037), - [anon_sym_fn] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_STAR] = ACTIONS(3035), - [anon_sym_SLASH] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3035), - [anon_sym_LT] = ACTIONS(3037), - [anon_sym_GT] = ACTIONS(3037), - [anon_sym_EQ_EQ] = ACTIONS(3035), - [anon_sym_BANG_EQ] = ACTIONS(3035), - [anon_sym_LT_EQ] = ACTIONS(3035), - [anon_sym_GT_EQ] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_RBRACK] = ACTIONS(3035), - [anon_sym_struct] = ACTIONS(3037), - [anon_sym_mut] = ACTIONS(3037), - [anon_sym_PLUS_PLUS] = ACTIONS(3035), - [anon_sym_DASH_DASH] = ACTIONS(3035), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_BANG] = ACTIONS(3037), - [anon_sym_go] = ACTIONS(3037), - [anon_sym_spawn] = ACTIONS(3037), - [anon_sym_json_DOTdecode] = ACTIONS(3035), - [anon_sym_LBRACK2] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_CARET] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3035), - [anon_sym_LT_LT] = ACTIONS(3035), - [anon_sym_GT_GT] = ACTIONS(3037), - [anon_sym_GT_GT_GT] = ACTIONS(3035), - [anon_sym_AMP_CARET] = ACTIONS(3035), - [anon_sym_AMP_AMP] = ACTIONS(3035), - [anon_sym_PIPE_PIPE] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [sym_none] = ACTIONS(3037), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [sym_nil] = ACTIONS(3037), - [anon_sym_QMARK_DOT] = ACTIONS(3035), - [anon_sym_POUND_LBRACK] = ACTIONS(3035), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_DOLLARif] = ACTIONS(3037), - [anon_sym_is] = ACTIONS(3037), - [anon_sym_BANGis] = ACTIONS(3035), - [anon_sym_in] = ACTIONS(3037), - [anon_sym_BANGin] = ACTIONS(3035), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_select] = ACTIONS(3037), - [anon_sym_lock] = ACTIONS(3037), - [anon_sym_rlock] = ACTIONS(3037), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3037), - [sym_int_literal] = ACTIONS(3037), - [sym_float_literal] = ACTIONS(3035), - [sym_rune_literal] = ACTIONS(3035), - [anon_sym_AT] = ACTIONS(3037), - [anon_sym_shared] = ACTIONS(3037), - [anon_sym_map_LBRACK] = ACTIONS(3035), - [anon_sym_chan] = ACTIONS(3037), - [anon_sym_thread] = ACTIONS(3037), - [anon_sym_atomic] = ACTIONS(3037), - [sym___double_quote] = ACTIONS(3035), - [sym___single_quote] = ACTIONS(3035), - [sym___c_double_quote] = ACTIONS(3035), - [sym___c_single_quote] = ACTIONS(3035), - [sym___r_double_quote] = ACTIONS(3035), - [sym___r_single_quote] = ACTIONS(3035), + [anon_sym_SEMI] = ACTIONS(2968), + [anon_sym_DOT] = ACTIONS(2970), + [anon_sym_as] = ACTIONS(2970), + [anon_sym_LBRACE] = ACTIONS(2968), + [anon_sym_COMMA] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2968), + [anon_sym_PIPE] = ACTIONS(2970), + [anon_sym_fn] = ACTIONS(2970), + [anon_sym_PLUS] = ACTIONS(2970), + [anon_sym_DASH] = ACTIONS(2970), + [anon_sym_STAR] = ACTIONS(2968), + [anon_sym_SLASH] = ACTIONS(2970), + [anon_sym_PERCENT] = ACTIONS(2968), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_GT] = ACTIONS(2970), + [anon_sym_EQ_EQ] = ACTIONS(2968), + [anon_sym_BANG_EQ] = ACTIONS(2968), + [anon_sym_LT_EQ] = ACTIONS(2968), + [anon_sym_GT_EQ] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(2968), + [anon_sym_RBRACK] = ACTIONS(2968), + [anon_sym_struct] = ACTIONS(2970), + [anon_sym_mut] = ACTIONS(2970), + [anon_sym_PLUS_PLUS] = ACTIONS(2968), + [anon_sym_DASH_DASH] = ACTIONS(2968), + [anon_sym_QMARK] = ACTIONS(2970), + [anon_sym_BANG] = ACTIONS(2970), + [anon_sym_go] = ACTIONS(2970), + [anon_sym_spawn] = ACTIONS(2970), + [anon_sym_json_DOTdecode] = ACTIONS(2968), + [anon_sym_LBRACK2] = ACTIONS(2970), + [anon_sym_TILDE] = ACTIONS(2968), + [anon_sym_CARET] = ACTIONS(2968), + [anon_sym_AMP] = ACTIONS(2970), + [anon_sym_LT_DASH] = ACTIONS(2968), + [anon_sym_LT_LT] = ACTIONS(2968), + [anon_sym_GT_GT] = ACTIONS(2970), + [anon_sym_GT_GT_GT] = ACTIONS(2968), + [anon_sym_AMP_CARET] = ACTIONS(2968), + [anon_sym_AMP_AMP] = ACTIONS(2968), + [anon_sym_PIPE_PIPE] = ACTIONS(2968), + [anon_sym_or] = ACTIONS(2970), + [sym_none] = ACTIONS(2970), + [sym_true] = ACTIONS(2970), + [sym_false] = ACTIONS(2970), + [sym_nil] = ACTIONS(2970), + [anon_sym_QMARK_DOT] = ACTIONS(2968), + [anon_sym_POUND_LBRACK] = ACTIONS(2968), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_DOLLARif] = ACTIONS(2970), + [anon_sym_is] = ACTIONS(2970), + [anon_sym_BANGis] = ACTIONS(2968), + [anon_sym_in] = ACTIONS(2970), + [anon_sym_BANGin] = ACTIONS(2968), + [anon_sym_match] = ACTIONS(2970), + [anon_sym_select] = ACTIONS(2970), + [anon_sym_lock] = ACTIONS(2970), + [anon_sym_rlock] = ACTIONS(2970), + [anon_sym_unsafe] = ACTIONS(2970), + [anon_sym_sql] = ACTIONS(2970), + [sym_int_literal] = ACTIONS(2970), + [sym_float_literal] = ACTIONS(2968), + [sym_rune_literal] = ACTIONS(2968), + [anon_sym_AT] = ACTIONS(2970), + [anon_sym_shared] = ACTIONS(2970), + [anon_sym_map_LBRACK] = ACTIONS(2968), + [anon_sym_chan] = ACTIONS(2970), + [anon_sym_thread] = ACTIONS(2970), + [anon_sym_atomic] = ACTIONS(2970), + [sym___double_quote] = ACTIONS(2968), + [sym___single_quote] = ACTIONS(2968), + [sym___c_double_quote] = ACTIONS(2968), + [sym___c_single_quote] = ACTIONS(2968), + [sym___r_double_quote] = ACTIONS(2968), + [sym___r_single_quote] = ACTIONS(2968), }, [1298] = { - [sym_identifier] = ACTIONS(3045), + [sym_identifier] = ACTIONS(3006), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3043), - [anon_sym_DOT] = ACTIONS(3045), - [anon_sym_as] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_COMMA] = ACTIONS(3043), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_PIPE] = ACTIONS(3045), - [anon_sym_fn] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_SLASH] = ACTIONS(3045), - [anon_sym_PERCENT] = ACTIONS(3043), - [anon_sym_LT] = ACTIONS(3045), - [anon_sym_GT] = ACTIONS(3045), - [anon_sym_EQ_EQ] = ACTIONS(3043), - [anon_sym_BANG_EQ] = ACTIONS(3043), - [anon_sym_LT_EQ] = ACTIONS(3043), - [anon_sym_GT_EQ] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_RBRACK] = ACTIONS(3043), - [anon_sym_struct] = ACTIONS(3045), - [anon_sym_mut] = ACTIONS(3045), - [anon_sym_PLUS_PLUS] = ACTIONS(3043), - [anon_sym_DASH_DASH] = ACTIONS(3043), - [anon_sym_QMARK] = ACTIONS(3045), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_go] = ACTIONS(3045), - [anon_sym_spawn] = ACTIONS(3045), - [anon_sym_json_DOTdecode] = ACTIONS(3043), - [anon_sym_LBRACK2] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3043), - [anon_sym_CARET] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3045), - [anon_sym_LT_DASH] = ACTIONS(3043), - [anon_sym_LT_LT] = ACTIONS(3043), - [anon_sym_GT_GT] = ACTIONS(3045), - [anon_sym_GT_GT_GT] = ACTIONS(3043), - [anon_sym_AMP_CARET] = ACTIONS(3043), - [anon_sym_AMP_AMP] = ACTIONS(3043), - [anon_sym_PIPE_PIPE] = ACTIONS(3043), - [anon_sym_or] = ACTIONS(3045), - [sym_none] = ACTIONS(3045), - [sym_true] = ACTIONS(3045), - [sym_false] = ACTIONS(3045), - [sym_nil] = ACTIONS(3045), - [anon_sym_QMARK_DOT] = ACTIONS(3043), - [anon_sym_POUND_LBRACK] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3045), - [anon_sym_DOLLARif] = ACTIONS(3045), - [anon_sym_is] = ACTIONS(3045), - [anon_sym_BANGis] = ACTIONS(3043), - [anon_sym_in] = ACTIONS(3045), - [anon_sym_BANGin] = ACTIONS(3043), - [anon_sym_match] = ACTIONS(3045), - [anon_sym_select] = ACTIONS(3045), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(3045), - [anon_sym_sql] = ACTIONS(3045), - [sym_int_literal] = ACTIONS(3045), - [sym_float_literal] = ACTIONS(3043), - [sym_rune_literal] = ACTIONS(3043), - [anon_sym_AT] = ACTIONS(3045), - [anon_sym_shared] = ACTIONS(3045), - [anon_sym_map_LBRACK] = ACTIONS(3043), - [anon_sym_chan] = ACTIONS(3045), - [anon_sym_thread] = ACTIONS(3045), - [anon_sym_atomic] = ACTIONS(3045), - [sym___double_quote] = ACTIONS(3043), - [sym___single_quote] = ACTIONS(3043), - [sym___c_double_quote] = ACTIONS(3043), - [sym___c_single_quote] = ACTIONS(3043), - [sym___r_double_quote] = ACTIONS(3043), - [sym___r_single_quote] = ACTIONS(3043), + [anon_sym_SEMI] = ACTIONS(3004), + [anon_sym_DOT] = ACTIONS(3006), + [anon_sym_as] = ACTIONS(3006), + [anon_sym_LBRACE] = ACTIONS(3004), + [anon_sym_COMMA] = ACTIONS(3004), + [anon_sym_LPAREN] = ACTIONS(3004), + [anon_sym_PIPE] = ACTIONS(3006), + [anon_sym_fn] = ACTIONS(3006), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(3004), + [anon_sym_SLASH] = ACTIONS(3006), + [anon_sym_PERCENT] = ACTIONS(3004), + [anon_sym_LT] = ACTIONS(3006), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_EQ_EQ] = ACTIONS(3004), + [anon_sym_BANG_EQ] = ACTIONS(3004), + [anon_sym_LT_EQ] = ACTIONS(3004), + [anon_sym_GT_EQ] = ACTIONS(3004), + [anon_sym_LBRACK] = ACTIONS(3004), + [anon_sym_RBRACK] = ACTIONS(3004), + [anon_sym_struct] = ACTIONS(3006), + [anon_sym_mut] = ACTIONS(3006), + [anon_sym_PLUS_PLUS] = ACTIONS(3004), + [anon_sym_DASH_DASH] = ACTIONS(3004), + [anon_sym_QMARK] = ACTIONS(3006), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_go] = ACTIONS(3006), + [anon_sym_spawn] = ACTIONS(3006), + [anon_sym_json_DOTdecode] = ACTIONS(3004), + [anon_sym_LBRACK2] = ACTIONS(3006), + [anon_sym_TILDE] = ACTIONS(3004), + [anon_sym_CARET] = ACTIONS(3004), + [anon_sym_AMP] = ACTIONS(3006), + [anon_sym_LT_DASH] = ACTIONS(3004), + [anon_sym_LT_LT] = ACTIONS(3004), + [anon_sym_GT_GT] = ACTIONS(3006), + [anon_sym_GT_GT_GT] = ACTIONS(3004), + [anon_sym_AMP_CARET] = ACTIONS(3004), + [anon_sym_AMP_AMP] = ACTIONS(3004), + [anon_sym_PIPE_PIPE] = ACTIONS(3004), + [anon_sym_or] = ACTIONS(3006), + [sym_none] = ACTIONS(3006), + [sym_true] = ACTIONS(3006), + [sym_false] = ACTIONS(3006), + [sym_nil] = ACTIONS(3006), + [anon_sym_QMARK_DOT] = ACTIONS(3004), + [anon_sym_POUND_LBRACK] = ACTIONS(3004), + [anon_sym_if] = ACTIONS(3006), + [anon_sym_DOLLARif] = ACTIONS(3006), + [anon_sym_is] = ACTIONS(3006), + [anon_sym_BANGis] = ACTIONS(3004), + [anon_sym_in] = ACTIONS(3006), + [anon_sym_BANGin] = ACTIONS(3004), + [anon_sym_match] = ACTIONS(3006), + [anon_sym_select] = ACTIONS(3006), + [anon_sym_lock] = ACTIONS(3006), + [anon_sym_rlock] = ACTIONS(3006), + [anon_sym_unsafe] = ACTIONS(3006), + [anon_sym_sql] = ACTIONS(3006), + [sym_int_literal] = ACTIONS(3006), + [sym_float_literal] = ACTIONS(3004), + [sym_rune_literal] = ACTIONS(3004), + [anon_sym_AT] = ACTIONS(3006), + [anon_sym_shared] = ACTIONS(3006), + [anon_sym_map_LBRACK] = ACTIONS(3004), + [anon_sym_chan] = ACTIONS(3006), + [anon_sym_thread] = ACTIONS(3006), + [anon_sym_atomic] = ACTIONS(3006), + [sym___double_quote] = ACTIONS(3004), + [sym___single_quote] = ACTIONS(3004), + [sym___c_double_quote] = ACTIONS(3004), + [sym___c_single_quote] = ACTIONS(3004), + [sym___r_double_quote] = ACTIONS(3004), + [sym___r_single_quote] = ACTIONS(3004), }, [1299] = { - [sym_identifier] = ACTIONS(2734), + [sym_identifier] = ACTIONS(3010), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2734), - [anon_sym_as] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2732), - [anon_sym_COMMA] = ACTIONS(2732), - [anon_sym_LPAREN] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_fn] = ACTIONS(2734), - [anon_sym_PLUS] = ACTIONS(2734), - [anon_sym_DASH] = ACTIONS(2734), - [anon_sym_STAR] = ACTIONS(2732), - [anon_sym_SLASH] = ACTIONS(2734), - [anon_sym_PERCENT] = ACTIONS(2732), - [anon_sym_LT] = ACTIONS(2734), - [anon_sym_GT] = ACTIONS(2734), - [anon_sym_EQ_EQ] = ACTIONS(2732), - [anon_sym_BANG_EQ] = ACTIONS(2732), - [anon_sym_LT_EQ] = ACTIONS(2732), - [anon_sym_GT_EQ] = ACTIONS(2732), - [anon_sym_LBRACK] = ACTIONS(2732), - [anon_sym_RBRACK] = ACTIONS(2732), - [anon_sym_struct] = ACTIONS(2734), - [anon_sym_mut] = ACTIONS(2734), - [anon_sym_PLUS_PLUS] = ACTIONS(2732), - [anon_sym_DASH_DASH] = ACTIONS(2732), - [anon_sym_QMARK] = ACTIONS(2734), - [anon_sym_BANG] = ACTIONS(2734), - [anon_sym_go] = ACTIONS(2734), - [anon_sym_spawn] = ACTIONS(2734), - [anon_sym_json_DOTdecode] = ACTIONS(2732), - [anon_sym_LBRACK2] = ACTIONS(2734), - [anon_sym_TILDE] = ACTIONS(2732), - [anon_sym_CARET] = ACTIONS(2732), - [anon_sym_AMP] = ACTIONS(2734), - [anon_sym_LT_DASH] = ACTIONS(2732), - [anon_sym_LT_LT] = ACTIONS(2732), - [anon_sym_GT_GT] = ACTIONS(2734), - [anon_sym_GT_GT_GT] = ACTIONS(2732), - [anon_sym_AMP_CARET] = ACTIONS(2732), - [anon_sym_AMP_AMP] = ACTIONS(2732), - [anon_sym_PIPE_PIPE] = ACTIONS(2732), - [anon_sym_or] = ACTIONS(2734), - [sym_none] = ACTIONS(2734), - [sym_true] = ACTIONS(2734), - [sym_false] = ACTIONS(2734), - [sym_nil] = ACTIONS(2734), - [anon_sym_QMARK_DOT] = ACTIONS(2732), - [anon_sym_POUND_LBRACK] = ACTIONS(2732), - [anon_sym_if] = ACTIONS(2734), - [anon_sym_DOLLARif] = ACTIONS(2734), - [anon_sym_DOLLARelse] = ACTIONS(3665), - [anon_sym_is] = ACTIONS(2734), - [anon_sym_BANGis] = ACTIONS(2732), - [anon_sym_in] = ACTIONS(2734), - [anon_sym_BANGin] = ACTIONS(2732), - [anon_sym_match] = ACTIONS(2734), - [anon_sym_select] = ACTIONS(2734), - [anon_sym_lock] = ACTIONS(2734), - [anon_sym_rlock] = ACTIONS(2734), - [anon_sym_unsafe] = ACTIONS(2734), - [anon_sym_sql] = ACTIONS(2734), - [sym_int_literal] = ACTIONS(2734), - [sym_float_literal] = ACTIONS(2732), - [sym_rune_literal] = ACTIONS(2732), - [anon_sym_AT] = ACTIONS(2734), - [anon_sym_shared] = ACTIONS(2734), - [anon_sym_map_LBRACK] = ACTIONS(2732), - [anon_sym_chan] = ACTIONS(2734), - [anon_sym_thread] = ACTIONS(2734), - [anon_sym_atomic] = ACTIONS(2734), - [sym___double_quote] = ACTIONS(2732), - [sym___single_quote] = ACTIONS(2732), - [sym___c_double_quote] = ACTIONS(2732), - [sym___c_single_quote] = ACTIONS(2732), - [sym___r_double_quote] = ACTIONS(2732), - [sym___r_single_quote] = ACTIONS(2732), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_DOT] = ACTIONS(3010), + [anon_sym_as] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3008), + [anon_sym_COMMA] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_PIPE] = ACTIONS(3010), + [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_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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3008), + [sym___single_quote] = ACTIONS(3008), + [sym___c_double_quote] = ACTIONS(3008), + [sym___c_single_quote] = ACTIONS(3008), + [sym___r_double_quote] = ACTIONS(3008), + [sym___r_single_quote] = ACTIONS(3008), }, [1300] = { - [sym_identifier] = ACTIONS(3093), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_as] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_COMMA] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3091), - [anon_sym_PIPE] = ACTIONS(3093), - [anon_sym_fn] = ACTIONS(3093), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_SLASH] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3093), - [anon_sym_EQ_EQ] = ACTIONS(3091), - [anon_sym_BANG_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_RBRACK] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(3093), - [anon_sym_mut] = ACTIONS(3093), - [anon_sym_PLUS_PLUS] = ACTIONS(3091), - [anon_sym_DASH_DASH] = ACTIONS(3091), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_go] = ACTIONS(3093), - [anon_sym_spawn] = ACTIONS(3093), - [anon_sym_json_DOTdecode] = ACTIONS(3091), - [anon_sym_LBRACK2] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3091), - [anon_sym_CARET] = ACTIONS(3091), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_LT_DASH] = ACTIONS(3091), - [anon_sym_LT_LT] = ACTIONS(3091), - [anon_sym_GT_GT] = ACTIONS(3093), - [anon_sym_GT_GT_GT] = ACTIONS(3091), - [anon_sym_AMP_CARET] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_or] = ACTIONS(3093), - [sym_none] = ACTIONS(3093), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [sym_nil] = ACTIONS(3093), - [anon_sym_QMARK_DOT] = ACTIONS(3091), - [anon_sym_POUND_LBRACK] = ACTIONS(3091), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_DOLLARif] = ACTIONS(3093), - [anon_sym_is] = ACTIONS(3093), - [anon_sym_BANGis] = ACTIONS(3091), - [anon_sym_in] = ACTIONS(3093), - [anon_sym_BANGin] = ACTIONS(3091), - [anon_sym_match] = ACTIONS(3093), - [anon_sym_select] = ACTIONS(3093), - [anon_sym_lock] = ACTIONS(3093), - [anon_sym_rlock] = ACTIONS(3093), - [anon_sym_unsafe] = ACTIONS(3093), - [anon_sym_sql] = ACTIONS(3093), - [sym_int_literal] = ACTIONS(3093), - [sym_float_literal] = ACTIONS(3091), - [sym_rune_literal] = ACTIONS(3091), - [anon_sym_AT] = ACTIONS(3093), - [anon_sym_shared] = ACTIONS(3093), - [anon_sym_map_LBRACK] = ACTIONS(3091), - [anon_sym_chan] = ACTIONS(3093), - [anon_sym_thread] = ACTIONS(3093), - [anon_sym_atomic] = ACTIONS(3093), - [sym___double_quote] = ACTIONS(3091), - [sym___single_quote] = ACTIONS(3091), - [sym___c_double_quote] = ACTIONS(3091), - [sym___c_single_quote] = ACTIONS(3091), - [sym___r_double_quote] = ACTIONS(3091), - [sym___r_single_quote] = ACTIONS(3091), + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2359), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(617), + [anon_sym_LF] = ACTIONS(617), + [anon_sym_CR] = ACTIONS(617), + [anon_sym_CR_LF] = ACTIONS(617), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_DOT] = ACTIONS(617), + [anon_sym_as] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_RBRACE] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym___global] = ACTIONS(617), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(617), + [anon_sym_PERCENT] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(617), + [anon_sym_GT] = ACTIONS(617), + [anon_sym_EQ_EQ] = ACTIONS(617), + [anon_sym_BANG_EQ] = ACTIONS(617), + [anon_sym_LT_EQ] = ACTIONS(617), + [anon_sym_GT_EQ] = ACTIONS(617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_struct] = ACTIONS(601), + [anon_sym_pub] = ACTIONS(617), + [anon_sym_mut] = ACTIONS(617), + [anon_sym_PLUS_PLUS] = ACTIONS(617), + [anon_sym_DASH_DASH] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_LBRACK2] = ACTIONS(617), + [anon_sym_CARET] = ACTIONS(617), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_LT_LT] = ACTIONS(617), + [anon_sym_GT_GT] = ACTIONS(617), + [anon_sym_GT_GT_GT] = ACTIONS(617), + [anon_sym_AMP_CARET] = ACTIONS(617), + [anon_sym_AMP_AMP] = ACTIONS(617), + [anon_sym_PIPE_PIPE] = ACTIONS(617), + [anon_sym_or] = ACTIONS(617), + [anon_sym_QMARK_DOT] = ACTIONS(617), + [anon_sym_POUND_LBRACK] = ACTIONS(617), + [anon_sym_is] = ACTIONS(617), + [anon_sym_BANGis] = ACTIONS(617), + [anon_sym_in] = ACTIONS(617), + [anon_sym_BANGin] = ACTIONS(617), + [anon_sym_shared] = ACTIONS(609), + [anon_sym_map_LBRACK] = ACTIONS(543), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_AT_LBRACK] = ACTIONS(617), }, [1301] = { - [sym_identifier] = ACTIONS(2788), + [sym_identifier] = ACTIONS(2736), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2786), - [anon_sym_DOT] = ACTIONS(2788), - [anon_sym_as] = ACTIONS(2788), - [anon_sym_LBRACE] = ACTIONS(2786), - [anon_sym_COMMA] = ACTIONS(2786), - [anon_sym_LPAREN] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_fn] = ACTIONS(2788), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_STAR] = ACTIONS(2786), - [anon_sym_SLASH] = ACTIONS(2788), - [anon_sym_PERCENT] = ACTIONS(2786), - [anon_sym_LT] = ACTIONS(2788), - [anon_sym_GT] = ACTIONS(2788), - [anon_sym_EQ_EQ] = ACTIONS(2786), - [anon_sym_BANG_EQ] = ACTIONS(2786), - [anon_sym_LT_EQ] = ACTIONS(2786), - [anon_sym_GT_EQ] = ACTIONS(2786), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_RBRACK] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2788), - [anon_sym_mut] = ACTIONS(2788), - [anon_sym_PLUS_PLUS] = ACTIONS(2786), - [anon_sym_DASH_DASH] = ACTIONS(2786), - [anon_sym_QMARK] = ACTIONS(2788), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_go] = ACTIONS(2788), - [anon_sym_spawn] = ACTIONS(2788), - [anon_sym_json_DOTdecode] = ACTIONS(2786), - [anon_sym_LBRACK2] = ACTIONS(2788), - [anon_sym_TILDE] = ACTIONS(2786), - [anon_sym_CARET] = ACTIONS(2786), - [anon_sym_AMP] = ACTIONS(2788), - [anon_sym_LT_DASH] = ACTIONS(2786), - [anon_sym_LT_LT] = ACTIONS(2786), - [anon_sym_GT_GT] = ACTIONS(2788), - [anon_sym_GT_GT_GT] = ACTIONS(2786), - [anon_sym_AMP_CARET] = ACTIONS(2786), - [anon_sym_AMP_AMP] = ACTIONS(2786), - [anon_sym_PIPE_PIPE] = ACTIONS(2786), - [anon_sym_or] = ACTIONS(2788), - [sym_none] = ACTIONS(2788), - [sym_true] = ACTIONS(2788), - [sym_false] = ACTIONS(2788), - [sym_nil] = ACTIONS(2788), - [anon_sym_QMARK_DOT] = ACTIONS(2786), - [anon_sym_POUND_LBRACK] = ACTIONS(2786), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_DOLLARif] = ACTIONS(2788), - [anon_sym_is] = ACTIONS(2788), - [anon_sym_BANGis] = ACTIONS(2786), - [anon_sym_in] = ACTIONS(2788), - [anon_sym_BANGin] = ACTIONS(2786), - [anon_sym_match] = ACTIONS(2788), - [anon_sym_select] = ACTIONS(2788), - [anon_sym_lock] = ACTIONS(2788), - [anon_sym_rlock] = ACTIONS(2788), - [anon_sym_unsafe] = ACTIONS(2788), - [anon_sym_sql] = ACTIONS(2788), - [sym_int_literal] = ACTIONS(2788), - [sym_float_literal] = ACTIONS(2786), - [sym_rune_literal] = ACTIONS(2786), - [anon_sym_AT] = ACTIONS(2788), - [anon_sym_shared] = ACTIONS(2788), - [anon_sym_map_LBRACK] = ACTIONS(2786), - [anon_sym_chan] = ACTIONS(2788), - [anon_sym_thread] = ACTIONS(2788), - [anon_sym_atomic] = ACTIONS(2788), - [sym___double_quote] = ACTIONS(2786), - [sym___single_quote] = ACTIONS(2786), - [sym___c_double_quote] = ACTIONS(2786), - [sym___c_single_quote] = ACTIONS(2786), - [sym___r_double_quote] = ACTIONS(2786), - [sym___r_single_quote] = ACTIONS(2786), + [anon_sym_DOT] = ACTIONS(2736), + [anon_sym_as] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_COMMA] = ACTIONS(2734), + [anon_sym_LPAREN] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2736), + [anon_sym_fn] = ACTIONS(2736), + [anon_sym_PLUS] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2736), + [anon_sym_STAR] = ACTIONS(2734), + [anon_sym_SLASH] = ACTIONS(2736), + [anon_sym_PERCENT] = ACTIONS(2734), + [anon_sym_LT] = ACTIONS(2736), + [anon_sym_GT] = ACTIONS(2736), + [anon_sym_EQ_EQ] = ACTIONS(2734), + [anon_sym_BANG_EQ] = ACTIONS(2734), + [anon_sym_LT_EQ] = ACTIONS(2734), + [anon_sym_GT_EQ] = ACTIONS(2734), + [anon_sym_LBRACK] = ACTIONS(2734), + [anon_sym_RBRACK] = ACTIONS(2734), + [anon_sym_struct] = ACTIONS(2736), + [anon_sym_mut] = ACTIONS(2736), + [anon_sym_PLUS_PLUS] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(2734), + [anon_sym_QMARK] = ACTIONS(2736), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_go] = ACTIONS(2736), + [anon_sym_spawn] = ACTIONS(2736), + [anon_sym_json_DOTdecode] = ACTIONS(2734), + [anon_sym_LBRACK2] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2734), + [anon_sym_CARET] = ACTIONS(2734), + [anon_sym_AMP] = ACTIONS(2736), + [anon_sym_LT_DASH] = ACTIONS(2734), + [anon_sym_LT_LT] = ACTIONS(2734), + [anon_sym_GT_GT] = ACTIONS(2736), + [anon_sym_GT_GT_GT] = ACTIONS(2734), + [anon_sym_AMP_CARET] = ACTIONS(2734), + [anon_sym_AMP_AMP] = ACTIONS(2734), + [anon_sym_PIPE_PIPE] = ACTIONS(2734), + [anon_sym_or] = ACTIONS(2736), + [sym_none] = ACTIONS(2736), + [sym_true] = ACTIONS(2736), + [sym_false] = ACTIONS(2736), + [sym_nil] = ACTIONS(2736), + [anon_sym_QMARK_DOT] = ACTIONS(2734), + [anon_sym_POUND_LBRACK] = ACTIONS(2734), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_DOLLARif] = ACTIONS(2736), + [anon_sym_DOLLARelse] = ACTIONS(2736), + [anon_sym_is] = ACTIONS(2736), + [anon_sym_BANGis] = ACTIONS(2734), + [anon_sym_in] = ACTIONS(2736), + [anon_sym_BANGin] = ACTIONS(2734), + [anon_sym_match] = ACTIONS(2736), + [anon_sym_select] = ACTIONS(2736), + [anon_sym_lock] = ACTIONS(2736), + [anon_sym_rlock] = ACTIONS(2736), + [anon_sym_unsafe] = ACTIONS(2736), + [anon_sym_sql] = ACTIONS(2736), + [sym_int_literal] = ACTIONS(2736), + [sym_float_literal] = ACTIONS(2734), + [sym_rune_literal] = ACTIONS(2734), + [anon_sym_AT] = ACTIONS(2736), + [anon_sym_shared] = ACTIONS(2736), + [anon_sym_map_LBRACK] = ACTIONS(2734), + [anon_sym_chan] = ACTIONS(2736), + [anon_sym_thread] = ACTIONS(2736), + [anon_sym_atomic] = ACTIONS(2736), + [sym___double_quote] = ACTIONS(2734), + [sym___single_quote] = ACTIONS(2734), + [sym___c_double_quote] = ACTIONS(2734), + [sym___c_single_quote] = ACTIONS(2734), + [sym___r_double_quote] = ACTIONS(2734), + [sym___r_single_quote] = ACTIONS(2734), }, [1302] = { - [sym_identifier] = ACTIONS(2700), + [sym_identifier] = ACTIONS(3074), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_COMMA] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2698), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2698), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2698), - [anon_sym_BANG_EQ] = ACTIONS(2698), - [anon_sym_LT_EQ] = ACTIONS(2698), - [anon_sym_GT_EQ] = ACTIONS(2698), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_RBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2698), - [anon_sym_DASH_DASH] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2698), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2698), - [anon_sym_CARET] = ACTIONS(2698), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2698), - [anon_sym_LT_LT] = ACTIONS(2698), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2698), - [anon_sym_AMP_CARET] = ACTIONS(2698), - [anon_sym_AMP_AMP] = ACTIONS(2698), - [anon_sym_PIPE_PIPE] = ACTIONS(2698), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2698), - [anon_sym_POUND_LBRACK] = ACTIONS(2698), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_DOLLARelse] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2698), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2698), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2698), - [sym_rune_literal] = ACTIONS(2698), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2698), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2698), - [sym___single_quote] = ACTIONS(2698), - [sym___c_double_quote] = ACTIONS(2698), - [sym___c_single_quote] = ACTIONS(2698), - [sym___r_double_quote] = ACTIONS(2698), - [sym___r_single_quote] = ACTIONS(2698), + [anon_sym_SEMI] = ACTIONS(3072), + [anon_sym_DOT] = ACTIONS(3074), + [anon_sym_as] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_COMMA] = ACTIONS(3072), + [anon_sym_LPAREN] = ACTIONS(3072), + [anon_sym_PIPE] = ACTIONS(3074), + [anon_sym_fn] = ACTIONS(3074), + [anon_sym_PLUS] = ACTIONS(3074), + [anon_sym_DASH] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(3072), + [anon_sym_SLASH] = ACTIONS(3074), + [anon_sym_PERCENT] = ACTIONS(3072), + [anon_sym_LT] = ACTIONS(3074), + [anon_sym_GT] = ACTIONS(3074), + [anon_sym_EQ_EQ] = ACTIONS(3072), + [anon_sym_BANG_EQ] = ACTIONS(3072), + [anon_sym_LT_EQ] = ACTIONS(3072), + [anon_sym_GT_EQ] = ACTIONS(3072), + [anon_sym_LBRACK] = ACTIONS(3072), + [anon_sym_RBRACK] = ACTIONS(3072), + [anon_sym_struct] = ACTIONS(3074), + [anon_sym_mut] = ACTIONS(3074), + [anon_sym_PLUS_PLUS] = ACTIONS(3072), + [anon_sym_DASH_DASH] = ACTIONS(3072), + [anon_sym_QMARK] = ACTIONS(3074), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_go] = ACTIONS(3074), + [anon_sym_spawn] = ACTIONS(3074), + [anon_sym_json_DOTdecode] = ACTIONS(3072), + [anon_sym_LBRACK2] = ACTIONS(3074), + [anon_sym_TILDE] = ACTIONS(3072), + [anon_sym_CARET] = ACTIONS(3072), + [anon_sym_AMP] = ACTIONS(3074), + [anon_sym_LT_DASH] = ACTIONS(3072), + [anon_sym_LT_LT] = ACTIONS(3072), + [anon_sym_GT_GT] = ACTIONS(3074), + [anon_sym_GT_GT_GT] = ACTIONS(3072), + [anon_sym_AMP_CARET] = ACTIONS(3072), + [anon_sym_AMP_AMP] = ACTIONS(3072), + [anon_sym_PIPE_PIPE] = ACTIONS(3072), + [anon_sym_or] = ACTIONS(3074), + [sym_none] = ACTIONS(3074), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [sym_nil] = ACTIONS(3074), + [anon_sym_QMARK_DOT] = ACTIONS(3072), + [anon_sym_POUND_LBRACK] = ACTIONS(3072), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_DOLLARif] = ACTIONS(3074), + [anon_sym_is] = ACTIONS(3074), + [anon_sym_BANGis] = ACTIONS(3072), + [anon_sym_in] = ACTIONS(3074), + [anon_sym_BANGin] = ACTIONS(3072), + [anon_sym_match] = ACTIONS(3074), + [anon_sym_select] = ACTIONS(3074), + [anon_sym_lock] = ACTIONS(3074), + [anon_sym_rlock] = ACTIONS(3074), + [anon_sym_unsafe] = ACTIONS(3074), + [anon_sym_sql] = ACTIONS(3074), + [sym_int_literal] = ACTIONS(3074), + [sym_float_literal] = ACTIONS(3072), + [sym_rune_literal] = ACTIONS(3072), + [anon_sym_AT] = ACTIONS(3074), + [anon_sym_shared] = ACTIONS(3074), + [anon_sym_map_LBRACK] = ACTIONS(3072), + [anon_sym_chan] = ACTIONS(3074), + [anon_sym_thread] = ACTIONS(3074), + [anon_sym_atomic] = ACTIONS(3074), + [sym___double_quote] = ACTIONS(3072), + [sym___single_quote] = ACTIONS(3072), + [sym___c_double_quote] = ACTIONS(3072), + [sym___c_single_quote] = ACTIONS(3072), + [sym___r_double_quote] = ACTIONS(3072), + [sym___r_single_quote] = ACTIONS(3072), }, [1303] = { - [sym_identifier] = ACTIONS(2820), + [sym_type_parameters] = STATE(1317), + [sym_identifier] = ACTIONS(2764), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2820), - [anon_sym_as] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2818), - [anon_sym_COMMA] = ACTIONS(2818), - [anon_sym_LPAREN] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2820), - [anon_sym_fn] = ACTIONS(2820), - [anon_sym_PLUS] = ACTIONS(2820), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_STAR] = ACTIONS(2818), - [anon_sym_SLASH] = ACTIONS(2820), - [anon_sym_PERCENT] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_GT] = ACTIONS(2820), - [anon_sym_EQ_EQ] = ACTIONS(2818), - [anon_sym_BANG_EQ] = ACTIONS(2818), - [anon_sym_LT_EQ] = ACTIONS(2818), - [anon_sym_GT_EQ] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_RBRACK] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2820), - [anon_sym_mut] = ACTIONS(2820), - [anon_sym_PLUS_PLUS] = ACTIONS(2818), - [anon_sym_DASH_DASH] = ACTIONS(2818), - [anon_sym_QMARK] = ACTIONS(2820), - [anon_sym_BANG] = ACTIONS(2820), - [anon_sym_go] = ACTIONS(2820), - [anon_sym_spawn] = ACTIONS(2820), - [anon_sym_json_DOTdecode] = ACTIONS(2818), - [anon_sym_LBRACK2] = ACTIONS(2820), - [anon_sym_TILDE] = ACTIONS(2818), - [anon_sym_CARET] = ACTIONS(2818), - [anon_sym_AMP] = ACTIONS(2820), - [anon_sym_LT_DASH] = ACTIONS(2818), - [anon_sym_LT_LT] = ACTIONS(2818), - [anon_sym_GT_GT] = ACTIONS(2820), - [anon_sym_GT_GT_GT] = ACTIONS(2818), - [anon_sym_AMP_CARET] = ACTIONS(2818), - [anon_sym_AMP_AMP] = ACTIONS(2818), - [anon_sym_PIPE_PIPE] = ACTIONS(2818), - [anon_sym_or] = ACTIONS(2820), - [sym_none] = ACTIONS(2820), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [sym_nil] = ACTIONS(2820), - [anon_sym_QMARK_DOT] = ACTIONS(2818), - [anon_sym_POUND_LBRACK] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2820), - [anon_sym_DOLLARif] = ACTIONS(2820), - [anon_sym_is] = ACTIONS(2820), - [anon_sym_BANGis] = ACTIONS(2818), - [anon_sym_in] = ACTIONS(2820), - [anon_sym_BANGin] = ACTIONS(2818), - [anon_sym_match] = ACTIONS(2820), - [anon_sym_select] = ACTIONS(2820), - [anon_sym_lock] = ACTIONS(2820), - [anon_sym_rlock] = ACTIONS(2820), - [anon_sym_unsafe] = ACTIONS(2820), - [anon_sym_sql] = ACTIONS(2820), - [sym_int_literal] = ACTIONS(2820), - [sym_float_literal] = ACTIONS(2818), - [sym_rune_literal] = ACTIONS(2818), - [anon_sym_AT] = ACTIONS(2820), - [anon_sym_shared] = ACTIONS(2820), - [anon_sym_map_LBRACK] = ACTIONS(2818), - [anon_sym_chan] = ACTIONS(2820), - [anon_sym_thread] = ACTIONS(2820), - [anon_sym_atomic] = ACTIONS(2820), - [sym___double_quote] = ACTIONS(2818), - [sym___single_quote] = ACTIONS(2818), - [sym___c_double_quote] = ACTIONS(2818), - [sym___c_single_quote] = ACTIONS(2818), - [sym___r_double_quote] = ACTIONS(2818), - [sym___r_single_quote] = ACTIONS(2818), + [anon_sym_DOT] = ACTIONS(2764), + [anon_sym_as] = ACTIONS(2764), + [anon_sym_LBRACE] = ACTIONS(2762), + [anon_sym_COMMA] = ACTIONS(2762), + [anon_sym_LPAREN] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2764), + [anon_sym_fn] = ACTIONS(2764), + [anon_sym_PLUS] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2764), + [anon_sym_STAR] = ACTIONS(2762), + [anon_sym_SLASH] = ACTIONS(2764), + [anon_sym_PERCENT] = ACTIONS(2762), + [anon_sym_LT] = ACTIONS(2764), + [anon_sym_GT] = ACTIONS(2764), + [anon_sym_EQ_EQ] = ACTIONS(2762), + [anon_sym_BANG_EQ] = ACTIONS(2762), + [anon_sym_LT_EQ] = ACTIONS(2762), + [anon_sym_GT_EQ] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_RBRACK] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2764), + [anon_sym_mut] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2762), + [anon_sym_QMARK] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_go] = ACTIONS(2764), + [anon_sym_spawn] = ACTIONS(2764), + [anon_sym_json_DOTdecode] = ACTIONS(2762), + [anon_sym_LBRACK2] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2762), + [anon_sym_CARET] = ACTIONS(2762), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_LT_DASH] = ACTIONS(2762), + [anon_sym_LT_LT] = ACTIONS(2762), + [anon_sym_GT_GT] = ACTIONS(2764), + [anon_sym_GT_GT_GT] = ACTIONS(2762), + [anon_sym_AMP_CARET] = ACTIONS(2762), + [anon_sym_AMP_AMP] = ACTIONS(2762), + [anon_sym_PIPE_PIPE] = ACTIONS(2762), + [anon_sym_or] = ACTIONS(2764), + [sym_none] = ACTIONS(2764), + [sym_true] = ACTIONS(2764), + [sym_false] = ACTIONS(2764), + [sym_nil] = ACTIONS(2764), + [anon_sym_QMARK_DOT] = ACTIONS(2762), + [anon_sym_POUND_LBRACK] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2764), + [anon_sym_DOLLARif] = ACTIONS(2764), + [anon_sym_is] = ACTIONS(2764), + [anon_sym_BANGis] = ACTIONS(2762), + [anon_sym_in] = ACTIONS(2764), + [anon_sym_BANGin] = ACTIONS(2762), + [anon_sym_match] = ACTIONS(2764), + [anon_sym_select] = ACTIONS(2764), + [anon_sym_lock] = ACTIONS(2764), + [anon_sym_rlock] = ACTIONS(2764), + [anon_sym_unsafe] = ACTIONS(2764), + [anon_sym_sql] = ACTIONS(2764), + [sym_int_literal] = ACTIONS(2764), + [sym_float_literal] = ACTIONS(2762), + [sym_rune_literal] = ACTIONS(2762), + [anon_sym_AT] = ACTIONS(2764), + [anon_sym_shared] = ACTIONS(2764), + [anon_sym_map_LBRACK] = ACTIONS(2762), + [anon_sym_chan] = ACTIONS(2764), + [anon_sym_thread] = ACTIONS(2764), + [anon_sym_atomic] = ACTIONS(2764), + [sym___double_quote] = ACTIONS(2762), + [sym___single_quote] = ACTIONS(2762), + [sym___c_double_quote] = ACTIONS(2762), + [sym___c_single_quote] = ACTIONS(2762), + [sym___r_double_quote] = ACTIONS(2762), + [sym___r_single_quote] = ACTIONS(2762), }, [1304] = { - [sym_identifier] = ACTIONS(2700), + [sym_identifier] = ACTIONS(2616), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_COMMA] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2698), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2698), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2698), - [anon_sym_BANG_EQ] = ACTIONS(2698), - [anon_sym_LT_EQ] = ACTIONS(2698), - [anon_sym_GT_EQ] = ACTIONS(2698), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_RBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2698), - [anon_sym_DASH_DASH] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2698), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2698), - [anon_sym_CARET] = ACTIONS(2698), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2698), - [anon_sym_LT_LT] = ACTIONS(2698), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2698), - [anon_sym_AMP_CARET] = ACTIONS(2698), - [anon_sym_AMP_AMP] = ACTIONS(2698), - [anon_sym_PIPE_PIPE] = ACTIONS(2698), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2698), - [anon_sym_POUND_LBRACK] = ACTIONS(2698), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2698), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2698), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2698), - [sym_rune_literal] = ACTIONS(2698), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2698), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2698), - [sym___single_quote] = ACTIONS(2698), - [sym___c_double_quote] = ACTIONS(2698), - [sym___c_single_quote] = ACTIONS(2698), - [sym___r_double_quote] = ACTIONS(2698), - [sym___r_single_quote] = ACTIONS(2698), + [anon_sym_DOT] = ACTIONS(2616), + [anon_sym_as] = ACTIONS(2616), + [anon_sym_LBRACE] = ACTIONS(2614), + [anon_sym_COMMA] = ACTIONS(2614), + [anon_sym_LPAREN] = ACTIONS(2614), + [anon_sym_PIPE] = ACTIONS(2616), + [anon_sym_fn] = ACTIONS(2616), + [anon_sym_PLUS] = ACTIONS(2616), + [anon_sym_DASH] = ACTIONS(2616), + [anon_sym_STAR] = ACTIONS(2614), + [anon_sym_SLASH] = ACTIONS(2616), + [anon_sym_PERCENT] = ACTIONS(2614), + [anon_sym_LT] = ACTIONS(2616), + [anon_sym_GT] = ACTIONS(2616), + [anon_sym_EQ_EQ] = ACTIONS(2614), + [anon_sym_BANG_EQ] = ACTIONS(2614), + [anon_sym_LT_EQ] = ACTIONS(2614), + [anon_sym_GT_EQ] = ACTIONS(2614), + [anon_sym_LBRACK] = ACTIONS(2614), + [anon_sym_RBRACK] = ACTIONS(2614), + [anon_sym_struct] = ACTIONS(2616), + [anon_sym_mut] = ACTIONS(2616), + [anon_sym_PLUS_PLUS] = ACTIONS(2614), + [anon_sym_DASH_DASH] = ACTIONS(2614), + [anon_sym_QMARK] = ACTIONS(2616), + [anon_sym_BANG] = ACTIONS(2616), + [anon_sym_go] = ACTIONS(2616), + [anon_sym_spawn] = ACTIONS(2616), + [anon_sym_json_DOTdecode] = ACTIONS(2614), + [anon_sym_LBRACK2] = ACTIONS(2616), + [anon_sym_TILDE] = ACTIONS(2614), + [anon_sym_CARET] = ACTIONS(2614), + [anon_sym_AMP] = ACTIONS(2616), + [anon_sym_LT_DASH] = ACTIONS(2614), + [anon_sym_LT_LT] = ACTIONS(2614), + [anon_sym_GT_GT] = ACTIONS(2616), + [anon_sym_GT_GT_GT] = ACTIONS(2614), + [anon_sym_AMP_CARET] = ACTIONS(2614), + [anon_sym_AMP_AMP] = ACTIONS(2614), + [anon_sym_PIPE_PIPE] = ACTIONS(2614), + [anon_sym_or] = ACTIONS(2616), + [sym_none] = ACTIONS(2616), + [sym_true] = ACTIONS(2616), + [sym_false] = ACTIONS(2616), + [sym_nil] = ACTIONS(2616), + [anon_sym_QMARK_DOT] = ACTIONS(2614), + [anon_sym_POUND_LBRACK] = ACTIONS(2614), + [anon_sym_if] = ACTIONS(2616), + [anon_sym_DOLLARif] = ACTIONS(2616), + [anon_sym_DOLLARelse] = ACTIONS(3669), + [anon_sym_is] = ACTIONS(2616), + [anon_sym_BANGis] = ACTIONS(2614), + [anon_sym_in] = ACTIONS(2616), + [anon_sym_BANGin] = ACTIONS(2614), + [anon_sym_match] = ACTIONS(2616), + [anon_sym_select] = ACTIONS(2616), + [anon_sym_lock] = ACTIONS(2616), + [anon_sym_rlock] = ACTIONS(2616), + [anon_sym_unsafe] = ACTIONS(2616), + [anon_sym_sql] = ACTIONS(2616), + [sym_int_literal] = ACTIONS(2616), + [sym_float_literal] = ACTIONS(2614), + [sym_rune_literal] = ACTIONS(2614), + [anon_sym_AT] = ACTIONS(2616), + [anon_sym_shared] = ACTIONS(2616), + [anon_sym_map_LBRACK] = ACTIONS(2614), + [anon_sym_chan] = ACTIONS(2616), + [anon_sym_thread] = ACTIONS(2616), + [anon_sym_atomic] = ACTIONS(2616), + [sym___double_quote] = ACTIONS(2614), + [sym___single_quote] = ACTIONS(2614), + [sym___c_double_quote] = ACTIONS(2614), + [sym___c_single_quote] = ACTIONS(2614), + [sym___r_double_quote] = ACTIONS(2614), + [sym___r_single_quote] = ACTIONS(2614), }, [1305] = { - [sym_identifier] = ACTIONS(2891), + [sym_identifier] = ACTIONS(3058), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2891), - [anon_sym_as] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2889), - [anon_sym_COMMA] = ACTIONS(2889), - [anon_sym_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_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_AT] = ACTIONS(2891), - [anon_sym_shared] = ACTIONS(2891), - [anon_sym_map_LBRACK] = ACTIONS(2889), - [anon_sym_chan] = ACTIONS(2891), - [anon_sym_thread] = ACTIONS(2891), - [anon_sym_atomic] = ACTIONS(2891), - [sym___double_quote] = ACTIONS(2889), - [sym___single_quote] = ACTIONS(2889), - [sym___c_double_quote] = ACTIONS(2889), - [sym___c_single_quote] = ACTIONS(2889), - [sym___r_double_quote] = ACTIONS(2889), - [sym___r_single_quote] = ACTIONS(2889), + [anon_sym_SEMI] = ACTIONS(3056), + [anon_sym_DOT] = ACTIONS(3058), + [anon_sym_as] = ACTIONS(3058), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3056), + [anon_sym_PIPE] = ACTIONS(3058), + [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_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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3056), + [sym___single_quote] = ACTIONS(3056), + [sym___c_double_quote] = ACTIONS(3056), + [sym___c_single_quote] = ACTIONS(3056), + [sym___r_double_quote] = ACTIONS(3056), + [sym___r_single_quote] = ACTIONS(3056), }, [1306] = { - [sym_identifier] = ACTIONS(3041), + [sym_identifier] = ACTIONS(2758), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3041), - [anon_sym_as] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3039), - [anon_sym_COMMA] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3039), - [anon_sym_PIPE] = ACTIONS(3041), - [anon_sym_fn] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3039), - [anon_sym_SLASH] = ACTIONS(3041), - [anon_sym_PERCENT] = ACTIONS(3039), - [anon_sym_LT] = ACTIONS(3041), - [anon_sym_GT] = ACTIONS(3041), - [anon_sym_EQ_EQ] = ACTIONS(3039), - [anon_sym_BANG_EQ] = ACTIONS(3039), - [anon_sym_LT_EQ] = ACTIONS(3039), - [anon_sym_GT_EQ] = ACTIONS(3039), - [anon_sym_LBRACK] = ACTIONS(3039), - [anon_sym_RBRACK] = ACTIONS(3039), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_mut] = ACTIONS(3041), - [anon_sym_PLUS_PLUS] = ACTIONS(3039), - [anon_sym_DASH_DASH] = ACTIONS(3039), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3041), - [anon_sym_go] = ACTIONS(3041), - [anon_sym_spawn] = ACTIONS(3041), - [anon_sym_json_DOTdecode] = ACTIONS(3039), - [anon_sym_LBRACK2] = ACTIONS(3041), - [anon_sym_TILDE] = ACTIONS(3039), - [anon_sym_CARET] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_LT_DASH] = ACTIONS(3039), - [anon_sym_LT_LT] = ACTIONS(3039), - [anon_sym_GT_GT] = ACTIONS(3041), - [anon_sym_GT_GT_GT] = ACTIONS(3039), - [anon_sym_AMP_CARET] = ACTIONS(3039), - [anon_sym_AMP_AMP] = ACTIONS(3039), - [anon_sym_PIPE_PIPE] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3041), - [sym_none] = ACTIONS(3041), - [sym_true] = ACTIONS(3041), - [sym_false] = ACTIONS(3041), - [sym_nil] = ACTIONS(3041), - [anon_sym_QMARK_DOT] = ACTIONS(3039), - [anon_sym_POUND_LBRACK] = ACTIONS(3039), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_DOLLARif] = ACTIONS(3041), - [anon_sym_is] = ACTIONS(3041), - [anon_sym_BANGis] = ACTIONS(3039), - [anon_sym_in] = ACTIONS(3041), - [anon_sym_BANGin] = ACTIONS(3039), - [anon_sym_match] = ACTIONS(3041), - [anon_sym_select] = ACTIONS(3041), - [anon_sym_lock] = ACTIONS(3041), - [anon_sym_rlock] = ACTIONS(3041), - [anon_sym_unsafe] = ACTIONS(3041), - [anon_sym_sql] = ACTIONS(3041), - [sym_int_literal] = ACTIONS(3041), - [sym_float_literal] = ACTIONS(3039), - [sym_rune_literal] = ACTIONS(3039), - [anon_sym_AT] = ACTIONS(3041), - [anon_sym_shared] = ACTIONS(3041), - [anon_sym_map_LBRACK] = ACTIONS(3039), - [anon_sym_chan] = ACTIONS(3041), - [anon_sym_thread] = ACTIONS(3041), - [anon_sym_atomic] = ACTIONS(3041), - [sym___double_quote] = ACTIONS(3039), - [sym___single_quote] = ACTIONS(3039), - [sym___c_double_quote] = ACTIONS(3039), - [sym___c_single_quote] = ACTIONS(3039), - [sym___r_double_quote] = ACTIONS(3039), - [sym___r_single_quote] = ACTIONS(3039), + [anon_sym_DOT] = ACTIONS(2758), + [anon_sym_as] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_COMMA] = ACTIONS(2756), + [anon_sym_LPAREN] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_fn] = ACTIONS(2758), + [anon_sym_PLUS] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_STAR] = ACTIONS(2756), + [anon_sym_SLASH] = ACTIONS(2758), + [anon_sym_PERCENT] = ACTIONS(2756), + [anon_sym_LT] = ACTIONS(2758), + [anon_sym_GT] = ACTIONS(2758), + [anon_sym_EQ_EQ] = ACTIONS(2756), + [anon_sym_BANG_EQ] = ACTIONS(2756), + [anon_sym_LT_EQ] = ACTIONS(2756), + [anon_sym_GT_EQ] = ACTIONS(2756), + [anon_sym_LBRACK] = ACTIONS(2756), + [anon_sym_RBRACK] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(2758), + [anon_sym_mut] = ACTIONS(2758), + [anon_sym_PLUS_PLUS] = ACTIONS(2756), + [anon_sym_DASH_DASH] = ACTIONS(2756), + [anon_sym_QMARK] = ACTIONS(2758), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_go] = ACTIONS(2758), + [anon_sym_spawn] = ACTIONS(2758), + [anon_sym_json_DOTdecode] = ACTIONS(2756), + [anon_sym_LBRACK2] = ACTIONS(2758), + [anon_sym_TILDE] = ACTIONS(2756), + [anon_sym_CARET] = ACTIONS(2756), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_LT_DASH] = ACTIONS(2756), + [anon_sym_LT_LT] = ACTIONS(2756), + [anon_sym_GT_GT] = ACTIONS(2758), + [anon_sym_GT_GT_GT] = ACTIONS(2756), + [anon_sym_AMP_CARET] = ACTIONS(2756), + [anon_sym_AMP_AMP] = ACTIONS(2756), + [anon_sym_PIPE_PIPE] = ACTIONS(2756), + [anon_sym_or] = ACTIONS(2758), + [sym_none] = ACTIONS(2758), + [sym_true] = ACTIONS(2758), + [sym_false] = ACTIONS(2758), + [sym_nil] = ACTIONS(2758), + [anon_sym_QMARK_DOT] = ACTIONS(2756), + [anon_sym_POUND_LBRACK] = ACTIONS(2756), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_DOLLARif] = ACTIONS(2758), + [anon_sym_DOLLARelse] = ACTIONS(3671), + [anon_sym_is] = ACTIONS(2758), + [anon_sym_BANGis] = ACTIONS(2756), + [anon_sym_in] = ACTIONS(2758), + [anon_sym_BANGin] = ACTIONS(2756), + [anon_sym_match] = ACTIONS(2758), + [anon_sym_select] = ACTIONS(2758), + [anon_sym_lock] = ACTIONS(2758), + [anon_sym_rlock] = ACTIONS(2758), + [anon_sym_unsafe] = ACTIONS(2758), + [anon_sym_sql] = ACTIONS(2758), + [sym_int_literal] = ACTIONS(2758), + [sym_float_literal] = ACTIONS(2756), + [sym_rune_literal] = ACTIONS(2756), + [anon_sym_AT] = ACTIONS(2758), + [anon_sym_shared] = ACTIONS(2758), + [anon_sym_map_LBRACK] = ACTIONS(2756), + [anon_sym_chan] = ACTIONS(2758), + [anon_sym_thread] = ACTIONS(2758), + [anon_sym_atomic] = ACTIONS(2758), + [sym___double_quote] = ACTIONS(2756), + [sym___single_quote] = ACTIONS(2756), + [sym___c_double_quote] = ACTIONS(2756), + [sym___c_single_quote] = ACTIONS(2756), + [sym___r_double_quote] = ACTIONS(2756), + [sym___r_single_quote] = ACTIONS(2756), }, [1307] = { - [sym_identifier] = ACTIONS(3177), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_as] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3175), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_PIPE] = ACTIONS(3177), - [anon_sym_fn] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3175), - [anon_sym_SLASH] = ACTIONS(3177), - [anon_sym_PERCENT] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3177), - [anon_sym_EQ_EQ] = ACTIONS(3175), - [anon_sym_BANG_EQ] = ACTIONS(3175), - [anon_sym_LT_EQ] = ACTIONS(3175), - [anon_sym_GT_EQ] = ACTIONS(3175), - [anon_sym_LBRACK] = ACTIONS(3175), - [anon_sym_RBRACK] = ACTIONS(3175), - [anon_sym_struct] = ACTIONS(3177), - [anon_sym_mut] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3175), - [anon_sym_DASH_DASH] = ACTIONS(3175), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_go] = ACTIONS(3177), - [anon_sym_spawn] = ACTIONS(3177), - [anon_sym_json_DOTdecode] = ACTIONS(3175), - [anon_sym_LBRACK2] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3175), - [anon_sym_CARET] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LT_DASH] = ACTIONS(3175), - [anon_sym_LT_LT] = ACTIONS(3175), - [anon_sym_GT_GT] = ACTIONS(3177), - [anon_sym_GT_GT_GT] = ACTIONS(3175), - [anon_sym_AMP_CARET] = ACTIONS(3175), - [anon_sym_AMP_AMP] = ACTIONS(3175), - [anon_sym_PIPE_PIPE] = ACTIONS(3175), - [anon_sym_or] = ACTIONS(3177), - [sym_none] = ACTIONS(3177), - [sym_true] = ACTIONS(3177), - [sym_false] = ACTIONS(3177), - [sym_nil] = ACTIONS(3177), - [anon_sym_QMARK_DOT] = ACTIONS(3175), - [anon_sym_POUND_LBRACK] = ACTIONS(3175), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_DOLLARif] = ACTIONS(3177), - [anon_sym_is] = ACTIONS(3177), - [anon_sym_BANGis] = ACTIONS(3175), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_BANGin] = ACTIONS(3175), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_select] = ACTIONS(3177), - [anon_sym_lock] = ACTIONS(3177), - [anon_sym_rlock] = ACTIONS(3177), - [anon_sym_unsafe] = ACTIONS(3177), - [anon_sym_sql] = ACTIONS(3177), - [sym_int_literal] = ACTIONS(3177), - [sym_float_literal] = ACTIONS(3175), - [sym_rune_literal] = ACTIONS(3175), - [anon_sym_AT] = ACTIONS(3177), - [anon_sym_shared] = ACTIONS(3177), - [anon_sym_map_LBRACK] = ACTIONS(3175), - [anon_sym_chan] = ACTIONS(3177), - [anon_sym_thread] = ACTIONS(3177), - [anon_sym_atomic] = ACTIONS(3177), - [sym___double_quote] = ACTIONS(3175), - [sym___single_quote] = ACTIONS(3175), - [sym___c_double_quote] = ACTIONS(3175), - [sym___c_single_quote] = ACTIONS(3175), - [sym___r_double_quote] = ACTIONS(3175), - [sym___r_single_quote] = ACTIONS(3175), + [sym_reference_expression] = STATE(4570), + [sym_type_reference_expression] = STATE(2164), + [sym_plain_type] = STATE(2244), + [sym__plain_type_without_special] = STATE(2191), + [sym_anon_struct_type] = STATE(2192), + [sym_multi_return_type] = STATE(2191), + [sym_result_type] = STATE(2191), + [sym_option_type] = STATE(2191), + [sym_qualified_type] = STATE(2164), + [sym_fixed_array_type] = STATE(2192), + [sym_array_type] = STATE(2192), + [sym_pointer_type] = STATE(2192), + [sym_wrong_pointer_type] = STATE(2192), + [sym_map_type] = STATE(2192), + [sym_channel_type] = STATE(2192), + [sym_shared_type] = STATE(2192), + [sym_thread_type] = STATE(2192), + [sym_atomic_type] = STATE(2192), + [sym_generic_type] = STATE(2192), + [sym_function_type] = STATE(2192), + [sym_identifier] = ACTIONS(3673), + [anon_sym_LF] = ACTIONS(613), + [anon_sym_CR] = ACTIONS(613), + [anon_sym_CR_LF] = ACTIONS(613), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(613), + [anon_sym_DOT] = ACTIONS(613), + [anon_sym_as] = ACTIONS(613), + [anon_sym_COMMA] = ACTIONS(613), + [anon_sym_RBRACE] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym___global] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(613), + [anon_sym_fn] = ACTIONS(3677), + [anon_sym_PLUS] = ACTIONS(613), + [anon_sym_DASH] = ACTIONS(613), + [anon_sym_STAR] = ACTIONS(3679), + [anon_sym_SLASH] = ACTIONS(613), + [anon_sym_PERCENT] = ACTIONS(613), + [anon_sym_LT] = ACTIONS(613), + [anon_sym_GT] = ACTIONS(613), + [anon_sym_EQ_EQ] = ACTIONS(613), + [anon_sym_BANG_EQ] = ACTIONS(613), + [anon_sym_LT_EQ] = ACTIONS(613), + [anon_sym_GT_EQ] = ACTIONS(613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(611), + [anon_sym_struct] = ACTIONS(3681), + [anon_sym_pub] = ACTIONS(613), + [anon_sym_mut] = ACTIONS(613), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_QMARK] = ACTIONS(3683), + [anon_sym_BANG] = ACTIONS(3685), + [anon_sym_LBRACK2] = ACTIONS(3687), + [anon_sym_CARET] = ACTIONS(613), + [anon_sym_AMP] = ACTIONS(3689), + [anon_sym_LT_LT] = ACTIONS(613), + [anon_sym_GT_GT] = ACTIONS(613), + [anon_sym_GT_GT_GT] = ACTIONS(613), + [anon_sym_AMP_CARET] = ACTIONS(613), + [anon_sym_AMP_AMP] = ACTIONS(613), + [anon_sym_PIPE_PIPE] = ACTIONS(613), + [anon_sym_or] = ACTIONS(613), + [anon_sym_QMARK_DOT] = ACTIONS(613), + [anon_sym_POUND_LBRACK] = ACTIONS(613), + [anon_sym_is] = ACTIONS(613), + [anon_sym_BANGis] = ACTIONS(613), + [anon_sym_in] = ACTIONS(613), + [anon_sym_BANGin] = ACTIONS(613), + [anon_sym_shared] = ACTIONS(3691), + [anon_sym_map_LBRACK] = ACTIONS(3693), + [anon_sym_chan] = ACTIONS(3695), + [anon_sym_thread] = ACTIONS(3697), + [anon_sym_atomic] = ACTIONS(3699), + [anon_sym_AT_LBRACK] = ACTIONS(613), }, [1308] = { - [sym_identifier] = ACTIONS(3101), + [sym_identifier] = ACTIONS(2854), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_as] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_PIPE] = ACTIONS(3101), - [anon_sym_fn] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3099), - [anon_sym_SLASH] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(3101), - [anon_sym_GT] = ACTIONS(3101), - [anon_sym_EQ_EQ] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(3099), - [anon_sym_GT_EQ] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_RBRACK] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3101), - [anon_sym_mut] = ACTIONS(3101), - [anon_sym_PLUS_PLUS] = ACTIONS(3099), - [anon_sym_DASH_DASH] = ACTIONS(3099), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_BANG] = ACTIONS(3101), - [anon_sym_go] = ACTIONS(3101), - [anon_sym_spawn] = ACTIONS(3101), - [anon_sym_json_DOTdecode] = ACTIONS(3099), - [anon_sym_LBRACK2] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3099), - [anon_sym_CARET] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_LT_DASH] = ACTIONS(3099), - [anon_sym_LT_LT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(3101), - [anon_sym_GT_GT_GT] = ACTIONS(3099), - [anon_sym_AMP_CARET] = ACTIONS(3099), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_or] = ACTIONS(3101), - [sym_none] = ACTIONS(3101), - [sym_true] = ACTIONS(3101), - [sym_false] = ACTIONS(3101), - [sym_nil] = ACTIONS(3101), - [anon_sym_QMARK_DOT] = ACTIONS(3099), - [anon_sym_POUND_LBRACK] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_DOLLARif] = ACTIONS(3101), - [anon_sym_is] = ACTIONS(3101), - [anon_sym_BANGis] = ACTIONS(3099), - [anon_sym_in] = ACTIONS(3101), - [anon_sym_BANGin] = ACTIONS(3099), - [anon_sym_match] = ACTIONS(3101), - [anon_sym_select] = ACTIONS(3101), - [anon_sym_lock] = ACTIONS(3101), - [anon_sym_rlock] = ACTIONS(3101), - [anon_sym_unsafe] = ACTIONS(3101), - [anon_sym_sql] = ACTIONS(3101), - [sym_int_literal] = ACTIONS(3101), - [sym_float_literal] = ACTIONS(3099), - [sym_rune_literal] = ACTIONS(3099), - [anon_sym_AT] = ACTIONS(3101), - [anon_sym_shared] = ACTIONS(3101), - [anon_sym_map_LBRACK] = ACTIONS(3099), - [anon_sym_chan] = ACTIONS(3101), - [anon_sym_thread] = ACTIONS(3101), - [anon_sym_atomic] = ACTIONS(3101), - [sym___double_quote] = ACTIONS(3099), - [sym___single_quote] = ACTIONS(3099), - [sym___c_double_quote] = ACTIONS(3099), - [sym___c_single_quote] = ACTIONS(3099), - [sym___r_double_quote] = ACTIONS(3099), - [sym___r_single_quote] = ACTIONS(3099), + [anon_sym_DOT] = ACTIONS(2854), + [anon_sym_as] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2852), + [anon_sym_COMMA] = ACTIONS(2852), + [anon_sym_LPAREN] = ACTIONS(2852), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_fn] = ACTIONS(2854), + [anon_sym_PLUS] = ACTIONS(2854), + [anon_sym_DASH] = ACTIONS(2854), + [anon_sym_STAR] = ACTIONS(2852), + [anon_sym_SLASH] = ACTIONS(2854), + [anon_sym_PERCENT] = ACTIONS(2852), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_GT] = ACTIONS(2854), + [anon_sym_EQ_EQ] = ACTIONS(2852), + [anon_sym_BANG_EQ] = ACTIONS(2852), + [anon_sym_LT_EQ] = ACTIONS(2852), + [anon_sym_GT_EQ] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_RBRACK] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2854), + [anon_sym_mut] = ACTIONS(2854), + [anon_sym_PLUS_PLUS] = ACTIONS(2852), + [anon_sym_DASH_DASH] = ACTIONS(2852), + [anon_sym_QMARK] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_go] = ACTIONS(2854), + [anon_sym_spawn] = ACTIONS(2854), + [anon_sym_json_DOTdecode] = ACTIONS(2852), + [anon_sym_LBRACK2] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2852), + [anon_sym_CARET] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_LT_DASH] = ACTIONS(2852), + [anon_sym_LT_LT] = ACTIONS(2852), + [anon_sym_GT_GT] = ACTIONS(2854), + [anon_sym_GT_GT_GT] = ACTIONS(2852), + [anon_sym_AMP_CARET] = ACTIONS(2852), + [anon_sym_AMP_AMP] = ACTIONS(2852), + [anon_sym_PIPE_PIPE] = ACTIONS(2852), + [anon_sym_or] = ACTIONS(2854), + [sym_none] = ACTIONS(2854), + [sym_true] = ACTIONS(2854), + [sym_false] = ACTIONS(2854), + [sym_nil] = ACTIONS(2854), + [anon_sym_QMARK_DOT] = ACTIONS(2852), + [anon_sym_POUND_LBRACK] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2854), + [anon_sym_DOLLARif] = ACTIONS(2854), + [anon_sym_is] = ACTIONS(2854), + [anon_sym_BANGis] = ACTIONS(2852), + [anon_sym_in] = ACTIONS(2854), + [anon_sym_BANGin] = ACTIONS(2852), + [anon_sym_match] = ACTIONS(2854), + [anon_sym_select] = ACTIONS(2854), + [anon_sym_lock] = ACTIONS(2854), + [anon_sym_rlock] = ACTIONS(2854), + [anon_sym_unsafe] = ACTIONS(2854), + [anon_sym_sql] = ACTIONS(2854), + [sym_int_literal] = ACTIONS(2854), + [sym_float_literal] = ACTIONS(2852), + [sym_rune_literal] = ACTIONS(2852), + [anon_sym_AT] = ACTIONS(2854), + [anon_sym_shared] = ACTIONS(2854), + [anon_sym_map_LBRACK] = ACTIONS(2852), + [anon_sym_chan] = ACTIONS(2854), + [anon_sym_thread] = ACTIONS(2854), + [anon_sym_atomic] = ACTIONS(2854), + [sym___double_quote] = ACTIONS(2852), + [sym___single_quote] = ACTIONS(2852), + [sym___c_double_quote] = ACTIONS(2852), + [sym___c_single_quote] = ACTIONS(2852), + [sym___r_double_quote] = ACTIONS(2852), + [sym___r_single_quote] = ACTIONS(2852), }, [1309] = { - [sym_identifier] = ACTIONS(2915), + [sym_identifier] = ACTIONS(2842), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2915), - [anon_sym_as] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2913), - [anon_sym_COMMA] = ACTIONS(2913), - [anon_sym_LPAREN] = ACTIONS(2913), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_fn] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_STAR] = ACTIONS(2913), - [anon_sym_SLASH] = ACTIONS(2915), - [anon_sym_PERCENT] = ACTIONS(2913), - [anon_sym_LT] = ACTIONS(2915), - [anon_sym_GT] = ACTIONS(2915), - [anon_sym_EQ_EQ] = ACTIONS(2913), - [anon_sym_BANG_EQ] = ACTIONS(2913), - [anon_sym_LT_EQ] = ACTIONS(2913), - [anon_sym_GT_EQ] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_RBRACK] = ACTIONS(2913), - [anon_sym_struct] = ACTIONS(2915), - [anon_sym_mut] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2913), - [anon_sym_QMARK] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2915), - [anon_sym_json_DOTdecode] = ACTIONS(2913), - [anon_sym_LBRACK2] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2913), - [anon_sym_CARET] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_LT_DASH] = ACTIONS(2913), - [anon_sym_LT_LT] = ACTIONS(2913), - [anon_sym_GT_GT] = ACTIONS(2915), - [anon_sym_GT_GT_GT] = ACTIONS(2913), - [anon_sym_AMP_CARET] = ACTIONS(2913), - [anon_sym_AMP_AMP] = ACTIONS(2913), - [anon_sym_PIPE_PIPE] = ACTIONS(2913), - [anon_sym_or] = ACTIONS(2915), - [sym_none] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [sym_nil] = ACTIONS(2915), - [anon_sym_QMARK_DOT] = ACTIONS(2913), - [anon_sym_POUND_LBRACK] = ACTIONS(2913), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_DOLLARif] = ACTIONS(2915), - [anon_sym_is] = ACTIONS(2915), - [anon_sym_BANGis] = ACTIONS(2913), - [anon_sym_in] = ACTIONS(2915), - [anon_sym_BANGin] = ACTIONS(2913), - [anon_sym_match] = ACTIONS(2915), - [anon_sym_select] = ACTIONS(2915), - [anon_sym_lock] = ACTIONS(2915), - [anon_sym_rlock] = ACTIONS(2915), - [anon_sym_unsafe] = ACTIONS(2915), - [anon_sym_sql] = ACTIONS(2915), - [sym_int_literal] = ACTIONS(2915), - [sym_float_literal] = ACTIONS(2913), - [sym_rune_literal] = ACTIONS(2913), - [anon_sym_AT] = ACTIONS(2915), - [anon_sym_shared] = ACTIONS(2915), - [anon_sym_map_LBRACK] = ACTIONS(2913), - [anon_sym_chan] = ACTIONS(2915), - [anon_sym_thread] = ACTIONS(2915), - [anon_sym_atomic] = ACTIONS(2915), - [sym___double_quote] = ACTIONS(2913), - [sym___single_quote] = ACTIONS(2913), - [sym___c_double_quote] = ACTIONS(2913), - [sym___c_single_quote] = ACTIONS(2913), - [sym___r_double_quote] = ACTIONS(2913), - [sym___r_single_quote] = ACTIONS(2913), + [anon_sym_DOT] = ACTIONS(2842), + [anon_sym_as] = ACTIONS(2842), + [anon_sym_LBRACE] = ACTIONS(2840), + [anon_sym_COMMA] = ACTIONS(2840), + [anon_sym_LPAREN] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(2842), + [anon_sym_fn] = ACTIONS(2842), + [anon_sym_PLUS] = ACTIONS(2842), + [anon_sym_DASH] = ACTIONS(2842), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_SLASH] = ACTIONS(2842), + [anon_sym_PERCENT] = ACTIONS(2840), + [anon_sym_LT] = ACTIONS(2842), + [anon_sym_GT] = ACTIONS(2842), + [anon_sym_EQ_EQ] = ACTIONS(2840), + [anon_sym_BANG_EQ] = ACTIONS(2840), + [anon_sym_LT_EQ] = ACTIONS(2840), + [anon_sym_GT_EQ] = ACTIONS(2840), + [anon_sym_LBRACK] = ACTIONS(2840), + [anon_sym_RBRACK] = ACTIONS(2840), + [anon_sym_struct] = ACTIONS(2842), + [anon_sym_mut] = ACTIONS(2842), + [anon_sym_PLUS_PLUS] = ACTIONS(2840), + [anon_sym_DASH_DASH] = ACTIONS(2840), + [anon_sym_QMARK] = ACTIONS(2842), + [anon_sym_BANG] = ACTIONS(2842), + [anon_sym_go] = ACTIONS(2842), + [anon_sym_spawn] = ACTIONS(2842), + [anon_sym_json_DOTdecode] = ACTIONS(2840), + [anon_sym_LBRACK2] = ACTIONS(2842), + [anon_sym_TILDE] = ACTIONS(2840), + [anon_sym_CARET] = ACTIONS(2840), + [anon_sym_AMP] = ACTIONS(2842), + [anon_sym_LT_DASH] = ACTIONS(2840), + [anon_sym_LT_LT] = ACTIONS(2840), + [anon_sym_GT_GT] = ACTIONS(2842), + [anon_sym_GT_GT_GT] = ACTIONS(2840), + [anon_sym_AMP_CARET] = ACTIONS(2840), + [anon_sym_AMP_AMP] = ACTIONS(2840), + [anon_sym_PIPE_PIPE] = ACTIONS(2840), + [anon_sym_or] = ACTIONS(2842), + [sym_none] = ACTIONS(2842), + [sym_true] = ACTIONS(2842), + [sym_false] = ACTIONS(2842), + [sym_nil] = ACTIONS(2842), + [anon_sym_QMARK_DOT] = ACTIONS(2840), + [anon_sym_POUND_LBRACK] = ACTIONS(2840), + [anon_sym_if] = ACTIONS(2842), + [anon_sym_DOLLARif] = ACTIONS(2842), + [anon_sym_is] = ACTIONS(2842), + [anon_sym_BANGis] = ACTIONS(2840), + [anon_sym_in] = ACTIONS(2842), + [anon_sym_BANGin] = ACTIONS(2840), + [anon_sym_match] = ACTIONS(2842), + [anon_sym_select] = ACTIONS(2842), + [anon_sym_lock] = ACTIONS(2842), + [anon_sym_rlock] = ACTIONS(2842), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2842), + [sym_int_literal] = ACTIONS(2842), + [sym_float_literal] = ACTIONS(2840), + [sym_rune_literal] = ACTIONS(2840), + [anon_sym_AT] = ACTIONS(2842), + [anon_sym_shared] = ACTIONS(2842), + [anon_sym_map_LBRACK] = ACTIONS(2840), + [anon_sym_chan] = ACTIONS(2842), + [anon_sym_thread] = ACTIONS(2842), + [anon_sym_atomic] = ACTIONS(2842), + [sym___double_quote] = ACTIONS(2840), + [sym___single_quote] = ACTIONS(2840), + [sym___c_double_quote] = ACTIONS(2840), + [sym___c_single_quote] = ACTIONS(2840), + [sym___r_double_quote] = ACTIONS(2840), + [sym___r_single_quote] = ACTIONS(2840), }, [1310] = { - [sym_identifier] = ACTIONS(3105), + [sym_identifier] = ACTIONS(2874), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3105), - [anon_sym_as] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3103), - [anon_sym_PIPE] = ACTIONS(3105), - [anon_sym_fn] = ACTIONS(3105), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_SLASH] = ACTIONS(3105), - [anon_sym_PERCENT] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3105), - [anon_sym_GT] = ACTIONS(3105), - [anon_sym_EQ_EQ] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(3103), - [anon_sym_LT_EQ] = ACTIONS(3103), - [anon_sym_GT_EQ] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3103), - [anon_sym_RBRACK] = ACTIONS(3103), - [anon_sym_struct] = ACTIONS(3105), - [anon_sym_mut] = ACTIONS(3105), - [anon_sym_PLUS_PLUS] = ACTIONS(3103), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3105), - [anon_sym_go] = ACTIONS(3105), - [anon_sym_spawn] = ACTIONS(3105), - [anon_sym_json_DOTdecode] = ACTIONS(3103), - [anon_sym_LBRACK2] = ACTIONS(3105), - [anon_sym_TILDE] = ACTIONS(3103), - [anon_sym_CARET] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_LT_DASH] = ACTIONS(3103), - [anon_sym_LT_LT] = ACTIONS(3103), - [anon_sym_GT_GT] = ACTIONS(3105), - [anon_sym_GT_GT_GT] = ACTIONS(3103), - [anon_sym_AMP_CARET] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_PIPE_PIPE] = ACTIONS(3103), - [anon_sym_or] = ACTIONS(3105), - [sym_none] = ACTIONS(3105), - [sym_true] = ACTIONS(3105), - [sym_false] = ACTIONS(3105), - [sym_nil] = ACTIONS(3105), - [anon_sym_QMARK_DOT] = ACTIONS(3103), - [anon_sym_POUND_LBRACK] = ACTIONS(3103), - [anon_sym_if] = ACTIONS(3105), - [anon_sym_DOLLARif] = ACTIONS(3105), - [anon_sym_is] = ACTIONS(3105), - [anon_sym_BANGis] = ACTIONS(3103), - [anon_sym_in] = ACTIONS(3105), - [anon_sym_BANGin] = ACTIONS(3103), - [anon_sym_match] = ACTIONS(3105), - [anon_sym_select] = ACTIONS(3105), - [anon_sym_lock] = ACTIONS(3105), - [anon_sym_rlock] = ACTIONS(3105), - [anon_sym_unsafe] = ACTIONS(3105), - [anon_sym_sql] = ACTIONS(3105), - [sym_int_literal] = ACTIONS(3105), - [sym_float_literal] = ACTIONS(3103), - [sym_rune_literal] = ACTIONS(3103), - [anon_sym_AT] = ACTIONS(3105), - [anon_sym_shared] = ACTIONS(3105), - [anon_sym_map_LBRACK] = ACTIONS(3103), - [anon_sym_chan] = ACTIONS(3105), - [anon_sym_thread] = ACTIONS(3105), - [anon_sym_atomic] = ACTIONS(3105), - [sym___double_quote] = ACTIONS(3103), - [sym___single_quote] = ACTIONS(3103), - [sym___c_double_quote] = ACTIONS(3103), - [sym___c_single_quote] = ACTIONS(3103), - [sym___r_double_quote] = ACTIONS(3103), - [sym___r_single_quote] = ACTIONS(3103), + [anon_sym_DOT] = ACTIONS(2874), + [anon_sym_as] = ACTIONS(2874), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_COMMA] = ACTIONS(2872), + [anon_sym_LPAREN] = ACTIONS(2872), + [anon_sym_PIPE] = ACTIONS(2874), + [anon_sym_fn] = ACTIONS(2874), + [anon_sym_PLUS] = ACTIONS(2874), + [anon_sym_DASH] = ACTIONS(2874), + [anon_sym_STAR] = ACTIONS(2872), + [anon_sym_SLASH] = ACTIONS(2874), + [anon_sym_PERCENT] = ACTIONS(2872), + [anon_sym_LT] = ACTIONS(2874), + [anon_sym_GT] = ACTIONS(2874), + [anon_sym_EQ_EQ] = ACTIONS(2872), + [anon_sym_BANG_EQ] = ACTIONS(2872), + [anon_sym_LT_EQ] = ACTIONS(2872), + [anon_sym_GT_EQ] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_RBRACK] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2874), + [anon_sym_mut] = ACTIONS(2874), + [anon_sym_PLUS_PLUS] = ACTIONS(2872), + [anon_sym_DASH_DASH] = ACTIONS(2872), + [anon_sym_QMARK] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_go] = ACTIONS(2874), + [anon_sym_spawn] = ACTIONS(2874), + [anon_sym_json_DOTdecode] = ACTIONS(2872), + [anon_sym_LBRACK2] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2872), + [anon_sym_CARET] = ACTIONS(2872), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_LT_DASH] = ACTIONS(2872), + [anon_sym_LT_LT] = ACTIONS(2872), + [anon_sym_GT_GT] = ACTIONS(2874), + [anon_sym_GT_GT_GT] = ACTIONS(2872), + [anon_sym_AMP_CARET] = ACTIONS(2872), + [anon_sym_AMP_AMP] = ACTIONS(2872), + [anon_sym_PIPE_PIPE] = ACTIONS(2872), + [anon_sym_or] = ACTIONS(2874), + [sym_none] = ACTIONS(2874), + [sym_true] = ACTIONS(2874), + [sym_false] = ACTIONS(2874), + [sym_nil] = ACTIONS(2874), + [anon_sym_QMARK_DOT] = ACTIONS(2872), + [anon_sym_POUND_LBRACK] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2874), + [anon_sym_DOLLARif] = ACTIONS(2874), + [anon_sym_is] = ACTIONS(2874), + [anon_sym_BANGis] = ACTIONS(2872), + [anon_sym_in] = ACTIONS(2874), + [anon_sym_BANGin] = ACTIONS(2872), + [anon_sym_match] = ACTIONS(2874), + [anon_sym_select] = ACTIONS(2874), + [anon_sym_lock] = ACTIONS(2874), + [anon_sym_rlock] = ACTIONS(2874), + [anon_sym_unsafe] = ACTIONS(2874), + [anon_sym_sql] = ACTIONS(2874), + [sym_int_literal] = ACTIONS(2874), + [sym_float_literal] = ACTIONS(2872), + [sym_rune_literal] = ACTIONS(2872), + [anon_sym_AT] = ACTIONS(2874), + [anon_sym_shared] = ACTIONS(2874), + [anon_sym_map_LBRACK] = ACTIONS(2872), + [anon_sym_chan] = ACTIONS(2874), + [anon_sym_thread] = ACTIONS(2874), + [anon_sym_atomic] = ACTIONS(2874), + [sym___double_quote] = ACTIONS(2872), + [sym___single_quote] = ACTIONS(2872), + [sym___c_double_quote] = ACTIONS(2872), + [sym___c_single_quote] = ACTIONS(2872), + [sym___r_double_quote] = ACTIONS(2872), + [sym___r_single_quote] = ACTIONS(2872), }, [1311] = { - [sym_identifier] = ACTIONS(3129), + [sym_identifier] = ACTIONS(2882), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_as] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(3127), - [anon_sym_SLASH] = ACTIONS(3129), - [anon_sym_PERCENT] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(3129), - [anon_sym_GT] = ACTIONS(3129), - [anon_sym_EQ_EQ] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(3127), - [anon_sym_GT_EQ] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_RBRACK] = ACTIONS(3127), - [anon_sym_struct] = ACTIONS(3129), - [anon_sym_mut] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3127), - [anon_sym_DASH_DASH] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_go] = ACTIONS(3129), - [anon_sym_spawn] = ACTIONS(3129), - [anon_sym_json_DOTdecode] = ACTIONS(3127), - [anon_sym_LBRACK2] = ACTIONS(3129), - [anon_sym_TILDE] = ACTIONS(3127), - [anon_sym_CARET] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3129), - [anon_sym_LT_DASH] = ACTIONS(3127), - [anon_sym_LT_LT] = ACTIONS(3127), - [anon_sym_GT_GT] = ACTIONS(3129), - [anon_sym_GT_GT_GT] = ACTIONS(3127), - [anon_sym_AMP_CARET] = ACTIONS(3127), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_or] = ACTIONS(3129), - [sym_none] = ACTIONS(3129), - [sym_true] = ACTIONS(3129), - [sym_false] = ACTIONS(3129), - [sym_nil] = ACTIONS(3129), - [anon_sym_QMARK_DOT] = ACTIONS(3127), - [anon_sym_POUND_LBRACK] = ACTIONS(3127), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_DOLLARif] = ACTIONS(3129), - [anon_sym_is] = ACTIONS(3129), - [anon_sym_BANGis] = ACTIONS(3127), - [anon_sym_in] = ACTIONS(3129), - [anon_sym_BANGin] = ACTIONS(3127), - [anon_sym_match] = ACTIONS(3129), - [anon_sym_select] = ACTIONS(3129), - [anon_sym_lock] = ACTIONS(3129), - [anon_sym_rlock] = ACTIONS(3129), - [anon_sym_unsafe] = ACTIONS(3129), - [anon_sym_sql] = ACTIONS(3129), - [sym_int_literal] = ACTIONS(3129), - [sym_float_literal] = ACTIONS(3127), - [sym_rune_literal] = ACTIONS(3127), - [anon_sym_AT] = ACTIONS(3129), - [anon_sym_shared] = ACTIONS(3129), - [anon_sym_map_LBRACK] = ACTIONS(3127), - [anon_sym_chan] = ACTIONS(3129), - [anon_sym_thread] = ACTIONS(3129), - [anon_sym_atomic] = ACTIONS(3129), - [sym___double_quote] = ACTIONS(3127), - [sym___single_quote] = ACTIONS(3127), - [sym___c_double_quote] = ACTIONS(3127), - [sym___c_single_quote] = ACTIONS(3127), - [sym___r_double_quote] = ACTIONS(3127), - [sym___r_single_quote] = ACTIONS(3127), + [anon_sym_DOT] = ACTIONS(2882), + [anon_sym_as] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2880), + [anon_sym_COMMA] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_PIPE] = ACTIONS(2882), + [anon_sym_fn] = ACTIONS(2882), + [anon_sym_PLUS] = ACTIONS(2882), + [anon_sym_DASH] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(2880), + [anon_sym_SLASH] = ACTIONS(2882), + [anon_sym_PERCENT] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_GT] = ACTIONS(2882), + [anon_sym_EQ_EQ] = ACTIONS(2880), + [anon_sym_BANG_EQ] = ACTIONS(2880), + [anon_sym_LT_EQ] = ACTIONS(2880), + [anon_sym_GT_EQ] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_RBRACK] = ACTIONS(2880), + [anon_sym_struct] = ACTIONS(2882), + [anon_sym_mut] = ACTIONS(2882), + [anon_sym_PLUS_PLUS] = ACTIONS(2880), + [anon_sym_DASH_DASH] = ACTIONS(2880), + [anon_sym_QMARK] = ACTIONS(2882), + [anon_sym_BANG] = ACTIONS(2882), + [anon_sym_go] = ACTIONS(2882), + [anon_sym_spawn] = ACTIONS(2882), + [anon_sym_json_DOTdecode] = ACTIONS(2880), + [anon_sym_LBRACK2] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2880), + [anon_sym_CARET] = ACTIONS(2880), + [anon_sym_AMP] = ACTIONS(2882), + [anon_sym_LT_DASH] = ACTIONS(2880), + [anon_sym_LT_LT] = ACTIONS(2880), + [anon_sym_GT_GT] = ACTIONS(2882), + [anon_sym_GT_GT_GT] = ACTIONS(2880), + [anon_sym_AMP_CARET] = ACTIONS(2880), + [anon_sym_AMP_AMP] = ACTIONS(2880), + [anon_sym_PIPE_PIPE] = ACTIONS(2880), + [anon_sym_or] = ACTIONS(2882), + [sym_none] = ACTIONS(2882), + [sym_true] = ACTIONS(2882), + [sym_false] = ACTIONS(2882), + [sym_nil] = ACTIONS(2882), + [anon_sym_QMARK_DOT] = ACTIONS(2880), + [anon_sym_POUND_LBRACK] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2882), + [anon_sym_DOLLARif] = ACTIONS(2882), + [anon_sym_is] = ACTIONS(2882), + [anon_sym_BANGis] = ACTIONS(2880), + [anon_sym_in] = ACTIONS(2882), + [anon_sym_BANGin] = ACTIONS(2880), + [anon_sym_match] = ACTIONS(2882), + [anon_sym_select] = ACTIONS(2882), + [anon_sym_lock] = ACTIONS(2882), + [anon_sym_rlock] = ACTIONS(2882), + [anon_sym_unsafe] = ACTIONS(2882), + [anon_sym_sql] = ACTIONS(2882), + [sym_int_literal] = ACTIONS(2882), + [sym_float_literal] = ACTIONS(2880), + [sym_rune_literal] = ACTIONS(2880), + [anon_sym_AT] = ACTIONS(2882), + [anon_sym_shared] = ACTIONS(2882), + [anon_sym_map_LBRACK] = ACTIONS(2880), + [anon_sym_chan] = ACTIONS(2882), + [anon_sym_thread] = ACTIONS(2882), + [anon_sym_atomic] = ACTIONS(2882), + [sym___double_quote] = ACTIONS(2880), + [sym___single_quote] = ACTIONS(2880), + [sym___c_double_quote] = ACTIONS(2880), + [sym___c_single_quote] = ACTIONS(2880), + [sym___r_double_quote] = ACTIONS(2880), + [sym___r_single_quote] = ACTIONS(2880), }, [1312] = { - [sym_identifier] = ACTIONS(2919), + [sym_identifier] = ACTIONS(2886), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_as] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2917), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_PIPE] = ACTIONS(2919), - [anon_sym_fn] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_SLASH] = ACTIONS(2919), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_GT] = ACTIONS(2919), - [anon_sym_EQ_EQ] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_LT_EQ] = ACTIONS(2917), - [anon_sym_GT_EQ] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_RBRACK] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_mut] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2917), - [anon_sym_QMARK] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_go] = ACTIONS(2919), - [anon_sym_spawn] = ACTIONS(2919), - [anon_sym_json_DOTdecode] = ACTIONS(2917), - [anon_sym_LBRACK2] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2917), - [anon_sym_CARET] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_LT_DASH] = ACTIONS(2917), - [anon_sym_LT_LT] = ACTIONS(2917), - [anon_sym_GT_GT] = ACTIONS(2919), - [anon_sym_GT_GT_GT] = ACTIONS(2917), - [anon_sym_AMP_CARET] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_or] = ACTIONS(2919), - [sym_none] = ACTIONS(2919), - [sym_true] = ACTIONS(2919), - [sym_false] = ACTIONS(2919), - [sym_nil] = ACTIONS(2919), - [anon_sym_QMARK_DOT] = ACTIONS(2917), - [anon_sym_POUND_LBRACK] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2919), - [anon_sym_DOLLARif] = ACTIONS(2919), - [anon_sym_is] = ACTIONS(2919), - [anon_sym_BANGis] = ACTIONS(2917), - [anon_sym_in] = ACTIONS(2919), - [anon_sym_BANGin] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2919), - [anon_sym_select] = ACTIONS(2919), - [anon_sym_lock] = ACTIONS(2919), - [anon_sym_rlock] = ACTIONS(2919), - [anon_sym_unsafe] = ACTIONS(2919), - [anon_sym_sql] = ACTIONS(2919), - [sym_int_literal] = ACTIONS(2919), - [sym_float_literal] = ACTIONS(2917), - [sym_rune_literal] = ACTIONS(2917), - [anon_sym_AT] = ACTIONS(2919), - [anon_sym_shared] = ACTIONS(2919), - [anon_sym_map_LBRACK] = ACTIONS(2917), - [anon_sym_chan] = ACTIONS(2919), - [anon_sym_thread] = ACTIONS(2919), - [anon_sym_atomic] = ACTIONS(2919), - [sym___double_quote] = ACTIONS(2917), - [sym___single_quote] = ACTIONS(2917), - [sym___c_double_quote] = ACTIONS(2917), - [sym___c_single_quote] = ACTIONS(2917), - [sym___r_double_quote] = ACTIONS(2917), - [sym___r_single_quote] = ACTIONS(2917), + [anon_sym_DOT] = ACTIONS(2886), + [anon_sym_as] = ACTIONS(2886), + [anon_sym_LBRACE] = ACTIONS(2884), + [anon_sym_COMMA] = ACTIONS(2884), + [anon_sym_LPAREN] = ACTIONS(2884), + [anon_sym_PIPE] = ACTIONS(2886), + [anon_sym_fn] = ACTIONS(2886), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(2884), + [anon_sym_SLASH] = ACTIONS(2886), + [anon_sym_PERCENT] = ACTIONS(2884), + [anon_sym_LT] = ACTIONS(2886), + [anon_sym_GT] = ACTIONS(2886), + [anon_sym_EQ_EQ] = ACTIONS(2884), + [anon_sym_BANG_EQ] = ACTIONS(2884), + [anon_sym_LT_EQ] = ACTIONS(2884), + [anon_sym_GT_EQ] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_RBRACK] = ACTIONS(2884), + [anon_sym_struct] = ACTIONS(2886), + [anon_sym_mut] = ACTIONS(2886), + [anon_sym_PLUS_PLUS] = ACTIONS(2884), + [anon_sym_DASH_DASH] = ACTIONS(2884), + [anon_sym_QMARK] = ACTIONS(2886), + [anon_sym_BANG] = ACTIONS(2886), + [anon_sym_go] = ACTIONS(2886), + [anon_sym_spawn] = ACTIONS(2886), + [anon_sym_json_DOTdecode] = ACTIONS(2884), + [anon_sym_LBRACK2] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2884), + [anon_sym_CARET] = ACTIONS(2884), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_LT_DASH] = ACTIONS(2884), + [anon_sym_LT_LT] = ACTIONS(2884), + [anon_sym_GT_GT] = ACTIONS(2886), + [anon_sym_GT_GT_GT] = ACTIONS(2884), + [anon_sym_AMP_CARET] = ACTIONS(2884), + [anon_sym_AMP_AMP] = ACTIONS(2884), + [anon_sym_PIPE_PIPE] = ACTIONS(2884), + [anon_sym_or] = ACTIONS(2886), + [sym_none] = ACTIONS(2886), + [sym_true] = ACTIONS(2886), + [sym_false] = ACTIONS(2886), + [sym_nil] = ACTIONS(2886), + [anon_sym_QMARK_DOT] = ACTIONS(2884), + [anon_sym_POUND_LBRACK] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_DOLLARif] = ACTIONS(2886), + [anon_sym_is] = ACTIONS(2886), + [anon_sym_BANGis] = ACTIONS(2884), + [anon_sym_in] = ACTIONS(2886), + [anon_sym_BANGin] = ACTIONS(2884), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_select] = ACTIONS(2886), + [anon_sym_lock] = ACTIONS(2886), + [anon_sym_rlock] = ACTIONS(2886), + [anon_sym_unsafe] = ACTIONS(2886), + [anon_sym_sql] = ACTIONS(2886), + [sym_int_literal] = ACTIONS(2886), + [sym_float_literal] = ACTIONS(2884), + [sym_rune_literal] = ACTIONS(2884), + [anon_sym_AT] = ACTIONS(2886), + [anon_sym_shared] = ACTIONS(2886), + [anon_sym_map_LBRACK] = ACTIONS(2884), + [anon_sym_chan] = ACTIONS(2886), + [anon_sym_thread] = ACTIONS(2886), + [anon_sym_atomic] = ACTIONS(2886), + [sym___double_quote] = ACTIONS(2884), + [sym___single_quote] = ACTIONS(2884), + [sym___c_double_quote] = ACTIONS(2884), + [sym___c_single_quote] = ACTIONS(2884), + [sym___r_double_quote] = ACTIONS(2884), + [sym___r_single_quote] = ACTIONS(2884), }, [1313] = { - [sym_identifier] = ACTIONS(2935), + [sym_identifier] = ACTIONS(2894), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2935), - [anon_sym_as] = ACTIONS(2935), - [anon_sym_LBRACE] = ACTIONS(2933), - [anon_sym_COMMA] = ACTIONS(2933), - [anon_sym_LPAREN] = ACTIONS(2933), - [anon_sym_PIPE] = ACTIONS(2935), - [anon_sym_fn] = ACTIONS(2935), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_STAR] = ACTIONS(2933), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2933), - [anon_sym_LT] = ACTIONS(2935), - [anon_sym_GT] = ACTIONS(2935), - [anon_sym_EQ_EQ] = ACTIONS(2933), - [anon_sym_BANG_EQ] = ACTIONS(2933), - [anon_sym_LT_EQ] = ACTIONS(2933), - [anon_sym_GT_EQ] = ACTIONS(2933), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_RBRACK] = ACTIONS(2933), - [anon_sym_struct] = ACTIONS(2935), - [anon_sym_mut] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2933), - [anon_sym_DASH_DASH] = ACTIONS(2933), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2935), - [anon_sym_json_DOTdecode] = ACTIONS(2933), - [anon_sym_LBRACK2] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2933), - [anon_sym_CARET] = ACTIONS(2933), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LT_DASH] = ACTIONS(2933), - [anon_sym_LT_LT] = ACTIONS(2933), - [anon_sym_GT_GT] = ACTIONS(2935), - [anon_sym_GT_GT_GT] = ACTIONS(2933), - [anon_sym_AMP_CARET] = ACTIONS(2933), - [anon_sym_AMP_AMP] = ACTIONS(2933), - [anon_sym_PIPE_PIPE] = ACTIONS(2933), - [anon_sym_or] = ACTIONS(2935), - [sym_none] = ACTIONS(2935), - [sym_true] = ACTIONS(2935), - [sym_false] = ACTIONS(2935), - [sym_nil] = ACTIONS(2935), - [anon_sym_QMARK_DOT] = ACTIONS(2933), - [anon_sym_POUND_LBRACK] = ACTIONS(2933), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_DOLLARif] = ACTIONS(2935), - [anon_sym_is] = ACTIONS(2935), - [anon_sym_BANGis] = ACTIONS(2933), - [anon_sym_in] = ACTIONS(2935), - [anon_sym_BANGin] = ACTIONS(2933), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2935), - [anon_sym_rlock] = ACTIONS(2935), - [anon_sym_unsafe] = ACTIONS(2935), - [anon_sym_sql] = ACTIONS(2935), - [sym_int_literal] = ACTIONS(2935), - [sym_float_literal] = ACTIONS(2933), - [sym_rune_literal] = ACTIONS(2933), - [anon_sym_AT] = ACTIONS(2935), - [anon_sym_shared] = ACTIONS(2935), - [anon_sym_map_LBRACK] = ACTIONS(2933), - [anon_sym_chan] = ACTIONS(2935), - [anon_sym_thread] = ACTIONS(2935), - [anon_sym_atomic] = ACTIONS(2935), - [sym___double_quote] = ACTIONS(2933), - [sym___single_quote] = ACTIONS(2933), - [sym___c_double_quote] = ACTIONS(2933), - [sym___c_single_quote] = ACTIONS(2933), - [sym___r_double_quote] = ACTIONS(2933), - [sym___r_single_quote] = ACTIONS(2933), + [anon_sym_DOT] = ACTIONS(2894), + [anon_sym_as] = ACTIONS(2894), + [anon_sym_LBRACE] = ACTIONS(2892), + [anon_sym_COMMA] = ACTIONS(2892), + [anon_sym_LPAREN] = ACTIONS(2892), + [anon_sym_PIPE] = ACTIONS(2894), + [anon_sym_fn] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2892), + [anon_sym_SLASH] = ACTIONS(2894), + [anon_sym_PERCENT] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(2894), + [anon_sym_GT] = ACTIONS(2894), + [anon_sym_EQ_EQ] = ACTIONS(2892), + [anon_sym_BANG_EQ] = ACTIONS(2892), + [anon_sym_LT_EQ] = ACTIONS(2892), + [anon_sym_GT_EQ] = ACTIONS(2892), + [anon_sym_LBRACK] = ACTIONS(2892), + [anon_sym_RBRACK] = ACTIONS(2892), + [anon_sym_struct] = ACTIONS(2894), + [anon_sym_mut] = ACTIONS(2894), + [anon_sym_PLUS_PLUS] = ACTIONS(2892), + [anon_sym_DASH_DASH] = ACTIONS(2892), + [anon_sym_QMARK] = ACTIONS(2894), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_go] = ACTIONS(2894), + [anon_sym_spawn] = ACTIONS(2894), + [anon_sym_json_DOTdecode] = ACTIONS(2892), + [anon_sym_LBRACK2] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2892), + [anon_sym_CARET] = ACTIONS(2892), + [anon_sym_AMP] = ACTIONS(2894), + [anon_sym_LT_DASH] = ACTIONS(2892), + [anon_sym_LT_LT] = ACTIONS(2892), + [anon_sym_GT_GT] = ACTIONS(2894), + [anon_sym_GT_GT_GT] = ACTIONS(2892), + [anon_sym_AMP_CARET] = ACTIONS(2892), + [anon_sym_AMP_AMP] = ACTIONS(2892), + [anon_sym_PIPE_PIPE] = ACTIONS(2892), + [anon_sym_or] = ACTIONS(2894), + [sym_none] = ACTIONS(2894), + [sym_true] = ACTIONS(2894), + [sym_false] = ACTIONS(2894), + [sym_nil] = ACTIONS(2894), + [anon_sym_QMARK_DOT] = ACTIONS(2892), + [anon_sym_POUND_LBRACK] = ACTIONS(2892), + [anon_sym_if] = ACTIONS(2894), + [anon_sym_DOLLARif] = ACTIONS(2894), + [anon_sym_is] = ACTIONS(2894), + [anon_sym_BANGis] = ACTIONS(2892), + [anon_sym_in] = ACTIONS(2894), + [anon_sym_BANGin] = ACTIONS(2892), + [anon_sym_match] = ACTIONS(2894), + [anon_sym_select] = ACTIONS(2894), + [anon_sym_lock] = ACTIONS(2894), + [anon_sym_rlock] = ACTIONS(2894), + [anon_sym_unsafe] = ACTIONS(2894), + [anon_sym_sql] = ACTIONS(2894), + [sym_int_literal] = ACTIONS(2894), + [sym_float_literal] = ACTIONS(2892), + [sym_rune_literal] = ACTIONS(2892), + [anon_sym_AT] = ACTIONS(2894), + [anon_sym_shared] = ACTIONS(2894), + [anon_sym_map_LBRACK] = ACTIONS(2892), + [anon_sym_chan] = ACTIONS(2894), + [anon_sym_thread] = ACTIONS(2894), + [anon_sym_atomic] = ACTIONS(2894), + [sym___double_quote] = ACTIONS(2892), + [sym___single_quote] = ACTIONS(2892), + [sym___c_double_quote] = ACTIONS(2892), + [sym___c_single_quote] = ACTIONS(2892), + [sym___r_double_quote] = ACTIONS(2892), + [sym___r_single_quote] = ACTIONS(2892), }, [1314] = { - [sym_identifier] = ACTIONS(2939), + [sym_identifier] = ACTIONS(2910), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2939), - [anon_sym_as] = ACTIONS(2939), - [anon_sym_LBRACE] = ACTIONS(2937), - [anon_sym_COMMA] = ACTIONS(2937), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_PIPE] = ACTIONS(2939), - [anon_sym_fn] = ACTIONS(2939), - [anon_sym_PLUS] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2939), - [anon_sym_STAR] = ACTIONS(2937), - [anon_sym_SLASH] = ACTIONS(2939), - [anon_sym_PERCENT] = ACTIONS(2937), - [anon_sym_LT] = ACTIONS(2939), - [anon_sym_GT] = ACTIONS(2939), - [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(2937), - [anon_sym_RBRACK] = ACTIONS(2937), - [anon_sym_struct] = ACTIONS(2939), - [anon_sym_mut] = ACTIONS(2939), - [anon_sym_PLUS_PLUS] = ACTIONS(2937), - [anon_sym_DASH_DASH] = ACTIONS(2937), - [anon_sym_QMARK] = ACTIONS(2939), - [anon_sym_BANG] = ACTIONS(2939), - [anon_sym_go] = ACTIONS(2939), - [anon_sym_spawn] = ACTIONS(2939), - [anon_sym_json_DOTdecode] = ACTIONS(2937), - [anon_sym_LBRACK2] = ACTIONS(2939), - [anon_sym_TILDE] = ACTIONS(2937), - [anon_sym_CARET] = ACTIONS(2937), - [anon_sym_AMP] = ACTIONS(2939), - [anon_sym_LT_DASH] = ACTIONS(2937), - [anon_sym_LT_LT] = ACTIONS(2937), - [anon_sym_GT_GT] = ACTIONS(2939), - [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(2939), - [sym_none] = ACTIONS(2939), - [sym_true] = ACTIONS(2939), - [sym_false] = ACTIONS(2939), - [sym_nil] = ACTIONS(2939), - [anon_sym_QMARK_DOT] = ACTIONS(2937), - [anon_sym_POUND_LBRACK] = ACTIONS(2937), - [anon_sym_if] = ACTIONS(2939), - [anon_sym_DOLLARif] = ACTIONS(2939), - [anon_sym_is] = ACTIONS(2939), - [anon_sym_BANGis] = ACTIONS(2937), - [anon_sym_in] = ACTIONS(2939), - [anon_sym_BANGin] = ACTIONS(2937), - [anon_sym_match] = ACTIONS(2939), - [anon_sym_select] = ACTIONS(2939), - [anon_sym_lock] = ACTIONS(2939), - [anon_sym_rlock] = ACTIONS(2939), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2939), - [sym_int_literal] = ACTIONS(2939), - [sym_float_literal] = ACTIONS(2937), - [sym_rune_literal] = ACTIONS(2937), - [anon_sym_AT] = ACTIONS(2939), - [anon_sym_shared] = ACTIONS(2939), - [anon_sym_map_LBRACK] = ACTIONS(2937), - [anon_sym_chan] = ACTIONS(2939), - [anon_sym_thread] = ACTIONS(2939), - [anon_sym_atomic] = ACTIONS(2939), - [sym___double_quote] = ACTIONS(2937), - [sym___single_quote] = ACTIONS(2937), - [sym___c_double_quote] = ACTIONS(2937), - [sym___c_single_quote] = ACTIONS(2937), - [sym___r_double_quote] = ACTIONS(2937), - [sym___r_single_quote] = ACTIONS(2937), + [anon_sym_DOT] = ACTIONS(2910), + [anon_sym_as] = ACTIONS(2910), + [anon_sym_LBRACE] = ACTIONS(2908), + [anon_sym_COMMA] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2908), + [anon_sym_PIPE] = ACTIONS(2910), + [anon_sym_fn] = ACTIONS(2910), + [anon_sym_PLUS] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2908), + [anon_sym_SLASH] = ACTIONS(2910), + [anon_sym_PERCENT] = ACTIONS(2908), + [anon_sym_LT] = ACTIONS(2910), + [anon_sym_GT] = ACTIONS(2910), + [anon_sym_EQ_EQ] = ACTIONS(2908), + [anon_sym_BANG_EQ] = ACTIONS(2908), + [anon_sym_LT_EQ] = ACTIONS(2908), + [anon_sym_GT_EQ] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_RBRACK] = ACTIONS(2908), + [anon_sym_struct] = ACTIONS(2910), + [anon_sym_mut] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2908), + [anon_sym_DASH_DASH] = ACTIONS(2908), + [anon_sym_QMARK] = ACTIONS(2910), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_go] = ACTIONS(2910), + [anon_sym_spawn] = ACTIONS(2910), + [anon_sym_json_DOTdecode] = ACTIONS(2908), + [anon_sym_LBRACK2] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2908), + [anon_sym_CARET] = ACTIONS(2908), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_LT_DASH] = ACTIONS(2908), + [anon_sym_LT_LT] = ACTIONS(2908), + [anon_sym_GT_GT] = ACTIONS(2910), + [anon_sym_GT_GT_GT] = ACTIONS(2908), + [anon_sym_AMP_CARET] = ACTIONS(2908), + [anon_sym_AMP_AMP] = ACTIONS(2908), + [anon_sym_PIPE_PIPE] = ACTIONS(2908), + [anon_sym_or] = ACTIONS(2910), + [sym_none] = ACTIONS(2910), + [sym_true] = ACTIONS(2910), + [sym_false] = ACTIONS(2910), + [sym_nil] = ACTIONS(2910), + [anon_sym_QMARK_DOT] = ACTIONS(2908), + [anon_sym_POUND_LBRACK] = ACTIONS(2908), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_DOLLARif] = ACTIONS(2910), + [anon_sym_is] = ACTIONS(2910), + [anon_sym_BANGis] = ACTIONS(2908), + [anon_sym_in] = ACTIONS(2910), + [anon_sym_BANGin] = ACTIONS(2908), + [anon_sym_match] = ACTIONS(2910), + [anon_sym_select] = ACTIONS(2910), + [anon_sym_lock] = ACTIONS(2910), + [anon_sym_rlock] = ACTIONS(2910), + [anon_sym_unsafe] = ACTIONS(2910), + [anon_sym_sql] = ACTIONS(2910), + [sym_int_literal] = ACTIONS(2910), + [sym_float_literal] = ACTIONS(2908), + [sym_rune_literal] = ACTIONS(2908), + [anon_sym_AT] = ACTIONS(2910), + [anon_sym_shared] = ACTIONS(2910), + [anon_sym_map_LBRACK] = ACTIONS(2908), + [anon_sym_chan] = ACTIONS(2910), + [anon_sym_thread] = ACTIONS(2910), + [anon_sym_atomic] = ACTIONS(2910), + [sym___double_quote] = ACTIONS(2908), + [sym___single_quote] = ACTIONS(2908), + [sym___c_double_quote] = ACTIONS(2908), + [sym___c_single_quote] = ACTIONS(2908), + [sym___r_double_quote] = ACTIONS(2908), + [sym___r_single_quote] = ACTIONS(2908), }, [1315] = { - [sym_identifier] = ACTIONS(2993), + [sym_identifier] = ACTIONS(2914), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2993), - [anon_sym_as] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2991), - [anon_sym_COMMA] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2991), - [anon_sym_PIPE] = ACTIONS(2993), - [anon_sym_fn] = ACTIONS(2993), - [anon_sym_PLUS] = ACTIONS(2993), - [anon_sym_DASH] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_SLASH] = ACTIONS(2993), - [anon_sym_PERCENT] = ACTIONS(2991), - [anon_sym_LT] = ACTIONS(2993), - [anon_sym_GT] = ACTIONS(2993), - [anon_sym_EQ_EQ] = ACTIONS(2991), - [anon_sym_BANG_EQ] = ACTIONS(2991), - [anon_sym_LT_EQ] = ACTIONS(2991), - [anon_sym_GT_EQ] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(2991), - [anon_sym_struct] = ACTIONS(2993), - [anon_sym_mut] = ACTIONS(2993), - [anon_sym_PLUS_PLUS] = ACTIONS(2991), - [anon_sym_DASH_DASH] = ACTIONS(2991), - [anon_sym_QMARK] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2993), - [anon_sym_go] = ACTIONS(2993), - [anon_sym_spawn] = ACTIONS(2993), - [anon_sym_json_DOTdecode] = ACTIONS(2991), - [anon_sym_LBRACK2] = ACTIONS(2993), - [anon_sym_TILDE] = ACTIONS(2991), - [anon_sym_CARET] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_LT_DASH] = ACTIONS(2991), - [anon_sym_LT_LT] = ACTIONS(2991), - [anon_sym_GT_GT] = ACTIONS(2993), - [anon_sym_GT_GT_GT] = ACTIONS(2991), - [anon_sym_AMP_CARET] = ACTIONS(2991), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_PIPE_PIPE] = ACTIONS(2991), - [anon_sym_or] = ACTIONS(2993), - [sym_none] = ACTIONS(2993), - [sym_true] = ACTIONS(2993), - [sym_false] = ACTIONS(2993), - [sym_nil] = ACTIONS(2993), - [anon_sym_QMARK_DOT] = ACTIONS(2991), - [anon_sym_POUND_LBRACK] = ACTIONS(2991), - [anon_sym_if] = ACTIONS(2993), - [anon_sym_DOLLARif] = ACTIONS(2993), - [anon_sym_is] = ACTIONS(2993), - [anon_sym_BANGis] = ACTIONS(2991), - [anon_sym_in] = ACTIONS(2993), - [anon_sym_BANGin] = ACTIONS(2991), - [anon_sym_match] = ACTIONS(2993), - [anon_sym_select] = ACTIONS(2993), - [anon_sym_lock] = ACTIONS(2993), - [anon_sym_rlock] = ACTIONS(2993), - [anon_sym_unsafe] = ACTIONS(2993), - [anon_sym_sql] = ACTIONS(2993), - [sym_int_literal] = ACTIONS(2993), - [sym_float_literal] = ACTIONS(2991), - [sym_rune_literal] = ACTIONS(2991), - [anon_sym_AT] = ACTIONS(2993), - [anon_sym_shared] = ACTIONS(2993), - [anon_sym_map_LBRACK] = ACTIONS(2991), - [anon_sym_chan] = ACTIONS(2993), - [anon_sym_thread] = ACTIONS(2993), - [anon_sym_atomic] = ACTIONS(2993), - [sym___double_quote] = ACTIONS(2991), - [sym___single_quote] = ACTIONS(2991), - [sym___c_double_quote] = ACTIONS(2991), - [sym___c_single_quote] = ACTIONS(2991), - [sym___r_double_quote] = ACTIONS(2991), - [sym___r_single_quote] = ACTIONS(2991), + [anon_sym_DOT] = ACTIONS(2914), + [anon_sym_as] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2912), + [anon_sym_COMMA] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(2912), + [anon_sym_PIPE] = ACTIONS(2914), + [anon_sym_fn] = ACTIONS(2914), + [anon_sym_PLUS] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2912), + [anon_sym_SLASH] = ACTIONS(2914), + [anon_sym_PERCENT] = ACTIONS(2912), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_GT] = ACTIONS(2914), + [anon_sym_EQ_EQ] = ACTIONS(2912), + [anon_sym_BANG_EQ] = ACTIONS(2912), + [anon_sym_LT_EQ] = ACTIONS(2912), + [anon_sym_GT_EQ] = ACTIONS(2912), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_RBRACK] = ACTIONS(2912), + [anon_sym_struct] = ACTIONS(2914), + [anon_sym_mut] = ACTIONS(2914), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_QMARK] = ACTIONS(2914), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_go] = ACTIONS(2914), + [anon_sym_spawn] = ACTIONS(2914), + [anon_sym_json_DOTdecode] = ACTIONS(2912), + [anon_sym_LBRACK2] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2912), + [anon_sym_CARET] = ACTIONS(2912), + [anon_sym_AMP] = ACTIONS(2914), + [anon_sym_LT_DASH] = ACTIONS(2912), + [anon_sym_LT_LT] = ACTIONS(2912), + [anon_sym_GT_GT] = ACTIONS(2914), + [anon_sym_GT_GT_GT] = ACTIONS(2912), + [anon_sym_AMP_CARET] = ACTIONS(2912), + [anon_sym_AMP_AMP] = ACTIONS(2912), + [anon_sym_PIPE_PIPE] = ACTIONS(2912), + [anon_sym_or] = ACTIONS(2914), + [sym_none] = ACTIONS(2914), + [sym_true] = ACTIONS(2914), + [sym_false] = ACTIONS(2914), + [sym_nil] = ACTIONS(2914), + [anon_sym_QMARK_DOT] = ACTIONS(2912), + [anon_sym_POUND_LBRACK] = ACTIONS(2912), + [anon_sym_if] = ACTIONS(2914), + [anon_sym_DOLLARif] = ACTIONS(2914), + [anon_sym_is] = ACTIONS(2914), + [anon_sym_BANGis] = ACTIONS(2912), + [anon_sym_in] = ACTIONS(2914), + [anon_sym_BANGin] = ACTIONS(2912), + [anon_sym_match] = ACTIONS(2914), + [anon_sym_select] = ACTIONS(2914), + [anon_sym_lock] = ACTIONS(2914), + [anon_sym_rlock] = ACTIONS(2914), + [anon_sym_unsafe] = ACTIONS(2914), + [anon_sym_sql] = ACTIONS(2914), + [sym_int_literal] = ACTIONS(2914), + [sym_float_literal] = ACTIONS(2912), + [sym_rune_literal] = ACTIONS(2912), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_shared] = ACTIONS(2914), + [anon_sym_map_LBRACK] = ACTIONS(2912), + [anon_sym_chan] = ACTIONS(2914), + [anon_sym_thread] = ACTIONS(2914), + [anon_sym_atomic] = ACTIONS(2914), + [sym___double_quote] = ACTIONS(2912), + [sym___single_quote] = ACTIONS(2912), + [sym___c_double_quote] = ACTIONS(2912), + [sym___c_single_quote] = ACTIONS(2912), + [sym___r_double_quote] = ACTIONS(2912), + [sym___r_single_quote] = ACTIONS(2912), }, [1316] = { - [sym_identifier] = ACTIONS(3009), + [sym_identifier] = ACTIONS(2926), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3009), - [anon_sym_as] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_COMMA] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_PIPE] = ACTIONS(3009), - [anon_sym_fn] = ACTIONS(3009), - [anon_sym_PLUS] = ACTIONS(3009), - [anon_sym_DASH] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_SLASH] = ACTIONS(3009), - [anon_sym_PERCENT] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3009), - [anon_sym_EQ_EQ] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_RBRACK] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3009), - [anon_sym_mut] = ACTIONS(3009), - [anon_sym_PLUS_PLUS] = ACTIONS(3007), - [anon_sym_DASH_DASH] = ACTIONS(3007), - [anon_sym_QMARK] = ACTIONS(3009), - [anon_sym_BANG] = ACTIONS(3009), - [anon_sym_go] = ACTIONS(3009), - [anon_sym_spawn] = ACTIONS(3009), - [anon_sym_json_DOTdecode] = ACTIONS(3007), - [anon_sym_LBRACK2] = ACTIONS(3009), - [anon_sym_TILDE] = ACTIONS(3007), - [anon_sym_CARET] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_LT_DASH] = ACTIONS(3007), - [anon_sym_LT_LT] = ACTIONS(3007), - [anon_sym_GT_GT] = ACTIONS(3009), - [anon_sym_GT_GT_GT] = ACTIONS(3007), - [anon_sym_AMP_CARET] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_or] = ACTIONS(3009), - [sym_none] = ACTIONS(3009), - [sym_true] = ACTIONS(3009), - [sym_false] = ACTIONS(3009), - [sym_nil] = ACTIONS(3009), - [anon_sym_QMARK_DOT] = ACTIONS(3007), - [anon_sym_POUND_LBRACK] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3009), - [anon_sym_DOLLARif] = ACTIONS(3009), - [anon_sym_is] = ACTIONS(3009), - [anon_sym_BANGis] = ACTIONS(3007), - [anon_sym_in] = ACTIONS(3009), - [anon_sym_BANGin] = ACTIONS(3007), - [anon_sym_match] = ACTIONS(3009), - [anon_sym_select] = ACTIONS(3009), - [anon_sym_lock] = ACTIONS(3009), - [anon_sym_rlock] = ACTIONS(3009), - [anon_sym_unsafe] = ACTIONS(3009), - [anon_sym_sql] = ACTIONS(3009), - [sym_int_literal] = ACTIONS(3009), - [sym_float_literal] = ACTIONS(3007), - [sym_rune_literal] = ACTIONS(3007), - [anon_sym_AT] = ACTIONS(3009), - [anon_sym_shared] = ACTIONS(3009), - [anon_sym_map_LBRACK] = ACTIONS(3007), - [anon_sym_chan] = ACTIONS(3009), - [anon_sym_thread] = ACTIONS(3009), - [anon_sym_atomic] = ACTIONS(3009), - [sym___double_quote] = ACTIONS(3007), - [sym___single_quote] = ACTIONS(3007), - [sym___c_double_quote] = ACTIONS(3007), - [sym___c_single_quote] = ACTIONS(3007), - [sym___r_double_quote] = ACTIONS(3007), - [sym___r_single_quote] = ACTIONS(3007), + [anon_sym_DOT] = ACTIONS(2926), + [anon_sym_as] = ACTIONS(2926), + [anon_sym_LBRACE] = ACTIONS(2924), + [anon_sym_COMMA] = ACTIONS(2924), + [anon_sym_LPAREN] = ACTIONS(2924), + [anon_sym_PIPE] = ACTIONS(2926), + [anon_sym_fn] = ACTIONS(2926), + [anon_sym_PLUS] = ACTIONS(2926), + [anon_sym_DASH] = ACTIONS(2926), + [anon_sym_STAR] = ACTIONS(2924), + [anon_sym_SLASH] = ACTIONS(2926), + [anon_sym_PERCENT] = ACTIONS(2924), + [anon_sym_LT] = ACTIONS(2926), + [anon_sym_GT] = ACTIONS(2926), + [anon_sym_EQ_EQ] = ACTIONS(2924), + [anon_sym_BANG_EQ] = ACTIONS(2924), + [anon_sym_LT_EQ] = ACTIONS(2924), + [anon_sym_GT_EQ] = ACTIONS(2924), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_RBRACK] = ACTIONS(2924), + [anon_sym_struct] = ACTIONS(2926), + [anon_sym_mut] = ACTIONS(2926), + [anon_sym_PLUS_PLUS] = ACTIONS(2924), + [anon_sym_DASH_DASH] = ACTIONS(2924), + [anon_sym_QMARK] = ACTIONS(2926), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_go] = ACTIONS(2926), + [anon_sym_spawn] = ACTIONS(2926), + [anon_sym_json_DOTdecode] = ACTIONS(2924), + [anon_sym_LBRACK2] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2924), + [anon_sym_CARET] = ACTIONS(2924), + [anon_sym_AMP] = ACTIONS(2926), + [anon_sym_LT_DASH] = ACTIONS(2924), + [anon_sym_LT_LT] = ACTIONS(2924), + [anon_sym_GT_GT] = ACTIONS(2926), + [anon_sym_GT_GT_GT] = ACTIONS(2924), + [anon_sym_AMP_CARET] = ACTIONS(2924), + [anon_sym_AMP_AMP] = ACTIONS(2924), + [anon_sym_PIPE_PIPE] = ACTIONS(2924), + [anon_sym_or] = ACTIONS(2926), + [sym_none] = ACTIONS(2926), + [sym_true] = ACTIONS(2926), + [sym_false] = ACTIONS(2926), + [sym_nil] = ACTIONS(2926), + [anon_sym_QMARK_DOT] = ACTIONS(2924), + [anon_sym_POUND_LBRACK] = ACTIONS(2924), + [anon_sym_if] = ACTIONS(2926), + [anon_sym_DOLLARif] = ACTIONS(2926), + [anon_sym_is] = ACTIONS(2926), + [anon_sym_BANGis] = ACTIONS(2924), + [anon_sym_in] = ACTIONS(2926), + [anon_sym_BANGin] = ACTIONS(2924), + [anon_sym_match] = ACTIONS(2926), + [anon_sym_select] = ACTIONS(2926), + [anon_sym_lock] = ACTIONS(2926), + [anon_sym_rlock] = ACTIONS(2926), + [anon_sym_unsafe] = ACTIONS(2926), + [anon_sym_sql] = ACTIONS(2926), + [sym_int_literal] = ACTIONS(2926), + [sym_float_literal] = ACTIONS(2924), + [sym_rune_literal] = ACTIONS(2924), + [anon_sym_AT] = ACTIONS(2926), + [anon_sym_shared] = ACTIONS(2926), + [anon_sym_map_LBRACK] = ACTIONS(2924), + [anon_sym_chan] = ACTIONS(2926), + [anon_sym_thread] = ACTIONS(2926), + [anon_sym_atomic] = ACTIONS(2926), + [sym___double_quote] = ACTIONS(2924), + [sym___single_quote] = ACTIONS(2924), + [sym___c_double_quote] = ACTIONS(2924), + [sym___c_single_quote] = ACTIONS(2924), + [sym___r_double_quote] = ACTIONS(2924), + [sym___r_single_quote] = ACTIONS(2924), }, [1317] = { - [sym_identifier] = ACTIONS(3173), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_as] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3171), - [anon_sym_COMMA] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_PIPE] = ACTIONS(3173), - [anon_sym_fn] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(3171), - [anon_sym_SLASH] = ACTIONS(3173), - [anon_sym_PERCENT] = ACTIONS(3171), - [anon_sym_LT] = ACTIONS(3173), - [anon_sym_GT] = ACTIONS(3173), - [anon_sym_EQ_EQ] = ACTIONS(3171), - [anon_sym_BANG_EQ] = ACTIONS(3171), - [anon_sym_LT_EQ] = ACTIONS(3171), - [anon_sym_GT_EQ] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_RBRACK] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3173), - [anon_sym_mut] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3171), - [anon_sym_DASH_DASH] = ACTIONS(3171), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_go] = ACTIONS(3173), - [anon_sym_spawn] = ACTIONS(3173), - [anon_sym_json_DOTdecode] = ACTIONS(3171), - [anon_sym_LBRACK2] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3171), - [anon_sym_CARET] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_LT_DASH] = ACTIONS(3171), - [anon_sym_LT_LT] = ACTIONS(3171), - [anon_sym_GT_GT] = ACTIONS(3173), - [anon_sym_GT_GT_GT] = ACTIONS(3171), - [anon_sym_AMP_CARET] = ACTIONS(3171), - [anon_sym_AMP_AMP] = ACTIONS(3171), - [anon_sym_PIPE_PIPE] = ACTIONS(3171), - [anon_sym_or] = ACTIONS(3173), - [sym_none] = ACTIONS(3173), - [sym_true] = ACTIONS(3173), - [sym_false] = ACTIONS(3173), - [sym_nil] = ACTIONS(3173), - [anon_sym_QMARK_DOT] = ACTIONS(3171), - [anon_sym_POUND_LBRACK] = ACTIONS(3171), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_DOLLARif] = ACTIONS(3173), - [anon_sym_is] = ACTIONS(3173), - [anon_sym_BANGis] = ACTIONS(3171), - [anon_sym_in] = ACTIONS(3173), - [anon_sym_BANGin] = ACTIONS(3171), - [anon_sym_match] = ACTIONS(3173), - [anon_sym_select] = ACTIONS(3173), - [anon_sym_lock] = ACTIONS(3173), - [anon_sym_rlock] = ACTIONS(3173), - [anon_sym_unsafe] = ACTIONS(3173), - [anon_sym_sql] = ACTIONS(3173), - [sym_int_literal] = ACTIONS(3173), - [sym_float_literal] = ACTIONS(3171), - [sym_rune_literal] = ACTIONS(3171), - [anon_sym_AT] = ACTIONS(3173), - [anon_sym_shared] = ACTIONS(3173), - [anon_sym_map_LBRACK] = ACTIONS(3171), - [anon_sym_chan] = ACTIONS(3173), - [anon_sym_thread] = ACTIONS(3173), - [anon_sym_atomic] = ACTIONS(3173), - [sym___double_quote] = ACTIONS(3171), - [sym___single_quote] = ACTIONS(3171), - [sym___c_double_quote] = ACTIONS(3171), - [sym___c_single_quote] = ACTIONS(3171), - [sym___r_double_quote] = ACTIONS(3171), - [sym___r_single_quote] = ACTIONS(3171), - }, - [1318] = { - [sym_identifier] = ACTIONS(3049), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3049), - [anon_sym_as] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_COMMA] = ACTIONS(3047), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym_PIPE] = ACTIONS(3049), - [anon_sym_fn] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3049), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_SLASH] = ACTIONS(3049), - [anon_sym_PERCENT] = ACTIONS(3047), - [anon_sym_LT] = ACTIONS(3049), - [anon_sym_GT] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_LT_EQ] = ACTIONS(3047), - [anon_sym_GT_EQ] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_RBRACK] = ACTIONS(3047), - [anon_sym_struct] = ACTIONS(3049), - [anon_sym_mut] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3047), - [anon_sym_DASH_DASH] = ACTIONS(3047), - [anon_sym_QMARK] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3049), - [anon_sym_go] = ACTIONS(3049), - [anon_sym_spawn] = ACTIONS(3049), - [anon_sym_json_DOTdecode] = ACTIONS(3047), - [anon_sym_LBRACK2] = ACTIONS(3049), - [anon_sym_TILDE] = ACTIONS(3047), - [anon_sym_CARET] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_LT_DASH] = ACTIONS(3047), - [anon_sym_LT_LT] = ACTIONS(3047), - [anon_sym_GT_GT] = ACTIONS(3049), - [anon_sym_GT_GT_GT] = ACTIONS(3047), - [anon_sym_AMP_CARET] = ACTIONS(3047), - [anon_sym_AMP_AMP] = ACTIONS(3047), - [anon_sym_PIPE_PIPE] = ACTIONS(3047), - [anon_sym_or] = ACTIONS(3049), - [sym_none] = ACTIONS(3049), - [sym_true] = ACTIONS(3049), - [sym_false] = ACTIONS(3049), - [sym_nil] = ACTIONS(3049), - [anon_sym_QMARK_DOT] = ACTIONS(3047), - [anon_sym_POUND_LBRACK] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3049), - [anon_sym_DOLLARif] = ACTIONS(3049), - [anon_sym_is] = ACTIONS(3049), - [anon_sym_BANGis] = ACTIONS(3047), - [anon_sym_in] = ACTIONS(3049), - [anon_sym_BANGin] = ACTIONS(3047), - [anon_sym_match] = ACTIONS(3049), - [anon_sym_select] = ACTIONS(3049), - [anon_sym_lock] = ACTIONS(3049), - [anon_sym_rlock] = ACTIONS(3049), - [anon_sym_unsafe] = ACTIONS(3049), - [anon_sym_sql] = ACTIONS(3049), - [sym_int_literal] = ACTIONS(3049), - [sym_float_literal] = ACTIONS(3047), - [sym_rune_literal] = ACTIONS(3047), - [anon_sym_AT] = ACTIONS(3049), - [anon_sym_shared] = ACTIONS(3049), - [anon_sym_map_LBRACK] = ACTIONS(3047), - [anon_sym_chan] = ACTIONS(3049), - [anon_sym_thread] = ACTIONS(3049), - [anon_sym_atomic] = ACTIONS(3049), - [sym___double_quote] = ACTIONS(3047), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3047), - [sym___c_single_quote] = ACTIONS(3047), - [sym___r_double_quote] = ACTIONS(3047), - [sym___r_single_quote] = ACTIONS(3047), - }, - [1319] = { - [sym_identifier] = ACTIONS(3017), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_as] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3015), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3015), - [anon_sym_PIPE] = ACTIONS(3017), - [anon_sym_fn] = ACTIONS(3017), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3015), - [anon_sym_SLASH] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3015), - [anon_sym_BANG_EQ] = ACTIONS(3015), - [anon_sym_LT_EQ] = ACTIONS(3015), - [anon_sym_GT_EQ] = ACTIONS(3015), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_RBRACK] = ACTIONS(3015), - [anon_sym_struct] = ACTIONS(3017), - [anon_sym_mut] = ACTIONS(3017), - [anon_sym_PLUS_PLUS] = ACTIONS(3015), - [anon_sym_DASH_DASH] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3017), - [anon_sym_go] = ACTIONS(3017), - [anon_sym_spawn] = ACTIONS(3017), - [anon_sym_json_DOTdecode] = ACTIONS(3015), - [anon_sym_LBRACK2] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_LT_DASH] = ACTIONS(3015), - [anon_sym_LT_LT] = ACTIONS(3015), - [anon_sym_GT_GT] = ACTIONS(3017), - [anon_sym_GT_GT_GT] = ACTIONS(3015), - [anon_sym_AMP_CARET] = ACTIONS(3015), - [anon_sym_AMP_AMP] = ACTIONS(3015), - [anon_sym_PIPE_PIPE] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3017), - [sym_none] = ACTIONS(3017), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_nil] = ACTIONS(3017), - [anon_sym_QMARK_DOT] = ACTIONS(3015), - [anon_sym_POUND_LBRACK] = ACTIONS(3015), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_DOLLARif] = ACTIONS(3017), - [anon_sym_is] = ACTIONS(3017), - [anon_sym_BANGis] = ACTIONS(3015), - [anon_sym_in] = ACTIONS(3017), - [anon_sym_BANGin] = ACTIONS(3015), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_select] = ACTIONS(3017), - [anon_sym_lock] = ACTIONS(3017), - [anon_sym_rlock] = ACTIONS(3017), - [anon_sym_unsafe] = ACTIONS(3017), - [anon_sym_sql] = ACTIONS(3017), - [sym_int_literal] = ACTIONS(3017), - [sym_float_literal] = ACTIONS(3015), - [sym_rune_literal] = ACTIONS(3015), - [anon_sym_AT] = ACTIONS(3017), - [anon_sym_shared] = ACTIONS(3017), - [anon_sym_map_LBRACK] = ACTIONS(3015), - [anon_sym_chan] = ACTIONS(3017), - [anon_sym_thread] = ACTIONS(3017), - [anon_sym_atomic] = ACTIONS(3017), - [sym___double_quote] = ACTIONS(3015), - [sym___single_quote] = ACTIONS(3015), - [sym___c_double_quote] = ACTIONS(3015), - [sym___c_single_quote] = ACTIONS(3015), - [sym___r_double_quote] = ACTIONS(3015), - [sym___r_single_quote] = ACTIONS(3015), - }, - [1320] = { - [sym_identifier] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3081), - [anon_sym_as] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3079), - [anon_sym_COMMA] = ACTIONS(3079), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(3079), - [anon_sym_SLASH] = ACTIONS(3081), - [anon_sym_PERCENT] = ACTIONS(3079), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_GT] = ACTIONS(3081), - [anon_sym_EQ_EQ] = ACTIONS(3079), - [anon_sym_BANG_EQ] = ACTIONS(3079), - [anon_sym_LT_EQ] = ACTIONS(3079), - [anon_sym_GT_EQ] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_RBRACK] = ACTIONS(3079), - [anon_sym_struct] = ACTIONS(3081), - [anon_sym_mut] = ACTIONS(3081), - [anon_sym_PLUS_PLUS] = ACTIONS(3079), - [anon_sym_DASH_DASH] = ACTIONS(3079), - [anon_sym_QMARK] = ACTIONS(3081), - [anon_sym_BANG] = ACTIONS(3081), - [anon_sym_go] = ACTIONS(3081), - [anon_sym_spawn] = ACTIONS(3081), - [anon_sym_json_DOTdecode] = ACTIONS(3079), - [anon_sym_LBRACK2] = ACTIONS(3081), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_CARET] = ACTIONS(3079), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_LT_DASH] = ACTIONS(3079), - [anon_sym_LT_LT] = ACTIONS(3079), - [anon_sym_GT_GT] = ACTIONS(3081), - [anon_sym_GT_GT_GT] = ACTIONS(3079), - [anon_sym_AMP_CARET] = ACTIONS(3079), - [anon_sym_AMP_AMP] = ACTIONS(3079), - [anon_sym_PIPE_PIPE] = ACTIONS(3079), - [anon_sym_or] = ACTIONS(3081), - [sym_none] = ACTIONS(3081), - [sym_true] = ACTIONS(3081), - [sym_false] = ACTIONS(3081), - [sym_nil] = ACTIONS(3081), - [anon_sym_QMARK_DOT] = ACTIONS(3079), - [anon_sym_POUND_LBRACK] = ACTIONS(3079), - [anon_sym_if] = ACTIONS(3081), - [anon_sym_DOLLARif] = ACTIONS(3081), - [anon_sym_is] = ACTIONS(3081), - [anon_sym_BANGis] = ACTIONS(3079), - [anon_sym_in] = ACTIONS(3081), - [anon_sym_BANGin] = ACTIONS(3079), - [anon_sym_match] = ACTIONS(3081), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3081), - [anon_sym_rlock] = ACTIONS(3081), - [anon_sym_unsafe] = ACTIONS(3081), - [anon_sym_sql] = ACTIONS(3081), - [sym_int_literal] = ACTIONS(3081), - [sym_float_literal] = ACTIONS(3079), - [sym_rune_literal] = ACTIONS(3079), - [anon_sym_AT] = ACTIONS(3081), - [anon_sym_shared] = ACTIONS(3081), - [anon_sym_map_LBRACK] = ACTIONS(3079), - [anon_sym_chan] = ACTIONS(3081), - [anon_sym_thread] = ACTIONS(3081), - [anon_sym_atomic] = ACTIONS(3081), - [sym___double_quote] = ACTIONS(3079), - [sym___single_quote] = ACTIONS(3079), - [sym___c_double_quote] = ACTIONS(3079), - [sym___c_single_quote] = ACTIONS(3079), - [sym___r_double_quote] = ACTIONS(3079), - [sym___r_single_quote] = ACTIONS(3079), - }, - [1321] = { - [sym_identifier] = ACTIONS(3121), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3121), - [anon_sym_as] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3119), - [anon_sym_PIPE] = ACTIONS(3121), - [anon_sym_fn] = ACTIONS(3121), - [anon_sym_PLUS] = ACTIONS(3121), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(3119), - [anon_sym_SLASH] = ACTIONS(3121), - [anon_sym_PERCENT] = ACTIONS(3119), - [anon_sym_LT] = ACTIONS(3121), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_EQ_EQ] = ACTIONS(3119), - [anon_sym_BANG_EQ] = ACTIONS(3119), - [anon_sym_LT_EQ] = ACTIONS(3119), - [anon_sym_GT_EQ] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3119), - [anon_sym_RBRACK] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_mut] = ACTIONS(3121), - [anon_sym_PLUS_PLUS] = ACTIONS(3119), - [anon_sym_DASH_DASH] = ACTIONS(3119), - [anon_sym_QMARK] = ACTIONS(3121), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_go] = ACTIONS(3121), - [anon_sym_spawn] = ACTIONS(3121), - [anon_sym_json_DOTdecode] = ACTIONS(3119), - [anon_sym_LBRACK2] = ACTIONS(3121), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_CARET] = ACTIONS(3119), - [anon_sym_AMP] = ACTIONS(3121), - [anon_sym_LT_DASH] = ACTIONS(3119), - [anon_sym_LT_LT] = ACTIONS(3119), - [anon_sym_GT_GT] = ACTIONS(3121), - [anon_sym_GT_GT_GT] = ACTIONS(3119), - [anon_sym_AMP_CARET] = ACTIONS(3119), - [anon_sym_AMP_AMP] = ACTIONS(3119), - [anon_sym_PIPE_PIPE] = ACTIONS(3119), - [anon_sym_or] = ACTIONS(3121), - [sym_none] = ACTIONS(3121), - [sym_true] = ACTIONS(3121), - [sym_false] = ACTIONS(3121), - [sym_nil] = ACTIONS(3121), - [anon_sym_QMARK_DOT] = ACTIONS(3119), - [anon_sym_POUND_LBRACK] = ACTIONS(3119), - [anon_sym_if] = ACTIONS(3121), - [anon_sym_DOLLARif] = ACTIONS(3121), - [anon_sym_is] = ACTIONS(3121), - [anon_sym_BANGis] = ACTIONS(3119), - [anon_sym_in] = ACTIONS(3121), - [anon_sym_BANGin] = ACTIONS(3119), - [anon_sym_match] = ACTIONS(3121), - [anon_sym_select] = ACTIONS(3121), - [anon_sym_lock] = ACTIONS(3121), - [anon_sym_rlock] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(3121), - [anon_sym_sql] = ACTIONS(3121), - [sym_int_literal] = ACTIONS(3121), - [sym_float_literal] = ACTIONS(3119), - [sym_rune_literal] = ACTIONS(3119), - [anon_sym_AT] = ACTIONS(3121), - [anon_sym_shared] = ACTIONS(3121), - [anon_sym_map_LBRACK] = ACTIONS(3119), - [anon_sym_chan] = ACTIONS(3121), - [anon_sym_thread] = ACTIONS(3121), - [anon_sym_atomic] = ACTIONS(3121), - [sym___double_quote] = ACTIONS(3119), - [sym___single_quote] = ACTIONS(3119), - [sym___c_double_quote] = ACTIONS(3119), - [sym___c_single_quote] = ACTIONS(3119), - [sym___r_double_quote] = ACTIONS(3119), - [sym___r_single_quote] = ACTIONS(3119), - }, - [1322] = { - [sym_identifier] = ACTIONS(3113), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3113), - [anon_sym_as] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3111), - [anon_sym_PIPE] = ACTIONS(3113), - [anon_sym_fn] = ACTIONS(3113), - [anon_sym_PLUS] = ACTIONS(3113), - [anon_sym_DASH] = ACTIONS(3113), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_SLASH] = ACTIONS(3113), - [anon_sym_PERCENT] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3113), - [anon_sym_EQ_EQ] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_RBRACK] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3113), - [anon_sym_mut] = ACTIONS(3113), - [anon_sym_PLUS_PLUS] = ACTIONS(3111), - [anon_sym_DASH_DASH] = ACTIONS(3111), - [anon_sym_QMARK] = ACTIONS(3113), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(3113), - [anon_sym_spawn] = ACTIONS(3113), - [anon_sym_json_DOTdecode] = ACTIONS(3111), - [anon_sym_LBRACK2] = ACTIONS(3113), - [anon_sym_TILDE] = ACTIONS(3111), - [anon_sym_CARET] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT_DASH] = ACTIONS(3111), - [anon_sym_LT_LT] = ACTIONS(3111), - [anon_sym_GT_GT] = ACTIONS(3113), - [anon_sym_GT_GT_GT] = ACTIONS(3111), - [anon_sym_AMP_CARET] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_or] = ACTIONS(3113), - [sym_none] = ACTIONS(3113), - [sym_true] = ACTIONS(3113), - [sym_false] = ACTIONS(3113), - [sym_nil] = ACTIONS(3113), - [anon_sym_QMARK_DOT] = ACTIONS(3111), - [anon_sym_POUND_LBRACK] = ACTIONS(3111), - [anon_sym_if] = ACTIONS(3113), - [anon_sym_DOLLARif] = ACTIONS(3113), - [anon_sym_is] = ACTIONS(3113), - [anon_sym_BANGis] = ACTIONS(3111), - [anon_sym_in] = ACTIONS(3113), - [anon_sym_BANGin] = ACTIONS(3111), - [anon_sym_match] = ACTIONS(3113), - [anon_sym_select] = ACTIONS(3113), - [anon_sym_lock] = ACTIONS(3113), - [anon_sym_rlock] = ACTIONS(3113), - [anon_sym_unsafe] = ACTIONS(3113), - [anon_sym_sql] = ACTIONS(3113), - [sym_int_literal] = ACTIONS(3113), - [sym_float_literal] = ACTIONS(3111), - [sym_rune_literal] = ACTIONS(3111), - [anon_sym_AT] = ACTIONS(3113), - [anon_sym_shared] = ACTIONS(3113), - [anon_sym_map_LBRACK] = ACTIONS(3111), - [anon_sym_chan] = ACTIONS(3113), - [anon_sym_thread] = ACTIONS(3113), - [anon_sym_atomic] = ACTIONS(3113), - [sym___double_quote] = ACTIONS(3111), - [sym___single_quote] = ACTIONS(3111), - [sym___c_double_quote] = ACTIONS(3111), - [sym___c_single_quote] = ACTIONS(3111), - [sym___r_double_quote] = ACTIONS(3111), - [sym___r_single_quote] = ACTIONS(3111), - }, - [1323] = { - [sym_identifier] = ACTIONS(3057), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3057), - [anon_sym_as] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3055), - [anon_sym_COMMA] = ACTIONS(3055), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym_PIPE] = ACTIONS(3057), - [anon_sym_fn] = ACTIONS(3057), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3055), - [anon_sym_SLASH] = ACTIONS(3057), - [anon_sym_PERCENT] = ACTIONS(3055), - [anon_sym_LT] = ACTIONS(3057), - [anon_sym_GT] = ACTIONS(3057), - [anon_sym_EQ_EQ] = ACTIONS(3055), - [anon_sym_BANG_EQ] = ACTIONS(3055), - [anon_sym_LT_EQ] = ACTIONS(3055), - [anon_sym_GT_EQ] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_RBRACK] = ACTIONS(3055), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_mut] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3055), - [anon_sym_DASH_DASH] = ACTIONS(3055), - [anon_sym_QMARK] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(3057), - [anon_sym_go] = ACTIONS(3057), - [anon_sym_spawn] = ACTIONS(3057), - [anon_sym_json_DOTdecode] = ACTIONS(3055), - [anon_sym_LBRACK2] = ACTIONS(3057), - [anon_sym_TILDE] = ACTIONS(3055), - [anon_sym_CARET] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_LT_DASH] = ACTIONS(3055), - [anon_sym_LT_LT] = ACTIONS(3055), - [anon_sym_GT_GT] = ACTIONS(3057), - [anon_sym_GT_GT_GT] = ACTIONS(3055), - [anon_sym_AMP_CARET] = ACTIONS(3055), - [anon_sym_AMP_AMP] = ACTIONS(3055), - [anon_sym_PIPE_PIPE] = ACTIONS(3055), - [anon_sym_or] = ACTIONS(3057), - [sym_none] = ACTIONS(3057), - [sym_true] = ACTIONS(3057), - [sym_false] = ACTIONS(3057), - [sym_nil] = ACTIONS(3057), - [anon_sym_QMARK_DOT] = ACTIONS(3055), - [anon_sym_POUND_LBRACK] = ACTIONS(3055), - [anon_sym_if] = ACTIONS(3057), - [anon_sym_DOLLARif] = ACTIONS(3057), - [anon_sym_is] = ACTIONS(3057), - [anon_sym_BANGis] = ACTIONS(3055), - [anon_sym_in] = ACTIONS(3057), - [anon_sym_BANGin] = ACTIONS(3055), - [anon_sym_match] = ACTIONS(3057), - [anon_sym_select] = ACTIONS(3057), - [anon_sym_lock] = ACTIONS(3057), - [anon_sym_rlock] = ACTIONS(3057), - [anon_sym_unsafe] = ACTIONS(3057), - [anon_sym_sql] = ACTIONS(3057), - [sym_int_literal] = ACTIONS(3057), - [sym_float_literal] = ACTIONS(3055), - [sym_rune_literal] = ACTIONS(3055), - [anon_sym_AT] = ACTIONS(3057), - [anon_sym_shared] = ACTIONS(3057), - [anon_sym_map_LBRACK] = ACTIONS(3055), - [anon_sym_chan] = ACTIONS(3057), - [anon_sym_thread] = ACTIONS(3057), - [anon_sym_atomic] = ACTIONS(3057), - [sym___double_quote] = ACTIONS(3055), - [sym___single_quote] = ACTIONS(3055), - [sym___c_double_quote] = ACTIONS(3055), - [sym___c_single_quote] = ACTIONS(3055), - [sym___r_double_quote] = ACTIONS(3055), - [sym___r_single_quote] = ACTIONS(3055), - }, - [1324] = { - [sym_identifier] = ACTIONS(3061), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3061), - [anon_sym_as] = ACTIONS(3061), - [anon_sym_LBRACE] = ACTIONS(3059), - [anon_sym_COMMA] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_fn] = ACTIONS(3061), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_SLASH] = ACTIONS(3061), - [anon_sym_PERCENT] = ACTIONS(3059), - [anon_sym_LT] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_EQ_EQ] = ACTIONS(3059), - [anon_sym_BANG_EQ] = ACTIONS(3059), - [anon_sym_LT_EQ] = ACTIONS(3059), - [anon_sym_GT_EQ] = ACTIONS(3059), - [anon_sym_LBRACK] = ACTIONS(3059), - [anon_sym_RBRACK] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(3061), - [anon_sym_mut] = ACTIONS(3061), - [anon_sym_PLUS_PLUS] = ACTIONS(3059), - [anon_sym_DASH_DASH] = ACTIONS(3059), - [anon_sym_QMARK] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3061), - [anon_sym_spawn] = ACTIONS(3061), - [anon_sym_json_DOTdecode] = ACTIONS(3059), - [anon_sym_LBRACK2] = ACTIONS(3061), - [anon_sym_TILDE] = ACTIONS(3059), - [anon_sym_CARET] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_LT_DASH] = ACTIONS(3059), - [anon_sym_LT_LT] = ACTIONS(3059), - [anon_sym_GT_GT] = ACTIONS(3061), - [anon_sym_GT_GT_GT] = ACTIONS(3059), - [anon_sym_AMP_CARET] = ACTIONS(3059), - [anon_sym_AMP_AMP] = ACTIONS(3059), - [anon_sym_PIPE_PIPE] = ACTIONS(3059), - [anon_sym_or] = ACTIONS(3061), - [sym_none] = ACTIONS(3061), - [sym_true] = ACTIONS(3061), - [sym_false] = ACTIONS(3061), - [sym_nil] = ACTIONS(3061), - [anon_sym_QMARK_DOT] = ACTIONS(3059), - [anon_sym_POUND_LBRACK] = ACTIONS(3059), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_DOLLARif] = ACTIONS(3061), - [anon_sym_is] = ACTIONS(3061), - [anon_sym_BANGis] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(3061), - [anon_sym_BANGin] = ACTIONS(3059), - [anon_sym_match] = ACTIONS(3061), - [anon_sym_select] = ACTIONS(3061), - [anon_sym_lock] = ACTIONS(3061), - [anon_sym_rlock] = ACTIONS(3061), - [anon_sym_unsafe] = ACTIONS(3061), - [anon_sym_sql] = ACTIONS(3061), - [sym_int_literal] = ACTIONS(3061), - [sym_float_literal] = ACTIONS(3059), - [sym_rune_literal] = ACTIONS(3059), - [anon_sym_AT] = ACTIONS(3061), - [anon_sym_shared] = ACTIONS(3061), - [anon_sym_map_LBRACK] = ACTIONS(3059), - [anon_sym_chan] = ACTIONS(3061), - [anon_sym_thread] = ACTIONS(3061), - [anon_sym_atomic] = ACTIONS(3061), - [sym___double_quote] = ACTIONS(3059), - [sym___single_quote] = ACTIONS(3059), - [sym___c_double_quote] = ACTIONS(3059), - [sym___c_single_quote] = ACTIONS(3059), - [sym___r_double_quote] = ACTIONS(3059), - [sym___r_single_quote] = ACTIONS(3059), - }, - [1325] = { - [sym_identifier] = ACTIONS(3197), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3197), - [anon_sym_as] = ACTIONS(3197), - [anon_sym_LBRACE] = ACTIONS(3195), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3195), - [anon_sym_PIPE] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3195), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_PERCENT] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3195), - [anon_sym_RBRACK] = ACTIONS(3195), - [anon_sym_struct] = ACTIONS(3197), - [anon_sym_mut] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_DASH_DASH] = ACTIONS(3195), - [anon_sym_QMARK] = ACTIONS(3197), - [anon_sym_BANG] = ACTIONS(3197), - [anon_sym_go] = ACTIONS(3197), - [anon_sym_spawn] = ACTIONS(3197), - [anon_sym_json_DOTdecode] = ACTIONS(3195), - [anon_sym_LBRACK2] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3195), - [anon_sym_CARET] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_LT_DASH] = ACTIONS(3195), - [anon_sym_LT_LT] = ACTIONS(3195), - [anon_sym_GT_GT] = ACTIONS(3197), - [anon_sym_GT_GT_GT] = ACTIONS(3195), - [anon_sym_AMP_CARET] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3197), - [sym_none] = ACTIONS(3197), - [sym_true] = ACTIONS(3197), - [sym_false] = ACTIONS(3197), - [sym_nil] = ACTIONS(3197), - [anon_sym_QMARK_DOT] = ACTIONS(3195), - [anon_sym_POUND_LBRACK] = ACTIONS(3195), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_DOLLARif] = ACTIONS(3197), - [anon_sym_is] = ACTIONS(3197), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_match] = ACTIONS(3197), - [anon_sym_select] = ACTIONS(3197), - [anon_sym_lock] = ACTIONS(3197), - [anon_sym_rlock] = ACTIONS(3197), - [anon_sym_unsafe] = ACTIONS(3197), - [anon_sym_sql] = ACTIONS(3197), - [sym_int_literal] = ACTIONS(3197), - [sym_float_literal] = ACTIONS(3195), - [sym_rune_literal] = ACTIONS(3195), - [anon_sym_AT] = ACTIONS(3197), - [anon_sym_shared] = ACTIONS(3197), - [anon_sym_map_LBRACK] = ACTIONS(3195), - [anon_sym_chan] = ACTIONS(3197), - [anon_sym_thread] = ACTIONS(3197), - [anon_sym_atomic] = ACTIONS(3197), - [sym___double_quote] = ACTIONS(3195), - [sym___single_quote] = ACTIONS(3195), - [sym___c_double_quote] = ACTIONS(3195), - [sym___c_single_quote] = ACTIONS(3195), - [sym___r_double_quote] = ACTIONS(3195), - [sym___r_single_quote] = ACTIONS(3195), - }, - [1326] = { - [sym_identifier] = ACTIONS(3157), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3157), - [anon_sym_as] = ACTIONS(3157), - [anon_sym_LBRACE] = ACTIONS(3155), - [anon_sym_COMMA] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_PIPE] = ACTIONS(3157), - [anon_sym_fn] = ACTIONS(3157), - [anon_sym_PLUS] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(3157), - [anon_sym_STAR] = ACTIONS(3155), - [anon_sym_SLASH] = ACTIONS(3157), - [anon_sym_PERCENT] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(3157), - [anon_sym_GT] = ACTIONS(3157), - [anon_sym_EQ_EQ] = ACTIONS(3155), - [anon_sym_BANG_EQ] = ACTIONS(3155), - [anon_sym_LT_EQ] = ACTIONS(3155), - [anon_sym_GT_EQ] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_RBRACK] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3157), - [anon_sym_mut] = ACTIONS(3157), - [anon_sym_PLUS_PLUS] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3155), - [anon_sym_QMARK] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3157), - [anon_sym_go] = ACTIONS(3157), - [anon_sym_spawn] = ACTIONS(3157), - [anon_sym_json_DOTdecode] = ACTIONS(3155), - [anon_sym_LBRACK2] = ACTIONS(3157), - [anon_sym_TILDE] = ACTIONS(3155), - [anon_sym_CARET] = ACTIONS(3155), - [anon_sym_AMP] = ACTIONS(3157), - [anon_sym_LT_DASH] = ACTIONS(3155), - [anon_sym_LT_LT] = ACTIONS(3155), - [anon_sym_GT_GT] = ACTIONS(3157), - [anon_sym_GT_GT_GT] = ACTIONS(3155), - [anon_sym_AMP_CARET] = ACTIONS(3155), - [anon_sym_AMP_AMP] = ACTIONS(3155), - [anon_sym_PIPE_PIPE] = ACTIONS(3155), - [anon_sym_or] = ACTIONS(3157), - [sym_none] = ACTIONS(3157), - [sym_true] = ACTIONS(3157), - [sym_false] = ACTIONS(3157), - [sym_nil] = ACTIONS(3157), - [anon_sym_QMARK_DOT] = ACTIONS(3155), - [anon_sym_POUND_LBRACK] = ACTIONS(3155), - [anon_sym_if] = ACTIONS(3157), - [anon_sym_DOLLARif] = ACTIONS(3157), - [anon_sym_is] = ACTIONS(3157), - [anon_sym_BANGis] = ACTIONS(3155), - [anon_sym_in] = ACTIONS(3157), - [anon_sym_BANGin] = ACTIONS(3155), - [anon_sym_match] = ACTIONS(3157), - [anon_sym_select] = ACTIONS(3157), - [anon_sym_lock] = ACTIONS(3157), - [anon_sym_rlock] = ACTIONS(3157), - [anon_sym_unsafe] = ACTIONS(3157), - [anon_sym_sql] = ACTIONS(3157), - [sym_int_literal] = ACTIONS(3157), - [sym_float_literal] = ACTIONS(3155), - [sym_rune_literal] = ACTIONS(3155), - [anon_sym_AT] = ACTIONS(3157), - [anon_sym_shared] = ACTIONS(3157), - [anon_sym_map_LBRACK] = ACTIONS(3155), - [anon_sym_chan] = ACTIONS(3157), - [anon_sym_thread] = ACTIONS(3157), - [anon_sym_atomic] = ACTIONS(3157), - [sym___double_quote] = ACTIONS(3155), - [sym___single_quote] = ACTIONS(3155), - [sym___c_double_quote] = ACTIONS(3155), - [sym___c_single_quote] = ACTIONS(3155), - [sym___r_double_quote] = ACTIONS(3155), - [sym___r_single_quote] = ACTIONS(3155), - }, - [1327] = { - [sym_identifier] = ACTIONS(3109), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3109), - [anon_sym_as] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3107), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_fn] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3107), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_PERCENT] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_EQ_EQ] = ACTIONS(3107), - [anon_sym_BANG_EQ] = ACTIONS(3107), - [anon_sym_LT_EQ] = ACTIONS(3107), - [anon_sym_GT_EQ] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_RBRACK] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3109), - [anon_sym_mut] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_go] = ACTIONS(3109), - [anon_sym_spawn] = ACTIONS(3109), - [anon_sym_json_DOTdecode] = ACTIONS(3107), - [anon_sym_LBRACK2] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT_DASH] = ACTIONS(3107), - [anon_sym_LT_LT] = ACTIONS(3107), - [anon_sym_GT_GT] = ACTIONS(3109), - [anon_sym_GT_GT_GT] = ACTIONS(3107), - [anon_sym_AMP_CARET] = ACTIONS(3107), - [anon_sym_AMP_AMP] = ACTIONS(3107), - [anon_sym_PIPE_PIPE] = ACTIONS(3107), - [anon_sym_or] = ACTIONS(3109), - [sym_none] = ACTIONS(3109), - [sym_true] = ACTIONS(3109), - [sym_false] = ACTIONS(3109), - [sym_nil] = ACTIONS(3109), - [anon_sym_QMARK_DOT] = ACTIONS(3107), - [anon_sym_POUND_LBRACK] = ACTIONS(3107), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_DOLLARif] = ACTIONS(3109), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3107), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_BANGin] = ACTIONS(3107), - [anon_sym_match] = ACTIONS(3109), - [anon_sym_select] = ACTIONS(3109), - [anon_sym_lock] = ACTIONS(3109), - [anon_sym_rlock] = ACTIONS(3109), - [anon_sym_unsafe] = ACTIONS(3109), - [anon_sym_sql] = ACTIONS(3109), - [sym_int_literal] = ACTIONS(3109), - [sym_float_literal] = ACTIONS(3107), - [sym_rune_literal] = ACTIONS(3107), - [anon_sym_AT] = ACTIONS(3109), - [anon_sym_shared] = ACTIONS(3109), - [anon_sym_map_LBRACK] = ACTIONS(3107), - [anon_sym_chan] = ACTIONS(3109), - [anon_sym_thread] = ACTIONS(3109), - [anon_sym_atomic] = ACTIONS(3109), - [sym___double_quote] = ACTIONS(3107), - [sym___single_quote] = ACTIONS(3107), - [sym___c_double_quote] = ACTIONS(3107), - [sym___c_single_quote] = ACTIONS(3107), - [sym___r_double_quote] = ACTIONS(3107), - [sym___r_single_quote] = ACTIONS(3107), - }, - [1328] = { - [sym_identifier] = ACTIONS(3133), + [sym_identifier] = ACTIONS(2958), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3133), - [anon_sym_as] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_PIPE] = ACTIONS(3133), - [anon_sym_fn] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3131), - [anon_sym_SLASH] = ACTIONS(3133), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_GT] = ACTIONS(3133), - [anon_sym_EQ_EQ] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3131), - [anon_sym_LT_EQ] = ACTIONS(3131), - [anon_sym_GT_EQ] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_RBRACK] = ACTIONS(3131), - [anon_sym_struct] = ACTIONS(3133), - [anon_sym_mut] = ACTIONS(3133), - [anon_sym_PLUS_PLUS] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_go] = ACTIONS(3133), - [anon_sym_spawn] = ACTIONS(3133), - [anon_sym_json_DOTdecode] = ACTIONS(3131), - [anon_sym_LBRACK2] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_CARET] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_LT_LT] = ACTIONS(3131), - [anon_sym_GT_GT] = ACTIONS(3133), - [anon_sym_GT_GT_GT] = ACTIONS(3131), - [anon_sym_AMP_CARET] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_or] = ACTIONS(3133), - [sym_none] = ACTIONS(3133), - [sym_true] = ACTIONS(3133), - [sym_false] = ACTIONS(3133), - [sym_nil] = ACTIONS(3133), - [anon_sym_QMARK_DOT] = ACTIONS(3131), - [anon_sym_POUND_LBRACK] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_DOLLARif] = ACTIONS(3133), - [anon_sym_is] = ACTIONS(3133), - [anon_sym_BANGis] = ACTIONS(3131), - [anon_sym_in] = ACTIONS(3133), - [anon_sym_BANGin] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3133), - [anon_sym_select] = ACTIONS(3133), - [anon_sym_lock] = ACTIONS(3133), - [anon_sym_rlock] = ACTIONS(3133), - [anon_sym_unsafe] = ACTIONS(3133), - [anon_sym_sql] = ACTIONS(3133), - [sym_int_literal] = ACTIONS(3133), - [sym_float_literal] = ACTIONS(3131), - [sym_rune_literal] = ACTIONS(3131), - [anon_sym_AT] = ACTIONS(3133), - [anon_sym_shared] = ACTIONS(3133), - [anon_sym_map_LBRACK] = ACTIONS(3131), - [anon_sym_chan] = ACTIONS(3133), - [anon_sym_thread] = ACTIONS(3133), - [anon_sym_atomic] = ACTIONS(3133), - [sym___double_quote] = ACTIONS(3131), - [sym___single_quote] = ACTIONS(3131), - [sym___c_double_quote] = ACTIONS(3131), - [sym___c_single_quote] = ACTIONS(3131), - [sym___r_double_quote] = ACTIONS(3131), - [sym___r_single_quote] = ACTIONS(3131), - }, - [1329] = { - [sym_identifier] = ACTIONS(3137), + [anon_sym_DOT] = ACTIONS(2958), + [anon_sym_as] = ACTIONS(2958), + [anon_sym_LBRACE] = ACTIONS(2956), + [anon_sym_COMMA] = ACTIONS(2956), + [anon_sym_LPAREN] = ACTIONS(2956), + [anon_sym_PIPE] = ACTIONS(2958), + [anon_sym_fn] = ACTIONS(2958), + [anon_sym_PLUS] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2958), + [anon_sym_STAR] = ACTIONS(2956), + [anon_sym_SLASH] = ACTIONS(2958), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_LT] = ACTIONS(2958), + [anon_sym_GT] = ACTIONS(2958), + [anon_sym_EQ_EQ] = ACTIONS(2956), + [anon_sym_BANG_EQ] = ACTIONS(2956), + [anon_sym_LT_EQ] = ACTIONS(2956), + [anon_sym_GT_EQ] = ACTIONS(2956), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_RBRACK] = ACTIONS(2956), + [anon_sym_struct] = ACTIONS(2958), + [anon_sym_mut] = ACTIONS(2958), + [anon_sym_PLUS_PLUS] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2958), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_go] = ACTIONS(2958), + [anon_sym_spawn] = ACTIONS(2958), + [anon_sym_json_DOTdecode] = ACTIONS(2956), + [anon_sym_LBRACK2] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2956), + [anon_sym_CARET] = ACTIONS(2956), + [anon_sym_AMP] = ACTIONS(2958), + [anon_sym_LT_DASH] = ACTIONS(2956), + [anon_sym_LT_LT] = ACTIONS(2956), + [anon_sym_GT_GT] = ACTIONS(2958), + [anon_sym_GT_GT_GT] = ACTIONS(2956), + [anon_sym_AMP_CARET] = ACTIONS(2956), + [anon_sym_AMP_AMP] = ACTIONS(2956), + [anon_sym_PIPE_PIPE] = ACTIONS(2956), + [anon_sym_or] = ACTIONS(2958), + [sym_none] = ACTIONS(2958), + [sym_true] = ACTIONS(2958), + [sym_false] = ACTIONS(2958), + [sym_nil] = ACTIONS(2958), + [anon_sym_QMARK_DOT] = ACTIONS(2956), + [anon_sym_POUND_LBRACK] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2958), + [anon_sym_DOLLARif] = ACTIONS(2958), + [anon_sym_is] = ACTIONS(2958), + [anon_sym_BANGis] = ACTIONS(2956), + [anon_sym_in] = ACTIONS(2958), + [anon_sym_BANGin] = ACTIONS(2956), + [anon_sym_match] = ACTIONS(2958), + [anon_sym_select] = ACTIONS(2958), + [anon_sym_lock] = ACTIONS(2958), + [anon_sym_rlock] = ACTIONS(2958), + [anon_sym_unsafe] = ACTIONS(2958), + [anon_sym_sql] = ACTIONS(2958), + [sym_int_literal] = ACTIONS(2958), + [sym_float_literal] = ACTIONS(2956), + [sym_rune_literal] = ACTIONS(2956), + [anon_sym_AT] = ACTIONS(2958), + [anon_sym_shared] = ACTIONS(2958), + [anon_sym_map_LBRACK] = ACTIONS(2956), + [anon_sym_chan] = ACTIONS(2958), + [anon_sym_thread] = ACTIONS(2958), + [anon_sym_atomic] = ACTIONS(2958), + [sym___double_quote] = ACTIONS(2956), + [sym___single_quote] = ACTIONS(2956), + [sym___c_double_quote] = ACTIONS(2956), + [sym___c_single_quote] = ACTIONS(2956), + [sym___r_double_quote] = ACTIONS(2956), + [sym___r_single_quote] = ACTIONS(2956), + }, + [1318] = { + [sym_identifier] = ACTIONS(3002), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3137), - [anon_sym_as] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3135), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_fn] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_SLASH] = ACTIONS(3137), - [anon_sym_PERCENT] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(3137), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_EQ_EQ] = ACTIONS(3135), - [anon_sym_BANG_EQ] = ACTIONS(3135), - [anon_sym_LT_EQ] = ACTIONS(3135), - [anon_sym_GT_EQ] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_RBRACK] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3137), - [anon_sym_mut] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3135), - [anon_sym_DASH_DASH] = ACTIONS(3135), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_go] = ACTIONS(3137), - [anon_sym_spawn] = ACTIONS(3137), - [anon_sym_json_DOTdecode] = ACTIONS(3135), - [anon_sym_LBRACK2] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3135), - [anon_sym_CARET] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_LT_DASH] = ACTIONS(3135), - [anon_sym_LT_LT] = ACTIONS(3135), - [anon_sym_GT_GT] = ACTIONS(3137), - [anon_sym_GT_GT_GT] = ACTIONS(3135), - [anon_sym_AMP_CARET] = ACTIONS(3135), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_or] = ACTIONS(3137), - [sym_none] = ACTIONS(3137), - [sym_true] = ACTIONS(3137), - [sym_false] = ACTIONS(3137), - [sym_nil] = ACTIONS(3137), - [anon_sym_QMARK_DOT] = ACTIONS(3135), - [anon_sym_POUND_LBRACK] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_DOLLARif] = ACTIONS(3137), - [anon_sym_is] = ACTIONS(3137), - [anon_sym_BANGis] = ACTIONS(3135), - [anon_sym_in] = ACTIONS(3137), - [anon_sym_BANGin] = ACTIONS(3135), - [anon_sym_match] = ACTIONS(3137), - [anon_sym_select] = ACTIONS(3137), - [anon_sym_lock] = ACTIONS(3137), - [anon_sym_rlock] = ACTIONS(3137), - [anon_sym_unsafe] = ACTIONS(3137), - [anon_sym_sql] = ACTIONS(3137), - [sym_int_literal] = ACTIONS(3137), - [sym_float_literal] = ACTIONS(3135), - [sym_rune_literal] = ACTIONS(3135), - [anon_sym_AT] = ACTIONS(3137), - [anon_sym_shared] = ACTIONS(3137), - [anon_sym_map_LBRACK] = ACTIONS(3135), - [anon_sym_chan] = ACTIONS(3137), - [anon_sym_thread] = ACTIONS(3137), - [anon_sym_atomic] = ACTIONS(3137), - [sym___double_quote] = ACTIONS(3135), - [sym___single_quote] = ACTIONS(3135), - [sym___c_double_quote] = ACTIONS(3135), - [sym___c_single_quote] = ACTIONS(3135), - [sym___r_double_quote] = ACTIONS(3135), - [sym___r_single_quote] = ACTIONS(3135), + [anon_sym_DOT] = ACTIONS(3002), + [anon_sym_as] = ACTIONS(3002), + [anon_sym_LBRACE] = ACTIONS(3000), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(3000), + [anon_sym_PIPE] = ACTIONS(3002), + [anon_sym_fn] = ACTIONS(3002), + [anon_sym_PLUS] = ACTIONS(3002), + [anon_sym_DASH] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(3000), + [anon_sym_SLASH] = ACTIONS(3002), + [anon_sym_PERCENT] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3002), + [anon_sym_GT] = ACTIONS(3002), + [anon_sym_EQ_EQ] = ACTIONS(3000), + [anon_sym_BANG_EQ] = ACTIONS(3000), + [anon_sym_LT_EQ] = ACTIONS(3000), + [anon_sym_GT_EQ] = ACTIONS(3000), + [anon_sym_LBRACK] = ACTIONS(3000), + [anon_sym_RBRACK] = ACTIONS(3000), + [anon_sym_struct] = ACTIONS(3002), + [anon_sym_mut] = ACTIONS(3002), + [anon_sym_PLUS_PLUS] = ACTIONS(3000), + [anon_sym_DASH_DASH] = ACTIONS(3000), + [anon_sym_QMARK] = ACTIONS(3002), + [anon_sym_BANG] = ACTIONS(3002), + [anon_sym_go] = ACTIONS(3002), + [anon_sym_spawn] = ACTIONS(3002), + [anon_sym_json_DOTdecode] = ACTIONS(3000), + [anon_sym_LBRACK2] = ACTIONS(3002), + [anon_sym_TILDE] = ACTIONS(3000), + [anon_sym_CARET] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(3002), + [anon_sym_LT_DASH] = ACTIONS(3000), + [anon_sym_LT_LT] = ACTIONS(3000), + [anon_sym_GT_GT] = ACTIONS(3002), + [anon_sym_GT_GT_GT] = ACTIONS(3000), + [anon_sym_AMP_CARET] = ACTIONS(3000), + [anon_sym_AMP_AMP] = ACTIONS(3000), + [anon_sym_PIPE_PIPE] = ACTIONS(3000), + [anon_sym_or] = ACTIONS(3002), + [sym_none] = ACTIONS(3002), + [sym_true] = ACTIONS(3002), + [sym_false] = ACTIONS(3002), + [sym_nil] = ACTIONS(3002), + [anon_sym_QMARK_DOT] = ACTIONS(3000), + [anon_sym_POUND_LBRACK] = ACTIONS(3000), + [anon_sym_if] = ACTIONS(3002), + [anon_sym_DOLLARif] = ACTIONS(3002), + [anon_sym_is] = ACTIONS(3002), + [anon_sym_BANGis] = ACTIONS(3000), + [anon_sym_in] = ACTIONS(3002), + [anon_sym_BANGin] = ACTIONS(3000), + [anon_sym_match] = ACTIONS(3002), + [anon_sym_select] = ACTIONS(3002), + [anon_sym_lock] = ACTIONS(3002), + [anon_sym_rlock] = ACTIONS(3002), + [anon_sym_unsafe] = ACTIONS(3002), + [anon_sym_sql] = ACTIONS(3002), + [sym_int_literal] = ACTIONS(3002), + [sym_float_literal] = ACTIONS(3000), + [sym_rune_literal] = ACTIONS(3000), + [anon_sym_AT] = ACTIONS(3002), + [anon_sym_shared] = ACTIONS(3002), + [anon_sym_map_LBRACK] = ACTIONS(3000), + [anon_sym_chan] = ACTIONS(3002), + [anon_sym_thread] = ACTIONS(3002), + [anon_sym_atomic] = ACTIONS(3002), + [sym___double_quote] = ACTIONS(3000), + [sym___single_quote] = ACTIONS(3000), + [sym___c_double_quote] = ACTIONS(3000), + [sym___c_single_quote] = ACTIONS(3000), + [sym___r_double_quote] = ACTIONS(3000), + [sym___r_single_quote] = ACTIONS(3000), }, - [1330] = { - [sym_identifier] = ACTIONS(3165), + [1319] = { + [sym_identifier] = ACTIONS(2846), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_as] = ACTIONS(3165), - [anon_sym_LBRACE] = ACTIONS(3163), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_PIPE] = ACTIONS(3165), - [anon_sym_fn] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_SLASH] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3165), - [anon_sym_GT] = ACTIONS(3165), - [anon_sym_EQ_EQ] = ACTIONS(3163), - [anon_sym_BANG_EQ] = ACTIONS(3163), - [anon_sym_LT_EQ] = ACTIONS(3163), - [anon_sym_GT_EQ] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_RBRACK] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3165), - [anon_sym_mut] = ACTIONS(3165), - [anon_sym_PLUS_PLUS] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3163), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_BANG] = ACTIONS(3165), - [anon_sym_go] = ACTIONS(3165), - [anon_sym_spawn] = ACTIONS(3165), - [anon_sym_json_DOTdecode] = ACTIONS(3163), - [anon_sym_LBRACK2] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3163), - [anon_sym_CARET] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3163), - [anon_sym_LT_LT] = ACTIONS(3163), - [anon_sym_GT_GT] = ACTIONS(3165), - [anon_sym_GT_GT_GT] = ACTIONS(3163), - [anon_sym_AMP_CARET] = ACTIONS(3163), - [anon_sym_AMP_AMP] = ACTIONS(3163), - [anon_sym_PIPE_PIPE] = ACTIONS(3163), - [anon_sym_or] = ACTIONS(3165), - [sym_none] = ACTIONS(3165), - [sym_true] = ACTIONS(3165), - [sym_false] = ACTIONS(3165), - [sym_nil] = ACTIONS(3165), - [anon_sym_QMARK_DOT] = ACTIONS(3163), - [anon_sym_POUND_LBRACK] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_DOLLARif] = ACTIONS(3165), - [anon_sym_is] = ACTIONS(3165), - [anon_sym_BANGis] = ACTIONS(3163), - [anon_sym_in] = ACTIONS(3165), - [anon_sym_BANGin] = ACTIONS(3163), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_select] = ACTIONS(3165), - [anon_sym_lock] = ACTIONS(3165), - [anon_sym_rlock] = ACTIONS(3165), - [anon_sym_unsafe] = ACTIONS(3165), - [anon_sym_sql] = ACTIONS(3165), - [sym_int_literal] = ACTIONS(3165), - [sym_float_literal] = ACTIONS(3163), - [sym_rune_literal] = ACTIONS(3163), - [anon_sym_AT] = ACTIONS(3165), - [anon_sym_shared] = ACTIONS(3165), - [anon_sym_map_LBRACK] = ACTIONS(3163), - [anon_sym_chan] = ACTIONS(3165), - [anon_sym_thread] = ACTIONS(3165), - [anon_sym_atomic] = ACTIONS(3165), - [sym___double_quote] = ACTIONS(3163), - [sym___single_quote] = ACTIONS(3163), - [sym___c_double_quote] = ACTIONS(3163), - [sym___c_single_quote] = ACTIONS(3163), - [sym___r_double_quote] = ACTIONS(3163), - [sym___r_single_quote] = ACTIONS(3163), + [anon_sym_DOT] = ACTIONS(2742), + [anon_sym_as] = ACTIONS(2846), + [anon_sym_LBRACE] = ACTIONS(2844), + [anon_sym_COMMA] = ACTIONS(2844), + [anon_sym_LPAREN] = ACTIONS(2844), + [anon_sym_PIPE] = ACTIONS(2846), + [anon_sym_fn] = ACTIONS(2846), + [anon_sym_PLUS] = ACTIONS(2846), + [anon_sym_DASH] = ACTIONS(2846), + [anon_sym_STAR] = ACTIONS(2844), + [anon_sym_SLASH] = ACTIONS(2846), + [anon_sym_PERCENT] = ACTIONS(2844), + [anon_sym_LT] = ACTIONS(2846), + [anon_sym_GT] = ACTIONS(2846), + [anon_sym_EQ_EQ] = ACTIONS(2844), + [anon_sym_BANG_EQ] = ACTIONS(2844), + [anon_sym_LT_EQ] = ACTIONS(2844), + [anon_sym_GT_EQ] = ACTIONS(2844), + [anon_sym_LBRACK] = ACTIONS(2844), + [anon_sym_RBRACK] = ACTIONS(2844), + [anon_sym_struct] = ACTIONS(2846), + [anon_sym_mut] = ACTIONS(2846), + [anon_sym_PLUS_PLUS] = ACTIONS(2844), + [anon_sym_DASH_DASH] = ACTIONS(2844), + [anon_sym_QMARK] = ACTIONS(2846), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_go] = ACTIONS(2846), + [anon_sym_spawn] = ACTIONS(2846), + [anon_sym_json_DOTdecode] = ACTIONS(2844), + [anon_sym_LBRACK2] = ACTIONS(2846), + [anon_sym_TILDE] = ACTIONS(2844), + [anon_sym_CARET] = ACTIONS(2844), + [anon_sym_AMP] = ACTIONS(2846), + [anon_sym_LT_DASH] = ACTIONS(2844), + [anon_sym_LT_LT] = ACTIONS(2844), + [anon_sym_GT_GT] = ACTIONS(2846), + [anon_sym_GT_GT_GT] = ACTIONS(2844), + [anon_sym_AMP_CARET] = ACTIONS(2844), + [anon_sym_AMP_AMP] = ACTIONS(2844), + [anon_sym_PIPE_PIPE] = ACTIONS(2844), + [anon_sym_or] = ACTIONS(2846), + [sym_none] = ACTIONS(2846), + [sym_true] = ACTIONS(2846), + [sym_false] = ACTIONS(2846), + [sym_nil] = ACTIONS(2846), + [anon_sym_QMARK_DOT] = ACTIONS(2844), + [anon_sym_POUND_LBRACK] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2846), + [anon_sym_DOLLARif] = ACTIONS(2846), + [anon_sym_is] = ACTIONS(2846), + [anon_sym_BANGis] = ACTIONS(2844), + [anon_sym_in] = ACTIONS(2846), + [anon_sym_BANGin] = ACTIONS(2844), + [anon_sym_match] = ACTIONS(2846), + [anon_sym_select] = ACTIONS(2846), + [anon_sym_lock] = ACTIONS(2846), + [anon_sym_rlock] = ACTIONS(2846), + [anon_sym_unsafe] = ACTIONS(2846), + [anon_sym_sql] = ACTIONS(2846), + [sym_int_literal] = ACTIONS(2846), + [sym_float_literal] = ACTIONS(2844), + [sym_rune_literal] = ACTIONS(2844), + [anon_sym_AT] = ACTIONS(2846), + [anon_sym_shared] = ACTIONS(2846), + [anon_sym_map_LBRACK] = ACTIONS(2844), + [anon_sym_chan] = ACTIONS(2846), + [anon_sym_thread] = ACTIONS(2846), + [anon_sym_atomic] = ACTIONS(2846), + [sym___double_quote] = ACTIONS(2844), + [sym___single_quote] = ACTIONS(2844), + [sym___c_double_quote] = ACTIONS(2844), + [sym___c_single_quote] = ACTIONS(2844), + [sym___r_double_quote] = ACTIONS(2844), + [sym___r_single_quote] = ACTIONS(2844), }, - [1331] = { - [sym_identifier] = ACTIONS(3097), + [1320] = { + [sym_identifier] = ACTIONS(3118), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3097), - [anon_sym_as] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_PIPE] = ACTIONS(3097), - [anon_sym_fn] = ACTIONS(3097), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3095), - [anon_sym_SLASH] = ACTIONS(3097), - [anon_sym_PERCENT] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_EQ_EQ] = ACTIONS(3095), - [anon_sym_BANG_EQ] = ACTIONS(3095), - [anon_sym_LT_EQ] = ACTIONS(3095), - [anon_sym_GT_EQ] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_RBRACK] = ACTIONS(3095), - [anon_sym_struct] = ACTIONS(3097), - [anon_sym_mut] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3095), - [anon_sym_DASH_DASH] = ACTIONS(3095), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_go] = ACTIONS(3097), - [anon_sym_spawn] = ACTIONS(3097), - [anon_sym_json_DOTdecode] = ACTIONS(3095), - [anon_sym_LBRACK2] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3095), - [anon_sym_CARET] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_LT_DASH] = ACTIONS(3095), - [anon_sym_LT_LT] = ACTIONS(3095), - [anon_sym_GT_GT] = ACTIONS(3097), - [anon_sym_GT_GT_GT] = ACTIONS(3095), - [anon_sym_AMP_CARET] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_PIPE_PIPE] = ACTIONS(3095), - [anon_sym_or] = ACTIONS(3097), - [sym_none] = ACTIONS(3097), - [sym_true] = ACTIONS(3097), - [sym_false] = ACTIONS(3097), - [sym_nil] = ACTIONS(3097), - [anon_sym_QMARK_DOT] = ACTIONS(3095), - [anon_sym_POUND_LBRACK] = ACTIONS(3095), - [anon_sym_if] = ACTIONS(3097), - [anon_sym_DOLLARif] = ACTIONS(3097), - [anon_sym_is] = ACTIONS(3097), - [anon_sym_BANGis] = ACTIONS(3095), - [anon_sym_in] = ACTIONS(3097), - [anon_sym_BANGin] = ACTIONS(3095), - [anon_sym_match] = ACTIONS(3097), - [anon_sym_select] = ACTIONS(3097), - [anon_sym_lock] = ACTIONS(3097), - [anon_sym_rlock] = ACTIONS(3097), - [anon_sym_unsafe] = ACTIONS(3097), - [anon_sym_sql] = ACTIONS(3097), - [sym_int_literal] = ACTIONS(3097), - [sym_float_literal] = ACTIONS(3095), - [sym_rune_literal] = ACTIONS(3095), - [anon_sym_AT] = ACTIONS(3097), - [anon_sym_shared] = ACTIONS(3097), - [anon_sym_map_LBRACK] = ACTIONS(3095), - [anon_sym_chan] = ACTIONS(3097), - [anon_sym_thread] = ACTIONS(3097), - [anon_sym_atomic] = ACTIONS(3097), - [sym___double_quote] = ACTIONS(3095), - [sym___single_quote] = ACTIONS(3095), - [sym___c_double_quote] = ACTIONS(3095), - [sym___c_single_quote] = ACTIONS(3095), - [sym___r_double_quote] = ACTIONS(3095), - [sym___r_single_quote] = ACTIONS(3095), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(3116), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3116), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_fn] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3116), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(3116), + [anon_sym_LT_EQ] = ACTIONS(3116), + [anon_sym_GT_EQ] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_RBRACK] = ACTIONS(3701), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_mut] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [anon_sym_QMARK] = ACTIONS(3118), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_go] = ACTIONS(3118), + [anon_sym_spawn] = ACTIONS(3118), + [anon_sym_json_DOTdecode] = ACTIONS(3116), + [anon_sym_LBRACK2] = ACTIONS(3118), + [anon_sym_TILDE] = ACTIONS(3116), + [anon_sym_CARET] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_LT_DASH] = ACTIONS(3116), + [anon_sym_LT_LT] = ACTIONS(3116), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym_GT_GT_GT] = ACTIONS(3116), + [anon_sym_AMP_CARET] = ACTIONS(3116), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_PIPE_PIPE] = ACTIONS(3116), + [anon_sym_or] = ACTIONS(3118), + [sym_none] = ACTIONS(3118), + [sym_true] = ACTIONS(3118), + [sym_false] = ACTIONS(3118), + [sym_nil] = ACTIONS(3118), + [anon_sym_QMARK_DOT] = ACTIONS(3116), + [anon_sym_POUND_LBRACK] = ACTIONS(3116), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_DOLLARif] = ACTIONS(3118), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3116), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_BANGin] = ACTIONS(3116), + [anon_sym_match] = ACTIONS(3118), + [anon_sym_select] = ACTIONS(3118), + [anon_sym_lock] = ACTIONS(3118), + [anon_sym_rlock] = ACTIONS(3118), + [anon_sym_unsafe] = ACTIONS(3118), + [anon_sym_sql] = ACTIONS(3118), + [sym_int_literal] = ACTIONS(3118), + [sym_float_literal] = ACTIONS(3116), + [sym_rune_literal] = ACTIONS(3116), + [anon_sym_AT] = ACTIONS(3118), + [anon_sym_shared] = ACTIONS(3118), + [anon_sym_map_LBRACK] = ACTIONS(3116), + [anon_sym_chan] = ACTIONS(3118), + [anon_sym_thread] = ACTIONS(3118), + [anon_sym_atomic] = ACTIONS(3118), + [sym___double_quote] = ACTIONS(3116), + [sym___single_quote] = ACTIONS(3116), + [sym___c_double_quote] = ACTIONS(3116), + [sym___c_single_quote] = ACTIONS(3116), + [sym___r_double_quote] = ACTIONS(3116), + [sym___r_single_quote] = ACTIONS(3116), }, - [1332] = { - [sym_identifier] = ACTIONS(2971), + [1321] = { + [sym_identifier] = ACTIONS(2822), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2973), - [anon_sym_as] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2969), - [anon_sym_COMMA] = ACTIONS(2969), - [anon_sym_LPAREN] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2973), - [anon_sym_fn] = ACTIONS(2971), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_SLASH] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2976), - [anon_sym_LT] = ACTIONS(2973), - [anon_sym_GT] = ACTIONS(2973), - [anon_sym_EQ_EQ] = ACTIONS(2976), - [anon_sym_BANG_EQ] = ACTIONS(2976), - [anon_sym_LT_EQ] = ACTIONS(2976), - [anon_sym_GT_EQ] = ACTIONS(2976), - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_RBRACK] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2971), - [anon_sym_mut] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2976), - [anon_sym_DASH_DASH] = ACTIONS(2976), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_BANG] = ACTIONS(2973), - [anon_sym_go] = ACTIONS(2971), - [anon_sym_spawn] = ACTIONS(2971), - [anon_sym_json_DOTdecode] = ACTIONS(2969), - [anon_sym_LBRACK2] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2969), - [anon_sym_CARET] = ACTIONS(2976), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2969), - [anon_sym_LT_LT] = ACTIONS(2976), - [anon_sym_GT_GT] = ACTIONS(2973), - [anon_sym_GT_GT_GT] = ACTIONS(2976), - [anon_sym_AMP_CARET] = ACTIONS(2976), - [anon_sym_AMP_AMP] = ACTIONS(2976), - [anon_sym_PIPE_PIPE] = ACTIONS(2976), - [anon_sym_or] = ACTIONS(2973), - [sym_none] = ACTIONS(2971), - [sym_true] = ACTIONS(2971), - [sym_false] = ACTIONS(2971), - [sym_nil] = ACTIONS(2971), - [anon_sym_QMARK_DOT] = ACTIONS(2976), - [anon_sym_POUND_LBRACK] = ACTIONS(2976), - [anon_sym_if] = ACTIONS(2971), - [anon_sym_DOLLARif] = ACTIONS(2971), - [anon_sym_is] = ACTIONS(2973), - [anon_sym_BANGis] = ACTIONS(2976), - [anon_sym_in] = ACTIONS(2973), - [anon_sym_BANGin] = ACTIONS(2976), - [anon_sym_match] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [anon_sym_lock] = ACTIONS(2971), - [anon_sym_rlock] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(2971), - [anon_sym_sql] = ACTIONS(2971), - [sym_int_literal] = ACTIONS(2971), - [sym_float_literal] = ACTIONS(2969), - [sym_rune_literal] = ACTIONS(2969), - [anon_sym_AT] = ACTIONS(2971), - [anon_sym_shared] = ACTIONS(2971), - [anon_sym_map_LBRACK] = ACTIONS(2969), - [anon_sym_chan] = ACTIONS(2971), - [anon_sym_thread] = ACTIONS(2971), - [anon_sym_atomic] = ACTIONS(2971), - [sym___double_quote] = ACTIONS(2969), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2969), - [sym___c_single_quote] = ACTIONS(2969), - [sym___r_double_quote] = ACTIONS(2969), - [sym___r_single_quote] = ACTIONS(2969), + [anon_sym_DOT] = ACTIONS(2822), + [anon_sym_as] = ACTIONS(2822), + [anon_sym_LBRACE] = ACTIONS(2820), + [anon_sym_COMMA] = ACTIONS(2820), + [anon_sym_LPAREN] = ACTIONS(2820), + [anon_sym_PIPE] = ACTIONS(2822), + [anon_sym_fn] = ACTIONS(2822), + [anon_sym_PLUS] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2822), + [anon_sym_STAR] = ACTIONS(2820), + [anon_sym_SLASH] = ACTIONS(2822), + [anon_sym_PERCENT] = ACTIONS(2820), + [anon_sym_LT] = ACTIONS(2822), + [anon_sym_GT] = ACTIONS(2822), + [anon_sym_EQ_EQ] = ACTIONS(2820), + [anon_sym_BANG_EQ] = ACTIONS(2820), + [anon_sym_LT_EQ] = ACTIONS(2820), + [anon_sym_GT_EQ] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2820), + [anon_sym_RBRACK] = ACTIONS(2820), + [anon_sym_struct] = ACTIONS(2822), + [anon_sym_mut] = ACTIONS(2822), + [anon_sym_PLUS_PLUS] = ACTIONS(2820), + [anon_sym_DASH_DASH] = ACTIONS(2820), + [anon_sym_QMARK] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_go] = ACTIONS(2822), + [anon_sym_spawn] = ACTIONS(2822), + [anon_sym_json_DOTdecode] = ACTIONS(2820), + [anon_sym_LBRACK2] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2820), + [anon_sym_CARET] = ACTIONS(2820), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_LT_DASH] = ACTIONS(2820), + [anon_sym_LT_LT] = ACTIONS(2820), + [anon_sym_GT_GT] = ACTIONS(2822), + [anon_sym_GT_GT_GT] = ACTIONS(2820), + [anon_sym_AMP_CARET] = ACTIONS(2820), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_PIPE_PIPE] = ACTIONS(2820), + [anon_sym_or] = ACTIONS(2822), + [sym_none] = ACTIONS(2822), + [sym_true] = ACTIONS(2822), + [sym_false] = ACTIONS(2822), + [sym_nil] = ACTIONS(2822), + [anon_sym_QMARK_DOT] = ACTIONS(2820), + [anon_sym_POUND_LBRACK] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2822), + [anon_sym_DOLLARif] = ACTIONS(2822), + [anon_sym_is] = ACTIONS(2822), + [anon_sym_BANGis] = ACTIONS(2820), + [anon_sym_in] = ACTIONS(2822), + [anon_sym_BANGin] = ACTIONS(2820), + [anon_sym_match] = ACTIONS(2822), + [anon_sym_select] = ACTIONS(2822), + [anon_sym_lock] = ACTIONS(2822), + [anon_sym_rlock] = ACTIONS(2822), + [anon_sym_unsafe] = ACTIONS(2822), + [anon_sym_sql] = ACTIONS(2822), + [sym_int_literal] = ACTIONS(2822), + [sym_float_literal] = ACTIONS(2820), + [sym_rune_literal] = ACTIONS(2820), + [anon_sym_AT] = ACTIONS(2822), + [anon_sym_shared] = ACTIONS(2822), + [anon_sym_map_LBRACK] = ACTIONS(2820), + [anon_sym_chan] = ACTIONS(2822), + [anon_sym_thread] = ACTIONS(2822), + [anon_sym_atomic] = ACTIONS(2822), + [sym___double_quote] = ACTIONS(2820), + [sym___single_quote] = ACTIONS(2820), + [sym___c_double_quote] = ACTIONS(2820), + [sym___c_single_quote] = ACTIONS(2820), + [sym___r_double_quote] = ACTIONS(2820), + [sym___r_single_quote] = ACTIONS(2820), }, - [1333] = { - [sym_identifier] = ACTIONS(3169), + [1322] = { + [sym_identifier] = ACTIONS(2794), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3169), - [anon_sym_as] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(3169), - [anon_sym_fn] = ACTIONS(3169), - [anon_sym_PLUS] = ACTIONS(3169), - [anon_sym_DASH] = ACTIONS(3169), - [anon_sym_STAR] = ACTIONS(3167), - [anon_sym_SLASH] = ACTIONS(3169), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_GT] = ACTIONS(3169), - [anon_sym_EQ_EQ] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_LT_EQ] = ACTIONS(3167), - [anon_sym_GT_EQ] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_RBRACK] = ACTIONS(3167), - [anon_sym_struct] = ACTIONS(3169), - [anon_sym_mut] = ACTIONS(3169), - [anon_sym_PLUS_PLUS] = ACTIONS(3167), - [anon_sym_DASH_DASH] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3169), - [anon_sym_BANG] = ACTIONS(3169), - [anon_sym_go] = ACTIONS(3169), - [anon_sym_spawn] = ACTIONS(3169), - [anon_sym_json_DOTdecode] = ACTIONS(3167), - [anon_sym_LBRACK2] = ACTIONS(3169), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_CARET] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3169), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_LT_LT] = ACTIONS(3167), - [anon_sym_GT_GT] = ACTIONS(3169), - [anon_sym_GT_GT_GT] = ACTIONS(3167), - [anon_sym_AMP_CARET] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_or] = ACTIONS(3169), - [sym_none] = ACTIONS(3169), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [sym_nil] = ACTIONS(3169), - [anon_sym_QMARK_DOT] = ACTIONS(3167), - [anon_sym_POUND_LBRACK] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3169), - [anon_sym_DOLLARif] = ACTIONS(3169), - [anon_sym_is] = ACTIONS(3169), - [anon_sym_BANGis] = ACTIONS(3167), - [anon_sym_in] = ACTIONS(3169), - [anon_sym_BANGin] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3169), - [anon_sym_select] = ACTIONS(3169), - [anon_sym_lock] = ACTIONS(3169), - [anon_sym_rlock] = ACTIONS(3169), - [anon_sym_unsafe] = ACTIONS(3169), - [anon_sym_sql] = ACTIONS(3169), - [sym_int_literal] = ACTIONS(3169), - [sym_float_literal] = ACTIONS(3167), - [sym_rune_literal] = ACTIONS(3167), - [anon_sym_AT] = ACTIONS(3169), - [anon_sym_shared] = ACTIONS(3169), - [anon_sym_map_LBRACK] = ACTIONS(3167), - [anon_sym_chan] = ACTIONS(3169), - [anon_sym_thread] = ACTIONS(3169), - [anon_sym_atomic] = ACTIONS(3169), - [sym___double_quote] = ACTIONS(3167), - [sym___single_quote] = ACTIONS(3167), - [sym___c_double_quote] = ACTIONS(3167), - [sym___c_single_quote] = ACTIONS(3167), - [sym___r_double_quote] = ACTIONS(3167), - [sym___r_single_quote] = ACTIONS(3167), + [anon_sym_DOT] = ACTIONS(2794), + [anon_sym_as] = ACTIONS(2794), + [anon_sym_LBRACE] = ACTIONS(2792), + [anon_sym_COMMA] = ACTIONS(2792), + [anon_sym_LPAREN] = ACTIONS(2792), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_fn] = ACTIONS(2794), + [anon_sym_PLUS] = ACTIONS(2794), + [anon_sym_DASH] = ACTIONS(2794), + [anon_sym_STAR] = ACTIONS(2792), + [anon_sym_SLASH] = ACTIONS(2794), + [anon_sym_PERCENT] = ACTIONS(2792), + [anon_sym_LT] = ACTIONS(2794), + [anon_sym_GT] = ACTIONS(2794), + [anon_sym_EQ_EQ] = ACTIONS(2792), + [anon_sym_BANG_EQ] = ACTIONS(2792), + [anon_sym_LT_EQ] = ACTIONS(2792), + [anon_sym_GT_EQ] = ACTIONS(2792), + [anon_sym_LBRACK] = ACTIONS(2792), + [anon_sym_RBRACK] = ACTIONS(2792), + [anon_sym_struct] = ACTIONS(2794), + [anon_sym_mut] = ACTIONS(2794), + [anon_sym_PLUS_PLUS] = ACTIONS(2792), + [anon_sym_DASH_DASH] = ACTIONS(2792), + [anon_sym_QMARK] = ACTIONS(2794), + [anon_sym_BANG] = ACTIONS(2794), + [anon_sym_go] = ACTIONS(2794), + [anon_sym_spawn] = ACTIONS(2794), + [anon_sym_json_DOTdecode] = ACTIONS(2792), + [anon_sym_LBRACK2] = ACTIONS(2794), + [anon_sym_TILDE] = ACTIONS(2792), + [anon_sym_CARET] = ACTIONS(2792), + [anon_sym_AMP] = ACTIONS(2794), + [anon_sym_LT_DASH] = ACTIONS(2792), + [anon_sym_LT_LT] = ACTIONS(2792), + [anon_sym_GT_GT] = ACTIONS(2794), + [anon_sym_GT_GT_GT] = ACTIONS(2792), + [anon_sym_AMP_CARET] = ACTIONS(2792), + [anon_sym_AMP_AMP] = ACTIONS(2792), + [anon_sym_PIPE_PIPE] = ACTIONS(2792), + [anon_sym_or] = ACTIONS(2794), + [sym_none] = ACTIONS(2794), + [sym_true] = ACTIONS(2794), + [sym_false] = ACTIONS(2794), + [sym_nil] = ACTIONS(2794), + [anon_sym_QMARK_DOT] = ACTIONS(2792), + [anon_sym_POUND_LBRACK] = ACTIONS(2792), + [anon_sym_if] = ACTIONS(2794), + [anon_sym_DOLLARif] = ACTIONS(2794), + [anon_sym_is] = ACTIONS(2794), + [anon_sym_BANGis] = ACTIONS(2792), + [anon_sym_in] = ACTIONS(2794), + [anon_sym_BANGin] = ACTIONS(2792), + [anon_sym_match] = ACTIONS(2794), + [anon_sym_select] = ACTIONS(2794), + [anon_sym_lock] = ACTIONS(2794), + [anon_sym_rlock] = ACTIONS(2794), + [anon_sym_unsafe] = ACTIONS(2794), + [anon_sym_sql] = ACTIONS(2794), + [sym_int_literal] = ACTIONS(2794), + [sym_float_literal] = ACTIONS(2792), + [sym_rune_literal] = ACTIONS(2792), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_shared] = ACTIONS(2794), + [anon_sym_map_LBRACK] = ACTIONS(2792), + [anon_sym_chan] = ACTIONS(2794), + [anon_sym_thread] = ACTIONS(2794), + [anon_sym_atomic] = ACTIONS(2794), + [sym___double_quote] = ACTIONS(2792), + [sym___single_quote] = ACTIONS(2792), + [sym___c_double_quote] = ACTIONS(2792), + [sym___c_single_quote] = ACTIONS(2792), + [sym___r_double_quote] = ACTIONS(2792), + [sym___r_single_quote] = ACTIONS(2792), }, - [1334] = { - [sym_identifier] = ACTIONS(3053), + [1323] = { + [sym_identifier] = ACTIONS(3125), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3053), - [anon_sym_as] = ACTIONS(3053), - [anon_sym_LBRACE] = ACTIONS(3051), - [anon_sym_COMMA] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_PIPE] = ACTIONS(3053), - [anon_sym_fn] = ACTIONS(3053), - [anon_sym_PLUS] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3053), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_SLASH] = ACTIONS(3053), - [anon_sym_PERCENT] = ACTIONS(3051), - [anon_sym_LT] = ACTIONS(3053), - [anon_sym_GT] = ACTIONS(3053), - [anon_sym_EQ_EQ] = ACTIONS(3051), - [anon_sym_BANG_EQ] = ACTIONS(3051), - [anon_sym_LT_EQ] = ACTIONS(3051), - [anon_sym_GT_EQ] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3051), - [anon_sym_RBRACK] = ACTIONS(3051), - [anon_sym_struct] = ACTIONS(3053), - [anon_sym_mut] = ACTIONS(3053), - [anon_sym_PLUS_PLUS] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3051), - [anon_sym_QMARK] = ACTIONS(3053), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_go] = ACTIONS(3053), - [anon_sym_spawn] = ACTIONS(3053), - [anon_sym_json_DOTdecode] = ACTIONS(3051), - [anon_sym_LBRACK2] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3051), - [anon_sym_CARET] = ACTIONS(3051), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_LT_DASH] = ACTIONS(3051), - [anon_sym_LT_LT] = ACTIONS(3051), - [anon_sym_GT_GT] = ACTIONS(3053), - [anon_sym_GT_GT_GT] = ACTIONS(3051), - [anon_sym_AMP_CARET] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(3051), - [anon_sym_PIPE_PIPE] = ACTIONS(3051), - [anon_sym_or] = ACTIONS(3053), - [sym_none] = ACTIONS(3053), - [sym_true] = ACTIONS(3053), - [sym_false] = ACTIONS(3053), - [sym_nil] = ACTIONS(3053), - [anon_sym_QMARK_DOT] = ACTIONS(3051), - [anon_sym_POUND_LBRACK] = ACTIONS(3051), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_DOLLARif] = ACTIONS(3053), - [anon_sym_is] = ACTIONS(3053), - [anon_sym_BANGis] = ACTIONS(3051), - [anon_sym_in] = ACTIONS(3053), - [anon_sym_BANGin] = ACTIONS(3051), - [anon_sym_match] = ACTIONS(3053), - [anon_sym_select] = ACTIONS(3053), - [anon_sym_lock] = ACTIONS(3053), - [anon_sym_rlock] = ACTIONS(3053), - [anon_sym_unsafe] = ACTIONS(3053), - [anon_sym_sql] = ACTIONS(3053), - [sym_int_literal] = ACTIONS(3053), - [sym_float_literal] = ACTIONS(3051), - [sym_rune_literal] = ACTIONS(3051), - [anon_sym_AT] = ACTIONS(3053), - [anon_sym_shared] = ACTIONS(3053), - [anon_sym_map_LBRACK] = ACTIONS(3051), - [anon_sym_chan] = ACTIONS(3053), - [anon_sym_thread] = ACTIONS(3053), - [anon_sym_atomic] = ACTIONS(3053), - [sym___double_quote] = ACTIONS(3051), - [sym___single_quote] = ACTIONS(3051), - [sym___c_double_quote] = ACTIONS(3051), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3051), - [sym___r_single_quote] = ACTIONS(3051), + [anon_sym_DOT] = ACTIONS(3125), + [anon_sym_as] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(3123), + [anon_sym_COMMA] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(3123), + [anon_sym_PIPE] = ACTIONS(3125), + [anon_sym_fn] = ACTIONS(3125), + [anon_sym_PLUS] = ACTIONS(3125), + [anon_sym_DASH] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(3123), + [anon_sym_SLASH] = ACTIONS(3125), + [anon_sym_PERCENT] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(3125), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_EQ_EQ] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(3123), + [anon_sym_LT_EQ] = ACTIONS(3123), + [anon_sym_GT_EQ] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_RBRACK] = ACTIONS(3123), + [anon_sym_struct] = ACTIONS(3125), + [anon_sym_mut] = ACTIONS(3125), + [anon_sym_PLUS_PLUS] = ACTIONS(3123), + [anon_sym_DASH_DASH] = ACTIONS(3123), + [anon_sym_QMARK] = ACTIONS(3125), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_go] = ACTIONS(3125), + [anon_sym_spawn] = ACTIONS(3125), + [anon_sym_json_DOTdecode] = ACTIONS(3123), + [anon_sym_LBRACK2] = ACTIONS(3125), + [anon_sym_TILDE] = ACTIONS(3123), + [anon_sym_CARET] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_LT_DASH] = ACTIONS(3123), + [anon_sym_LT_LT] = ACTIONS(3123), + [anon_sym_GT_GT] = ACTIONS(3125), + [anon_sym_GT_GT_GT] = ACTIONS(3123), + [anon_sym_AMP_CARET] = ACTIONS(3123), + [anon_sym_AMP_AMP] = ACTIONS(3123), + [anon_sym_PIPE_PIPE] = ACTIONS(3123), + [anon_sym_or] = ACTIONS(3125), + [sym_none] = ACTIONS(3125), + [sym_true] = ACTIONS(3125), + [sym_false] = ACTIONS(3125), + [sym_nil] = ACTIONS(3125), + [anon_sym_QMARK_DOT] = ACTIONS(3123), + [anon_sym_POUND_LBRACK] = ACTIONS(3123), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_DOLLARif] = ACTIONS(3125), + [anon_sym_is] = ACTIONS(3125), + [anon_sym_BANGis] = ACTIONS(3123), + [anon_sym_in] = ACTIONS(3125), + [anon_sym_BANGin] = ACTIONS(3123), + [anon_sym_match] = ACTIONS(3125), + [anon_sym_select] = ACTIONS(3125), + [anon_sym_lock] = ACTIONS(3125), + [anon_sym_rlock] = ACTIONS(3125), + [anon_sym_unsafe] = ACTIONS(3125), + [anon_sym_sql] = ACTIONS(3125), + [sym_int_literal] = ACTIONS(3125), + [sym_float_literal] = ACTIONS(3123), + [sym_rune_literal] = ACTIONS(3123), + [anon_sym_AT] = ACTIONS(3125), + [anon_sym_shared] = ACTIONS(3125), + [anon_sym_map_LBRACK] = ACTIONS(3123), + [anon_sym_chan] = ACTIONS(3125), + [anon_sym_thread] = ACTIONS(3125), + [anon_sym_atomic] = ACTIONS(3125), + [sym___double_quote] = ACTIONS(3123), + [sym___single_quote] = ACTIONS(3123), + [sym___c_double_quote] = ACTIONS(3123), + [sym___c_single_quote] = ACTIONS(3123), + [sym___r_double_quote] = ACTIONS(3123), + [sym___r_single_quote] = ACTIONS(3123), }, - [1335] = { - [sym_identifier] = ACTIONS(3065), + [1324] = { + [sym_identifier] = ACTIONS(2694), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3065), - [anon_sym_as] = ACTIONS(3065), - [anon_sym_LBRACE] = ACTIONS(3063), - [anon_sym_COMMA] = ACTIONS(3063), - [anon_sym_LPAREN] = ACTIONS(3063), - [anon_sym_PIPE] = ACTIONS(3065), - [anon_sym_fn] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3063), - [anon_sym_SLASH] = ACTIONS(3065), - [anon_sym_PERCENT] = ACTIONS(3063), - [anon_sym_LT] = ACTIONS(3065), - [anon_sym_GT] = ACTIONS(3065), - [anon_sym_EQ_EQ] = ACTIONS(3063), - [anon_sym_BANG_EQ] = ACTIONS(3063), - [anon_sym_LT_EQ] = ACTIONS(3063), - [anon_sym_GT_EQ] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_RBRACK] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3065), - [anon_sym_mut] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3063), - [anon_sym_DASH_DASH] = ACTIONS(3063), - [anon_sym_QMARK] = ACTIONS(3065), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_go] = ACTIONS(3065), - [anon_sym_spawn] = ACTIONS(3065), - [anon_sym_json_DOTdecode] = ACTIONS(3063), - [anon_sym_LBRACK2] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3063), - [anon_sym_CARET] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3065), - [anon_sym_LT_DASH] = ACTIONS(3063), - [anon_sym_LT_LT] = ACTIONS(3063), - [anon_sym_GT_GT] = ACTIONS(3065), - [anon_sym_GT_GT_GT] = ACTIONS(3063), - [anon_sym_AMP_CARET] = ACTIONS(3063), - [anon_sym_AMP_AMP] = ACTIONS(3063), - [anon_sym_PIPE_PIPE] = ACTIONS(3063), - [anon_sym_or] = ACTIONS(3065), - [sym_none] = ACTIONS(3065), - [sym_true] = ACTIONS(3065), - [sym_false] = ACTIONS(3065), - [sym_nil] = ACTIONS(3065), - [anon_sym_QMARK_DOT] = ACTIONS(3063), - [anon_sym_POUND_LBRACK] = ACTIONS(3063), - [anon_sym_if] = ACTIONS(3065), - [anon_sym_DOLLARif] = ACTIONS(3065), - [anon_sym_is] = ACTIONS(3065), - [anon_sym_BANGis] = ACTIONS(3063), - [anon_sym_in] = ACTIONS(3065), - [anon_sym_BANGin] = ACTIONS(3063), - [anon_sym_match] = ACTIONS(3065), - [anon_sym_select] = ACTIONS(3065), - [anon_sym_lock] = ACTIONS(3065), - [anon_sym_rlock] = ACTIONS(3065), - [anon_sym_unsafe] = ACTIONS(3065), - [anon_sym_sql] = ACTIONS(3065), - [sym_int_literal] = ACTIONS(3065), - [sym_float_literal] = ACTIONS(3063), - [sym_rune_literal] = ACTIONS(3063), - [anon_sym_AT] = ACTIONS(3065), - [anon_sym_shared] = ACTIONS(3065), - [anon_sym_map_LBRACK] = ACTIONS(3063), - [anon_sym_chan] = ACTIONS(3065), - [anon_sym_thread] = ACTIONS(3065), - [anon_sym_atomic] = ACTIONS(3065), - [sym___double_quote] = ACTIONS(3063), - [sym___single_quote] = ACTIONS(3063), - [sym___c_double_quote] = ACTIONS(3063), - [sym___c_single_quote] = ACTIONS(3063), - [sym___r_double_quote] = ACTIONS(3063), - [sym___r_single_quote] = ACTIONS(3063), + [anon_sym_DOT] = ACTIONS(2694), + [anon_sym_as] = ACTIONS(2694), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_COMMA] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2694), + [anon_sym_fn] = ACTIONS(2694), + [anon_sym_PLUS] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(2692), + [anon_sym_SLASH] = ACTIONS(2694), + [anon_sym_PERCENT] = ACTIONS(2692), + [anon_sym_LT] = ACTIONS(2694), + [anon_sym_GT] = ACTIONS(2694), + [anon_sym_EQ_EQ] = ACTIONS(2692), + [anon_sym_BANG_EQ] = ACTIONS(2692), + [anon_sym_LT_EQ] = ACTIONS(2692), + [anon_sym_GT_EQ] = ACTIONS(2692), + [anon_sym_LBRACK] = ACTIONS(2692), + [anon_sym_RBRACK] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2694), + [anon_sym_mut] = ACTIONS(2694), + [anon_sym_PLUS_PLUS] = ACTIONS(2692), + [anon_sym_DASH_DASH] = ACTIONS(2692), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_BANG] = ACTIONS(2694), + [anon_sym_go] = ACTIONS(2694), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2692), + [anon_sym_LBRACK2] = ACTIONS(2694), + [anon_sym_TILDE] = ACTIONS(2692), + [anon_sym_CARET] = ACTIONS(2692), + [anon_sym_AMP] = ACTIONS(2694), + [anon_sym_LT_DASH] = ACTIONS(2692), + [anon_sym_LT_LT] = ACTIONS(2692), + [anon_sym_GT_GT] = ACTIONS(2694), + [anon_sym_GT_GT_GT] = ACTIONS(2692), + [anon_sym_AMP_CARET] = ACTIONS(2692), + [anon_sym_AMP_AMP] = ACTIONS(2692), + [anon_sym_PIPE_PIPE] = ACTIONS(2692), + [anon_sym_or] = ACTIONS(2694), + [sym_none] = ACTIONS(2694), + [sym_true] = ACTIONS(2694), + [sym_false] = ACTIONS(2694), + [sym_nil] = ACTIONS(2694), + [anon_sym_QMARK_DOT] = ACTIONS(2692), + [anon_sym_POUND_LBRACK] = ACTIONS(2692), + [anon_sym_if] = ACTIONS(2694), + [anon_sym_DOLLARif] = ACTIONS(2694), + [anon_sym_is] = ACTIONS(2694), + [anon_sym_BANGis] = ACTIONS(2692), + [anon_sym_in] = ACTIONS(2694), + [anon_sym_BANGin] = ACTIONS(2692), + [anon_sym_match] = ACTIONS(2694), + [anon_sym_select] = ACTIONS(2694), + [anon_sym_lock] = ACTIONS(2694), + [anon_sym_rlock] = ACTIONS(2694), + [anon_sym_unsafe] = ACTIONS(2694), + [anon_sym_sql] = ACTIONS(2694), + [sym_int_literal] = ACTIONS(2694), + [sym_float_literal] = ACTIONS(2692), + [sym_rune_literal] = ACTIONS(2692), + [anon_sym_AT] = ACTIONS(2694), + [anon_sym_shared] = ACTIONS(2694), + [anon_sym_map_LBRACK] = ACTIONS(2692), + [anon_sym_chan] = ACTIONS(2694), + [anon_sym_thread] = ACTIONS(2694), + [anon_sym_atomic] = ACTIONS(2694), + [sym___double_quote] = ACTIONS(2692), + [sym___single_quote] = ACTIONS(2692), + [sym___c_double_quote] = ACTIONS(2692), + [sym___c_single_quote] = ACTIONS(2692), + [sym___r_double_quote] = ACTIONS(2692), + [sym___r_single_quote] = ACTIONS(2692), }, - [1336] = { - [sym_identifier] = ACTIONS(3149), + [1325] = { + [sym_identifier] = ACTIONS(3082), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3149), - [anon_sym_as] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_PIPE] = ACTIONS(3149), - [anon_sym_fn] = ACTIONS(3149), - [anon_sym_PLUS] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_SLASH] = ACTIONS(3149), - [anon_sym_PERCENT] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(3149), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_EQ_EQ] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(3147), - [anon_sym_LT_EQ] = ACTIONS(3147), - [anon_sym_GT_EQ] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_RBRACK] = ACTIONS(3147), - [anon_sym_struct] = ACTIONS(3149), - [anon_sym_mut] = ACTIONS(3149), - [anon_sym_PLUS_PLUS] = ACTIONS(3147), - [anon_sym_DASH_DASH] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_BANG] = ACTIONS(3149), - [anon_sym_go] = ACTIONS(3149), - [anon_sym_spawn] = ACTIONS(3149), - [anon_sym_json_DOTdecode] = ACTIONS(3147), - [anon_sym_LBRACK2] = ACTIONS(3149), - [anon_sym_TILDE] = ACTIONS(3147), - [anon_sym_CARET] = ACTIONS(3147), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_LT_DASH] = ACTIONS(3147), - [anon_sym_LT_LT] = ACTIONS(3147), - [anon_sym_GT_GT] = ACTIONS(3149), - [anon_sym_GT_GT_GT] = ACTIONS(3147), - [anon_sym_AMP_CARET] = ACTIONS(3147), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_or] = ACTIONS(3149), - [sym_none] = ACTIONS(3149), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_nil] = ACTIONS(3149), - [anon_sym_QMARK_DOT] = ACTIONS(3147), - [anon_sym_POUND_LBRACK] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3149), - [anon_sym_DOLLARif] = ACTIONS(3149), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3147), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_BANGin] = ACTIONS(3147), - [anon_sym_match] = ACTIONS(3149), - [anon_sym_select] = ACTIONS(3149), - [anon_sym_lock] = ACTIONS(3149), - [anon_sym_rlock] = ACTIONS(3149), - [anon_sym_unsafe] = ACTIONS(3149), - [anon_sym_sql] = ACTIONS(3149), - [sym_int_literal] = ACTIONS(3149), - [sym_float_literal] = ACTIONS(3147), - [sym_rune_literal] = ACTIONS(3147), - [anon_sym_AT] = ACTIONS(3149), - [anon_sym_shared] = ACTIONS(3149), - [anon_sym_map_LBRACK] = ACTIONS(3147), - [anon_sym_chan] = ACTIONS(3149), - [anon_sym_thread] = ACTIONS(3149), - [anon_sym_atomic] = ACTIONS(3149), - [sym___double_quote] = ACTIONS(3147), - [sym___single_quote] = ACTIONS(3147), - [sym___c_double_quote] = ACTIONS(3147), - [sym___c_single_quote] = ACTIONS(3147), - [sym___r_double_quote] = ACTIONS(3147), - [sym___r_single_quote] = ACTIONS(3147), + [anon_sym_DOT] = ACTIONS(3082), + [anon_sym_as] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_COMMA] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_PIPE] = ACTIONS(3082), + [anon_sym_fn] = ACTIONS(3082), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3080), + [anon_sym_SLASH] = ACTIONS(3082), + [anon_sym_PERCENT] = ACTIONS(3080), + [anon_sym_LT] = ACTIONS(3082), + [anon_sym_GT] = ACTIONS(3082), + [anon_sym_EQ_EQ] = ACTIONS(3080), + [anon_sym_BANG_EQ] = ACTIONS(3080), + [anon_sym_LT_EQ] = ACTIONS(3080), + [anon_sym_GT_EQ] = ACTIONS(3080), + [anon_sym_LBRACK] = ACTIONS(3080), + [anon_sym_RBRACK] = ACTIONS(3080), + [anon_sym_struct] = ACTIONS(3082), + [anon_sym_mut] = ACTIONS(3082), + [anon_sym_PLUS_PLUS] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(3080), + [anon_sym_QMARK] = ACTIONS(3082), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_go] = ACTIONS(3082), + [anon_sym_spawn] = ACTIONS(3082), + [anon_sym_json_DOTdecode] = ACTIONS(3080), + [anon_sym_LBRACK2] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3080), + [anon_sym_CARET] = ACTIONS(3080), + [anon_sym_AMP] = ACTIONS(3082), + [anon_sym_LT_DASH] = ACTIONS(3080), + [anon_sym_LT_LT] = ACTIONS(3080), + [anon_sym_GT_GT] = ACTIONS(3082), + [anon_sym_GT_GT_GT] = ACTIONS(3080), + [anon_sym_AMP_CARET] = ACTIONS(3080), + [anon_sym_AMP_AMP] = ACTIONS(3080), + [anon_sym_PIPE_PIPE] = ACTIONS(3080), + [anon_sym_or] = ACTIONS(3082), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_QMARK_DOT] = ACTIONS(3080), + [anon_sym_POUND_LBRACK] = ACTIONS(3080), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_DOLLARif] = ACTIONS(3082), + [anon_sym_is] = ACTIONS(3082), + [anon_sym_BANGis] = ACTIONS(3080), + [anon_sym_in] = ACTIONS(3082), + [anon_sym_BANGin] = ACTIONS(3080), + [anon_sym_match] = ACTIONS(3082), + [anon_sym_select] = ACTIONS(3082), + [anon_sym_lock] = ACTIONS(3082), + [anon_sym_rlock] = ACTIONS(3082), + [anon_sym_unsafe] = ACTIONS(3082), + [anon_sym_sql] = ACTIONS(3082), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3080), + [sym_rune_literal] = ACTIONS(3080), + [anon_sym_AT] = ACTIONS(3082), + [anon_sym_shared] = ACTIONS(3082), + [anon_sym_map_LBRACK] = ACTIONS(3080), + [anon_sym_chan] = ACTIONS(3082), + [anon_sym_thread] = ACTIONS(3082), + [anon_sym_atomic] = ACTIONS(3082), + [sym___double_quote] = ACTIONS(3080), + [sym___single_quote] = ACTIONS(3080), + [sym___c_double_quote] = ACTIONS(3080), + [sym___c_single_quote] = ACTIONS(3080), + [sym___r_double_quote] = ACTIONS(3080), + [sym___r_single_quote] = ACTIONS(3080), }, - [1337] = { - [sym_identifier] = ACTIONS(3181), + [1326] = { + [sym_identifier] = ACTIONS(2922), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3181), - [anon_sym_as] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_PIPE] = ACTIONS(3181), - [anon_sym_fn] = ACTIONS(3181), - [anon_sym_PLUS] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_SLASH] = ACTIONS(3181), - [anon_sym_PERCENT] = ACTIONS(3179), - [anon_sym_LT] = ACTIONS(3181), - [anon_sym_GT] = ACTIONS(3181), - [anon_sym_EQ_EQ] = ACTIONS(3179), - [anon_sym_BANG_EQ] = ACTIONS(3179), - [anon_sym_LT_EQ] = ACTIONS(3179), - [anon_sym_GT_EQ] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_RBRACK] = ACTIONS(3179), - [anon_sym_struct] = ACTIONS(3181), - [anon_sym_mut] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3179), - [anon_sym_DASH_DASH] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_BANG] = ACTIONS(3181), - [anon_sym_go] = ACTIONS(3181), - [anon_sym_spawn] = ACTIONS(3181), - [anon_sym_json_DOTdecode] = ACTIONS(3179), - [anon_sym_LBRACK2] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3179), - [anon_sym_CARET] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3181), - [anon_sym_LT_DASH] = ACTIONS(3179), - [anon_sym_LT_LT] = ACTIONS(3179), - [anon_sym_GT_GT] = ACTIONS(3181), - [anon_sym_GT_GT_GT] = ACTIONS(3179), - [anon_sym_AMP_CARET] = ACTIONS(3179), - [anon_sym_AMP_AMP] = ACTIONS(3179), - [anon_sym_PIPE_PIPE] = ACTIONS(3179), - [anon_sym_or] = ACTIONS(3181), - [sym_none] = ACTIONS(3181), - [sym_true] = ACTIONS(3181), - [sym_false] = ACTIONS(3181), - [sym_nil] = ACTIONS(3181), - [anon_sym_QMARK_DOT] = ACTIONS(3179), - [anon_sym_POUND_LBRACK] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3181), - [anon_sym_DOLLARif] = ACTIONS(3181), - [anon_sym_is] = ACTIONS(3181), - [anon_sym_BANGis] = ACTIONS(3179), - [anon_sym_in] = ACTIONS(3181), - [anon_sym_BANGin] = ACTIONS(3179), - [anon_sym_match] = ACTIONS(3181), - [anon_sym_select] = ACTIONS(3181), - [anon_sym_lock] = ACTIONS(3181), - [anon_sym_rlock] = ACTIONS(3181), - [anon_sym_unsafe] = ACTIONS(3181), - [anon_sym_sql] = ACTIONS(3181), - [sym_int_literal] = ACTIONS(3181), - [sym_float_literal] = ACTIONS(3179), - [sym_rune_literal] = ACTIONS(3179), - [anon_sym_AT] = ACTIONS(3181), - [anon_sym_shared] = ACTIONS(3181), - [anon_sym_map_LBRACK] = ACTIONS(3179), - [anon_sym_chan] = ACTIONS(3181), - [anon_sym_thread] = ACTIONS(3181), - [anon_sym_atomic] = ACTIONS(3181), - [sym___double_quote] = ACTIONS(3179), - [sym___single_quote] = ACTIONS(3179), - [sym___c_double_quote] = ACTIONS(3179), - [sym___c_single_quote] = ACTIONS(3179), - [sym___r_double_quote] = ACTIONS(3179), - [sym___r_single_quote] = ACTIONS(3179), + [anon_sym_DOT] = ACTIONS(2922), + [anon_sym_as] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2920), + [anon_sym_COMMA] = ACTIONS(2920), + [anon_sym_LPAREN] = ACTIONS(2920), + [anon_sym_PIPE] = ACTIONS(2922), + [anon_sym_fn] = ACTIONS(2922), + [anon_sym_PLUS] = ACTIONS(2922), + [anon_sym_DASH] = ACTIONS(2922), + [anon_sym_STAR] = ACTIONS(2920), + [anon_sym_SLASH] = ACTIONS(2922), + [anon_sym_PERCENT] = ACTIONS(2920), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_GT] = ACTIONS(2922), + [anon_sym_EQ_EQ] = ACTIONS(2920), + [anon_sym_BANG_EQ] = ACTIONS(2920), + [anon_sym_LT_EQ] = ACTIONS(2920), + [anon_sym_GT_EQ] = ACTIONS(2920), + [anon_sym_LBRACK] = ACTIONS(2920), + [anon_sym_RBRACK] = ACTIONS(2920), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_mut] = ACTIONS(2922), + [anon_sym_PLUS_PLUS] = ACTIONS(2920), + [anon_sym_DASH_DASH] = ACTIONS(2920), + [anon_sym_QMARK] = ACTIONS(2922), + [anon_sym_BANG] = ACTIONS(2922), + [anon_sym_go] = ACTIONS(2922), + [anon_sym_spawn] = ACTIONS(2922), + [anon_sym_json_DOTdecode] = ACTIONS(2920), + [anon_sym_LBRACK2] = ACTIONS(2922), + [anon_sym_TILDE] = ACTIONS(2920), + [anon_sym_CARET] = ACTIONS(2920), + [anon_sym_AMP] = ACTIONS(2922), + [anon_sym_LT_DASH] = ACTIONS(2920), + [anon_sym_LT_LT] = ACTIONS(2920), + [anon_sym_GT_GT] = ACTIONS(2922), + [anon_sym_GT_GT_GT] = ACTIONS(2920), + [anon_sym_AMP_CARET] = ACTIONS(2920), + [anon_sym_AMP_AMP] = ACTIONS(2920), + [anon_sym_PIPE_PIPE] = ACTIONS(2920), + [anon_sym_or] = ACTIONS(2922), + [sym_none] = ACTIONS(2922), + [sym_true] = ACTIONS(2922), + [sym_false] = ACTIONS(2922), + [sym_nil] = ACTIONS(2922), + [anon_sym_QMARK_DOT] = ACTIONS(2920), + [anon_sym_POUND_LBRACK] = ACTIONS(2920), + [anon_sym_if] = ACTIONS(2922), + [anon_sym_DOLLARif] = ACTIONS(2922), + [anon_sym_is] = ACTIONS(2922), + [anon_sym_BANGis] = ACTIONS(2920), + [anon_sym_in] = ACTIONS(2922), + [anon_sym_BANGin] = ACTIONS(2920), + [anon_sym_match] = ACTIONS(2922), + [anon_sym_select] = ACTIONS(2922), + [anon_sym_lock] = ACTIONS(2922), + [anon_sym_rlock] = ACTIONS(2922), + [anon_sym_unsafe] = ACTIONS(2922), + [anon_sym_sql] = ACTIONS(2922), + [sym_int_literal] = ACTIONS(2922), + [sym_float_literal] = ACTIONS(2920), + [sym_rune_literal] = ACTIONS(2920), + [anon_sym_AT] = ACTIONS(2922), + [anon_sym_shared] = ACTIONS(2922), + [anon_sym_map_LBRACK] = ACTIONS(2920), + [anon_sym_chan] = ACTIONS(2922), + [anon_sym_thread] = ACTIONS(2922), + [anon_sym_atomic] = ACTIONS(2922), + [sym___double_quote] = ACTIONS(2920), + [sym___single_quote] = ACTIONS(2920), + [sym___c_double_quote] = ACTIONS(2920), + [sym___c_single_quote] = ACTIONS(2920), + [sym___r_double_quote] = ACTIONS(2920), + [sym___r_single_quote] = ACTIONS(2920), }, - [1338] = { - [sym_identifier] = ACTIONS(2949), + [1327] = { + [sym_identifier] = ACTIONS(3018), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2951), - [anon_sym_as] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_COMMA] = ACTIONS(2947), - [anon_sym_LPAREN] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_fn] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2954), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_PERCENT] = ACTIONS(2954), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_GT] = ACTIONS(2951), - [anon_sym_EQ_EQ] = ACTIONS(2954), - [anon_sym_BANG_EQ] = ACTIONS(2954), - [anon_sym_LT_EQ] = ACTIONS(2954), - [anon_sym_GT_EQ] = ACTIONS(2954), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_RBRACK] = ACTIONS(2947), - [anon_sym_struct] = ACTIONS(2949), - [anon_sym_mut] = ACTIONS(2949), - [anon_sym_PLUS_PLUS] = ACTIONS(2954), - [anon_sym_DASH_DASH] = ACTIONS(2954), - [anon_sym_QMARK] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_go] = ACTIONS(2949), - [anon_sym_spawn] = ACTIONS(2949), - [anon_sym_json_DOTdecode] = ACTIONS(2947), - [anon_sym_LBRACK2] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_CARET] = ACTIONS(2954), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_LT_DASH] = ACTIONS(2947), - [anon_sym_LT_LT] = ACTIONS(2954), - [anon_sym_GT_GT] = ACTIONS(2951), - [anon_sym_GT_GT_GT] = ACTIONS(2954), - [anon_sym_AMP_CARET] = ACTIONS(2954), - [anon_sym_AMP_AMP] = ACTIONS(2954), - [anon_sym_PIPE_PIPE] = ACTIONS(2954), - [anon_sym_or] = ACTIONS(2951), - [sym_none] = ACTIONS(2949), - [sym_true] = ACTIONS(2949), - [sym_false] = ACTIONS(2949), - [sym_nil] = ACTIONS(2949), - [anon_sym_QMARK_DOT] = ACTIONS(2954), - [anon_sym_POUND_LBRACK] = ACTIONS(2954), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2949), - [anon_sym_is] = ACTIONS(2951), - [anon_sym_BANGis] = ACTIONS(2954), - [anon_sym_in] = ACTIONS(2951), - [anon_sym_BANGin] = ACTIONS(2954), - [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_AT] = ACTIONS(2949), - [anon_sym_shared] = ACTIONS(2949), - [anon_sym_map_LBRACK] = ACTIONS(2947), - [anon_sym_chan] = ACTIONS(2949), - [anon_sym_thread] = ACTIONS(2949), - [anon_sym_atomic] = ACTIONS(2949), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2947), - [sym___c_double_quote] = ACTIONS(2947), - [sym___c_single_quote] = ACTIONS(2947), - [sym___r_double_quote] = ACTIONS(2947), - [sym___r_single_quote] = ACTIONS(2947), + [anon_sym_DOT] = ACTIONS(3018), + [anon_sym_as] = ACTIONS(3018), + [anon_sym_LBRACE] = ACTIONS(3016), + [anon_sym_COMMA] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3016), + [anon_sym_PIPE] = ACTIONS(3018), + [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_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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3016), + [sym___single_quote] = ACTIONS(3016), + [sym___c_double_quote] = ACTIONS(3016), + [sym___c_single_quote] = ACTIONS(3016), + [sym___r_double_quote] = ACTIONS(3016), + [sym___r_single_quote] = ACTIONS(3016), }, - [1339] = { - [sym_identifier] = ACTIONS(3029), + [1328] = { + [sym_identifier] = ACTIONS(3118), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_as] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(3027), - [anon_sym_COMMA] = 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_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_AT] = 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), - [sym___double_quote] = ACTIONS(3027), - [sym___single_quote] = ACTIONS(3027), - [sym___c_double_quote] = ACTIONS(3027), - [sym___c_single_quote] = ACTIONS(3027), - [sym___r_double_quote] = ACTIONS(3027), - [sym___r_single_quote] = ACTIONS(3027), + [anon_sym_DOT] = ACTIONS(3120), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(3116), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3116), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_fn] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3116), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(3116), + [anon_sym_LT_EQ] = ACTIONS(3116), + [anon_sym_GT_EQ] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_RBRACK] = ACTIONS(3116), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_mut] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [anon_sym_QMARK] = ACTIONS(3118), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_go] = ACTIONS(3118), + [anon_sym_spawn] = ACTIONS(3118), + [anon_sym_json_DOTdecode] = ACTIONS(3116), + [anon_sym_LBRACK2] = ACTIONS(3118), + [anon_sym_TILDE] = ACTIONS(3116), + [anon_sym_CARET] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_LT_DASH] = ACTIONS(3116), + [anon_sym_LT_LT] = ACTIONS(3116), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym_GT_GT_GT] = ACTIONS(3116), + [anon_sym_AMP_CARET] = ACTIONS(3116), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_PIPE_PIPE] = ACTIONS(3116), + [anon_sym_or] = ACTIONS(3118), + [sym_none] = ACTIONS(3118), + [sym_true] = ACTIONS(3118), + [sym_false] = ACTIONS(3118), + [sym_nil] = ACTIONS(3118), + [anon_sym_QMARK_DOT] = ACTIONS(3116), + [anon_sym_POUND_LBRACK] = ACTIONS(3116), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_DOLLARif] = ACTIONS(3118), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3116), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_BANGin] = ACTIONS(3116), + [anon_sym_match] = ACTIONS(3118), + [anon_sym_select] = ACTIONS(3118), + [anon_sym_lock] = ACTIONS(3118), + [anon_sym_rlock] = ACTIONS(3118), + [anon_sym_unsafe] = ACTIONS(3118), + [anon_sym_sql] = ACTIONS(3118), + [sym_int_literal] = ACTIONS(3118), + [sym_float_literal] = ACTIONS(3116), + [sym_rune_literal] = ACTIONS(3116), + [anon_sym_AT] = ACTIONS(3118), + [anon_sym_shared] = ACTIONS(3118), + [anon_sym_map_LBRACK] = ACTIONS(3116), + [anon_sym_chan] = ACTIONS(3118), + [anon_sym_thread] = ACTIONS(3118), + [anon_sym_atomic] = ACTIONS(3118), + [sym___double_quote] = ACTIONS(3116), + [sym___single_quote] = ACTIONS(3116), + [sym___c_double_quote] = ACTIONS(3116), + [sym___c_single_quote] = ACTIONS(3116), + [sym___r_double_quote] = ACTIONS(3116), + [sym___r_single_quote] = ACTIONS(3116), }, - [1340] = { - [sym_identifier] = ACTIONS(2880), + [1329] = { + [sym_identifier] = ACTIONS(2834), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2880), - [anon_sym_as] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_COMMA] = ACTIONS(2878), - [anon_sym_LPAREN] = ACTIONS(2878), - [anon_sym_PIPE] = ACTIONS(2880), - [anon_sym_fn] = ACTIONS(2880), - [anon_sym_PLUS] = ACTIONS(2880), - [anon_sym_DASH] = ACTIONS(2880), - [anon_sym_STAR] = ACTIONS(2878), - [anon_sym_SLASH] = ACTIONS(2880), - [anon_sym_PERCENT] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2880), - [anon_sym_GT] = ACTIONS(2880), - [anon_sym_EQ_EQ] = ACTIONS(2878), - [anon_sym_BANG_EQ] = ACTIONS(2878), - [anon_sym_LT_EQ] = ACTIONS(2878), - [anon_sym_GT_EQ] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_RBRACK] = ACTIONS(2878), - [anon_sym_struct] = ACTIONS(2880), - [anon_sym_mut] = ACTIONS(2880), - [anon_sym_PLUS_PLUS] = ACTIONS(2878), - [anon_sym_DASH_DASH] = ACTIONS(2878), - [anon_sym_QMARK] = ACTIONS(2880), - [anon_sym_BANG] = ACTIONS(2880), - [anon_sym_go] = ACTIONS(2880), - [anon_sym_spawn] = ACTIONS(2880), - [anon_sym_json_DOTdecode] = ACTIONS(2878), - [anon_sym_LBRACK2] = ACTIONS(2880), - [anon_sym_TILDE] = ACTIONS(2878), - [anon_sym_CARET] = ACTIONS(2878), - [anon_sym_AMP] = ACTIONS(2880), - [anon_sym_LT_DASH] = ACTIONS(2878), - [anon_sym_LT_LT] = ACTIONS(2878), - [anon_sym_GT_GT] = ACTIONS(2880), - [anon_sym_GT_GT_GT] = ACTIONS(2878), - [anon_sym_AMP_CARET] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [anon_sym_or] = ACTIONS(2880), - [sym_none] = ACTIONS(2880), - [sym_true] = ACTIONS(2880), - [sym_false] = ACTIONS(2880), - [sym_nil] = ACTIONS(2880), - [anon_sym_QMARK_DOT] = ACTIONS(2878), - [anon_sym_POUND_LBRACK] = ACTIONS(2878), - [anon_sym_if] = ACTIONS(2880), - [anon_sym_DOLLARif] = ACTIONS(2880), - [anon_sym_is] = ACTIONS(2880), - [anon_sym_BANGis] = ACTIONS(2878), - [anon_sym_in] = ACTIONS(2880), - [anon_sym_BANGin] = ACTIONS(2878), - [anon_sym_match] = ACTIONS(2880), - [anon_sym_select] = ACTIONS(2880), - [anon_sym_lock] = ACTIONS(2880), - [anon_sym_rlock] = ACTIONS(2880), - [anon_sym_unsafe] = ACTIONS(2880), - [anon_sym_sql] = ACTIONS(2880), - [sym_int_literal] = ACTIONS(2880), - [sym_float_literal] = ACTIONS(2878), - [sym_rune_literal] = ACTIONS(2878), - [anon_sym_AT] = ACTIONS(2880), - [anon_sym_shared] = ACTIONS(2880), - [anon_sym_map_LBRACK] = ACTIONS(2878), - [anon_sym_chan] = ACTIONS(2880), - [anon_sym_thread] = ACTIONS(2880), - [anon_sym_atomic] = ACTIONS(2880), - [sym___double_quote] = ACTIONS(2878), - [sym___single_quote] = ACTIONS(2878), - [sym___c_double_quote] = ACTIONS(2878), - [sym___c_single_quote] = ACTIONS(2878), - [sym___r_double_quote] = ACTIONS(2878), - [sym___r_single_quote] = ACTIONS(2878), + [anon_sym_DOT] = ACTIONS(2834), + [anon_sym_as] = ACTIONS(2834), + [anon_sym_LBRACE] = ACTIONS(2832), + [anon_sym_COMMA] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2832), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_fn] = ACTIONS(2834), + [anon_sym_PLUS] = ACTIONS(2834), + [anon_sym_DASH] = ACTIONS(2834), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_SLASH] = ACTIONS(2834), + [anon_sym_PERCENT] = ACTIONS(2832), + [anon_sym_LT] = ACTIONS(2834), + [anon_sym_GT] = ACTIONS(2834), + [anon_sym_EQ_EQ] = ACTIONS(2832), + [anon_sym_BANG_EQ] = ACTIONS(2832), + [anon_sym_LT_EQ] = ACTIONS(2832), + [anon_sym_GT_EQ] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2832), + [anon_sym_RBRACK] = ACTIONS(2832), + [anon_sym_struct] = ACTIONS(2834), + [anon_sym_mut] = ACTIONS(2834), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_QMARK] = ACTIONS(2834), + [anon_sym_BANG] = ACTIONS(2834), + [anon_sym_go] = ACTIONS(2834), + [anon_sym_spawn] = ACTIONS(2834), + [anon_sym_json_DOTdecode] = ACTIONS(2832), + [anon_sym_LBRACK2] = ACTIONS(2834), + [anon_sym_TILDE] = ACTIONS(2832), + [anon_sym_CARET] = ACTIONS(2832), + [anon_sym_AMP] = ACTIONS(2834), + [anon_sym_LT_DASH] = ACTIONS(2832), + [anon_sym_LT_LT] = ACTIONS(2832), + [anon_sym_GT_GT] = ACTIONS(2834), + [anon_sym_GT_GT_GT] = ACTIONS(2832), + [anon_sym_AMP_CARET] = ACTIONS(2832), + [anon_sym_AMP_AMP] = ACTIONS(2832), + [anon_sym_PIPE_PIPE] = ACTIONS(2832), + [anon_sym_or] = ACTIONS(2834), + [sym_none] = ACTIONS(2834), + [sym_true] = ACTIONS(2834), + [sym_false] = ACTIONS(2834), + [sym_nil] = ACTIONS(2834), + [anon_sym_QMARK_DOT] = ACTIONS(2832), + [anon_sym_POUND_LBRACK] = ACTIONS(2832), + [anon_sym_if] = ACTIONS(2834), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_is] = ACTIONS(2834), + [anon_sym_BANGis] = ACTIONS(2832), + [anon_sym_in] = ACTIONS(2834), + [anon_sym_BANGin] = ACTIONS(2832), + [anon_sym_match] = ACTIONS(2834), + [anon_sym_select] = ACTIONS(2834), + [anon_sym_lock] = ACTIONS(2834), + [anon_sym_rlock] = ACTIONS(2834), + [anon_sym_unsafe] = ACTIONS(2834), + [anon_sym_sql] = ACTIONS(2834), + [sym_int_literal] = ACTIONS(2834), + [sym_float_literal] = ACTIONS(2832), + [sym_rune_literal] = ACTIONS(2832), + [anon_sym_AT] = ACTIONS(2834), + [anon_sym_shared] = ACTIONS(2834), + [anon_sym_map_LBRACK] = ACTIONS(2832), + [anon_sym_chan] = ACTIONS(2834), + [anon_sym_thread] = ACTIONS(2834), + [anon_sym_atomic] = ACTIONS(2834), + [sym___double_quote] = ACTIONS(2832), + [sym___single_quote] = ACTIONS(2832), + [sym___c_double_quote] = ACTIONS(2832), + [sym___c_single_quote] = ACTIONS(2832), + [sym___r_double_quote] = ACTIONS(2832), + [sym___r_single_quote] = ACTIONS(2832), }, - [1341] = { - [sym_identifier] = ACTIONS(2895), + [1330] = { + [sym_identifier] = ACTIONS(2978), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2895), - [anon_sym_as] = ACTIONS(2895), - [anon_sym_LBRACE] = ACTIONS(2893), - [anon_sym_COMMA] = ACTIONS(2893), - [anon_sym_LPAREN] = ACTIONS(2893), - [anon_sym_PIPE] = ACTIONS(2895), - [anon_sym_fn] = ACTIONS(2895), - [anon_sym_PLUS] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2895), - [anon_sym_STAR] = ACTIONS(2893), - [anon_sym_SLASH] = ACTIONS(2895), - [anon_sym_PERCENT] = ACTIONS(2893), - [anon_sym_LT] = ACTIONS(2895), - [anon_sym_GT] = ACTIONS(2895), - [anon_sym_EQ_EQ] = ACTIONS(2893), - [anon_sym_BANG_EQ] = ACTIONS(2893), - [anon_sym_LT_EQ] = ACTIONS(2893), - [anon_sym_GT_EQ] = ACTIONS(2893), - [anon_sym_LBRACK] = ACTIONS(2893), - [anon_sym_RBRACK] = ACTIONS(2893), - [anon_sym_struct] = ACTIONS(2895), - [anon_sym_mut] = ACTIONS(2895), - [anon_sym_PLUS_PLUS] = ACTIONS(2893), - [anon_sym_DASH_DASH] = ACTIONS(2893), - [anon_sym_QMARK] = ACTIONS(2895), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_go] = ACTIONS(2895), - [anon_sym_spawn] = ACTIONS(2895), - [anon_sym_json_DOTdecode] = ACTIONS(2893), - [anon_sym_LBRACK2] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2893), - [anon_sym_CARET] = ACTIONS(2893), - [anon_sym_AMP] = ACTIONS(2895), - [anon_sym_LT_DASH] = ACTIONS(2893), - [anon_sym_LT_LT] = ACTIONS(2893), - [anon_sym_GT_GT] = ACTIONS(2895), - [anon_sym_GT_GT_GT] = ACTIONS(2893), - [anon_sym_AMP_CARET] = ACTIONS(2893), - [anon_sym_AMP_AMP] = ACTIONS(2893), - [anon_sym_PIPE_PIPE] = ACTIONS(2893), - [anon_sym_or] = ACTIONS(2895), - [sym_none] = ACTIONS(2895), - [sym_true] = ACTIONS(2895), - [sym_false] = ACTIONS(2895), - [sym_nil] = ACTIONS(2895), - [anon_sym_QMARK_DOT] = ACTIONS(2893), - [anon_sym_POUND_LBRACK] = ACTIONS(2893), - [anon_sym_if] = ACTIONS(2895), - [anon_sym_DOLLARif] = ACTIONS(2895), - [anon_sym_is] = ACTIONS(2895), - [anon_sym_BANGis] = ACTIONS(2893), - [anon_sym_in] = ACTIONS(2895), - [anon_sym_BANGin] = ACTIONS(2893), - [anon_sym_match] = ACTIONS(2895), - [anon_sym_select] = ACTIONS(2895), - [anon_sym_lock] = ACTIONS(2895), - [anon_sym_rlock] = ACTIONS(2895), - [anon_sym_unsafe] = ACTIONS(2895), - [anon_sym_sql] = ACTIONS(2895), - [sym_int_literal] = ACTIONS(2895), - [sym_float_literal] = ACTIONS(2893), - [sym_rune_literal] = ACTIONS(2893), - [anon_sym_AT] = ACTIONS(2895), - [anon_sym_shared] = ACTIONS(2895), - [anon_sym_map_LBRACK] = ACTIONS(2893), - [anon_sym_chan] = ACTIONS(2895), - [anon_sym_thread] = ACTIONS(2895), - [anon_sym_atomic] = ACTIONS(2895), - [sym___double_quote] = ACTIONS(2893), - [sym___single_quote] = ACTIONS(2893), - [sym___c_double_quote] = ACTIONS(2893), - [sym___c_single_quote] = ACTIONS(2893), - [sym___r_double_quote] = ACTIONS(2893), - [sym___r_single_quote] = ACTIONS(2893), + [anon_sym_DOT] = ACTIONS(2978), + [anon_sym_as] = ACTIONS(2978), + [anon_sym_LBRACE] = ACTIONS(2976), + [anon_sym_COMMA] = ACTIONS(2976), + [anon_sym_LPAREN] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_fn] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2978), + [anon_sym_DASH] = ACTIONS(2978), + [anon_sym_STAR] = ACTIONS(2976), + [anon_sym_SLASH] = ACTIONS(2978), + [anon_sym_PERCENT] = ACTIONS(2976), + [anon_sym_LT] = ACTIONS(2978), + [anon_sym_GT] = ACTIONS(2978), + [anon_sym_EQ_EQ] = ACTIONS(2976), + [anon_sym_BANG_EQ] = ACTIONS(2976), + [anon_sym_LT_EQ] = ACTIONS(2976), + [anon_sym_GT_EQ] = ACTIONS(2976), + [anon_sym_LBRACK] = ACTIONS(2976), + [anon_sym_RBRACK] = ACTIONS(2976), + [anon_sym_struct] = ACTIONS(2978), + [anon_sym_mut] = ACTIONS(2978), + [anon_sym_PLUS_PLUS] = ACTIONS(2976), + [anon_sym_DASH_DASH] = ACTIONS(2976), + [anon_sym_QMARK] = ACTIONS(2978), + [anon_sym_BANG] = ACTIONS(2978), + [anon_sym_go] = ACTIONS(2978), + [anon_sym_spawn] = ACTIONS(2978), + [anon_sym_json_DOTdecode] = ACTIONS(2976), + [anon_sym_LBRACK2] = ACTIONS(2978), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_CARET] = ACTIONS(2976), + [anon_sym_AMP] = ACTIONS(2978), + [anon_sym_LT_DASH] = ACTIONS(2976), + [anon_sym_LT_LT] = ACTIONS(2976), + [anon_sym_GT_GT] = ACTIONS(2978), + [anon_sym_GT_GT_GT] = ACTIONS(2976), + [anon_sym_AMP_CARET] = ACTIONS(2976), + [anon_sym_AMP_AMP] = ACTIONS(2976), + [anon_sym_PIPE_PIPE] = ACTIONS(2976), + [anon_sym_or] = ACTIONS(2978), + [sym_none] = ACTIONS(2978), + [sym_true] = ACTIONS(2978), + [sym_false] = ACTIONS(2978), + [sym_nil] = ACTIONS(2978), + [anon_sym_QMARK_DOT] = ACTIONS(2976), + [anon_sym_POUND_LBRACK] = ACTIONS(2976), + [anon_sym_if] = ACTIONS(2978), + [anon_sym_DOLLARif] = ACTIONS(2978), + [anon_sym_is] = ACTIONS(2978), + [anon_sym_BANGis] = ACTIONS(2976), + [anon_sym_in] = ACTIONS(2978), + [anon_sym_BANGin] = ACTIONS(2976), + [anon_sym_match] = ACTIONS(2978), + [anon_sym_select] = ACTIONS(2978), + [anon_sym_lock] = ACTIONS(2978), + [anon_sym_rlock] = ACTIONS(2978), + [anon_sym_unsafe] = ACTIONS(2978), + [anon_sym_sql] = ACTIONS(2978), + [sym_int_literal] = ACTIONS(2978), + [sym_float_literal] = ACTIONS(2976), + [sym_rune_literal] = ACTIONS(2976), + [anon_sym_AT] = ACTIONS(2978), + [anon_sym_shared] = ACTIONS(2978), + [anon_sym_map_LBRACK] = ACTIONS(2976), + [anon_sym_chan] = ACTIONS(2978), + [anon_sym_thread] = ACTIONS(2978), + [anon_sym_atomic] = ACTIONS(2978), + [sym___double_quote] = ACTIONS(2976), + [sym___single_quote] = ACTIONS(2976), + [sym___c_double_quote] = ACTIONS(2976), + [sym___c_single_quote] = ACTIONS(2976), + [sym___r_double_quote] = ACTIONS(2976), + [sym___r_single_quote] = ACTIONS(2976), }, - [1342] = { - [sym_identifier] = ACTIONS(3185), + [1331] = { + [sym_identifier] = ACTIONS(2974), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3185), - [anon_sym_as] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(3183), - [anon_sym_COMMA] = ACTIONS(3183), - [anon_sym_LPAREN] = ACTIONS(3183), - [anon_sym_PIPE] = ACTIONS(3185), - [anon_sym_fn] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(3183), - [anon_sym_SLASH] = ACTIONS(3185), - [anon_sym_PERCENT] = ACTIONS(3183), - [anon_sym_LT] = ACTIONS(3185), - [anon_sym_GT] = ACTIONS(3185), - [anon_sym_EQ_EQ] = ACTIONS(3183), - [anon_sym_BANG_EQ] = ACTIONS(3183), - [anon_sym_LT_EQ] = ACTIONS(3183), - [anon_sym_GT_EQ] = ACTIONS(3183), - [anon_sym_LBRACK] = ACTIONS(3183), - [anon_sym_RBRACK] = ACTIONS(3183), - [anon_sym_struct] = ACTIONS(3185), - [anon_sym_mut] = ACTIONS(3185), - [anon_sym_PLUS_PLUS] = ACTIONS(3183), - [anon_sym_DASH_DASH] = ACTIONS(3183), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_go] = ACTIONS(3185), - [anon_sym_spawn] = ACTIONS(3185), - [anon_sym_json_DOTdecode] = ACTIONS(3183), - [anon_sym_LBRACK2] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3183), - [anon_sym_CARET] = ACTIONS(3183), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_LT_DASH] = ACTIONS(3183), - [anon_sym_LT_LT] = ACTIONS(3183), - [anon_sym_GT_GT] = ACTIONS(3185), - [anon_sym_GT_GT_GT] = ACTIONS(3183), - [anon_sym_AMP_CARET] = ACTIONS(3183), - [anon_sym_AMP_AMP] = ACTIONS(3183), - [anon_sym_PIPE_PIPE] = ACTIONS(3183), - [anon_sym_or] = ACTIONS(3185), - [sym_none] = ACTIONS(3185), - [sym_true] = ACTIONS(3185), - [sym_false] = ACTIONS(3185), - [sym_nil] = ACTIONS(3185), - [anon_sym_QMARK_DOT] = ACTIONS(3183), - [anon_sym_POUND_LBRACK] = ACTIONS(3183), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_DOLLARif] = ACTIONS(3185), - [anon_sym_is] = ACTIONS(3185), - [anon_sym_BANGis] = ACTIONS(3183), - [anon_sym_in] = ACTIONS(3185), - [anon_sym_BANGin] = ACTIONS(3183), - [anon_sym_match] = ACTIONS(3185), - [anon_sym_select] = ACTIONS(3185), - [anon_sym_lock] = ACTIONS(3185), - [anon_sym_rlock] = ACTIONS(3185), - [anon_sym_unsafe] = ACTIONS(3185), - [anon_sym_sql] = ACTIONS(3185), - [sym_int_literal] = ACTIONS(3185), - [sym_float_literal] = ACTIONS(3183), - [sym_rune_literal] = ACTIONS(3183), - [anon_sym_AT] = ACTIONS(3185), - [anon_sym_shared] = ACTIONS(3185), - [anon_sym_map_LBRACK] = ACTIONS(3183), - [anon_sym_chan] = ACTIONS(3185), - [anon_sym_thread] = ACTIONS(3185), - [anon_sym_atomic] = ACTIONS(3185), - [sym___double_quote] = ACTIONS(3183), - [sym___single_quote] = ACTIONS(3183), - [sym___c_double_quote] = ACTIONS(3183), - [sym___c_single_quote] = ACTIONS(3183), - [sym___r_double_quote] = ACTIONS(3183), - [sym___r_single_quote] = ACTIONS(3183), + [anon_sym_DOT] = ACTIONS(2974), + [anon_sym_as] = ACTIONS(2974), + [anon_sym_LBRACE] = ACTIONS(2972), + [anon_sym_COMMA] = ACTIONS(2972), + [anon_sym_LPAREN] = ACTIONS(2972), + [anon_sym_PIPE] = ACTIONS(2974), + [anon_sym_fn] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(2972), + [anon_sym_SLASH] = ACTIONS(2974), + [anon_sym_PERCENT] = ACTIONS(2972), + [anon_sym_LT] = ACTIONS(2974), + [anon_sym_GT] = ACTIONS(2974), + [anon_sym_EQ_EQ] = ACTIONS(2972), + [anon_sym_BANG_EQ] = ACTIONS(2972), + [anon_sym_LT_EQ] = ACTIONS(2972), + [anon_sym_GT_EQ] = ACTIONS(2972), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_RBRACK] = ACTIONS(2972), + [anon_sym_struct] = ACTIONS(2974), + [anon_sym_mut] = ACTIONS(2974), + [anon_sym_PLUS_PLUS] = ACTIONS(2972), + [anon_sym_DASH_DASH] = ACTIONS(2972), + [anon_sym_QMARK] = ACTIONS(2974), + [anon_sym_BANG] = ACTIONS(2974), + [anon_sym_go] = ACTIONS(2974), + [anon_sym_spawn] = ACTIONS(2974), + [anon_sym_json_DOTdecode] = ACTIONS(2972), + [anon_sym_LBRACK2] = ACTIONS(2974), + [anon_sym_TILDE] = ACTIONS(2972), + [anon_sym_CARET] = ACTIONS(2972), + [anon_sym_AMP] = ACTIONS(2974), + [anon_sym_LT_DASH] = ACTIONS(2972), + [anon_sym_LT_LT] = ACTIONS(2972), + [anon_sym_GT_GT] = ACTIONS(2974), + [anon_sym_GT_GT_GT] = ACTIONS(2972), + [anon_sym_AMP_CARET] = ACTIONS(2972), + [anon_sym_AMP_AMP] = ACTIONS(2972), + [anon_sym_PIPE_PIPE] = ACTIONS(2972), + [anon_sym_or] = ACTIONS(2974), + [sym_none] = ACTIONS(2974), + [sym_true] = ACTIONS(2974), + [sym_false] = ACTIONS(2974), + [sym_nil] = ACTIONS(2974), + [anon_sym_QMARK_DOT] = ACTIONS(2972), + [anon_sym_POUND_LBRACK] = ACTIONS(2972), + [anon_sym_if] = ACTIONS(2974), + [anon_sym_DOLLARif] = ACTIONS(2974), + [anon_sym_is] = ACTIONS(2974), + [anon_sym_BANGis] = ACTIONS(2972), + [anon_sym_in] = ACTIONS(2974), + [anon_sym_BANGin] = ACTIONS(2972), + [anon_sym_match] = ACTIONS(2974), + [anon_sym_select] = ACTIONS(2974), + [anon_sym_lock] = ACTIONS(2974), + [anon_sym_rlock] = ACTIONS(2974), + [anon_sym_unsafe] = ACTIONS(2974), + [anon_sym_sql] = ACTIONS(2974), + [sym_int_literal] = ACTIONS(2974), + [sym_float_literal] = ACTIONS(2972), + [sym_rune_literal] = ACTIONS(2972), + [anon_sym_AT] = ACTIONS(2974), + [anon_sym_shared] = ACTIONS(2974), + [anon_sym_map_LBRACK] = ACTIONS(2972), + [anon_sym_chan] = ACTIONS(2974), + [anon_sym_thread] = ACTIONS(2974), + [anon_sym_atomic] = ACTIONS(2974), + [sym___double_quote] = ACTIONS(2972), + [sym___single_quote] = ACTIONS(2972), + [sym___c_double_quote] = ACTIONS(2972), + [sym___c_single_quote] = ACTIONS(2972), + [sym___r_double_quote] = ACTIONS(2972), + [sym___r_single_quote] = ACTIONS(2972), }, - [1343] = { - [sym_identifier] = ACTIONS(3189), + [1332] = { + [sym_identifier] = ACTIONS(2846), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_as] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3187), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3189), - [anon_sym_fn] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3187), - [anon_sym_SLASH] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(3189), - [anon_sym_GT] = ACTIONS(3189), - [anon_sym_EQ_EQ] = ACTIONS(3187), - [anon_sym_BANG_EQ] = ACTIONS(3187), - [anon_sym_LT_EQ] = ACTIONS(3187), - [anon_sym_GT_EQ] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3187), - [anon_sym_RBRACK] = ACTIONS(3187), - [anon_sym_struct] = ACTIONS(3189), - [anon_sym_mut] = ACTIONS(3189), - [anon_sym_PLUS_PLUS] = ACTIONS(3187), - [anon_sym_DASH_DASH] = ACTIONS(3187), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3189), - [anon_sym_go] = ACTIONS(3189), - [anon_sym_spawn] = ACTIONS(3189), - [anon_sym_json_DOTdecode] = ACTIONS(3187), - [anon_sym_LBRACK2] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3187), - [anon_sym_CARET] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3187), - [anon_sym_GT_GT] = ACTIONS(3189), - [anon_sym_GT_GT_GT] = ACTIONS(3187), - [anon_sym_AMP_CARET] = ACTIONS(3187), - [anon_sym_AMP_AMP] = ACTIONS(3187), - [anon_sym_PIPE_PIPE] = ACTIONS(3187), - [anon_sym_or] = ACTIONS(3189), - [sym_none] = ACTIONS(3189), - [sym_true] = ACTIONS(3189), - [sym_false] = ACTIONS(3189), - [sym_nil] = ACTIONS(3189), - [anon_sym_QMARK_DOT] = ACTIONS(3187), - [anon_sym_POUND_LBRACK] = ACTIONS(3187), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_DOLLARif] = ACTIONS(3189), - [anon_sym_is] = ACTIONS(3189), - [anon_sym_BANGis] = ACTIONS(3187), - [anon_sym_in] = ACTIONS(3189), - [anon_sym_BANGin] = ACTIONS(3187), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_select] = ACTIONS(3189), - [anon_sym_lock] = ACTIONS(3189), - [anon_sym_rlock] = ACTIONS(3189), - [anon_sym_unsafe] = ACTIONS(3189), - [anon_sym_sql] = ACTIONS(3189), - [sym_int_literal] = ACTIONS(3189), - [sym_float_literal] = ACTIONS(3187), - [sym_rune_literal] = ACTIONS(3187), - [anon_sym_AT] = ACTIONS(3189), - [anon_sym_shared] = ACTIONS(3189), - [anon_sym_map_LBRACK] = ACTIONS(3187), - [anon_sym_chan] = ACTIONS(3189), - [anon_sym_thread] = ACTIONS(3189), - [anon_sym_atomic] = ACTIONS(3189), - [sym___double_quote] = ACTIONS(3187), - [sym___single_quote] = ACTIONS(3187), - [sym___c_double_quote] = ACTIONS(3187), - [sym___c_single_quote] = ACTIONS(3187), - [sym___r_double_quote] = ACTIONS(3187), - [sym___r_single_quote] = ACTIONS(3187), + [anon_sym_DOT] = ACTIONS(2846), + [anon_sym_as] = ACTIONS(2846), + [anon_sym_LBRACE] = ACTIONS(2844), + [anon_sym_COMMA] = ACTIONS(2844), + [anon_sym_LPAREN] = ACTIONS(2844), + [anon_sym_PIPE] = ACTIONS(2846), + [anon_sym_fn] = ACTIONS(2846), + [anon_sym_PLUS] = ACTIONS(2846), + [anon_sym_DASH] = ACTIONS(2846), + [anon_sym_STAR] = ACTIONS(2844), + [anon_sym_SLASH] = ACTIONS(2846), + [anon_sym_PERCENT] = ACTIONS(2844), + [anon_sym_LT] = ACTIONS(2846), + [anon_sym_GT] = ACTIONS(2846), + [anon_sym_EQ_EQ] = ACTIONS(2844), + [anon_sym_BANG_EQ] = ACTIONS(2844), + [anon_sym_LT_EQ] = ACTIONS(2844), + [anon_sym_GT_EQ] = ACTIONS(2844), + [anon_sym_LBRACK] = ACTIONS(2844), + [anon_sym_RBRACK] = ACTIONS(2844), + [anon_sym_struct] = ACTIONS(2846), + [anon_sym_mut] = ACTIONS(2846), + [anon_sym_PLUS_PLUS] = ACTIONS(2844), + [anon_sym_DASH_DASH] = ACTIONS(2844), + [anon_sym_QMARK] = ACTIONS(2846), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_go] = ACTIONS(2846), + [anon_sym_spawn] = ACTIONS(2846), + [anon_sym_json_DOTdecode] = ACTIONS(2844), + [anon_sym_LBRACK2] = ACTIONS(2846), + [anon_sym_TILDE] = ACTIONS(2844), + [anon_sym_CARET] = ACTIONS(2844), + [anon_sym_AMP] = ACTIONS(2846), + [anon_sym_LT_DASH] = ACTIONS(2844), + [anon_sym_LT_LT] = ACTIONS(2844), + [anon_sym_GT_GT] = ACTIONS(2846), + [anon_sym_GT_GT_GT] = ACTIONS(2844), + [anon_sym_AMP_CARET] = ACTIONS(2844), + [anon_sym_AMP_AMP] = ACTIONS(2844), + [anon_sym_PIPE_PIPE] = ACTIONS(2844), + [anon_sym_or] = ACTIONS(2846), + [sym_none] = ACTIONS(2846), + [sym_true] = ACTIONS(2846), + [sym_false] = ACTIONS(2846), + [sym_nil] = ACTIONS(2846), + [anon_sym_QMARK_DOT] = ACTIONS(2844), + [anon_sym_POUND_LBRACK] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2846), + [anon_sym_DOLLARif] = ACTIONS(2846), + [anon_sym_is] = ACTIONS(2846), + [anon_sym_BANGis] = ACTIONS(2844), + [anon_sym_in] = ACTIONS(2846), + [anon_sym_BANGin] = ACTIONS(2844), + [anon_sym_match] = ACTIONS(2846), + [anon_sym_select] = ACTIONS(2846), + [anon_sym_lock] = ACTIONS(2846), + [anon_sym_rlock] = ACTIONS(2846), + [anon_sym_unsafe] = ACTIONS(2846), + [anon_sym_sql] = ACTIONS(2846), + [sym_int_literal] = ACTIONS(2846), + [sym_float_literal] = ACTIONS(2844), + [sym_rune_literal] = ACTIONS(2844), + [anon_sym_AT] = ACTIONS(2846), + [anon_sym_shared] = ACTIONS(2846), + [anon_sym_map_LBRACK] = ACTIONS(2844), + [anon_sym_chan] = ACTIONS(2846), + [anon_sym_thread] = ACTIONS(2846), + [anon_sym_atomic] = ACTIONS(2846), + [sym___double_quote] = ACTIONS(2844), + [sym___single_quote] = ACTIONS(2844), + [sym___c_double_quote] = ACTIONS(2844), + [sym___c_single_quote] = ACTIONS(2844), + [sym___r_double_quote] = ACTIONS(2844), + [sym___r_single_quote] = ACTIONS(2844), }, - [1344] = { - [sym_identifier] = ACTIONS(2989), + [1333] = { + [sym_identifier] = ACTIONS(2982), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2989), - [anon_sym_as] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_COMMA] = ACTIONS(2987), + [anon_sym_DOT] = ACTIONS(2984), + [anon_sym_as] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2980), + [anon_sym_COMMA] = ACTIONS(2980), [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_PIPE] = ACTIONS(2989), - [anon_sym_fn] = ACTIONS(2989), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_PIPE] = ACTIONS(2984), + [anon_sym_fn] = ACTIONS(2982), + [anon_sym_PLUS] = ACTIONS(2984), + [anon_sym_DASH] = ACTIONS(2984), [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_SLASH] = ACTIONS(2989), + [anon_sym_SLASH] = ACTIONS(2984), [anon_sym_PERCENT] = ACTIONS(2987), - [anon_sym_LT] = ACTIONS(2989), - [anon_sym_GT] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2984), + [anon_sym_GT] = ACTIONS(2984), [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_RBRACK] = ACTIONS(2980), + [anon_sym_struct] = ACTIONS(2982), + [anon_sym_mut] = ACTIONS(2982), [anon_sym_PLUS_PLUS] = ACTIONS(2987), [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_QMARK] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_go] = ACTIONS(2989), - [anon_sym_spawn] = ACTIONS(2989), - [anon_sym_json_DOTdecode] = ACTIONS(2987), - [anon_sym_LBRACK2] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2987), + [anon_sym_QMARK] = ACTIONS(2984), + [anon_sym_BANG] = ACTIONS(2984), + [anon_sym_go] = ACTIONS(2982), + [anon_sym_spawn] = ACTIONS(2982), + [anon_sym_json_DOTdecode] = ACTIONS(2980), + [anon_sym_LBRACK2] = ACTIONS(2984), + [anon_sym_TILDE] = ACTIONS(2980), [anon_sym_CARET] = ACTIONS(2987), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_LT_DASH] = ACTIONS(2987), + [anon_sym_AMP] = ACTIONS(2984), + [anon_sym_LT_DASH] = ACTIONS(2980), [anon_sym_LT_LT] = ACTIONS(2987), - [anon_sym_GT_GT] = ACTIONS(2989), + [anon_sym_GT_GT] = ACTIONS(2984), [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_or] = ACTIONS(2984), + [sym_none] = ACTIONS(2982), + [sym_true] = ACTIONS(2982), + [sym_false] = ACTIONS(2982), + [sym_nil] = ACTIONS(2982), [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_if] = ACTIONS(2982), + [anon_sym_DOLLARif] = ACTIONS(2982), + [anon_sym_is] = ACTIONS(2984), [anon_sym_BANGis] = ACTIONS(2987), - [anon_sym_in] = ACTIONS(2989), + [anon_sym_in] = ACTIONS(2984), [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_AT] = ACTIONS(2989), - [anon_sym_shared] = ACTIONS(2989), - [anon_sym_map_LBRACK] = ACTIONS(2987), - [anon_sym_chan] = ACTIONS(2989), - [anon_sym_thread] = ACTIONS(2989), - [anon_sym_atomic] = ACTIONS(2989), - [sym___double_quote] = ACTIONS(2987), - [sym___single_quote] = ACTIONS(2987), - [sym___c_double_quote] = ACTIONS(2987), - [sym___c_single_quote] = ACTIONS(2987), - [sym___r_double_quote] = ACTIONS(2987), - [sym___r_single_quote] = ACTIONS(2987), + [anon_sym_match] = ACTIONS(2982), + [anon_sym_select] = ACTIONS(2982), + [anon_sym_lock] = ACTIONS(2982), + [anon_sym_rlock] = ACTIONS(2982), + [anon_sym_unsafe] = ACTIONS(2982), + [anon_sym_sql] = ACTIONS(2982), + [sym_int_literal] = ACTIONS(2982), + [sym_float_literal] = ACTIONS(2980), + [sym_rune_literal] = ACTIONS(2980), + [anon_sym_AT] = ACTIONS(2982), + [anon_sym_shared] = ACTIONS(2982), + [anon_sym_map_LBRACK] = ACTIONS(2980), + [anon_sym_chan] = ACTIONS(2982), + [anon_sym_thread] = ACTIONS(2982), + [anon_sym_atomic] = ACTIONS(2982), + [sym___double_quote] = ACTIONS(2980), + [sym___single_quote] = ACTIONS(2980), + [sym___c_double_quote] = ACTIONS(2980), + [sym___c_single_quote] = ACTIONS(2980), + [sym___r_double_quote] = ACTIONS(2980), + [sym___r_single_quote] = ACTIONS(2980), }, - [1345] = { - [sym_identifier] = ACTIONS(2704), + [1334] = { + [sym_identifier] = ACTIONS(2850), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_as] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2702), - [anon_sym_COMMA] = ACTIONS(2702), - [anon_sym_LPAREN] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2702), - [anon_sym_SLASH] = ACTIONS(2704), - [anon_sym_PERCENT] = ACTIONS(2702), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_EQ_EQ] = ACTIONS(2702), - [anon_sym_BANG_EQ] = ACTIONS(2702), - [anon_sym_LT_EQ] = ACTIONS(2702), - [anon_sym_GT_EQ] = ACTIONS(2702), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_RBRACK] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_mut] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2702), - [anon_sym_DASH_DASH] = ACTIONS(2702), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_go] = ACTIONS(2704), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2702), - [anon_sym_LBRACK2] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2702), - [anon_sym_CARET] = ACTIONS(2702), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_LT_DASH] = ACTIONS(2702), - [anon_sym_LT_LT] = ACTIONS(2702), - [anon_sym_GT_GT] = ACTIONS(2704), - [anon_sym_GT_GT_GT] = ACTIONS(2702), - [anon_sym_AMP_CARET] = ACTIONS(2702), - [anon_sym_AMP_AMP] = ACTIONS(2702), - [anon_sym_PIPE_PIPE] = ACTIONS(2702), - [anon_sym_or] = ACTIONS(2704), - [sym_none] = ACTIONS(2704), - [sym_true] = ACTIONS(2704), - [sym_false] = ACTIONS(2704), - [sym_nil] = ACTIONS(2704), - [anon_sym_QMARK_DOT] = ACTIONS(2702), - [anon_sym_POUND_LBRACK] = ACTIONS(2702), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_DOLLARif] = ACTIONS(2704), - [anon_sym_is] = ACTIONS(2704), - [anon_sym_BANGis] = ACTIONS(2702), - [anon_sym_in] = ACTIONS(2704), - [anon_sym_BANGin] = ACTIONS(2702), - [anon_sym_match] = ACTIONS(2704), - [anon_sym_select] = ACTIONS(2704), - [anon_sym_lock] = ACTIONS(2704), - [anon_sym_rlock] = ACTIONS(2704), - [anon_sym_unsafe] = ACTIONS(2704), - [anon_sym_sql] = ACTIONS(2704), - [sym_int_literal] = ACTIONS(2704), - [sym_float_literal] = ACTIONS(2702), - [sym_rune_literal] = ACTIONS(2702), - [anon_sym_AT] = ACTIONS(2704), - [anon_sym_shared] = ACTIONS(2704), - [anon_sym_map_LBRACK] = ACTIONS(2702), - [anon_sym_chan] = ACTIONS(2704), - [anon_sym_thread] = ACTIONS(2704), - [anon_sym_atomic] = ACTIONS(2704), - [sym___double_quote] = ACTIONS(2702), - [sym___single_quote] = ACTIONS(2702), - [sym___c_double_quote] = ACTIONS(2702), - [sym___c_single_quote] = ACTIONS(2702), - [sym___r_double_quote] = ACTIONS(2702), - [sym___r_single_quote] = ACTIONS(2702), + [anon_sym_DOT] = ACTIONS(2850), + [anon_sym_as] = ACTIONS(2850), + [anon_sym_LBRACE] = ACTIONS(2848), + [anon_sym_COMMA] = ACTIONS(2848), + [anon_sym_LPAREN] = ACTIONS(2848), + [anon_sym_PIPE] = ACTIONS(2850), + [anon_sym_fn] = ACTIONS(2850), + [anon_sym_PLUS] = ACTIONS(2850), + [anon_sym_DASH] = ACTIONS(2850), + [anon_sym_STAR] = ACTIONS(2848), + [anon_sym_SLASH] = ACTIONS(2850), + [anon_sym_PERCENT] = ACTIONS(2848), + [anon_sym_LT] = ACTIONS(2850), + [anon_sym_GT] = ACTIONS(2850), + [anon_sym_EQ_EQ] = ACTIONS(2848), + [anon_sym_BANG_EQ] = ACTIONS(2848), + [anon_sym_LT_EQ] = ACTIONS(2848), + [anon_sym_GT_EQ] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2848), + [anon_sym_RBRACK] = ACTIONS(2848), + [anon_sym_struct] = ACTIONS(2850), + [anon_sym_mut] = ACTIONS(2850), + [anon_sym_PLUS_PLUS] = ACTIONS(2848), + [anon_sym_DASH_DASH] = ACTIONS(2848), + [anon_sym_QMARK] = ACTIONS(2850), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_go] = ACTIONS(2850), + [anon_sym_spawn] = ACTIONS(2850), + [anon_sym_json_DOTdecode] = ACTIONS(2848), + [anon_sym_LBRACK2] = ACTIONS(2850), + [anon_sym_TILDE] = ACTIONS(2848), + [anon_sym_CARET] = ACTIONS(2848), + [anon_sym_AMP] = ACTIONS(2850), + [anon_sym_LT_DASH] = ACTIONS(2848), + [anon_sym_LT_LT] = ACTIONS(2848), + [anon_sym_GT_GT] = ACTIONS(2850), + [anon_sym_GT_GT_GT] = ACTIONS(2848), + [anon_sym_AMP_CARET] = ACTIONS(2848), + [anon_sym_AMP_AMP] = ACTIONS(2848), + [anon_sym_PIPE_PIPE] = ACTIONS(2848), + [anon_sym_or] = ACTIONS(2850), + [sym_none] = ACTIONS(2850), + [sym_true] = ACTIONS(2850), + [sym_false] = ACTIONS(2850), + [sym_nil] = ACTIONS(2850), + [anon_sym_QMARK_DOT] = ACTIONS(2848), + [anon_sym_POUND_LBRACK] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2850), + [anon_sym_DOLLARif] = ACTIONS(2850), + [anon_sym_is] = ACTIONS(2850), + [anon_sym_BANGis] = ACTIONS(2848), + [anon_sym_in] = ACTIONS(2850), + [anon_sym_BANGin] = ACTIONS(2848), + [anon_sym_match] = ACTIONS(2850), + [anon_sym_select] = ACTIONS(2850), + [anon_sym_lock] = ACTIONS(2850), + [anon_sym_rlock] = ACTIONS(2850), + [anon_sym_unsafe] = ACTIONS(2850), + [anon_sym_sql] = ACTIONS(2850), + [sym_int_literal] = ACTIONS(2850), + [sym_float_literal] = ACTIONS(2848), + [sym_rune_literal] = ACTIONS(2848), + [anon_sym_AT] = ACTIONS(2850), + [anon_sym_shared] = ACTIONS(2850), + [anon_sym_map_LBRACK] = ACTIONS(2848), + [anon_sym_chan] = ACTIONS(2850), + [anon_sym_thread] = ACTIONS(2850), + [anon_sym_atomic] = ACTIONS(2850), + [sym___double_quote] = ACTIONS(2848), + [sym___single_quote] = ACTIONS(2848), + [sym___c_double_quote] = ACTIONS(2848), + [sym___c_single_quote] = ACTIONS(2848), + [sym___r_double_quote] = ACTIONS(2848), + [sym___r_single_quote] = ACTIONS(2848), }, - [1346] = { - [sym_identifier] = ACTIONS(3161), + [1335] = { + [sym_identifier] = ACTIONS(3030), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3161), - [anon_sym_as] = ACTIONS(3161), - [anon_sym_LBRACE] = ACTIONS(3159), - [anon_sym_COMMA] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3159), - [anon_sym_PIPE] = ACTIONS(3161), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_STAR] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3161), - [anon_sym_PERCENT] = ACTIONS(3159), - [anon_sym_LT] = ACTIONS(3161), - [anon_sym_GT] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_LT_EQ] = ACTIONS(3159), - [anon_sym_GT_EQ] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_RBRACK] = ACTIONS(3159), - [anon_sym_struct] = ACTIONS(3161), - [anon_sym_mut] = ACTIONS(3161), - [anon_sym_PLUS_PLUS] = ACTIONS(3159), - [anon_sym_DASH_DASH] = ACTIONS(3159), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(3161), - [anon_sym_go] = ACTIONS(3161), - [anon_sym_spawn] = ACTIONS(3161), - [anon_sym_json_DOTdecode] = ACTIONS(3159), - [anon_sym_LBRACK2] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3159), - [anon_sym_CARET] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_LT_DASH] = ACTIONS(3159), - [anon_sym_LT_LT] = ACTIONS(3159), - [anon_sym_GT_GT] = ACTIONS(3161), - [anon_sym_GT_GT_GT] = ACTIONS(3159), - [anon_sym_AMP_CARET] = ACTIONS(3159), - [anon_sym_AMP_AMP] = ACTIONS(3159), - [anon_sym_PIPE_PIPE] = ACTIONS(3159), - [anon_sym_or] = ACTIONS(3161), - [sym_none] = ACTIONS(3161), - [sym_true] = ACTIONS(3161), - [sym_false] = ACTIONS(3161), - [sym_nil] = ACTIONS(3161), - [anon_sym_QMARK_DOT] = ACTIONS(3159), - [anon_sym_POUND_LBRACK] = ACTIONS(3159), - [anon_sym_if] = ACTIONS(3161), - [anon_sym_DOLLARif] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3161), - [anon_sym_BANGis] = ACTIONS(3159), - [anon_sym_in] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3159), - [anon_sym_match] = ACTIONS(3161), - [anon_sym_select] = ACTIONS(3161), - [anon_sym_lock] = ACTIONS(3161), - [anon_sym_rlock] = ACTIONS(3161), - [anon_sym_unsafe] = ACTIONS(3161), - [anon_sym_sql] = ACTIONS(3161), - [sym_int_literal] = ACTIONS(3161), - [sym_float_literal] = ACTIONS(3159), - [sym_rune_literal] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(3161), - [anon_sym_shared] = ACTIONS(3161), - [anon_sym_map_LBRACK] = ACTIONS(3159), - [anon_sym_chan] = ACTIONS(3161), - [anon_sym_thread] = ACTIONS(3161), - [anon_sym_atomic] = ACTIONS(3161), - [sym___double_quote] = ACTIONS(3159), - [sym___single_quote] = ACTIONS(3159), - [sym___c_double_quote] = ACTIONS(3159), - [sym___c_single_quote] = ACTIONS(3159), - [sym___r_double_quote] = ACTIONS(3159), - [sym___r_single_quote] = ACTIONS(3159), + [anon_sym_DOT] = ACTIONS(3030), + [anon_sym_as] = ACTIONS(3030), + [anon_sym_LBRACE] = ACTIONS(3028), + [anon_sym_COMMA] = ACTIONS(3028), + [anon_sym_LPAREN] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [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_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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3028), + [sym___single_quote] = ACTIONS(3028), + [sym___c_double_quote] = ACTIONS(3028), + [sym___c_single_quote] = ACTIONS(3028), + [sym___r_double_quote] = ACTIONS(3028), + [sym___r_single_quote] = ACTIONS(3028), }, - [1347] = { - [sym_identifier] = ACTIONS(3029), + [1336] = { + [sym_identifier] = ACTIONS(3038), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2774), - [anon_sym_as] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(3027), - [anon_sym_COMMA] = 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_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_AT] = 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), - [sym___double_quote] = ACTIONS(3027), - [sym___single_quote] = ACTIONS(3027), - [sym___c_double_quote] = ACTIONS(3027), - [sym___c_single_quote] = ACTIONS(3027), - [sym___r_double_quote] = ACTIONS(3027), - [sym___r_single_quote] = ACTIONS(3027), + [anon_sym_DOT] = ACTIONS(3038), + [anon_sym_as] = ACTIONS(3038), + [anon_sym_LBRACE] = ACTIONS(3036), + [anon_sym_COMMA] = ACTIONS(3036), + [anon_sym_LPAREN] = ACTIONS(3036), + [anon_sym_PIPE] = ACTIONS(3038), + [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_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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3036), + [sym___single_quote] = ACTIONS(3036), + [sym___c_double_quote] = ACTIONS(3036), + [sym___c_single_quote] = ACTIONS(3036), + [sym___r_double_quote] = ACTIONS(3036), + [sym___r_single_quote] = ACTIONS(3036), }, - [1348] = { - [sym_identifier] = ACTIONS(2884), + [1337] = { + [sym_identifier] = ACTIONS(2890), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2884), - [anon_sym_as] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_COMMA] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_PIPE] = ACTIONS(2884), - [anon_sym_fn] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2882), - [anon_sym_SLASH] = ACTIONS(2884), - [anon_sym_PERCENT] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_GT] = ACTIONS(2884), - [anon_sym_EQ_EQ] = ACTIONS(2882), - [anon_sym_BANG_EQ] = ACTIONS(2882), - [anon_sym_LT_EQ] = ACTIONS(2882), - [anon_sym_GT_EQ] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_RBRACK] = ACTIONS(3667), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_mut] = ACTIONS(2884), - [anon_sym_PLUS_PLUS] = ACTIONS(2882), - [anon_sym_DASH_DASH] = ACTIONS(2882), - [anon_sym_QMARK] = ACTIONS(2884), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_go] = ACTIONS(2884), - [anon_sym_spawn] = ACTIONS(2884), - [anon_sym_json_DOTdecode] = ACTIONS(2882), - [anon_sym_LBRACK2] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2882), - [anon_sym_CARET] = ACTIONS(2882), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_LT_DASH] = ACTIONS(2882), - [anon_sym_LT_LT] = ACTIONS(2882), - [anon_sym_GT_GT] = ACTIONS(2884), - [anon_sym_GT_GT_GT] = ACTIONS(2882), - [anon_sym_AMP_CARET] = ACTIONS(2882), - [anon_sym_AMP_AMP] = ACTIONS(2882), - [anon_sym_PIPE_PIPE] = ACTIONS(2882), - [anon_sym_or] = ACTIONS(2884), - [sym_none] = ACTIONS(2884), - [sym_true] = ACTIONS(2884), - [sym_false] = ACTIONS(2884), - [sym_nil] = ACTIONS(2884), - [anon_sym_QMARK_DOT] = ACTIONS(2882), - [anon_sym_POUND_LBRACK] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_DOLLARif] = ACTIONS(2884), - [anon_sym_is] = ACTIONS(2884), - [anon_sym_BANGis] = ACTIONS(2882), - [anon_sym_in] = ACTIONS(2884), - [anon_sym_BANGin] = ACTIONS(2882), - [anon_sym_match] = ACTIONS(2884), - [anon_sym_select] = ACTIONS(2884), - [anon_sym_lock] = ACTIONS(2884), - [anon_sym_rlock] = ACTIONS(2884), - [anon_sym_unsafe] = ACTIONS(2884), - [anon_sym_sql] = ACTIONS(2884), - [sym_int_literal] = ACTIONS(2884), - [sym_float_literal] = ACTIONS(2882), - [sym_rune_literal] = ACTIONS(2882), - [anon_sym_AT] = ACTIONS(2884), - [anon_sym_shared] = ACTIONS(2884), - [anon_sym_map_LBRACK] = ACTIONS(2882), - [anon_sym_chan] = ACTIONS(2884), - [anon_sym_thread] = ACTIONS(2884), - [anon_sym_atomic] = ACTIONS(2884), - [sym___double_quote] = ACTIONS(2882), - [sym___single_quote] = ACTIONS(2882), - [sym___c_double_quote] = ACTIONS(2882), - [sym___c_single_quote] = ACTIONS(2882), - [sym___r_double_quote] = ACTIONS(2882), - [sym___r_single_quote] = ACTIONS(2882), + [anon_sym_DOT] = ACTIONS(2890), + [anon_sym_as] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2888), + [anon_sym_COMMA] = ACTIONS(2888), + [anon_sym_LPAREN] = ACTIONS(2888), + [anon_sym_PIPE] = ACTIONS(2890), + [anon_sym_fn] = ACTIONS(2890), + [anon_sym_PLUS] = ACTIONS(2890), + [anon_sym_DASH] = ACTIONS(2890), + [anon_sym_STAR] = ACTIONS(2888), + [anon_sym_SLASH] = ACTIONS(2890), + [anon_sym_PERCENT] = ACTIONS(2888), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_GT] = ACTIONS(2890), + [anon_sym_EQ_EQ] = ACTIONS(2888), + [anon_sym_BANG_EQ] = ACTIONS(2888), + [anon_sym_LT_EQ] = ACTIONS(2888), + [anon_sym_GT_EQ] = ACTIONS(2888), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_RBRACK] = ACTIONS(2888), + [anon_sym_struct] = ACTIONS(2890), + [anon_sym_mut] = ACTIONS(2890), + [anon_sym_PLUS_PLUS] = ACTIONS(2888), + [anon_sym_DASH_DASH] = ACTIONS(2888), + [anon_sym_QMARK] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2890), + [anon_sym_go] = ACTIONS(2890), + [anon_sym_spawn] = ACTIONS(2890), + [anon_sym_json_DOTdecode] = ACTIONS(2888), + [anon_sym_LBRACK2] = ACTIONS(2890), + [anon_sym_TILDE] = ACTIONS(2888), + [anon_sym_CARET] = ACTIONS(2888), + [anon_sym_AMP] = ACTIONS(2890), + [anon_sym_LT_DASH] = ACTIONS(2888), + [anon_sym_LT_LT] = ACTIONS(2888), + [anon_sym_GT_GT] = ACTIONS(2890), + [anon_sym_GT_GT_GT] = ACTIONS(2888), + [anon_sym_AMP_CARET] = ACTIONS(2888), + [anon_sym_AMP_AMP] = ACTIONS(2888), + [anon_sym_PIPE_PIPE] = ACTIONS(2888), + [anon_sym_or] = ACTIONS(2890), + [sym_none] = ACTIONS(2890), + [sym_true] = ACTIONS(2890), + [sym_false] = ACTIONS(2890), + [sym_nil] = ACTIONS(2890), + [anon_sym_QMARK_DOT] = ACTIONS(2888), + [anon_sym_POUND_LBRACK] = ACTIONS(2888), + [anon_sym_if] = ACTIONS(2890), + [anon_sym_DOLLARif] = ACTIONS(2890), + [anon_sym_is] = ACTIONS(2890), + [anon_sym_BANGis] = ACTIONS(2888), + [anon_sym_in] = ACTIONS(2890), + [anon_sym_BANGin] = ACTIONS(2888), + [anon_sym_match] = ACTIONS(2890), + [anon_sym_select] = ACTIONS(2890), + [anon_sym_lock] = ACTIONS(2890), + [anon_sym_rlock] = ACTIONS(2890), + [anon_sym_unsafe] = ACTIONS(2890), + [anon_sym_sql] = ACTIONS(2890), + [sym_int_literal] = ACTIONS(2890), + [sym_float_literal] = ACTIONS(2888), + [sym_rune_literal] = ACTIONS(2888), + [anon_sym_AT] = ACTIONS(2890), + [anon_sym_shared] = ACTIONS(2890), + [anon_sym_map_LBRACK] = ACTIONS(2888), + [anon_sym_chan] = ACTIONS(2890), + [anon_sym_thread] = ACTIONS(2890), + [anon_sym_atomic] = ACTIONS(2890), + [sym___double_quote] = ACTIONS(2888), + [sym___single_quote] = ACTIONS(2888), + [sym___c_double_quote] = ACTIONS(2888), + [sym___c_single_quote] = ACTIONS(2888), + [sym___r_double_quote] = ACTIONS(2888), + [sym___r_single_quote] = ACTIONS(2888), }, - [1349] = { - [sym_identifier] = ACTIONS(3013), + [1338] = { + [sym_identifier] = ACTIONS(2898), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3013), - [anon_sym_as] = ACTIONS(3013), - [anon_sym_LBRACE] = ACTIONS(3011), - [anon_sym_COMMA] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3011), - [anon_sym_PIPE] = ACTIONS(3013), - [anon_sym_fn] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3013), - [anon_sym_PERCENT] = ACTIONS(3011), - [anon_sym_LT] = ACTIONS(3013), - [anon_sym_GT] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_LT_EQ] = ACTIONS(3011), - [anon_sym_GT_EQ] = ACTIONS(3011), - [anon_sym_LBRACK] = ACTIONS(3011), - [anon_sym_RBRACK] = ACTIONS(3011), - [anon_sym_struct] = ACTIONS(3013), - [anon_sym_mut] = ACTIONS(3013), - [anon_sym_PLUS_PLUS] = ACTIONS(3011), - [anon_sym_DASH_DASH] = ACTIONS(3011), - [anon_sym_QMARK] = ACTIONS(3013), - [anon_sym_BANG] = ACTIONS(3013), - [anon_sym_go] = ACTIONS(3013), - [anon_sym_spawn] = ACTIONS(3013), - [anon_sym_json_DOTdecode] = ACTIONS(3011), - [anon_sym_LBRACK2] = ACTIONS(3013), - [anon_sym_TILDE] = ACTIONS(3011), - [anon_sym_CARET] = ACTIONS(3011), - [anon_sym_AMP] = ACTIONS(3013), - [anon_sym_LT_DASH] = ACTIONS(3011), - [anon_sym_LT_LT] = ACTIONS(3011), - [anon_sym_GT_GT] = ACTIONS(3013), - [anon_sym_GT_GT_GT] = ACTIONS(3011), - [anon_sym_AMP_CARET] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3011), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_or] = ACTIONS(3013), - [sym_none] = ACTIONS(3013), - [sym_true] = ACTIONS(3013), - [sym_false] = ACTIONS(3013), - [sym_nil] = ACTIONS(3013), - [anon_sym_QMARK_DOT] = ACTIONS(3011), - [anon_sym_POUND_LBRACK] = ACTIONS(3011), - [anon_sym_if] = ACTIONS(3013), - [anon_sym_DOLLARif] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3013), - [anon_sym_BANGis] = ACTIONS(3011), - [anon_sym_in] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3011), - [anon_sym_match] = ACTIONS(3013), - [anon_sym_select] = ACTIONS(3013), - [anon_sym_lock] = ACTIONS(3013), - [anon_sym_rlock] = ACTIONS(3013), - [anon_sym_unsafe] = ACTIONS(3013), - [anon_sym_sql] = ACTIONS(3013), - [sym_int_literal] = ACTIONS(3013), - [sym_float_literal] = ACTIONS(3011), - [sym_rune_literal] = ACTIONS(3011), - [anon_sym_AT] = ACTIONS(3013), - [anon_sym_shared] = ACTIONS(3013), - [anon_sym_map_LBRACK] = ACTIONS(3011), - [anon_sym_chan] = ACTIONS(3013), - [anon_sym_thread] = ACTIONS(3013), - [anon_sym_atomic] = ACTIONS(3013), - [sym___double_quote] = ACTIONS(3011), - [sym___single_quote] = ACTIONS(3011), - [sym___c_double_quote] = ACTIONS(3011), - [sym___c_single_quote] = ACTIONS(3011), - [sym___r_double_quote] = ACTIONS(3011), - [sym___r_single_quote] = ACTIONS(3011), + [anon_sym_DOT] = ACTIONS(2898), + [anon_sym_as] = ACTIONS(2898), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_COMMA] = ACTIONS(2896), + [anon_sym_LPAREN] = ACTIONS(2896), + [anon_sym_PIPE] = ACTIONS(2898), + [anon_sym_fn] = ACTIONS(2898), + [anon_sym_PLUS] = ACTIONS(2898), + [anon_sym_DASH] = ACTIONS(2898), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_SLASH] = ACTIONS(2898), + [anon_sym_PERCENT] = ACTIONS(2896), + [anon_sym_LT] = ACTIONS(2898), + [anon_sym_GT] = ACTIONS(2898), + [anon_sym_EQ_EQ] = ACTIONS(2896), + [anon_sym_BANG_EQ] = ACTIONS(2896), + [anon_sym_LT_EQ] = ACTIONS(2896), + [anon_sym_GT_EQ] = ACTIONS(2896), + [anon_sym_LBRACK] = ACTIONS(2896), + [anon_sym_RBRACK] = ACTIONS(2896), + [anon_sym_struct] = ACTIONS(2898), + [anon_sym_mut] = ACTIONS(2898), + [anon_sym_PLUS_PLUS] = ACTIONS(2896), + [anon_sym_DASH_DASH] = ACTIONS(2896), + [anon_sym_QMARK] = ACTIONS(2898), + [anon_sym_BANG] = ACTIONS(2898), + [anon_sym_go] = ACTIONS(2898), + [anon_sym_spawn] = ACTIONS(2898), + [anon_sym_json_DOTdecode] = ACTIONS(2896), + [anon_sym_LBRACK2] = ACTIONS(2898), + [anon_sym_TILDE] = ACTIONS(2896), + [anon_sym_CARET] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2898), + [anon_sym_LT_DASH] = ACTIONS(2896), + [anon_sym_LT_LT] = ACTIONS(2896), + [anon_sym_GT_GT] = ACTIONS(2898), + [anon_sym_GT_GT_GT] = ACTIONS(2896), + [anon_sym_AMP_CARET] = ACTIONS(2896), + [anon_sym_AMP_AMP] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2896), + [anon_sym_or] = ACTIONS(2898), + [sym_none] = ACTIONS(2898), + [sym_true] = ACTIONS(2898), + [sym_false] = ACTIONS(2898), + [sym_nil] = ACTIONS(2898), + [anon_sym_QMARK_DOT] = ACTIONS(2896), + [anon_sym_POUND_LBRACK] = ACTIONS(2896), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_DOLLARif] = ACTIONS(2898), + [anon_sym_is] = ACTIONS(2898), + [anon_sym_BANGis] = ACTIONS(2896), + [anon_sym_in] = ACTIONS(2898), + [anon_sym_BANGin] = ACTIONS(2896), + [anon_sym_match] = ACTIONS(2898), + [anon_sym_select] = ACTIONS(2898), + [anon_sym_lock] = ACTIONS(2898), + [anon_sym_rlock] = ACTIONS(2898), + [anon_sym_unsafe] = ACTIONS(2898), + [anon_sym_sql] = ACTIONS(2898), + [sym_int_literal] = ACTIONS(2898), + [sym_float_literal] = ACTIONS(2896), + [sym_rune_literal] = ACTIONS(2896), + [anon_sym_AT] = ACTIONS(2898), + [anon_sym_shared] = ACTIONS(2898), + [anon_sym_map_LBRACK] = ACTIONS(2896), + [anon_sym_chan] = ACTIONS(2898), + [anon_sym_thread] = ACTIONS(2898), + [anon_sym_atomic] = ACTIONS(2898), + [sym___double_quote] = ACTIONS(2896), + [sym___single_quote] = ACTIONS(2896), + [sym___c_double_quote] = ACTIONS(2896), + [sym___c_single_quote] = ACTIONS(2896), + [sym___r_double_quote] = ACTIONS(2896), + [sym___r_single_quote] = ACTIONS(2896), }, - [1350] = { - [sym_identifier] = ACTIONS(2963), + [1339] = { + [sym_identifier] = ACTIONS(2902), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_as] = ACTIONS(2963), - [anon_sym_LBRACE] = ACTIONS(2961), - [anon_sym_COMMA] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_fn] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_STAR] = ACTIONS(2961), - [anon_sym_SLASH] = ACTIONS(2963), - [anon_sym_PERCENT] = ACTIONS(2961), - [anon_sym_LT] = ACTIONS(2963), - [anon_sym_GT] = ACTIONS(2963), - [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(2961), - [anon_sym_RBRACK] = ACTIONS(2961), - [anon_sym_struct] = ACTIONS(2963), - [anon_sym_mut] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2961), - [anon_sym_DASH_DASH] = ACTIONS(2961), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_BANG] = ACTIONS(2963), - [anon_sym_go] = ACTIONS(2963), - [anon_sym_spawn] = ACTIONS(2963), - [anon_sym_json_DOTdecode] = ACTIONS(2961), - [anon_sym_LBRACK2] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2961), - [anon_sym_CARET] = ACTIONS(2961), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_LT_DASH] = ACTIONS(2961), - [anon_sym_LT_LT] = ACTIONS(2961), - [anon_sym_GT_GT] = ACTIONS(2963), - [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(2963), - [sym_none] = ACTIONS(2963), - [sym_true] = ACTIONS(2963), - [sym_false] = ACTIONS(2963), - [sym_nil] = ACTIONS(2963), - [anon_sym_QMARK_DOT] = ACTIONS(2961), - [anon_sym_POUND_LBRACK] = ACTIONS(2961), - [anon_sym_if] = ACTIONS(2963), - [anon_sym_DOLLARif] = ACTIONS(2963), - [anon_sym_is] = ACTIONS(2963), - [anon_sym_BANGis] = ACTIONS(2961), - [anon_sym_in] = ACTIONS(2963), - [anon_sym_BANGin] = ACTIONS(2961), - [anon_sym_match] = ACTIONS(2963), - [anon_sym_select] = ACTIONS(2963), - [anon_sym_lock] = ACTIONS(2963), - [anon_sym_rlock] = ACTIONS(2963), - [anon_sym_unsafe] = ACTIONS(2963), - [anon_sym_sql] = ACTIONS(2963), - [sym_int_literal] = ACTIONS(2963), - [sym_float_literal] = ACTIONS(2961), - [sym_rune_literal] = ACTIONS(2961), - [anon_sym_AT] = ACTIONS(2963), - [anon_sym_shared] = ACTIONS(2963), - [anon_sym_map_LBRACK] = ACTIONS(2961), - [anon_sym_chan] = ACTIONS(2963), - [anon_sym_thread] = ACTIONS(2963), - [anon_sym_atomic] = ACTIONS(2963), - [sym___double_quote] = ACTIONS(2961), - [sym___single_quote] = ACTIONS(2961), - [sym___c_double_quote] = ACTIONS(2961), - [sym___c_single_quote] = ACTIONS(2961), - [sym___r_double_quote] = ACTIONS(2961), - [sym___r_single_quote] = ACTIONS(2961), + [anon_sym_DOT] = ACTIONS(2902), + [anon_sym_as] = ACTIONS(2902), + [anon_sym_LBRACE] = ACTIONS(2900), + [anon_sym_COMMA] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2900), + [anon_sym_PIPE] = ACTIONS(2902), + [anon_sym_fn] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2902), + [anon_sym_STAR] = ACTIONS(2900), + [anon_sym_SLASH] = ACTIONS(2902), + [anon_sym_PERCENT] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_GT] = ACTIONS(2902), + [anon_sym_EQ_EQ] = ACTIONS(2900), + [anon_sym_BANG_EQ] = ACTIONS(2900), + [anon_sym_LT_EQ] = ACTIONS(2900), + [anon_sym_GT_EQ] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_RBRACK] = ACTIONS(2900), + [anon_sym_struct] = ACTIONS(2902), + [anon_sym_mut] = ACTIONS(2902), + [anon_sym_PLUS_PLUS] = ACTIONS(2900), + [anon_sym_DASH_DASH] = ACTIONS(2900), + [anon_sym_QMARK] = ACTIONS(2902), + [anon_sym_BANG] = ACTIONS(2902), + [anon_sym_go] = ACTIONS(2902), + [anon_sym_spawn] = ACTIONS(2902), + [anon_sym_json_DOTdecode] = ACTIONS(2900), + [anon_sym_LBRACK2] = ACTIONS(2902), + [anon_sym_TILDE] = ACTIONS(2900), + [anon_sym_CARET] = ACTIONS(2900), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_LT_DASH] = ACTIONS(2900), + [anon_sym_LT_LT] = ACTIONS(2900), + [anon_sym_GT_GT] = ACTIONS(2902), + [anon_sym_GT_GT_GT] = ACTIONS(2900), + [anon_sym_AMP_CARET] = ACTIONS(2900), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_PIPE_PIPE] = ACTIONS(2900), + [anon_sym_or] = ACTIONS(2902), + [sym_none] = ACTIONS(2902), + [sym_true] = ACTIONS(2902), + [sym_false] = ACTIONS(2902), + [sym_nil] = ACTIONS(2902), + [anon_sym_QMARK_DOT] = ACTIONS(2900), + [anon_sym_POUND_LBRACK] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_DOLLARif] = ACTIONS(2902), + [anon_sym_is] = ACTIONS(2902), + [anon_sym_BANGis] = ACTIONS(2900), + [anon_sym_in] = ACTIONS(2902), + [anon_sym_BANGin] = ACTIONS(2900), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_select] = ACTIONS(2902), + [anon_sym_lock] = ACTIONS(2902), + [anon_sym_rlock] = ACTIONS(2902), + [anon_sym_unsafe] = ACTIONS(2902), + [anon_sym_sql] = ACTIONS(2902), + [sym_int_literal] = ACTIONS(2902), + [sym_float_literal] = ACTIONS(2900), + [sym_rune_literal] = ACTIONS(2900), + [anon_sym_AT] = ACTIONS(2902), + [anon_sym_shared] = ACTIONS(2902), + [anon_sym_map_LBRACK] = ACTIONS(2900), + [anon_sym_chan] = ACTIONS(2902), + [anon_sym_thread] = ACTIONS(2902), + [anon_sym_atomic] = ACTIONS(2902), + [sym___double_quote] = ACTIONS(2900), + [sym___single_quote] = ACTIONS(2900), + [sym___c_double_quote] = ACTIONS(2900), + [sym___c_single_quote] = ACTIONS(2900), + [sym___r_double_quote] = ACTIONS(2900), + [sym___r_single_quote] = ACTIONS(2900), }, - [1351] = { - [sym_identifier] = ACTIONS(2772), + [1340] = { + [sym_identifier] = ACTIONS(2930), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_as] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2770), - [anon_sym_COMMA] = ACTIONS(2770), - [anon_sym_LPAREN] = ACTIONS(2770), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2770), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_PERCENT] = ACTIONS(2770), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2770), - [anon_sym_BANG_EQ] = ACTIONS(2770), - [anon_sym_LT_EQ] = ACTIONS(2770), - [anon_sym_GT_EQ] = ACTIONS(2770), - [anon_sym_LBRACK] = ACTIONS(2770), - [anon_sym_RBRACK] = ACTIONS(2770), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_mut] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2770), - [anon_sym_DASH_DASH] = ACTIONS(2770), - [anon_sym_QMARK] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2772), - [anon_sym_json_DOTdecode] = ACTIONS(2770), - [anon_sym_LBRACK2] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2770), - [anon_sym_CARET] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_LT_DASH] = ACTIONS(2770), - [anon_sym_LT_LT] = ACTIONS(2770), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_GT_GT_GT] = ACTIONS(2770), - [anon_sym_AMP_CARET] = ACTIONS(2770), - [anon_sym_AMP_AMP] = ACTIONS(2770), - [anon_sym_PIPE_PIPE] = ACTIONS(2770), - [anon_sym_or] = ACTIONS(2772), - [sym_none] = ACTIONS(2772), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_nil] = ACTIONS(2772), - [anon_sym_QMARK_DOT] = ACTIONS(2770), - [anon_sym_POUND_LBRACK] = ACTIONS(2770), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_DOLLARif] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_BANGis] = ACTIONS(2770), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_BANGin] = ACTIONS(2770), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_select] = ACTIONS(2772), - [anon_sym_lock] = ACTIONS(2772), - [anon_sym_rlock] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_sql] = ACTIONS(2772), - [sym_int_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2770), - [sym_rune_literal] = ACTIONS(2770), - [anon_sym_AT] = ACTIONS(2772), - [anon_sym_shared] = ACTIONS(2772), - [anon_sym_map_LBRACK] = ACTIONS(2770), - [anon_sym_chan] = ACTIONS(2772), - [anon_sym_thread] = ACTIONS(2772), - [anon_sym_atomic] = ACTIONS(2772), - [sym___double_quote] = ACTIONS(2770), - [sym___single_quote] = ACTIONS(2770), - [sym___c_double_quote] = ACTIONS(2770), - [sym___c_single_quote] = ACTIONS(2770), - [sym___r_double_quote] = ACTIONS(2770), - [sym___r_single_quote] = ACTIONS(2770), + [anon_sym_DOT] = ACTIONS(2930), + [anon_sym_as] = ACTIONS(2930), + [anon_sym_LBRACE] = ACTIONS(2928), + [anon_sym_COMMA] = ACTIONS(2928), + [anon_sym_LPAREN] = ACTIONS(2928), + [anon_sym_PIPE] = ACTIONS(2930), + [anon_sym_fn] = ACTIONS(2930), + [anon_sym_PLUS] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2930), + [anon_sym_STAR] = ACTIONS(2928), + [anon_sym_SLASH] = ACTIONS(2930), + [anon_sym_PERCENT] = ACTIONS(2928), + [anon_sym_LT] = ACTIONS(2930), + [anon_sym_GT] = ACTIONS(2930), + [anon_sym_EQ_EQ] = ACTIONS(2928), + [anon_sym_BANG_EQ] = ACTIONS(2928), + [anon_sym_LT_EQ] = ACTIONS(2928), + [anon_sym_GT_EQ] = ACTIONS(2928), + [anon_sym_LBRACK] = ACTIONS(2928), + [anon_sym_RBRACK] = ACTIONS(2928), + [anon_sym_struct] = ACTIONS(2930), + [anon_sym_mut] = ACTIONS(2930), + [anon_sym_PLUS_PLUS] = ACTIONS(2928), + [anon_sym_DASH_DASH] = ACTIONS(2928), + [anon_sym_QMARK] = ACTIONS(2930), + [anon_sym_BANG] = ACTIONS(2930), + [anon_sym_go] = ACTIONS(2930), + [anon_sym_spawn] = ACTIONS(2930), + [anon_sym_json_DOTdecode] = ACTIONS(2928), + [anon_sym_LBRACK2] = ACTIONS(2930), + [anon_sym_TILDE] = ACTIONS(2928), + [anon_sym_CARET] = ACTIONS(2928), + [anon_sym_AMP] = ACTIONS(2930), + [anon_sym_LT_DASH] = ACTIONS(2928), + [anon_sym_LT_LT] = ACTIONS(2928), + [anon_sym_GT_GT] = ACTIONS(2930), + [anon_sym_GT_GT_GT] = ACTIONS(2928), + [anon_sym_AMP_CARET] = ACTIONS(2928), + [anon_sym_AMP_AMP] = ACTIONS(2928), + [anon_sym_PIPE_PIPE] = ACTIONS(2928), + [anon_sym_or] = ACTIONS(2930), + [sym_none] = ACTIONS(2930), + [sym_true] = ACTIONS(2930), + [sym_false] = ACTIONS(2930), + [sym_nil] = ACTIONS(2930), + [anon_sym_QMARK_DOT] = ACTIONS(2928), + [anon_sym_POUND_LBRACK] = ACTIONS(2928), + [anon_sym_if] = ACTIONS(2930), + [anon_sym_DOLLARif] = ACTIONS(2930), + [anon_sym_is] = ACTIONS(2930), + [anon_sym_BANGis] = ACTIONS(2928), + [anon_sym_in] = ACTIONS(2930), + [anon_sym_BANGin] = ACTIONS(2928), + [anon_sym_match] = ACTIONS(2930), + [anon_sym_select] = ACTIONS(2930), + [anon_sym_lock] = ACTIONS(2930), + [anon_sym_rlock] = ACTIONS(2930), + [anon_sym_unsafe] = ACTIONS(2930), + [anon_sym_sql] = ACTIONS(2930), + [sym_int_literal] = ACTIONS(2930), + [sym_float_literal] = ACTIONS(2928), + [sym_rune_literal] = ACTIONS(2928), + [anon_sym_AT] = ACTIONS(2930), + [anon_sym_shared] = ACTIONS(2930), + [anon_sym_map_LBRACK] = ACTIONS(2928), + [anon_sym_chan] = ACTIONS(2930), + [anon_sym_thread] = ACTIONS(2930), + [anon_sym_atomic] = ACTIONS(2930), + [sym___double_quote] = ACTIONS(2928), + [sym___single_quote] = ACTIONS(2928), + [sym___c_double_quote] = ACTIONS(2928), + [sym___c_single_quote] = ACTIONS(2928), + [sym___r_double_quote] = ACTIONS(2928), + [sym___r_single_quote] = ACTIONS(2928), }, - [1352] = { - [sym_identifier] = ACTIONS(2824), + [1341] = { + [sym_identifier] = ACTIONS(2740), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2824), - [anon_sym_as] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_COMMA] = ACTIONS(2822), - [anon_sym_LPAREN] = ACTIONS(2822), - [anon_sym_PIPE] = ACTIONS(2824), - [anon_sym_fn] = ACTIONS(2824), - [anon_sym_PLUS] = ACTIONS(2824), - [anon_sym_DASH] = ACTIONS(2824), - [anon_sym_STAR] = ACTIONS(2822), - [anon_sym_SLASH] = ACTIONS(2824), - [anon_sym_PERCENT] = ACTIONS(2822), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_GT] = ACTIONS(2824), - [anon_sym_EQ_EQ] = ACTIONS(2822), - [anon_sym_BANG_EQ] = ACTIONS(2822), - [anon_sym_LT_EQ] = ACTIONS(2822), - [anon_sym_GT_EQ] = ACTIONS(2822), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_RBRACK] = ACTIONS(2822), - [anon_sym_struct] = ACTIONS(2824), - [anon_sym_mut] = ACTIONS(2824), - [anon_sym_PLUS_PLUS] = ACTIONS(2822), - [anon_sym_DASH_DASH] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_BANG] = ACTIONS(2824), - [anon_sym_go] = ACTIONS(2824), - [anon_sym_spawn] = ACTIONS(2824), - [anon_sym_json_DOTdecode] = ACTIONS(2822), - [anon_sym_LBRACK2] = ACTIONS(2824), - [anon_sym_TILDE] = ACTIONS(2822), - [anon_sym_CARET] = ACTIONS(2822), - [anon_sym_AMP] = ACTIONS(2824), - [anon_sym_LT_DASH] = ACTIONS(2822), - [anon_sym_LT_LT] = ACTIONS(2822), - [anon_sym_GT_GT] = ACTIONS(2824), - [anon_sym_GT_GT_GT] = ACTIONS(2822), - [anon_sym_AMP_CARET] = ACTIONS(2822), - [anon_sym_AMP_AMP] = ACTIONS(2822), - [anon_sym_PIPE_PIPE] = ACTIONS(2822), - [anon_sym_or] = ACTIONS(2824), - [sym_none] = ACTIONS(2824), - [sym_true] = ACTIONS(2824), - [sym_false] = ACTIONS(2824), - [sym_nil] = ACTIONS(2824), - [anon_sym_QMARK_DOT] = ACTIONS(2822), - [anon_sym_POUND_LBRACK] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2824), - [anon_sym_DOLLARif] = ACTIONS(2824), - [anon_sym_is] = ACTIONS(2824), - [anon_sym_BANGis] = ACTIONS(2822), - [anon_sym_in] = ACTIONS(2824), - [anon_sym_BANGin] = ACTIONS(2822), - [anon_sym_match] = ACTIONS(2824), - [anon_sym_select] = ACTIONS(2824), - [anon_sym_lock] = ACTIONS(2824), - [anon_sym_rlock] = ACTIONS(2824), - [anon_sym_unsafe] = ACTIONS(2824), - [anon_sym_sql] = ACTIONS(2824), - [sym_int_literal] = ACTIONS(2824), - [sym_float_literal] = ACTIONS(2822), - [sym_rune_literal] = ACTIONS(2822), - [anon_sym_AT] = ACTIONS(2824), - [anon_sym_shared] = ACTIONS(2824), - [anon_sym_map_LBRACK] = ACTIONS(2822), - [anon_sym_chan] = ACTIONS(2824), - [anon_sym_thread] = ACTIONS(2824), - [anon_sym_atomic] = ACTIONS(2824), - [sym___double_quote] = ACTIONS(2822), - [sym___single_quote] = ACTIONS(2822), - [sym___c_double_quote] = ACTIONS(2822), - [sym___c_single_quote] = ACTIONS(2822), - [sym___r_double_quote] = ACTIONS(2822), - [sym___r_single_quote] = ACTIONS(2822), + [anon_sym_DOT] = ACTIONS(2740), + [anon_sym_as] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_COMMA] = ACTIONS(2738), + [anon_sym_LPAREN] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2740), + [anon_sym_fn] = ACTIONS(2740), + [anon_sym_PLUS] = ACTIONS(2740), + [anon_sym_DASH] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(2738), + [anon_sym_SLASH] = ACTIONS(2740), + [anon_sym_PERCENT] = ACTIONS(2738), + [anon_sym_LT] = ACTIONS(2740), + [anon_sym_GT] = ACTIONS(2740), + [anon_sym_EQ_EQ] = ACTIONS(2738), + [anon_sym_BANG_EQ] = ACTIONS(2738), + [anon_sym_LT_EQ] = ACTIONS(2738), + [anon_sym_GT_EQ] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2738), + [anon_sym_RBRACK] = ACTIONS(2738), + [anon_sym_struct] = ACTIONS(2740), + [anon_sym_mut] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2738), + [anon_sym_DASH_DASH] = ACTIONS(2738), + [anon_sym_QMARK] = ACTIONS(2740), + [anon_sym_BANG] = ACTIONS(2740), + [anon_sym_go] = ACTIONS(2740), + [anon_sym_spawn] = ACTIONS(2740), + [anon_sym_json_DOTdecode] = ACTIONS(2738), + [anon_sym_LBRACK2] = ACTIONS(2740), + [anon_sym_TILDE] = ACTIONS(2738), + [anon_sym_CARET] = ACTIONS(2738), + [anon_sym_AMP] = ACTIONS(2740), + [anon_sym_LT_DASH] = ACTIONS(2738), + [anon_sym_LT_LT] = ACTIONS(2738), + [anon_sym_GT_GT] = ACTIONS(2740), + [anon_sym_GT_GT_GT] = ACTIONS(2738), + [anon_sym_AMP_CARET] = ACTIONS(2738), + [anon_sym_AMP_AMP] = ACTIONS(2738), + [anon_sym_PIPE_PIPE] = ACTIONS(2738), + [anon_sym_or] = ACTIONS(2740), + [sym_none] = ACTIONS(2740), + [sym_true] = ACTIONS(2740), + [sym_false] = ACTIONS(2740), + [sym_nil] = ACTIONS(2740), + [anon_sym_QMARK_DOT] = ACTIONS(2738), + [anon_sym_POUND_LBRACK] = ACTIONS(2738), + [anon_sym_if] = ACTIONS(2740), + [anon_sym_DOLLARif] = ACTIONS(2740), + [anon_sym_is] = ACTIONS(2740), + [anon_sym_BANGis] = ACTIONS(2738), + [anon_sym_in] = ACTIONS(2740), + [anon_sym_BANGin] = ACTIONS(2738), + [anon_sym_match] = ACTIONS(2740), + [anon_sym_select] = ACTIONS(2740), + [anon_sym_lock] = ACTIONS(2740), + [anon_sym_rlock] = ACTIONS(2740), + [anon_sym_unsafe] = ACTIONS(2740), + [anon_sym_sql] = ACTIONS(2740), + [sym_int_literal] = ACTIONS(2740), + [sym_float_literal] = ACTIONS(2738), + [sym_rune_literal] = ACTIONS(2738), + [anon_sym_AT] = ACTIONS(2740), + [anon_sym_shared] = ACTIONS(2740), + [anon_sym_map_LBRACK] = ACTIONS(2738), + [anon_sym_chan] = ACTIONS(2740), + [anon_sym_thread] = ACTIONS(2740), + [anon_sym_atomic] = ACTIONS(2740), + [sym___double_quote] = ACTIONS(2738), + [sym___single_quote] = ACTIONS(2738), + [sym___c_double_quote] = ACTIONS(2738), + [sym___c_single_quote] = ACTIONS(2738), + [sym___r_double_quote] = ACTIONS(2738), + [sym___r_single_quote] = ACTIONS(2738), + }, + [1342] = { + [sym_identifier] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2994), + [anon_sym_as] = ACTIONS(2994), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_COMMA] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_PIPE] = ACTIONS(2994), + [anon_sym_fn] = ACTIONS(2992), + [anon_sym_PLUS] = ACTIONS(2994), + [anon_sym_DASH] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2997), + [anon_sym_SLASH] = ACTIONS(2994), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2994), + [anon_sym_GT] = ACTIONS(2994), + [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(2990), + [anon_sym_struct] = ACTIONS(2992), + [anon_sym_mut] = ACTIONS(2992), + [anon_sym_PLUS_PLUS] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_BANG] = ACTIONS(2994), + [anon_sym_go] = ACTIONS(2992), + [anon_sym_spawn] = ACTIONS(2992), + [anon_sym_json_DOTdecode] = ACTIONS(2990), + [anon_sym_LBRACK2] = ACTIONS(2994), + [anon_sym_TILDE] = ACTIONS(2990), + [anon_sym_CARET] = ACTIONS(2997), + [anon_sym_AMP] = ACTIONS(2994), + [anon_sym_LT_DASH] = ACTIONS(2990), + [anon_sym_LT_LT] = ACTIONS(2997), + [anon_sym_GT_GT] = ACTIONS(2994), + [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(2994), + [sym_none] = ACTIONS(2992), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [sym_nil] = ACTIONS(2992), + [anon_sym_QMARK_DOT] = ACTIONS(2997), + [anon_sym_POUND_LBRACK] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2992), + [anon_sym_DOLLARif] = ACTIONS(2992), + [anon_sym_is] = ACTIONS(2994), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(2994), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2992), + [anon_sym_select] = ACTIONS(2992), + [anon_sym_lock] = ACTIONS(2992), + [anon_sym_rlock] = ACTIONS(2992), + [anon_sym_unsafe] = ACTIONS(2992), + [anon_sym_sql] = ACTIONS(2992), + [sym_int_literal] = ACTIONS(2992), + [sym_float_literal] = ACTIONS(2990), + [sym_rune_literal] = ACTIONS(2990), + [anon_sym_AT] = ACTIONS(2992), + [anon_sym_shared] = ACTIONS(2992), + [anon_sym_map_LBRACK] = ACTIONS(2990), + [anon_sym_chan] = ACTIONS(2992), + [anon_sym_thread] = ACTIONS(2992), + [anon_sym_atomic] = ACTIONS(2992), + [sym___double_quote] = ACTIONS(2990), + [sym___single_quote] = ACTIONS(2990), + [sym___c_double_quote] = ACTIONS(2990), + [sym___c_single_quote] = ACTIONS(2990), + [sym___r_double_quote] = ACTIONS(2990), + [sym___r_single_quote] = ACTIONS(2990), + }, + [1343] = { + [sym_reference_expression] = STATE(4570), + [sym_type_reference_expression] = STATE(2164), + [sym_plain_type] = STATE(2202), + [sym__plain_type_without_special] = STATE(2191), + [sym_anon_struct_type] = STATE(2192), + [sym_multi_return_type] = STATE(2191), + [sym_result_type] = STATE(2191), + [sym_option_type] = STATE(2191), + [sym_qualified_type] = STATE(2164), + [sym_fixed_array_type] = STATE(2192), + [sym_array_type] = STATE(2192), + [sym_pointer_type] = STATE(2192), + [sym_wrong_pointer_type] = STATE(2192), + [sym_map_type] = STATE(2192), + [sym_channel_type] = STATE(2192), + [sym_shared_type] = STATE(2192), + [sym_thread_type] = STATE(2192), + [sym_atomic_type] = STATE(2192), + [sym_generic_type] = STATE(2192), + [sym_function_type] = STATE(2192), + [sym_identifier] = ACTIONS(3673), + [anon_sym_LF] = ACTIONS(561), + [anon_sym_CR] = ACTIONS(561), + [anon_sym_CR_LF] = ACTIONS(561), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_DOT] = ACTIONS(561), + [anon_sym_as] = ACTIONS(561), + [anon_sym_COMMA] = ACTIONS(561), + [anon_sym_RBRACE] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym___global] = ACTIONS(561), + [anon_sym_PIPE] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(3677), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(3679), + [anon_sym_SLASH] = ACTIONS(561), + [anon_sym_PERCENT] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(561), + [anon_sym_GT] = ACTIONS(561), + [anon_sym_EQ_EQ] = ACTIONS(561), + [anon_sym_BANG_EQ] = ACTIONS(561), + [anon_sym_LT_EQ] = ACTIONS(561), + [anon_sym_GT_EQ] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_struct] = ACTIONS(3681), + [anon_sym_pub] = ACTIONS(561), + [anon_sym_mut] = ACTIONS(561), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [anon_sym_QMARK] = ACTIONS(3683), + [anon_sym_BANG] = ACTIONS(3685), + [anon_sym_LBRACK2] = ACTIONS(3687), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(3689), + [anon_sym_LT_LT] = ACTIONS(561), + [anon_sym_GT_GT] = ACTIONS(561), + [anon_sym_GT_GT_GT] = ACTIONS(561), + [anon_sym_AMP_CARET] = ACTIONS(561), + [anon_sym_AMP_AMP] = ACTIONS(561), + [anon_sym_PIPE_PIPE] = ACTIONS(561), + [anon_sym_or] = ACTIONS(561), + [anon_sym_QMARK_DOT] = ACTIONS(561), + [anon_sym_POUND_LBRACK] = ACTIONS(561), + [anon_sym_is] = ACTIONS(561), + [anon_sym_BANGis] = ACTIONS(561), + [anon_sym_in] = ACTIONS(561), + [anon_sym_BANGin] = ACTIONS(561), + [anon_sym_shared] = ACTIONS(3691), + [anon_sym_map_LBRACK] = ACTIONS(3693), + [anon_sym_chan] = ACTIONS(3695), + [anon_sym_thread] = ACTIONS(3697), + [anon_sym_atomic] = ACTIONS(3699), + [anon_sym_AT_LBRACK] = ACTIONS(561), + }, + [1344] = { + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2393), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(591), + [anon_sym_LF] = ACTIONS(593), + [anon_sym_CR] = ACTIONS(593), + [anon_sym_CR_LF] = ACTIONS(593), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(593), + [anon_sym_DOT] = ACTIONS(593), + [anon_sym_as] = ACTIONS(593), + [anon_sym_COMMA] = ACTIONS(593), + [anon_sym_RBRACE] = ACTIONS(593), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym___global] = ACTIONS(593), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_STAR] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(593), + [anon_sym_PERCENT] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(593), + [anon_sym_GT_EQ] = ACTIONS(593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(593), + [anon_sym_LBRACK] = ACTIONS(589), + [anon_sym_struct] = ACTIONS(601), + [anon_sym_pub] = ACTIONS(593), + [anon_sym_mut] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(593), + [anon_sym_DASH_DASH] = ACTIONS(593), + [anon_sym_QMARK] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(3704), + [anon_sym_LBRACK2] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(607), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_GT_GT_GT] = ACTIONS(593), + [anon_sym_AMP_CARET] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(593), + [anon_sym_PIPE_PIPE] = ACTIONS(593), + [anon_sym_or] = ACTIONS(593), + [anon_sym_QMARK_DOT] = ACTIONS(593), + [anon_sym_POUND_LBRACK] = ACTIONS(593), + [anon_sym_is] = ACTIONS(593), + [anon_sym_BANGis] = ACTIONS(593), + [anon_sym_in] = ACTIONS(593), + [anon_sym_BANGin] = ACTIONS(593), + [anon_sym_shared] = ACTIONS(609), + [anon_sym_map_LBRACK] = ACTIONS(543), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_AT_LBRACK] = ACTIONS(593), + }, + [1345] = { + [sym_identifier] = ACTIONS(2858), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2858), + [anon_sym_as] = ACTIONS(2858), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_COMMA] = ACTIONS(2856), + [anon_sym_LPAREN] = ACTIONS(2856), + [anon_sym_PIPE] = ACTIONS(2858), + [anon_sym_fn] = ACTIONS(2858), + [anon_sym_PLUS] = ACTIONS(2858), + [anon_sym_DASH] = ACTIONS(2858), + [anon_sym_STAR] = ACTIONS(2856), + [anon_sym_SLASH] = ACTIONS(2858), + [anon_sym_PERCENT] = ACTIONS(2856), + [anon_sym_LT] = ACTIONS(2858), + [anon_sym_GT] = ACTIONS(2858), + [anon_sym_EQ_EQ] = ACTIONS(2856), + [anon_sym_BANG_EQ] = ACTIONS(2856), + [anon_sym_LT_EQ] = ACTIONS(2856), + [anon_sym_GT_EQ] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_RBRACK] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2858), + [anon_sym_mut] = ACTIONS(2858), + [anon_sym_PLUS_PLUS] = ACTIONS(2856), + [anon_sym_DASH_DASH] = ACTIONS(2856), + [anon_sym_QMARK] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_go] = ACTIONS(2858), + [anon_sym_spawn] = ACTIONS(2858), + [anon_sym_json_DOTdecode] = ACTIONS(2856), + [anon_sym_LBRACK2] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2856), + [anon_sym_CARET] = ACTIONS(2856), + [anon_sym_AMP] = ACTIONS(2858), + [anon_sym_LT_DASH] = ACTIONS(2856), + [anon_sym_LT_LT] = ACTIONS(2856), + [anon_sym_GT_GT] = ACTIONS(2858), + [anon_sym_GT_GT_GT] = ACTIONS(2856), + [anon_sym_AMP_CARET] = ACTIONS(2856), + [anon_sym_AMP_AMP] = ACTIONS(2856), + [anon_sym_PIPE_PIPE] = ACTIONS(2856), + [anon_sym_or] = ACTIONS(2858), + [sym_none] = ACTIONS(2858), + [sym_true] = ACTIONS(2858), + [sym_false] = ACTIONS(2858), + [sym_nil] = ACTIONS(2858), + [anon_sym_QMARK_DOT] = ACTIONS(2856), + [anon_sym_POUND_LBRACK] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2858), + [anon_sym_DOLLARif] = ACTIONS(2858), + [anon_sym_is] = ACTIONS(2858), + [anon_sym_BANGis] = ACTIONS(2856), + [anon_sym_in] = ACTIONS(2858), + [anon_sym_BANGin] = ACTIONS(2856), + [anon_sym_match] = ACTIONS(2858), + [anon_sym_select] = ACTIONS(2858), + [anon_sym_lock] = ACTIONS(2858), + [anon_sym_rlock] = ACTIONS(2858), + [anon_sym_unsafe] = ACTIONS(2858), + [anon_sym_sql] = ACTIONS(2858), + [sym_int_literal] = ACTIONS(2858), + [sym_float_literal] = ACTIONS(2856), + [sym_rune_literal] = ACTIONS(2856), + [anon_sym_AT] = ACTIONS(2858), + [anon_sym_shared] = ACTIONS(2858), + [anon_sym_map_LBRACK] = ACTIONS(2856), + [anon_sym_chan] = ACTIONS(2858), + [anon_sym_thread] = ACTIONS(2858), + [anon_sym_atomic] = ACTIONS(2858), + [sym___double_quote] = ACTIONS(2856), + [sym___single_quote] = ACTIONS(2856), + [sym___c_double_quote] = ACTIONS(2856), + [sym___c_single_quote] = ACTIONS(2856), + [sym___r_double_quote] = ACTIONS(2856), + [sym___r_single_quote] = ACTIONS(2856), + }, + [1346] = { + [sym_reference_expression] = STATE(4570), + [sym_type_reference_expression] = STATE(2164), + [sym_plain_type] = STATE(2248), + [sym__plain_type_without_special] = STATE(2191), + [sym_anon_struct_type] = STATE(2192), + [sym_multi_return_type] = STATE(2191), + [sym_result_type] = STATE(2191), + [sym_option_type] = STATE(2191), + [sym_qualified_type] = STATE(2164), + [sym_fixed_array_type] = STATE(2192), + [sym_array_type] = STATE(2192), + [sym_pointer_type] = STATE(2192), + [sym_wrong_pointer_type] = STATE(2192), + [sym_map_type] = STATE(2192), + [sym_channel_type] = STATE(2192), + [sym_shared_type] = STATE(2192), + [sym_thread_type] = STATE(2192), + [sym_atomic_type] = STATE(2192), + [sym_generic_type] = STATE(2192), + [sym_function_type] = STATE(2192), + [sym_identifier] = ACTIONS(3673), + [anon_sym_LF] = ACTIONS(621), + [anon_sym_CR] = ACTIONS(621), + [anon_sym_CR_LF] = ACTIONS(621), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_as] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(3675), + [anon_sym___global] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_fn] = ACTIONS(3677), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(3679), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(621), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_EQ_EQ] = ACTIONS(621), + [anon_sym_BANG_EQ] = ACTIONS(621), + [anon_sym_LT_EQ] = ACTIONS(621), + [anon_sym_GT_EQ] = ACTIONS(621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(621), + [anon_sym_LBRACK] = ACTIONS(619), + [anon_sym_struct] = ACTIONS(3681), + [anon_sym_pub] = ACTIONS(621), + [anon_sym_mut] = ACTIONS(621), + [anon_sym_PLUS_PLUS] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(3683), + [anon_sym_BANG] = ACTIONS(3685), + [anon_sym_LBRACK2] = ACTIONS(3687), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(3689), + [anon_sym_LT_LT] = ACTIONS(621), + [anon_sym_GT_GT] = ACTIONS(621), + [anon_sym_GT_GT_GT] = ACTIONS(621), + [anon_sym_AMP_CARET] = ACTIONS(621), + [anon_sym_AMP_AMP] = ACTIONS(621), + [anon_sym_PIPE_PIPE] = ACTIONS(621), + [anon_sym_or] = ACTIONS(621), + [anon_sym_QMARK_DOT] = ACTIONS(621), + [anon_sym_POUND_LBRACK] = ACTIONS(621), + [anon_sym_is] = ACTIONS(621), + [anon_sym_BANGis] = ACTIONS(621), + [anon_sym_in] = ACTIONS(621), + [anon_sym_BANGin] = ACTIONS(621), + [anon_sym_shared] = ACTIONS(3691), + [anon_sym_map_LBRACK] = ACTIONS(3693), + [anon_sym_chan] = ACTIONS(3695), + [anon_sym_thread] = ACTIONS(3697), + [anon_sym_atomic] = ACTIONS(3699), + [anon_sym_AT_LBRACK] = ACTIONS(621), + }, + [1347] = { + [sym_identifier] = ACTIONS(3129), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3129), + [anon_sym_as] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3127), + [anon_sym_COMMA] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(3127), + [anon_sym_PIPE] = ACTIONS(3129), + [anon_sym_fn] = ACTIONS(3129), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3129), + [anon_sym_STAR] = ACTIONS(3127), + [anon_sym_SLASH] = ACTIONS(3129), + [anon_sym_PERCENT] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3129), + [anon_sym_EQ_EQ] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3127), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_LBRACK] = ACTIONS(3127), + [anon_sym_RBRACK] = ACTIONS(3127), + [anon_sym_struct] = ACTIONS(3129), + [anon_sym_mut] = ACTIONS(3129), + [anon_sym_PLUS_PLUS] = ACTIONS(3127), + [anon_sym_DASH_DASH] = ACTIONS(3127), + [anon_sym_QMARK] = ACTIONS(3129), + [anon_sym_BANG] = ACTIONS(3129), + [anon_sym_go] = ACTIONS(3129), + [anon_sym_spawn] = ACTIONS(3129), + [anon_sym_json_DOTdecode] = ACTIONS(3127), + [anon_sym_LBRACK2] = ACTIONS(3129), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_CARET] = ACTIONS(3127), + [anon_sym_AMP] = ACTIONS(3129), + [anon_sym_LT_DASH] = ACTIONS(3127), + [anon_sym_LT_LT] = ACTIONS(3127), + [anon_sym_GT_GT] = ACTIONS(3129), + [anon_sym_GT_GT_GT] = ACTIONS(3127), + [anon_sym_AMP_CARET] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_or] = ACTIONS(3129), + [sym_none] = ACTIONS(3129), + [sym_true] = ACTIONS(3129), + [sym_false] = ACTIONS(3129), + [sym_nil] = ACTIONS(3129), + [anon_sym_QMARK_DOT] = ACTIONS(3127), + [anon_sym_POUND_LBRACK] = ACTIONS(3127), + [anon_sym_if] = ACTIONS(3129), + [anon_sym_DOLLARif] = ACTIONS(3129), + [anon_sym_is] = ACTIONS(3129), + [anon_sym_BANGis] = ACTIONS(3127), + [anon_sym_in] = ACTIONS(3129), + [anon_sym_BANGin] = ACTIONS(3127), + [anon_sym_match] = ACTIONS(3129), + [anon_sym_select] = ACTIONS(3129), + [anon_sym_lock] = ACTIONS(3129), + [anon_sym_rlock] = ACTIONS(3129), + [anon_sym_unsafe] = ACTIONS(3129), + [anon_sym_sql] = ACTIONS(3129), + [sym_int_literal] = ACTIONS(3129), + [sym_float_literal] = ACTIONS(3127), + [sym_rune_literal] = ACTIONS(3127), + [anon_sym_AT] = ACTIONS(3129), + [anon_sym_shared] = ACTIONS(3129), + [anon_sym_map_LBRACK] = ACTIONS(3127), + [anon_sym_chan] = ACTIONS(3129), + [anon_sym_thread] = ACTIONS(3129), + [anon_sym_atomic] = ACTIONS(3129), + [sym___double_quote] = ACTIONS(3127), + [sym___single_quote] = ACTIONS(3127), + [sym___c_double_quote] = ACTIONS(3127), + [sym___c_single_quote] = ACTIONS(3127), + [sym___r_double_quote] = ACTIONS(3127), + [sym___r_single_quote] = ACTIONS(3127), + }, + [1348] = { + [sym_identifier] = ACTIONS(2790), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2790), + [anon_sym_as] = ACTIONS(2790), + [anon_sym_LBRACE] = ACTIONS(2788), + [anon_sym_COMMA] = ACTIONS(2788), + [anon_sym_LPAREN] = ACTIONS(2788), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_fn] = ACTIONS(2790), + [anon_sym_PLUS] = ACTIONS(2790), + [anon_sym_DASH] = ACTIONS(2790), + [anon_sym_STAR] = ACTIONS(2788), + [anon_sym_SLASH] = ACTIONS(2790), + [anon_sym_PERCENT] = ACTIONS(2788), + [anon_sym_LT] = ACTIONS(2790), + [anon_sym_GT] = ACTIONS(2790), + [anon_sym_EQ_EQ] = ACTIONS(2788), + [anon_sym_BANG_EQ] = ACTIONS(2788), + [anon_sym_LT_EQ] = ACTIONS(2788), + [anon_sym_GT_EQ] = ACTIONS(2788), + [anon_sym_LBRACK] = ACTIONS(2788), + [anon_sym_RBRACK] = ACTIONS(2788), + [anon_sym_struct] = ACTIONS(2790), + [anon_sym_mut] = ACTIONS(2790), + [anon_sym_PLUS_PLUS] = ACTIONS(2788), + [anon_sym_DASH_DASH] = ACTIONS(2788), + [anon_sym_QMARK] = ACTIONS(2790), + [anon_sym_BANG] = ACTIONS(2790), + [anon_sym_go] = ACTIONS(2790), + [anon_sym_spawn] = ACTIONS(2790), + [anon_sym_json_DOTdecode] = ACTIONS(2788), + [anon_sym_LBRACK2] = ACTIONS(2790), + [anon_sym_TILDE] = ACTIONS(2788), + [anon_sym_CARET] = ACTIONS(2788), + [anon_sym_AMP] = ACTIONS(2790), + [anon_sym_LT_DASH] = ACTIONS(2788), + [anon_sym_LT_LT] = ACTIONS(2788), + [anon_sym_GT_GT] = ACTIONS(2790), + [anon_sym_GT_GT_GT] = ACTIONS(2788), + [anon_sym_AMP_CARET] = ACTIONS(2788), + [anon_sym_AMP_AMP] = ACTIONS(2788), + [anon_sym_PIPE_PIPE] = ACTIONS(2788), + [anon_sym_or] = ACTIONS(2790), + [sym_none] = ACTIONS(2790), + [sym_true] = ACTIONS(2790), + [sym_false] = ACTIONS(2790), + [sym_nil] = ACTIONS(2790), + [anon_sym_QMARK_DOT] = ACTIONS(2788), + [anon_sym_POUND_LBRACK] = ACTIONS(2788), + [anon_sym_if] = ACTIONS(2790), + [anon_sym_DOLLARif] = ACTIONS(2790), + [anon_sym_is] = ACTIONS(2790), + [anon_sym_BANGis] = ACTIONS(2788), + [anon_sym_in] = ACTIONS(2790), + [anon_sym_BANGin] = ACTIONS(2788), + [anon_sym_match] = ACTIONS(2790), + [anon_sym_select] = ACTIONS(2790), + [anon_sym_lock] = ACTIONS(2790), + [anon_sym_rlock] = ACTIONS(2790), + [anon_sym_unsafe] = ACTIONS(2790), + [anon_sym_sql] = ACTIONS(2790), + [sym_int_literal] = ACTIONS(2790), + [sym_float_literal] = ACTIONS(2788), + [sym_rune_literal] = ACTIONS(2788), + [anon_sym_AT] = ACTIONS(2790), + [anon_sym_shared] = ACTIONS(2790), + [anon_sym_map_LBRACK] = ACTIONS(2788), + [anon_sym_chan] = ACTIONS(2790), + [anon_sym_thread] = ACTIONS(2790), + [anon_sym_atomic] = ACTIONS(2790), + [sym___double_quote] = ACTIONS(2788), + [sym___single_quote] = ACTIONS(2788), + [sym___c_double_quote] = ACTIONS(2788), + [sym___c_single_quote] = ACTIONS(2788), + [sym___r_double_quote] = ACTIONS(2788), + [sym___r_single_quote] = ACTIONS(2788), + }, + [1349] = { + [sym_identifier] = ACTIONS(3090), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3090), + [anon_sym_as] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3088), + [anon_sym_COMMA] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3088), + [anon_sym_PIPE] = ACTIONS(3090), + [anon_sym_fn] = ACTIONS(3090), + [anon_sym_PLUS] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_STAR] = ACTIONS(3088), + [anon_sym_SLASH] = ACTIONS(3090), + [anon_sym_PERCENT] = ACTIONS(3088), + [anon_sym_LT] = ACTIONS(3090), + [anon_sym_GT] = ACTIONS(3090), + [anon_sym_EQ_EQ] = ACTIONS(3088), + [anon_sym_BANG_EQ] = ACTIONS(3088), + [anon_sym_LT_EQ] = ACTIONS(3088), + [anon_sym_GT_EQ] = ACTIONS(3088), + [anon_sym_LBRACK] = ACTIONS(3088), + [anon_sym_RBRACK] = ACTIONS(3088), + [anon_sym_struct] = ACTIONS(3090), + [anon_sym_mut] = ACTIONS(3090), + [anon_sym_PLUS_PLUS] = ACTIONS(3088), + [anon_sym_DASH_DASH] = ACTIONS(3088), + [anon_sym_QMARK] = ACTIONS(3090), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_go] = ACTIONS(3090), + [anon_sym_spawn] = ACTIONS(3090), + [anon_sym_json_DOTdecode] = ACTIONS(3088), + [anon_sym_LBRACK2] = ACTIONS(3090), + [anon_sym_TILDE] = ACTIONS(3088), + [anon_sym_CARET] = ACTIONS(3088), + [anon_sym_AMP] = ACTIONS(3090), + [anon_sym_LT_DASH] = ACTIONS(3088), + [anon_sym_LT_LT] = ACTIONS(3088), + [anon_sym_GT_GT] = ACTIONS(3090), + [anon_sym_GT_GT_GT] = ACTIONS(3088), + [anon_sym_AMP_CARET] = ACTIONS(3088), + [anon_sym_AMP_AMP] = ACTIONS(3088), + [anon_sym_PIPE_PIPE] = ACTIONS(3088), + [anon_sym_or] = ACTIONS(3090), + [sym_none] = ACTIONS(3090), + [sym_true] = ACTIONS(3090), + [sym_false] = ACTIONS(3090), + [sym_nil] = ACTIONS(3090), + [anon_sym_QMARK_DOT] = ACTIONS(3088), + [anon_sym_POUND_LBRACK] = ACTIONS(3088), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_DOLLARif] = ACTIONS(3090), + [anon_sym_is] = ACTIONS(3090), + [anon_sym_BANGis] = ACTIONS(3088), + [anon_sym_in] = ACTIONS(3090), + [anon_sym_BANGin] = ACTIONS(3088), + [anon_sym_match] = ACTIONS(3090), + [anon_sym_select] = ACTIONS(3090), + [anon_sym_lock] = ACTIONS(3090), + [anon_sym_rlock] = ACTIONS(3090), + [anon_sym_unsafe] = ACTIONS(3090), + [anon_sym_sql] = ACTIONS(3090), + [sym_int_literal] = ACTIONS(3090), + [sym_float_literal] = ACTIONS(3088), + [sym_rune_literal] = ACTIONS(3088), + [anon_sym_AT] = ACTIONS(3090), + [anon_sym_shared] = ACTIONS(3090), + [anon_sym_map_LBRACK] = ACTIONS(3088), + [anon_sym_chan] = ACTIONS(3090), + [anon_sym_thread] = ACTIONS(3090), + [anon_sym_atomic] = ACTIONS(3090), + [sym___double_quote] = ACTIONS(3088), + [sym___single_quote] = ACTIONS(3088), + [sym___c_double_quote] = ACTIONS(3088), + [sym___c_single_quote] = ACTIONS(3088), + [sym___r_double_quote] = ACTIONS(3088), + [sym___r_single_quote] = ACTIONS(3088), + }, + [1350] = { + [sym_identifier] = ACTIONS(3098), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3098), + [anon_sym_as] = ACTIONS(3098), + [anon_sym_LBRACE] = ACTIONS(3096), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_PIPE] = ACTIONS(3098), + [anon_sym_fn] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_DASH] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_GT] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT_EQ] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(3096), + [anon_sym_RBRACK] = ACTIONS(3096), + [anon_sym_struct] = ACTIONS(3098), + [anon_sym_mut] = ACTIONS(3098), + [anon_sym_PLUS_PLUS] = ACTIONS(3096), + [anon_sym_DASH_DASH] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_BANG] = ACTIONS(3098), + [anon_sym_go] = ACTIONS(3098), + [anon_sym_spawn] = ACTIONS(3098), + [anon_sym_json_DOTdecode] = ACTIONS(3096), + [anon_sym_LBRACK2] = ACTIONS(3098), + [anon_sym_TILDE] = ACTIONS(3096), + [anon_sym_CARET] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(3098), + [anon_sym_LT_DASH] = ACTIONS(3096), + [anon_sym_LT_LT] = ACTIONS(3096), + [anon_sym_GT_GT] = ACTIONS(3098), + [anon_sym_GT_GT_GT] = ACTIONS(3096), + [anon_sym_AMP_CARET] = ACTIONS(3096), + [anon_sym_AMP_AMP] = ACTIONS(3096), + [anon_sym_PIPE_PIPE] = ACTIONS(3096), + [anon_sym_or] = ACTIONS(3098), + [sym_none] = ACTIONS(3098), + [sym_true] = ACTIONS(3098), + [sym_false] = ACTIONS(3098), + [sym_nil] = ACTIONS(3098), + [anon_sym_QMARK_DOT] = ACTIONS(3096), + [anon_sym_POUND_LBRACK] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3098), + [anon_sym_DOLLARif] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3098), + [anon_sym_BANGis] = ACTIONS(3096), + [anon_sym_in] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3096), + [anon_sym_match] = ACTIONS(3098), + [anon_sym_select] = ACTIONS(3098), + [anon_sym_lock] = ACTIONS(3098), + [anon_sym_rlock] = ACTIONS(3098), + [anon_sym_unsafe] = ACTIONS(3098), + [anon_sym_sql] = ACTIONS(3098), + [sym_int_literal] = ACTIONS(3098), + [sym_float_literal] = ACTIONS(3096), + [sym_rune_literal] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(3098), + [anon_sym_shared] = ACTIONS(3098), + [anon_sym_map_LBRACK] = ACTIONS(3096), + [anon_sym_chan] = ACTIONS(3098), + [anon_sym_thread] = ACTIONS(3098), + [anon_sym_atomic] = ACTIONS(3098), + [sym___double_quote] = ACTIONS(3096), + [sym___single_quote] = ACTIONS(3096), + [sym___c_double_quote] = ACTIONS(3096), + [sym___c_single_quote] = ACTIONS(3096), + [sym___r_double_quote] = ACTIONS(3096), + [sym___r_single_quote] = ACTIONS(3096), + }, + [1351] = { + [sym_identifier] = ACTIONS(3110), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3110), + [anon_sym_as] = ACTIONS(3110), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(3110), + [anon_sym_fn] = ACTIONS(3110), + [anon_sym_PLUS] = ACTIONS(3110), + [anon_sym_DASH] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(3108), + [anon_sym_SLASH] = ACTIONS(3110), + [anon_sym_PERCENT] = ACTIONS(3108), + [anon_sym_LT] = ACTIONS(3110), + [anon_sym_GT] = ACTIONS(3110), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_LT_EQ] = ACTIONS(3108), + [anon_sym_GT_EQ] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3108), + [anon_sym_RBRACK] = ACTIONS(3108), + [anon_sym_struct] = ACTIONS(3110), + [anon_sym_mut] = ACTIONS(3110), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_DASH_DASH] = ACTIONS(3108), + [anon_sym_QMARK] = ACTIONS(3110), + [anon_sym_BANG] = ACTIONS(3110), + [anon_sym_go] = ACTIONS(3110), + [anon_sym_spawn] = ACTIONS(3110), + [anon_sym_json_DOTdecode] = ACTIONS(3108), + [anon_sym_LBRACK2] = ACTIONS(3110), + [anon_sym_TILDE] = ACTIONS(3108), + [anon_sym_CARET] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_LT_DASH] = ACTIONS(3108), + [anon_sym_LT_LT] = ACTIONS(3108), + [anon_sym_GT_GT] = ACTIONS(3110), + [anon_sym_GT_GT_GT] = ACTIONS(3108), + [anon_sym_AMP_CARET] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_PIPE_PIPE] = ACTIONS(3108), + [anon_sym_or] = ACTIONS(3110), + [sym_none] = ACTIONS(3110), + [sym_true] = ACTIONS(3110), + [sym_false] = ACTIONS(3110), + [sym_nil] = ACTIONS(3110), + [anon_sym_QMARK_DOT] = ACTIONS(3108), + [anon_sym_POUND_LBRACK] = ACTIONS(3108), + [anon_sym_if] = ACTIONS(3110), + [anon_sym_DOLLARif] = ACTIONS(3110), + [anon_sym_is] = ACTIONS(3110), + [anon_sym_BANGis] = ACTIONS(3108), + [anon_sym_in] = ACTIONS(3110), + [anon_sym_BANGin] = ACTIONS(3108), + [anon_sym_match] = ACTIONS(3110), + [anon_sym_select] = ACTIONS(3110), + [anon_sym_lock] = ACTIONS(3110), + [anon_sym_rlock] = ACTIONS(3110), + [anon_sym_unsafe] = ACTIONS(3110), + [anon_sym_sql] = ACTIONS(3110), + [sym_int_literal] = ACTIONS(3110), + [sym_float_literal] = ACTIONS(3108), + [sym_rune_literal] = ACTIONS(3108), + [anon_sym_AT] = ACTIONS(3110), + [anon_sym_shared] = ACTIONS(3110), + [anon_sym_map_LBRACK] = ACTIONS(3108), + [anon_sym_chan] = ACTIONS(3110), + [anon_sym_thread] = ACTIONS(3110), + [anon_sym_atomic] = ACTIONS(3110), + [sym___double_quote] = ACTIONS(3108), + [sym___single_quote] = ACTIONS(3108), + [sym___c_double_quote] = ACTIONS(3108), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3108), + [sym___r_single_quote] = ACTIONS(3108), + }, + [1352] = { + [sym_identifier] = ACTIONS(2806), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2806), + [anon_sym_as] = ACTIONS(2806), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_COMMA] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2804), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2806), + [anon_sym_PLUS] = ACTIONS(2806), + [anon_sym_DASH] = ACTIONS(2806), + [anon_sym_STAR] = ACTIONS(2804), + [anon_sym_SLASH] = ACTIONS(2806), + [anon_sym_PERCENT] = ACTIONS(2804), + [anon_sym_LT] = ACTIONS(2806), + [anon_sym_GT] = ACTIONS(2806), + [anon_sym_EQ_EQ] = ACTIONS(2804), + [anon_sym_BANG_EQ] = ACTIONS(2804), + [anon_sym_LT_EQ] = ACTIONS(2804), + [anon_sym_GT_EQ] = ACTIONS(2804), + [anon_sym_LBRACK] = ACTIONS(2804), + [anon_sym_RBRACK] = ACTIONS(2804), + [anon_sym_struct] = ACTIONS(2806), + [anon_sym_mut] = ACTIONS(2806), + [anon_sym_PLUS_PLUS] = ACTIONS(2804), + [anon_sym_DASH_DASH] = ACTIONS(2804), + [anon_sym_QMARK] = ACTIONS(2806), + [anon_sym_BANG] = ACTIONS(2806), + [anon_sym_go] = ACTIONS(2806), + [anon_sym_spawn] = ACTIONS(2806), + [anon_sym_json_DOTdecode] = ACTIONS(2804), + [anon_sym_LBRACK2] = ACTIONS(2806), + [anon_sym_TILDE] = ACTIONS(2804), + [anon_sym_CARET] = ACTIONS(2804), + [anon_sym_AMP] = ACTIONS(2806), + [anon_sym_LT_DASH] = ACTIONS(2804), + [anon_sym_LT_LT] = ACTIONS(2804), + [anon_sym_GT_GT] = ACTIONS(2806), + [anon_sym_GT_GT_GT] = ACTIONS(2804), + [anon_sym_AMP_CARET] = ACTIONS(2804), + [anon_sym_AMP_AMP] = ACTIONS(2804), + [anon_sym_PIPE_PIPE] = ACTIONS(2804), + [anon_sym_or] = ACTIONS(2806), + [sym_none] = ACTIONS(2806), + [sym_true] = ACTIONS(2806), + [sym_false] = ACTIONS(2806), + [sym_nil] = ACTIONS(2806), + [anon_sym_QMARK_DOT] = ACTIONS(2804), + [anon_sym_POUND_LBRACK] = ACTIONS(2804), + [anon_sym_if] = ACTIONS(2806), + [anon_sym_DOLLARif] = ACTIONS(2806), + [anon_sym_is] = ACTIONS(2806), + [anon_sym_BANGis] = ACTIONS(2804), + [anon_sym_in] = ACTIONS(2806), + [anon_sym_BANGin] = ACTIONS(2804), + [anon_sym_match] = ACTIONS(2806), + [anon_sym_select] = ACTIONS(2806), + [anon_sym_lock] = ACTIONS(2806), + [anon_sym_rlock] = ACTIONS(2806), + [anon_sym_unsafe] = ACTIONS(2806), + [anon_sym_sql] = ACTIONS(2806), + [sym_int_literal] = ACTIONS(2806), + [sym_float_literal] = ACTIONS(2804), + [sym_rune_literal] = ACTIONS(2804), + [anon_sym_AT] = ACTIONS(2806), + [anon_sym_shared] = ACTIONS(2806), + [anon_sym_map_LBRACK] = ACTIONS(2804), + [anon_sym_chan] = ACTIONS(2806), + [anon_sym_thread] = ACTIONS(2806), + [anon_sym_atomic] = ACTIONS(2806), + [sym___double_quote] = ACTIONS(2804), + [sym___single_quote] = ACTIONS(2804), + [sym___c_double_quote] = ACTIONS(2804), + [sym___c_single_quote] = ACTIONS(2804), + [sym___r_double_quote] = ACTIONS(2804), + [sym___r_single_quote] = ACTIONS(2804), }, [1353] = { - [sym_identifier] = ACTIONS(2911), + [sym_identifier] = ACTIONS(2830), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2911), - [anon_sym_as] = ACTIONS(2911), - [anon_sym_LBRACE] = ACTIONS(2909), - [anon_sym_COMMA] = ACTIONS(2909), - [anon_sym_LPAREN] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2911), - [anon_sym_fn] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2911), - [anon_sym_DASH] = ACTIONS(2911), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_SLASH] = ACTIONS(2911), - [anon_sym_PERCENT] = ACTIONS(2909), - [anon_sym_LT] = ACTIONS(2911), - [anon_sym_GT] = ACTIONS(2911), - [anon_sym_EQ_EQ] = ACTIONS(2909), - [anon_sym_BANG_EQ] = ACTIONS(2909), - [anon_sym_LT_EQ] = ACTIONS(2909), - [anon_sym_GT_EQ] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_RBRACK] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(2911), - [anon_sym_PLUS_PLUS] = ACTIONS(2909), - [anon_sym_DASH_DASH] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2911), - [anon_sym_BANG] = ACTIONS(2911), - [anon_sym_go] = ACTIONS(2911), - [anon_sym_spawn] = ACTIONS(2911), - [anon_sym_json_DOTdecode] = ACTIONS(2909), - [anon_sym_LBRACK2] = ACTIONS(2911), - [anon_sym_TILDE] = ACTIONS(2909), - [anon_sym_CARET] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_LT_DASH] = ACTIONS(2909), - [anon_sym_LT_LT] = ACTIONS(2909), - [anon_sym_GT_GT] = ACTIONS(2911), - [anon_sym_GT_GT_GT] = ACTIONS(2909), - [anon_sym_AMP_CARET] = ACTIONS(2909), - [anon_sym_AMP_AMP] = ACTIONS(2909), - [anon_sym_PIPE_PIPE] = ACTIONS(2909), - [anon_sym_or] = ACTIONS(2911), - [sym_none] = ACTIONS(2911), - [sym_true] = ACTIONS(2911), - [sym_false] = ACTIONS(2911), - [sym_nil] = ACTIONS(2911), - [anon_sym_QMARK_DOT] = ACTIONS(2909), - [anon_sym_POUND_LBRACK] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2911), - [anon_sym_DOLLARif] = ACTIONS(2911), - [anon_sym_is] = ACTIONS(2911), - [anon_sym_BANGis] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2911), - [anon_sym_BANGin] = ACTIONS(2909), - [anon_sym_match] = ACTIONS(2911), - [anon_sym_select] = ACTIONS(2911), - [anon_sym_lock] = ACTIONS(2911), - [anon_sym_rlock] = ACTIONS(2911), - [anon_sym_unsafe] = ACTIONS(2911), - [anon_sym_sql] = ACTIONS(2911), - [sym_int_literal] = ACTIONS(2911), - [sym_float_literal] = ACTIONS(2909), - [sym_rune_literal] = ACTIONS(2909), - [anon_sym_AT] = ACTIONS(2911), - [anon_sym_shared] = ACTIONS(2911), - [anon_sym_map_LBRACK] = ACTIONS(2909), - [anon_sym_chan] = ACTIONS(2911), - [anon_sym_thread] = ACTIONS(2911), - [anon_sym_atomic] = ACTIONS(2911), - [sym___double_quote] = ACTIONS(2909), - [sym___single_quote] = ACTIONS(2909), - [sym___c_double_quote] = ACTIONS(2909), - [sym___c_single_quote] = ACTIONS(2909), - [sym___r_double_quote] = ACTIONS(2909), - [sym___r_single_quote] = ACTIONS(2909), + [anon_sym_DOT] = ACTIONS(2830), + [anon_sym_as] = ACTIONS(2830), + [anon_sym_LBRACE] = ACTIONS(2828), + [anon_sym_COMMA] = ACTIONS(2828), + [anon_sym_LPAREN] = ACTIONS(2828), + [anon_sym_PIPE] = ACTIONS(2830), + [anon_sym_fn] = ACTIONS(2830), + [anon_sym_PLUS] = ACTIONS(2830), + [anon_sym_DASH] = ACTIONS(2830), + [anon_sym_STAR] = ACTIONS(2828), + [anon_sym_SLASH] = ACTIONS(2830), + [anon_sym_PERCENT] = ACTIONS(2828), + [anon_sym_LT] = ACTIONS(2830), + [anon_sym_GT] = ACTIONS(2830), + [anon_sym_EQ_EQ] = ACTIONS(2828), + [anon_sym_BANG_EQ] = ACTIONS(2828), + [anon_sym_LT_EQ] = ACTIONS(2828), + [anon_sym_GT_EQ] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2828), + [anon_sym_RBRACK] = ACTIONS(2828), + [anon_sym_struct] = ACTIONS(2830), + [anon_sym_mut] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2828), + [anon_sym_DASH_DASH] = ACTIONS(2828), + [anon_sym_QMARK] = ACTIONS(2830), + [anon_sym_BANG] = ACTIONS(2830), + [anon_sym_go] = ACTIONS(2830), + [anon_sym_spawn] = ACTIONS(2830), + [anon_sym_json_DOTdecode] = ACTIONS(2828), + [anon_sym_LBRACK2] = ACTIONS(2830), + [anon_sym_TILDE] = ACTIONS(2828), + [anon_sym_CARET] = ACTIONS(2828), + [anon_sym_AMP] = ACTIONS(2830), + [anon_sym_LT_DASH] = ACTIONS(2828), + [anon_sym_LT_LT] = ACTIONS(2828), + [anon_sym_GT_GT] = ACTIONS(2830), + [anon_sym_GT_GT_GT] = ACTIONS(2828), + [anon_sym_AMP_CARET] = ACTIONS(2828), + [anon_sym_AMP_AMP] = ACTIONS(2828), + [anon_sym_PIPE_PIPE] = ACTIONS(2828), + [anon_sym_or] = ACTIONS(2830), + [sym_none] = ACTIONS(2830), + [sym_true] = ACTIONS(2830), + [sym_false] = ACTIONS(2830), + [sym_nil] = ACTIONS(2830), + [anon_sym_QMARK_DOT] = ACTIONS(2828), + [anon_sym_POUND_LBRACK] = ACTIONS(2828), + [anon_sym_if] = ACTIONS(2830), + [anon_sym_DOLLARif] = ACTIONS(2830), + [anon_sym_is] = ACTIONS(2830), + [anon_sym_BANGis] = ACTIONS(2828), + [anon_sym_in] = ACTIONS(2830), + [anon_sym_BANGin] = ACTIONS(2828), + [anon_sym_match] = ACTIONS(2830), + [anon_sym_select] = ACTIONS(2830), + [anon_sym_lock] = ACTIONS(2830), + [anon_sym_rlock] = ACTIONS(2830), + [anon_sym_unsafe] = ACTIONS(2830), + [anon_sym_sql] = ACTIONS(2830), + [sym_int_literal] = ACTIONS(2830), + [sym_float_literal] = ACTIONS(2828), + [sym_rune_literal] = ACTIONS(2828), + [anon_sym_AT] = ACTIONS(2830), + [anon_sym_shared] = ACTIONS(2830), + [anon_sym_map_LBRACK] = ACTIONS(2828), + [anon_sym_chan] = ACTIONS(2830), + [anon_sym_thread] = ACTIONS(2830), + [anon_sym_atomic] = ACTIONS(2830), + [sym___double_quote] = ACTIONS(2828), + [sym___single_quote] = ACTIONS(2828), + [sym___c_double_quote] = ACTIONS(2828), + [sym___c_single_quote] = ACTIONS(2828), + [sym___r_double_quote] = ACTIONS(2828), + [sym___r_single_quote] = ACTIONS(2828), }, [1354] = { - [sym_identifier] = ACTIONS(2796), + [sym_identifier] = ACTIONS(2826), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2796), - [anon_sym_as] = ACTIONS(2796), - [anon_sym_LBRACE] = ACTIONS(2794), - [anon_sym_COMMA] = ACTIONS(2794), - [anon_sym_LPAREN] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2796), - [anon_sym_fn] = ACTIONS(2796), - [anon_sym_PLUS] = ACTIONS(2796), - [anon_sym_DASH] = ACTIONS(2796), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_SLASH] = ACTIONS(2796), - [anon_sym_PERCENT] = ACTIONS(2794), - [anon_sym_LT] = ACTIONS(2796), - [anon_sym_GT] = ACTIONS(2796), - [anon_sym_EQ_EQ] = ACTIONS(2794), - [anon_sym_BANG_EQ] = ACTIONS(2794), - [anon_sym_LT_EQ] = ACTIONS(2794), - [anon_sym_GT_EQ] = ACTIONS(2794), - [anon_sym_LBRACK] = ACTIONS(2794), - [anon_sym_RBRACK] = ACTIONS(2794), - [anon_sym_struct] = ACTIONS(2796), - [anon_sym_mut] = ACTIONS(2796), - [anon_sym_PLUS_PLUS] = ACTIONS(2794), - [anon_sym_DASH_DASH] = ACTIONS(2794), - [anon_sym_QMARK] = ACTIONS(2796), - [anon_sym_BANG] = ACTIONS(2796), - [anon_sym_go] = ACTIONS(2796), - [anon_sym_spawn] = ACTIONS(2796), - [anon_sym_json_DOTdecode] = ACTIONS(2794), - [anon_sym_LBRACK2] = ACTIONS(2796), - [anon_sym_TILDE] = ACTIONS(2794), - [anon_sym_CARET] = ACTIONS(2794), - [anon_sym_AMP] = ACTIONS(2796), - [anon_sym_LT_DASH] = ACTIONS(2794), - [anon_sym_LT_LT] = ACTIONS(2794), - [anon_sym_GT_GT] = ACTIONS(2796), - [anon_sym_GT_GT_GT] = ACTIONS(2794), - [anon_sym_AMP_CARET] = ACTIONS(2794), - [anon_sym_AMP_AMP] = ACTIONS(2794), - [anon_sym_PIPE_PIPE] = ACTIONS(2794), - [anon_sym_or] = ACTIONS(2796), - [sym_none] = ACTIONS(2796), - [sym_true] = ACTIONS(2796), - [sym_false] = ACTIONS(2796), - [sym_nil] = ACTIONS(2796), - [anon_sym_QMARK_DOT] = ACTIONS(2794), - [anon_sym_POUND_LBRACK] = ACTIONS(2794), - [anon_sym_if] = ACTIONS(2796), - [anon_sym_DOLLARif] = ACTIONS(2796), - [anon_sym_is] = ACTIONS(2796), - [anon_sym_BANGis] = ACTIONS(2794), - [anon_sym_in] = ACTIONS(2796), - [anon_sym_BANGin] = ACTIONS(2794), - [anon_sym_match] = ACTIONS(2796), - [anon_sym_select] = ACTIONS(2796), - [anon_sym_lock] = ACTIONS(2796), - [anon_sym_rlock] = ACTIONS(2796), - [anon_sym_unsafe] = ACTIONS(2796), - [anon_sym_sql] = ACTIONS(2796), - [sym_int_literal] = ACTIONS(2796), - [sym_float_literal] = ACTIONS(2794), - [sym_rune_literal] = ACTIONS(2794), - [anon_sym_AT] = ACTIONS(2796), - [anon_sym_shared] = ACTIONS(2796), - [anon_sym_map_LBRACK] = ACTIONS(2794), - [anon_sym_chan] = ACTIONS(2796), - [anon_sym_thread] = ACTIONS(2796), - [anon_sym_atomic] = ACTIONS(2796), - [sym___double_quote] = ACTIONS(2794), - [sym___single_quote] = ACTIONS(2794), - [sym___c_double_quote] = ACTIONS(2794), - [sym___c_single_quote] = ACTIONS(2794), - [sym___r_double_quote] = ACTIONS(2794), - [sym___r_single_quote] = ACTIONS(2794), + [anon_sym_DOT] = ACTIONS(2826), + [anon_sym_as] = ACTIONS(2826), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_COMMA] = ACTIONS(2824), + [anon_sym_LPAREN] = ACTIONS(2824), + [anon_sym_PIPE] = ACTIONS(2826), + [anon_sym_fn] = ACTIONS(2826), + [anon_sym_PLUS] = ACTIONS(2826), + [anon_sym_DASH] = ACTIONS(2826), + [anon_sym_STAR] = ACTIONS(2824), + [anon_sym_SLASH] = ACTIONS(2826), + [anon_sym_PERCENT] = ACTIONS(2824), + [anon_sym_LT] = ACTIONS(2826), + [anon_sym_GT] = ACTIONS(2826), + [anon_sym_EQ_EQ] = ACTIONS(2824), + [anon_sym_BANG_EQ] = ACTIONS(2824), + [anon_sym_LT_EQ] = ACTIONS(2824), + [anon_sym_GT_EQ] = ACTIONS(2824), + [anon_sym_LBRACK] = ACTIONS(2824), + [anon_sym_RBRACK] = ACTIONS(2824), + [anon_sym_struct] = ACTIONS(2826), + [anon_sym_mut] = ACTIONS(2826), + [anon_sym_PLUS_PLUS] = ACTIONS(2824), + [anon_sym_DASH_DASH] = ACTIONS(2824), + [anon_sym_QMARK] = ACTIONS(2826), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_go] = ACTIONS(2826), + [anon_sym_spawn] = ACTIONS(2826), + [anon_sym_json_DOTdecode] = ACTIONS(2824), + [anon_sym_LBRACK2] = ACTIONS(2826), + [anon_sym_TILDE] = ACTIONS(2824), + [anon_sym_CARET] = ACTIONS(2824), + [anon_sym_AMP] = ACTIONS(2826), + [anon_sym_LT_DASH] = ACTIONS(2824), + [anon_sym_LT_LT] = ACTIONS(2824), + [anon_sym_GT_GT] = ACTIONS(2826), + [anon_sym_GT_GT_GT] = ACTIONS(2824), + [anon_sym_AMP_CARET] = ACTIONS(2824), + [anon_sym_AMP_AMP] = ACTIONS(2824), + [anon_sym_PIPE_PIPE] = ACTIONS(2824), + [anon_sym_or] = ACTIONS(2826), + [sym_none] = ACTIONS(2826), + [sym_true] = ACTIONS(2826), + [sym_false] = ACTIONS(2826), + [sym_nil] = ACTIONS(2826), + [anon_sym_QMARK_DOT] = ACTIONS(2824), + [anon_sym_POUND_LBRACK] = ACTIONS(2824), + [anon_sym_if] = ACTIONS(2826), + [anon_sym_DOLLARif] = ACTIONS(2826), + [anon_sym_is] = ACTIONS(2826), + [anon_sym_BANGis] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2826), + [anon_sym_BANGin] = ACTIONS(2824), + [anon_sym_match] = ACTIONS(2826), + [anon_sym_select] = ACTIONS(2826), + [anon_sym_lock] = ACTIONS(2826), + [anon_sym_rlock] = ACTIONS(2826), + [anon_sym_unsafe] = ACTIONS(2826), + [anon_sym_sql] = ACTIONS(2826), + [sym_int_literal] = ACTIONS(2826), + [sym_float_literal] = ACTIONS(2824), + [sym_rune_literal] = ACTIONS(2824), + [anon_sym_AT] = ACTIONS(2826), + [anon_sym_shared] = ACTIONS(2826), + [anon_sym_map_LBRACK] = ACTIONS(2824), + [anon_sym_chan] = ACTIONS(2826), + [anon_sym_thread] = ACTIONS(2826), + [anon_sym_atomic] = ACTIONS(2826), + [sym___double_quote] = ACTIONS(2824), + [sym___single_quote] = ACTIONS(2824), + [sym___c_double_quote] = ACTIONS(2824), + [sym___c_single_quote] = ACTIONS(2824), + [sym___r_double_quote] = ACTIONS(2824), + [sym___r_single_quote] = ACTIONS(2824), }, [1355] = { - [sym_identifier] = ACTIONS(2812), + [sym_identifier] = ACTIONS(3137), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2812), - [anon_sym_as] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2812), - [anon_sym_fn] = ACTIONS(2812), - [anon_sym_PLUS] = ACTIONS(2812), - [anon_sym_DASH] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(2810), - [anon_sym_SLASH] = ACTIONS(2812), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_GT] = ACTIONS(2812), - [anon_sym_EQ_EQ] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_LT_EQ] = ACTIONS(2810), - [anon_sym_GT_EQ] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_RBRACK] = ACTIONS(2810), - [anon_sym_struct] = ACTIONS(2812), - [anon_sym_mut] = ACTIONS(2812), - [anon_sym_PLUS_PLUS] = ACTIONS(2810), - [anon_sym_DASH_DASH] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2812), - [anon_sym_BANG] = ACTIONS(2812), - [anon_sym_go] = ACTIONS(2812), - [anon_sym_spawn] = ACTIONS(2812), - [anon_sym_json_DOTdecode] = ACTIONS(2810), - [anon_sym_LBRACK2] = ACTIONS(2812), - [anon_sym_TILDE] = ACTIONS(2810), - [anon_sym_CARET] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(2812), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_LT_LT] = ACTIONS(2810), - [anon_sym_GT_GT] = ACTIONS(2812), - [anon_sym_GT_GT_GT] = ACTIONS(2810), - [anon_sym_AMP_CARET] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_or] = ACTIONS(2812), - [sym_none] = ACTIONS(2812), - [sym_true] = ACTIONS(2812), - [sym_false] = ACTIONS(2812), - [sym_nil] = ACTIONS(2812), - [anon_sym_QMARK_DOT] = ACTIONS(2810), - [anon_sym_POUND_LBRACK] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2812), - [anon_sym_DOLLARif] = ACTIONS(2812), - [anon_sym_is] = ACTIONS(2812), - [anon_sym_BANGis] = ACTIONS(2810), - [anon_sym_in] = ACTIONS(2812), - [anon_sym_BANGin] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2812), - [anon_sym_select] = ACTIONS(2812), - [anon_sym_lock] = ACTIONS(2812), - [anon_sym_rlock] = ACTIONS(2812), - [anon_sym_unsafe] = ACTIONS(2812), - [anon_sym_sql] = ACTIONS(2812), - [sym_int_literal] = ACTIONS(2812), - [sym_float_literal] = ACTIONS(2810), - [sym_rune_literal] = ACTIONS(2810), - [anon_sym_AT] = ACTIONS(2812), - [anon_sym_shared] = ACTIONS(2812), - [anon_sym_map_LBRACK] = ACTIONS(2810), - [anon_sym_chan] = ACTIONS(2812), - [anon_sym_thread] = ACTIONS(2812), - [anon_sym_atomic] = ACTIONS(2812), - [sym___double_quote] = ACTIONS(2810), - [sym___single_quote] = ACTIONS(2810), - [sym___c_double_quote] = ACTIONS(2810), - [sym___c_single_quote] = ACTIONS(2810), - [sym___r_double_quote] = ACTIONS(2810), - [sym___r_single_quote] = ACTIONS(2810), + [anon_sym_DOT] = ACTIONS(3137), + [anon_sym_as] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_COMMA] = ACTIONS(3135), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_PIPE] = ACTIONS(3137), + [anon_sym_fn] = ACTIONS(3137), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(3135), + [anon_sym_SLASH] = ACTIONS(3137), + [anon_sym_PERCENT] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_GT] = ACTIONS(3137), + [anon_sym_EQ_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3135), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_RBRACK] = ACTIONS(3135), + [anon_sym_struct] = ACTIONS(3137), + [anon_sym_mut] = ACTIONS(3137), + [anon_sym_PLUS_PLUS] = ACTIONS(3135), + [anon_sym_DASH_DASH] = ACTIONS(3135), + [anon_sym_QMARK] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_go] = ACTIONS(3137), + [anon_sym_spawn] = ACTIONS(3137), + [anon_sym_json_DOTdecode] = ACTIONS(3135), + [anon_sym_LBRACK2] = ACTIONS(3137), + [anon_sym_TILDE] = ACTIONS(3135), + [anon_sym_CARET] = ACTIONS(3135), + [anon_sym_AMP] = ACTIONS(3137), + [anon_sym_LT_DASH] = ACTIONS(3135), + [anon_sym_LT_LT] = ACTIONS(3135), + [anon_sym_GT_GT] = ACTIONS(3137), + [anon_sym_GT_GT_GT] = ACTIONS(3135), + [anon_sym_AMP_CARET] = ACTIONS(3135), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_or] = ACTIONS(3137), + [sym_none] = ACTIONS(3137), + [sym_true] = ACTIONS(3137), + [sym_false] = ACTIONS(3137), + [sym_nil] = ACTIONS(3137), + [anon_sym_QMARK_DOT] = ACTIONS(3135), + [anon_sym_POUND_LBRACK] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_DOLLARif] = ACTIONS(3137), + [anon_sym_is] = ACTIONS(3137), + [anon_sym_BANGis] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(3137), + [anon_sym_BANGin] = ACTIONS(3135), + [anon_sym_match] = ACTIONS(3137), + [anon_sym_select] = ACTIONS(3137), + [anon_sym_lock] = ACTIONS(3137), + [anon_sym_rlock] = ACTIONS(3137), + [anon_sym_unsafe] = ACTIONS(3137), + [anon_sym_sql] = ACTIONS(3137), + [sym_int_literal] = ACTIONS(3137), + [sym_float_literal] = ACTIONS(3135), + [sym_rune_literal] = ACTIONS(3135), + [anon_sym_AT] = ACTIONS(3137), + [anon_sym_shared] = ACTIONS(3137), + [anon_sym_map_LBRACK] = ACTIONS(3135), + [anon_sym_chan] = ACTIONS(3137), + [anon_sym_thread] = ACTIONS(3137), + [anon_sym_atomic] = ACTIONS(3137), + [sym___double_quote] = ACTIONS(3135), + [sym___single_quote] = ACTIONS(3135), + [sym___c_double_quote] = ACTIONS(3135), + [sym___c_single_quote] = ACTIONS(3135), + [sym___r_double_quote] = ACTIONS(3135), + [sym___r_single_quote] = ACTIONS(3135), }, [1356] = { - [sym_identifier] = ACTIONS(2808), + [sym_identifier] = ACTIONS(3147), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2808), - [anon_sym_as] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_fn] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(2806), - [anon_sym_SLASH] = ACTIONS(2808), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_GT] = ACTIONS(2808), - [anon_sym_EQ_EQ] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2806), - [anon_sym_LT_EQ] = ACTIONS(2806), - [anon_sym_GT_EQ] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_RBRACK] = ACTIONS(2806), - [anon_sym_struct] = ACTIONS(2808), - [anon_sym_mut] = ACTIONS(2808), - [anon_sym_PLUS_PLUS] = ACTIONS(2806), - [anon_sym_DASH_DASH] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2808), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_go] = ACTIONS(2808), - [anon_sym_spawn] = ACTIONS(2808), - [anon_sym_json_DOTdecode] = ACTIONS(2806), - [anon_sym_LBRACK2] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2806), - [anon_sym_CARET] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2808), - [anon_sym_LT_DASH] = ACTIONS(2806), - [anon_sym_LT_LT] = ACTIONS(2806), - [anon_sym_GT_GT] = ACTIONS(2808), - [anon_sym_GT_GT_GT] = ACTIONS(2806), - [anon_sym_AMP_CARET] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_or] = ACTIONS(2808), - [sym_none] = ACTIONS(2808), - [sym_true] = ACTIONS(2808), - [sym_false] = ACTIONS(2808), - [sym_nil] = ACTIONS(2808), - [anon_sym_QMARK_DOT] = ACTIONS(2806), - [anon_sym_POUND_LBRACK] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2808), - [anon_sym_DOLLARif] = ACTIONS(2808), - [anon_sym_is] = ACTIONS(2808), - [anon_sym_BANGis] = ACTIONS(2806), - [anon_sym_in] = ACTIONS(2808), - [anon_sym_BANGin] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2808), - [anon_sym_select] = ACTIONS(2808), - [anon_sym_lock] = ACTIONS(2808), - [anon_sym_rlock] = ACTIONS(2808), - [anon_sym_unsafe] = ACTIONS(2808), - [anon_sym_sql] = ACTIONS(2808), - [sym_int_literal] = ACTIONS(2808), - [sym_float_literal] = ACTIONS(2806), - [sym_rune_literal] = ACTIONS(2806), - [anon_sym_AT] = ACTIONS(2808), - [anon_sym_shared] = ACTIONS(2808), - [anon_sym_map_LBRACK] = ACTIONS(2806), - [anon_sym_chan] = ACTIONS(2808), - [anon_sym_thread] = ACTIONS(2808), - [anon_sym_atomic] = ACTIONS(2808), - [sym___double_quote] = ACTIONS(2806), - [sym___single_quote] = ACTIONS(2806), - [sym___c_double_quote] = ACTIONS(2806), - [sym___c_single_quote] = ACTIONS(2806), - [sym___r_double_quote] = ACTIONS(2806), - [sym___r_single_quote] = ACTIONS(2806), + [anon_sym_DOT] = ACTIONS(3147), + [anon_sym_as] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3145), + [anon_sym_COMMA] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_PIPE] = ACTIONS(3147), + [anon_sym_fn] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_SLASH] = ACTIONS(3147), + [anon_sym_PERCENT] = ACTIONS(3145), + [anon_sym_LT] = ACTIONS(3147), + [anon_sym_GT] = ACTIONS(3147), + [anon_sym_EQ_EQ] = ACTIONS(3145), + [anon_sym_BANG_EQ] = ACTIONS(3145), + [anon_sym_LT_EQ] = ACTIONS(3145), + [anon_sym_GT_EQ] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3145), + [anon_sym_RBRACK] = ACTIONS(3145), + [anon_sym_struct] = ACTIONS(3147), + [anon_sym_mut] = ACTIONS(3147), + [anon_sym_PLUS_PLUS] = ACTIONS(3145), + [anon_sym_DASH_DASH] = ACTIONS(3145), + [anon_sym_QMARK] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3147), + [anon_sym_go] = ACTIONS(3147), + [anon_sym_spawn] = ACTIONS(3147), + [anon_sym_json_DOTdecode] = ACTIONS(3145), + [anon_sym_LBRACK2] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3145), + [anon_sym_CARET] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym_LT_DASH] = ACTIONS(3145), + [anon_sym_LT_LT] = ACTIONS(3145), + [anon_sym_GT_GT] = ACTIONS(3147), + [anon_sym_GT_GT_GT] = ACTIONS(3145), + [anon_sym_AMP_CARET] = ACTIONS(3145), + [anon_sym_AMP_AMP] = ACTIONS(3145), + [anon_sym_PIPE_PIPE] = ACTIONS(3145), + [anon_sym_or] = ACTIONS(3147), + [sym_none] = ACTIONS(3147), + [sym_true] = ACTIONS(3147), + [sym_false] = ACTIONS(3147), + [sym_nil] = ACTIONS(3147), + [anon_sym_QMARK_DOT] = ACTIONS(3145), + [anon_sym_POUND_LBRACK] = ACTIONS(3145), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_DOLLARif] = ACTIONS(3147), + [anon_sym_is] = ACTIONS(3147), + [anon_sym_BANGis] = ACTIONS(3145), + [anon_sym_in] = ACTIONS(3147), + [anon_sym_BANGin] = ACTIONS(3145), + [anon_sym_match] = ACTIONS(3147), + [anon_sym_select] = ACTIONS(3147), + [anon_sym_lock] = ACTIONS(3147), + [anon_sym_rlock] = ACTIONS(3147), + [anon_sym_unsafe] = ACTIONS(3147), + [anon_sym_sql] = ACTIONS(3147), + [sym_int_literal] = ACTIONS(3147), + [sym_float_literal] = ACTIONS(3145), + [sym_rune_literal] = ACTIONS(3145), + [anon_sym_AT] = ACTIONS(3147), + [anon_sym_shared] = ACTIONS(3147), + [anon_sym_map_LBRACK] = ACTIONS(3145), + [anon_sym_chan] = ACTIONS(3147), + [anon_sym_thread] = ACTIONS(3147), + [anon_sym_atomic] = ACTIONS(3147), + [sym___double_quote] = ACTIONS(3145), + [sym___single_quote] = ACTIONS(3145), + [sym___c_double_quote] = ACTIONS(3145), + [sym___c_single_quote] = ACTIONS(3145), + [sym___r_double_quote] = ACTIONS(3145), + [sym___r_single_quote] = ACTIONS(3145), }, [1357] = { - [sym_identifier] = ACTIONS(2860), + [sym_identifier] = ACTIONS(2802), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2860), - [anon_sym_as] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_COMMA] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym_PIPE] = ACTIONS(2860), - [anon_sym_fn] = ACTIONS(2860), - [anon_sym_PLUS] = ACTIONS(2860), - [anon_sym_DASH] = ACTIONS(2860), - [anon_sym_STAR] = ACTIONS(2858), - [anon_sym_SLASH] = ACTIONS(2860), - [anon_sym_PERCENT] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_GT] = ACTIONS(2860), - [anon_sym_EQ_EQ] = ACTIONS(2858), - [anon_sym_BANG_EQ] = ACTIONS(2858), - [anon_sym_LT_EQ] = ACTIONS(2858), - [anon_sym_GT_EQ] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_RBRACK] = ACTIONS(2858), - [anon_sym_struct] = ACTIONS(2860), - [anon_sym_mut] = ACTIONS(2860), - [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_DASH_DASH] = ACTIONS(2858), - [anon_sym_QMARK] = ACTIONS(2860), - [anon_sym_BANG] = ACTIONS(2860), - [anon_sym_go] = ACTIONS(2860), - [anon_sym_spawn] = ACTIONS(2860), - [anon_sym_json_DOTdecode] = ACTIONS(2858), - [anon_sym_LBRACK2] = ACTIONS(2860), - [anon_sym_TILDE] = ACTIONS(2858), - [anon_sym_CARET] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2860), - [anon_sym_LT_DASH] = ACTIONS(2858), - [anon_sym_LT_LT] = ACTIONS(2858), - [anon_sym_GT_GT] = ACTIONS(2860), - [anon_sym_GT_GT_GT] = ACTIONS(2858), - [anon_sym_AMP_CARET] = ACTIONS(2858), - [anon_sym_AMP_AMP] = ACTIONS(2858), - [anon_sym_PIPE_PIPE] = ACTIONS(2858), - [anon_sym_or] = ACTIONS(2860), - [sym_none] = ACTIONS(2860), - [sym_true] = ACTIONS(2860), - [sym_false] = ACTIONS(2860), - [sym_nil] = ACTIONS(2860), - [anon_sym_QMARK_DOT] = ACTIONS(2858), - [anon_sym_POUND_LBRACK] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2860), - [anon_sym_DOLLARif] = ACTIONS(2860), - [anon_sym_is] = ACTIONS(2860), - [anon_sym_BANGis] = ACTIONS(2858), - [anon_sym_in] = ACTIONS(2860), - [anon_sym_BANGin] = ACTIONS(2858), - [anon_sym_match] = ACTIONS(2860), - [anon_sym_select] = ACTIONS(2860), - [anon_sym_lock] = ACTIONS(2860), - [anon_sym_rlock] = ACTIONS(2860), - [anon_sym_unsafe] = ACTIONS(2860), - [anon_sym_sql] = ACTIONS(2860), - [sym_int_literal] = ACTIONS(2860), - [sym_float_literal] = ACTIONS(2858), - [sym_rune_literal] = ACTIONS(2858), - [anon_sym_AT] = ACTIONS(2860), - [anon_sym_shared] = ACTIONS(2860), - [anon_sym_map_LBRACK] = ACTIONS(2858), - [anon_sym_chan] = ACTIONS(2860), - [anon_sym_thread] = ACTIONS(2860), - [anon_sym_atomic] = ACTIONS(2860), - [sym___double_quote] = ACTIONS(2858), - [sym___single_quote] = ACTIONS(2858), - [sym___c_double_quote] = ACTIONS(2858), - [sym___c_single_quote] = ACTIONS(2858), - [sym___r_double_quote] = ACTIONS(2858), - [sym___r_single_quote] = ACTIONS(2858), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_as] = ACTIONS(2802), + [anon_sym_LBRACE] = ACTIONS(2800), + [anon_sym_COMMA] = ACTIONS(2800), + [anon_sym_LPAREN] = ACTIONS(2800), + [anon_sym_PIPE] = ACTIONS(2802), + [anon_sym_fn] = ACTIONS(2802), + [anon_sym_PLUS] = ACTIONS(2802), + [anon_sym_DASH] = ACTIONS(2802), + [anon_sym_STAR] = ACTIONS(2800), + [anon_sym_SLASH] = ACTIONS(2802), + [anon_sym_PERCENT] = ACTIONS(2800), + [anon_sym_LT] = ACTIONS(2802), + [anon_sym_GT] = ACTIONS(2802), + [anon_sym_EQ_EQ] = ACTIONS(2800), + [anon_sym_BANG_EQ] = ACTIONS(2800), + [anon_sym_LT_EQ] = ACTIONS(2800), + [anon_sym_GT_EQ] = ACTIONS(2800), + [anon_sym_LBRACK] = ACTIONS(2800), + [anon_sym_RBRACK] = ACTIONS(2800), + [anon_sym_struct] = ACTIONS(2802), + [anon_sym_mut] = ACTIONS(2802), + [anon_sym_PLUS_PLUS] = ACTIONS(2800), + [anon_sym_DASH_DASH] = ACTIONS(2800), + [anon_sym_QMARK] = ACTIONS(2802), + [anon_sym_BANG] = ACTIONS(2802), + [anon_sym_go] = ACTIONS(2802), + [anon_sym_spawn] = ACTIONS(2802), + [anon_sym_json_DOTdecode] = ACTIONS(2800), + [anon_sym_LBRACK2] = ACTIONS(2802), + [anon_sym_TILDE] = ACTIONS(2800), + [anon_sym_CARET] = ACTIONS(2800), + [anon_sym_AMP] = ACTIONS(2802), + [anon_sym_LT_DASH] = ACTIONS(2800), + [anon_sym_LT_LT] = ACTIONS(2800), + [anon_sym_GT_GT] = ACTIONS(2802), + [anon_sym_GT_GT_GT] = ACTIONS(2800), + [anon_sym_AMP_CARET] = ACTIONS(2800), + [anon_sym_AMP_AMP] = ACTIONS(2800), + [anon_sym_PIPE_PIPE] = ACTIONS(2800), + [anon_sym_or] = ACTIONS(2802), + [sym_none] = ACTIONS(2802), + [sym_true] = ACTIONS(2802), + [sym_false] = ACTIONS(2802), + [sym_nil] = ACTIONS(2802), + [anon_sym_QMARK_DOT] = ACTIONS(2800), + [anon_sym_POUND_LBRACK] = ACTIONS(2800), + [anon_sym_if] = ACTIONS(2802), + [anon_sym_DOLLARif] = ACTIONS(2802), + [anon_sym_is] = ACTIONS(2802), + [anon_sym_BANGis] = ACTIONS(2800), + [anon_sym_in] = ACTIONS(2802), + [anon_sym_BANGin] = ACTIONS(2800), + [anon_sym_match] = ACTIONS(2802), + [anon_sym_select] = ACTIONS(2802), + [anon_sym_lock] = ACTIONS(2802), + [anon_sym_rlock] = ACTIONS(2802), + [anon_sym_unsafe] = ACTIONS(2802), + [anon_sym_sql] = ACTIONS(2802), + [sym_int_literal] = ACTIONS(2802), + [sym_float_literal] = ACTIONS(2800), + [sym_rune_literal] = ACTIONS(2800), + [anon_sym_AT] = ACTIONS(2802), + [anon_sym_shared] = ACTIONS(2802), + [anon_sym_map_LBRACK] = ACTIONS(2800), + [anon_sym_chan] = ACTIONS(2802), + [anon_sym_thread] = ACTIONS(2802), + [anon_sym_atomic] = ACTIONS(2802), + [sym___double_quote] = ACTIONS(2800), + [sym___single_quote] = ACTIONS(2800), + [sym___c_double_quote] = ACTIONS(2800), + [sym___c_single_quote] = ACTIONS(2800), + [sym___r_double_quote] = ACTIONS(2800), + [sym___r_single_quote] = ACTIONS(2800), }, [1358] = { - [sym_identifier] = ACTIONS(3073), + [sym_identifier] = ACTIONS(3042), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_as] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3071), - [anon_sym_COMMA] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3071), - [anon_sym_PIPE] = ACTIONS(3073), - [anon_sym_fn] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3071), - [anon_sym_SLASH] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3071), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_LT_EQ] = ACTIONS(3071), - [anon_sym_GT_EQ] = ACTIONS(3071), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_RBRACK] = ACTIONS(3071), - [anon_sym_struct] = ACTIONS(3073), - [anon_sym_mut] = ACTIONS(3073), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_go] = ACTIONS(3073), - [anon_sym_spawn] = ACTIONS(3073), - [anon_sym_json_DOTdecode] = ACTIONS(3071), - [anon_sym_LBRACK2] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3071), - [anon_sym_CARET] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3071), - [anon_sym_LT_LT] = ACTIONS(3071), - [anon_sym_GT_GT] = ACTIONS(3073), - [anon_sym_GT_GT_GT] = ACTIONS(3071), - [anon_sym_AMP_CARET] = ACTIONS(3071), - [anon_sym_AMP_AMP] = ACTIONS(3071), - [anon_sym_PIPE_PIPE] = ACTIONS(3071), - [anon_sym_or] = ACTIONS(3073), - [sym_none] = ACTIONS(3073), - [sym_true] = ACTIONS(3073), - [sym_false] = ACTIONS(3073), - [sym_nil] = ACTIONS(3073), - [anon_sym_QMARK_DOT] = ACTIONS(3071), - [anon_sym_POUND_LBRACK] = ACTIONS(3071), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_DOLLARif] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3073), - [anon_sym_BANGis] = ACTIONS(3071), - [anon_sym_in] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3071), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_select] = ACTIONS(3073), - [anon_sym_lock] = ACTIONS(3073), - [anon_sym_rlock] = ACTIONS(3073), - [anon_sym_unsafe] = ACTIONS(3073), - [anon_sym_sql] = ACTIONS(3073), - [sym_int_literal] = ACTIONS(3073), - [sym_float_literal] = ACTIONS(3071), - [sym_rune_literal] = ACTIONS(3071), - [anon_sym_AT] = ACTIONS(3073), - [anon_sym_shared] = ACTIONS(3073), - [anon_sym_map_LBRACK] = ACTIONS(3071), - [anon_sym_chan] = ACTIONS(3073), - [anon_sym_thread] = ACTIONS(3073), - [anon_sym_atomic] = ACTIONS(3073), - [sym___double_quote] = ACTIONS(3071), - [sym___single_quote] = ACTIONS(3071), - [sym___c_double_quote] = ACTIONS(3071), - [sym___c_single_quote] = ACTIONS(3071), - [sym___r_double_quote] = ACTIONS(3071), - [sym___r_single_quote] = ACTIONS(3071), + [anon_sym_DOT] = ACTIONS(3042), + [anon_sym_as] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3040), + [anon_sym_COMMA] = ACTIONS(3040), + [anon_sym_LPAREN] = ACTIONS(3040), + [anon_sym_PIPE] = ACTIONS(3042), + [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_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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3040), + [sym___single_quote] = ACTIONS(3040), + [sym___c_double_quote] = ACTIONS(3040), + [sym___c_single_quote] = ACTIONS(3040), + [sym___r_double_quote] = ACTIONS(3040), + [sym___r_single_quote] = ACTIONS(3040), }, [1359] = { - [sym_identifier] = ACTIONS(3077), + [sym_identifier] = ACTIONS(3163), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3077), - [anon_sym_as] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(3075), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(3075), - [anon_sym_PIPE] = ACTIONS(3077), - [anon_sym_fn] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3075), - [anon_sym_SLASH] = ACTIONS(3077), - [anon_sym_PERCENT] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(3077), - [anon_sym_GT] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3075), - [anon_sym_BANG_EQ] = ACTIONS(3075), - [anon_sym_LT_EQ] = ACTIONS(3075), - [anon_sym_GT_EQ] = ACTIONS(3075), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_RBRACK] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_mut] = ACTIONS(3077), - [anon_sym_PLUS_PLUS] = ACTIONS(3075), - [anon_sym_DASH_DASH] = ACTIONS(3075), - [anon_sym_QMARK] = ACTIONS(3077), - [anon_sym_BANG] = ACTIONS(3077), - [anon_sym_go] = ACTIONS(3077), - [anon_sym_spawn] = ACTIONS(3077), - [anon_sym_json_DOTdecode] = ACTIONS(3075), - [anon_sym_LBRACK2] = ACTIONS(3077), - [anon_sym_TILDE] = ACTIONS(3075), - [anon_sym_CARET] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3075), - [anon_sym_LT_LT] = ACTIONS(3075), - [anon_sym_GT_GT] = ACTIONS(3077), - [anon_sym_GT_GT_GT] = ACTIONS(3075), - [anon_sym_AMP_CARET] = ACTIONS(3075), - [anon_sym_AMP_AMP] = ACTIONS(3075), - [anon_sym_PIPE_PIPE] = ACTIONS(3075), - [anon_sym_or] = ACTIONS(3077), - [sym_none] = ACTIONS(3077), - [sym_true] = ACTIONS(3077), - [sym_false] = ACTIONS(3077), - [sym_nil] = ACTIONS(3077), - [anon_sym_QMARK_DOT] = ACTIONS(3075), - [anon_sym_POUND_LBRACK] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3077), - [anon_sym_DOLLARif] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3077), - [anon_sym_BANGis] = ACTIONS(3075), - [anon_sym_in] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3075), - [anon_sym_match] = ACTIONS(3077), - [anon_sym_select] = ACTIONS(3077), - [anon_sym_lock] = ACTIONS(3077), - [anon_sym_rlock] = ACTIONS(3077), - [anon_sym_unsafe] = ACTIONS(3077), - [anon_sym_sql] = ACTIONS(3077), - [sym_int_literal] = ACTIONS(3077), - [sym_float_literal] = ACTIONS(3075), - [sym_rune_literal] = ACTIONS(3075), - [anon_sym_AT] = ACTIONS(3077), - [anon_sym_shared] = ACTIONS(3077), - [anon_sym_map_LBRACK] = ACTIONS(3075), - [anon_sym_chan] = ACTIONS(3077), - [anon_sym_thread] = ACTIONS(3077), - [anon_sym_atomic] = ACTIONS(3077), - [sym___double_quote] = ACTIONS(3075), - [sym___single_quote] = ACTIONS(3075), - [sym___c_double_quote] = ACTIONS(3075), - [sym___c_single_quote] = ACTIONS(3075), - [sym___r_double_quote] = ACTIONS(3075), - [sym___r_single_quote] = ACTIONS(3075), - }, - [1360] = { - [sym_identifier] = ACTIONS(3117), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3117), - [anon_sym_as] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3115), - [anon_sym_COMMA] = ACTIONS(3115), - [anon_sym_LPAREN] = ACTIONS(3115), - [anon_sym_PIPE] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_SLASH] = ACTIONS(3117), - [anon_sym_PERCENT] = ACTIONS(3115), - [anon_sym_LT] = ACTIONS(3117), - [anon_sym_GT] = ACTIONS(3117), - [anon_sym_EQ_EQ] = ACTIONS(3115), - [anon_sym_BANG_EQ] = ACTIONS(3115), - [anon_sym_LT_EQ] = ACTIONS(3115), - [anon_sym_GT_EQ] = ACTIONS(3115), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_RBRACK] = ACTIONS(3115), - [anon_sym_struct] = ACTIONS(3117), - [anon_sym_mut] = ACTIONS(3117), - [anon_sym_PLUS_PLUS] = ACTIONS(3115), - [anon_sym_DASH_DASH] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3117), - [anon_sym_go] = ACTIONS(3117), - [anon_sym_spawn] = ACTIONS(3117), - [anon_sym_json_DOTdecode] = ACTIONS(3115), - [anon_sym_LBRACK2] = ACTIONS(3117), - [anon_sym_TILDE] = ACTIONS(3115), - [anon_sym_CARET] = ACTIONS(3115), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_LT_DASH] = ACTIONS(3115), - [anon_sym_LT_LT] = ACTIONS(3115), - [anon_sym_GT_GT] = ACTIONS(3117), - [anon_sym_GT_GT_GT] = ACTIONS(3115), - [anon_sym_AMP_CARET] = ACTIONS(3115), - [anon_sym_AMP_AMP] = ACTIONS(3115), - [anon_sym_PIPE_PIPE] = ACTIONS(3115), - [anon_sym_or] = ACTIONS(3117), - [sym_none] = ACTIONS(3117), - [sym_true] = ACTIONS(3117), - [sym_false] = ACTIONS(3117), - [sym_nil] = ACTIONS(3117), - [anon_sym_QMARK_DOT] = ACTIONS(3115), - [anon_sym_POUND_LBRACK] = ACTIONS(3115), - [anon_sym_if] = ACTIONS(3117), - [anon_sym_DOLLARif] = ACTIONS(3117), - [anon_sym_is] = ACTIONS(3117), - [anon_sym_BANGis] = ACTIONS(3115), - [anon_sym_in] = ACTIONS(3117), - [anon_sym_BANGin] = ACTIONS(3115), - [anon_sym_match] = ACTIONS(3117), - [anon_sym_select] = ACTIONS(3117), - [anon_sym_lock] = ACTIONS(3117), - [anon_sym_rlock] = ACTIONS(3117), - [anon_sym_unsafe] = ACTIONS(3117), - [anon_sym_sql] = ACTIONS(3117), - [sym_int_literal] = ACTIONS(3117), - [sym_float_literal] = ACTIONS(3115), - [sym_rune_literal] = ACTIONS(3115), - [anon_sym_AT] = ACTIONS(3117), - [anon_sym_shared] = ACTIONS(3117), - [anon_sym_map_LBRACK] = ACTIONS(3115), - [anon_sym_chan] = ACTIONS(3117), - [anon_sym_thread] = ACTIONS(3117), - [anon_sym_atomic] = ACTIONS(3117), - [sym___double_quote] = ACTIONS(3115), - [sym___single_quote] = ACTIONS(3115), - [sym___c_double_quote] = ACTIONS(3115), - [sym___c_single_quote] = ACTIONS(3115), - [sym___r_double_quote] = ACTIONS(3115), - [sym___r_single_quote] = ACTIONS(3115), - }, - [1361] = { - [sym_identifier] = ACTIONS(3125), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3125), - [anon_sym_as] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3123), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_PIPE] = ACTIONS(3125), - [anon_sym_fn] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(3125), - [anon_sym_PERCENT] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(3125), - [anon_sym_GT] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_RBRACK] = ACTIONS(3123), - [anon_sym_struct] = ACTIONS(3125), - [anon_sym_mut] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3123), - [anon_sym_DASH_DASH] = ACTIONS(3123), - [anon_sym_QMARK] = ACTIONS(3125), - [anon_sym_BANG] = ACTIONS(3125), - [anon_sym_go] = ACTIONS(3125), - [anon_sym_spawn] = ACTIONS(3125), - [anon_sym_json_DOTdecode] = ACTIONS(3123), - [anon_sym_LBRACK2] = ACTIONS(3125), - [anon_sym_TILDE] = ACTIONS(3123), - [anon_sym_CARET] = ACTIONS(3123), - [anon_sym_AMP] = ACTIONS(3125), - [anon_sym_LT_DASH] = ACTIONS(3123), - [anon_sym_LT_LT] = ACTIONS(3123), - [anon_sym_GT_GT] = ACTIONS(3125), - [anon_sym_GT_GT_GT] = ACTIONS(3123), - [anon_sym_AMP_CARET] = ACTIONS(3123), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_or] = ACTIONS(3125), - [sym_none] = ACTIONS(3125), - [sym_true] = ACTIONS(3125), - [sym_false] = ACTIONS(3125), - [sym_nil] = ACTIONS(3125), - [anon_sym_QMARK_DOT] = ACTIONS(3123), - [anon_sym_POUND_LBRACK] = ACTIONS(3123), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_DOLLARif] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3125), - [anon_sym_BANGis] = ACTIONS(3123), - [anon_sym_in] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3123), - [anon_sym_match] = ACTIONS(3125), - [anon_sym_select] = ACTIONS(3125), - [anon_sym_lock] = ACTIONS(3125), - [anon_sym_rlock] = ACTIONS(3125), - [anon_sym_unsafe] = ACTIONS(3125), - [anon_sym_sql] = ACTIONS(3125), - [sym_int_literal] = ACTIONS(3125), - [sym_float_literal] = ACTIONS(3123), - [sym_rune_literal] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(3125), - [anon_sym_shared] = ACTIONS(3125), - [anon_sym_map_LBRACK] = ACTIONS(3123), - [anon_sym_chan] = ACTIONS(3125), - [anon_sym_thread] = ACTIONS(3125), - [anon_sym_atomic] = ACTIONS(3125), - [sym___double_quote] = ACTIONS(3123), - [sym___single_quote] = ACTIONS(3123), - [sym___c_double_quote] = ACTIONS(3123), - [sym___c_single_quote] = ACTIONS(3123), - [sym___r_double_quote] = ACTIONS(3123), - [sym___r_single_quote] = ACTIONS(3123), + [anon_sym_DOT] = ACTIONS(3163), + [anon_sym_as] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_COMMA] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3163), + [anon_sym_fn] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_SLASH] = ACTIONS(3163), + [anon_sym_PERCENT] = ACTIONS(3161), + [anon_sym_LT] = ACTIONS(3163), + [anon_sym_GT] = ACTIONS(3163), + [anon_sym_EQ_EQ] = ACTIONS(3161), + [anon_sym_BANG_EQ] = ACTIONS(3161), + [anon_sym_LT_EQ] = ACTIONS(3161), + [anon_sym_GT_EQ] = ACTIONS(3161), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_RBRACK] = ACTIONS(3161), + [anon_sym_struct] = ACTIONS(3163), + [anon_sym_mut] = ACTIONS(3163), + [anon_sym_PLUS_PLUS] = ACTIONS(3161), + [anon_sym_DASH_DASH] = ACTIONS(3161), + [anon_sym_QMARK] = ACTIONS(3163), + [anon_sym_BANG] = ACTIONS(3163), + [anon_sym_go] = ACTIONS(3163), + [anon_sym_spawn] = ACTIONS(3163), + [anon_sym_json_DOTdecode] = ACTIONS(3161), + [anon_sym_LBRACK2] = ACTIONS(3163), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_CARET] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_LT_DASH] = ACTIONS(3161), + [anon_sym_LT_LT] = ACTIONS(3161), + [anon_sym_GT_GT] = ACTIONS(3163), + [anon_sym_GT_GT_GT] = ACTIONS(3161), + [anon_sym_AMP_CARET] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_PIPE_PIPE] = ACTIONS(3161), + [anon_sym_or] = ACTIONS(3163), + [sym_none] = ACTIONS(3163), + [sym_true] = ACTIONS(3163), + [sym_false] = ACTIONS(3163), + [sym_nil] = ACTIONS(3163), + [anon_sym_QMARK_DOT] = ACTIONS(3161), + [anon_sym_POUND_LBRACK] = ACTIONS(3161), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_DOLLARif] = ACTIONS(3163), + [anon_sym_is] = ACTIONS(3163), + [anon_sym_BANGis] = ACTIONS(3161), + [anon_sym_in] = ACTIONS(3163), + [anon_sym_BANGin] = ACTIONS(3161), + [anon_sym_match] = ACTIONS(3163), + [anon_sym_select] = ACTIONS(3163), + [anon_sym_lock] = ACTIONS(3163), + [anon_sym_rlock] = ACTIONS(3163), + [anon_sym_unsafe] = ACTIONS(3163), + [anon_sym_sql] = ACTIONS(3163), + [sym_int_literal] = ACTIONS(3163), + [sym_float_literal] = ACTIONS(3161), + [sym_rune_literal] = ACTIONS(3161), + [anon_sym_AT] = ACTIONS(3163), + [anon_sym_shared] = ACTIONS(3163), + [anon_sym_map_LBRACK] = ACTIONS(3161), + [anon_sym_chan] = ACTIONS(3163), + [anon_sym_thread] = ACTIONS(3163), + [anon_sym_atomic] = ACTIONS(3163), + [sym___double_quote] = ACTIONS(3161), + [sym___single_quote] = ACTIONS(3161), + [sym___c_double_quote] = ACTIONS(3161), + [sym___c_single_quote] = ACTIONS(3161), + [sym___r_double_quote] = ACTIONS(3161), + [sym___r_single_quote] = ACTIONS(3161), + }, + [1360] = { + [sym_identifier] = ACTIONS(3046), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3046), + [anon_sym_as] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_COMMA] = 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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3044), + [sym___single_quote] = ACTIONS(3044), + [sym___c_double_quote] = ACTIONS(3044), + [sym___c_single_quote] = ACTIONS(3044), + [sym___r_double_quote] = ACTIONS(3044), + [sym___r_single_quote] = ACTIONS(3044), + }, + [1361] = { + [sym_identifier] = ACTIONS(3078), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3078), + [anon_sym_as] = ACTIONS(3078), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_PIPE] = ACTIONS(3078), + [anon_sym_fn] = ACTIONS(3078), + [anon_sym_PLUS] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(3076), + [anon_sym_SLASH] = ACTIONS(3078), + [anon_sym_PERCENT] = ACTIONS(3076), + [anon_sym_LT] = ACTIONS(3078), + [anon_sym_GT] = ACTIONS(3078), + [anon_sym_EQ_EQ] = ACTIONS(3076), + [anon_sym_BANG_EQ] = ACTIONS(3076), + [anon_sym_LT_EQ] = ACTIONS(3076), + [anon_sym_GT_EQ] = ACTIONS(3076), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_RBRACK] = ACTIONS(3076), + [anon_sym_struct] = ACTIONS(3078), + [anon_sym_mut] = ACTIONS(3078), + [anon_sym_PLUS_PLUS] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(3076), + [anon_sym_QMARK] = ACTIONS(3078), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_go] = ACTIONS(3078), + [anon_sym_spawn] = ACTIONS(3078), + [anon_sym_json_DOTdecode] = ACTIONS(3076), + [anon_sym_LBRACK2] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3076), + [anon_sym_CARET] = ACTIONS(3076), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3076), + [anon_sym_LT_LT] = ACTIONS(3076), + [anon_sym_GT_GT] = ACTIONS(3078), + [anon_sym_GT_GT_GT] = ACTIONS(3076), + [anon_sym_AMP_CARET] = ACTIONS(3076), + [anon_sym_AMP_AMP] = ACTIONS(3076), + [anon_sym_PIPE_PIPE] = ACTIONS(3076), + [anon_sym_or] = ACTIONS(3078), + [sym_none] = ACTIONS(3078), + [sym_true] = ACTIONS(3078), + [sym_false] = ACTIONS(3078), + [sym_nil] = ACTIONS(3078), + [anon_sym_QMARK_DOT] = ACTIONS(3076), + [anon_sym_POUND_LBRACK] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3078), + [anon_sym_DOLLARif] = ACTIONS(3078), + [anon_sym_is] = ACTIONS(3078), + [anon_sym_BANGis] = ACTIONS(3076), + [anon_sym_in] = ACTIONS(3078), + [anon_sym_BANGin] = ACTIONS(3076), + [anon_sym_match] = ACTIONS(3078), + [anon_sym_select] = ACTIONS(3078), + [anon_sym_lock] = ACTIONS(3078), + [anon_sym_rlock] = ACTIONS(3078), + [anon_sym_unsafe] = ACTIONS(3078), + [anon_sym_sql] = ACTIONS(3078), + [sym_int_literal] = ACTIONS(3078), + [sym_float_literal] = ACTIONS(3076), + [sym_rune_literal] = ACTIONS(3076), + [anon_sym_AT] = ACTIONS(3078), + [anon_sym_shared] = ACTIONS(3078), + [anon_sym_map_LBRACK] = ACTIONS(3076), + [anon_sym_chan] = ACTIONS(3078), + [anon_sym_thread] = ACTIONS(3078), + [anon_sym_atomic] = ACTIONS(3078), + [sym___double_quote] = ACTIONS(3076), + [sym___single_quote] = ACTIONS(3076), + [sym___c_double_quote] = ACTIONS(3076), + [sym___c_single_quote] = ACTIONS(3076), + [sym___r_double_quote] = ACTIONS(3076), + [sym___r_single_quote] = ACTIONS(3076), }, [1362] = { - [sym_identifier] = ACTIONS(2903), + [sym_identifier] = ACTIONS(3195), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2903), - [anon_sym_as] = ACTIONS(2903), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_COMMA] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2901), - [anon_sym_PIPE] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2903), - [anon_sym_PLUS] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_STAR] = ACTIONS(2901), - [anon_sym_SLASH] = ACTIONS(2903), - [anon_sym_PERCENT] = ACTIONS(2901), - [anon_sym_LT] = ACTIONS(2903), - [anon_sym_GT] = ACTIONS(2903), - [anon_sym_EQ_EQ] = ACTIONS(2901), - [anon_sym_BANG_EQ] = ACTIONS(2901), - [anon_sym_LT_EQ] = ACTIONS(2901), - [anon_sym_GT_EQ] = ACTIONS(2901), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_RBRACK] = ACTIONS(2901), - [anon_sym_struct] = ACTIONS(2903), - [anon_sym_mut] = ACTIONS(2903), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_QMARK] = ACTIONS(2903), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_go] = ACTIONS(2903), - [anon_sym_spawn] = ACTIONS(2903), - [anon_sym_json_DOTdecode] = ACTIONS(2901), - [anon_sym_LBRACK2] = ACTIONS(2903), - [anon_sym_TILDE] = ACTIONS(2901), - [anon_sym_CARET] = ACTIONS(2901), - [anon_sym_AMP] = ACTIONS(2903), - [anon_sym_LT_DASH] = ACTIONS(2901), - [anon_sym_LT_LT] = ACTIONS(2901), - [anon_sym_GT_GT] = ACTIONS(2903), - [anon_sym_GT_GT_GT] = ACTIONS(2901), - [anon_sym_AMP_CARET] = ACTIONS(2901), - [anon_sym_AMP_AMP] = ACTIONS(2901), - [anon_sym_PIPE_PIPE] = ACTIONS(2901), - [anon_sym_or] = ACTIONS(2903), - [sym_none] = ACTIONS(2903), - [sym_true] = ACTIONS(2903), - [sym_false] = ACTIONS(2903), - [sym_nil] = ACTIONS(2903), - [anon_sym_QMARK_DOT] = ACTIONS(2901), - [anon_sym_POUND_LBRACK] = ACTIONS(2901), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_DOLLARif] = ACTIONS(2903), - [anon_sym_is] = ACTIONS(2903), - [anon_sym_BANGis] = ACTIONS(2901), - [anon_sym_in] = ACTIONS(2903), - [anon_sym_BANGin] = ACTIONS(2901), - [anon_sym_match] = ACTIONS(2903), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2903), - [anon_sym_rlock] = ACTIONS(2903), - [anon_sym_unsafe] = ACTIONS(2903), - [anon_sym_sql] = ACTIONS(2903), - [sym_int_literal] = ACTIONS(2903), - [sym_float_literal] = ACTIONS(2901), - [sym_rune_literal] = ACTIONS(2901), - [anon_sym_AT] = ACTIONS(2903), - [anon_sym_shared] = ACTIONS(2903), - [anon_sym_map_LBRACK] = ACTIONS(2901), - [anon_sym_chan] = ACTIONS(2903), - [anon_sym_thread] = ACTIONS(2903), - [anon_sym_atomic] = ACTIONS(2903), - [sym___double_quote] = ACTIONS(2901), - [sym___single_quote] = ACTIONS(2901), - [sym___c_double_quote] = ACTIONS(2901), - [sym___c_single_quote] = ACTIONS(2901), - [sym___r_double_quote] = ACTIONS(2901), - [sym___r_single_quote] = ACTIONS(2901), + [anon_sym_DOT] = ACTIONS(3195), + [anon_sym_as] = ACTIONS(3195), + [anon_sym_LBRACE] = ACTIONS(3193), + [anon_sym_COMMA] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_PIPE] = ACTIONS(3195), + [anon_sym_fn] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3195), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(3195), + [anon_sym_PERCENT] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3195), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_LT_EQ] = ACTIONS(3193), + [anon_sym_GT_EQ] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_RBRACK] = ACTIONS(3193), + [anon_sym_struct] = ACTIONS(3195), + [anon_sym_mut] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [anon_sym_QMARK] = ACTIONS(3195), + [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_go] = ACTIONS(3195), + [anon_sym_spawn] = ACTIONS(3195), + [anon_sym_json_DOTdecode] = ACTIONS(3193), + [anon_sym_LBRACK2] = ACTIONS(3195), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_CARET] = ACTIONS(3193), + [anon_sym_AMP] = ACTIONS(3195), + [anon_sym_LT_DASH] = ACTIONS(3193), + [anon_sym_LT_LT] = ACTIONS(3193), + [anon_sym_GT_GT] = ACTIONS(3195), + [anon_sym_GT_GT_GT] = ACTIONS(3193), + [anon_sym_AMP_CARET] = ACTIONS(3193), + [anon_sym_AMP_AMP] = ACTIONS(3193), + [anon_sym_PIPE_PIPE] = ACTIONS(3193), + [anon_sym_or] = ACTIONS(3195), + [sym_none] = ACTIONS(3195), + [sym_true] = ACTIONS(3195), + [sym_false] = ACTIONS(3195), + [sym_nil] = ACTIONS(3195), + [anon_sym_QMARK_DOT] = ACTIONS(3193), + [anon_sym_POUND_LBRACK] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3195), + [anon_sym_DOLLARif] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3195), + [anon_sym_BANGis] = ACTIONS(3193), + [anon_sym_in] = ACTIONS(3195), + [anon_sym_BANGin] = ACTIONS(3193), + [anon_sym_match] = ACTIONS(3195), + [anon_sym_select] = ACTIONS(3195), + [anon_sym_lock] = ACTIONS(3195), + [anon_sym_rlock] = ACTIONS(3195), + [anon_sym_unsafe] = ACTIONS(3195), + [anon_sym_sql] = ACTIONS(3195), + [sym_int_literal] = ACTIONS(3195), + [sym_float_literal] = ACTIONS(3193), + [sym_rune_literal] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(3195), + [anon_sym_shared] = ACTIONS(3195), + [anon_sym_map_LBRACK] = ACTIONS(3193), + [anon_sym_chan] = ACTIONS(3195), + [anon_sym_thread] = ACTIONS(3195), + [anon_sym_atomic] = ACTIONS(3195), + [sym___double_quote] = ACTIONS(3193), + [sym___single_quote] = ACTIONS(3193), + [sym___c_double_quote] = ACTIONS(3193), + [sym___c_single_quote] = ACTIONS(3193), + [sym___r_double_quote] = ACTIONS(3193), + [sym___r_single_quote] = ACTIONS(3193), }, [1363] = { - [sym_identifier] = ACTIONS(3141), + [sym_identifier] = ACTIONS(3183), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3141), - [anon_sym_as] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(3139), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_fn] = ACTIONS(3141), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3139), - [anon_sym_SLASH] = ACTIONS(3141), - [anon_sym_PERCENT] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(3141), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_EQ_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_RBRACK] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3141), - [anon_sym_mut] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3139), - [anon_sym_DASH_DASH] = ACTIONS(3139), - [anon_sym_QMARK] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_go] = ACTIONS(3141), - [anon_sym_spawn] = ACTIONS(3141), - [anon_sym_json_DOTdecode] = ACTIONS(3139), - [anon_sym_LBRACK2] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3139), - [anon_sym_CARET] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_LT_DASH] = ACTIONS(3139), - [anon_sym_LT_LT] = ACTIONS(3139), - [anon_sym_GT_GT] = ACTIONS(3141), - [anon_sym_GT_GT_GT] = ACTIONS(3139), - [anon_sym_AMP_CARET] = ACTIONS(3139), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_or] = ACTIONS(3141), - [sym_none] = ACTIONS(3141), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_nil] = ACTIONS(3141), - [anon_sym_QMARK_DOT] = ACTIONS(3139), - [anon_sym_POUND_LBRACK] = ACTIONS(3139), - [anon_sym_if] = ACTIONS(3141), - [anon_sym_DOLLARif] = ACTIONS(3141), - [anon_sym_is] = ACTIONS(3141), - [anon_sym_BANGis] = ACTIONS(3139), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_BANGin] = ACTIONS(3139), - [anon_sym_match] = ACTIONS(3141), - [anon_sym_select] = ACTIONS(3141), - [anon_sym_lock] = ACTIONS(3141), - [anon_sym_rlock] = ACTIONS(3141), - [anon_sym_unsafe] = ACTIONS(3141), - [anon_sym_sql] = ACTIONS(3141), - [sym_int_literal] = ACTIONS(3141), - [sym_float_literal] = ACTIONS(3139), - [sym_rune_literal] = ACTIONS(3139), - [anon_sym_AT] = ACTIONS(3141), - [anon_sym_shared] = ACTIONS(3141), - [anon_sym_map_LBRACK] = ACTIONS(3139), - [anon_sym_chan] = ACTIONS(3141), - [anon_sym_thread] = ACTIONS(3141), - [anon_sym_atomic] = ACTIONS(3141), - [sym___double_quote] = ACTIONS(3139), - [sym___single_quote] = ACTIONS(3139), - [sym___c_double_quote] = ACTIONS(3139), - [sym___c_single_quote] = ACTIONS(3139), - [sym___r_double_quote] = ACTIONS(3139), - [sym___r_single_quote] = ACTIONS(3139), + [anon_sym_DOT] = ACTIONS(3183), + [anon_sym_as] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(3181), + [anon_sym_COMMA] = ACTIONS(3181), + [anon_sym_LPAREN] = ACTIONS(3181), + [anon_sym_PIPE] = ACTIONS(3183), + [anon_sym_fn] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_SLASH] = ACTIONS(3183), + [anon_sym_PERCENT] = ACTIONS(3181), + [anon_sym_LT] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3181), + [anon_sym_BANG_EQ] = ACTIONS(3181), + [anon_sym_LT_EQ] = ACTIONS(3181), + [anon_sym_GT_EQ] = ACTIONS(3181), + [anon_sym_LBRACK] = ACTIONS(3181), + [anon_sym_RBRACK] = ACTIONS(3181), + [anon_sym_struct] = ACTIONS(3183), + [anon_sym_mut] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_go] = ACTIONS(3183), + [anon_sym_spawn] = ACTIONS(3183), + [anon_sym_json_DOTdecode] = ACTIONS(3181), + [anon_sym_LBRACK2] = ACTIONS(3183), + [anon_sym_TILDE] = ACTIONS(3181), + [anon_sym_CARET] = ACTIONS(3181), + [anon_sym_AMP] = ACTIONS(3183), + [anon_sym_LT_DASH] = ACTIONS(3181), + [anon_sym_LT_LT] = ACTIONS(3181), + [anon_sym_GT_GT] = ACTIONS(3183), + [anon_sym_GT_GT_GT] = ACTIONS(3181), + [anon_sym_AMP_CARET] = ACTIONS(3181), + [anon_sym_AMP_AMP] = ACTIONS(3181), + [anon_sym_PIPE_PIPE] = ACTIONS(3181), + [anon_sym_or] = ACTIONS(3183), + [sym_none] = ACTIONS(3183), + [sym_true] = ACTIONS(3183), + [sym_false] = ACTIONS(3183), + [sym_nil] = ACTIONS(3183), + [anon_sym_QMARK_DOT] = ACTIONS(3181), + [anon_sym_POUND_LBRACK] = ACTIONS(3181), + [anon_sym_if] = ACTIONS(3183), + [anon_sym_DOLLARif] = ACTIONS(3183), + [anon_sym_is] = ACTIONS(3183), + [anon_sym_BANGis] = ACTIONS(3181), + [anon_sym_in] = ACTIONS(3183), + [anon_sym_BANGin] = ACTIONS(3181), + [anon_sym_match] = ACTIONS(3183), + [anon_sym_select] = ACTIONS(3183), + [anon_sym_lock] = ACTIONS(3183), + [anon_sym_rlock] = ACTIONS(3183), + [anon_sym_unsafe] = ACTIONS(3183), + [anon_sym_sql] = ACTIONS(3183), + [sym_int_literal] = ACTIONS(3183), + [sym_float_literal] = ACTIONS(3181), + [sym_rune_literal] = ACTIONS(3181), + [anon_sym_AT] = ACTIONS(3183), + [anon_sym_shared] = ACTIONS(3183), + [anon_sym_map_LBRACK] = ACTIONS(3181), + [anon_sym_chan] = ACTIONS(3183), + [anon_sym_thread] = ACTIONS(3183), + [anon_sym_atomic] = ACTIONS(3183), + [sym___double_quote] = ACTIONS(3181), + [sym___single_quote] = ACTIONS(3181), + [sym___c_double_quote] = ACTIONS(3181), + [sym___c_single_quote] = ACTIONS(3181), + [sym___r_double_quote] = ACTIONS(3181), + [sym___r_single_quote] = ACTIONS(3181), }, [1364] = { - [sym_identifier] = ACTIONS(3145), + [sym_identifier] = ACTIONS(2798), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3145), - [anon_sym_as] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3143), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym_PIPE] = ACTIONS(3145), - [anon_sym_fn] = ACTIONS(3145), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3143), - [anon_sym_SLASH] = ACTIONS(3145), - [anon_sym_PERCENT] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_GT] = ACTIONS(3145), - [anon_sym_EQ_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(3143), - [anon_sym_LT_EQ] = ACTIONS(3143), - [anon_sym_GT_EQ] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_RBRACK] = ACTIONS(3143), - [anon_sym_struct] = ACTIONS(3145), - [anon_sym_mut] = ACTIONS(3145), - [anon_sym_PLUS_PLUS] = ACTIONS(3143), - [anon_sym_DASH_DASH] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_go] = ACTIONS(3145), - [anon_sym_spawn] = ACTIONS(3145), - [anon_sym_json_DOTdecode] = ACTIONS(3143), - [anon_sym_LBRACK2] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3143), - [anon_sym_CARET] = ACTIONS(3143), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_LT_DASH] = ACTIONS(3143), - [anon_sym_LT_LT] = ACTIONS(3143), - [anon_sym_GT_GT] = ACTIONS(3145), - [anon_sym_GT_GT_GT] = ACTIONS(3143), - [anon_sym_AMP_CARET] = ACTIONS(3143), - [anon_sym_AMP_AMP] = ACTIONS(3143), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_or] = ACTIONS(3145), - [sym_none] = ACTIONS(3145), - [sym_true] = ACTIONS(3145), - [sym_false] = ACTIONS(3145), - [sym_nil] = ACTIONS(3145), - [anon_sym_QMARK_DOT] = ACTIONS(3143), - [anon_sym_POUND_LBRACK] = ACTIONS(3143), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_DOLLARif] = ACTIONS(3145), - [anon_sym_is] = ACTIONS(3145), - [anon_sym_BANGis] = ACTIONS(3143), - [anon_sym_in] = ACTIONS(3145), - [anon_sym_BANGin] = ACTIONS(3143), - [anon_sym_match] = ACTIONS(3145), - [anon_sym_select] = ACTIONS(3145), - [anon_sym_lock] = ACTIONS(3145), - [anon_sym_rlock] = ACTIONS(3145), - [anon_sym_unsafe] = ACTIONS(3145), - [anon_sym_sql] = ACTIONS(3145), - [sym_int_literal] = ACTIONS(3145), - [sym_float_literal] = ACTIONS(3143), - [sym_rune_literal] = ACTIONS(3143), - [anon_sym_AT] = ACTIONS(3145), - [anon_sym_shared] = ACTIONS(3145), - [anon_sym_map_LBRACK] = ACTIONS(3143), - [anon_sym_chan] = ACTIONS(3145), - [anon_sym_thread] = ACTIONS(3145), - [anon_sym_atomic] = ACTIONS(3145), - [sym___double_quote] = ACTIONS(3143), - [sym___single_quote] = ACTIONS(3143), - [sym___c_double_quote] = ACTIONS(3143), - [sym___c_single_quote] = ACTIONS(3143), - [sym___r_double_quote] = ACTIONS(3143), - [sym___r_single_quote] = ACTIONS(3143), + [anon_sym_DOT] = ACTIONS(2798), + [anon_sym_as] = ACTIONS(2798), + [anon_sym_LBRACE] = ACTIONS(2796), + [anon_sym_COMMA] = ACTIONS(2796), + [anon_sym_LPAREN] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(2798), + [anon_sym_fn] = ACTIONS(2798), + [anon_sym_PLUS] = ACTIONS(2798), + [anon_sym_DASH] = ACTIONS(2798), + [anon_sym_STAR] = ACTIONS(2796), + [anon_sym_SLASH] = ACTIONS(2798), + [anon_sym_PERCENT] = ACTIONS(2796), + [anon_sym_LT] = ACTIONS(2798), + [anon_sym_GT] = ACTIONS(2798), + [anon_sym_EQ_EQ] = ACTIONS(2796), + [anon_sym_BANG_EQ] = ACTIONS(2796), + [anon_sym_LT_EQ] = ACTIONS(2796), + [anon_sym_GT_EQ] = ACTIONS(2796), + [anon_sym_LBRACK] = ACTIONS(2796), + [anon_sym_RBRACK] = ACTIONS(2796), + [anon_sym_struct] = ACTIONS(2798), + [anon_sym_mut] = ACTIONS(2798), + [anon_sym_PLUS_PLUS] = ACTIONS(2796), + [anon_sym_DASH_DASH] = ACTIONS(2796), + [anon_sym_QMARK] = ACTIONS(2798), + [anon_sym_BANG] = ACTIONS(2798), + [anon_sym_go] = ACTIONS(2798), + [anon_sym_spawn] = ACTIONS(2798), + [anon_sym_json_DOTdecode] = ACTIONS(2796), + [anon_sym_LBRACK2] = ACTIONS(2798), + [anon_sym_TILDE] = ACTIONS(2796), + [anon_sym_CARET] = ACTIONS(2796), + [anon_sym_AMP] = ACTIONS(2798), + [anon_sym_LT_DASH] = ACTIONS(2796), + [anon_sym_LT_LT] = ACTIONS(2796), + [anon_sym_GT_GT] = ACTIONS(2798), + [anon_sym_GT_GT_GT] = ACTIONS(2796), + [anon_sym_AMP_CARET] = ACTIONS(2796), + [anon_sym_AMP_AMP] = ACTIONS(2796), + [anon_sym_PIPE_PIPE] = ACTIONS(2796), + [anon_sym_or] = ACTIONS(2798), + [sym_none] = ACTIONS(2798), + [sym_true] = ACTIONS(2798), + [sym_false] = ACTIONS(2798), + [sym_nil] = ACTIONS(2798), + [anon_sym_QMARK_DOT] = ACTIONS(2796), + [anon_sym_POUND_LBRACK] = ACTIONS(2796), + [anon_sym_if] = ACTIONS(2798), + [anon_sym_DOLLARif] = ACTIONS(2798), + [anon_sym_is] = ACTIONS(2798), + [anon_sym_BANGis] = ACTIONS(2796), + [anon_sym_in] = ACTIONS(2798), + [anon_sym_BANGin] = ACTIONS(2796), + [anon_sym_match] = ACTIONS(2798), + [anon_sym_select] = ACTIONS(2798), + [anon_sym_lock] = ACTIONS(2798), + [anon_sym_rlock] = ACTIONS(2798), + [anon_sym_unsafe] = ACTIONS(2798), + [anon_sym_sql] = ACTIONS(2798), + [sym_int_literal] = ACTIONS(2798), + [sym_float_literal] = ACTIONS(2796), + [sym_rune_literal] = ACTIONS(2796), + [anon_sym_AT] = ACTIONS(2798), + [anon_sym_shared] = ACTIONS(2798), + [anon_sym_map_LBRACK] = ACTIONS(2796), + [anon_sym_chan] = ACTIONS(2798), + [anon_sym_thread] = ACTIONS(2798), + [anon_sym_atomic] = ACTIONS(2798), + [sym___double_quote] = ACTIONS(2796), + [sym___single_quote] = ACTIONS(2796), + [sym___c_double_quote] = ACTIONS(2796), + [sym___c_single_quote] = ACTIONS(2796), + [sym___r_double_quote] = ACTIONS(2796), + [sym___r_single_quote] = ACTIONS(2796), }, [1365] = { - [sym_identifier] = ACTIONS(2943), + [sym_identifier] = ACTIONS(3118), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2943), - [anon_sym_as] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2941), - [anon_sym_COMMA] = ACTIONS(2941), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_PIPE] = ACTIONS(2943), - [anon_sym_fn] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2941), - [anon_sym_SLASH] = ACTIONS(2943), - [anon_sym_PERCENT] = ACTIONS(2941), - [anon_sym_LT] = ACTIONS(2943), - [anon_sym_GT] = ACTIONS(2943), - [anon_sym_EQ_EQ] = ACTIONS(2941), - [anon_sym_BANG_EQ] = ACTIONS(2941), - [anon_sym_LT_EQ] = ACTIONS(2941), - [anon_sym_GT_EQ] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_RBRACK] = ACTIONS(2941), - [anon_sym_struct] = ACTIONS(2943), - [anon_sym_mut] = ACTIONS(2943), - [anon_sym_PLUS_PLUS] = ACTIONS(2941), - [anon_sym_DASH_DASH] = ACTIONS(2941), - [anon_sym_QMARK] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(3670), - [anon_sym_go] = ACTIONS(2943), - [anon_sym_spawn] = ACTIONS(2943), - [anon_sym_json_DOTdecode] = ACTIONS(2941), - [anon_sym_LBRACK2] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2941), - [anon_sym_CARET] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_LT_DASH] = ACTIONS(2941), - [anon_sym_LT_LT] = ACTIONS(2941), - [anon_sym_GT_GT] = ACTIONS(2943), - [anon_sym_GT_GT_GT] = ACTIONS(2941), - [anon_sym_AMP_CARET] = ACTIONS(2941), - [anon_sym_AMP_AMP] = ACTIONS(2941), - [anon_sym_PIPE_PIPE] = ACTIONS(2941), - [anon_sym_or] = ACTIONS(2943), - [sym_none] = ACTIONS(2943), - [sym_true] = ACTIONS(2943), - [sym_false] = ACTIONS(2943), - [sym_nil] = ACTIONS(2943), - [anon_sym_QMARK_DOT] = ACTIONS(2941), - [anon_sym_POUND_LBRACK] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2943), - [anon_sym_DOLLARif] = ACTIONS(2943), - [anon_sym_is] = ACTIONS(2943), - [anon_sym_BANGis] = ACTIONS(2941), - [anon_sym_in] = ACTIONS(2943), - [anon_sym_BANGin] = ACTIONS(2941), - [anon_sym_match] = ACTIONS(2943), - [anon_sym_select] = ACTIONS(2943), - [anon_sym_lock] = ACTIONS(2943), - [anon_sym_rlock] = ACTIONS(2943), - [anon_sym_unsafe] = ACTIONS(2943), - [anon_sym_sql] = ACTIONS(2943), - [sym_int_literal] = ACTIONS(2943), - [sym_float_literal] = ACTIONS(2941), - [sym_rune_literal] = ACTIONS(2941), - [anon_sym_AT] = ACTIONS(2943), - [anon_sym_shared] = ACTIONS(2943), - [anon_sym_map_LBRACK] = ACTIONS(2941), - [anon_sym_chan] = ACTIONS(2943), - [anon_sym_thread] = ACTIONS(2943), - [anon_sym_atomic] = ACTIONS(2943), - [sym___double_quote] = ACTIONS(2941), - [sym___single_quote] = ACTIONS(2941), - [sym___c_double_quote] = ACTIONS(2941), - [sym___c_single_quote] = ACTIONS(2941), - [sym___r_double_quote] = ACTIONS(2941), - [sym___r_single_quote] = ACTIONS(2941), + [anon_sym_DOT] = ACTIONS(3120), + [anon_sym_as] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(3116), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3116), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_fn] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3116), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(3116), + [anon_sym_LT_EQ] = ACTIONS(3116), + [anon_sym_GT_EQ] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_RBRACK] = ACTIONS(3701), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_mut] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [anon_sym_QMARK] = ACTIONS(3118), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_go] = ACTIONS(3118), + [anon_sym_spawn] = ACTIONS(3118), + [anon_sym_json_DOTdecode] = ACTIONS(3116), + [anon_sym_LBRACK2] = ACTIONS(3118), + [anon_sym_TILDE] = ACTIONS(3116), + [anon_sym_CARET] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_LT_DASH] = ACTIONS(3116), + [anon_sym_LT_LT] = ACTIONS(3116), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym_GT_GT_GT] = ACTIONS(3116), + [anon_sym_AMP_CARET] = ACTIONS(3116), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_PIPE_PIPE] = ACTIONS(3116), + [anon_sym_or] = ACTIONS(3118), + [sym_none] = ACTIONS(3118), + [sym_true] = ACTIONS(3118), + [sym_false] = ACTIONS(3118), + [sym_nil] = ACTIONS(3118), + [anon_sym_QMARK_DOT] = ACTIONS(3116), + [anon_sym_POUND_LBRACK] = ACTIONS(3116), + [anon_sym_if] = ACTIONS(3118), + [anon_sym_DOLLARif] = ACTIONS(3118), + [anon_sym_is] = ACTIONS(3118), + [anon_sym_BANGis] = ACTIONS(3116), + [anon_sym_in] = ACTIONS(3118), + [anon_sym_BANGin] = ACTIONS(3116), + [anon_sym_match] = ACTIONS(3118), + [anon_sym_select] = ACTIONS(3118), + [anon_sym_lock] = ACTIONS(3118), + [anon_sym_rlock] = ACTIONS(3118), + [anon_sym_unsafe] = ACTIONS(3118), + [anon_sym_sql] = ACTIONS(3118), + [sym_int_literal] = ACTIONS(3118), + [sym_float_literal] = ACTIONS(3116), + [sym_rune_literal] = ACTIONS(3116), + [anon_sym_AT] = ACTIONS(3118), + [anon_sym_shared] = ACTIONS(3118), + [anon_sym_map_LBRACK] = ACTIONS(3116), + [anon_sym_chan] = ACTIONS(3118), + [anon_sym_thread] = ACTIONS(3118), + [anon_sym_atomic] = ACTIONS(3118), + [sym___double_quote] = ACTIONS(3116), + [sym___single_quote] = ACTIONS(3116), + [sym___c_double_quote] = ACTIONS(3116), + [sym___c_single_quote] = ACTIONS(3116), + [sym___r_double_quote] = ACTIONS(3116), + [sym___r_single_quote] = ACTIONS(3116), }, [1366] = { - [sym_identifier] = ACTIONS(3069), + [sym_identifier] = ACTIONS(3175), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3069), - [anon_sym_as] = ACTIONS(3069), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_COMMA] = ACTIONS(3067), - [anon_sym_LPAREN] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_fn] = ACTIONS(3069), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_SLASH] = ACTIONS(3069), - [anon_sym_PERCENT] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_EQ_EQ] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_RBRACK] = ACTIONS(3067), - [anon_sym_struct] = ACTIONS(3069), - [anon_sym_mut] = ACTIONS(3069), - [anon_sym_PLUS_PLUS] = ACTIONS(3067), - [anon_sym_DASH_DASH] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_BANG] = ACTIONS(3069), - [anon_sym_go] = ACTIONS(3069), - [anon_sym_spawn] = ACTIONS(3069), - [anon_sym_json_DOTdecode] = ACTIONS(3067), - [anon_sym_LBRACK2] = ACTIONS(3069), - [anon_sym_TILDE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3069), - [anon_sym_LT_DASH] = ACTIONS(3067), - [anon_sym_LT_LT] = ACTIONS(3067), - [anon_sym_GT_GT] = ACTIONS(3069), - [anon_sym_GT_GT_GT] = ACTIONS(3067), - [anon_sym_AMP_CARET] = ACTIONS(3067), - [anon_sym_AMP_AMP] = ACTIONS(3067), - [anon_sym_PIPE_PIPE] = ACTIONS(3067), - [anon_sym_or] = ACTIONS(3069), - [sym_none] = ACTIONS(3069), - [sym_true] = ACTIONS(3069), - [sym_false] = ACTIONS(3069), - [sym_nil] = ACTIONS(3069), - [anon_sym_QMARK_DOT] = ACTIONS(3067), - [anon_sym_POUND_LBRACK] = ACTIONS(3067), - [anon_sym_if] = ACTIONS(3069), - [anon_sym_DOLLARif] = ACTIONS(3069), - [anon_sym_is] = ACTIONS(3069), - [anon_sym_BANGis] = ACTIONS(3067), - [anon_sym_in] = ACTIONS(3069), - [anon_sym_BANGin] = ACTIONS(3067), - [anon_sym_match] = ACTIONS(3069), - [anon_sym_select] = ACTIONS(3069), - [anon_sym_lock] = ACTIONS(3069), - [anon_sym_rlock] = ACTIONS(3069), - [anon_sym_unsafe] = ACTIONS(3069), - [anon_sym_sql] = ACTIONS(3069), - [sym_int_literal] = ACTIONS(3069), - [sym_float_literal] = ACTIONS(3067), - [sym_rune_literal] = ACTIONS(3067), - [anon_sym_AT] = ACTIONS(3069), - [anon_sym_shared] = ACTIONS(3069), - [anon_sym_map_LBRACK] = ACTIONS(3067), - [anon_sym_chan] = ACTIONS(3069), - [anon_sym_thread] = ACTIONS(3069), - [anon_sym_atomic] = ACTIONS(3069), - [sym___double_quote] = ACTIONS(3067), - [sym___single_quote] = ACTIONS(3067), - [sym___c_double_quote] = ACTIONS(3067), - [sym___c_single_quote] = ACTIONS(3067), - [sym___r_double_quote] = ACTIONS(3067), - [sym___r_single_quote] = ACTIONS(3067), + [anon_sym_DOT] = ACTIONS(3175), + [anon_sym_as] = ACTIONS(3175), + [anon_sym_LBRACE] = ACTIONS(3173), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_PIPE] = ACTIONS(3175), + [anon_sym_fn] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(3175), + [anon_sym_STAR] = ACTIONS(3173), + [anon_sym_SLASH] = ACTIONS(3175), + [anon_sym_PERCENT] = ACTIONS(3173), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_GT] = ACTIONS(3175), + [anon_sym_EQ_EQ] = ACTIONS(3173), + [anon_sym_BANG_EQ] = ACTIONS(3173), + [anon_sym_LT_EQ] = ACTIONS(3173), + [anon_sym_GT_EQ] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3173), + [anon_sym_RBRACK] = ACTIONS(3173), + [anon_sym_struct] = ACTIONS(3175), + [anon_sym_mut] = ACTIONS(3175), + [anon_sym_PLUS_PLUS] = ACTIONS(3173), + [anon_sym_DASH_DASH] = ACTIONS(3173), + [anon_sym_QMARK] = ACTIONS(3175), + [anon_sym_BANG] = ACTIONS(3175), + [anon_sym_go] = ACTIONS(3175), + [anon_sym_spawn] = ACTIONS(3175), + [anon_sym_json_DOTdecode] = ACTIONS(3173), + [anon_sym_LBRACK2] = ACTIONS(3175), + [anon_sym_TILDE] = ACTIONS(3173), + [anon_sym_CARET] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(3175), + [anon_sym_LT_DASH] = ACTIONS(3173), + [anon_sym_LT_LT] = ACTIONS(3173), + [anon_sym_GT_GT] = ACTIONS(3175), + [anon_sym_GT_GT_GT] = ACTIONS(3173), + [anon_sym_AMP_CARET] = ACTIONS(3173), + [anon_sym_AMP_AMP] = ACTIONS(3173), + [anon_sym_PIPE_PIPE] = ACTIONS(3173), + [anon_sym_or] = ACTIONS(3175), + [sym_none] = ACTIONS(3175), + [sym_true] = ACTIONS(3175), + [sym_false] = ACTIONS(3175), + [sym_nil] = ACTIONS(3175), + [anon_sym_QMARK_DOT] = ACTIONS(3173), + [anon_sym_POUND_LBRACK] = ACTIONS(3173), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_DOLLARif] = ACTIONS(3175), + [anon_sym_is] = ACTIONS(3175), + [anon_sym_BANGis] = ACTIONS(3173), + [anon_sym_in] = ACTIONS(3175), + [anon_sym_BANGin] = ACTIONS(3173), + [anon_sym_match] = ACTIONS(3175), + [anon_sym_select] = ACTIONS(3175), + [anon_sym_lock] = ACTIONS(3175), + [anon_sym_rlock] = ACTIONS(3175), + [anon_sym_unsafe] = ACTIONS(3175), + [anon_sym_sql] = ACTIONS(3175), + [sym_int_literal] = ACTIONS(3175), + [sym_float_literal] = ACTIONS(3173), + [sym_rune_literal] = ACTIONS(3173), + [anon_sym_AT] = ACTIONS(3175), + [anon_sym_shared] = ACTIONS(3175), + [anon_sym_map_LBRACK] = ACTIONS(3173), + [anon_sym_chan] = ACTIONS(3175), + [anon_sym_thread] = ACTIONS(3175), + [anon_sym_atomic] = ACTIONS(3175), + [sym___double_quote] = ACTIONS(3173), + [sym___single_quote] = ACTIONS(3173), + [sym___c_double_quote] = ACTIONS(3173), + [sym___c_single_quote] = ACTIONS(3173), + [sym___r_double_quote] = ACTIONS(3173), + [sym___r_single_quote] = ACTIONS(3173), }, [1367] = { - [sym_identifier] = ACTIONS(2959), + [sym_identifier] = ACTIONS(2784), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2959), - [anon_sym_as] = ACTIONS(2959), - [anon_sym_LBRACE] = ACTIONS(2957), - [anon_sym_COMMA] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2957), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_fn] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_SLASH] = ACTIONS(2959), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_LT] = ACTIONS(2959), - [anon_sym_GT] = ACTIONS(2959), - [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(2957), - [anon_sym_RBRACK] = ACTIONS(2957), - [anon_sym_struct] = ACTIONS(2959), - [anon_sym_mut] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2957), - [anon_sym_DASH_DASH] = ACTIONS(2957), - [anon_sym_QMARK] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2959), - [anon_sym_go] = ACTIONS(2959), - [anon_sym_spawn] = ACTIONS(2959), - [anon_sym_json_DOTdecode] = ACTIONS(2957), - [anon_sym_LBRACK2] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_LT_DASH] = ACTIONS(2957), - [anon_sym_LT_LT] = ACTIONS(2957), - [anon_sym_GT_GT] = ACTIONS(2959), - [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(2959), - [sym_none] = ACTIONS(2959), - [sym_true] = ACTIONS(2959), - [sym_false] = ACTIONS(2959), - [sym_nil] = ACTIONS(2959), - [anon_sym_QMARK_DOT] = ACTIONS(2957), - [anon_sym_POUND_LBRACK] = ACTIONS(2957), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_DOLLARif] = ACTIONS(2959), - [anon_sym_is] = ACTIONS(2959), - [anon_sym_BANGis] = ACTIONS(2957), - [anon_sym_in] = ACTIONS(2959), - [anon_sym_BANGin] = ACTIONS(2957), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_select] = ACTIONS(2959), - [anon_sym_lock] = ACTIONS(2959), - [anon_sym_rlock] = ACTIONS(2959), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2959), - [sym_int_literal] = ACTIONS(2959), - [sym_float_literal] = ACTIONS(2957), - [sym_rune_literal] = ACTIONS(2957), - [anon_sym_AT] = ACTIONS(2959), - [anon_sym_shared] = ACTIONS(2959), - [anon_sym_map_LBRACK] = ACTIONS(2957), - [anon_sym_chan] = ACTIONS(2959), - [anon_sym_thread] = ACTIONS(2959), - [anon_sym_atomic] = ACTIONS(2959), - [sym___double_quote] = ACTIONS(2957), - [sym___single_quote] = ACTIONS(2957), - [sym___c_double_quote] = ACTIONS(2957), - [sym___c_single_quote] = ACTIONS(2957), - [sym___r_double_quote] = ACTIONS(2957), - [sym___r_single_quote] = ACTIONS(2957), + [anon_sym_DOT] = ACTIONS(2784), + [anon_sym_as] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_COMMA] = ACTIONS(2786), + [anon_sym_LPAREN] = ACTIONS(2786), + [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_fn] = ACTIONS(2784), + [anon_sym_PLUS] = ACTIONS(2784), + [anon_sym_DASH] = ACTIONS(2784), + [anon_sym_STAR] = ACTIONS(2786), + [anon_sym_SLASH] = ACTIONS(2784), + [anon_sym_PERCENT] = ACTIONS(2786), + [anon_sym_LT] = ACTIONS(2784), + [anon_sym_GT] = ACTIONS(2784), + [anon_sym_EQ_EQ] = ACTIONS(2786), + [anon_sym_BANG_EQ] = ACTIONS(2786), + [anon_sym_LT_EQ] = ACTIONS(2786), + [anon_sym_GT_EQ] = ACTIONS(2786), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym_RBRACK] = ACTIONS(2786), + [anon_sym_struct] = ACTIONS(2784), + [anon_sym_mut] = ACTIONS(2784), + [anon_sym_PLUS_PLUS] = ACTIONS(2786), + [anon_sym_DASH_DASH] = ACTIONS(2786), + [anon_sym_QMARK] = ACTIONS(2784), + [anon_sym_BANG] = ACTIONS(2784), + [anon_sym_go] = ACTIONS(2784), + [anon_sym_spawn] = ACTIONS(2784), + [anon_sym_json_DOTdecode] = ACTIONS(2786), + [anon_sym_LBRACK2] = ACTIONS(2784), + [anon_sym_TILDE] = ACTIONS(2786), + [anon_sym_CARET] = ACTIONS(2786), + [anon_sym_AMP] = ACTIONS(2784), + [anon_sym_LT_DASH] = ACTIONS(2786), + [anon_sym_LT_LT] = ACTIONS(2786), + [anon_sym_GT_GT] = ACTIONS(2784), + [anon_sym_GT_GT_GT] = ACTIONS(2786), + [anon_sym_AMP_CARET] = ACTIONS(2786), + [anon_sym_AMP_AMP] = ACTIONS(2786), + [anon_sym_PIPE_PIPE] = ACTIONS(2786), + [anon_sym_or] = ACTIONS(2784), + [sym_none] = ACTIONS(2784), + [sym_true] = ACTIONS(2784), + [sym_false] = ACTIONS(2784), + [sym_nil] = ACTIONS(2784), + [anon_sym_QMARK_DOT] = ACTIONS(2786), + [anon_sym_POUND_LBRACK] = ACTIONS(2786), + [anon_sym_if] = ACTIONS(2784), + [anon_sym_DOLLARif] = ACTIONS(2784), + [anon_sym_is] = ACTIONS(2784), + [anon_sym_BANGis] = ACTIONS(2786), + [anon_sym_in] = ACTIONS(2784), + [anon_sym_BANGin] = ACTIONS(2786), + [anon_sym_match] = ACTIONS(2784), + [anon_sym_select] = ACTIONS(2784), + [anon_sym_lock] = ACTIONS(2784), + [anon_sym_rlock] = ACTIONS(2784), + [anon_sym_unsafe] = ACTIONS(2784), + [anon_sym_sql] = ACTIONS(2784), + [sym_int_literal] = ACTIONS(2784), + [sym_float_literal] = ACTIONS(2786), + [sym_rune_literal] = ACTIONS(2786), + [anon_sym_AT] = ACTIONS(2784), + [anon_sym_shared] = ACTIONS(2784), + [anon_sym_map_LBRACK] = ACTIONS(2786), + [anon_sym_chan] = ACTIONS(2784), + [anon_sym_thread] = ACTIONS(2784), + [anon_sym_atomic] = ACTIONS(2784), + [sym___double_quote] = ACTIONS(2786), + [sym___single_quote] = ACTIONS(2786), + [sym___c_double_quote] = ACTIONS(2786), + [sym___c_single_quote] = ACTIONS(2786), + [sym___r_double_quote] = ACTIONS(2786), + [sym___r_single_quote] = ACTIONS(2786), }, [1368] = { - [sym_identifier] = ACTIONS(2967), + [sym_identifier] = ACTIONS(2878), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2967), - [anon_sym_as] = ACTIONS(2967), - [anon_sym_LBRACE] = ACTIONS(2965), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2965), - [anon_sym_PIPE] = ACTIONS(2967), - [anon_sym_fn] = ACTIONS(2967), - [anon_sym_PLUS] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2967), - [anon_sym_STAR] = ACTIONS(2965), - [anon_sym_SLASH] = ACTIONS(2967), - [anon_sym_PERCENT] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2967), - [anon_sym_GT] = ACTIONS(2967), - [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(2965), - [anon_sym_RBRACK] = ACTIONS(2965), - [anon_sym_struct] = ACTIONS(2967), - [anon_sym_mut] = ACTIONS(2967), - [anon_sym_PLUS_PLUS] = ACTIONS(2965), - [anon_sym_DASH_DASH] = ACTIONS(2965), - [anon_sym_QMARK] = ACTIONS(2967), - [anon_sym_BANG] = ACTIONS(2967), - [anon_sym_go] = ACTIONS(2967), - [anon_sym_spawn] = ACTIONS(2967), - [anon_sym_json_DOTdecode] = ACTIONS(2965), - [anon_sym_LBRACK2] = ACTIONS(2967), - [anon_sym_TILDE] = ACTIONS(2965), - [anon_sym_CARET] = ACTIONS(2965), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_LT_DASH] = ACTIONS(2965), - [anon_sym_LT_LT] = ACTIONS(2965), - [anon_sym_GT_GT] = ACTIONS(2967), - [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(2967), - [sym_none] = ACTIONS(2967), - [sym_true] = ACTIONS(2967), - [sym_false] = ACTIONS(2967), - [sym_nil] = ACTIONS(2967), - [anon_sym_QMARK_DOT] = ACTIONS(2965), - [anon_sym_POUND_LBRACK] = ACTIONS(2965), - [anon_sym_if] = ACTIONS(2967), - [anon_sym_DOLLARif] = ACTIONS(2967), - [anon_sym_is] = ACTIONS(2967), - [anon_sym_BANGis] = ACTIONS(2965), - [anon_sym_in] = ACTIONS(2967), - [anon_sym_BANGin] = ACTIONS(2965), - [anon_sym_match] = ACTIONS(2967), - [anon_sym_select] = ACTIONS(2967), - [anon_sym_lock] = ACTIONS(2967), - [anon_sym_rlock] = ACTIONS(2967), - [anon_sym_unsafe] = ACTIONS(2967), - [anon_sym_sql] = ACTIONS(2967), - [sym_int_literal] = ACTIONS(2967), - [sym_float_literal] = ACTIONS(2965), - [sym_rune_literal] = ACTIONS(2965), - [anon_sym_AT] = ACTIONS(2967), - [anon_sym_shared] = ACTIONS(2967), - [anon_sym_map_LBRACK] = ACTIONS(2965), - [anon_sym_chan] = ACTIONS(2967), - [anon_sym_thread] = ACTIONS(2967), - [anon_sym_atomic] = ACTIONS(2967), - [sym___double_quote] = ACTIONS(2965), - [sym___single_quote] = ACTIONS(2965), - [sym___c_double_quote] = ACTIONS(2965), - [sym___c_single_quote] = ACTIONS(2965), - [sym___r_double_quote] = ACTIONS(2965), - [sym___r_single_quote] = ACTIONS(2965), + [anon_sym_DOT] = ACTIONS(2878), + [anon_sym_as] = ACTIONS(2878), + [anon_sym_LBRACE] = ACTIONS(2876), + [anon_sym_COMMA] = ACTIONS(2876), + [anon_sym_LPAREN] = ACTIONS(2876), + [anon_sym_PIPE] = ACTIONS(2878), + [anon_sym_fn] = ACTIONS(2878), + [anon_sym_PLUS] = ACTIONS(2878), + [anon_sym_DASH] = ACTIONS(2878), + [anon_sym_STAR] = ACTIONS(2876), + [anon_sym_SLASH] = ACTIONS(2878), + [anon_sym_PERCENT] = ACTIONS(2876), + [anon_sym_LT] = ACTIONS(2878), + [anon_sym_GT] = ACTIONS(2878), + [anon_sym_EQ_EQ] = ACTIONS(2876), + [anon_sym_BANG_EQ] = ACTIONS(2876), + [anon_sym_LT_EQ] = ACTIONS(2876), + [anon_sym_GT_EQ] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_RBRACK] = ACTIONS(2876), + [anon_sym_struct] = ACTIONS(2878), + [anon_sym_mut] = ACTIONS(2878), + [anon_sym_PLUS_PLUS] = ACTIONS(2876), + [anon_sym_DASH_DASH] = ACTIONS(2876), + [anon_sym_QMARK] = ACTIONS(2878), + [anon_sym_BANG] = ACTIONS(2878), + [anon_sym_go] = ACTIONS(2878), + [anon_sym_spawn] = ACTIONS(2878), + [anon_sym_json_DOTdecode] = ACTIONS(2876), + [anon_sym_LBRACK2] = ACTIONS(2878), + [anon_sym_TILDE] = ACTIONS(2876), + [anon_sym_CARET] = ACTIONS(2876), + [anon_sym_AMP] = ACTIONS(2878), + [anon_sym_LT_DASH] = ACTIONS(2876), + [anon_sym_LT_LT] = ACTIONS(2876), + [anon_sym_GT_GT] = ACTIONS(2878), + [anon_sym_GT_GT_GT] = ACTIONS(2876), + [anon_sym_AMP_CARET] = ACTIONS(2876), + [anon_sym_AMP_AMP] = ACTIONS(2876), + [anon_sym_PIPE_PIPE] = ACTIONS(2876), + [anon_sym_or] = ACTIONS(2878), + [sym_none] = ACTIONS(2878), + [sym_true] = ACTIONS(2878), + [sym_false] = ACTIONS(2878), + [sym_nil] = ACTIONS(2878), + [anon_sym_QMARK_DOT] = ACTIONS(2876), + [anon_sym_POUND_LBRACK] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2878), + [anon_sym_DOLLARif] = ACTIONS(2878), + [anon_sym_is] = ACTIONS(2878), + [anon_sym_BANGis] = ACTIONS(2876), + [anon_sym_in] = ACTIONS(2878), + [anon_sym_BANGin] = ACTIONS(2876), + [anon_sym_match] = ACTIONS(2878), + [anon_sym_select] = ACTIONS(2878), + [anon_sym_lock] = ACTIONS(2878), + [anon_sym_rlock] = ACTIONS(2878), + [anon_sym_unsafe] = ACTIONS(2878), + [anon_sym_sql] = ACTIONS(2878), + [sym_int_literal] = ACTIONS(2878), + [sym_float_literal] = ACTIONS(2876), + [sym_rune_literal] = ACTIONS(2876), + [anon_sym_AT] = ACTIONS(2878), + [anon_sym_shared] = ACTIONS(2878), + [anon_sym_map_LBRACK] = ACTIONS(2876), + [anon_sym_chan] = ACTIONS(2878), + [anon_sym_thread] = ACTIONS(2878), + [anon_sym_atomic] = ACTIONS(2878), + [sym___double_quote] = ACTIONS(2876), + [sym___single_quote] = ACTIONS(2876), + [sym___c_double_quote] = ACTIONS(2876), + [sym___c_single_quote] = ACTIONS(2876), + [sym___r_double_quote] = ACTIONS(2876), + [sym___r_single_quote] = ACTIONS(2876), }, [1369] = { - [sym_identifier] = ACTIONS(2997), + [sym_identifier] = ACTIONS(3086), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_as] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2995), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_PIPE] = ACTIONS(2997), - [anon_sym_fn] = ACTIONS(2997), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_SLASH] = ACTIONS(2997), - [anon_sym_PERCENT] = ACTIONS(2995), - [anon_sym_LT] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(2997), - [anon_sym_EQ_EQ] = ACTIONS(2995), - [anon_sym_BANG_EQ] = ACTIONS(2995), - [anon_sym_LT_EQ] = ACTIONS(2995), - [anon_sym_GT_EQ] = ACTIONS(2995), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_RBRACK] = ACTIONS(2995), - [anon_sym_struct] = ACTIONS(2997), - [anon_sym_mut] = ACTIONS(2997), - [anon_sym_PLUS_PLUS] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(2995), - [anon_sym_QMARK] = ACTIONS(2997), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_go] = ACTIONS(2997), - [anon_sym_spawn] = ACTIONS(2997), - [anon_sym_json_DOTdecode] = ACTIONS(2995), - [anon_sym_LBRACK2] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2995), - [anon_sym_CARET] = ACTIONS(2995), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_LT_DASH] = ACTIONS(2995), - [anon_sym_LT_LT] = ACTIONS(2995), - [anon_sym_GT_GT] = ACTIONS(2997), - [anon_sym_GT_GT_GT] = ACTIONS(2995), - [anon_sym_AMP_CARET] = ACTIONS(2995), - [anon_sym_AMP_AMP] = ACTIONS(2995), - [anon_sym_PIPE_PIPE] = ACTIONS(2995), - [anon_sym_or] = ACTIONS(2997), - [sym_none] = ACTIONS(2997), - [sym_true] = ACTIONS(2997), - [sym_false] = ACTIONS(2997), - [sym_nil] = ACTIONS(2997), - [anon_sym_QMARK_DOT] = ACTIONS(2995), - [anon_sym_POUND_LBRACK] = ACTIONS(2995), - [anon_sym_if] = ACTIONS(2997), - [anon_sym_DOLLARif] = ACTIONS(2997), - [anon_sym_is] = ACTIONS(2997), - [anon_sym_BANGis] = ACTIONS(2995), - [anon_sym_in] = ACTIONS(2997), - [anon_sym_BANGin] = ACTIONS(2995), - [anon_sym_match] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [anon_sym_lock] = ACTIONS(2997), - [anon_sym_rlock] = ACTIONS(2997), - [anon_sym_unsafe] = ACTIONS(2997), - [anon_sym_sql] = ACTIONS(2997), - [sym_int_literal] = ACTIONS(2997), - [sym_float_literal] = ACTIONS(2995), - [sym_rune_literal] = ACTIONS(2995), - [anon_sym_AT] = ACTIONS(2997), - [anon_sym_shared] = ACTIONS(2997), - [anon_sym_map_LBRACK] = ACTIONS(2995), - [anon_sym_chan] = ACTIONS(2997), - [anon_sym_thread] = ACTIONS(2997), - [anon_sym_atomic] = ACTIONS(2997), - [sym___double_quote] = ACTIONS(2995), - [sym___single_quote] = ACTIONS(2995), - [sym___c_double_quote] = ACTIONS(2995), - [sym___c_single_quote] = ACTIONS(2995), - [sym___r_double_quote] = ACTIONS(2995), - [sym___r_single_quote] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(3086), + [anon_sym_as] = ACTIONS(3086), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_COMMA] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(3084), + [anon_sym_PIPE] = ACTIONS(3086), + [anon_sym_fn] = ACTIONS(3086), + [anon_sym_PLUS] = ACTIONS(3086), + [anon_sym_DASH] = ACTIONS(3086), + [anon_sym_STAR] = ACTIONS(3084), + [anon_sym_SLASH] = ACTIONS(3086), + [anon_sym_PERCENT] = ACTIONS(3084), + [anon_sym_LT] = ACTIONS(3086), + [anon_sym_GT] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_LT_EQ] = ACTIONS(3084), + [anon_sym_GT_EQ] = ACTIONS(3084), + [anon_sym_LBRACK] = ACTIONS(3084), + [anon_sym_RBRACK] = ACTIONS(3084), + [anon_sym_struct] = ACTIONS(3086), + [anon_sym_mut] = ACTIONS(3086), + [anon_sym_PLUS_PLUS] = ACTIONS(3084), + [anon_sym_DASH_DASH] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3086), + [anon_sym_spawn] = ACTIONS(3086), + [anon_sym_json_DOTdecode] = ACTIONS(3084), + [anon_sym_LBRACK2] = ACTIONS(3086), + [anon_sym_TILDE] = ACTIONS(3084), + [anon_sym_CARET] = ACTIONS(3084), + [anon_sym_AMP] = ACTIONS(3086), + [anon_sym_LT_DASH] = ACTIONS(3084), + [anon_sym_LT_LT] = ACTIONS(3084), + [anon_sym_GT_GT] = ACTIONS(3086), + [anon_sym_GT_GT_GT] = ACTIONS(3084), + [anon_sym_AMP_CARET] = ACTIONS(3084), + [anon_sym_AMP_AMP] = ACTIONS(3084), + [anon_sym_PIPE_PIPE] = ACTIONS(3084), + [anon_sym_or] = ACTIONS(3086), + [sym_none] = ACTIONS(3086), + [sym_true] = ACTIONS(3086), + [sym_false] = ACTIONS(3086), + [sym_nil] = ACTIONS(3086), + [anon_sym_QMARK_DOT] = ACTIONS(3084), + [anon_sym_POUND_LBRACK] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3086), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_is] = ACTIONS(3086), + [anon_sym_BANGis] = ACTIONS(3084), + [anon_sym_in] = ACTIONS(3086), + [anon_sym_BANGin] = ACTIONS(3084), + [anon_sym_match] = ACTIONS(3086), + [anon_sym_select] = ACTIONS(3086), + [anon_sym_lock] = ACTIONS(3086), + [anon_sym_rlock] = ACTIONS(3086), + [anon_sym_unsafe] = ACTIONS(3086), + [anon_sym_sql] = ACTIONS(3086), + [sym_int_literal] = ACTIONS(3086), + [sym_float_literal] = ACTIONS(3084), + [sym_rune_literal] = ACTIONS(3084), + [anon_sym_AT] = ACTIONS(3086), + [anon_sym_shared] = ACTIONS(3086), + [anon_sym_map_LBRACK] = ACTIONS(3084), + [anon_sym_chan] = ACTIONS(3086), + [anon_sym_thread] = ACTIONS(3086), + [anon_sym_atomic] = ACTIONS(3086), + [sym___double_quote] = ACTIONS(3084), + [sym___single_quote] = ACTIONS(3084), + [sym___c_double_quote] = ACTIONS(3084), + [sym___c_single_quote] = ACTIONS(3084), + [sym___r_double_quote] = ACTIONS(3084), + [sym___r_single_quote] = ACTIONS(3084), }, [1370] = { - [sym_identifier] = ACTIONS(2985), + [sym_identifier] = ACTIONS(2906), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2985), - [anon_sym_as] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_COMMA] = ACTIONS(2983), - [anon_sym_LPAREN] = ACTIONS(2983), - [anon_sym_PIPE] = ACTIONS(2985), - [anon_sym_fn] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_SLASH] = ACTIONS(2985), - [anon_sym_PERCENT] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2985), - [anon_sym_GT] = ACTIONS(2985), - [anon_sym_EQ_EQ] = ACTIONS(2983), - [anon_sym_BANG_EQ] = ACTIONS(2983), - [anon_sym_LT_EQ] = ACTIONS(2983), - [anon_sym_GT_EQ] = ACTIONS(2983), - [anon_sym_LBRACK] = ACTIONS(2983), - [anon_sym_RBRACK] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_mut] = ACTIONS(2985), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_QMARK] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_go] = ACTIONS(2985), - [anon_sym_spawn] = ACTIONS(2985), - [anon_sym_json_DOTdecode] = ACTIONS(2983), - [anon_sym_LBRACK2] = ACTIONS(2985), - [anon_sym_TILDE] = ACTIONS(2983), - [anon_sym_CARET] = ACTIONS(2983), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_LT_DASH] = ACTIONS(2983), - [anon_sym_LT_LT] = ACTIONS(2983), - [anon_sym_GT_GT] = ACTIONS(2985), - [anon_sym_GT_GT_GT] = ACTIONS(2983), - [anon_sym_AMP_CARET] = ACTIONS(2983), - [anon_sym_AMP_AMP] = ACTIONS(2983), - [anon_sym_PIPE_PIPE] = ACTIONS(2983), - [anon_sym_or] = ACTIONS(2985), - [sym_none] = ACTIONS(2985), - [sym_true] = ACTIONS(2985), - [sym_false] = ACTIONS(2985), - [sym_nil] = ACTIONS(2985), - [anon_sym_QMARK_DOT] = ACTIONS(2983), - [anon_sym_POUND_LBRACK] = ACTIONS(2983), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_DOLLARif] = ACTIONS(2985), - [anon_sym_is] = ACTIONS(2985), - [anon_sym_BANGis] = ACTIONS(2983), - [anon_sym_in] = ACTIONS(2985), - [anon_sym_BANGin] = ACTIONS(2983), - [anon_sym_match] = ACTIONS(2985), - [anon_sym_select] = ACTIONS(2985), - [anon_sym_lock] = ACTIONS(2985), - [anon_sym_rlock] = ACTIONS(2985), - [anon_sym_unsafe] = ACTIONS(2985), - [anon_sym_sql] = ACTIONS(2985), - [sym_int_literal] = ACTIONS(2985), - [sym_float_literal] = ACTIONS(2983), - [sym_rune_literal] = ACTIONS(2983), - [anon_sym_AT] = ACTIONS(2985), - [anon_sym_shared] = ACTIONS(2985), - [anon_sym_map_LBRACK] = ACTIONS(2983), - [anon_sym_chan] = ACTIONS(2985), - [anon_sym_thread] = ACTIONS(2985), - [anon_sym_atomic] = ACTIONS(2985), - [sym___double_quote] = ACTIONS(2983), - [sym___single_quote] = ACTIONS(2983), - [sym___c_double_quote] = ACTIONS(2983), - [sym___c_single_quote] = ACTIONS(2983), - [sym___r_double_quote] = ACTIONS(2983), - [sym___r_single_quote] = ACTIONS(2983), + [anon_sym_DOT] = ACTIONS(2906), + [anon_sym_as] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2904), + [anon_sym_COMMA] = ACTIONS(2904), + [anon_sym_LPAREN] = ACTIONS(2904), + [anon_sym_PIPE] = ACTIONS(2906), + [anon_sym_fn] = ACTIONS(2906), + [anon_sym_PLUS] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_STAR] = ACTIONS(2904), + [anon_sym_SLASH] = ACTIONS(2906), + [anon_sym_PERCENT] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2906), + [anon_sym_GT] = ACTIONS(2906), + [anon_sym_EQ_EQ] = ACTIONS(2904), + [anon_sym_BANG_EQ] = ACTIONS(2904), + [anon_sym_LT_EQ] = ACTIONS(2904), + [anon_sym_GT_EQ] = ACTIONS(2904), + [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_RBRACK] = ACTIONS(2904), + [anon_sym_struct] = ACTIONS(2906), + [anon_sym_mut] = ACTIONS(2906), + [anon_sym_PLUS_PLUS] = ACTIONS(2904), + [anon_sym_DASH_DASH] = ACTIONS(2904), + [anon_sym_QMARK] = ACTIONS(2906), + [anon_sym_BANG] = ACTIONS(2906), + [anon_sym_go] = ACTIONS(2906), + [anon_sym_spawn] = ACTIONS(2906), + [anon_sym_json_DOTdecode] = ACTIONS(2904), + [anon_sym_LBRACK2] = ACTIONS(2906), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_CARET] = ACTIONS(2904), + [anon_sym_AMP] = ACTIONS(2906), + [anon_sym_LT_DASH] = ACTIONS(2904), + [anon_sym_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT] = ACTIONS(2906), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_AMP_CARET] = ACTIONS(2904), + [anon_sym_AMP_AMP] = ACTIONS(2904), + [anon_sym_PIPE_PIPE] = ACTIONS(2904), + [anon_sym_or] = ACTIONS(2906), + [sym_none] = ACTIONS(2906), + [sym_true] = ACTIONS(2906), + [sym_false] = ACTIONS(2906), + [sym_nil] = ACTIONS(2906), + [anon_sym_QMARK_DOT] = ACTIONS(2904), + [anon_sym_POUND_LBRACK] = ACTIONS(2904), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_DOLLARif] = ACTIONS(2906), + [anon_sym_is] = ACTIONS(2906), + [anon_sym_BANGis] = ACTIONS(2904), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_BANGin] = ACTIONS(2904), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_select] = ACTIONS(2906), + [anon_sym_lock] = ACTIONS(2906), + [anon_sym_rlock] = ACTIONS(2906), + [anon_sym_unsafe] = ACTIONS(2906), + [anon_sym_sql] = ACTIONS(2906), + [sym_int_literal] = ACTIONS(2906), + [sym_float_literal] = ACTIONS(2904), + [sym_rune_literal] = ACTIONS(2904), + [anon_sym_AT] = ACTIONS(2906), + [anon_sym_shared] = ACTIONS(2906), + [anon_sym_map_LBRACK] = ACTIONS(2904), + [anon_sym_chan] = ACTIONS(2906), + [anon_sym_thread] = ACTIONS(2906), + [anon_sym_atomic] = ACTIONS(2906), + [sym___double_quote] = ACTIONS(2904), + [sym___single_quote] = ACTIONS(2904), + [sym___c_double_quote] = ACTIONS(2904), + [sym___c_single_quote] = ACTIONS(2904), + [sym___r_double_quote] = ACTIONS(2904), + [sym___r_single_quote] = ACTIONS(2904), }, [1371] = { - [sym_identifier] = ACTIONS(3005), + [sym_identifier] = ACTIONS(2918), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_as] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_COMMA] = ACTIONS(3003), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_fn] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3003), - [anon_sym_SLASH] = ACTIONS(3005), - [anon_sym_PERCENT] = ACTIONS(3003), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_EQ_EQ] = ACTIONS(3003), - [anon_sym_BANG_EQ] = ACTIONS(3003), - [anon_sym_LT_EQ] = ACTIONS(3003), - [anon_sym_GT_EQ] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_RBRACK] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_mut] = ACTIONS(3005), - [anon_sym_PLUS_PLUS] = ACTIONS(3003), - [anon_sym_DASH_DASH] = ACTIONS(3003), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_go] = ACTIONS(3005), - [anon_sym_spawn] = ACTIONS(3005), - [anon_sym_json_DOTdecode] = ACTIONS(3003), - [anon_sym_LBRACK2] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_CARET] = ACTIONS(3003), - [anon_sym_AMP] = ACTIONS(3005), - [anon_sym_LT_DASH] = ACTIONS(3003), - [anon_sym_LT_LT] = ACTIONS(3003), - [anon_sym_GT_GT] = ACTIONS(3005), - [anon_sym_GT_GT_GT] = ACTIONS(3003), - [anon_sym_AMP_CARET] = ACTIONS(3003), - [anon_sym_AMP_AMP] = ACTIONS(3003), - [anon_sym_PIPE_PIPE] = ACTIONS(3003), - [anon_sym_or] = ACTIONS(3005), - [sym_none] = ACTIONS(3005), - [sym_true] = ACTIONS(3005), - [sym_false] = ACTIONS(3005), - [sym_nil] = ACTIONS(3005), - [anon_sym_QMARK_DOT] = ACTIONS(3003), - [anon_sym_POUND_LBRACK] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3005), - [anon_sym_DOLLARif] = ACTIONS(3005), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3003), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_BANGin] = ACTIONS(3003), - [anon_sym_match] = ACTIONS(3005), - [anon_sym_select] = ACTIONS(3005), - [anon_sym_lock] = ACTIONS(3005), - [anon_sym_rlock] = ACTIONS(3005), - [anon_sym_unsafe] = ACTIONS(3005), - [anon_sym_sql] = ACTIONS(3005), - [sym_int_literal] = ACTIONS(3005), - [sym_float_literal] = ACTIONS(3003), - [sym_rune_literal] = ACTIONS(3003), - [anon_sym_AT] = ACTIONS(3005), - [anon_sym_shared] = ACTIONS(3005), - [anon_sym_map_LBRACK] = ACTIONS(3003), - [anon_sym_chan] = ACTIONS(3005), - [anon_sym_thread] = ACTIONS(3005), - [anon_sym_atomic] = ACTIONS(3005), - [sym___double_quote] = ACTIONS(3003), - [sym___single_quote] = ACTIONS(3003), - [sym___c_double_quote] = ACTIONS(3003), - [sym___c_single_quote] = ACTIONS(3003), - [sym___r_double_quote] = ACTIONS(3003), - [sym___r_single_quote] = ACTIONS(3003), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_as] = ACTIONS(2918), + [anon_sym_LBRACE] = ACTIONS(2916), + [anon_sym_COMMA] = ACTIONS(2916), + [anon_sym_LPAREN] = ACTIONS(2916), + [anon_sym_PIPE] = ACTIONS(2918), + [anon_sym_fn] = ACTIONS(2918), + [anon_sym_PLUS] = ACTIONS(2918), + [anon_sym_DASH] = ACTIONS(2918), + [anon_sym_STAR] = ACTIONS(2916), + [anon_sym_SLASH] = ACTIONS(2918), + [anon_sym_PERCENT] = ACTIONS(2916), + [anon_sym_LT] = ACTIONS(2918), + [anon_sym_GT] = ACTIONS(2918), + [anon_sym_EQ_EQ] = ACTIONS(2916), + [anon_sym_BANG_EQ] = ACTIONS(2916), + [anon_sym_LT_EQ] = ACTIONS(2916), + [anon_sym_GT_EQ] = ACTIONS(2916), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_RBRACK] = ACTIONS(2916), + [anon_sym_struct] = ACTIONS(2918), + [anon_sym_mut] = ACTIONS(2918), + [anon_sym_PLUS_PLUS] = ACTIONS(2916), + [anon_sym_DASH_DASH] = ACTIONS(2916), + [anon_sym_QMARK] = ACTIONS(2918), + [anon_sym_BANG] = ACTIONS(2918), + [anon_sym_go] = ACTIONS(2918), + [anon_sym_spawn] = ACTIONS(2918), + [anon_sym_json_DOTdecode] = ACTIONS(2916), + [anon_sym_LBRACK2] = ACTIONS(2918), + [anon_sym_TILDE] = ACTIONS(2916), + [anon_sym_CARET] = ACTIONS(2916), + [anon_sym_AMP] = ACTIONS(2918), + [anon_sym_LT_DASH] = ACTIONS(2916), + [anon_sym_LT_LT] = ACTIONS(2916), + [anon_sym_GT_GT] = ACTIONS(2918), + [anon_sym_GT_GT_GT] = ACTIONS(2916), + [anon_sym_AMP_CARET] = ACTIONS(2916), + [anon_sym_AMP_AMP] = ACTIONS(2916), + [anon_sym_PIPE_PIPE] = ACTIONS(2916), + [anon_sym_or] = ACTIONS(2918), + [sym_none] = ACTIONS(2918), + [sym_true] = ACTIONS(2918), + [sym_false] = ACTIONS(2918), + [sym_nil] = ACTIONS(2918), + [anon_sym_QMARK_DOT] = ACTIONS(2916), + [anon_sym_POUND_LBRACK] = ACTIONS(2916), + [anon_sym_if] = ACTIONS(2918), + [anon_sym_DOLLARif] = ACTIONS(2918), + [anon_sym_is] = ACTIONS(2918), + [anon_sym_BANGis] = ACTIONS(2916), + [anon_sym_in] = ACTIONS(2918), + [anon_sym_BANGin] = ACTIONS(2916), + [anon_sym_match] = ACTIONS(2918), + [anon_sym_select] = ACTIONS(2918), + [anon_sym_lock] = ACTIONS(2918), + [anon_sym_rlock] = ACTIONS(2918), + [anon_sym_unsafe] = ACTIONS(2918), + [anon_sym_sql] = ACTIONS(2918), + [sym_int_literal] = ACTIONS(2918), + [sym_float_literal] = ACTIONS(2916), + [sym_rune_literal] = ACTIONS(2916), + [anon_sym_AT] = ACTIONS(2918), + [anon_sym_shared] = ACTIONS(2918), + [anon_sym_map_LBRACK] = ACTIONS(2916), + [anon_sym_chan] = ACTIONS(2918), + [anon_sym_thread] = ACTIONS(2918), + [anon_sym_atomic] = ACTIONS(2918), + [sym___double_quote] = ACTIONS(2916), + [sym___single_quote] = ACTIONS(2916), + [sym___c_double_quote] = ACTIONS(2916), + [sym___c_single_quote] = ACTIONS(2916), + [sym___r_double_quote] = ACTIONS(2916), + [sym___r_single_quote] = ACTIONS(2916), }, [1372] = { - [sym_identifier] = ACTIONS(2981), + [sym_identifier] = ACTIONS(2938), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_as] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2979), - [anon_sym_COMMA] = ACTIONS(2979), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_PIPE] = ACTIONS(2981), - [anon_sym_fn] = ACTIONS(2981), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2979), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_EQ_EQ] = ACTIONS(2979), - [anon_sym_BANG_EQ] = ACTIONS(2979), - [anon_sym_LT_EQ] = ACTIONS(2979), - [anon_sym_GT_EQ] = ACTIONS(2979), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_RBRACK] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(2981), - [anon_sym_mut] = ACTIONS(2981), - [anon_sym_PLUS_PLUS] = ACTIONS(2979), - [anon_sym_DASH_DASH] = ACTIONS(2979), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2981), - [anon_sym_spawn] = ACTIONS(2981), - [anon_sym_json_DOTdecode] = ACTIONS(2979), - [anon_sym_LBRACK2] = ACTIONS(2981), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_CARET] = ACTIONS(2979), - [anon_sym_AMP] = ACTIONS(2981), - [anon_sym_LT_DASH] = ACTIONS(2979), - [anon_sym_LT_LT] = ACTIONS(2979), - [anon_sym_GT_GT] = ACTIONS(2981), - [anon_sym_GT_GT_GT] = ACTIONS(2979), - [anon_sym_AMP_CARET] = ACTIONS(2979), - [anon_sym_AMP_AMP] = ACTIONS(2979), - [anon_sym_PIPE_PIPE] = ACTIONS(2979), - [anon_sym_or] = ACTIONS(2981), - [sym_none] = ACTIONS(2981), - [sym_true] = ACTIONS(2981), - [sym_false] = ACTIONS(2981), - [sym_nil] = ACTIONS(2981), - [anon_sym_QMARK_DOT] = ACTIONS(2979), - [anon_sym_POUND_LBRACK] = ACTIONS(2979), - [anon_sym_if] = ACTIONS(2981), - [anon_sym_DOLLARif] = ACTIONS(2981), - [anon_sym_is] = ACTIONS(2981), - [anon_sym_BANGis] = ACTIONS(2979), - [anon_sym_in] = ACTIONS(2981), - [anon_sym_BANGin] = ACTIONS(2979), - [anon_sym_match] = ACTIONS(2981), - [anon_sym_select] = ACTIONS(2981), - [anon_sym_lock] = ACTIONS(2981), - [anon_sym_rlock] = ACTIONS(2981), - [anon_sym_unsafe] = ACTIONS(2981), - [anon_sym_sql] = ACTIONS(2981), - [sym_int_literal] = ACTIONS(2981), - [sym_float_literal] = ACTIONS(2979), - [sym_rune_literal] = ACTIONS(2979), - [anon_sym_AT] = ACTIONS(2981), - [anon_sym_shared] = ACTIONS(2981), - [anon_sym_map_LBRACK] = ACTIONS(2979), - [anon_sym_chan] = ACTIONS(2981), - [anon_sym_thread] = ACTIONS(2981), - [anon_sym_atomic] = ACTIONS(2981), - [sym___double_quote] = ACTIONS(2979), - [sym___single_quote] = ACTIONS(2979), - [sym___c_double_quote] = ACTIONS(2979), - [sym___c_single_quote] = ACTIONS(2979), - [sym___r_double_quote] = ACTIONS(2979), - [sym___r_single_quote] = ACTIONS(2979), + [anon_sym_DOT] = ACTIONS(2938), + [anon_sym_as] = ACTIONS(2938), + [anon_sym_LBRACE] = ACTIONS(2936), + [anon_sym_COMMA] = ACTIONS(2936), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_PIPE] = ACTIONS(2938), + [anon_sym_fn] = ACTIONS(2938), + [anon_sym_PLUS] = ACTIONS(2938), + [anon_sym_DASH] = ACTIONS(2938), + [anon_sym_STAR] = ACTIONS(2936), + [anon_sym_SLASH] = ACTIONS(2938), + [anon_sym_PERCENT] = ACTIONS(2936), + [anon_sym_LT] = ACTIONS(2938), + [anon_sym_GT] = ACTIONS(2938), + [anon_sym_EQ_EQ] = ACTIONS(2936), + [anon_sym_BANG_EQ] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(2936), + [anon_sym_GT_EQ] = ACTIONS(2936), + [anon_sym_LBRACK] = ACTIONS(2936), + [anon_sym_RBRACK] = ACTIONS(2936), + [anon_sym_struct] = ACTIONS(2938), + [anon_sym_mut] = ACTIONS(2938), + [anon_sym_PLUS_PLUS] = ACTIONS(2936), + [anon_sym_DASH_DASH] = ACTIONS(2936), + [anon_sym_QMARK] = ACTIONS(2938), + [anon_sym_BANG] = ACTIONS(2938), + [anon_sym_go] = ACTIONS(2938), + [anon_sym_spawn] = ACTIONS(2938), + [anon_sym_json_DOTdecode] = ACTIONS(2936), + [anon_sym_LBRACK2] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2936), + [anon_sym_CARET] = ACTIONS(2936), + [anon_sym_AMP] = ACTIONS(2938), + [anon_sym_LT_DASH] = ACTIONS(2936), + [anon_sym_LT_LT] = ACTIONS(2936), + [anon_sym_GT_GT] = ACTIONS(2938), + [anon_sym_GT_GT_GT] = ACTIONS(2936), + [anon_sym_AMP_CARET] = ACTIONS(2936), + [anon_sym_AMP_AMP] = ACTIONS(2936), + [anon_sym_PIPE_PIPE] = ACTIONS(2936), + [anon_sym_or] = ACTIONS(2938), + [sym_none] = ACTIONS(2938), + [sym_true] = ACTIONS(2938), + [sym_false] = ACTIONS(2938), + [sym_nil] = ACTIONS(2938), + [anon_sym_QMARK_DOT] = ACTIONS(2936), + [anon_sym_POUND_LBRACK] = ACTIONS(2936), + [anon_sym_if] = ACTIONS(2938), + [anon_sym_DOLLARif] = ACTIONS(2938), + [anon_sym_is] = ACTIONS(2938), + [anon_sym_BANGis] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(2938), + [anon_sym_BANGin] = ACTIONS(2936), + [anon_sym_match] = ACTIONS(2938), + [anon_sym_select] = ACTIONS(2938), + [anon_sym_lock] = ACTIONS(2938), + [anon_sym_rlock] = ACTIONS(2938), + [anon_sym_unsafe] = ACTIONS(2938), + [anon_sym_sql] = ACTIONS(2938), + [sym_int_literal] = ACTIONS(2938), + [sym_float_literal] = ACTIONS(2936), + [sym_rune_literal] = ACTIONS(2936), + [anon_sym_AT] = ACTIONS(2938), + [anon_sym_shared] = ACTIONS(2938), + [anon_sym_map_LBRACK] = ACTIONS(2936), + [anon_sym_chan] = ACTIONS(2938), + [anon_sym_thread] = ACTIONS(2938), + [anon_sym_atomic] = ACTIONS(2938), + [sym___double_quote] = ACTIONS(2936), + [sym___single_quote] = ACTIONS(2936), + [sym___c_double_quote] = ACTIONS(2936), + [sym___c_single_quote] = ACTIONS(2936), + [sym___r_double_quote] = ACTIONS(2936), + [sym___r_single_quote] = ACTIONS(2936), }, [1373] = { - [sym_reference_expression] = STATE(4566), - [sym_type_reference_expression] = STATE(2159), - [sym_plain_type] = STATE(2168), - [sym__plain_type_without_special] = STATE(2185), - [sym_anon_struct_type] = STATE(2186), - [sym_multi_return_type] = STATE(2185), - [sym_result_type] = STATE(2185), - [sym_option_type] = STATE(2185), - [sym_qualified_type] = STATE(2159), - [sym_fixed_array_type] = STATE(2186), - [sym_array_type] = STATE(2186), - [sym_pointer_type] = STATE(2186), - [sym_wrong_pointer_type] = STATE(2186), - [sym_map_type] = STATE(2186), - [sym_channel_type] = STATE(2186), - [sym_shared_type] = STATE(2186), - [sym_thread_type] = STATE(2186), - [sym_atomic_type] = STATE(2186), - [sym_generic_type] = STATE(2186), - [sym_function_type] = STATE(2186), - [sym_identifier] = ACTIONS(3672), - [anon_sym_LF] = ACTIONS(615), - [anon_sym_CR] = ACTIONS(615), - [anon_sym_CR_LF] = ACTIONS(615), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(615), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym___global] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(3678), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(3680), - [anon_sym_pub] = ACTIONS(615), - [anon_sym_mut] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(3682), - [anon_sym_BANG] = ACTIONS(3684), - [anon_sym_LBRACK2] = ACTIONS(3686), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(3688), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_or] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(615), - [anon_sym_POUND_LBRACK] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(615), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(3690), - [anon_sym_map_LBRACK] = ACTIONS(3692), - [anon_sym_chan] = ACTIONS(3694), - [anon_sym_thread] = ACTIONS(3696), - [anon_sym_atomic] = ACTIONS(3698), - [anon_sym_AT_LBRACK] = ACTIONS(615), + [sym_identifier] = ACTIONS(2942), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2942), + [anon_sym_as] = ACTIONS(2942), + [anon_sym_LBRACE] = ACTIONS(2940), + [anon_sym_COMMA] = ACTIONS(2940), + [anon_sym_LPAREN] = ACTIONS(2940), + [anon_sym_PIPE] = ACTIONS(2942), + [anon_sym_fn] = ACTIONS(2942), + [anon_sym_PLUS] = ACTIONS(2942), + [anon_sym_DASH] = ACTIONS(2942), + [anon_sym_STAR] = ACTIONS(2940), + [anon_sym_SLASH] = ACTIONS(2942), + [anon_sym_PERCENT] = ACTIONS(2940), + [anon_sym_LT] = ACTIONS(2942), + [anon_sym_GT] = ACTIONS(2942), + [anon_sym_EQ_EQ] = ACTIONS(2940), + [anon_sym_BANG_EQ] = ACTIONS(2940), + [anon_sym_LT_EQ] = ACTIONS(2940), + [anon_sym_GT_EQ] = ACTIONS(2940), + [anon_sym_LBRACK] = ACTIONS(2940), + [anon_sym_RBRACK] = ACTIONS(2940), + [anon_sym_struct] = ACTIONS(2942), + [anon_sym_mut] = ACTIONS(2942), + [anon_sym_PLUS_PLUS] = ACTIONS(2940), + [anon_sym_DASH_DASH] = ACTIONS(2940), + [anon_sym_QMARK] = ACTIONS(2942), + [anon_sym_BANG] = ACTIONS(2942), + [anon_sym_go] = ACTIONS(2942), + [anon_sym_spawn] = ACTIONS(2942), + [anon_sym_json_DOTdecode] = ACTIONS(2940), + [anon_sym_LBRACK2] = ACTIONS(2942), + [anon_sym_TILDE] = ACTIONS(2940), + [anon_sym_CARET] = ACTIONS(2940), + [anon_sym_AMP] = ACTIONS(2942), + [anon_sym_LT_DASH] = ACTIONS(2940), + [anon_sym_LT_LT] = ACTIONS(2940), + [anon_sym_GT_GT] = ACTIONS(2942), + [anon_sym_GT_GT_GT] = ACTIONS(2940), + [anon_sym_AMP_CARET] = ACTIONS(2940), + [anon_sym_AMP_AMP] = ACTIONS(2940), + [anon_sym_PIPE_PIPE] = ACTIONS(2940), + [anon_sym_or] = ACTIONS(2942), + [sym_none] = ACTIONS(2942), + [sym_true] = ACTIONS(2942), + [sym_false] = ACTIONS(2942), + [sym_nil] = ACTIONS(2942), + [anon_sym_QMARK_DOT] = ACTIONS(2940), + [anon_sym_POUND_LBRACK] = ACTIONS(2940), + [anon_sym_if] = ACTIONS(2942), + [anon_sym_DOLLARif] = ACTIONS(2942), + [anon_sym_is] = ACTIONS(2942), + [anon_sym_BANGis] = ACTIONS(2940), + [anon_sym_in] = ACTIONS(2942), + [anon_sym_BANGin] = ACTIONS(2940), + [anon_sym_match] = ACTIONS(2942), + [anon_sym_select] = ACTIONS(2942), + [anon_sym_lock] = ACTIONS(2942), + [anon_sym_rlock] = ACTIONS(2942), + [anon_sym_unsafe] = ACTIONS(2942), + [anon_sym_sql] = ACTIONS(2942), + [sym_int_literal] = ACTIONS(2942), + [sym_float_literal] = ACTIONS(2940), + [sym_rune_literal] = ACTIONS(2940), + [anon_sym_AT] = ACTIONS(2942), + [anon_sym_shared] = ACTIONS(2942), + [anon_sym_map_LBRACK] = ACTIONS(2940), + [anon_sym_chan] = ACTIONS(2942), + [anon_sym_thread] = ACTIONS(2942), + [anon_sym_atomic] = ACTIONS(2942), + [sym___double_quote] = ACTIONS(2940), + [sym___single_quote] = ACTIONS(2940), + [sym___c_double_quote] = ACTIONS(2940), + [sym___c_single_quote] = ACTIONS(2940), + [sym___r_double_quote] = ACTIONS(2940), + [sym___r_single_quote] = ACTIONS(2940), }, [1374] = { - [sym_identifier] = ACTIONS(2792), + [sym_identifier] = ACTIONS(2810), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2792), - [anon_sym_as] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2790), - [anon_sym_COMMA] = ACTIONS(2790), - [anon_sym_LPAREN] = ACTIONS(2790), - [anon_sym_PIPE] = ACTIONS(2792), - [anon_sym_fn] = ACTIONS(2792), - [anon_sym_PLUS] = ACTIONS(2792), - [anon_sym_DASH] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(2790), - [anon_sym_SLASH] = ACTIONS(2792), - [anon_sym_PERCENT] = ACTIONS(2790), - [anon_sym_LT] = ACTIONS(2792), - [anon_sym_GT] = ACTIONS(2792), - [anon_sym_EQ_EQ] = ACTIONS(2790), - [anon_sym_BANG_EQ] = ACTIONS(2790), - [anon_sym_LT_EQ] = ACTIONS(2790), - [anon_sym_GT_EQ] = ACTIONS(2790), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_RBRACK] = ACTIONS(2790), - [anon_sym_struct] = ACTIONS(2792), - [anon_sym_mut] = ACTIONS(2792), - [anon_sym_PLUS_PLUS] = ACTIONS(2790), - [anon_sym_DASH_DASH] = ACTIONS(2790), - [anon_sym_QMARK] = ACTIONS(2792), - [anon_sym_BANG] = ACTIONS(2792), - [anon_sym_go] = ACTIONS(2792), - [anon_sym_spawn] = ACTIONS(2792), - [anon_sym_json_DOTdecode] = ACTIONS(2790), - [anon_sym_LBRACK2] = ACTIONS(2792), - [anon_sym_TILDE] = ACTIONS(2790), - [anon_sym_CARET] = ACTIONS(2790), - [anon_sym_AMP] = ACTIONS(2792), - [anon_sym_LT_DASH] = ACTIONS(2790), - [anon_sym_LT_LT] = ACTIONS(2790), - [anon_sym_GT_GT] = ACTIONS(2792), - [anon_sym_GT_GT_GT] = ACTIONS(2790), - [anon_sym_AMP_CARET] = ACTIONS(2790), - [anon_sym_AMP_AMP] = ACTIONS(2790), - [anon_sym_PIPE_PIPE] = ACTIONS(2790), - [anon_sym_or] = ACTIONS(2792), - [sym_none] = ACTIONS(2792), - [sym_true] = ACTIONS(2792), - [sym_false] = ACTIONS(2792), - [sym_nil] = ACTIONS(2792), - [anon_sym_QMARK_DOT] = ACTIONS(2790), - [anon_sym_POUND_LBRACK] = ACTIONS(2790), - [anon_sym_if] = ACTIONS(2792), - [anon_sym_DOLLARif] = ACTIONS(2792), - [anon_sym_is] = ACTIONS(2792), - [anon_sym_BANGis] = ACTIONS(2790), - [anon_sym_in] = ACTIONS(2792), - [anon_sym_BANGin] = ACTIONS(2790), - [anon_sym_match] = ACTIONS(2792), - [anon_sym_select] = ACTIONS(2792), - [anon_sym_lock] = ACTIONS(2792), - [anon_sym_rlock] = ACTIONS(2792), - [anon_sym_unsafe] = ACTIONS(2792), - [anon_sym_sql] = ACTIONS(2792), - [sym_int_literal] = ACTIONS(2792), - [sym_float_literal] = ACTIONS(2790), - [sym_rune_literal] = ACTIONS(2790), - [anon_sym_AT] = ACTIONS(2792), - [anon_sym_shared] = ACTIONS(2792), - [anon_sym_map_LBRACK] = ACTIONS(2790), - [anon_sym_chan] = ACTIONS(2792), - [anon_sym_thread] = ACTIONS(2792), - [anon_sym_atomic] = ACTIONS(2792), - [sym___double_quote] = ACTIONS(2790), - [sym___single_quote] = ACTIONS(2790), - [sym___c_double_quote] = ACTIONS(2790), - [sym___c_single_quote] = ACTIONS(2790), - [sym___r_double_quote] = ACTIONS(2790), - [sym___r_single_quote] = ACTIONS(2790), + [anon_sym_DOT] = ACTIONS(2810), + [anon_sym_as] = ACTIONS(2810), + [anon_sym_LBRACE] = ACTIONS(2808), + [anon_sym_COMMA] = ACTIONS(2808), + [anon_sym_LPAREN] = ACTIONS(2808), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_fn] = ACTIONS(2810), + [anon_sym_PLUS] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_STAR] = ACTIONS(2808), + [anon_sym_SLASH] = ACTIONS(2810), + [anon_sym_PERCENT] = ACTIONS(2808), + [anon_sym_LT] = ACTIONS(2810), + [anon_sym_GT] = ACTIONS(2810), + [anon_sym_EQ_EQ] = ACTIONS(2808), + [anon_sym_BANG_EQ] = ACTIONS(2808), + [anon_sym_LT_EQ] = ACTIONS(2808), + [anon_sym_GT_EQ] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2808), + [anon_sym_RBRACK] = ACTIONS(2808), + [anon_sym_struct] = ACTIONS(2810), + [anon_sym_mut] = ACTIONS(2810), + [anon_sym_PLUS_PLUS] = ACTIONS(2808), + [anon_sym_DASH_DASH] = ACTIONS(2808), + [anon_sym_QMARK] = ACTIONS(2810), + [anon_sym_BANG] = ACTIONS(2810), + [anon_sym_go] = ACTIONS(2810), + [anon_sym_spawn] = ACTIONS(2810), + [anon_sym_json_DOTdecode] = ACTIONS(2808), + [anon_sym_LBRACK2] = ACTIONS(2810), + [anon_sym_TILDE] = ACTIONS(2808), + [anon_sym_CARET] = ACTIONS(2808), + [anon_sym_AMP] = ACTIONS(2810), + [anon_sym_LT_DASH] = ACTIONS(2808), + [anon_sym_LT_LT] = ACTIONS(2808), + [anon_sym_GT_GT] = ACTIONS(2810), + [anon_sym_GT_GT_GT] = ACTIONS(2808), + [anon_sym_AMP_CARET] = ACTIONS(2808), + [anon_sym_AMP_AMP] = ACTIONS(2808), + [anon_sym_PIPE_PIPE] = ACTIONS(2808), + [anon_sym_or] = ACTIONS(2810), + [sym_none] = ACTIONS(2810), + [sym_true] = ACTIONS(2810), + [sym_false] = ACTIONS(2810), + [sym_nil] = ACTIONS(2810), + [anon_sym_QMARK_DOT] = ACTIONS(2808), + [anon_sym_POUND_LBRACK] = ACTIONS(2808), + [anon_sym_if] = ACTIONS(2810), + [anon_sym_DOLLARif] = ACTIONS(2810), + [anon_sym_is] = ACTIONS(2810), + [anon_sym_BANGis] = ACTIONS(2808), + [anon_sym_in] = ACTIONS(2810), + [anon_sym_BANGin] = ACTIONS(2808), + [anon_sym_match] = ACTIONS(2810), + [anon_sym_select] = ACTIONS(2810), + [anon_sym_lock] = ACTIONS(2810), + [anon_sym_rlock] = ACTIONS(2810), + [anon_sym_unsafe] = ACTIONS(2810), + [anon_sym_sql] = ACTIONS(2810), + [sym_int_literal] = ACTIONS(2810), + [sym_float_literal] = ACTIONS(2808), + [sym_rune_literal] = ACTIONS(2808), + [anon_sym_AT] = ACTIONS(2810), + [anon_sym_shared] = ACTIONS(2810), + [anon_sym_map_LBRACK] = ACTIONS(2808), + [anon_sym_chan] = ACTIONS(2810), + [anon_sym_thread] = ACTIONS(2810), + [anon_sym_atomic] = ACTIONS(2810), + [sym___double_quote] = ACTIONS(2808), + [sym___single_quote] = ACTIONS(2808), + [sym___c_double_quote] = ACTIONS(2808), + [sym___c_single_quote] = ACTIONS(2808), + [sym___r_double_quote] = ACTIONS(2808), + [sym___r_single_quote] = ACTIONS(2808), }, [1375] = { - [sym_identifier] = ACTIONS(2836), + [sym_identifier] = ACTIONS(2814), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2836), - [anon_sym_as] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_COMMA] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(2834), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_fn] = ACTIONS(2836), - [anon_sym_PLUS] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2836), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_SLASH] = ACTIONS(2836), - [anon_sym_PERCENT] = ACTIONS(2834), - [anon_sym_LT] = ACTIONS(2836), - [anon_sym_GT] = ACTIONS(2836), - [anon_sym_EQ_EQ] = ACTIONS(2834), - [anon_sym_BANG_EQ] = ACTIONS(2834), - [anon_sym_LT_EQ] = ACTIONS(2834), - [anon_sym_GT_EQ] = ACTIONS(2834), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_RBRACK] = ACTIONS(2834), - [anon_sym_struct] = ACTIONS(2836), - [anon_sym_mut] = ACTIONS(2836), - [anon_sym_PLUS_PLUS] = ACTIONS(2834), - [anon_sym_DASH_DASH] = ACTIONS(2834), - [anon_sym_QMARK] = ACTIONS(2836), - [anon_sym_BANG] = ACTIONS(2836), - [anon_sym_go] = ACTIONS(2836), - [anon_sym_spawn] = ACTIONS(2836), - [anon_sym_json_DOTdecode] = ACTIONS(2834), - [anon_sym_LBRACK2] = ACTIONS(2836), - [anon_sym_TILDE] = ACTIONS(2834), - [anon_sym_CARET] = ACTIONS(2834), - [anon_sym_AMP] = ACTIONS(2836), - [anon_sym_LT_DASH] = ACTIONS(2834), - [anon_sym_LT_LT] = ACTIONS(2834), - [anon_sym_GT_GT] = ACTIONS(2836), - [anon_sym_GT_GT_GT] = ACTIONS(2834), - [anon_sym_AMP_CARET] = ACTIONS(2834), - [anon_sym_AMP_AMP] = ACTIONS(2834), - [anon_sym_PIPE_PIPE] = ACTIONS(2834), - [anon_sym_or] = ACTIONS(2836), - [sym_none] = ACTIONS(2836), - [sym_true] = ACTIONS(2836), - [sym_false] = ACTIONS(2836), - [sym_nil] = ACTIONS(2836), - [anon_sym_QMARK_DOT] = ACTIONS(2834), - [anon_sym_POUND_LBRACK] = ACTIONS(2834), - [anon_sym_if] = ACTIONS(2836), - [anon_sym_DOLLARif] = ACTIONS(2836), - [anon_sym_is] = ACTIONS(2836), - [anon_sym_BANGis] = ACTIONS(2834), - [anon_sym_in] = ACTIONS(2836), - [anon_sym_BANGin] = ACTIONS(2834), - [anon_sym_match] = ACTIONS(2836), - [anon_sym_select] = ACTIONS(2836), - [anon_sym_lock] = ACTIONS(2836), - [anon_sym_rlock] = ACTIONS(2836), - [anon_sym_unsafe] = ACTIONS(2836), - [anon_sym_sql] = ACTIONS(2836), - [sym_int_literal] = ACTIONS(2836), - [sym_float_literal] = ACTIONS(2834), - [sym_rune_literal] = ACTIONS(2834), - [anon_sym_AT] = ACTIONS(2836), - [anon_sym_shared] = ACTIONS(2836), - [anon_sym_map_LBRACK] = ACTIONS(2834), - [anon_sym_chan] = ACTIONS(2836), - [anon_sym_thread] = ACTIONS(2836), - [anon_sym_atomic] = ACTIONS(2836), - [sym___double_quote] = ACTIONS(2834), - [sym___single_quote] = ACTIONS(2834), - [sym___c_double_quote] = ACTIONS(2834), - [sym___c_single_quote] = ACTIONS(2834), - [sym___r_double_quote] = ACTIONS(2834), - [sym___r_single_quote] = ACTIONS(2834), + [anon_sym_DOT] = ACTIONS(2814), + [anon_sym_as] = ACTIONS(2814), + [anon_sym_LBRACE] = ACTIONS(2812), + [anon_sym_COMMA] = ACTIONS(2812), + [anon_sym_LPAREN] = ACTIONS(2812), + [anon_sym_PIPE] = ACTIONS(2814), + [anon_sym_fn] = ACTIONS(2814), + [anon_sym_PLUS] = ACTIONS(2814), + [anon_sym_DASH] = ACTIONS(2814), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_SLASH] = ACTIONS(2814), + [anon_sym_PERCENT] = ACTIONS(2812), + [anon_sym_LT] = ACTIONS(2814), + [anon_sym_GT] = ACTIONS(2814), + [anon_sym_EQ_EQ] = ACTIONS(2812), + [anon_sym_BANG_EQ] = ACTIONS(2812), + [anon_sym_LT_EQ] = ACTIONS(2812), + [anon_sym_GT_EQ] = ACTIONS(2812), + [anon_sym_LBRACK] = ACTIONS(2812), + [anon_sym_RBRACK] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2814), + [anon_sym_mut] = ACTIONS(2814), + [anon_sym_PLUS_PLUS] = ACTIONS(2812), + [anon_sym_DASH_DASH] = ACTIONS(2812), + [anon_sym_QMARK] = ACTIONS(2814), + [anon_sym_BANG] = ACTIONS(2814), + [anon_sym_go] = ACTIONS(2814), + [anon_sym_spawn] = ACTIONS(2814), + [anon_sym_json_DOTdecode] = ACTIONS(2812), + [anon_sym_LBRACK2] = ACTIONS(2814), + [anon_sym_TILDE] = ACTIONS(2812), + [anon_sym_CARET] = ACTIONS(2812), + [anon_sym_AMP] = ACTIONS(2814), + [anon_sym_LT_DASH] = ACTIONS(2812), + [anon_sym_LT_LT] = ACTIONS(2812), + [anon_sym_GT_GT] = ACTIONS(2814), + [anon_sym_GT_GT_GT] = ACTIONS(2812), + [anon_sym_AMP_CARET] = ACTIONS(2812), + [anon_sym_AMP_AMP] = ACTIONS(2812), + [anon_sym_PIPE_PIPE] = ACTIONS(2812), + [anon_sym_or] = ACTIONS(2814), + [sym_none] = ACTIONS(2814), + [sym_true] = ACTIONS(2814), + [sym_false] = ACTIONS(2814), + [sym_nil] = ACTIONS(2814), + [anon_sym_QMARK_DOT] = ACTIONS(2812), + [anon_sym_POUND_LBRACK] = ACTIONS(2812), + [anon_sym_if] = ACTIONS(2814), + [anon_sym_DOLLARif] = ACTIONS(2814), + [anon_sym_is] = ACTIONS(2814), + [anon_sym_BANGis] = ACTIONS(2812), + [anon_sym_in] = ACTIONS(2814), + [anon_sym_BANGin] = ACTIONS(2812), + [anon_sym_match] = ACTIONS(2814), + [anon_sym_select] = ACTIONS(2814), + [anon_sym_lock] = ACTIONS(2814), + [anon_sym_rlock] = ACTIONS(2814), + [anon_sym_unsafe] = ACTIONS(2814), + [anon_sym_sql] = ACTIONS(2814), + [sym_int_literal] = ACTIONS(2814), + [sym_float_literal] = ACTIONS(2812), + [sym_rune_literal] = ACTIONS(2812), + [anon_sym_AT] = ACTIONS(2814), + [anon_sym_shared] = ACTIONS(2814), + [anon_sym_map_LBRACK] = ACTIONS(2812), + [anon_sym_chan] = ACTIONS(2814), + [anon_sym_thread] = ACTIONS(2814), + [anon_sym_atomic] = ACTIONS(2814), + [sym___double_quote] = ACTIONS(2812), + [sym___single_quote] = ACTIONS(2812), + [sym___c_double_quote] = ACTIONS(2812), + [sym___c_single_quote] = ACTIONS(2812), + [sym___r_double_quote] = ACTIONS(2812), + [sym___r_single_quote] = ACTIONS(2812), }, - [1376] = { - [sym_identifier] = ACTIONS(2864), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2864), - [anon_sym_as] = ACTIONS(2864), - [anon_sym_LBRACE] = ACTIONS(2862), - [anon_sym_COMMA] = ACTIONS(2862), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym_PIPE] = ACTIONS(2864), - [anon_sym_fn] = ACTIONS(2864), - [anon_sym_PLUS] = ACTIONS(2864), - [anon_sym_DASH] = ACTIONS(2864), - [anon_sym_STAR] = ACTIONS(2862), - [anon_sym_SLASH] = ACTIONS(2864), - [anon_sym_PERCENT] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2864), - [anon_sym_GT] = ACTIONS(2864), - [anon_sym_EQ_EQ] = ACTIONS(2862), - [anon_sym_BANG_EQ] = ACTIONS(2862), - [anon_sym_LT_EQ] = ACTIONS(2862), - [anon_sym_GT_EQ] = ACTIONS(2862), - [anon_sym_LBRACK] = ACTIONS(2862), - [anon_sym_RBRACK] = ACTIONS(2862), - [anon_sym_struct] = ACTIONS(2864), - [anon_sym_mut] = ACTIONS(2864), - [anon_sym_PLUS_PLUS] = ACTIONS(2862), - [anon_sym_DASH_DASH] = ACTIONS(2862), - [anon_sym_QMARK] = ACTIONS(2864), - [anon_sym_BANG] = ACTIONS(2864), - [anon_sym_go] = ACTIONS(2864), - [anon_sym_spawn] = ACTIONS(2864), - [anon_sym_json_DOTdecode] = ACTIONS(2862), - [anon_sym_LBRACK2] = ACTIONS(2864), - [anon_sym_TILDE] = ACTIONS(2862), - [anon_sym_CARET] = ACTIONS(2862), - [anon_sym_AMP] = ACTIONS(2864), - [anon_sym_LT_DASH] = ACTIONS(2862), - [anon_sym_LT_LT] = ACTIONS(2862), - [anon_sym_GT_GT] = ACTIONS(2864), - [anon_sym_GT_GT_GT] = ACTIONS(2862), - [anon_sym_AMP_CARET] = ACTIONS(2862), - [anon_sym_AMP_AMP] = ACTIONS(2862), - [anon_sym_PIPE_PIPE] = ACTIONS(2862), - [anon_sym_or] = ACTIONS(2864), - [sym_none] = ACTIONS(2864), - [sym_true] = ACTIONS(2864), - [sym_false] = ACTIONS(2864), - [sym_nil] = ACTIONS(2864), - [anon_sym_QMARK_DOT] = ACTIONS(2862), - [anon_sym_POUND_LBRACK] = ACTIONS(2862), - [anon_sym_if] = ACTIONS(2864), - [anon_sym_DOLLARif] = ACTIONS(2864), - [anon_sym_is] = ACTIONS(2864), - [anon_sym_BANGis] = ACTIONS(2862), - [anon_sym_in] = ACTIONS(2864), - [anon_sym_BANGin] = ACTIONS(2862), - [anon_sym_match] = ACTIONS(2864), - [anon_sym_select] = ACTIONS(2864), - [anon_sym_lock] = ACTIONS(2864), - [anon_sym_rlock] = ACTIONS(2864), - [anon_sym_unsafe] = ACTIONS(2864), - [anon_sym_sql] = ACTIONS(2864), - [sym_int_literal] = ACTIONS(2864), - [sym_float_literal] = ACTIONS(2862), - [sym_rune_literal] = ACTIONS(2862), - [anon_sym_AT] = ACTIONS(2864), - [anon_sym_shared] = ACTIONS(2864), - [anon_sym_map_LBRACK] = ACTIONS(2862), - [anon_sym_chan] = ACTIONS(2864), - [anon_sym_thread] = ACTIONS(2864), - [anon_sym_atomic] = ACTIONS(2864), - [sym___double_quote] = ACTIONS(2862), - [sym___single_quote] = ACTIONS(2862), - [sym___c_double_quote] = ACTIONS(2862), - [sym___c_single_quote] = ACTIONS(2862), - [sym___r_double_quote] = ACTIONS(2862), - [sym___r_single_quote] = ACTIONS(2862), + [1376] = { + [sym_identifier] = ACTIONS(3106), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3106), + [anon_sym_as] = ACTIONS(3106), + [anon_sym_LBRACE] = ACTIONS(3104), + [anon_sym_COMMA] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3104), + [anon_sym_PIPE] = ACTIONS(3106), + [anon_sym_fn] = ACTIONS(3106), + [anon_sym_PLUS] = ACTIONS(3106), + [anon_sym_DASH] = ACTIONS(3106), + [anon_sym_STAR] = ACTIONS(3104), + [anon_sym_SLASH] = ACTIONS(3106), + [anon_sym_PERCENT] = ACTIONS(3104), + [anon_sym_LT] = ACTIONS(3106), + [anon_sym_GT] = ACTIONS(3106), + [anon_sym_EQ_EQ] = ACTIONS(3104), + [anon_sym_BANG_EQ] = ACTIONS(3104), + [anon_sym_LT_EQ] = ACTIONS(3104), + [anon_sym_GT_EQ] = ACTIONS(3104), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_RBRACK] = ACTIONS(3104), + [anon_sym_struct] = ACTIONS(3106), + [anon_sym_mut] = ACTIONS(3106), + [anon_sym_PLUS_PLUS] = ACTIONS(3104), + [anon_sym_DASH_DASH] = ACTIONS(3104), + [anon_sym_QMARK] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(3106), + [anon_sym_go] = ACTIONS(3106), + [anon_sym_spawn] = ACTIONS(3106), + [anon_sym_json_DOTdecode] = ACTIONS(3104), + [anon_sym_LBRACK2] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3104), + [anon_sym_CARET] = ACTIONS(3104), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT_DASH] = ACTIONS(3104), + [anon_sym_LT_LT] = ACTIONS(3104), + [anon_sym_GT_GT] = ACTIONS(3106), + [anon_sym_GT_GT_GT] = ACTIONS(3104), + [anon_sym_AMP_CARET] = ACTIONS(3104), + [anon_sym_AMP_AMP] = ACTIONS(3104), + [anon_sym_PIPE_PIPE] = ACTIONS(3104), + [anon_sym_or] = ACTIONS(3106), + [sym_none] = ACTIONS(3106), + [sym_true] = ACTIONS(3106), + [sym_false] = ACTIONS(3106), + [sym_nil] = ACTIONS(3106), + [anon_sym_QMARK_DOT] = ACTIONS(3104), + [anon_sym_POUND_LBRACK] = ACTIONS(3104), + [anon_sym_if] = ACTIONS(3106), + [anon_sym_DOLLARif] = ACTIONS(3106), + [anon_sym_is] = ACTIONS(3106), + [anon_sym_BANGis] = ACTIONS(3104), + [anon_sym_in] = ACTIONS(3106), + [anon_sym_BANGin] = ACTIONS(3104), + [anon_sym_match] = ACTIONS(3106), + [anon_sym_select] = ACTIONS(3106), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(3106), + [anon_sym_sql] = ACTIONS(3106), + [sym_int_literal] = ACTIONS(3106), + [sym_float_literal] = ACTIONS(3104), + [sym_rune_literal] = ACTIONS(3104), + [anon_sym_AT] = ACTIONS(3106), + [anon_sym_shared] = ACTIONS(3106), + [anon_sym_map_LBRACK] = ACTIONS(3104), + [anon_sym_chan] = ACTIONS(3106), + [anon_sym_thread] = ACTIONS(3106), + [anon_sym_atomic] = ACTIONS(3106), + [sym___double_quote] = ACTIONS(3104), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3104), + [sym___c_single_quote] = ACTIONS(3104), + [sym___r_double_quote] = ACTIONS(3104), + [sym___r_single_quote] = ACTIONS(3104), }, [1377] = { - [sym_reference_expression] = STATE(4566), - [sym_type_reference_expression] = STATE(2159), - [sym_plain_type] = STATE(2240), - [sym__plain_type_without_special] = STATE(2185), - [sym_anon_struct_type] = STATE(2186), - [sym_multi_return_type] = STATE(2185), - [sym_result_type] = STATE(2185), - [sym_option_type] = STATE(2185), - [sym_qualified_type] = STATE(2159), - [sym_fixed_array_type] = STATE(2186), - [sym_array_type] = STATE(2186), - [sym_pointer_type] = STATE(2186), - [sym_wrong_pointer_type] = STATE(2186), - [sym_map_type] = STATE(2186), - [sym_channel_type] = STATE(2186), - [sym_shared_type] = STATE(2186), - [sym_thread_type] = STATE(2186), - [sym_atomic_type] = STATE(2186), - [sym_generic_type] = STATE(2186), - [sym_function_type] = STATE(2186), - [sym_identifier] = ACTIONS(3672), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(589), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_RBRACE] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym___global] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3678), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_DOT_DOT_DOT] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_struct] = ACTIONS(3680), - [anon_sym_pub] = ACTIONS(589), - [anon_sym_mut] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(3682), - [anon_sym_BANG] = ACTIONS(3684), - [anon_sym_LBRACK2] = ACTIONS(3686), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(3688), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(3690), - [anon_sym_map_LBRACK] = ACTIONS(3692), - [anon_sym_chan] = ACTIONS(3694), - [anon_sym_thread] = ACTIONS(3696), - [anon_sym_atomic] = ACTIONS(3698), - [anon_sym_AT_LBRACK] = ACTIONS(589), + [sym_identifier] = ACTIONS(3141), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3141), + [anon_sym_as] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3139), + [anon_sym_COMMA] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_PIPE] = ACTIONS(3141), + [anon_sym_fn] = ACTIONS(3141), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(3139), + [anon_sym_SLASH] = ACTIONS(3141), + [anon_sym_PERCENT] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_GT] = ACTIONS(3141), + [anon_sym_EQ_EQ] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(3139), + [anon_sym_LT_EQ] = ACTIONS(3139), + [anon_sym_GT_EQ] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_RBRACK] = ACTIONS(3139), + [anon_sym_struct] = ACTIONS(3141), + [anon_sym_mut] = ACTIONS(3141), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_DASH_DASH] = ACTIONS(3139), + [anon_sym_QMARK] = ACTIONS(3141), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_go] = ACTIONS(3141), + [anon_sym_spawn] = ACTIONS(3141), + [anon_sym_json_DOTdecode] = ACTIONS(3139), + [anon_sym_LBRACK2] = ACTIONS(3141), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_CARET] = ACTIONS(3139), + [anon_sym_AMP] = ACTIONS(3141), + [anon_sym_LT_DASH] = ACTIONS(3139), + [anon_sym_LT_LT] = ACTIONS(3139), + [anon_sym_GT_GT] = ACTIONS(3141), + [anon_sym_GT_GT_GT] = ACTIONS(3139), + [anon_sym_AMP_CARET] = ACTIONS(3139), + [anon_sym_AMP_AMP] = ACTIONS(3139), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_or] = ACTIONS(3141), + [sym_none] = ACTIONS(3141), + [sym_true] = ACTIONS(3141), + [sym_false] = ACTIONS(3141), + [sym_nil] = ACTIONS(3141), + [anon_sym_QMARK_DOT] = ACTIONS(3139), + [anon_sym_POUND_LBRACK] = ACTIONS(3139), + [anon_sym_if] = ACTIONS(3141), + [anon_sym_DOLLARif] = ACTIONS(3141), + [anon_sym_is] = ACTIONS(3141), + [anon_sym_BANGis] = ACTIONS(3139), + [anon_sym_in] = ACTIONS(3141), + [anon_sym_BANGin] = ACTIONS(3139), + [anon_sym_match] = ACTIONS(3141), + [anon_sym_select] = ACTIONS(3141), + [anon_sym_lock] = ACTIONS(3141), + [anon_sym_rlock] = ACTIONS(3141), + [anon_sym_unsafe] = ACTIONS(3141), + [anon_sym_sql] = ACTIONS(3141), + [sym_int_literal] = ACTIONS(3141), + [sym_float_literal] = ACTIONS(3139), + [sym_rune_literal] = ACTIONS(3139), + [anon_sym_AT] = ACTIONS(3141), + [anon_sym_shared] = ACTIONS(3141), + [anon_sym_map_LBRACK] = ACTIONS(3139), + [anon_sym_chan] = ACTIONS(3141), + [anon_sym_thread] = ACTIONS(3141), + [anon_sym_atomic] = ACTIONS(3141), + [sym___double_quote] = ACTIONS(3139), + [sym___single_quote] = ACTIONS(3139), + [sym___c_double_quote] = ACTIONS(3139), + [sym___c_single_quote] = ACTIONS(3139), + [sym___r_double_quote] = ACTIONS(3139), + [sym___r_single_quote] = ACTIONS(3139), }, [1378] = { - [sym_identifier] = ACTIONS(2840), + [sym_identifier] = ACTIONS(2838), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2840), - [anon_sym_as] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2838), - [anon_sym_COMMA] = ACTIONS(2838), - [anon_sym_LPAREN] = ACTIONS(2838), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_fn] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2838), - [anon_sym_SLASH] = ACTIONS(2840), - [anon_sym_PERCENT] = ACTIONS(2838), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_GT] = ACTIONS(2840), - [anon_sym_EQ_EQ] = ACTIONS(2838), - [anon_sym_BANG_EQ] = ACTIONS(2838), - [anon_sym_LT_EQ] = ACTIONS(2838), - [anon_sym_GT_EQ] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_RBRACK] = ACTIONS(2838), - [anon_sym_struct] = ACTIONS(2840), - [anon_sym_mut] = ACTIONS(2840), - [anon_sym_PLUS_PLUS] = ACTIONS(2838), - [anon_sym_DASH_DASH] = ACTIONS(2838), - [anon_sym_QMARK] = ACTIONS(2840), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_go] = ACTIONS(2840), - [anon_sym_spawn] = ACTIONS(2840), - [anon_sym_json_DOTdecode] = ACTIONS(2838), - [anon_sym_LBRACK2] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2838), - [anon_sym_CARET] = ACTIONS(2838), - [anon_sym_AMP] = ACTIONS(2840), - [anon_sym_LT_DASH] = ACTIONS(2838), - [anon_sym_LT_LT] = ACTIONS(2838), - [anon_sym_GT_GT] = ACTIONS(2840), - [anon_sym_GT_GT_GT] = ACTIONS(2838), - [anon_sym_AMP_CARET] = ACTIONS(2838), - [anon_sym_AMP_AMP] = ACTIONS(2838), - [anon_sym_PIPE_PIPE] = ACTIONS(2838), - [anon_sym_or] = ACTIONS(2840), - [sym_none] = ACTIONS(2840), - [sym_true] = ACTIONS(2840), - [sym_false] = ACTIONS(2840), - [sym_nil] = ACTIONS(2840), - [anon_sym_QMARK_DOT] = ACTIONS(2838), - [anon_sym_POUND_LBRACK] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_DOLLARif] = ACTIONS(2840), - [anon_sym_is] = ACTIONS(2840), - [anon_sym_BANGis] = ACTIONS(2838), - [anon_sym_in] = ACTIONS(2840), - [anon_sym_BANGin] = ACTIONS(2838), - [anon_sym_match] = ACTIONS(2840), - [anon_sym_select] = ACTIONS(2840), - [anon_sym_lock] = ACTIONS(2840), - [anon_sym_rlock] = ACTIONS(2840), - [anon_sym_unsafe] = ACTIONS(2840), - [anon_sym_sql] = ACTIONS(2840), - [sym_int_literal] = ACTIONS(2840), - [sym_float_literal] = ACTIONS(2838), - [sym_rune_literal] = ACTIONS(2838), - [anon_sym_AT] = ACTIONS(2840), - [anon_sym_shared] = ACTIONS(2840), - [anon_sym_map_LBRACK] = ACTIONS(2838), - [anon_sym_chan] = ACTIONS(2840), - [anon_sym_thread] = ACTIONS(2840), - [anon_sym_atomic] = ACTIONS(2840), - [sym___double_quote] = ACTIONS(2838), - [sym___single_quote] = ACTIONS(2838), - [sym___c_double_quote] = ACTIONS(2838), - [sym___c_single_quote] = ACTIONS(2838), - [sym___r_double_quote] = ACTIONS(2838), - [sym___r_single_quote] = ACTIONS(2838), + [anon_sym_DOT] = ACTIONS(2838), + [anon_sym_as] = ACTIONS(2838), + [anon_sym_LBRACE] = ACTIONS(2836), + [anon_sym_COMMA] = ACTIONS(2836), + [anon_sym_LPAREN] = ACTIONS(2836), + [anon_sym_PIPE] = ACTIONS(2838), + [anon_sym_fn] = ACTIONS(2838), + [anon_sym_PLUS] = ACTIONS(2838), + [anon_sym_DASH] = ACTIONS(2838), + [anon_sym_STAR] = ACTIONS(2836), + [anon_sym_SLASH] = ACTIONS(2838), + [anon_sym_PERCENT] = ACTIONS(2836), + [anon_sym_LT] = ACTIONS(2838), + [anon_sym_GT] = ACTIONS(2838), + [anon_sym_EQ_EQ] = ACTIONS(2836), + [anon_sym_BANG_EQ] = ACTIONS(2836), + [anon_sym_LT_EQ] = ACTIONS(2836), + [anon_sym_GT_EQ] = ACTIONS(2836), + [anon_sym_LBRACK] = ACTIONS(2836), + [anon_sym_RBRACK] = ACTIONS(2836), + [anon_sym_struct] = ACTIONS(2838), + [anon_sym_mut] = ACTIONS(2838), + [anon_sym_PLUS_PLUS] = ACTIONS(2836), + [anon_sym_DASH_DASH] = ACTIONS(2836), + [anon_sym_QMARK] = ACTIONS(2838), + [anon_sym_BANG] = ACTIONS(2838), + [anon_sym_go] = ACTIONS(2838), + [anon_sym_spawn] = ACTIONS(2838), + [anon_sym_json_DOTdecode] = ACTIONS(2836), + [anon_sym_LBRACK2] = ACTIONS(2838), + [anon_sym_TILDE] = ACTIONS(2836), + [anon_sym_CARET] = ACTIONS(2836), + [anon_sym_AMP] = ACTIONS(2838), + [anon_sym_LT_DASH] = ACTIONS(2836), + [anon_sym_LT_LT] = ACTIONS(2836), + [anon_sym_GT_GT] = ACTIONS(2838), + [anon_sym_GT_GT_GT] = ACTIONS(2836), + [anon_sym_AMP_CARET] = ACTIONS(2836), + [anon_sym_AMP_AMP] = ACTIONS(2836), + [anon_sym_PIPE_PIPE] = ACTIONS(2836), + [anon_sym_or] = ACTIONS(2838), + [sym_none] = ACTIONS(2838), + [sym_true] = ACTIONS(2838), + [sym_false] = ACTIONS(2838), + [sym_nil] = ACTIONS(2838), + [anon_sym_QMARK_DOT] = ACTIONS(2836), + [anon_sym_POUND_LBRACK] = ACTIONS(2836), + [anon_sym_if] = ACTIONS(2838), + [anon_sym_DOLLARif] = ACTIONS(2838), + [anon_sym_is] = ACTIONS(2838), + [anon_sym_BANGis] = ACTIONS(2836), + [anon_sym_in] = ACTIONS(2838), + [anon_sym_BANGin] = ACTIONS(2836), + [anon_sym_match] = ACTIONS(2838), + [anon_sym_select] = ACTIONS(2838), + [anon_sym_lock] = ACTIONS(2838), + [anon_sym_rlock] = ACTIONS(2838), + [anon_sym_unsafe] = ACTIONS(2838), + [anon_sym_sql] = ACTIONS(2838), + [sym_int_literal] = ACTIONS(2838), + [sym_float_literal] = ACTIONS(2836), + [sym_rune_literal] = ACTIONS(2836), + [anon_sym_AT] = ACTIONS(2838), + [anon_sym_shared] = ACTIONS(2838), + [anon_sym_map_LBRACK] = ACTIONS(2836), + [anon_sym_chan] = ACTIONS(2838), + [anon_sym_thread] = ACTIONS(2838), + [anon_sym_atomic] = ACTIONS(2838), + [sym___double_quote] = ACTIONS(2836), + [sym___single_quote] = ACTIONS(2836), + [sym___c_double_quote] = ACTIONS(2836), + [sym___c_single_quote] = ACTIONS(2836), + [sym___r_double_quote] = ACTIONS(2836), + [sym___r_single_quote] = ACTIONS(2836), }, [1379] = { - [sym_identifier] = ACTIONS(2931), + [sym_identifier] = ACTIONS(2966), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2931), - [anon_sym_as] = ACTIONS(2931), - [anon_sym_LBRACE] = ACTIONS(2929), - [anon_sym_COMMA] = ACTIONS(2929), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(2931), - [anon_sym_fn] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2931), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_SLASH] = ACTIONS(2931), - [anon_sym_PERCENT] = ACTIONS(2929), - [anon_sym_LT] = ACTIONS(2931), - [anon_sym_GT] = ACTIONS(2931), - [anon_sym_EQ_EQ] = ACTIONS(2929), - [anon_sym_BANG_EQ] = ACTIONS(2929), - [anon_sym_LT_EQ] = ACTIONS(2929), - [anon_sym_GT_EQ] = ACTIONS(2929), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_RBRACK] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(2931), - [anon_sym_PLUS_PLUS] = ACTIONS(2929), - [anon_sym_DASH_DASH] = ACTIONS(2929), - [anon_sym_QMARK] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2931), - [anon_sym_go] = ACTIONS(2931), - [anon_sym_spawn] = ACTIONS(2931), - [anon_sym_json_DOTdecode] = ACTIONS(2929), - [anon_sym_LBRACK2] = ACTIONS(2931), - [anon_sym_TILDE] = ACTIONS(2929), - [anon_sym_CARET] = ACTIONS(2929), - [anon_sym_AMP] = ACTIONS(2931), - [anon_sym_LT_DASH] = ACTIONS(2929), - [anon_sym_LT_LT] = ACTIONS(2929), - [anon_sym_GT_GT] = ACTIONS(2931), - [anon_sym_GT_GT_GT] = ACTIONS(2929), - [anon_sym_AMP_CARET] = ACTIONS(2929), - [anon_sym_AMP_AMP] = ACTIONS(2929), - [anon_sym_PIPE_PIPE] = ACTIONS(2929), - [anon_sym_or] = ACTIONS(2931), - [sym_none] = ACTIONS(2931), - [sym_true] = ACTIONS(2931), - [sym_false] = ACTIONS(2931), - [sym_nil] = ACTIONS(2931), - [anon_sym_QMARK_DOT] = ACTIONS(2929), - [anon_sym_POUND_LBRACK] = ACTIONS(2929), - [anon_sym_if] = ACTIONS(2931), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_BANGis] = ACTIONS(2929), - [anon_sym_in] = ACTIONS(2931), - [anon_sym_BANGin] = ACTIONS(2929), - [anon_sym_match] = ACTIONS(2931), - [anon_sym_select] = ACTIONS(2931), - [anon_sym_lock] = ACTIONS(2931), - [anon_sym_rlock] = ACTIONS(2931), - [anon_sym_unsafe] = ACTIONS(2931), - [anon_sym_sql] = ACTIONS(2931), - [sym_int_literal] = ACTIONS(2931), - [sym_float_literal] = ACTIONS(2929), - [sym_rune_literal] = ACTIONS(2929), - [anon_sym_AT] = ACTIONS(2931), - [anon_sym_shared] = ACTIONS(2931), - [anon_sym_map_LBRACK] = ACTIONS(2929), - [anon_sym_chan] = ACTIONS(2931), - [anon_sym_thread] = ACTIONS(2931), - [anon_sym_atomic] = ACTIONS(2931), - [sym___double_quote] = ACTIONS(2929), - [sym___single_quote] = ACTIONS(2929), - [sym___c_double_quote] = ACTIONS(2929), - [sym___c_single_quote] = ACTIONS(2929), - [sym___r_double_quote] = ACTIONS(2929), - [sym___r_single_quote] = ACTIONS(2929), + [anon_sym_DOT] = ACTIONS(2966), + [anon_sym_as] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_COMMA] = ACTIONS(2964), + [anon_sym_LPAREN] = ACTIONS(2964), + [anon_sym_PIPE] = ACTIONS(2966), + [anon_sym_fn] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_SLASH] = ACTIONS(2966), + [anon_sym_PERCENT] = ACTIONS(2964), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_GT] = ACTIONS(2966), + [anon_sym_EQ_EQ] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_LT_EQ] = ACTIONS(2964), + [anon_sym_GT_EQ] = ACTIONS(2964), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_RBRACK] = ACTIONS(2964), + [anon_sym_struct] = ACTIONS(2966), + [anon_sym_mut] = ACTIONS(2966), + [anon_sym_PLUS_PLUS] = ACTIONS(2964), + [anon_sym_DASH_DASH] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2966), + [anon_sym_BANG] = ACTIONS(2966), + [anon_sym_go] = ACTIONS(2966), + [anon_sym_spawn] = ACTIONS(2966), + [anon_sym_json_DOTdecode] = ACTIONS(2964), + [anon_sym_LBRACK2] = ACTIONS(2966), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_CARET] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_LT_DASH] = ACTIONS(2964), + [anon_sym_LT_LT] = ACTIONS(2964), + [anon_sym_GT_GT] = ACTIONS(2966), + [anon_sym_GT_GT_GT] = ACTIONS(2964), + [anon_sym_AMP_CARET] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_or] = ACTIONS(2966), + [sym_none] = ACTIONS(2966), + [sym_true] = ACTIONS(2966), + [sym_false] = ACTIONS(2966), + [sym_nil] = ACTIONS(2966), + [anon_sym_QMARK_DOT] = ACTIONS(2964), + [anon_sym_POUND_LBRACK] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_DOLLARif] = ACTIONS(2966), + [anon_sym_is] = ACTIONS(2966), + [anon_sym_BANGis] = ACTIONS(2964), + [anon_sym_in] = ACTIONS(2966), + [anon_sym_BANGin] = ACTIONS(2964), + [anon_sym_match] = ACTIONS(2966), + [anon_sym_select] = ACTIONS(2966), + [anon_sym_lock] = ACTIONS(2966), + [anon_sym_rlock] = ACTIONS(2966), + [anon_sym_unsafe] = ACTIONS(2966), + [anon_sym_sql] = ACTIONS(2966), + [sym_int_literal] = ACTIONS(2966), + [sym_float_literal] = ACTIONS(2964), + [sym_rune_literal] = ACTIONS(2964), + [anon_sym_AT] = ACTIONS(2966), + [anon_sym_shared] = ACTIONS(2966), + [anon_sym_map_LBRACK] = ACTIONS(2964), + [anon_sym_chan] = ACTIONS(2966), + [anon_sym_thread] = ACTIONS(2966), + [anon_sym_atomic] = ACTIONS(2966), + [sym___double_quote] = ACTIONS(2964), + [sym___single_quote] = ACTIONS(2964), + [sym___c_double_quote] = ACTIONS(2964), + [sym___c_single_quote] = ACTIONS(2964), + [sym___r_double_quote] = ACTIONS(2964), + [sym___r_single_quote] = ACTIONS(2964), }, [1380] = { - [sym_identifier] = ACTIONS(2844), + [sym_identifier] = ACTIONS(2946), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2844), - [anon_sym_as] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2842), - [anon_sym_COMMA] = ACTIONS(2842), - [anon_sym_LPAREN] = ACTIONS(2842), - [anon_sym_PIPE] = ACTIONS(2844), - [anon_sym_fn] = ACTIONS(2844), - [anon_sym_PLUS] = ACTIONS(2844), - [anon_sym_DASH] = ACTIONS(2844), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_SLASH] = ACTIONS(2844), - [anon_sym_PERCENT] = ACTIONS(2842), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_GT] = ACTIONS(2844), - [anon_sym_EQ_EQ] = ACTIONS(2842), - [anon_sym_BANG_EQ] = ACTIONS(2842), - [anon_sym_LT_EQ] = ACTIONS(2842), - [anon_sym_GT_EQ] = ACTIONS(2842), - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_RBRACK] = ACTIONS(2842), - [anon_sym_struct] = ACTIONS(2844), - [anon_sym_mut] = ACTIONS(2844), - [anon_sym_PLUS_PLUS] = ACTIONS(2842), - [anon_sym_DASH_DASH] = ACTIONS(2842), - [anon_sym_QMARK] = ACTIONS(2844), - [anon_sym_BANG] = ACTIONS(2844), - [anon_sym_go] = ACTIONS(2844), - [anon_sym_spawn] = ACTIONS(2844), - [anon_sym_json_DOTdecode] = ACTIONS(2842), - [anon_sym_LBRACK2] = ACTIONS(2844), - [anon_sym_TILDE] = ACTIONS(2842), - [anon_sym_CARET] = ACTIONS(2842), - [anon_sym_AMP] = ACTIONS(2844), - [anon_sym_LT_DASH] = ACTIONS(2842), - [anon_sym_LT_LT] = ACTIONS(2842), - [anon_sym_GT_GT] = ACTIONS(2844), - [anon_sym_GT_GT_GT] = ACTIONS(2842), - [anon_sym_AMP_CARET] = ACTIONS(2842), - [anon_sym_AMP_AMP] = ACTIONS(2842), - [anon_sym_PIPE_PIPE] = ACTIONS(2842), - [anon_sym_or] = ACTIONS(2844), - [sym_none] = ACTIONS(2844), - [sym_true] = ACTIONS(2844), - [sym_false] = ACTIONS(2844), - [sym_nil] = ACTIONS(2844), - [anon_sym_QMARK_DOT] = ACTIONS(2842), - [anon_sym_POUND_LBRACK] = ACTIONS(2842), - [anon_sym_if] = ACTIONS(2844), - [anon_sym_DOLLARif] = ACTIONS(2844), - [anon_sym_is] = ACTIONS(2844), - [anon_sym_BANGis] = ACTIONS(2842), - [anon_sym_in] = ACTIONS(2844), - [anon_sym_BANGin] = ACTIONS(2842), - [anon_sym_match] = ACTIONS(2844), - [anon_sym_select] = ACTIONS(2844), - [anon_sym_lock] = ACTIONS(2844), - [anon_sym_rlock] = ACTIONS(2844), - [anon_sym_unsafe] = ACTIONS(2844), - [anon_sym_sql] = ACTIONS(2844), - [sym_int_literal] = ACTIONS(2844), - [sym_float_literal] = ACTIONS(2842), - [sym_rune_literal] = ACTIONS(2842), - [anon_sym_AT] = ACTIONS(2844), - [anon_sym_shared] = ACTIONS(2844), - [anon_sym_map_LBRACK] = ACTIONS(2842), - [anon_sym_chan] = ACTIONS(2844), - [anon_sym_thread] = ACTIONS(2844), - [anon_sym_atomic] = ACTIONS(2844), - [sym___double_quote] = ACTIONS(2842), - [sym___single_quote] = ACTIONS(2842), - [sym___c_double_quote] = ACTIONS(2842), - [sym___c_single_quote] = ACTIONS(2842), - [sym___r_double_quote] = ACTIONS(2842), - [sym___r_single_quote] = ACTIONS(2842), + [anon_sym_DOT] = ACTIONS(2946), + [anon_sym_as] = ACTIONS(2946), + [anon_sym_LBRACE] = ACTIONS(2944), + [anon_sym_COMMA] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2944), + [anon_sym_PIPE] = ACTIONS(2946), + [anon_sym_fn] = ACTIONS(2946), + [anon_sym_PLUS] = ACTIONS(2946), + [anon_sym_DASH] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(2944), + [anon_sym_SLASH] = ACTIONS(2946), + [anon_sym_PERCENT] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_GT] = ACTIONS(2946), + [anon_sym_EQ_EQ] = ACTIONS(2944), + [anon_sym_BANG_EQ] = ACTIONS(2944), + [anon_sym_LT_EQ] = ACTIONS(2944), + [anon_sym_GT_EQ] = ACTIONS(2944), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_RBRACK] = ACTIONS(2944), + [anon_sym_struct] = ACTIONS(2946), + [anon_sym_mut] = ACTIONS(2946), + [anon_sym_PLUS_PLUS] = ACTIONS(2944), + [anon_sym_DASH_DASH] = ACTIONS(2944), + [anon_sym_QMARK] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2946), + [anon_sym_go] = ACTIONS(2946), + [anon_sym_spawn] = ACTIONS(2946), + [anon_sym_json_DOTdecode] = ACTIONS(2944), + [anon_sym_LBRACK2] = ACTIONS(2946), + [anon_sym_TILDE] = ACTIONS(2944), + [anon_sym_CARET] = ACTIONS(2944), + [anon_sym_AMP] = ACTIONS(2946), + [anon_sym_LT_DASH] = ACTIONS(2944), + [anon_sym_LT_LT] = ACTIONS(2944), + [anon_sym_GT_GT] = ACTIONS(2946), + [anon_sym_GT_GT_GT] = ACTIONS(2944), + [anon_sym_AMP_CARET] = ACTIONS(2944), + [anon_sym_AMP_AMP] = ACTIONS(2944), + [anon_sym_PIPE_PIPE] = ACTIONS(2944), + [anon_sym_or] = ACTIONS(2946), + [sym_none] = ACTIONS(2946), + [sym_true] = ACTIONS(2946), + [sym_false] = ACTIONS(2946), + [sym_nil] = ACTIONS(2946), + [anon_sym_QMARK_DOT] = ACTIONS(2944), + [anon_sym_POUND_LBRACK] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2946), + [anon_sym_DOLLARif] = ACTIONS(2946), + [anon_sym_is] = ACTIONS(2946), + [anon_sym_BANGis] = ACTIONS(2944), + [anon_sym_in] = ACTIONS(2946), + [anon_sym_BANGin] = ACTIONS(2944), + [anon_sym_match] = ACTIONS(2946), + [anon_sym_select] = ACTIONS(2946), + [anon_sym_lock] = ACTIONS(2946), + [anon_sym_rlock] = ACTIONS(2946), + [anon_sym_unsafe] = ACTIONS(2946), + [anon_sym_sql] = ACTIONS(2946), + [sym_int_literal] = ACTIONS(2946), + [sym_float_literal] = ACTIONS(2944), + [sym_rune_literal] = ACTIONS(2944), + [anon_sym_AT] = ACTIONS(2946), + [anon_sym_shared] = ACTIONS(2946), + [anon_sym_map_LBRACK] = ACTIONS(2944), + [anon_sym_chan] = ACTIONS(2946), + [anon_sym_thread] = ACTIONS(2946), + [anon_sym_atomic] = ACTIONS(2946), + [sym___double_quote] = ACTIONS(2944), + [sym___single_quote] = ACTIONS(2944), + [sym___c_double_quote] = ACTIONS(2944), + [sym___c_single_quote] = ACTIONS(2944), + [sym___r_double_quote] = ACTIONS(2944), + [sym___r_single_quote] = ACTIONS(2944), }, [1381] = { - [sym_identifier] = ACTIONS(2784), + [sym_identifier] = ACTIONS(3014), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2784), - [anon_sym_as] = ACTIONS(2784), - [anon_sym_LBRACE] = ACTIONS(2782), - [anon_sym_COMMA] = ACTIONS(2782), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_fn] = ACTIONS(2784), - [anon_sym_PLUS] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_SLASH] = ACTIONS(2784), - [anon_sym_PERCENT] = ACTIONS(2782), - [anon_sym_LT] = ACTIONS(2784), - [anon_sym_GT] = ACTIONS(2784), - [anon_sym_EQ_EQ] = ACTIONS(2782), - [anon_sym_BANG_EQ] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(2782), - [anon_sym_GT_EQ] = ACTIONS(2782), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_RBRACK] = ACTIONS(2782), - [anon_sym_struct] = ACTIONS(2784), - [anon_sym_mut] = ACTIONS(2784), - [anon_sym_PLUS_PLUS] = ACTIONS(2782), - [anon_sym_DASH_DASH] = ACTIONS(2782), - [anon_sym_QMARK] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_go] = ACTIONS(2784), - [anon_sym_spawn] = ACTIONS(2784), - [anon_sym_json_DOTdecode] = ACTIONS(2782), - [anon_sym_LBRACK2] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2782), - [anon_sym_CARET] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2784), - [anon_sym_LT_DASH] = ACTIONS(2782), - [anon_sym_LT_LT] = ACTIONS(2782), - [anon_sym_GT_GT] = ACTIONS(2784), - [anon_sym_GT_GT_GT] = ACTIONS(2782), - [anon_sym_AMP_CARET] = ACTIONS(2782), - [anon_sym_AMP_AMP] = ACTIONS(2782), - [anon_sym_PIPE_PIPE] = ACTIONS(2782), - [anon_sym_or] = ACTIONS(2784), - [sym_none] = ACTIONS(2784), - [sym_true] = ACTIONS(2784), - [sym_false] = ACTIONS(2784), - [sym_nil] = ACTIONS(2784), - [anon_sym_QMARK_DOT] = ACTIONS(2782), - [anon_sym_POUND_LBRACK] = ACTIONS(2782), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_DOLLARif] = ACTIONS(2784), - [anon_sym_is] = ACTIONS(2784), - [anon_sym_BANGis] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(2784), - [anon_sym_BANGin] = ACTIONS(2782), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_select] = ACTIONS(2784), - [anon_sym_lock] = ACTIONS(2784), - [anon_sym_rlock] = ACTIONS(2784), - [anon_sym_unsafe] = ACTIONS(2784), - [anon_sym_sql] = ACTIONS(2784), - [sym_int_literal] = ACTIONS(2784), - [sym_float_literal] = ACTIONS(2782), - [sym_rune_literal] = ACTIONS(2782), - [anon_sym_AT] = ACTIONS(2784), - [anon_sym_shared] = ACTIONS(2784), - [anon_sym_map_LBRACK] = ACTIONS(2782), - [anon_sym_chan] = ACTIONS(2784), - [anon_sym_thread] = ACTIONS(2784), - [anon_sym_atomic] = ACTIONS(2784), - [sym___double_quote] = ACTIONS(2782), - [sym___single_quote] = ACTIONS(2782), - [sym___c_double_quote] = ACTIONS(2782), - [sym___c_single_quote] = ACTIONS(2782), - [sym___r_double_quote] = ACTIONS(2782), - [sym___r_single_quote] = ACTIONS(2782), + [anon_sym_DOT] = ACTIONS(3014), + [anon_sym_as] = ACTIONS(3014), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_COMMA] = ACTIONS(3012), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_PIPE] = ACTIONS(3014), + [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_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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3012), + [sym___single_quote] = ACTIONS(3012), + [sym___c_double_quote] = ACTIONS(3012), + [sym___c_single_quote] = ACTIONS(3012), + [sym___r_double_quote] = ACTIONS(3012), + [sym___r_single_quote] = ACTIONS(3012), }, [1382] = { - [sym_identifier] = ACTIONS(2872), + [sym_identifier] = ACTIONS(2950), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2872), - [anon_sym_as] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_COMMA] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym_PIPE] = ACTIONS(2872), - [anon_sym_fn] = ACTIONS(2872), - [anon_sym_PLUS] = ACTIONS(2872), - [anon_sym_DASH] = ACTIONS(2872), - [anon_sym_STAR] = ACTIONS(2870), - [anon_sym_SLASH] = ACTIONS(2872), - [anon_sym_PERCENT] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2872), - [anon_sym_GT] = ACTIONS(2872), - [anon_sym_EQ_EQ] = ACTIONS(2870), - [anon_sym_BANG_EQ] = ACTIONS(2870), - [anon_sym_LT_EQ] = ACTIONS(2870), - [anon_sym_GT_EQ] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_RBRACK] = ACTIONS(2870), - [anon_sym_struct] = ACTIONS(2872), - [anon_sym_mut] = ACTIONS(2872), - [anon_sym_PLUS_PLUS] = ACTIONS(2870), - [anon_sym_DASH_DASH] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2872), - [anon_sym_BANG] = ACTIONS(2872), - [anon_sym_go] = ACTIONS(2872), - [anon_sym_spawn] = ACTIONS(2872), - [anon_sym_json_DOTdecode] = ACTIONS(2870), - [anon_sym_LBRACK2] = ACTIONS(2872), - [anon_sym_TILDE] = ACTIONS(2870), - [anon_sym_CARET] = ACTIONS(2870), - [anon_sym_AMP] = ACTIONS(2872), - [anon_sym_LT_DASH] = ACTIONS(2870), - [anon_sym_LT_LT] = ACTIONS(2870), - [anon_sym_GT_GT] = ACTIONS(2872), - [anon_sym_GT_GT_GT] = ACTIONS(2870), - [anon_sym_AMP_CARET] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [anon_sym_or] = ACTIONS(2872), - [sym_none] = ACTIONS(2872), - [sym_true] = ACTIONS(2872), - [sym_false] = ACTIONS(2872), - [sym_nil] = ACTIONS(2872), - [anon_sym_QMARK_DOT] = ACTIONS(2870), - [anon_sym_POUND_LBRACK] = ACTIONS(2870), - [anon_sym_if] = ACTIONS(2872), - [anon_sym_DOLLARif] = ACTIONS(2872), - [anon_sym_is] = ACTIONS(2872), - [anon_sym_BANGis] = ACTIONS(2870), - [anon_sym_in] = ACTIONS(2872), - [anon_sym_BANGin] = ACTIONS(2870), - [anon_sym_match] = ACTIONS(2872), - [anon_sym_select] = ACTIONS(2872), - [anon_sym_lock] = ACTIONS(2872), - [anon_sym_rlock] = ACTIONS(2872), - [anon_sym_unsafe] = ACTIONS(2872), - [anon_sym_sql] = ACTIONS(2872), - [sym_int_literal] = ACTIONS(2872), - [sym_float_literal] = ACTIONS(2870), - [sym_rune_literal] = ACTIONS(2870), - [anon_sym_AT] = ACTIONS(2872), - [anon_sym_shared] = ACTIONS(2872), - [anon_sym_map_LBRACK] = ACTIONS(2870), - [anon_sym_chan] = ACTIONS(2872), - [anon_sym_thread] = ACTIONS(2872), - [anon_sym_atomic] = ACTIONS(2872), - [sym___double_quote] = ACTIONS(2870), - [sym___single_quote] = ACTIONS(2870), - [sym___c_double_quote] = ACTIONS(2870), - [sym___c_single_quote] = ACTIONS(2870), - [sym___r_double_quote] = ACTIONS(2870), - [sym___r_single_quote] = ACTIONS(2870), + [anon_sym_DOT] = ACTIONS(2950), + [anon_sym_as] = ACTIONS(2950), + [anon_sym_LBRACE] = ACTIONS(2948), + [anon_sym_COMMA] = ACTIONS(2948), + [anon_sym_LPAREN] = ACTIONS(2948), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_fn] = ACTIONS(2950), + [anon_sym_PLUS] = ACTIONS(2950), + [anon_sym_DASH] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(2948), + [anon_sym_SLASH] = ACTIONS(2950), + [anon_sym_PERCENT] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2950), + [anon_sym_GT] = ACTIONS(2950), + [anon_sym_EQ_EQ] = ACTIONS(2948), + [anon_sym_BANG_EQ] = ACTIONS(2948), + [anon_sym_LT_EQ] = ACTIONS(2948), + [anon_sym_GT_EQ] = ACTIONS(2948), + [anon_sym_LBRACK] = ACTIONS(2948), + [anon_sym_RBRACK] = ACTIONS(2948), + [anon_sym_struct] = ACTIONS(2950), + [anon_sym_mut] = ACTIONS(2950), + [anon_sym_PLUS_PLUS] = ACTIONS(2948), + [anon_sym_DASH_DASH] = ACTIONS(2948), + [anon_sym_QMARK] = ACTIONS(2950), + [anon_sym_BANG] = ACTIONS(2950), + [anon_sym_go] = ACTIONS(2950), + [anon_sym_spawn] = ACTIONS(2950), + [anon_sym_json_DOTdecode] = ACTIONS(2948), + [anon_sym_LBRACK2] = ACTIONS(2950), + [anon_sym_TILDE] = ACTIONS(2948), + [anon_sym_CARET] = ACTIONS(2948), + [anon_sym_AMP] = ACTIONS(2950), + [anon_sym_LT_DASH] = ACTIONS(2948), + [anon_sym_LT_LT] = ACTIONS(2948), + [anon_sym_GT_GT] = ACTIONS(2950), + [anon_sym_GT_GT_GT] = ACTIONS(2948), + [anon_sym_AMP_CARET] = ACTIONS(2948), + [anon_sym_AMP_AMP] = ACTIONS(2948), + [anon_sym_PIPE_PIPE] = ACTIONS(2948), + [anon_sym_or] = ACTIONS(2950), + [sym_none] = ACTIONS(2950), + [sym_true] = ACTIONS(2950), + [sym_false] = ACTIONS(2950), + [sym_nil] = ACTIONS(2950), + [anon_sym_QMARK_DOT] = ACTIONS(2948), + [anon_sym_POUND_LBRACK] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2950), + [anon_sym_DOLLARif] = ACTIONS(2950), + [anon_sym_is] = ACTIONS(2950), + [anon_sym_BANGis] = ACTIONS(2948), + [anon_sym_in] = ACTIONS(2950), + [anon_sym_BANGin] = ACTIONS(2948), + [anon_sym_match] = ACTIONS(2950), + [anon_sym_select] = ACTIONS(2950), + [anon_sym_lock] = ACTIONS(2950), + [anon_sym_rlock] = ACTIONS(2950), + [anon_sym_unsafe] = ACTIONS(2950), + [anon_sym_sql] = ACTIONS(2950), + [sym_int_literal] = ACTIONS(2950), + [sym_float_literal] = ACTIONS(2948), + [sym_rune_literal] = ACTIONS(2948), + [anon_sym_AT] = ACTIONS(2950), + [anon_sym_shared] = ACTIONS(2950), + [anon_sym_map_LBRACK] = ACTIONS(2948), + [anon_sym_chan] = ACTIONS(2950), + [anon_sym_thread] = ACTIONS(2950), + [anon_sym_atomic] = ACTIONS(2950), + [sym___double_quote] = ACTIONS(2948), + [sym___single_quote] = ACTIONS(2948), + [sym___c_double_quote] = ACTIONS(2948), + [sym___c_single_quote] = ACTIONS(2948), + [sym___r_double_quote] = ACTIONS(2948), + [sym___r_single_quote] = ACTIONS(2948), }, [1383] = { - [sym_identifier] = ACTIONS(2876), + [sym_identifier] = ACTIONS(3050), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2876), - [anon_sym_as] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_COMMA] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2874), - [anon_sym_PIPE] = ACTIONS(2876), - [anon_sym_fn] = ACTIONS(2876), - [anon_sym_PLUS] = ACTIONS(2876), - [anon_sym_DASH] = ACTIONS(2876), - [anon_sym_STAR] = ACTIONS(2874), - [anon_sym_SLASH] = ACTIONS(2876), - [anon_sym_PERCENT] = ACTIONS(2874), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_GT] = ACTIONS(2876), - [anon_sym_EQ_EQ] = ACTIONS(2874), - [anon_sym_BANG_EQ] = ACTIONS(2874), - [anon_sym_LT_EQ] = ACTIONS(2874), - [anon_sym_GT_EQ] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_RBRACK] = ACTIONS(2874), - [anon_sym_struct] = ACTIONS(2876), - [anon_sym_mut] = ACTIONS(2876), - [anon_sym_PLUS_PLUS] = ACTIONS(2874), - [anon_sym_DASH_DASH] = ACTIONS(2874), - [anon_sym_QMARK] = ACTIONS(2876), - [anon_sym_BANG] = ACTIONS(2876), - [anon_sym_go] = ACTIONS(2876), - [anon_sym_spawn] = ACTIONS(2876), - [anon_sym_json_DOTdecode] = ACTIONS(2874), - [anon_sym_LBRACK2] = ACTIONS(2876), - [anon_sym_TILDE] = ACTIONS(2874), - [anon_sym_CARET] = ACTIONS(2874), - [anon_sym_AMP] = ACTIONS(2876), - [anon_sym_LT_DASH] = ACTIONS(2874), - [anon_sym_LT_LT] = ACTIONS(2874), - [anon_sym_GT_GT] = ACTIONS(2876), - [anon_sym_GT_GT_GT] = ACTIONS(2874), - [anon_sym_AMP_CARET] = ACTIONS(2874), - [anon_sym_AMP_AMP] = ACTIONS(2874), - [anon_sym_PIPE_PIPE] = ACTIONS(2874), - [anon_sym_or] = ACTIONS(2876), - [sym_none] = ACTIONS(2876), - [sym_true] = ACTIONS(2876), - [sym_false] = ACTIONS(2876), - [sym_nil] = ACTIONS(2876), - [anon_sym_QMARK_DOT] = ACTIONS(2874), - [anon_sym_POUND_LBRACK] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_DOLLARif] = ACTIONS(2876), - [anon_sym_is] = ACTIONS(2876), - [anon_sym_BANGis] = ACTIONS(2874), - [anon_sym_in] = ACTIONS(2876), - [anon_sym_BANGin] = ACTIONS(2874), - [anon_sym_match] = ACTIONS(2876), - [anon_sym_select] = ACTIONS(2876), - [anon_sym_lock] = ACTIONS(2876), - [anon_sym_rlock] = ACTIONS(2876), - [anon_sym_unsafe] = ACTIONS(2876), - [anon_sym_sql] = ACTIONS(2876), - [sym_int_literal] = ACTIONS(2876), - [sym_float_literal] = ACTIONS(2874), - [sym_rune_literal] = ACTIONS(2874), - [anon_sym_AT] = ACTIONS(2876), - [anon_sym_shared] = ACTIONS(2876), - [anon_sym_map_LBRACK] = ACTIONS(2874), - [anon_sym_chan] = ACTIONS(2876), - [anon_sym_thread] = ACTIONS(2876), - [anon_sym_atomic] = ACTIONS(2876), - [sym___double_quote] = ACTIONS(2874), - [sym___single_quote] = ACTIONS(2874), - [sym___c_double_quote] = ACTIONS(2874), - [sym___c_single_quote] = ACTIONS(2874), - [sym___r_double_quote] = ACTIONS(2874), - [sym___r_single_quote] = ACTIONS(2874), + [anon_sym_DOT] = ACTIONS(3050), + [anon_sym_as] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_COMMA] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_PIPE] = ACTIONS(3050), + [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_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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3048), + [sym___single_quote] = ACTIONS(3048), + [sym___c_double_quote] = ACTIONS(3048), + [sym___c_single_quote] = ACTIONS(3048), + [sym___r_double_quote] = ACTIONS(3048), + [sym___r_single_quote] = ACTIONS(3048), }, [1384] = { - [sym_identifier] = ACTIONS(2899), + [sym_identifier] = ACTIONS(3094), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_as] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2897), - [anon_sym_COMMA] = ACTIONS(2897), - [anon_sym_LPAREN] = ACTIONS(2897), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_fn] = ACTIONS(2899), - [anon_sym_PLUS] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_STAR] = ACTIONS(2897), - [anon_sym_SLASH] = ACTIONS(2899), - [anon_sym_PERCENT] = ACTIONS(2897), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_GT] = ACTIONS(2899), - [anon_sym_EQ_EQ] = ACTIONS(2897), - [anon_sym_BANG_EQ] = ACTIONS(2897), - [anon_sym_LT_EQ] = ACTIONS(2897), - [anon_sym_GT_EQ] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_RBRACK] = ACTIONS(2897), - [anon_sym_struct] = ACTIONS(2899), - [anon_sym_mut] = ACTIONS(2899), - [anon_sym_PLUS_PLUS] = ACTIONS(2897), - [anon_sym_DASH_DASH] = ACTIONS(2897), - [anon_sym_QMARK] = ACTIONS(2899), - [anon_sym_BANG] = ACTIONS(2899), - [anon_sym_go] = ACTIONS(2899), - [anon_sym_spawn] = ACTIONS(2899), - [anon_sym_json_DOTdecode] = ACTIONS(2897), - [anon_sym_LBRACK2] = ACTIONS(2899), - [anon_sym_TILDE] = ACTIONS(2897), - [anon_sym_CARET] = ACTIONS(2897), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_LT_DASH] = ACTIONS(2897), - [anon_sym_LT_LT] = ACTIONS(2897), - [anon_sym_GT_GT] = ACTIONS(2899), - [anon_sym_GT_GT_GT] = ACTIONS(2897), - [anon_sym_AMP_CARET] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2897), - [anon_sym_PIPE_PIPE] = ACTIONS(2897), - [anon_sym_or] = ACTIONS(2899), - [sym_none] = ACTIONS(2899), - [sym_true] = ACTIONS(2899), - [sym_false] = ACTIONS(2899), - [sym_nil] = ACTIONS(2899), - [anon_sym_QMARK_DOT] = ACTIONS(2897), - [anon_sym_POUND_LBRACK] = ACTIONS(2897), - [anon_sym_if] = ACTIONS(2899), - [anon_sym_DOLLARif] = ACTIONS(2899), - [anon_sym_is] = ACTIONS(2899), - [anon_sym_BANGis] = ACTIONS(2897), - [anon_sym_in] = ACTIONS(2899), - [anon_sym_BANGin] = ACTIONS(2897), - [anon_sym_match] = ACTIONS(2899), - [anon_sym_select] = ACTIONS(2899), - [anon_sym_lock] = ACTIONS(2899), - [anon_sym_rlock] = ACTIONS(2899), - [anon_sym_unsafe] = ACTIONS(2899), - [anon_sym_sql] = ACTIONS(2899), - [sym_int_literal] = ACTIONS(2899), - [sym_float_literal] = ACTIONS(2897), - [sym_rune_literal] = ACTIONS(2897), - [anon_sym_AT] = ACTIONS(2899), - [anon_sym_shared] = ACTIONS(2899), - [anon_sym_map_LBRACK] = ACTIONS(2897), - [anon_sym_chan] = ACTIONS(2899), - [anon_sym_thread] = ACTIONS(2899), - [anon_sym_atomic] = ACTIONS(2899), - [sym___double_quote] = ACTIONS(2897), - [sym___single_quote] = ACTIONS(2897), - [sym___c_double_quote] = ACTIONS(2897), - [sym___c_single_quote] = ACTIONS(2897), - [sym___r_double_quote] = ACTIONS(2897), - [sym___r_single_quote] = ACTIONS(2897), + [anon_sym_DOT] = ACTIONS(3094), + [anon_sym_as] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(3092), + [anon_sym_COMMA] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(3092), + [anon_sym_PIPE] = ACTIONS(3094), + [anon_sym_fn] = ACTIONS(3094), + [anon_sym_PLUS] = ACTIONS(3094), + [anon_sym_DASH] = ACTIONS(3094), + [anon_sym_STAR] = ACTIONS(3092), + [anon_sym_SLASH] = ACTIONS(3094), + [anon_sym_PERCENT] = ACTIONS(3092), + [anon_sym_LT] = ACTIONS(3094), + [anon_sym_GT] = ACTIONS(3094), + [anon_sym_EQ_EQ] = ACTIONS(3092), + [anon_sym_BANG_EQ] = ACTIONS(3092), + [anon_sym_LT_EQ] = ACTIONS(3092), + [anon_sym_GT_EQ] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(3092), + [anon_sym_RBRACK] = ACTIONS(3092), + [anon_sym_struct] = ACTIONS(3094), + [anon_sym_mut] = ACTIONS(3094), + [anon_sym_PLUS_PLUS] = ACTIONS(3092), + [anon_sym_DASH_DASH] = ACTIONS(3092), + [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_go] = ACTIONS(3094), + [anon_sym_spawn] = ACTIONS(3094), + [anon_sym_json_DOTdecode] = ACTIONS(3092), + [anon_sym_LBRACK2] = ACTIONS(3094), + [anon_sym_TILDE] = ACTIONS(3092), + [anon_sym_CARET] = ACTIONS(3092), + [anon_sym_AMP] = ACTIONS(3094), + [anon_sym_LT_DASH] = ACTIONS(3092), + [anon_sym_LT_LT] = ACTIONS(3092), + [anon_sym_GT_GT] = ACTIONS(3094), + [anon_sym_GT_GT_GT] = ACTIONS(3092), + [anon_sym_AMP_CARET] = ACTIONS(3092), + [anon_sym_AMP_AMP] = ACTIONS(3092), + [anon_sym_PIPE_PIPE] = ACTIONS(3092), + [anon_sym_or] = ACTIONS(3094), + [sym_none] = ACTIONS(3094), + [sym_true] = ACTIONS(3094), + [sym_false] = ACTIONS(3094), + [sym_nil] = ACTIONS(3094), + [anon_sym_QMARK_DOT] = ACTIONS(3092), + [anon_sym_POUND_LBRACK] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3094), + [anon_sym_DOLLARif] = ACTIONS(3094), + [anon_sym_is] = ACTIONS(3094), + [anon_sym_BANGis] = ACTIONS(3092), + [anon_sym_in] = ACTIONS(3094), + [anon_sym_BANGin] = ACTIONS(3092), + [anon_sym_match] = ACTIONS(3094), + [anon_sym_select] = ACTIONS(3094), + [anon_sym_lock] = ACTIONS(3094), + [anon_sym_rlock] = ACTIONS(3094), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3094), + [sym_int_literal] = ACTIONS(3094), + [sym_float_literal] = ACTIONS(3092), + [sym_rune_literal] = ACTIONS(3092), + [anon_sym_AT] = ACTIONS(3094), + [anon_sym_shared] = ACTIONS(3094), + [anon_sym_map_LBRACK] = ACTIONS(3092), + [anon_sym_chan] = ACTIONS(3094), + [anon_sym_thread] = ACTIONS(3094), + [anon_sym_atomic] = ACTIONS(3094), + [sym___double_quote] = ACTIONS(3092), + [sym___single_quote] = ACTIONS(3092), + [sym___c_double_quote] = ACTIONS(3092), + [sym___c_single_quote] = ACTIONS(3092), + [sym___r_double_quote] = ACTIONS(3092), + [sym___r_single_quote] = ACTIONS(3092), }, [1385] = { - [sym_identifier] = ACTIONS(2856), + [sym_identifier] = ACTIONS(2818), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2856), - [anon_sym_as] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_COMMA] = ACTIONS(2854), - [anon_sym_LPAREN] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_fn] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2856), - [anon_sym_DASH] = ACTIONS(2856), - [anon_sym_STAR] = ACTIONS(2854), - [anon_sym_SLASH] = ACTIONS(2856), - [anon_sym_PERCENT] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_GT] = ACTIONS(2856), - [anon_sym_EQ_EQ] = ACTIONS(2854), - [anon_sym_BANG_EQ] = ACTIONS(2854), - [anon_sym_LT_EQ] = ACTIONS(2854), - [anon_sym_GT_EQ] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_RBRACK] = ACTIONS(2854), - [anon_sym_struct] = ACTIONS(2856), - [anon_sym_mut] = ACTIONS(2856), - [anon_sym_PLUS_PLUS] = ACTIONS(2854), - [anon_sym_DASH_DASH] = ACTIONS(2854), - [anon_sym_QMARK] = ACTIONS(2856), - [anon_sym_BANG] = ACTIONS(2856), - [anon_sym_go] = ACTIONS(2856), - [anon_sym_spawn] = ACTIONS(2856), - [anon_sym_json_DOTdecode] = ACTIONS(2854), - [anon_sym_LBRACK2] = ACTIONS(2856), - [anon_sym_TILDE] = ACTIONS(2854), - [anon_sym_CARET] = ACTIONS(2854), - [anon_sym_AMP] = ACTIONS(2856), - [anon_sym_LT_DASH] = ACTIONS(2854), - [anon_sym_LT_LT] = ACTIONS(2854), - [anon_sym_GT_GT] = ACTIONS(2856), - [anon_sym_GT_GT_GT] = ACTIONS(2854), - [anon_sym_AMP_CARET] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [anon_sym_or] = ACTIONS(2856), - [sym_none] = ACTIONS(2856), - [sym_true] = ACTIONS(2856), - [sym_false] = ACTIONS(2856), - [sym_nil] = ACTIONS(2856), - [anon_sym_QMARK_DOT] = ACTIONS(2854), - [anon_sym_POUND_LBRACK] = ACTIONS(2854), - [anon_sym_if] = ACTIONS(2856), - [anon_sym_DOLLARif] = ACTIONS(2856), - [anon_sym_is] = ACTIONS(2856), - [anon_sym_BANGis] = ACTIONS(2854), - [anon_sym_in] = ACTIONS(2856), - [anon_sym_BANGin] = ACTIONS(2854), - [anon_sym_match] = ACTIONS(2856), - [anon_sym_select] = ACTIONS(2856), - [anon_sym_lock] = ACTIONS(2856), - [anon_sym_rlock] = ACTIONS(2856), - [anon_sym_unsafe] = ACTIONS(2856), - [anon_sym_sql] = ACTIONS(2856), - [sym_int_literal] = ACTIONS(2856), - [sym_float_literal] = ACTIONS(2854), - [sym_rune_literal] = ACTIONS(2854), - [anon_sym_AT] = ACTIONS(2856), - [anon_sym_shared] = ACTIONS(2856), - [anon_sym_map_LBRACK] = ACTIONS(2854), - [anon_sym_chan] = ACTIONS(2856), - [anon_sym_thread] = ACTIONS(2856), - [anon_sym_atomic] = ACTIONS(2856), - [sym___double_quote] = ACTIONS(2854), - [sym___single_quote] = ACTIONS(2854), - [sym___c_double_quote] = ACTIONS(2854), - [sym___c_single_quote] = ACTIONS(2854), - [sym___r_double_quote] = ACTIONS(2854), - [sym___r_single_quote] = ACTIONS(2854), + [anon_sym_DOT] = ACTIONS(2818), + [anon_sym_as] = ACTIONS(2818), + [anon_sym_LBRACE] = ACTIONS(2816), + [anon_sym_COMMA] = ACTIONS(2816), + [anon_sym_LPAREN] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2818), + [anon_sym_fn] = ACTIONS(2818), + [anon_sym_PLUS] = ACTIONS(2818), + [anon_sym_DASH] = ACTIONS(2818), + [anon_sym_STAR] = ACTIONS(2816), + [anon_sym_SLASH] = ACTIONS(2818), + [anon_sym_PERCENT] = ACTIONS(2816), + [anon_sym_LT] = ACTIONS(2818), + [anon_sym_GT] = ACTIONS(2818), + [anon_sym_EQ_EQ] = ACTIONS(2816), + [anon_sym_BANG_EQ] = ACTIONS(2816), + [anon_sym_LT_EQ] = ACTIONS(2816), + [anon_sym_GT_EQ] = ACTIONS(2816), + [anon_sym_LBRACK] = ACTIONS(2816), + [anon_sym_RBRACK] = ACTIONS(2816), + [anon_sym_struct] = ACTIONS(2818), + [anon_sym_mut] = ACTIONS(2818), + [anon_sym_PLUS_PLUS] = ACTIONS(2816), + [anon_sym_DASH_DASH] = ACTIONS(2816), + [anon_sym_QMARK] = ACTIONS(2818), + [anon_sym_BANG] = ACTIONS(2818), + [anon_sym_go] = ACTIONS(2818), + [anon_sym_spawn] = ACTIONS(2818), + [anon_sym_json_DOTdecode] = ACTIONS(2816), + [anon_sym_LBRACK2] = ACTIONS(2818), + [anon_sym_TILDE] = ACTIONS(2816), + [anon_sym_CARET] = ACTIONS(2816), + [anon_sym_AMP] = ACTIONS(2818), + [anon_sym_LT_DASH] = ACTIONS(2816), + [anon_sym_LT_LT] = ACTIONS(2816), + [anon_sym_GT_GT] = ACTIONS(2818), + [anon_sym_GT_GT_GT] = ACTIONS(2816), + [anon_sym_AMP_CARET] = ACTIONS(2816), + [anon_sym_AMP_AMP] = ACTIONS(2816), + [anon_sym_PIPE_PIPE] = ACTIONS(2816), + [anon_sym_or] = ACTIONS(2818), + [sym_none] = ACTIONS(2818), + [sym_true] = ACTIONS(2818), + [sym_false] = ACTIONS(2818), + [sym_nil] = ACTIONS(2818), + [anon_sym_QMARK_DOT] = ACTIONS(2816), + [anon_sym_POUND_LBRACK] = ACTIONS(2816), + [anon_sym_if] = ACTIONS(2818), + [anon_sym_DOLLARif] = ACTIONS(2818), + [anon_sym_is] = ACTIONS(2818), + [anon_sym_BANGis] = ACTIONS(2816), + [anon_sym_in] = ACTIONS(2818), + [anon_sym_BANGin] = ACTIONS(2816), + [anon_sym_match] = ACTIONS(2818), + [anon_sym_select] = ACTIONS(2818), + [anon_sym_lock] = ACTIONS(2818), + [anon_sym_rlock] = ACTIONS(2818), + [anon_sym_unsafe] = ACTIONS(2818), + [anon_sym_sql] = ACTIONS(2818), + [sym_int_literal] = ACTIONS(2818), + [sym_float_literal] = ACTIONS(2816), + [sym_rune_literal] = ACTIONS(2816), + [anon_sym_AT] = ACTIONS(2818), + [anon_sym_shared] = ACTIONS(2818), + [anon_sym_map_LBRACK] = ACTIONS(2816), + [anon_sym_chan] = ACTIONS(2818), + [anon_sym_thread] = ACTIONS(2818), + [anon_sym_atomic] = ACTIONS(2818), + [sym___double_quote] = ACTIONS(2816), + [sym___single_quote] = ACTIONS(2816), + [sym___c_double_quote] = ACTIONS(2816), + [sym___c_single_quote] = ACTIONS(2816), + [sym___r_double_quote] = ACTIONS(2816), + [sym___r_single_quote] = ACTIONS(2816), }, [1386] = { - [sym_identifier] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2862), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2927), - [anon_sym_as] = ACTIONS(2927), - [anon_sym_LBRACE] = ACTIONS(2925), - [anon_sym_COMMA] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(2925), - [anon_sym_PIPE] = ACTIONS(2927), - [anon_sym_fn] = ACTIONS(2927), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2925), - [anon_sym_SLASH] = ACTIONS(2927), - [anon_sym_PERCENT] = ACTIONS(2925), - [anon_sym_LT] = ACTIONS(2927), - [anon_sym_GT] = ACTIONS(2927), - [anon_sym_EQ_EQ] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(2925), - [anon_sym_GT_EQ] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(2925), - [anon_sym_struct] = ACTIONS(2927), - [anon_sym_mut] = ACTIONS(2927), - [anon_sym_PLUS_PLUS] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_QMARK] = ACTIONS(2927), - [anon_sym_BANG] = ACTIONS(2927), - [anon_sym_go] = ACTIONS(2927), - [anon_sym_spawn] = ACTIONS(2927), - [anon_sym_json_DOTdecode] = ACTIONS(2925), - [anon_sym_LBRACK2] = ACTIONS(2927), - [anon_sym_TILDE] = ACTIONS(2925), - [anon_sym_CARET] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2925), - [anon_sym_LT_LT] = ACTIONS(2925), - [anon_sym_GT_GT] = ACTIONS(2927), - [anon_sym_GT_GT_GT] = ACTIONS(2925), - [anon_sym_AMP_CARET] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(2925), - [anon_sym_PIPE_PIPE] = ACTIONS(2925), - [anon_sym_or] = ACTIONS(2927), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_QMARK_DOT] = ACTIONS(2925), - [anon_sym_POUND_LBRACK] = ACTIONS(2925), - [anon_sym_if] = ACTIONS(2927), - [anon_sym_DOLLARif] = ACTIONS(2927), - [anon_sym_is] = ACTIONS(2927), - [anon_sym_BANGis] = ACTIONS(2925), - [anon_sym_in] = ACTIONS(2927), - [anon_sym_BANGin] = ACTIONS(2925), - [anon_sym_match] = ACTIONS(2927), - [anon_sym_select] = ACTIONS(2927), - [anon_sym_lock] = ACTIONS(2927), - [anon_sym_rlock] = ACTIONS(2927), - [anon_sym_unsafe] = ACTIONS(2927), - [anon_sym_sql] = ACTIONS(2927), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2925), - [sym_rune_literal] = ACTIONS(2925), - [anon_sym_AT] = ACTIONS(2927), - [anon_sym_shared] = ACTIONS(2927), - [anon_sym_map_LBRACK] = ACTIONS(2925), - [anon_sym_chan] = ACTIONS(2927), - [anon_sym_thread] = ACTIONS(2927), - [anon_sym_atomic] = ACTIONS(2927), - [sym___double_quote] = ACTIONS(2925), - [sym___single_quote] = ACTIONS(2925), - [sym___c_double_quote] = ACTIONS(2925), - [sym___c_single_quote] = ACTIONS(2925), - [sym___r_double_quote] = ACTIONS(2925), - [sym___r_single_quote] = ACTIONS(2925), + [anon_sym_DOT] = ACTIONS(2862), + [anon_sym_as] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2860), + [anon_sym_COMMA] = ACTIONS(2860), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_PIPE] = ACTIONS(2862), + [anon_sym_fn] = ACTIONS(2862), + [anon_sym_PLUS] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2862), + [anon_sym_STAR] = ACTIONS(2860), + [anon_sym_SLASH] = ACTIONS(2862), + [anon_sym_PERCENT] = ACTIONS(2860), + [anon_sym_LT] = ACTIONS(2862), + [anon_sym_GT] = ACTIONS(2862), + [anon_sym_EQ_EQ] = ACTIONS(2860), + [anon_sym_BANG_EQ] = ACTIONS(2860), + [anon_sym_LT_EQ] = ACTIONS(2860), + [anon_sym_GT_EQ] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_RBRACK] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2862), + [anon_sym_mut] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2860), + [anon_sym_QMARK] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_go] = ACTIONS(2862), + [anon_sym_spawn] = ACTIONS(2862), + [anon_sym_json_DOTdecode] = ACTIONS(2860), + [anon_sym_LBRACK2] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2860), + [anon_sym_CARET] = ACTIONS(2860), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_LT_DASH] = ACTIONS(2860), + [anon_sym_LT_LT] = ACTIONS(2860), + [anon_sym_GT_GT] = ACTIONS(2862), + [anon_sym_GT_GT_GT] = ACTIONS(2860), + [anon_sym_AMP_CARET] = ACTIONS(2860), + [anon_sym_AMP_AMP] = ACTIONS(2860), + [anon_sym_PIPE_PIPE] = ACTIONS(2860), + [anon_sym_or] = ACTIONS(2862), + [sym_none] = ACTIONS(2862), + [sym_true] = ACTIONS(2862), + [sym_false] = ACTIONS(2862), + [sym_nil] = ACTIONS(2862), + [anon_sym_QMARK_DOT] = ACTIONS(2860), + [anon_sym_POUND_LBRACK] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2862), + [anon_sym_DOLLARif] = ACTIONS(2862), + [anon_sym_is] = ACTIONS(2862), + [anon_sym_BANGis] = ACTIONS(2860), + [anon_sym_in] = ACTIONS(2862), + [anon_sym_BANGin] = ACTIONS(2860), + [anon_sym_match] = ACTIONS(2862), + [anon_sym_select] = ACTIONS(2862), + [anon_sym_lock] = ACTIONS(2862), + [anon_sym_rlock] = ACTIONS(2862), + [anon_sym_unsafe] = ACTIONS(2862), + [anon_sym_sql] = ACTIONS(2862), + [sym_int_literal] = ACTIONS(2862), + [sym_float_literal] = ACTIONS(2860), + [sym_rune_literal] = ACTIONS(2860), + [anon_sym_AT] = ACTIONS(2862), + [anon_sym_shared] = ACTIONS(2862), + [anon_sym_map_LBRACK] = ACTIONS(2860), + [anon_sym_chan] = ACTIONS(2862), + [anon_sym_thread] = ACTIONS(2862), + [anon_sym_atomic] = ACTIONS(2862), + [sym___double_quote] = ACTIONS(2860), + [sym___single_quote] = ACTIONS(2860), + [sym___c_double_quote] = ACTIONS(2860), + [sym___c_single_quote] = ACTIONS(2860), + [sym___r_double_quote] = ACTIONS(2860), + [sym___r_single_quote] = ACTIONS(2860), }, [1387] = { - [sym_identifier] = ACTIONS(2907), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2907), - [anon_sym_as] = ACTIONS(2907), - [anon_sym_LBRACE] = ACTIONS(2905), - [anon_sym_COMMA] = ACTIONS(2905), - [anon_sym_LPAREN] = ACTIONS(2905), - [anon_sym_PIPE] = ACTIONS(2907), - [anon_sym_fn] = ACTIONS(2907), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2905), - [anon_sym_SLASH] = ACTIONS(2907), - [anon_sym_PERCENT] = ACTIONS(2905), - [anon_sym_LT] = ACTIONS(2907), - [anon_sym_GT] = ACTIONS(2907), - [anon_sym_EQ_EQ] = ACTIONS(2905), - [anon_sym_BANG_EQ] = ACTIONS(2905), - [anon_sym_LT_EQ] = ACTIONS(2905), - [anon_sym_GT_EQ] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_RBRACK] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2907), - [anon_sym_mut] = ACTIONS(2907), - [anon_sym_PLUS_PLUS] = ACTIONS(2905), - [anon_sym_DASH_DASH] = ACTIONS(2905), - [anon_sym_QMARK] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_go] = ACTIONS(2907), - [anon_sym_spawn] = ACTIONS(2907), - [anon_sym_json_DOTdecode] = ACTIONS(2905), - [anon_sym_LBRACK2] = ACTIONS(2907), - [anon_sym_TILDE] = ACTIONS(2905), - [anon_sym_CARET] = ACTIONS(2905), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_LT_DASH] = ACTIONS(2905), - [anon_sym_LT_LT] = ACTIONS(2905), - [anon_sym_GT_GT] = ACTIONS(2907), - [anon_sym_GT_GT_GT] = ACTIONS(2905), - [anon_sym_AMP_CARET] = ACTIONS(2905), - [anon_sym_AMP_AMP] = ACTIONS(2905), - [anon_sym_PIPE_PIPE] = ACTIONS(2905), - [anon_sym_or] = ACTIONS(2907), - [sym_none] = ACTIONS(2907), - [sym_true] = ACTIONS(2907), - [sym_false] = ACTIONS(2907), - [sym_nil] = ACTIONS(2907), - [anon_sym_QMARK_DOT] = ACTIONS(2905), - [anon_sym_POUND_LBRACK] = ACTIONS(2905), - [anon_sym_if] = ACTIONS(2907), - [anon_sym_DOLLARif] = ACTIONS(2907), - [anon_sym_is] = ACTIONS(2907), - [anon_sym_BANGis] = ACTIONS(2905), - [anon_sym_in] = ACTIONS(2907), - [anon_sym_BANGin] = ACTIONS(2905), - [anon_sym_match] = ACTIONS(2907), - [anon_sym_select] = ACTIONS(2907), - [anon_sym_lock] = ACTIONS(2907), - [anon_sym_rlock] = ACTIONS(2907), - [anon_sym_unsafe] = ACTIONS(2907), - [anon_sym_sql] = ACTIONS(2907), - [sym_int_literal] = ACTIONS(2907), - [sym_float_literal] = ACTIONS(2905), - [sym_rune_literal] = ACTIONS(2905), - [anon_sym_AT] = ACTIONS(2907), - [anon_sym_shared] = ACTIONS(2907), - [anon_sym_map_LBRACK] = ACTIONS(2905), - [anon_sym_chan] = ACTIONS(2907), - [anon_sym_thread] = ACTIONS(2907), - [anon_sym_atomic] = ACTIONS(2907), - [sym___double_quote] = ACTIONS(2905), - [sym___single_quote] = ACTIONS(2905), - [sym___c_double_quote] = ACTIONS(2905), - [sym___c_single_quote] = ACTIONS(2905), - [sym___r_double_quote] = ACTIONS(2905), - [sym___r_single_quote] = ACTIONS(2905), - }, - [1388] = { - [sym_identifier] = ACTIONS(2884), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_as] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_COMMA] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_PIPE] = ACTIONS(2884), - [anon_sym_fn] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2882), - [anon_sym_SLASH] = ACTIONS(2884), - [anon_sym_PERCENT] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_GT] = ACTIONS(2884), - [anon_sym_EQ_EQ] = ACTIONS(2882), - [anon_sym_BANG_EQ] = ACTIONS(2882), - [anon_sym_LT_EQ] = ACTIONS(2882), - [anon_sym_GT_EQ] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_RBRACK] = ACTIONS(3667), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_mut] = ACTIONS(2884), - [anon_sym_PLUS_PLUS] = ACTIONS(2882), - [anon_sym_DASH_DASH] = ACTIONS(2882), - [anon_sym_QMARK] = ACTIONS(2884), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_go] = ACTIONS(2884), - [anon_sym_spawn] = ACTIONS(2884), - [anon_sym_json_DOTdecode] = ACTIONS(2882), - [anon_sym_LBRACK2] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2882), - [anon_sym_CARET] = ACTIONS(2882), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_LT_DASH] = ACTIONS(2882), - [anon_sym_LT_LT] = ACTIONS(2882), - [anon_sym_GT_GT] = ACTIONS(2884), - [anon_sym_GT_GT_GT] = ACTIONS(2882), - [anon_sym_AMP_CARET] = ACTIONS(2882), - [anon_sym_AMP_AMP] = ACTIONS(2882), - [anon_sym_PIPE_PIPE] = ACTIONS(2882), - [anon_sym_or] = ACTIONS(2884), - [sym_none] = ACTIONS(2884), - [sym_true] = ACTIONS(2884), - [sym_false] = ACTIONS(2884), - [sym_nil] = ACTIONS(2884), - [anon_sym_QMARK_DOT] = ACTIONS(2882), - [anon_sym_POUND_LBRACK] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_DOLLARif] = ACTIONS(2884), - [anon_sym_is] = ACTIONS(2884), - [anon_sym_BANGis] = ACTIONS(2882), - [anon_sym_in] = ACTIONS(2884), - [anon_sym_BANGin] = ACTIONS(2882), - [anon_sym_match] = ACTIONS(2884), - [anon_sym_select] = ACTIONS(2884), - [anon_sym_lock] = ACTIONS(2884), - [anon_sym_rlock] = ACTIONS(2884), - [anon_sym_unsafe] = ACTIONS(2884), - [anon_sym_sql] = ACTIONS(2884), - [sym_int_literal] = ACTIONS(2884), - [sym_float_literal] = ACTIONS(2882), - [sym_rune_literal] = ACTIONS(2882), - [anon_sym_AT] = ACTIONS(2884), - [anon_sym_shared] = ACTIONS(2884), - [anon_sym_map_LBRACK] = ACTIONS(2882), - [anon_sym_chan] = ACTIONS(2884), - [anon_sym_thread] = ACTIONS(2884), - [anon_sym_atomic] = ACTIONS(2884), - [sym___double_quote] = ACTIONS(2882), - [sym___single_quote] = ACTIONS(2882), - [sym___c_double_quote] = ACTIONS(2882), - [sym___c_single_quote] = ACTIONS(2882), - [sym___r_double_quote] = ACTIONS(2882), - [sym___r_single_quote] = ACTIONS(2882), - }, - [1389] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [anon_sym_LF] = ACTIONS(595), - [anon_sym_CR] = ACTIONS(595), - [anon_sym_CR_LF] = ACTIONS(595), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(595), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_as] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_RBRACE] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(597), - [anon_sym___global] = ACTIONS(595), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [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(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_pub] = ACTIONS(595), - [anon_sym_mut] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(3700), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [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(595), - [anon_sym_QMARK_DOT] = ACTIONS(595), - [anon_sym_POUND_LBRACK] = ACTIONS(595), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(595), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(595), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(537), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_AT_LBRACK] = ACTIONS(595), - }, - [1390] = { - [sym_identifier] = ACTIONS(2923), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2923), - [anon_sym_as] = ACTIONS(2923), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_COMMA] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_PIPE] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2923), - [anon_sym_PLUS] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2923), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_SLASH] = ACTIONS(2923), - [anon_sym_PERCENT] = ACTIONS(2921), - [anon_sym_LT] = ACTIONS(2923), - [anon_sym_GT] = ACTIONS(2923), - [anon_sym_EQ_EQ] = ACTIONS(2921), - [anon_sym_BANG_EQ] = ACTIONS(2921), - [anon_sym_LT_EQ] = ACTIONS(2921), - [anon_sym_GT_EQ] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_RBRACK] = ACTIONS(2921), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_mut] = ACTIONS(2923), - [anon_sym_PLUS_PLUS] = ACTIONS(2921), - [anon_sym_DASH_DASH] = ACTIONS(2921), - [anon_sym_QMARK] = ACTIONS(2923), - [anon_sym_BANG] = ACTIONS(2923), - [anon_sym_go] = ACTIONS(2923), - [anon_sym_spawn] = ACTIONS(2923), - [anon_sym_json_DOTdecode] = ACTIONS(2921), - [anon_sym_LBRACK2] = ACTIONS(2923), - [anon_sym_TILDE] = ACTIONS(2921), - [anon_sym_CARET] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_LT_DASH] = ACTIONS(2921), - [anon_sym_LT_LT] = ACTIONS(2921), - [anon_sym_GT_GT] = ACTIONS(2923), - [anon_sym_GT_GT_GT] = ACTIONS(2921), - [anon_sym_AMP_CARET] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_PIPE_PIPE] = ACTIONS(2921), - [anon_sym_or] = ACTIONS(2923), - [sym_none] = ACTIONS(2923), - [sym_true] = ACTIONS(2923), - [sym_false] = ACTIONS(2923), - [sym_nil] = ACTIONS(2923), - [anon_sym_QMARK_DOT] = ACTIONS(2921), - [anon_sym_POUND_LBRACK] = ACTIONS(2921), - [anon_sym_if] = ACTIONS(2923), - [anon_sym_DOLLARif] = ACTIONS(2923), - [anon_sym_is] = ACTIONS(2923), - [anon_sym_BANGis] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(2923), - [anon_sym_BANGin] = ACTIONS(2921), - [anon_sym_match] = ACTIONS(2923), - [anon_sym_select] = ACTIONS(2923), - [anon_sym_lock] = ACTIONS(2923), - [anon_sym_rlock] = ACTIONS(2923), - [anon_sym_unsafe] = ACTIONS(2923), - [anon_sym_sql] = ACTIONS(2923), - [sym_int_literal] = ACTIONS(2923), - [sym_float_literal] = ACTIONS(2921), - [sym_rune_literal] = ACTIONS(2921), - [anon_sym_AT] = ACTIONS(2923), - [anon_sym_shared] = ACTIONS(2923), - [anon_sym_map_LBRACK] = ACTIONS(2921), - [anon_sym_chan] = ACTIONS(2923), - [anon_sym_thread] = ACTIONS(2923), - [anon_sym_atomic] = ACTIONS(2923), - [sym___double_quote] = ACTIONS(2921), - [sym___single_quote] = ACTIONS(2921), - [sym___c_double_quote] = ACTIONS(2921), - [sym___c_single_quote] = ACTIONS(2921), - [sym___r_double_quote] = ACTIONS(2921), - [sym___r_single_quote] = ACTIONS(2921), - }, - [1391] = { - [sym_reference_expression] = STATE(4566), - [sym_type_reference_expression] = STATE(2159), - [sym_plain_type] = STATE(2198), - [sym__plain_type_without_special] = STATE(2185), - [sym_anon_struct_type] = STATE(2186), - [sym_multi_return_type] = STATE(2185), - [sym_result_type] = STATE(2185), - [sym_option_type] = STATE(2185), - [sym_qualified_type] = STATE(2159), - [sym_fixed_array_type] = STATE(2186), - [sym_array_type] = STATE(2186), - [sym_pointer_type] = STATE(2186), - [sym_wrong_pointer_type] = STATE(2186), - [sym_map_type] = STATE(2186), - [sym_channel_type] = STATE(2186), - [sym_shared_type] = STATE(2186), - [sym_thread_type] = STATE(2186), - [sym_atomic_type] = STATE(2186), - [sym_generic_type] = STATE(2186), - [sym_function_type] = STATE(2186), - [sym_identifier] = ACTIONS(3672), - [anon_sym_LF] = ACTIONS(555), - [anon_sym_CR] = ACTIONS(555), - [anon_sym_CR_LF] = ACTIONS(555), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(555), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_as] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(555), - [anon_sym_RBRACE] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym___global] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_fn] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(3678), - [anon_sym_SLASH] = ACTIONS(555), - [anon_sym_PERCENT] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(555), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_EQ_EQ] = ACTIONS(555), - [anon_sym_BANG_EQ] = ACTIONS(555), - [anon_sym_LT_EQ] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(3680), - [anon_sym_pub] = ACTIONS(555), - [anon_sym_mut] = ACTIONS(555), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_QMARK] = ACTIONS(3682), - [anon_sym_BANG] = ACTIONS(3684), - [anon_sym_LBRACK2] = ACTIONS(3686), - [anon_sym_CARET] = ACTIONS(555), - [anon_sym_AMP] = ACTIONS(3688), - [anon_sym_LT_LT] = ACTIONS(555), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_GT_GT_GT] = ACTIONS(555), - [anon_sym_AMP_CARET] = ACTIONS(555), - [anon_sym_AMP_AMP] = ACTIONS(555), - [anon_sym_PIPE_PIPE] = ACTIONS(555), - [anon_sym_or] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(555), - [anon_sym_POUND_LBRACK] = ACTIONS(555), - [anon_sym_is] = ACTIONS(555), - [anon_sym_BANGis] = ACTIONS(555), - [anon_sym_in] = ACTIONS(555), - [anon_sym_BANGin] = ACTIONS(555), - [anon_sym_shared] = ACTIONS(3690), - [anon_sym_map_LBRACK] = ACTIONS(3692), - [anon_sym_chan] = ACTIONS(3694), - [anon_sym_thread] = ACTIONS(3696), - [anon_sym_atomic] = ACTIONS(3698), - [anon_sym_AT_LBRACK] = ACTIONS(555), - }, - [1392] = { - [sym_identifier] = ACTIONS(2868), + [sym_identifier] = ACTIONS(2870), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2868), - [anon_sym_as] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2866), - [anon_sym_COMMA] = ACTIONS(2866), - [anon_sym_LPAREN] = ACTIONS(2866), - [anon_sym_PIPE] = ACTIONS(2868), - [anon_sym_fn] = ACTIONS(2868), - [anon_sym_PLUS] = ACTIONS(2868), - [anon_sym_DASH] = ACTIONS(2868), - [anon_sym_STAR] = ACTIONS(2866), - [anon_sym_SLASH] = ACTIONS(2868), - [anon_sym_PERCENT] = ACTIONS(2866), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_GT] = ACTIONS(2868), - [anon_sym_EQ_EQ] = ACTIONS(2866), - [anon_sym_BANG_EQ] = ACTIONS(2866), - [anon_sym_LT_EQ] = ACTIONS(2866), - [anon_sym_GT_EQ] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2866), - [anon_sym_RBRACK] = ACTIONS(2866), - [anon_sym_struct] = ACTIONS(2868), - [anon_sym_mut] = ACTIONS(2868), - [anon_sym_PLUS_PLUS] = ACTIONS(2866), - [anon_sym_DASH_DASH] = ACTIONS(2866), - [anon_sym_QMARK] = ACTIONS(2868), - [anon_sym_BANG] = ACTIONS(2868), - [anon_sym_go] = ACTIONS(2868), - [anon_sym_spawn] = ACTIONS(2868), - [anon_sym_json_DOTdecode] = ACTIONS(2866), - [anon_sym_LBRACK2] = ACTIONS(2868), - [anon_sym_TILDE] = ACTIONS(2866), - [anon_sym_CARET] = ACTIONS(2866), - [anon_sym_AMP] = ACTIONS(2868), - [anon_sym_LT_DASH] = ACTIONS(2866), - [anon_sym_LT_LT] = ACTIONS(2866), - [anon_sym_GT_GT] = ACTIONS(2868), - [anon_sym_GT_GT_GT] = ACTIONS(2866), - [anon_sym_AMP_CARET] = ACTIONS(2866), - [anon_sym_AMP_AMP] = ACTIONS(2866), - [anon_sym_PIPE_PIPE] = ACTIONS(2866), - [anon_sym_or] = ACTIONS(2868), - [sym_none] = ACTIONS(2868), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_nil] = ACTIONS(2868), - [anon_sym_QMARK_DOT] = ACTIONS(2866), - [anon_sym_POUND_LBRACK] = ACTIONS(2866), - [anon_sym_if] = ACTIONS(2868), - [anon_sym_DOLLARif] = ACTIONS(2868), - [anon_sym_is] = ACTIONS(2868), - [anon_sym_BANGis] = ACTIONS(2866), - [anon_sym_in] = ACTIONS(2868), - [anon_sym_BANGin] = ACTIONS(2866), - [anon_sym_match] = ACTIONS(2868), - [anon_sym_select] = ACTIONS(2868), - [anon_sym_lock] = ACTIONS(2868), - [anon_sym_rlock] = ACTIONS(2868), - [anon_sym_unsafe] = ACTIONS(2868), - [anon_sym_sql] = ACTIONS(2868), - [sym_int_literal] = ACTIONS(2868), - [sym_float_literal] = ACTIONS(2866), - [sym_rune_literal] = ACTIONS(2866), - [anon_sym_AT] = ACTIONS(2868), - [anon_sym_shared] = ACTIONS(2868), - [anon_sym_map_LBRACK] = ACTIONS(2866), - [anon_sym_chan] = ACTIONS(2868), - [anon_sym_thread] = ACTIONS(2868), - [anon_sym_atomic] = ACTIONS(2868), - [sym___double_quote] = ACTIONS(2866), - [sym___single_quote] = ACTIONS(2866), - [sym___c_double_quote] = ACTIONS(2866), - [sym___c_single_quote] = ACTIONS(2866), - [sym___r_double_quote] = ACTIONS(2866), - [sym___r_single_quote] = ACTIONS(2866), + [anon_sym_DOT] = ACTIONS(2870), + [anon_sym_as] = ACTIONS(2870), + [anon_sym_LBRACE] = ACTIONS(2868), + [anon_sym_COMMA] = ACTIONS(2868), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_PIPE] = ACTIONS(2870), + [anon_sym_fn] = ACTIONS(2870), + [anon_sym_PLUS] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_STAR] = ACTIONS(2868), + [anon_sym_SLASH] = ACTIONS(2870), + [anon_sym_PERCENT] = ACTIONS(2868), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_GT] = ACTIONS(2870), + [anon_sym_EQ_EQ] = ACTIONS(2868), + [anon_sym_BANG_EQ] = ACTIONS(2868), + [anon_sym_LT_EQ] = ACTIONS(2868), + [anon_sym_GT_EQ] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_RBRACK] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2870), + [anon_sym_mut] = ACTIONS(2870), + [anon_sym_PLUS_PLUS] = ACTIONS(2868), + [anon_sym_DASH_DASH] = ACTIONS(2868), + [anon_sym_QMARK] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_go] = ACTIONS(2870), + [anon_sym_spawn] = ACTIONS(2870), + [anon_sym_json_DOTdecode] = ACTIONS(2868), + [anon_sym_LBRACK2] = ACTIONS(2870), + [anon_sym_TILDE] = ACTIONS(2868), + [anon_sym_CARET] = ACTIONS(2868), + [anon_sym_AMP] = ACTIONS(2870), + [anon_sym_LT_DASH] = ACTIONS(2868), + [anon_sym_LT_LT] = ACTIONS(2868), + [anon_sym_GT_GT] = ACTIONS(2870), + [anon_sym_GT_GT_GT] = ACTIONS(2868), + [anon_sym_AMP_CARET] = ACTIONS(2868), + [anon_sym_AMP_AMP] = ACTIONS(2868), + [anon_sym_PIPE_PIPE] = ACTIONS(2868), + [anon_sym_or] = ACTIONS(2870), + [sym_none] = ACTIONS(2870), + [sym_true] = ACTIONS(2870), + [sym_false] = ACTIONS(2870), + [sym_nil] = ACTIONS(2870), + [anon_sym_QMARK_DOT] = ACTIONS(2868), + [anon_sym_POUND_LBRACK] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2870), + [anon_sym_DOLLARif] = ACTIONS(2870), + [anon_sym_is] = ACTIONS(2870), + [anon_sym_BANGis] = ACTIONS(2868), + [anon_sym_in] = ACTIONS(2870), + [anon_sym_BANGin] = ACTIONS(2868), + [anon_sym_match] = ACTIONS(2870), + [anon_sym_select] = ACTIONS(2870), + [anon_sym_lock] = ACTIONS(2870), + [anon_sym_rlock] = ACTIONS(2870), + [anon_sym_unsafe] = ACTIONS(2870), + [anon_sym_sql] = ACTIONS(2870), + [sym_int_literal] = ACTIONS(2870), + [sym_float_literal] = ACTIONS(2868), + [sym_rune_literal] = ACTIONS(2868), + [anon_sym_AT] = ACTIONS(2870), + [anon_sym_shared] = ACTIONS(2870), + [anon_sym_map_LBRACK] = ACTIONS(2868), + [anon_sym_chan] = ACTIONS(2870), + [anon_sym_thread] = ACTIONS(2870), + [anon_sym_atomic] = ACTIONS(2870), + [sym___double_quote] = ACTIONS(2868), + [sym___single_quote] = ACTIONS(2868), + [sym___c_double_quote] = ACTIONS(2868), + [sym___c_single_quote] = ACTIONS(2868), + [sym___r_double_quote] = ACTIONS(2868), + [sym___r_single_quote] = ACTIONS(2868), + }, + [1388] = { + [sym_identifier] = ACTIONS(2934), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2934), + [anon_sym_as] = ACTIONS(2934), + [anon_sym_LBRACE] = ACTIONS(2932), + [anon_sym_COMMA] = ACTIONS(2932), + [anon_sym_LPAREN] = ACTIONS(2932), + [anon_sym_PIPE] = ACTIONS(2934), + [anon_sym_fn] = ACTIONS(2934), + [anon_sym_PLUS] = ACTIONS(2934), + [anon_sym_DASH] = ACTIONS(2934), + [anon_sym_STAR] = ACTIONS(2932), + [anon_sym_SLASH] = ACTIONS(2934), + [anon_sym_PERCENT] = ACTIONS(2932), + [anon_sym_LT] = ACTIONS(2934), + [anon_sym_GT] = ACTIONS(2934), + [anon_sym_EQ_EQ] = ACTIONS(2932), + [anon_sym_BANG_EQ] = ACTIONS(2932), + [anon_sym_LT_EQ] = ACTIONS(2932), + [anon_sym_GT_EQ] = ACTIONS(2932), + [anon_sym_LBRACK] = ACTIONS(2932), + [anon_sym_RBRACK] = ACTIONS(2932), + [anon_sym_struct] = ACTIONS(2934), + [anon_sym_mut] = ACTIONS(2934), + [anon_sym_PLUS_PLUS] = ACTIONS(2932), + [anon_sym_DASH_DASH] = ACTIONS(2932), + [anon_sym_QMARK] = ACTIONS(2934), + [anon_sym_BANG] = ACTIONS(2934), + [anon_sym_go] = ACTIONS(2934), + [anon_sym_spawn] = ACTIONS(2934), + [anon_sym_json_DOTdecode] = ACTIONS(2932), + [anon_sym_LBRACK2] = ACTIONS(2934), + [anon_sym_TILDE] = ACTIONS(2932), + [anon_sym_CARET] = ACTIONS(2932), + [anon_sym_AMP] = ACTIONS(2934), + [anon_sym_LT_DASH] = ACTIONS(2932), + [anon_sym_LT_LT] = ACTIONS(2932), + [anon_sym_GT_GT] = ACTIONS(2934), + [anon_sym_GT_GT_GT] = ACTIONS(2932), + [anon_sym_AMP_CARET] = ACTIONS(2932), + [anon_sym_AMP_AMP] = ACTIONS(2932), + [anon_sym_PIPE_PIPE] = ACTIONS(2932), + [anon_sym_or] = ACTIONS(2934), + [sym_none] = ACTIONS(2934), + [sym_true] = ACTIONS(2934), + [sym_false] = ACTIONS(2934), + [sym_nil] = ACTIONS(2934), + [anon_sym_QMARK_DOT] = ACTIONS(2932), + [anon_sym_POUND_LBRACK] = ACTIONS(2932), + [anon_sym_if] = ACTIONS(2934), + [anon_sym_DOLLARif] = ACTIONS(2934), + [anon_sym_is] = ACTIONS(2934), + [anon_sym_BANGis] = ACTIONS(2932), + [anon_sym_in] = ACTIONS(2934), + [anon_sym_BANGin] = ACTIONS(2932), + [anon_sym_match] = ACTIONS(2934), + [anon_sym_select] = ACTIONS(2934), + [anon_sym_lock] = ACTIONS(2934), + [anon_sym_rlock] = ACTIONS(2934), + [anon_sym_unsafe] = ACTIONS(2934), + [anon_sym_sql] = ACTIONS(2934), + [sym_int_literal] = ACTIONS(2934), + [sym_float_literal] = ACTIONS(2932), + [sym_rune_literal] = ACTIONS(2932), + [anon_sym_AT] = ACTIONS(2934), + [anon_sym_shared] = ACTIONS(2934), + [anon_sym_map_LBRACK] = ACTIONS(2932), + [anon_sym_chan] = ACTIONS(2934), + [anon_sym_thread] = ACTIONS(2934), + [anon_sym_atomic] = ACTIONS(2934), + [sym___double_quote] = ACTIONS(2932), + [sym___single_quote] = ACTIONS(2932), + [sym___c_double_quote] = ACTIONS(2932), + [sym___c_single_quote] = ACTIONS(2932), + [sym___r_double_quote] = ACTIONS(2932), + [sym___r_single_quote] = ACTIONS(2932), + }, + [1389] = { + [sym_identifier] = ACTIONS(2954), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2954), + [anon_sym_as] = ACTIONS(2954), + [anon_sym_LBRACE] = ACTIONS(2952), + [anon_sym_COMMA] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_PIPE] = ACTIONS(2954), + [anon_sym_fn] = ACTIONS(2954), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_STAR] = ACTIONS(2952), + [anon_sym_SLASH] = ACTIONS(2954), + [anon_sym_PERCENT] = ACTIONS(2952), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_GT] = ACTIONS(2954), + [anon_sym_EQ_EQ] = ACTIONS(2952), + [anon_sym_BANG_EQ] = ACTIONS(2952), + [anon_sym_LT_EQ] = ACTIONS(2952), + [anon_sym_GT_EQ] = ACTIONS(2952), + [anon_sym_LBRACK] = ACTIONS(2952), + [anon_sym_RBRACK] = ACTIONS(2952), + [anon_sym_struct] = ACTIONS(2954), + [anon_sym_mut] = ACTIONS(2954), + [anon_sym_PLUS_PLUS] = ACTIONS(2952), + [anon_sym_DASH_DASH] = ACTIONS(2952), + [anon_sym_QMARK] = ACTIONS(2954), + [anon_sym_BANG] = ACTIONS(2954), + [anon_sym_go] = ACTIONS(2954), + [anon_sym_spawn] = ACTIONS(2954), + [anon_sym_json_DOTdecode] = ACTIONS(2952), + [anon_sym_LBRACK2] = ACTIONS(2954), + [anon_sym_TILDE] = ACTIONS(2952), + [anon_sym_CARET] = ACTIONS(2952), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_LT_DASH] = ACTIONS(2952), + [anon_sym_LT_LT] = ACTIONS(2952), + [anon_sym_GT_GT] = ACTIONS(2954), + [anon_sym_GT_GT_GT] = ACTIONS(2952), + [anon_sym_AMP_CARET] = ACTIONS(2952), + [anon_sym_AMP_AMP] = ACTIONS(2952), + [anon_sym_PIPE_PIPE] = ACTIONS(2952), + [anon_sym_or] = ACTIONS(2954), + [sym_none] = ACTIONS(2954), + [sym_true] = ACTIONS(2954), + [sym_false] = ACTIONS(2954), + [sym_nil] = ACTIONS(2954), + [anon_sym_QMARK_DOT] = ACTIONS(2952), + [anon_sym_POUND_LBRACK] = ACTIONS(2952), + [anon_sym_if] = ACTIONS(2954), + [anon_sym_DOLLARif] = ACTIONS(2954), + [anon_sym_is] = ACTIONS(2954), + [anon_sym_BANGis] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(2954), + [anon_sym_BANGin] = ACTIONS(2952), + [anon_sym_match] = ACTIONS(2954), + [anon_sym_select] = ACTIONS(2954), + [anon_sym_lock] = ACTIONS(2954), + [anon_sym_rlock] = ACTIONS(2954), + [anon_sym_unsafe] = ACTIONS(2954), + [anon_sym_sql] = ACTIONS(2954), + [sym_int_literal] = ACTIONS(2954), + [sym_float_literal] = ACTIONS(2952), + [sym_rune_literal] = ACTIONS(2952), + [anon_sym_AT] = ACTIONS(2954), + [anon_sym_shared] = ACTIONS(2954), + [anon_sym_map_LBRACK] = ACTIONS(2952), + [anon_sym_chan] = ACTIONS(2954), + [anon_sym_thread] = ACTIONS(2954), + [anon_sym_atomic] = ACTIONS(2954), + [sym___double_quote] = ACTIONS(2952), + [sym___single_quote] = ACTIONS(2952), + [sym___c_double_quote] = ACTIONS(2952), + [sym___c_single_quote] = ACTIONS(2952), + [sym___r_double_quote] = ACTIONS(2952), + [sym___r_single_quote] = ACTIONS(2952), + }, + [1390] = { + [sym_identifier] = ACTIONS(3026), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3026), + [anon_sym_as] = ACTIONS(3026), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_COMMA] = ACTIONS(3024), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3026), + [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_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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3024), + [sym___single_quote] = ACTIONS(3024), + [sym___c_double_quote] = ACTIONS(3024), + [sym___c_single_quote] = ACTIONS(3024), + [sym___r_double_quote] = ACTIONS(3024), + [sym___r_single_quote] = ACTIONS(3024), + }, + [1391] = { + [sym_identifier] = ACTIONS(2962), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2962), + [anon_sym_as] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2960), + [anon_sym_COMMA] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2960), + [anon_sym_PIPE] = ACTIONS(2962), + [anon_sym_fn] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(2960), + [anon_sym_SLASH] = ACTIONS(2962), + [anon_sym_PERCENT] = ACTIONS(2960), + [anon_sym_LT] = ACTIONS(2962), + [anon_sym_GT] = ACTIONS(2962), + [anon_sym_EQ_EQ] = ACTIONS(2960), + [anon_sym_BANG_EQ] = ACTIONS(2960), + [anon_sym_LT_EQ] = ACTIONS(2960), + [anon_sym_GT_EQ] = ACTIONS(2960), + [anon_sym_LBRACK] = ACTIONS(2960), + [anon_sym_RBRACK] = ACTIONS(2960), + [anon_sym_struct] = ACTIONS(2962), + [anon_sym_mut] = ACTIONS(2962), + [anon_sym_PLUS_PLUS] = ACTIONS(2960), + [anon_sym_DASH_DASH] = ACTIONS(2960), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_go] = ACTIONS(2962), + [anon_sym_spawn] = ACTIONS(2962), + [anon_sym_json_DOTdecode] = ACTIONS(2960), + [anon_sym_LBRACK2] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2960), + [anon_sym_CARET] = ACTIONS(2960), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_LT_DASH] = ACTIONS(2960), + [anon_sym_LT_LT] = ACTIONS(2960), + [anon_sym_GT_GT] = ACTIONS(2962), + [anon_sym_GT_GT_GT] = ACTIONS(2960), + [anon_sym_AMP_CARET] = ACTIONS(2960), + [anon_sym_AMP_AMP] = ACTIONS(2960), + [anon_sym_PIPE_PIPE] = ACTIONS(2960), + [anon_sym_or] = ACTIONS(2962), + [sym_none] = ACTIONS(2962), + [sym_true] = ACTIONS(2962), + [sym_false] = ACTIONS(2962), + [sym_nil] = ACTIONS(2962), + [anon_sym_QMARK_DOT] = ACTIONS(2960), + [anon_sym_POUND_LBRACK] = ACTIONS(2960), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_DOLLARif] = ACTIONS(2962), + [anon_sym_is] = ACTIONS(2962), + [anon_sym_BANGis] = ACTIONS(2960), + [anon_sym_in] = ACTIONS(2962), + [anon_sym_BANGin] = ACTIONS(2960), + [anon_sym_match] = ACTIONS(2962), + [anon_sym_select] = ACTIONS(2962), + [anon_sym_lock] = ACTIONS(2962), + [anon_sym_rlock] = ACTIONS(2962), + [anon_sym_unsafe] = ACTIONS(2962), + [anon_sym_sql] = ACTIONS(2962), + [sym_int_literal] = ACTIONS(2962), + [sym_float_literal] = ACTIONS(2960), + [sym_rune_literal] = ACTIONS(2960), + [anon_sym_AT] = ACTIONS(2962), + [anon_sym_shared] = ACTIONS(2962), + [anon_sym_map_LBRACK] = ACTIONS(2960), + [anon_sym_chan] = ACTIONS(2962), + [anon_sym_thread] = ACTIONS(2962), + [anon_sym_atomic] = ACTIONS(2962), + [sym___double_quote] = ACTIONS(2960), + [sym___single_quote] = ACTIONS(2960), + [sym___c_double_quote] = ACTIONS(2960), + [sym___c_single_quote] = ACTIONS(2960), + [sym___r_double_quote] = ACTIONS(2960), + [sym___r_single_quote] = ACTIONS(2960), + }, + [1392] = { + [sym_identifier] = ACTIONS(3034), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3034), + [anon_sym_as] = ACTIONS(3034), + [anon_sym_LBRACE] = ACTIONS(3032), + [anon_sym_COMMA] = ACTIONS(3032), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_PIPE] = ACTIONS(3034), + [anon_sym_fn] = ACTIONS(3034), + [anon_sym_PLUS] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3034), + [anon_sym_STAR] = ACTIONS(3032), + [anon_sym_SLASH] = ACTIONS(3034), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(3034), + [anon_sym_GT] = ACTIONS(3034), + [anon_sym_EQ_EQ] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_LT_EQ] = ACTIONS(3032), + [anon_sym_GT_EQ] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_RBRACK] = ACTIONS(3032), + [anon_sym_struct] = ACTIONS(3034), + [anon_sym_mut] = ACTIONS(3034), + [anon_sym_PLUS_PLUS] = ACTIONS(3032), + [anon_sym_DASH_DASH] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3034), + [anon_sym_BANG] = ACTIONS(3034), + [anon_sym_go] = ACTIONS(3034), + [anon_sym_spawn] = ACTIONS(3034), + [anon_sym_json_DOTdecode] = ACTIONS(3032), + [anon_sym_LBRACK2] = ACTIONS(3034), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_CARET] = ACTIONS(3032), + [anon_sym_AMP] = ACTIONS(3034), + [anon_sym_LT_DASH] = ACTIONS(3032), + [anon_sym_LT_LT] = ACTIONS(3032), + [anon_sym_GT_GT] = ACTIONS(3034), + [anon_sym_GT_GT_GT] = ACTIONS(3032), + [anon_sym_AMP_CARET] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_or] = ACTIONS(3034), + [sym_none] = ACTIONS(3034), + [sym_true] = ACTIONS(3034), + [sym_false] = ACTIONS(3034), + [sym_nil] = ACTIONS(3034), + [anon_sym_QMARK_DOT] = ACTIONS(3032), + [anon_sym_POUND_LBRACK] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3034), + [anon_sym_DOLLARif] = ACTIONS(3034), + [anon_sym_is] = ACTIONS(3034), + [anon_sym_BANGis] = ACTIONS(3032), + [anon_sym_in] = ACTIONS(3034), + [anon_sym_BANGin] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3034), + [anon_sym_select] = ACTIONS(3034), + [anon_sym_lock] = ACTIONS(3034), + [anon_sym_rlock] = ACTIONS(3034), + [anon_sym_unsafe] = ACTIONS(3034), + [anon_sym_sql] = ACTIONS(3034), + [sym_int_literal] = ACTIONS(3034), + [sym_float_literal] = ACTIONS(3032), + [sym_rune_literal] = ACTIONS(3032), + [anon_sym_AT] = ACTIONS(3034), + [anon_sym_shared] = ACTIONS(3034), + [anon_sym_map_LBRACK] = ACTIONS(3032), + [anon_sym_chan] = ACTIONS(3034), + [anon_sym_thread] = ACTIONS(3034), + [anon_sym_atomic] = ACTIONS(3034), + [sym___double_quote] = ACTIONS(3032), + [sym___single_quote] = ACTIONS(3032), + [sym___c_double_quote] = ACTIONS(3032), + [sym___c_single_quote] = ACTIONS(3032), + [sym___r_double_quote] = ACTIONS(3032), + [sym___r_single_quote] = ACTIONS(3032), }, [1393] = { - [sym_identifier] = ACTIONS(2852), + [sym_identifier] = ACTIONS(3054), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2852), - [anon_sym_as] = ACTIONS(2852), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_COMMA] = ACTIONS(2850), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_PIPE] = ACTIONS(2852), - [anon_sym_fn] = ACTIONS(2852), - [anon_sym_PLUS] = ACTIONS(2852), - [anon_sym_DASH] = ACTIONS(2852), - [anon_sym_STAR] = ACTIONS(2850), - [anon_sym_SLASH] = ACTIONS(2852), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2852), - [anon_sym_GT] = ACTIONS(2852), - [anon_sym_EQ_EQ] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2850), - [anon_sym_LT_EQ] = ACTIONS(2850), - [anon_sym_GT_EQ] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_RBRACK] = ACTIONS(2850), - [anon_sym_struct] = ACTIONS(2852), - [anon_sym_mut] = ACTIONS(2852), - [anon_sym_PLUS_PLUS] = ACTIONS(2850), - [anon_sym_DASH_DASH] = ACTIONS(2850), - [anon_sym_QMARK] = ACTIONS(2852), - [anon_sym_BANG] = ACTIONS(2852), - [anon_sym_go] = ACTIONS(2852), - [anon_sym_spawn] = ACTIONS(2852), - [anon_sym_json_DOTdecode] = ACTIONS(2850), - [anon_sym_LBRACK2] = ACTIONS(2852), - [anon_sym_TILDE] = ACTIONS(2850), - [anon_sym_CARET] = ACTIONS(2850), - [anon_sym_AMP] = ACTIONS(2852), - [anon_sym_LT_DASH] = ACTIONS(2850), - [anon_sym_LT_LT] = ACTIONS(2850), - [anon_sym_GT_GT] = ACTIONS(2852), - [anon_sym_GT_GT_GT] = ACTIONS(2850), - [anon_sym_AMP_CARET] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_or] = ACTIONS(2852), - [sym_none] = ACTIONS(2852), - [sym_true] = ACTIONS(2852), - [sym_false] = ACTIONS(2852), - [sym_nil] = ACTIONS(2852), - [anon_sym_QMARK_DOT] = ACTIONS(2850), - [anon_sym_POUND_LBRACK] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2852), - [anon_sym_DOLLARif] = ACTIONS(2852), - [anon_sym_is] = ACTIONS(2852), - [anon_sym_BANGis] = ACTIONS(2850), - [anon_sym_in] = ACTIONS(2852), - [anon_sym_BANGin] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2852), - [anon_sym_select] = ACTIONS(2852), - [anon_sym_lock] = ACTIONS(2852), - [anon_sym_rlock] = ACTIONS(2852), - [anon_sym_unsafe] = ACTIONS(2852), - [anon_sym_sql] = ACTIONS(2852), - [sym_int_literal] = ACTIONS(2852), - [sym_float_literal] = ACTIONS(2850), - [sym_rune_literal] = ACTIONS(2850), - [anon_sym_AT] = ACTIONS(2852), - [anon_sym_shared] = ACTIONS(2852), - [anon_sym_map_LBRACK] = ACTIONS(2850), - [anon_sym_chan] = ACTIONS(2852), - [anon_sym_thread] = ACTIONS(2852), - [anon_sym_atomic] = ACTIONS(2852), - [sym___double_quote] = ACTIONS(2850), - [sym___single_quote] = ACTIONS(2850), - [sym___c_double_quote] = ACTIONS(2850), - [sym___c_single_quote] = ACTIONS(2850), - [sym___r_double_quote] = ACTIONS(2850), - [sym___r_single_quote] = ACTIONS(2850), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_as] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_COMMA] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_PIPE] = ACTIONS(3054), + [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_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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3052), + [sym___single_quote] = ACTIONS(3052), + [sym___c_double_quote] = ACTIONS(3052), + [sym___c_single_quote] = ACTIONS(3052), + [sym___r_double_quote] = ACTIONS(3052), + [sym___r_single_quote] = ACTIONS(3052), }, [1394] = { - [sym_identifier] = ACTIONS(3153), + [sym_identifier] = ACTIONS(3022), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_as] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3151), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3151), - [anon_sym_PIPE] = ACTIONS(3153), - [anon_sym_fn] = ACTIONS(3153), - [anon_sym_PLUS] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3153), - [anon_sym_STAR] = ACTIONS(3151), - [anon_sym_SLASH] = ACTIONS(3153), - [anon_sym_PERCENT] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3153), - [anon_sym_EQ_EQ] = ACTIONS(3151), - [anon_sym_BANG_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_RBRACK] = ACTIONS(3151), - [anon_sym_struct] = ACTIONS(3153), - [anon_sym_mut] = ACTIONS(3153), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_go] = ACTIONS(3153), - [anon_sym_spawn] = ACTIONS(3153), - [anon_sym_json_DOTdecode] = ACTIONS(3151), - [anon_sym_LBRACK2] = ACTIONS(3153), - [anon_sym_TILDE] = ACTIONS(3151), - [anon_sym_CARET] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3153), - [anon_sym_LT_DASH] = ACTIONS(3151), - [anon_sym_LT_LT] = ACTIONS(3151), - [anon_sym_GT_GT] = ACTIONS(3153), - [anon_sym_GT_GT_GT] = ACTIONS(3151), - [anon_sym_AMP_CARET] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_or] = ACTIONS(3153), - [sym_none] = ACTIONS(3153), - [sym_true] = ACTIONS(3153), - [sym_false] = ACTIONS(3153), - [sym_nil] = ACTIONS(3153), - [anon_sym_QMARK_DOT] = ACTIONS(3151), - [anon_sym_POUND_LBRACK] = ACTIONS(3151), - [anon_sym_if] = ACTIONS(3153), - [anon_sym_DOLLARif] = ACTIONS(3153), - [anon_sym_is] = ACTIONS(3153), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_in] = ACTIONS(3153), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_match] = ACTIONS(3153), - [anon_sym_select] = ACTIONS(3153), - [anon_sym_lock] = ACTIONS(3153), - [anon_sym_rlock] = ACTIONS(3153), - [anon_sym_unsafe] = ACTIONS(3153), - [anon_sym_sql] = ACTIONS(3153), - [sym_int_literal] = ACTIONS(3153), - [sym_float_literal] = ACTIONS(3151), - [sym_rune_literal] = ACTIONS(3151), - [anon_sym_AT] = ACTIONS(3153), - [anon_sym_shared] = ACTIONS(3153), - [anon_sym_map_LBRACK] = ACTIONS(3151), - [anon_sym_chan] = ACTIONS(3153), - [anon_sym_thread] = ACTIONS(3153), - [anon_sym_atomic] = ACTIONS(3153), - [sym___double_quote] = ACTIONS(3151), - [sym___single_quote] = ACTIONS(3151), - [sym___c_double_quote] = ACTIONS(3151), - [sym___c_single_quote] = ACTIONS(3151), - [sym___r_double_quote] = ACTIONS(3151), - [sym___r_single_quote] = ACTIONS(3151), + [anon_sym_DOT] = ACTIONS(3022), + [anon_sym_as] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_COMMA] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3020), + [anon_sym_PIPE] = ACTIONS(3022), + [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_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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3020), + [sym___single_quote] = ACTIONS(3020), + [sym___c_double_quote] = ACTIONS(3020), + [sym___c_single_quote] = ACTIONS(3020), + [sym___r_double_quote] = ACTIONS(3020), + [sym___r_single_quote] = ACTIONS(3020), }, [1395] = { - [sym_identifier] = ACTIONS(2828), + [sym_identifier] = ACTIONS(3062), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2828), - [anon_sym_as] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_COMMA] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_PIPE] = ACTIONS(2828), - [anon_sym_fn] = ACTIONS(2828), - [anon_sym_PLUS] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_STAR] = ACTIONS(2826), - [anon_sym_SLASH] = ACTIONS(2828), - [anon_sym_PERCENT] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_GT] = ACTIONS(2828), - [anon_sym_EQ_EQ] = ACTIONS(2826), - [anon_sym_BANG_EQ] = ACTIONS(2826), - [anon_sym_LT_EQ] = ACTIONS(2826), - [anon_sym_GT_EQ] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_RBRACK] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2828), - [anon_sym_mut] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2826), - [anon_sym_DASH_DASH] = ACTIONS(2826), - [anon_sym_QMARK] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_go] = ACTIONS(2828), - [anon_sym_spawn] = ACTIONS(2828), - [anon_sym_json_DOTdecode] = ACTIONS(2826), - [anon_sym_LBRACK2] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2826), - [anon_sym_CARET] = ACTIONS(2826), - [anon_sym_AMP] = ACTIONS(2828), - [anon_sym_LT_DASH] = ACTIONS(2826), - [anon_sym_LT_LT] = ACTIONS(2826), - [anon_sym_GT_GT] = ACTIONS(2828), - [anon_sym_GT_GT_GT] = ACTIONS(2826), - [anon_sym_AMP_CARET] = ACTIONS(2826), - [anon_sym_AMP_AMP] = ACTIONS(2826), - [anon_sym_PIPE_PIPE] = ACTIONS(2826), - [anon_sym_or] = ACTIONS(2828), - [sym_none] = ACTIONS(2828), - [sym_true] = ACTIONS(2828), - [sym_false] = ACTIONS(2828), - [sym_nil] = ACTIONS(2828), - [anon_sym_QMARK_DOT] = ACTIONS(2826), - [anon_sym_POUND_LBRACK] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_DOLLARif] = ACTIONS(2828), - [anon_sym_is] = ACTIONS(2828), - [anon_sym_BANGis] = ACTIONS(2826), - [anon_sym_in] = ACTIONS(2828), - [anon_sym_BANGin] = ACTIONS(2826), - [anon_sym_match] = ACTIONS(2828), - [anon_sym_select] = ACTIONS(2828), - [anon_sym_lock] = ACTIONS(2828), - [anon_sym_rlock] = ACTIONS(2828), - [anon_sym_unsafe] = ACTIONS(2828), - [anon_sym_sql] = ACTIONS(2828), - [sym_int_literal] = ACTIONS(2828), - [sym_float_literal] = ACTIONS(2826), - [sym_rune_literal] = ACTIONS(2826), - [anon_sym_AT] = ACTIONS(2828), - [anon_sym_shared] = ACTIONS(2828), - [anon_sym_map_LBRACK] = ACTIONS(2826), - [anon_sym_chan] = ACTIONS(2828), - [anon_sym_thread] = ACTIONS(2828), - [anon_sym_atomic] = ACTIONS(2828), - [sym___double_quote] = ACTIONS(2826), - [sym___single_quote] = ACTIONS(2826), - [sym___c_double_quote] = ACTIONS(2826), - [sym___c_single_quote] = ACTIONS(2826), - [sym___r_double_quote] = ACTIONS(2826), - [sym___r_single_quote] = ACTIONS(2826), + [anon_sym_DOT] = ACTIONS(3062), + [anon_sym_as] = ACTIONS(3062), + [anon_sym_LBRACE] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3060), + [anon_sym_PIPE] = ACTIONS(3062), + [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_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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3060), + [sym___single_quote] = ACTIONS(3060), + [sym___c_double_quote] = ACTIONS(3060), + [sym___c_single_quote] = ACTIONS(3060), + [sym___r_double_quote] = ACTIONS(3060), + [sym___r_single_quote] = ACTIONS(3060), }, [1396] = { - [sym_identifier] = ACTIONS(2848), + [sym_identifier] = ACTIONS(3070), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2848), - [anon_sym_as] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_COMMA] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym_PIPE] = ACTIONS(2848), - [anon_sym_fn] = ACTIONS(2848), - [anon_sym_PLUS] = ACTIONS(2848), - [anon_sym_DASH] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_SLASH] = ACTIONS(2848), - [anon_sym_PERCENT] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_GT] = ACTIONS(2848), - [anon_sym_EQ_EQ] = ACTIONS(2846), - [anon_sym_BANG_EQ] = ACTIONS(2846), - [anon_sym_LT_EQ] = ACTIONS(2846), - [anon_sym_GT_EQ] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2846), - [anon_sym_RBRACK] = ACTIONS(2846), - [anon_sym_struct] = ACTIONS(2848), - [anon_sym_mut] = ACTIONS(2848), - [anon_sym_PLUS_PLUS] = ACTIONS(2846), - [anon_sym_DASH_DASH] = ACTIONS(2846), - [anon_sym_QMARK] = ACTIONS(2848), - [anon_sym_BANG] = ACTIONS(2848), - [anon_sym_go] = ACTIONS(2848), - [anon_sym_spawn] = ACTIONS(2848), - [anon_sym_json_DOTdecode] = ACTIONS(2846), - [anon_sym_LBRACK2] = ACTIONS(2848), - [anon_sym_TILDE] = ACTIONS(2846), - [anon_sym_CARET] = ACTIONS(2846), - [anon_sym_AMP] = ACTIONS(2848), - [anon_sym_LT_DASH] = ACTIONS(2846), - [anon_sym_LT_LT] = ACTIONS(2846), - [anon_sym_GT_GT] = ACTIONS(2848), - [anon_sym_GT_GT_GT] = ACTIONS(2846), - [anon_sym_AMP_CARET] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_PIPE_PIPE] = ACTIONS(2846), - [anon_sym_or] = ACTIONS(2848), - [sym_none] = ACTIONS(2848), - [sym_true] = ACTIONS(2848), - [sym_false] = ACTIONS(2848), - [sym_nil] = ACTIONS(2848), - [anon_sym_QMARK_DOT] = ACTIONS(2846), - [anon_sym_POUND_LBRACK] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2848), - [anon_sym_DOLLARif] = ACTIONS(2848), - [anon_sym_is] = ACTIONS(2848), - [anon_sym_BANGis] = ACTIONS(2846), - [anon_sym_in] = ACTIONS(2848), - [anon_sym_BANGin] = ACTIONS(2846), - [anon_sym_match] = ACTIONS(2848), - [anon_sym_select] = ACTIONS(2848), - [anon_sym_lock] = ACTIONS(2848), - [anon_sym_rlock] = ACTIONS(2848), - [anon_sym_unsafe] = ACTIONS(2848), - [anon_sym_sql] = ACTIONS(2848), - [sym_int_literal] = ACTIONS(2848), - [sym_float_literal] = ACTIONS(2846), - [sym_rune_literal] = ACTIONS(2846), - [anon_sym_AT] = ACTIONS(2848), - [anon_sym_shared] = ACTIONS(2848), - [anon_sym_map_LBRACK] = ACTIONS(2846), - [anon_sym_chan] = ACTIONS(2848), - [anon_sym_thread] = ACTIONS(2848), - [anon_sym_atomic] = ACTIONS(2848), - [sym___double_quote] = ACTIONS(2846), - [sym___single_quote] = ACTIONS(2846), - [sym___c_double_quote] = ACTIONS(2846), - [sym___c_single_quote] = ACTIONS(2846), - [sym___r_double_quote] = ACTIONS(2846), - [sym___r_single_quote] = ACTIONS(2846), + [anon_sym_DOT] = ACTIONS(3070), + [anon_sym_as] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(3068), + [anon_sym_COMMA] = ACTIONS(3068), + [anon_sym_LPAREN] = ACTIONS(3068), + [anon_sym_PIPE] = ACTIONS(3070), + [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_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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3068), + [sym___single_quote] = ACTIONS(3068), + [sym___c_double_quote] = ACTIONS(3068), + [sym___c_single_quote] = ACTIONS(3068), + [sym___r_double_quote] = ACTIONS(3068), + [sym___r_single_quote] = ACTIONS(3068), }, [1397] = { - [sym_identifier] = ACTIONS(3193), + [sym_identifier] = ACTIONS(3102), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3193), - [anon_sym_as] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3191), - [anon_sym_PIPE] = ACTIONS(3193), - [anon_sym_fn] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(3191), - [anon_sym_SLASH] = ACTIONS(3193), - [anon_sym_PERCENT] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(3193), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_EQ_EQ] = ACTIONS(3191), - [anon_sym_BANG_EQ] = ACTIONS(3191), - [anon_sym_LT_EQ] = ACTIONS(3191), - [anon_sym_GT_EQ] = ACTIONS(3191), - [anon_sym_LBRACK] = ACTIONS(3191), - [anon_sym_RBRACK] = ACTIONS(3191), - [anon_sym_struct] = ACTIONS(3193), - [anon_sym_mut] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3191), - [anon_sym_DASH_DASH] = ACTIONS(3191), - [anon_sym_QMARK] = ACTIONS(3193), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_go] = ACTIONS(3193), - [anon_sym_spawn] = ACTIONS(3193), - [anon_sym_json_DOTdecode] = ACTIONS(3191), - [anon_sym_LBRACK2] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3191), - [anon_sym_CARET] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT_DASH] = ACTIONS(3191), - [anon_sym_LT_LT] = ACTIONS(3191), - [anon_sym_GT_GT] = ACTIONS(3193), - [anon_sym_GT_GT_GT] = ACTIONS(3191), - [anon_sym_AMP_CARET] = ACTIONS(3191), - [anon_sym_AMP_AMP] = ACTIONS(3191), - [anon_sym_PIPE_PIPE] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3193), - [sym_none] = ACTIONS(3193), - [sym_true] = ACTIONS(3193), - [sym_false] = ACTIONS(3193), - [sym_nil] = ACTIONS(3193), - [anon_sym_QMARK_DOT] = ACTIONS(3191), - [anon_sym_POUND_LBRACK] = ACTIONS(3191), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_DOLLARif] = ACTIONS(3193), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3191), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_BANGin] = ACTIONS(3191), - [anon_sym_match] = ACTIONS(3193), - [anon_sym_select] = ACTIONS(3193), - [anon_sym_lock] = ACTIONS(3193), - [anon_sym_rlock] = ACTIONS(3193), - [anon_sym_unsafe] = ACTIONS(3193), - [anon_sym_sql] = ACTIONS(3193), - [sym_int_literal] = ACTIONS(3193), - [sym_float_literal] = ACTIONS(3191), - [sym_rune_literal] = ACTIONS(3191), - [anon_sym_AT] = ACTIONS(3193), - [anon_sym_shared] = ACTIONS(3193), - [anon_sym_map_LBRACK] = ACTIONS(3191), - [anon_sym_chan] = ACTIONS(3193), - [anon_sym_thread] = ACTIONS(3193), - [anon_sym_atomic] = ACTIONS(3193), - [sym___double_quote] = ACTIONS(3191), - [sym___single_quote] = ACTIONS(3191), - [sym___c_double_quote] = ACTIONS(3191), - [sym___c_single_quote] = ACTIONS(3191), - [sym___r_double_quote] = ACTIONS(3191), - [sym___r_single_quote] = ACTIONS(3191), + [anon_sym_DOT] = ACTIONS(3102), + [anon_sym_as] = ACTIONS(3102), + [anon_sym_LBRACE] = ACTIONS(3100), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym_PIPE] = ACTIONS(3102), + [anon_sym_fn] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3102), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3102), + [anon_sym_PERCENT] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(3102), + [anon_sym_GT] = ACTIONS(3102), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_LT_EQ] = ACTIONS(3100), + [anon_sym_GT_EQ] = ACTIONS(3100), + [anon_sym_LBRACK] = ACTIONS(3100), + [anon_sym_RBRACK] = ACTIONS(3100), + [anon_sym_struct] = ACTIONS(3102), + [anon_sym_mut] = ACTIONS(3102), + [anon_sym_PLUS_PLUS] = ACTIONS(3100), + [anon_sym_DASH_DASH] = ACTIONS(3100), + [anon_sym_QMARK] = ACTIONS(3102), + [anon_sym_BANG] = ACTIONS(3102), + [anon_sym_go] = ACTIONS(3102), + [anon_sym_spawn] = ACTIONS(3102), + [anon_sym_json_DOTdecode] = ACTIONS(3100), + [anon_sym_LBRACK2] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3100), + [anon_sym_CARET] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT_DASH] = ACTIONS(3100), + [anon_sym_LT_LT] = ACTIONS(3100), + [anon_sym_GT_GT] = ACTIONS(3102), + [anon_sym_GT_GT_GT] = ACTIONS(3100), + [anon_sym_AMP_CARET] = ACTIONS(3100), + [anon_sym_AMP_AMP] = ACTIONS(3100), + [anon_sym_PIPE_PIPE] = ACTIONS(3100), + [anon_sym_or] = ACTIONS(3102), + [sym_none] = ACTIONS(3102), + [sym_true] = ACTIONS(3102), + [sym_false] = ACTIONS(3102), + [sym_nil] = ACTIONS(3102), + [anon_sym_QMARK_DOT] = ACTIONS(3100), + [anon_sym_POUND_LBRACK] = ACTIONS(3100), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_DOLLARif] = ACTIONS(3102), + [anon_sym_is] = ACTIONS(3102), + [anon_sym_BANGis] = ACTIONS(3100), + [anon_sym_in] = ACTIONS(3102), + [anon_sym_BANGin] = ACTIONS(3100), + [anon_sym_match] = ACTIONS(3102), + [anon_sym_select] = ACTIONS(3102), + [anon_sym_lock] = ACTIONS(3102), + [anon_sym_rlock] = ACTIONS(3102), + [anon_sym_unsafe] = ACTIONS(3102), + [anon_sym_sql] = ACTIONS(3102), + [sym_int_literal] = ACTIONS(3102), + [sym_float_literal] = ACTIONS(3100), + [sym_rune_literal] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(3102), + [anon_sym_shared] = ACTIONS(3102), + [anon_sym_map_LBRACK] = ACTIONS(3100), + [anon_sym_chan] = ACTIONS(3102), + [anon_sym_thread] = ACTIONS(3102), + [anon_sym_atomic] = ACTIONS(3102), + [sym___double_quote] = ACTIONS(3100), + [sym___single_quote] = ACTIONS(3100), + [sym___c_double_quote] = ACTIONS(3100), + [sym___c_single_quote] = ACTIONS(3100), + [sym___r_double_quote] = ACTIONS(3100), + [sym___r_single_quote] = ACTIONS(3100), }, [1398] = { - [sym_identifier] = ACTIONS(2816), + [sym_identifier] = ACTIONS(3187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2816), - [anon_sym_as] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_COMMA] = ACTIONS(2814), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_fn] = ACTIONS(2816), - [anon_sym_PLUS] = ACTIONS(2816), - [anon_sym_DASH] = ACTIONS(2816), - [anon_sym_STAR] = ACTIONS(2814), - [anon_sym_SLASH] = ACTIONS(2816), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_EQ_EQ] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2814), - [anon_sym_LT_EQ] = ACTIONS(2814), - [anon_sym_GT_EQ] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_RBRACK] = ACTIONS(2814), - [anon_sym_struct] = ACTIONS(2816), - [anon_sym_mut] = ACTIONS(2816), - [anon_sym_PLUS_PLUS] = ACTIONS(2814), - [anon_sym_DASH_DASH] = ACTIONS(2814), - [anon_sym_QMARK] = ACTIONS(2816), - [anon_sym_BANG] = ACTIONS(2816), - [anon_sym_go] = ACTIONS(2816), - [anon_sym_spawn] = ACTIONS(2816), - [anon_sym_json_DOTdecode] = ACTIONS(2814), - [anon_sym_LBRACK2] = ACTIONS(2816), - [anon_sym_TILDE] = ACTIONS(2814), - [anon_sym_CARET] = ACTIONS(2814), - [anon_sym_AMP] = ACTIONS(2816), - [anon_sym_LT_DASH] = ACTIONS(2814), - [anon_sym_LT_LT] = ACTIONS(2814), - [anon_sym_GT_GT] = ACTIONS(2816), - [anon_sym_GT_GT_GT] = ACTIONS(2814), - [anon_sym_AMP_CARET] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_or] = ACTIONS(2816), - [sym_none] = ACTIONS(2816), - [sym_true] = ACTIONS(2816), - [sym_false] = ACTIONS(2816), - [sym_nil] = ACTIONS(2816), - [anon_sym_QMARK_DOT] = ACTIONS(2814), - [anon_sym_POUND_LBRACK] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2816), - [anon_sym_DOLLARif] = ACTIONS(2816), - [anon_sym_is] = ACTIONS(2816), - [anon_sym_BANGis] = ACTIONS(2814), - [anon_sym_in] = ACTIONS(2816), - [anon_sym_BANGin] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2816), - [anon_sym_select] = ACTIONS(2816), - [anon_sym_lock] = ACTIONS(2816), - [anon_sym_rlock] = ACTIONS(2816), - [anon_sym_unsafe] = ACTIONS(2816), - [anon_sym_sql] = ACTIONS(2816), - [sym_int_literal] = ACTIONS(2816), - [sym_float_literal] = ACTIONS(2814), - [sym_rune_literal] = ACTIONS(2814), - [anon_sym_AT] = ACTIONS(2816), - [anon_sym_shared] = ACTIONS(2816), - [anon_sym_map_LBRACK] = ACTIONS(2814), - [anon_sym_chan] = ACTIONS(2816), - [anon_sym_thread] = ACTIONS(2816), - [anon_sym_atomic] = ACTIONS(2816), - [sym___double_quote] = ACTIONS(2814), - [sym___single_quote] = ACTIONS(2814), - [sym___c_double_quote] = ACTIONS(2814), - [sym___c_single_quote] = ACTIONS(2814), - [sym___r_double_quote] = ACTIONS(2814), - [sym___r_single_quote] = ACTIONS(2814), + [anon_sym_DOT] = ACTIONS(3187), + [anon_sym_as] = ACTIONS(3187), + [anon_sym_LBRACE] = ACTIONS(3185), + [anon_sym_COMMA] = ACTIONS(3185), + [anon_sym_LPAREN] = ACTIONS(3185), + [anon_sym_PIPE] = ACTIONS(3187), + [anon_sym_fn] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_SLASH] = ACTIONS(3187), + [anon_sym_PERCENT] = ACTIONS(3185), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_GT] = ACTIONS(3187), + [anon_sym_EQ_EQ] = ACTIONS(3185), + [anon_sym_BANG_EQ] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3185), + [anon_sym_GT_EQ] = ACTIONS(3185), + [anon_sym_LBRACK] = ACTIONS(3185), + [anon_sym_RBRACK] = ACTIONS(3185), + [anon_sym_struct] = ACTIONS(3187), + [anon_sym_mut] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3185), + [anon_sym_DASH_DASH] = ACTIONS(3185), + [anon_sym_QMARK] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_go] = ACTIONS(3187), + [anon_sym_spawn] = ACTIONS(3187), + [anon_sym_json_DOTdecode] = ACTIONS(3185), + [anon_sym_LBRACK2] = ACTIONS(3187), + [anon_sym_TILDE] = ACTIONS(3185), + [anon_sym_CARET] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_LT_DASH] = ACTIONS(3185), + [anon_sym_LT_LT] = ACTIONS(3185), + [anon_sym_GT_GT] = ACTIONS(3187), + [anon_sym_GT_GT_GT] = ACTIONS(3185), + [anon_sym_AMP_CARET] = ACTIONS(3185), + [anon_sym_AMP_AMP] = ACTIONS(3185), + [anon_sym_PIPE_PIPE] = ACTIONS(3185), + [anon_sym_or] = ACTIONS(3187), + [sym_none] = ACTIONS(3187), + [sym_true] = ACTIONS(3187), + [sym_false] = ACTIONS(3187), + [sym_nil] = ACTIONS(3187), + [anon_sym_QMARK_DOT] = ACTIONS(3185), + [anon_sym_POUND_LBRACK] = ACTIONS(3185), + [anon_sym_if] = ACTIONS(3187), + [anon_sym_DOLLARif] = ACTIONS(3187), + [anon_sym_is] = ACTIONS(3187), + [anon_sym_BANGis] = ACTIONS(3185), + [anon_sym_in] = ACTIONS(3187), + [anon_sym_BANGin] = ACTIONS(3185), + [anon_sym_match] = ACTIONS(3187), + [anon_sym_select] = ACTIONS(3187), + [anon_sym_lock] = ACTIONS(3187), + [anon_sym_rlock] = ACTIONS(3187), + [anon_sym_unsafe] = ACTIONS(3187), + [anon_sym_sql] = ACTIONS(3187), + [sym_int_literal] = ACTIONS(3187), + [sym_float_literal] = ACTIONS(3185), + [sym_rune_literal] = ACTIONS(3185), + [anon_sym_AT] = ACTIONS(3187), + [anon_sym_shared] = ACTIONS(3187), + [anon_sym_map_LBRACK] = ACTIONS(3185), + [anon_sym_chan] = ACTIONS(3187), + [anon_sym_thread] = ACTIONS(3187), + [anon_sym_atomic] = ACTIONS(3187), + [sym___double_quote] = ACTIONS(3185), + [sym___single_quote] = ACTIONS(3185), + [sym___c_double_quote] = ACTIONS(3185), + [sym___c_single_quote] = ACTIONS(3185), + [sym___r_double_quote] = ACTIONS(3185), + [sym___r_single_quote] = ACTIONS(3185), }, [1399] = { - [sym_identifier] = ACTIONS(3025), + [sym_identifier] = ACTIONS(3191), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3025), - [anon_sym_as] = ACTIONS(3025), - [anon_sym_LBRACE] = ACTIONS(3023), - [anon_sym_COMMA] = 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_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_AT] = 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), - [sym___double_quote] = ACTIONS(3023), - [sym___single_quote] = ACTIONS(3023), - [sym___c_double_quote] = ACTIONS(3023), - [sym___c_single_quote] = ACTIONS(3023), - [sym___r_double_quote] = ACTIONS(3023), - [sym___r_single_quote] = ACTIONS(3023), + [anon_sym_DOT] = ACTIONS(3191), + [anon_sym_as] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_PIPE] = ACTIONS(3191), + [anon_sym_fn] = ACTIONS(3191), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_SLASH] = ACTIONS(3191), + [anon_sym_PERCENT] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_GT] = ACTIONS(3191), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_EQ] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_RBRACK] = ACTIONS(3189), + [anon_sym_struct] = ACTIONS(3191), + [anon_sym_mut] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [anon_sym_QMARK] = ACTIONS(3191), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_go] = ACTIONS(3191), + [anon_sym_spawn] = ACTIONS(3191), + [anon_sym_json_DOTdecode] = ACTIONS(3189), + [anon_sym_LBRACK2] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3189), + [anon_sym_CARET] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3191), + [anon_sym_LT_DASH] = ACTIONS(3189), + [anon_sym_LT_LT] = ACTIONS(3189), + [anon_sym_GT_GT] = ACTIONS(3191), + [anon_sym_GT_GT_GT] = ACTIONS(3189), + [anon_sym_AMP_CARET] = ACTIONS(3189), + [anon_sym_AMP_AMP] = ACTIONS(3189), + [anon_sym_PIPE_PIPE] = ACTIONS(3189), + [anon_sym_or] = ACTIONS(3191), + [sym_none] = ACTIONS(3191), + [sym_true] = ACTIONS(3191), + [sym_false] = ACTIONS(3191), + [sym_nil] = ACTIONS(3191), + [anon_sym_QMARK_DOT] = ACTIONS(3189), + [anon_sym_POUND_LBRACK] = ACTIONS(3189), + [anon_sym_if] = ACTIONS(3191), + [anon_sym_DOLLARif] = ACTIONS(3191), + [anon_sym_is] = ACTIONS(3191), + [anon_sym_BANGis] = ACTIONS(3189), + [anon_sym_in] = ACTIONS(3191), + [anon_sym_BANGin] = ACTIONS(3189), + [anon_sym_match] = ACTIONS(3191), + [anon_sym_select] = ACTIONS(3191), + [anon_sym_lock] = ACTIONS(3191), + [anon_sym_rlock] = ACTIONS(3191), + [anon_sym_unsafe] = ACTIONS(3191), + [anon_sym_sql] = ACTIONS(3191), + [sym_int_literal] = ACTIONS(3191), + [sym_float_literal] = ACTIONS(3189), + [sym_rune_literal] = ACTIONS(3189), + [anon_sym_AT] = ACTIONS(3191), + [anon_sym_shared] = ACTIONS(3191), + [anon_sym_map_LBRACK] = ACTIONS(3189), + [anon_sym_chan] = ACTIONS(3191), + [anon_sym_thread] = ACTIONS(3191), + [anon_sym_atomic] = ACTIONS(3191), + [sym___double_quote] = ACTIONS(3189), + [sym___single_quote] = ACTIONS(3189), + [sym___c_double_quote] = ACTIONS(3189), + [sym___c_single_quote] = ACTIONS(3189), + [sym___r_double_quote] = ACTIONS(3189), + [sym___r_single_quote] = ACTIONS(3189), }, [1400] = { - [sym_identifier] = ACTIONS(2766), + [sym_identifier] = ACTIONS(3199), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2766), - [anon_sym_as] = ACTIONS(2766), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_COMMA] = ACTIONS(2768), - [anon_sym_LPAREN] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2766), - [anon_sym_fn] = ACTIONS(2766), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_SLASH] = ACTIONS(2766), - [anon_sym_PERCENT] = ACTIONS(2768), - [anon_sym_LT] = ACTIONS(2766), - [anon_sym_GT] = ACTIONS(2766), - [anon_sym_EQ_EQ] = ACTIONS(2768), - [anon_sym_BANG_EQ] = ACTIONS(2768), - [anon_sym_LT_EQ] = ACTIONS(2768), - [anon_sym_GT_EQ] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2768), - [anon_sym_RBRACK] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2766), - [anon_sym_mut] = ACTIONS(2766), - [anon_sym_PLUS_PLUS] = ACTIONS(2768), - [anon_sym_DASH_DASH] = ACTIONS(2768), - [anon_sym_QMARK] = ACTIONS(2766), - [anon_sym_BANG] = ACTIONS(2766), - [anon_sym_go] = ACTIONS(2766), - [anon_sym_spawn] = ACTIONS(2766), - [anon_sym_json_DOTdecode] = ACTIONS(2768), - [anon_sym_LBRACK2] = ACTIONS(2766), - [anon_sym_TILDE] = ACTIONS(2768), - [anon_sym_CARET] = ACTIONS(2768), - [anon_sym_AMP] = ACTIONS(2766), - [anon_sym_LT_DASH] = ACTIONS(2768), - [anon_sym_LT_LT] = ACTIONS(2768), - [anon_sym_GT_GT] = ACTIONS(2766), - [anon_sym_GT_GT_GT] = ACTIONS(2768), - [anon_sym_AMP_CARET] = ACTIONS(2768), - [anon_sym_AMP_AMP] = ACTIONS(2768), - [anon_sym_PIPE_PIPE] = ACTIONS(2768), - [anon_sym_or] = ACTIONS(2766), - [sym_none] = ACTIONS(2766), - [sym_true] = ACTIONS(2766), - [sym_false] = ACTIONS(2766), - [sym_nil] = ACTIONS(2766), - [anon_sym_QMARK_DOT] = ACTIONS(2768), - [anon_sym_POUND_LBRACK] = ACTIONS(2768), - [anon_sym_if] = ACTIONS(2766), - [anon_sym_DOLLARif] = ACTIONS(2766), - [anon_sym_is] = ACTIONS(2766), - [anon_sym_BANGis] = ACTIONS(2768), - [anon_sym_in] = ACTIONS(2766), - [anon_sym_BANGin] = ACTIONS(2768), - [anon_sym_match] = ACTIONS(2766), - [anon_sym_select] = ACTIONS(2766), - [anon_sym_lock] = ACTIONS(2766), - [anon_sym_rlock] = ACTIONS(2766), - [anon_sym_unsafe] = ACTIONS(2766), - [anon_sym_sql] = ACTIONS(2766), - [sym_int_literal] = ACTIONS(2766), - [sym_float_literal] = ACTIONS(2768), - [sym_rune_literal] = ACTIONS(2768), - [anon_sym_AT] = ACTIONS(2766), - [anon_sym_shared] = ACTIONS(2766), - [anon_sym_map_LBRACK] = ACTIONS(2768), - [anon_sym_chan] = ACTIONS(2766), - [anon_sym_thread] = ACTIONS(2766), - [anon_sym_atomic] = ACTIONS(2766), - [sym___double_quote] = ACTIONS(2768), - [sym___single_quote] = ACTIONS(2768), - [sym___c_double_quote] = ACTIONS(2768), - [sym___c_single_quote] = ACTIONS(2768), - [sym___r_double_quote] = ACTIONS(2768), - [sym___r_single_quote] = ACTIONS(2768), + [anon_sym_DOT] = ACTIONS(3199), + [anon_sym_as] = ACTIONS(3199), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_COMMA] = ACTIONS(3197), + [anon_sym_LPAREN] = ACTIONS(3197), + [anon_sym_PIPE] = ACTIONS(3199), + [anon_sym_fn] = ACTIONS(3199), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3199), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3199), + [anon_sym_PERCENT] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3199), + [anon_sym_GT] = ACTIONS(3199), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3197), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_RBRACK] = ACTIONS(3197), + [anon_sym_struct] = ACTIONS(3199), + [anon_sym_mut] = ACTIONS(3199), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_DASH_DASH] = ACTIONS(3197), + [anon_sym_QMARK] = ACTIONS(3199), + [anon_sym_BANG] = ACTIONS(3199), + [anon_sym_go] = ACTIONS(3199), + [anon_sym_spawn] = ACTIONS(3199), + [anon_sym_json_DOTdecode] = ACTIONS(3197), + [anon_sym_LBRACK2] = ACTIONS(3199), + [anon_sym_TILDE] = ACTIONS(3197), + [anon_sym_CARET] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3199), + [anon_sym_LT_DASH] = ACTIONS(3197), + [anon_sym_LT_LT] = ACTIONS(3197), + [anon_sym_GT_GT] = ACTIONS(3199), + [anon_sym_GT_GT_GT] = ACTIONS(3197), + [anon_sym_AMP_CARET] = ACTIONS(3197), + [anon_sym_AMP_AMP] = ACTIONS(3197), + [anon_sym_PIPE_PIPE] = ACTIONS(3197), + [anon_sym_or] = ACTIONS(3199), + [sym_none] = ACTIONS(3199), + [sym_true] = ACTIONS(3199), + [sym_false] = ACTIONS(3199), + [sym_nil] = ACTIONS(3199), + [anon_sym_QMARK_DOT] = ACTIONS(3197), + [anon_sym_POUND_LBRACK] = ACTIONS(3197), + [anon_sym_if] = ACTIONS(3199), + [anon_sym_DOLLARif] = ACTIONS(3199), + [anon_sym_is] = ACTIONS(3199), + [anon_sym_BANGis] = ACTIONS(3197), + [anon_sym_in] = ACTIONS(3199), + [anon_sym_BANGin] = ACTIONS(3197), + [anon_sym_match] = ACTIONS(3199), + [anon_sym_select] = ACTIONS(3199), + [anon_sym_lock] = ACTIONS(3199), + [anon_sym_rlock] = ACTIONS(3199), + [anon_sym_unsafe] = ACTIONS(3199), + [anon_sym_sql] = ACTIONS(3199), + [sym_int_literal] = ACTIONS(3199), + [sym_float_literal] = ACTIONS(3197), + [sym_rune_literal] = ACTIONS(3197), + [anon_sym_AT] = ACTIONS(3199), + [anon_sym_shared] = ACTIONS(3199), + [anon_sym_map_LBRACK] = ACTIONS(3197), + [anon_sym_chan] = ACTIONS(3199), + [anon_sym_thread] = ACTIONS(3199), + [anon_sym_atomic] = ACTIONS(3199), + [sym___double_quote] = ACTIONS(3197), + [sym___single_quote] = ACTIONS(3197), + [sym___c_double_quote] = ACTIONS(3197), + [sym___c_single_quote] = ACTIONS(3197), + [sym___r_double_quote] = ACTIONS(3197), + [sym___r_single_quote] = ACTIONS(3197), }, [1401] = { - [sym_identifier] = ACTIONS(3021), + [sym_identifier] = ACTIONS(3203), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3021), - [anon_sym_as] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_COMMA] = 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_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_AT] = 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), - [sym___double_quote] = ACTIONS(3019), - [sym___single_quote] = ACTIONS(3019), - [sym___c_double_quote] = ACTIONS(3019), - [sym___c_single_quote] = ACTIONS(3019), - [sym___r_double_quote] = ACTIONS(3019), - [sym___r_single_quote] = ACTIONS(3019), + [anon_sym_DOT] = ACTIONS(3203), + [anon_sym_as] = ACTIONS(3203), + [anon_sym_LBRACE] = ACTIONS(3201), + [anon_sym_COMMA] = ACTIONS(3201), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_PIPE] = ACTIONS(3203), + [anon_sym_fn] = ACTIONS(3203), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_STAR] = ACTIONS(3201), + [anon_sym_SLASH] = ACTIONS(3203), + [anon_sym_PERCENT] = ACTIONS(3201), + [anon_sym_LT] = ACTIONS(3203), + [anon_sym_GT] = ACTIONS(3203), + [anon_sym_EQ_EQ] = ACTIONS(3201), + [anon_sym_BANG_EQ] = ACTIONS(3201), + [anon_sym_LT_EQ] = ACTIONS(3201), + [anon_sym_GT_EQ] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3201), + [anon_sym_RBRACK] = ACTIONS(3201), + [anon_sym_struct] = ACTIONS(3203), + [anon_sym_mut] = ACTIONS(3203), + [anon_sym_PLUS_PLUS] = ACTIONS(3201), + [anon_sym_DASH_DASH] = ACTIONS(3201), + [anon_sym_QMARK] = ACTIONS(3203), + [anon_sym_BANG] = ACTIONS(3203), + [anon_sym_go] = ACTIONS(3203), + [anon_sym_spawn] = ACTIONS(3203), + [anon_sym_json_DOTdecode] = ACTIONS(3201), + [anon_sym_LBRACK2] = ACTIONS(3203), + [anon_sym_TILDE] = ACTIONS(3201), + [anon_sym_CARET] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3203), + [anon_sym_LT_DASH] = ACTIONS(3201), + [anon_sym_LT_LT] = ACTIONS(3201), + [anon_sym_GT_GT] = ACTIONS(3203), + [anon_sym_GT_GT_GT] = ACTIONS(3201), + [anon_sym_AMP_CARET] = ACTIONS(3201), + [anon_sym_AMP_AMP] = ACTIONS(3201), + [anon_sym_PIPE_PIPE] = ACTIONS(3201), + [anon_sym_or] = ACTIONS(3203), + [sym_none] = ACTIONS(3203), + [sym_true] = ACTIONS(3203), + [sym_false] = ACTIONS(3203), + [sym_nil] = ACTIONS(3203), + [anon_sym_QMARK_DOT] = ACTIONS(3201), + [anon_sym_POUND_LBRACK] = ACTIONS(3201), + [anon_sym_if] = ACTIONS(3203), + [anon_sym_DOLLARif] = ACTIONS(3203), + [anon_sym_is] = ACTIONS(3203), + [anon_sym_BANGis] = ACTIONS(3201), + [anon_sym_in] = ACTIONS(3203), + [anon_sym_BANGin] = ACTIONS(3201), + [anon_sym_match] = ACTIONS(3203), + [anon_sym_select] = ACTIONS(3203), + [anon_sym_lock] = ACTIONS(3203), + [anon_sym_rlock] = ACTIONS(3203), + [anon_sym_unsafe] = ACTIONS(3203), + [anon_sym_sql] = ACTIONS(3203), + [sym_int_literal] = ACTIONS(3203), + [sym_float_literal] = ACTIONS(3201), + [sym_rune_literal] = ACTIONS(3201), + [anon_sym_AT] = ACTIONS(3203), + [anon_sym_shared] = ACTIONS(3203), + [anon_sym_map_LBRACK] = ACTIONS(3201), + [anon_sym_chan] = ACTIONS(3203), + [anon_sym_thread] = ACTIONS(3203), + [anon_sym_atomic] = ACTIONS(3203), + [sym___double_quote] = ACTIONS(3201), + [sym___single_quote] = ACTIONS(3201), + [sym___c_double_quote] = ACTIONS(3201), + [sym___c_single_quote] = ACTIONS(3201), + [sym___r_double_quote] = ACTIONS(3201), + [sym___r_single_quote] = ACTIONS(3201), }, [1402] = { - [sym_identifier] = ACTIONS(2884), + [sym_identifier] = ACTIONS(3114), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_as] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_COMMA] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_PIPE] = ACTIONS(2884), - [anon_sym_fn] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2882), - [anon_sym_SLASH] = ACTIONS(2884), - [anon_sym_PERCENT] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_GT] = ACTIONS(2884), - [anon_sym_EQ_EQ] = ACTIONS(2882), - [anon_sym_BANG_EQ] = ACTIONS(2882), - [anon_sym_LT_EQ] = ACTIONS(2882), - [anon_sym_GT_EQ] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_RBRACK] = ACTIONS(2882), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_mut] = ACTIONS(2884), - [anon_sym_PLUS_PLUS] = ACTIONS(2882), - [anon_sym_DASH_DASH] = ACTIONS(2882), - [anon_sym_QMARK] = ACTIONS(2884), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_go] = ACTIONS(2884), - [anon_sym_spawn] = ACTIONS(2884), - [anon_sym_json_DOTdecode] = ACTIONS(2882), - [anon_sym_LBRACK2] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2882), - [anon_sym_CARET] = ACTIONS(2882), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_LT_DASH] = ACTIONS(2882), - [anon_sym_LT_LT] = ACTIONS(2882), - [anon_sym_GT_GT] = ACTIONS(2884), - [anon_sym_GT_GT_GT] = ACTIONS(2882), - [anon_sym_AMP_CARET] = ACTIONS(2882), - [anon_sym_AMP_AMP] = ACTIONS(2882), - [anon_sym_PIPE_PIPE] = ACTIONS(2882), - [anon_sym_or] = ACTIONS(2884), - [sym_none] = ACTIONS(2884), - [sym_true] = ACTIONS(2884), - [sym_false] = ACTIONS(2884), - [sym_nil] = ACTIONS(2884), - [anon_sym_QMARK_DOT] = ACTIONS(2882), - [anon_sym_POUND_LBRACK] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_DOLLARif] = ACTIONS(2884), - [anon_sym_is] = ACTIONS(2884), - [anon_sym_BANGis] = ACTIONS(2882), - [anon_sym_in] = ACTIONS(2884), - [anon_sym_BANGin] = ACTIONS(2882), - [anon_sym_match] = ACTIONS(2884), - [anon_sym_select] = ACTIONS(2884), - [anon_sym_lock] = ACTIONS(2884), - [anon_sym_rlock] = ACTIONS(2884), - [anon_sym_unsafe] = ACTIONS(2884), - [anon_sym_sql] = ACTIONS(2884), - [sym_int_literal] = ACTIONS(2884), - [sym_float_literal] = ACTIONS(2882), - [sym_rune_literal] = ACTIONS(2882), - [anon_sym_AT] = ACTIONS(2884), - [anon_sym_shared] = ACTIONS(2884), - [anon_sym_map_LBRACK] = ACTIONS(2882), - [anon_sym_chan] = ACTIONS(2884), - [anon_sym_thread] = ACTIONS(2884), - [anon_sym_atomic] = ACTIONS(2884), - [sym___double_quote] = ACTIONS(2882), - [sym___single_quote] = ACTIONS(2882), - [sym___c_double_quote] = ACTIONS(2882), - [sym___c_single_quote] = ACTIONS(2882), - [sym___r_double_quote] = ACTIONS(2882), - [sym___r_single_quote] = ACTIONS(2882), + [anon_sym_DOT] = ACTIONS(3114), + [anon_sym_as] = ACTIONS(3114), + [anon_sym_LBRACE] = ACTIONS(3112), + [anon_sym_COMMA] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3112), + [anon_sym_PIPE] = ACTIONS(3114), + [anon_sym_fn] = ACTIONS(3114), + [anon_sym_PLUS] = ACTIONS(3114), + [anon_sym_DASH] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_SLASH] = ACTIONS(3114), + [anon_sym_PERCENT] = ACTIONS(3112), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_GT] = ACTIONS(3114), + [anon_sym_EQ_EQ] = ACTIONS(3112), + [anon_sym_BANG_EQ] = ACTIONS(3112), + [anon_sym_LT_EQ] = ACTIONS(3112), + [anon_sym_GT_EQ] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3112), + [anon_sym_RBRACK] = ACTIONS(3112), + [anon_sym_struct] = ACTIONS(3114), + [anon_sym_mut] = ACTIONS(3114), + [anon_sym_PLUS_PLUS] = ACTIONS(3112), + [anon_sym_DASH_DASH] = ACTIONS(3112), + [anon_sym_QMARK] = ACTIONS(3114), + [anon_sym_BANG] = ACTIONS(3114), + [anon_sym_go] = ACTIONS(3114), + [anon_sym_spawn] = ACTIONS(3114), + [anon_sym_json_DOTdecode] = ACTIONS(3112), + [anon_sym_LBRACK2] = ACTIONS(3114), + [anon_sym_TILDE] = ACTIONS(3112), + [anon_sym_CARET] = ACTIONS(3112), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_LT_DASH] = ACTIONS(3112), + [anon_sym_LT_LT] = ACTIONS(3112), + [anon_sym_GT_GT] = ACTIONS(3114), + [anon_sym_GT_GT_GT] = ACTIONS(3112), + [anon_sym_AMP_CARET] = ACTIONS(3112), + [anon_sym_AMP_AMP] = ACTIONS(3112), + [anon_sym_PIPE_PIPE] = ACTIONS(3112), + [anon_sym_or] = ACTIONS(3114), + [sym_none] = ACTIONS(3114), + [sym_true] = ACTIONS(3114), + [sym_false] = ACTIONS(3114), + [sym_nil] = ACTIONS(3114), + [anon_sym_QMARK_DOT] = ACTIONS(3112), + [anon_sym_POUND_LBRACK] = ACTIONS(3112), + [anon_sym_if] = ACTIONS(3114), + [anon_sym_DOLLARif] = ACTIONS(3114), + [anon_sym_is] = ACTIONS(3114), + [anon_sym_BANGis] = ACTIONS(3112), + [anon_sym_in] = ACTIONS(3114), + [anon_sym_BANGin] = ACTIONS(3112), + [anon_sym_match] = ACTIONS(3114), + [anon_sym_select] = ACTIONS(3114), + [anon_sym_lock] = ACTIONS(3114), + [anon_sym_rlock] = ACTIONS(3114), + [anon_sym_unsafe] = ACTIONS(3114), + [anon_sym_sql] = ACTIONS(3114), + [sym_int_literal] = ACTIONS(3114), + [sym_float_literal] = ACTIONS(3112), + [sym_rune_literal] = ACTIONS(3112), + [anon_sym_AT] = ACTIONS(3114), + [anon_sym_shared] = ACTIONS(3114), + [anon_sym_map_LBRACK] = ACTIONS(3112), + [anon_sym_chan] = ACTIONS(3114), + [anon_sym_thread] = ACTIONS(3114), + [anon_sym_atomic] = ACTIONS(3114), + [sym___double_quote] = ACTIONS(3112), + [sym___single_quote] = ACTIONS(3112), + [sym___c_double_quote] = ACTIONS(3112), + [sym___c_single_quote] = ACTIONS(3112), + [sym___r_double_quote] = ACTIONS(3112), + [sym___r_single_quote] = ACTIONS(3112), }, [1403] = { - [sym_identifier] = ACTIONS(3001), + [sym_identifier] = ACTIONS(3179), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3001), - [anon_sym_as] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_COMMA] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(2999), - [anon_sym_PIPE] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(2999), - [anon_sym_SLASH] = ACTIONS(3001), - [anon_sym_PERCENT] = ACTIONS(2999), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_GT] = ACTIONS(3001), - [anon_sym_EQ_EQ] = ACTIONS(2999), - [anon_sym_BANG_EQ] = ACTIONS(2999), - [anon_sym_LT_EQ] = ACTIONS(2999), - [anon_sym_GT_EQ] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(2999), - [anon_sym_RBRACK] = ACTIONS(2999), - [anon_sym_struct] = ACTIONS(3001), - [anon_sym_mut] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(2999), - [anon_sym_DASH_DASH] = ACTIONS(2999), - [anon_sym_QMARK] = ACTIONS(3001), - [anon_sym_BANG] = ACTIONS(3001), - [anon_sym_go] = ACTIONS(3001), - [anon_sym_spawn] = ACTIONS(3001), - [anon_sym_json_DOTdecode] = ACTIONS(2999), - [anon_sym_LBRACK2] = ACTIONS(3001), - [anon_sym_TILDE] = ACTIONS(2999), - [anon_sym_CARET] = ACTIONS(2999), - [anon_sym_AMP] = ACTIONS(3001), - [anon_sym_LT_DASH] = ACTIONS(2999), - [anon_sym_LT_LT] = ACTIONS(2999), - [anon_sym_GT_GT] = ACTIONS(3001), - [anon_sym_GT_GT_GT] = ACTIONS(2999), - [anon_sym_AMP_CARET] = ACTIONS(2999), - [anon_sym_AMP_AMP] = ACTIONS(2999), - [anon_sym_PIPE_PIPE] = ACTIONS(2999), - [anon_sym_or] = ACTIONS(3001), - [sym_none] = ACTIONS(3001), - [sym_true] = ACTIONS(3001), - [sym_false] = ACTIONS(3001), - [sym_nil] = ACTIONS(3001), - [anon_sym_QMARK_DOT] = ACTIONS(2999), - [anon_sym_POUND_LBRACK] = ACTIONS(2999), - [anon_sym_if] = ACTIONS(3001), - [anon_sym_DOLLARif] = ACTIONS(3001), - [anon_sym_is] = ACTIONS(3001), - [anon_sym_BANGis] = ACTIONS(2999), - [anon_sym_in] = ACTIONS(3001), - [anon_sym_BANGin] = ACTIONS(2999), - [anon_sym_match] = ACTIONS(3001), - [anon_sym_select] = ACTIONS(3001), - [anon_sym_lock] = ACTIONS(3001), - [anon_sym_rlock] = ACTIONS(3001), - [anon_sym_unsafe] = ACTIONS(3001), - [anon_sym_sql] = ACTIONS(3001), - [sym_int_literal] = ACTIONS(3001), - [sym_float_literal] = ACTIONS(2999), - [sym_rune_literal] = ACTIONS(2999), - [anon_sym_AT] = ACTIONS(3001), - [anon_sym_shared] = ACTIONS(3001), - [anon_sym_map_LBRACK] = ACTIONS(2999), - [anon_sym_chan] = ACTIONS(3001), - [anon_sym_thread] = ACTIONS(3001), - [anon_sym_atomic] = ACTIONS(3001), - [sym___double_quote] = ACTIONS(2999), - [sym___single_quote] = ACTIONS(2999), - [sym___c_double_quote] = ACTIONS(2999), - [sym___c_single_quote] = ACTIONS(2999), - [sym___r_double_quote] = ACTIONS(2999), - [sym___r_single_quote] = ACTIONS(2999), + [anon_sym_DOT] = ACTIONS(3179), + [anon_sym_as] = ACTIONS(3179), + [anon_sym_LBRACE] = ACTIONS(3177), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3177), + [anon_sym_PIPE] = ACTIONS(3179), + [anon_sym_fn] = ACTIONS(3179), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3179), + [anon_sym_STAR] = ACTIONS(3177), + [anon_sym_SLASH] = ACTIONS(3179), + [anon_sym_PERCENT] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3179), + [anon_sym_EQ_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_LBRACK] = ACTIONS(3177), + [anon_sym_RBRACK] = ACTIONS(3177), + [anon_sym_struct] = ACTIONS(3179), + [anon_sym_mut] = ACTIONS(3179), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_DASH_DASH] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3179), + [anon_sym_BANG] = ACTIONS(3179), + [anon_sym_go] = ACTIONS(3179), + [anon_sym_spawn] = ACTIONS(3179), + [anon_sym_json_DOTdecode] = ACTIONS(3177), + [anon_sym_LBRACK2] = ACTIONS(3179), + [anon_sym_TILDE] = ACTIONS(3177), + [anon_sym_CARET] = ACTIONS(3177), + [anon_sym_AMP] = ACTIONS(3179), + [anon_sym_LT_DASH] = ACTIONS(3177), + [anon_sym_LT_LT] = ACTIONS(3177), + [anon_sym_GT_GT] = ACTIONS(3179), + [anon_sym_GT_GT_GT] = ACTIONS(3177), + [anon_sym_AMP_CARET] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_or] = ACTIONS(3179), + [sym_none] = ACTIONS(3179), + [sym_true] = ACTIONS(3179), + [sym_false] = ACTIONS(3179), + [sym_nil] = ACTIONS(3179), + [anon_sym_QMARK_DOT] = ACTIONS(3177), + [anon_sym_POUND_LBRACK] = ACTIONS(3177), + [anon_sym_if] = ACTIONS(3179), + [anon_sym_DOLLARif] = ACTIONS(3179), + [anon_sym_is] = ACTIONS(3179), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_in] = ACTIONS(3179), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_match] = ACTIONS(3179), + [anon_sym_select] = ACTIONS(3179), + [anon_sym_lock] = ACTIONS(3179), + [anon_sym_rlock] = ACTIONS(3179), + [anon_sym_unsafe] = ACTIONS(3179), + [anon_sym_sql] = ACTIONS(3179), + [sym_int_literal] = ACTIONS(3179), + [sym_float_literal] = ACTIONS(3177), + [sym_rune_literal] = ACTIONS(3177), + [anon_sym_AT] = ACTIONS(3179), + [anon_sym_shared] = ACTIONS(3179), + [anon_sym_map_LBRACK] = ACTIONS(3177), + [anon_sym_chan] = ACTIONS(3179), + [anon_sym_thread] = ACTIONS(3179), + [anon_sym_atomic] = ACTIONS(3179), + [sym___double_quote] = ACTIONS(3177), + [sym___single_quote] = ACTIONS(3177), + [sym___c_double_quote] = ACTIONS(3177), + [sym___c_single_quote] = ACTIONS(3177), + [sym___r_double_quote] = ACTIONS(3177), + [sym___r_single_quote] = ACTIONS(3177), }, [1404] = { - [sym_identifier] = ACTIONS(3085), + [sym_identifier] = ACTIONS(2866), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3085), - [anon_sym_as] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3083), - [anon_sym_COMMA] = ACTIONS(3083), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_fn] = ACTIONS(3085), - [anon_sym_PLUS] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(3083), - [anon_sym_SLASH] = ACTIONS(3085), - [anon_sym_PERCENT] = ACTIONS(3083), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_GT] = ACTIONS(3085), - [anon_sym_EQ_EQ] = ACTIONS(3083), - [anon_sym_BANG_EQ] = ACTIONS(3083), - [anon_sym_LT_EQ] = ACTIONS(3083), - [anon_sym_GT_EQ] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_RBRACK] = ACTIONS(3083), - [anon_sym_struct] = ACTIONS(3085), - [anon_sym_mut] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3083), - [anon_sym_DASH_DASH] = ACTIONS(3083), - [anon_sym_QMARK] = ACTIONS(3085), - [anon_sym_BANG] = ACTIONS(3085), - [anon_sym_go] = ACTIONS(3085), - [anon_sym_spawn] = ACTIONS(3085), - [anon_sym_json_DOTdecode] = ACTIONS(3083), - [anon_sym_LBRACK2] = ACTIONS(3085), - [anon_sym_TILDE] = ACTIONS(3083), - [anon_sym_CARET] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_LT_DASH] = ACTIONS(3083), - [anon_sym_LT_LT] = ACTIONS(3083), - [anon_sym_GT_GT] = ACTIONS(3085), - [anon_sym_GT_GT_GT] = ACTIONS(3083), - [anon_sym_AMP_CARET] = ACTIONS(3083), - [anon_sym_AMP_AMP] = ACTIONS(3083), - [anon_sym_PIPE_PIPE] = ACTIONS(3083), - [anon_sym_or] = ACTIONS(3085), - [sym_none] = ACTIONS(3085), - [sym_true] = ACTIONS(3085), - [sym_false] = ACTIONS(3085), - [sym_nil] = ACTIONS(3085), - [anon_sym_QMARK_DOT] = ACTIONS(3083), - [anon_sym_POUND_LBRACK] = ACTIONS(3083), - [anon_sym_if] = ACTIONS(3085), - [anon_sym_DOLLARif] = ACTIONS(3085), - [anon_sym_is] = ACTIONS(3085), - [anon_sym_BANGis] = ACTIONS(3083), - [anon_sym_in] = ACTIONS(3085), - [anon_sym_BANGin] = ACTIONS(3083), - [anon_sym_match] = ACTIONS(3085), - [anon_sym_select] = ACTIONS(3085), - [anon_sym_lock] = ACTIONS(3085), - [anon_sym_rlock] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(3085), - [anon_sym_sql] = ACTIONS(3085), - [sym_int_literal] = ACTIONS(3085), - [sym_float_literal] = ACTIONS(3083), - [sym_rune_literal] = ACTIONS(3083), - [anon_sym_AT] = ACTIONS(3085), - [anon_sym_shared] = ACTIONS(3085), - [anon_sym_map_LBRACK] = ACTIONS(3083), - [anon_sym_chan] = ACTIONS(3085), - [anon_sym_thread] = ACTIONS(3085), - [anon_sym_atomic] = ACTIONS(3085), - [sym___double_quote] = ACTIONS(3083), - [sym___single_quote] = ACTIONS(3083), - [sym___c_double_quote] = ACTIONS(3083), - [sym___c_single_quote] = ACTIONS(3083), - [sym___r_double_quote] = ACTIONS(3083), - [sym___r_single_quote] = ACTIONS(3083), + [anon_sym_DOT] = ACTIONS(2866), + [anon_sym_as] = ACTIONS(2866), + [anon_sym_LBRACE] = ACTIONS(2864), + [anon_sym_COMMA] = ACTIONS(2864), + [anon_sym_LPAREN] = ACTIONS(2864), + [anon_sym_PIPE] = ACTIONS(2866), + [anon_sym_fn] = ACTIONS(2866), + [anon_sym_PLUS] = ACTIONS(2866), + [anon_sym_DASH] = ACTIONS(2866), + [anon_sym_STAR] = ACTIONS(2864), + [anon_sym_SLASH] = ACTIONS(2866), + [anon_sym_PERCENT] = ACTIONS(2864), + [anon_sym_LT] = ACTIONS(2866), + [anon_sym_GT] = ACTIONS(2866), + [anon_sym_EQ_EQ] = ACTIONS(2864), + [anon_sym_BANG_EQ] = ACTIONS(2864), + [anon_sym_LT_EQ] = ACTIONS(2864), + [anon_sym_GT_EQ] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2864), + [anon_sym_RBRACK] = ACTIONS(2864), + [anon_sym_struct] = ACTIONS(2866), + [anon_sym_mut] = ACTIONS(2866), + [anon_sym_PLUS_PLUS] = ACTIONS(2864), + [anon_sym_DASH_DASH] = ACTIONS(2864), + [anon_sym_QMARK] = ACTIONS(2866), + [anon_sym_BANG] = ACTIONS(2866), + [anon_sym_go] = ACTIONS(2866), + [anon_sym_spawn] = ACTIONS(2866), + [anon_sym_json_DOTdecode] = ACTIONS(2864), + [anon_sym_LBRACK2] = ACTIONS(2866), + [anon_sym_TILDE] = ACTIONS(2864), + [anon_sym_CARET] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_LT_DASH] = ACTIONS(2864), + [anon_sym_LT_LT] = ACTIONS(2864), + [anon_sym_GT_GT] = ACTIONS(2866), + [anon_sym_GT_GT_GT] = ACTIONS(2864), + [anon_sym_AMP_CARET] = ACTIONS(2864), + [anon_sym_AMP_AMP] = ACTIONS(2864), + [anon_sym_PIPE_PIPE] = ACTIONS(2864), + [anon_sym_or] = ACTIONS(2866), + [sym_none] = ACTIONS(2866), + [sym_true] = ACTIONS(2866), + [sym_false] = ACTIONS(2866), + [sym_nil] = ACTIONS(2866), + [anon_sym_QMARK_DOT] = ACTIONS(2864), + [anon_sym_POUND_LBRACK] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2866), + [anon_sym_DOLLARif] = ACTIONS(2866), + [anon_sym_is] = ACTIONS(2866), + [anon_sym_BANGis] = ACTIONS(2864), + [anon_sym_in] = ACTIONS(2866), + [anon_sym_BANGin] = ACTIONS(2864), + [anon_sym_match] = ACTIONS(2866), + [anon_sym_select] = ACTIONS(2866), + [anon_sym_lock] = ACTIONS(2866), + [anon_sym_rlock] = ACTIONS(2866), + [anon_sym_unsafe] = ACTIONS(2866), + [anon_sym_sql] = ACTIONS(2866), + [sym_int_literal] = ACTIONS(2866), + [sym_float_literal] = ACTIONS(2864), + [sym_rune_literal] = ACTIONS(2864), + [anon_sym_AT] = ACTIONS(2866), + [anon_sym_shared] = ACTIONS(2866), + [anon_sym_map_LBRACK] = ACTIONS(2864), + [anon_sym_chan] = ACTIONS(2866), + [anon_sym_thread] = ACTIONS(2866), + [anon_sym_atomic] = ACTIONS(2866), + [sym___double_quote] = ACTIONS(2864), + [sym___single_quote] = ACTIONS(2864), + [sym___c_double_quote] = ACTIONS(2864), + [sym___c_single_quote] = ACTIONS(2864), + [sym___r_double_quote] = ACTIONS(2864), + [sym___r_single_quote] = ACTIONS(2864), }, [1405] = { - [sym_identifier] = ACTIONS(2804), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2804), - [anon_sym_as] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_COMMA] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_PIPE] = ACTIONS(2804), - [anon_sym_fn] = ACTIONS(2804), - [anon_sym_PLUS] = ACTIONS(2804), - [anon_sym_DASH] = ACTIONS(2804), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_SLASH] = ACTIONS(2804), - [anon_sym_PERCENT] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_GT] = ACTIONS(2804), - [anon_sym_EQ_EQ] = ACTIONS(2802), - [anon_sym_BANG_EQ] = ACTIONS(2802), - [anon_sym_LT_EQ] = ACTIONS(2802), - [anon_sym_GT_EQ] = ACTIONS(2802), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_RBRACK] = ACTIONS(2802), - [anon_sym_struct] = ACTIONS(2804), - [anon_sym_mut] = ACTIONS(2804), - [anon_sym_PLUS_PLUS] = ACTIONS(2802), - [anon_sym_DASH_DASH] = ACTIONS(2802), - [anon_sym_QMARK] = ACTIONS(2804), - [anon_sym_BANG] = ACTIONS(2804), - [anon_sym_go] = ACTIONS(2804), - [anon_sym_spawn] = ACTIONS(2804), - [anon_sym_json_DOTdecode] = ACTIONS(2802), - [anon_sym_LBRACK2] = ACTIONS(2804), - [anon_sym_TILDE] = ACTIONS(2802), - [anon_sym_CARET] = ACTIONS(2802), - [anon_sym_AMP] = ACTIONS(2804), - [anon_sym_LT_DASH] = ACTIONS(2802), - [anon_sym_LT_LT] = ACTIONS(2802), - [anon_sym_GT_GT] = ACTIONS(2804), - [anon_sym_GT_GT_GT] = ACTIONS(2802), - [anon_sym_AMP_CARET] = ACTIONS(2802), - [anon_sym_AMP_AMP] = ACTIONS(2802), - [anon_sym_PIPE_PIPE] = ACTIONS(2802), - [anon_sym_or] = ACTIONS(2804), - [sym_none] = ACTIONS(2804), - [sym_true] = ACTIONS(2804), - [sym_false] = ACTIONS(2804), - [sym_nil] = ACTIONS(2804), - [anon_sym_QMARK_DOT] = ACTIONS(2802), - [anon_sym_POUND_LBRACK] = ACTIONS(2802), - [anon_sym_if] = ACTIONS(2804), - [anon_sym_DOLLARif] = ACTIONS(2804), - [anon_sym_is] = ACTIONS(2804), - [anon_sym_BANGis] = ACTIONS(2802), - [anon_sym_in] = ACTIONS(2804), - [anon_sym_BANGin] = ACTIONS(2802), - [anon_sym_match] = ACTIONS(2804), - [anon_sym_select] = ACTIONS(2804), - [anon_sym_lock] = ACTIONS(2804), - [anon_sym_rlock] = ACTIONS(2804), - [anon_sym_unsafe] = ACTIONS(2804), - [anon_sym_sql] = ACTIONS(2804), - [sym_int_literal] = ACTIONS(2804), - [sym_float_literal] = ACTIONS(2802), - [sym_rune_literal] = ACTIONS(2802), - [anon_sym_AT] = ACTIONS(2804), - [anon_sym_shared] = ACTIONS(2804), - [anon_sym_map_LBRACK] = ACTIONS(2802), - [anon_sym_chan] = ACTIONS(2804), - [anon_sym_thread] = ACTIONS(2804), - [anon_sym_atomic] = ACTIONS(2804), - [sym___double_quote] = ACTIONS(2802), - [sym___single_quote] = ACTIONS(2802), - [sym___c_double_quote] = ACTIONS(2802), - [sym___c_single_quote] = ACTIONS(2802), - [sym___r_double_quote] = ACTIONS(2802), - [sym___r_single_quote] = ACTIONS(2802), - }, - [1406] = { - [sym_identifier] = ACTIONS(2800), + [sym_identifier] = ACTIONS(3167), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2800), - [anon_sym_as] = ACTIONS(2800), - [anon_sym_LBRACE] = ACTIONS(2798), - [anon_sym_COMMA] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2798), - [anon_sym_PIPE] = ACTIONS(2800), - [anon_sym_fn] = ACTIONS(2800), - [anon_sym_PLUS] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(2800), - [anon_sym_STAR] = ACTIONS(2798), - [anon_sym_SLASH] = ACTIONS(2800), - [anon_sym_PERCENT] = ACTIONS(2798), - [anon_sym_LT] = ACTIONS(2800), - [anon_sym_GT] = ACTIONS(2800), - [anon_sym_EQ_EQ] = ACTIONS(2798), - [anon_sym_BANG_EQ] = ACTIONS(2798), - [anon_sym_LT_EQ] = ACTIONS(2798), - [anon_sym_GT_EQ] = ACTIONS(2798), - [anon_sym_LBRACK] = ACTIONS(2798), - [anon_sym_RBRACK] = ACTIONS(2798), - [anon_sym_struct] = ACTIONS(2800), - [anon_sym_mut] = ACTIONS(2800), - [anon_sym_PLUS_PLUS] = ACTIONS(2798), - [anon_sym_DASH_DASH] = ACTIONS(2798), - [anon_sym_QMARK] = ACTIONS(2800), - [anon_sym_BANG] = ACTIONS(2800), - [anon_sym_go] = ACTIONS(2800), - [anon_sym_spawn] = ACTIONS(2800), - [anon_sym_json_DOTdecode] = ACTIONS(2798), - [anon_sym_LBRACK2] = ACTIONS(2800), - [anon_sym_TILDE] = ACTIONS(2798), - [anon_sym_CARET] = ACTIONS(2798), - [anon_sym_AMP] = ACTIONS(2800), - [anon_sym_LT_DASH] = ACTIONS(2798), - [anon_sym_LT_LT] = ACTIONS(2798), - [anon_sym_GT_GT] = ACTIONS(2800), - [anon_sym_GT_GT_GT] = ACTIONS(2798), - [anon_sym_AMP_CARET] = ACTIONS(2798), - [anon_sym_AMP_AMP] = ACTIONS(2798), - [anon_sym_PIPE_PIPE] = ACTIONS(2798), - [anon_sym_or] = ACTIONS(2800), - [sym_none] = ACTIONS(2800), - [sym_true] = ACTIONS(2800), - [sym_false] = ACTIONS(2800), - [sym_nil] = ACTIONS(2800), - [anon_sym_QMARK_DOT] = ACTIONS(2798), - [anon_sym_POUND_LBRACK] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2800), - [anon_sym_DOLLARif] = ACTIONS(2800), - [anon_sym_is] = ACTIONS(2800), - [anon_sym_BANGis] = ACTIONS(2798), - [anon_sym_in] = ACTIONS(2800), - [anon_sym_BANGin] = ACTIONS(2798), - [anon_sym_match] = ACTIONS(2800), - [anon_sym_select] = ACTIONS(2800), - [anon_sym_lock] = ACTIONS(2800), - [anon_sym_rlock] = ACTIONS(2800), - [anon_sym_unsafe] = ACTIONS(2800), - [anon_sym_sql] = ACTIONS(2800), - [sym_int_literal] = ACTIONS(2800), - [sym_float_literal] = ACTIONS(2798), - [sym_rune_literal] = ACTIONS(2798), - [anon_sym_AT] = ACTIONS(2800), - [anon_sym_shared] = ACTIONS(2800), - [anon_sym_map_LBRACK] = ACTIONS(2798), - [anon_sym_chan] = ACTIONS(2800), - [anon_sym_thread] = ACTIONS(2800), - [anon_sym_atomic] = ACTIONS(2800), - [sym___double_quote] = ACTIONS(2798), - [sym___single_quote] = ACTIONS(2798), - [sym___c_double_quote] = ACTIONS(2798), - [sym___c_single_quote] = ACTIONS(2798), - [sym___r_double_quote] = ACTIONS(2798), - [sym___r_single_quote] = ACTIONS(2798), + [anon_sym_DOT] = ACTIONS(3167), + [anon_sym_as] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3165), + [anon_sym_COMMA] = ACTIONS(3165), + [anon_sym_LPAREN] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3167), + [anon_sym_fn] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(3165), + [anon_sym_SLASH] = ACTIONS(3167), + [anon_sym_PERCENT] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_GT] = ACTIONS(3167), + [anon_sym_EQ_EQ] = ACTIONS(3165), + [anon_sym_BANG_EQ] = ACTIONS(3165), + [anon_sym_LT_EQ] = ACTIONS(3165), + [anon_sym_GT_EQ] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_RBRACK] = ACTIONS(3165), + [anon_sym_struct] = ACTIONS(3167), + [anon_sym_mut] = ACTIONS(3167), + [anon_sym_PLUS_PLUS] = ACTIONS(3165), + [anon_sym_DASH_DASH] = ACTIONS(3165), + [anon_sym_QMARK] = ACTIONS(3167), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_go] = ACTIONS(3167), + [anon_sym_spawn] = ACTIONS(3167), + [anon_sym_json_DOTdecode] = ACTIONS(3165), + [anon_sym_LBRACK2] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3165), + [anon_sym_CARET] = ACTIONS(3165), + [anon_sym_AMP] = ACTIONS(3167), + [anon_sym_LT_DASH] = ACTIONS(3165), + [anon_sym_LT_LT] = ACTIONS(3165), + [anon_sym_GT_GT] = ACTIONS(3167), + [anon_sym_GT_GT_GT] = ACTIONS(3165), + [anon_sym_AMP_CARET] = ACTIONS(3165), + [anon_sym_AMP_AMP] = ACTIONS(3165), + [anon_sym_PIPE_PIPE] = ACTIONS(3165), + [anon_sym_or] = ACTIONS(3167), + [sym_none] = ACTIONS(3167), + [sym_true] = ACTIONS(3167), + [sym_false] = ACTIONS(3167), + [sym_nil] = ACTIONS(3167), + [anon_sym_QMARK_DOT] = ACTIONS(3165), + [anon_sym_POUND_LBRACK] = ACTIONS(3165), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_DOLLARif] = ACTIONS(3167), + [anon_sym_is] = ACTIONS(3167), + [anon_sym_BANGis] = ACTIONS(3165), + [anon_sym_in] = ACTIONS(3167), + [anon_sym_BANGin] = ACTIONS(3165), + [anon_sym_match] = ACTIONS(3167), + [anon_sym_select] = ACTIONS(3167), + [anon_sym_lock] = ACTIONS(3167), + [anon_sym_rlock] = ACTIONS(3167), + [anon_sym_unsafe] = ACTIONS(3167), + [anon_sym_sql] = ACTIONS(3167), + [sym_int_literal] = ACTIONS(3167), + [sym_float_literal] = ACTIONS(3165), + [sym_rune_literal] = ACTIONS(3165), + [anon_sym_AT] = ACTIONS(3167), + [anon_sym_shared] = ACTIONS(3167), + [anon_sym_map_LBRACK] = ACTIONS(3165), + [anon_sym_chan] = ACTIONS(3167), + [anon_sym_thread] = ACTIONS(3167), + [anon_sym_atomic] = ACTIONS(3167), + [sym___double_quote] = ACTIONS(3165), + [sym___single_quote] = ACTIONS(3165), + [sym___c_double_quote] = ACTIONS(3165), + [sym___c_single_quote] = ACTIONS(3165), + [sym___r_double_quote] = ACTIONS(3165), + [sym___r_single_quote] = ACTIONS(3165), + }, + [1406] = { + [sym_identifier] = ACTIONS(2764), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2764), + [anon_sym_as] = ACTIONS(2764), + [anon_sym_LBRACE] = ACTIONS(2762), + [anon_sym_COMMA] = ACTIONS(2762), + [anon_sym_LPAREN] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2764), + [anon_sym_fn] = ACTIONS(2764), + [anon_sym_PLUS] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2764), + [anon_sym_STAR] = ACTIONS(2762), + [anon_sym_SLASH] = ACTIONS(2764), + [anon_sym_PERCENT] = ACTIONS(2762), + [anon_sym_LT] = ACTIONS(2764), + [anon_sym_GT] = ACTIONS(2764), + [anon_sym_EQ_EQ] = ACTIONS(2762), + [anon_sym_BANG_EQ] = ACTIONS(2762), + [anon_sym_LT_EQ] = ACTIONS(2762), + [anon_sym_GT_EQ] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_RBRACK] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2764), + [anon_sym_mut] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2762), + [anon_sym_QMARK] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_go] = ACTIONS(2764), + [anon_sym_spawn] = ACTIONS(2764), + [anon_sym_json_DOTdecode] = ACTIONS(2762), + [anon_sym_LBRACK2] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2762), + [anon_sym_CARET] = ACTIONS(2762), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_LT_DASH] = ACTIONS(2762), + [anon_sym_LT_LT] = ACTIONS(2762), + [anon_sym_GT_GT] = ACTIONS(2764), + [anon_sym_GT_GT_GT] = ACTIONS(2762), + [anon_sym_AMP_CARET] = ACTIONS(2762), + [anon_sym_AMP_AMP] = ACTIONS(2762), + [anon_sym_PIPE_PIPE] = ACTIONS(2762), + [anon_sym_or] = ACTIONS(2764), + [sym_none] = ACTIONS(2764), + [sym_true] = ACTIONS(2764), + [sym_false] = ACTIONS(2764), + [sym_nil] = ACTIONS(2764), + [anon_sym_QMARK_DOT] = ACTIONS(2762), + [anon_sym_POUND_LBRACK] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2764), + [anon_sym_DOLLARif] = ACTIONS(2764), + [anon_sym_is] = ACTIONS(2764), + [anon_sym_BANGis] = ACTIONS(2762), + [anon_sym_in] = ACTIONS(2764), + [anon_sym_BANGin] = ACTIONS(2762), + [anon_sym_match] = ACTIONS(2764), + [anon_sym_select] = ACTIONS(2764), + [anon_sym_lock] = ACTIONS(2764), + [anon_sym_rlock] = ACTIONS(2764), + [anon_sym_unsafe] = ACTIONS(2764), + [anon_sym_sql] = ACTIONS(2764), + [sym_int_literal] = ACTIONS(2764), + [sym_float_literal] = ACTIONS(2762), + [sym_rune_literal] = ACTIONS(2762), + [anon_sym_AT] = ACTIONS(2764), + [anon_sym_shared] = ACTIONS(2764), + [anon_sym_map_LBRACK] = ACTIONS(2762), + [anon_sym_chan] = ACTIONS(2764), + [anon_sym_thread] = ACTIONS(2764), + [anon_sym_atomic] = ACTIONS(2764), + [sym___double_quote] = ACTIONS(2762), + [sym___single_quote] = ACTIONS(2762), + [sym___c_double_quote] = ACTIONS(2762), + [sym___c_single_quote] = ACTIONS(2762), + [sym___r_double_quote] = ACTIONS(2762), + [sym___r_single_quote] = ACTIONS(2762), }, [1407] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(2318), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(2318), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(3702), + [sym_identifier] = ACTIONS(3159), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(613), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(613), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_RBRACE] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_RPAREN] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_RBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_LBRACK2] = ACTIONS(3712), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(3714), - [anon_sym_LT_LT] = ACTIONS(613), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(613), - [anon_sym_AMP_CARET] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_or] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(613), - [anon_sym_POUND_LBRACK] = ACTIONS(613), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(613), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(613), - [anon_sym_COLON_EQ] = ACTIONS(613), - [anon_sym_shared] = ACTIONS(3716), - [anon_sym_map_LBRACK] = ACTIONS(3718), - [anon_sym_chan] = ACTIONS(3720), - [anon_sym_thread] = ACTIONS(3722), - [anon_sym_atomic] = ACTIONS(3724), - [anon_sym_DOT_DOT] = ACTIONS(613), + [anon_sym_DOT] = ACTIONS(3159), + [anon_sym_as] = ACTIONS(3159), + [anon_sym_LBRACE] = ACTIONS(3157), + [anon_sym_COMMA] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3157), + [anon_sym_PIPE] = ACTIONS(3159), + [anon_sym_fn] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3157), + [anon_sym_SLASH] = ACTIONS(3159), + [anon_sym_PERCENT] = ACTIONS(3157), + [anon_sym_LT] = ACTIONS(3159), + [anon_sym_GT] = ACTIONS(3159), + [anon_sym_EQ_EQ] = ACTIONS(3157), + [anon_sym_BANG_EQ] = ACTIONS(3157), + [anon_sym_LT_EQ] = ACTIONS(3157), + [anon_sym_GT_EQ] = ACTIONS(3157), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_RBRACK] = ACTIONS(3157), + [anon_sym_struct] = ACTIONS(3159), + [anon_sym_mut] = ACTIONS(3159), + [anon_sym_PLUS_PLUS] = ACTIONS(3157), + [anon_sym_DASH_DASH] = ACTIONS(3157), + [anon_sym_QMARK] = ACTIONS(3159), + [anon_sym_BANG] = ACTIONS(3159), + [anon_sym_go] = ACTIONS(3159), + [anon_sym_spawn] = ACTIONS(3159), + [anon_sym_json_DOTdecode] = ACTIONS(3157), + [anon_sym_LBRACK2] = ACTIONS(3159), + [anon_sym_TILDE] = ACTIONS(3157), + [anon_sym_CARET] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LT_DASH] = ACTIONS(3157), + [anon_sym_LT_LT] = ACTIONS(3157), + [anon_sym_GT_GT] = ACTIONS(3159), + [anon_sym_GT_GT_GT] = ACTIONS(3157), + [anon_sym_AMP_CARET] = ACTIONS(3157), + [anon_sym_AMP_AMP] = ACTIONS(3157), + [anon_sym_PIPE_PIPE] = ACTIONS(3157), + [anon_sym_or] = ACTIONS(3159), + [sym_none] = ACTIONS(3159), + [sym_true] = ACTIONS(3159), + [sym_false] = ACTIONS(3159), + [sym_nil] = ACTIONS(3159), + [anon_sym_QMARK_DOT] = ACTIONS(3157), + [anon_sym_POUND_LBRACK] = ACTIONS(3157), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_DOLLARif] = ACTIONS(3159), + [anon_sym_is] = ACTIONS(3159), + [anon_sym_BANGis] = ACTIONS(3157), + [anon_sym_in] = ACTIONS(3159), + [anon_sym_BANGin] = ACTIONS(3157), + [anon_sym_match] = ACTIONS(3159), + [anon_sym_select] = ACTIONS(3159), + [anon_sym_lock] = ACTIONS(3159), + [anon_sym_rlock] = ACTIONS(3159), + [anon_sym_unsafe] = ACTIONS(3159), + [anon_sym_sql] = ACTIONS(3159), + [sym_int_literal] = ACTIONS(3159), + [sym_float_literal] = ACTIONS(3157), + [sym_rune_literal] = ACTIONS(3157), + [anon_sym_AT] = ACTIONS(3159), + [anon_sym_shared] = ACTIONS(3159), + [anon_sym_map_LBRACK] = ACTIONS(3157), + [anon_sym_chan] = ACTIONS(3159), + [anon_sym_thread] = ACTIONS(3159), + [anon_sym_atomic] = ACTIONS(3159), + [sym___double_quote] = ACTIONS(3157), + [sym___single_quote] = ACTIONS(3157), + [sym___c_double_quote] = ACTIONS(3157), + [sym___c_single_quote] = ACTIONS(3157), + [sym___r_double_quote] = ACTIONS(3157), + [sym___r_single_quote] = ACTIONS(3157), }, [1408] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(2318), - [sym_plain_type] = STATE(2383), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(2318), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(3702), + [sym_identifier] = ACTIONS(3155), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(587), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(587), - [anon_sym_RBRACE] = ACTIONS(587), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_RPAREN] = ACTIONS(587), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(587), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(587), - [anon_sym_BANG_EQ] = ACTIONS(587), - [anon_sym_LT_EQ] = ACTIONS(587), - [anon_sym_GT_EQ] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_RBRACK] = ACTIONS(587), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(587), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_LBRACK2] = ACTIONS(3712), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_AMP] = ACTIONS(3714), - [anon_sym_LT_LT] = ACTIONS(587), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(587), - [anon_sym_AMP_CARET] = ACTIONS(587), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(587), - [anon_sym_POUND_LBRACK] = ACTIONS(587), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(587), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(587), - [anon_sym_COLON_EQ] = ACTIONS(587), - [anon_sym_shared] = ACTIONS(3716), - [anon_sym_map_LBRACK] = ACTIONS(3718), - [anon_sym_chan] = ACTIONS(3720), - [anon_sym_thread] = ACTIONS(3722), - [anon_sym_atomic] = ACTIONS(3724), - [anon_sym_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT] = ACTIONS(3155), + [anon_sym_as] = ACTIONS(3155), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3153), + [anon_sym_PIPE] = ACTIONS(3155), + [anon_sym_fn] = ACTIONS(3155), + [anon_sym_PLUS] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_SLASH] = ACTIONS(3155), + [anon_sym_PERCENT] = ACTIONS(3153), + [anon_sym_LT] = ACTIONS(3155), + [anon_sym_GT] = ACTIONS(3155), + [anon_sym_EQ_EQ] = ACTIONS(3153), + [anon_sym_BANG_EQ] = ACTIONS(3153), + [anon_sym_LT_EQ] = ACTIONS(3153), + [anon_sym_GT_EQ] = ACTIONS(3153), + [anon_sym_LBRACK] = ACTIONS(3153), + [anon_sym_RBRACK] = ACTIONS(3153), + [anon_sym_struct] = ACTIONS(3155), + [anon_sym_mut] = ACTIONS(3155), + [anon_sym_PLUS_PLUS] = ACTIONS(3153), + [anon_sym_DASH_DASH] = ACTIONS(3153), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3155), + [anon_sym_go] = ACTIONS(3155), + [anon_sym_spawn] = ACTIONS(3155), + [anon_sym_json_DOTdecode] = ACTIONS(3153), + [anon_sym_LBRACK2] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3153), + [anon_sym_CARET] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_LT_DASH] = ACTIONS(3153), + [anon_sym_LT_LT] = ACTIONS(3153), + [anon_sym_GT_GT] = ACTIONS(3155), + [anon_sym_GT_GT_GT] = ACTIONS(3153), + [anon_sym_AMP_CARET] = ACTIONS(3153), + [anon_sym_AMP_AMP] = ACTIONS(3153), + [anon_sym_PIPE_PIPE] = ACTIONS(3153), + [anon_sym_or] = ACTIONS(3155), + [sym_none] = ACTIONS(3155), + [sym_true] = ACTIONS(3155), + [sym_false] = ACTIONS(3155), + [sym_nil] = ACTIONS(3155), + [anon_sym_QMARK_DOT] = ACTIONS(3153), + [anon_sym_POUND_LBRACK] = ACTIONS(3153), + [anon_sym_if] = ACTIONS(3155), + [anon_sym_DOLLARif] = ACTIONS(3155), + [anon_sym_is] = ACTIONS(3155), + [anon_sym_BANGis] = ACTIONS(3153), + [anon_sym_in] = ACTIONS(3155), + [anon_sym_BANGin] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(3155), + [anon_sym_select] = ACTIONS(3155), + [anon_sym_lock] = ACTIONS(3155), + [anon_sym_rlock] = ACTIONS(3155), + [anon_sym_unsafe] = ACTIONS(3155), + [anon_sym_sql] = ACTIONS(3155), + [sym_int_literal] = ACTIONS(3155), + [sym_float_literal] = ACTIONS(3153), + [sym_rune_literal] = ACTIONS(3153), + [anon_sym_AT] = ACTIONS(3155), + [anon_sym_shared] = ACTIONS(3155), + [anon_sym_map_LBRACK] = ACTIONS(3153), + [anon_sym_chan] = ACTIONS(3155), + [anon_sym_thread] = ACTIONS(3155), + [anon_sym_atomic] = ACTIONS(3155), + [sym___double_quote] = ACTIONS(3153), + [sym___single_quote] = ACTIONS(3153), + [sym___c_double_quote] = ACTIONS(3153), + [sym___c_single_quote] = ACTIONS(3153), + [sym___r_double_quote] = ACTIONS(3153), + [sym___r_single_quote] = ACTIONS(3153), }, [1409] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(2318), - [sym_plain_type] = STATE(2330), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(2318), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(3702), + [sym_identifier] = ACTIONS(3133), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(551), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_as] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_COMMA] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_RPAREN] = ACTIONS(551), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_fn] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_SLASH] = ACTIONS(555), - [anon_sym_PERCENT] = ACTIONS(551), - [anon_sym_LT] = ACTIONS(555), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_EQ_EQ] = ACTIONS(551), - [anon_sym_BANG_EQ] = ACTIONS(551), - [anon_sym_LT_EQ] = ACTIONS(551), - [anon_sym_GT_EQ] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(551), - [anon_sym_RBRACK] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(555), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_LBRACK2] = ACTIONS(3712), - [anon_sym_CARET] = ACTIONS(551), - [anon_sym_AMP] = ACTIONS(3714), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_GT_GT_GT] = ACTIONS(551), - [anon_sym_AMP_CARET] = ACTIONS(551), - [anon_sym_AMP_AMP] = ACTIONS(551), - [anon_sym_PIPE_PIPE] = ACTIONS(551), - [anon_sym_or] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(551), - [anon_sym_POUND_LBRACK] = ACTIONS(551), - [anon_sym_is] = ACTIONS(555), - [anon_sym_BANGis] = ACTIONS(551), - [anon_sym_in] = ACTIONS(555), - [anon_sym_BANGin] = ACTIONS(551), - [anon_sym_COLON_EQ] = ACTIONS(551), - [anon_sym_shared] = ACTIONS(3716), - [anon_sym_map_LBRACK] = ACTIONS(3718), - [anon_sym_chan] = ACTIONS(3720), - [anon_sym_thread] = ACTIONS(3722), - [anon_sym_atomic] = ACTIONS(3724), - [anon_sym_DOT_DOT] = ACTIONS(551), + [anon_sym_DOT] = ACTIONS(3133), + [anon_sym_as] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_COMMA] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_PIPE] = ACTIONS(3133), + [anon_sym_fn] = ACTIONS(3133), + [anon_sym_PLUS] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(3131), + [anon_sym_SLASH] = ACTIONS(3133), + [anon_sym_PERCENT] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_EQ_EQ] = ACTIONS(3131), + [anon_sym_BANG_EQ] = ACTIONS(3131), + [anon_sym_LT_EQ] = ACTIONS(3131), + [anon_sym_GT_EQ] = ACTIONS(3131), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_RBRACK] = ACTIONS(3131), + [anon_sym_struct] = ACTIONS(3133), + [anon_sym_mut] = ACTIONS(3133), + [anon_sym_PLUS_PLUS] = ACTIONS(3131), + [anon_sym_DASH_DASH] = ACTIONS(3131), + [anon_sym_QMARK] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_go] = ACTIONS(3133), + [anon_sym_spawn] = ACTIONS(3133), + [anon_sym_json_DOTdecode] = ACTIONS(3131), + [anon_sym_LBRACK2] = ACTIONS(3133), + [anon_sym_TILDE] = ACTIONS(3131), + [anon_sym_CARET] = ACTIONS(3131), + [anon_sym_AMP] = ACTIONS(3133), + [anon_sym_LT_DASH] = ACTIONS(3131), + [anon_sym_LT_LT] = ACTIONS(3131), + [anon_sym_GT_GT] = ACTIONS(3133), + [anon_sym_GT_GT_GT] = ACTIONS(3131), + [anon_sym_AMP_CARET] = ACTIONS(3131), + [anon_sym_AMP_AMP] = ACTIONS(3131), + [anon_sym_PIPE_PIPE] = ACTIONS(3131), + [anon_sym_or] = ACTIONS(3133), + [sym_none] = ACTIONS(3133), + [sym_true] = ACTIONS(3133), + [sym_false] = ACTIONS(3133), + [sym_nil] = ACTIONS(3133), + [anon_sym_QMARK_DOT] = ACTIONS(3131), + [anon_sym_POUND_LBRACK] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_DOLLARif] = ACTIONS(3133), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3131), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_BANGin] = ACTIONS(3131), + [anon_sym_match] = ACTIONS(3133), + [anon_sym_select] = ACTIONS(3133), + [anon_sym_lock] = ACTIONS(3133), + [anon_sym_rlock] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(3133), + [anon_sym_sql] = ACTIONS(3133), + [sym_int_literal] = ACTIONS(3133), + [sym_float_literal] = ACTIONS(3131), + [sym_rune_literal] = ACTIONS(3131), + [anon_sym_AT] = ACTIONS(3133), + [anon_sym_shared] = ACTIONS(3133), + [anon_sym_map_LBRACK] = ACTIONS(3131), + [anon_sym_chan] = ACTIONS(3133), + [anon_sym_thread] = ACTIONS(3133), + [anon_sym_atomic] = ACTIONS(3133), + [sym___double_quote] = ACTIONS(3131), + [sym___single_quote] = ACTIONS(3131), + [sym___c_double_quote] = ACTIONS(3131), + [sym___c_single_quote] = ACTIONS(3131), + [sym___r_double_quote] = ACTIONS(3131), + [sym___r_single_quote] = ACTIONS(3131), }, [1410] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), + [sym_identifier] = ACTIONS(3151), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(613), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_RBRACE] = ACTIONS(583), - [anon_sym_LPAREN] = ACTIONS(583), - [anon_sym_RPAREN] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(583), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(583), - [anon_sym_BANG_EQ] = ACTIONS(583), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LBRACK] = ACTIONS(583), - [anon_sym_RBRACK] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(583), - [anon_sym_AMP_CARET] = ACTIONS(583), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE_PIPE] = ACTIONS(583), - [anon_sym_or] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(583), - [anon_sym_POUND_LBRACK] = ACTIONS(583), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(583), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(583), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(583), + [anon_sym_DOT] = ACTIONS(3151), + [anon_sym_as] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_COMMA] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym_PIPE] = ACTIONS(3151), + [anon_sym_fn] = ACTIONS(3151), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3149), + [anon_sym_SLASH] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3149), + [anon_sym_LT] = ACTIONS(3151), + [anon_sym_GT] = ACTIONS(3151), + [anon_sym_EQ_EQ] = ACTIONS(3149), + [anon_sym_BANG_EQ] = ACTIONS(3149), + [anon_sym_LT_EQ] = ACTIONS(3149), + [anon_sym_GT_EQ] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_RBRACK] = ACTIONS(3149), + [anon_sym_struct] = ACTIONS(3151), + [anon_sym_mut] = ACTIONS(3151), + [anon_sym_PLUS_PLUS] = ACTIONS(3149), + [anon_sym_DASH_DASH] = ACTIONS(3149), + [anon_sym_QMARK] = ACTIONS(3151), + [anon_sym_BANG] = ACTIONS(3151), + [anon_sym_go] = ACTIONS(3151), + [anon_sym_spawn] = ACTIONS(3151), + [anon_sym_json_DOTdecode] = ACTIONS(3149), + [anon_sym_LBRACK2] = ACTIONS(3151), + [anon_sym_TILDE] = ACTIONS(3149), + [anon_sym_CARET] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_LT_DASH] = ACTIONS(3149), + [anon_sym_LT_LT] = ACTIONS(3149), + [anon_sym_GT_GT] = ACTIONS(3151), + [anon_sym_GT_GT_GT] = ACTIONS(3149), + [anon_sym_AMP_CARET] = ACTIONS(3149), + [anon_sym_AMP_AMP] = ACTIONS(3149), + [anon_sym_PIPE_PIPE] = ACTIONS(3149), + [anon_sym_or] = ACTIONS(3151), + [sym_none] = ACTIONS(3151), + [sym_true] = ACTIONS(3151), + [sym_false] = ACTIONS(3151), + [sym_nil] = ACTIONS(3151), + [anon_sym_QMARK_DOT] = ACTIONS(3149), + [anon_sym_POUND_LBRACK] = ACTIONS(3149), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_DOLLARif] = ACTIONS(3151), + [anon_sym_is] = ACTIONS(3151), + [anon_sym_BANGis] = ACTIONS(3149), + [anon_sym_in] = ACTIONS(3151), + [anon_sym_BANGin] = ACTIONS(3149), + [anon_sym_match] = ACTIONS(3151), + [anon_sym_select] = ACTIONS(3151), + [anon_sym_lock] = ACTIONS(3151), + [anon_sym_rlock] = ACTIONS(3151), + [anon_sym_unsafe] = ACTIONS(3151), + [anon_sym_sql] = ACTIONS(3151), + [sym_int_literal] = ACTIONS(3151), + [sym_float_literal] = ACTIONS(3149), + [sym_rune_literal] = ACTIONS(3149), + [anon_sym_AT] = ACTIONS(3151), + [anon_sym_shared] = ACTIONS(3151), + [anon_sym_map_LBRACK] = ACTIONS(3149), + [anon_sym_chan] = ACTIONS(3151), + [anon_sym_thread] = ACTIONS(3151), + [anon_sym_atomic] = ACTIONS(3151), + [sym___double_quote] = ACTIONS(3149), + [sym___single_quote] = ACTIONS(3149), + [sym___c_double_quote] = ACTIONS(3149), + [sym___c_single_quote] = ACTIONS(3149), + [sym___r_double_quote] = ACTIONS(3149), + [sym___r_single_quote] = ACTIONS(3149), }, [1411] = { - [sym_type_parameters] = STATE(1444), - [ts_builtin_sym_end] = ACTIONS(2702), - [sym_identifier] = ACTIONS(2704), - [anon_sym_LF] = ACTIONS(2704), - [anon_sym_CR] = ACTIONS(2704), - [anon_sym_CR_LF] = ACTIONS(2704), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_const] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym___global] = ACTIONS(2704), - [anon_sym_type] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_LBRACK] = ACTIONS(3726), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_union] = ACTIONS(2704), - [anon_sym_pub] = ACTIONS(2704), - [anon_sym_mut] = ACTIONS(2704), - [anon_sym_enum] = ACTIONS(2704), - [anon_sym_interface] = ACTIONS(2704), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_go] = ACTIONS(2704), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2704), - [anon_sym_LBRACK2] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_CARET] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_LT_DASH] = ACTIONS(2704), - [sym_none] = ACTIONS(2704), - [sym_true] = ACTIONS(2704), - [sym_false] = ACTIONS(2704), - [sym_nil] = ACTIONS(2704), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_DOLLARif] = ACTIONS(2704), - [anon_sym_match] = ACTIONS(2704), - [anon_sym_select] = ACTIONS(2704), - [anon_sym_lock] = ACTIONS(2704), - [anon_sym_rlock] = ACTIONS(2704), - [anon_sym_unsafe] = ACTIONS(2704), - [anon_sym_sql] = ACTIONS(2704), - [sym_int_literal] = ACTIONS(2704), - [sym_float_literal] = ACTIONS(2704), - [sym_rune_literal] = ACTIONS(2704), - [anon_sym_AT] = ACTIONS(2704), - [anon_sym_shared] = ACTIONS(2704), - [anon_sym_map_LBRACK] = ACTIONS(2704), - [anon_sym_chan] = ACTIONS(2704), - [anon_sym_thread] = ACTIONS(2704), - [anon_sym_atomic] = ACTIONS(2704), - [anon_sym_assert] = ACTIONS(2704), - [anon_sym_defer] = ACTIONS(2704), - [anon_sym_goto] = ACTIONS(2704), - [anon_sym_break] = ACTIONS(2704), - [anon_sym_continue] = ACTIONS(2704), - [anon_sym_return] = ACTIONS(2704), - [anon_sym_DOLLARfor] = ACTIONS(2704), - [anon_sym_for] = ACTIONS(2704), - [anon_sym_POUND] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2704), - [anon_sym_AT_LBRACK] = ACTIONS(2704), - [sym___double_quote] = ACTIONS(2704), - [sym___single_quote] = ACTIONS(2704), - [sym___c_double_quote] = ACTIONS(2704), - [sym___c_single_quote] = ACTIONS(2704), - [sym___r_double_quote] = ACTIONS(2704), - [sym___r_single_quote] = ACTIONS(2704), + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(2315), + [sym_plain_type] = STATE(2400), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(2315), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3708), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(557), + [anon_sym_DOT] = ACTIONS(561), + [anon_sym_as] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(557), + [anon_sym_COMMA] = ACTIONS(557), + [anon_sym_RBRACE] = ACTIONS(557), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_RPAREN] = ACTIONS(557), + [anon_sym_PIPE] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(3710), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(561), + [anon_sym_PERCENT] = ACTIONS(557), + [anon_sym_LT] = ACTIONS(561), + [anon_sym_GT] = ACTIONS(561), + [anon_sym_EQ_EQ] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(557), + [anon_sym_LT_EQ] = ACTIONS(557), + [anon_sym_GT_EQ] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_RBRACK] = ACTIONS(557), + [anon_sym_struct] = ACTIONS(601), + [anon_sym_COLON] = ACTIONS(561), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [anon_sym_QMARK] = ACTIONS(3714), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_LBRACK2] = ACTIONS(3718), + [anon_sym_CARET] = ACTIONS(557), + [anon_sym_AMP] = ACTIONS(3720), + [anon_sym_LT_LT] = ACTIONS(557), + [anon_sym_GT_GT] = ACTIONS(561), + [anon_sym_GT_GT_GT] = ACTIONS(557), + [anon_sym_AMP_CARET] = ACTIONS(557), + [anon_sym_AMP_AMP] = ACTIONS(557), + [anon_sym_PIPE_PIPE] = ACTIONS(557), + [anon_sym_or] = ACTIONS(561), + [anon_sym_QMARK_DOT] = ACTIONS(557), + [anon_sym_POUND_LBRACK] = ACTIONS(557), + [anon_sym_is] = ACTIONS(561), + [anon_sym_BANGis] = ACTIONS(557), + [anon_sym_in] = ACTIONS(561), + [anon_sym_BANGin] = ACTIONS(557), + [anon_sym_COLON_EQ] = ACTIONS(557), + [anon_sym_shared] = ACTIONS(3722), + [anon_sym_map_LBRACK] = ACTIONS(3724), + [anon_sym_chan] = ACTIONS(3726), + [anon_sym_thread] = ACTIONS(3728), + [anon_sym_atomic] = ACTIONS(3730), + [anon_sym_DOT_DOT] = ACTIONS(557), }, [1412] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [anon_sym_LF] = ACTIONS(585), - [anon_sym_CR] = ACTIONS(585), - [anon_sym_CR_LF] = ACTIONS(585), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_RBRACE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(585), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_AMP_CARET] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_or] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(585), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(537), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(2315), + [sym_plain_type] = STATE(2359), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(2315), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3708), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_as] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(619), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_RBRACE] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_RPAREN] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_fn] = ACTIONS(3710), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(621), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_EQ_EQ] = ACTIONS(619), + [anon_sym_BANG_EQ] = ACTIONS(619), + [anon_sym_LT_EQ] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(619), + [anon_sym_RBRACK] = ACTIONS(619), + [anon_sym_struct] = ACTIONS(601), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(3714), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_LBRACK2] = ACTIONS(3718), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(3720), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(621), + [anon_sym_GT_GT_GT] = ACTIONS(619), + [anon_sym_AMP_CARET] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(619), + [anon_sym_PIPE_PIPE] = ACTIONS(619), + [anon_sym_or] = ACTIONS(621), + [anon_sym_QMARK_DOT] = ACTIONS(619), + [anon_sym_POUND_LBRACK] = ACTIONS(619), + [anon_sym_is] = ACTIONS(621), + [anon_sym_BANGis] = ACTIONS(619), + [anon_sym_in] = ACTIONS(621), + [anon_sym_BANGin] = ACTIONS(619), + [anon_sym_COLON_EQ] = ACTIONS(619), + [anon_sym_shared] = ACTIONS(3722), + [anon_sym_map_LBRACK] = ACTIONS(3724), + [anon_sym_chan] = ACTIONS(3726), + [anon_sym_thread] = ACTIONS(3728), + [anon_sym_atomic] = ACTIONS(3730), + [anon_sym_DOT_DOT] = ACTIONS(619), }, [1413] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [anon_sym_LF] = ACTIONS(595), - [anon_sym_CR] = ACTIONS(595), - [anon_sym_CR_LF] = ACTIONS(595), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(595), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_as] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_RBRACE] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(597), - [anon_sym_RPAREN] = ACTIONS(595), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [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(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(3728), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [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(595), - [anon_sym_QMARK_DOT] = ACTIONS(595), - [anon_sym_POUND_LBRACK] = ACTIONS(595), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(595), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(595), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(537), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(2315), + [sym_plain_type] = STATE(2330), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(2315), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(3708), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(611), + [anon_sym_DOT] = ACTIONS(613), + [anon_sym_as] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_RBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_RPAREN] = ACTIONS(611), + [anon_sym_PIPE] = ACTIONS(613), + [anon_sym_fn] = ACTIONS(3710), + [anon_sym_PLUS] = ACTIONS(613), + [anon_sym_DASH] = ACTIONS(613), + [anon_sym_STAR] = ACTIONS(3712), + [anon_sym_SLASH] = ACTIONS(613), + [anon_sym_PERCENT] = ACTIONS(611), + [anon_sym_LT] = ACTIONS(613), + [anon_sym_GT] = ACTIONS(613), + [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(611), + [anon_sym_RBRACK] = ACTIONS(611), + [anon_sym_struct] = ACTIONS(601), + [anon_sym_COLON] = ACTIONS(613), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_QMARK] = ACTIONS(3714), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_LBRACK2] = ACTIONS(3718), + [anon_sym_CARET] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(3720), + [anon_sym_LT_LT] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(613), + [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(613), + [anon_sym_QMARK_DOT] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(611), + [anon_sym_is] = ACTIONS(613), + [anon_sym_BANGis] = ACTIONS(611), + [anon_sym_in] = ACTIONS(613), + [anon_sym_BANGin] = ACTIONS(611), + [anon_sym_COLON_EQ] = ACTIONS(611), + [anon_sym_shared] = ACTIONS(3722), + [anon_sym_map_LBRACK] = ACTIONS(3724), + [anon_sym_chan] = ACTIONS(3726), + [anon_sym_thread] = ACTIONS(3728), + [anon_sym_atomic] = ACTIONS(3730), + [anon_sym_DOT_DOT] = ACTIONS(611), }, [1414] = { - [sym_reference_expression] = STATE(4486), - [sym_type_reference_expression] = STATE(2457), - [sym_plain_type] = STATE(2550), - [sym__plain_type_without_special] = STATE(2570), - [sym_anon_struct_type] = STATE(2569), - [sym_multi_return_type] = STATE(2570), - [sym_result_type] = STATE(2570), - [sym_option_type] = STATE(2570), - [sym_qualified_type] = STATE(2457), - [sym_fixed_array_type] = STATE(2569), - [sym_array_type] = STATE(2569), - [sym_pointer_type] = STATE(2569), - [sym_wrong_pointer_type] = STATE(2569), - [sym_map_type] = STATE(2569), - [sym_channel_type] = STATE(2569), - [sym_shared_type] = STATE(2569), - [sym_thread_type] = STATE(2569), - [sym_atomic_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_function_type] = STATE(2569), - [sym_identifier] = ACTIONS(3730), - [anon_sym_LF] = ACTIONS(555), - [anon_sym_CR] = ACTIONS(555), - [anon_sym_CR_LF] = ACTIONS(555), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(555), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_as] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(555), - [anon_sym_RBRACE] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(3732), - [anon_sym_RPAREN] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_fn] = ACTIONS(3734), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(555), - [anon_sym_PERCENT] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(555), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_EQ_EQ] = ACTIONS(555), - [anon_sym_BANG_EQ] = ACTIONS(555), - [anon_sym_LT_EQ] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(3738), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_QMARK] = ACTIONS(3740), - [anon_sym_BANG] = ACTIONS(3742), - [anon_sym_LBRACK2] = ACTIONS(3744), - [anon_sym_CARET] = ACTIONS(555), - [anon_sym_AMP] = ACTIONS(3746), - [anon_sym_LT_LT] = ACTIONS(555), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_GT_GT_GT] = ACTIONS(555), - [anon_sym_AMP_CARET] = ACTIONS(555), - [anon_sym_AMP_AMP] = ACTIONS(555), - [anon_sym_PIPE_PIPE] = ACTIONS(555), - [anon_sym_or] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(555), - [anon_sym_POUND_LBRACK] = ACTIONS(555), - [anon_sym_is] = ACTIONS(555), - [anon_sym_BANGis] = ACTIONS(555), - [anon_sym_in] = ACTIONS(555), - [anon_sym_BANGin] = ACTIONS(555), - [anon_sym_shared] = ACTIONS(3748), - [anon_sym_map_LBRACK] = ACTIONS(3750), - [anon_sym_chan] = ACTIONS(3752), - [anon_sym_thread] = ACTIONS(3754), - [anon_sym_atomic] = ACTIONS(3756), + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2359), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(591), + [anon_sym_LF] = ACTIONS(617), + [anon_sym_CR] = ACTIONS(617), + [anon_sym_CR_LF] = ACTIONS(617), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_DOT] = ACTIONS(617), + [anon_sym_as] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_RBRACE] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_RPAREN] = ACTIONS(617), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(617), + [anon_sym_PERCENT] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(617), + [anon_sym_GT] = ACTIONS(617), + [anon_sym_EQ_EQ] = ACTIONS(617), + [anon_sym_BANG_EQ] = ACTIONS(617), + [anon_sym_LT_EQ] = ACTIONS(617), + [anon_sym_GT_EQ] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_struct] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(617), + [anon_sym_DASH_DASH] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_LBRACK2] = ACTIONS(617), + [anon_sym_CARET] = ACTIONS(617), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_LT_LT] = ACTIONS(617), + [anon_sym_GT_GT] = ACTIONS(617), + [anon_sym_GT_GT_GT] = ACTIONS(617), + [anon_sym_AMP_CARET] = ACTIONS(617), + [anon_sym_AMP_AMP] = ACTIONS(617), + [anon_sym_PIPE_PIPE] = ACTIONS(617), + [anon_sym_or] = ACTIONS(617), + [anon_sym_QMARK_DOT] = ACTIONS(617), + [anon_sym_POUND_LBRACK] = ACTIONS(617), + [anon_sym_is] = ACTIONS(617), + [anon_sym_BANGis] = ACTIONS(617), + [anon_sym_in] = ACTIONS(617), + [anon_sym_BANGin] = ACTIONS(617), + [anon_sym_shared] = ACTIONS(609), + [anon_sym_map_LBRACK] = ACTIONS(543), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), }, [1415] = { - [aux_sym__type_union_list_repeat1] = STATE(1415), - [ts_builtin_sym_end] = ACTIONS(3758), - [sym_identifier] = ACTIONS(3760), - [anon_sym_LF] = ACTIONS(3762), - [anon_sym_CR] = ACTIONS(3762), - [anon_sym_CR_LF] = ACTIONS(3762), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3760), - [anon_sym_LBRACE] = ACTIONS(3760), - [anon_sym_const] = ACTIONS(3760), - [anon_sym_LPAREN] = ACTIONS(3760), - [anon_sym___global] = ACTIONS(3760), - [anon_sym_type] = ACTIONS(3760), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_fn] = ACTIONS(3760), - [anon_sym_PLUS] = ACTIONS(3760), - [anon_sym_DASH] = ACTIONS(3760), - [anon_sym_STAR] = ACTIONS(3760), - [anon_sym_struct] = ACTIONS(3760), - [anon_sym_union] = ACTIONS(3760), - [anon_sym_pub] = ACTIONS(3760), - [anon_sym_mut] = ACTIONS(3760), - [anon_sym_enum] = ACTIONS(3760), - [anon_sym_interface] = ACTIONS(3760), - [anon_sym_QMARK] = ACTIONS(3760), - [anon_sym_BANG] = ACTIONS(3760), - [anon_sym_go] = ACTIONS(3760), - [anon_sym_spawn] = ACTIONS(3760), - [anon_sym_json_DOTdecode] = ACTIONS(3760), - [anon_sym_LBRACK2] = ACTIONS(3760), - [anon_sym_TILDE] = ACTIONS(3760), - [anon_sym_CARET] = ACTIONS(3760), - [anon_sym_AMP] = ACTIONS(3760), - [anon_sym_LT_DASH] = ACTIONS(3760), - [sym_none] = ACTIONS(3760), - [sym_true] = ACTIONS(3760), - [sym_false] = ACTIONS(3760), - [sym_nil] = ACTIONS(3760), - [anon_sym_if] = ACTIONS(3760), - [anon_sym_DOLLARif] = ACTIONS(3760), - [anon_sym_match] = ACTIONS(3760), - [anon_sym_select] = ACTIONS(3760), - [anon_sym_lock] = ACTIONS(3760), - [anon_sym_rlock] = ACTIONS(3760), - [anon_sym_unsafe] = ACTIONS(3760), - [anon_sym_sql] = ACTIONS(3760), - [sym_int_literal] = ACTIONS(3760), - [sym_float_literal] = ACTIONS(3760), - [sym_rune_literal] = ACTIONS(3760), - [anon_sym_AT] = ACTIONS(3760), - [anon_sym_shared] = ACTIONS(3760), - [anon_sym_map_LBRACK] = ACTIONS(3760), - [anon_sym_chan] = ACTIONS(3760), - [anon_sym_thread] = ACTIONS(3760), - [anon_sym_atomic] = ACTIONS(3760), - [anon_sym_assert] = ACTIONS(3760), - [anon_sym_defer] = ACTIONS(3760), - [anon_sym_goto] = ACTIONS(3760), - [anon_sym_break] = ACTIONS(3760), - [anon_sym_continue] = ACTIONS(3760), - [anon_sym_return] = ACTIONS(3760), - [anon_sym_DOLLARfor] = ACTIONS(3760), - [anon_sym_for] = ACTIONS(3760), - [anon_sym_POUND] = ACTIONS(3760), - [anon_sym_asm] = ACTIONS(3760), - [anon_sym_AT_LBRACK] = ACTIONS(3760), - [sym___double_quote] = ACTIONS(3760), - [sym___single_quote] = ACTIONS(3760), - [sym___c_double_quote] = ACTIONS(3760), - [sym___c_single_quote] = ACTIONS(3760), - [sym___r_double_quote] = ACTIONS(3760), - [sym___r_single_quote] = ACTIONS(3760), + [sym_type_parameters] = STATE(1472), + [ts_builtin_sym_end] = ACTIONS(2762), + [sym_identifier] = ACTIONS(2764), + [anon_sym_LF] = ACTIONS(2764), + [anon_sym_CR] = ACTIONS(2764), + [anon_sym_CR_LF] = ACTIONS(2764), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2764), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_const] = ACTIONS(2764), + [anon_sym_LPAREN] = ACTIONS(2764), + [anon_sym___global] = ACTIONS(2764), + [anon_sym_type] = ACTIONS(2764), + [anon_sym_PIPE] = ACTIONS(2764), + [anon_sym_fn] = ACTIONS(2764), + [anon_sym_PLUS] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2764), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_LBRACK] = ACTIONS(3732), + [anon_sym_struct] = ACTIONS(2764), + [anon_sym_union] = ACTIONS(2764), + [anon_sym_pub] = ACTIONS(2764), + [anon_sym_mut] = ACTIONS(2764), + [anon_sym_enum] = ACTIONS(2764), + [anon_sym_interface] = ACTIONS(2764), + [anon_sym_QMARK] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_go] = ACTIONS(2764), + [anon_sym_spawn] = ACTIONS(2764), + [anon_sym_json_DOTdecode] = ACTIONS(2764), + [anon_sym_LBRACK2] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_CARET] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_LT_DASH] = ACTIONS(2764), + [sym_none] = ACTIONS(2764), + [sym_true] = ACTIONS(2764), + [sym_false] = ACTIONS(2764), + [sym_nil] = ACTIONS(2764), + [anon_sym_if] = ACTIONS(2764), + [anon_sym_DOLLARif] = ACTIONS(2764), + [anon_sym_match] = ACTIONS(2764), + [anon_sym_select] = ACTIONS(2764), + [anon_sym_lock] = ACTIONS(2764), + [anon_sym_rlock] = ACTIONS(2764), + [anon_sym_unsafe] = ACTIONS(2764), + [anon_sym_sql] = ACTIONS(2764), + [sym_int_literal] = ACTIONS(2764), + [sym_float_literal] = ACTIONS(2764), + [sym_rune_literal] = ACTIONS(2764), + [anon_sym_AT] = ACTIONS(2764), + [anon_sym_shared] = ACTIONS(2764), + [anon_sym_map_LBRACK] = ACTIONS(2764), + [anon_sym_chan] = ACTIONS(2764), + [anon_sym_thread] = ACTIONS(2764), + [anon_sym_atomic] = ACTIONS(2764), + [anon_sym_assert] = ACTIONS(2764), + [anon_sym_defer] = ACTIONS(2764), + [anon_sym_goto] = ACTIONS(2764), + [anon_sym_break] = ACTIONS(2764), + [anon_sym_continue] = ACTIONS(2764), + [anon_sym_return] = ACTIONS(2764), + [anon_sym_DOLLARfor] = ACTIONS(2764), + [anon_sym_for] = ACTIONS(2764), + [anon_sym_POUND] = ACTIONS(2764), + [anon_sym_asm] = ACTIONS(2764), + [anon_sym_AT_LBRACK] = ACTIONS(2764), + [sym___double_quote] = ACTIONS(2764), + [sym___single_quote] = ACTIONS(2764), + [sym___c_double_quote] = ACTIONS(2764), + [sym___c_single_quote] = ACTIONS(2764), + [sym___r_double_quote] = ACTIONS(2764), + [sym___r_single_quote] = ACTIONS(2764), }, [1416] = { - [aux_sym__type_union_list_repeat1] = STATE(1415), - [ts_builtin_sym_end] = ACTIONS(3768), - [sym_identifier] = ACTIONS(3770), - [anon_sym_LF] = ACTIONS(3772), - [anon_sym_CR] = ACTIONS(3772), - [anon_sym_CR_LF] = ACTIONS(3772), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3770), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_const] = ACTIONS(3770), - [anon_sym_LPAREN] = ACTIONS(3770), - [anon_sym___global] = ACTIONS(3770), - [anon_sym_type] = ACTIONS(3770), - [anon_sym_PIPE] = ACTIONS(3775), - [anon_sym_fn] = ACTIONS(3770), - [anon_sym_PLUS] = ACTIONS(3770), - [anon_sym_DASH] = ACTIONS(3770), - [anon_sym_STAR] = ACTIONS(3770), - [anon_sym_struct] = ACTIONS(3770), - [anon_sym_union] = ACTIONS(3770), - [anon_sym_pub] = ACTIONS(3770), - [anon_sym_mut] = ACTIONS(3770), - [anon_sym_enum] = ACTIONS(3770), - [anon_sym_interface] = ACTIONS(3770), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_BANG] = ACTIONS(3770), - [anon_sym_go] = ACTIONS(3770), - [anon_sym_spawn] = ACTIONS(3770), - [anon_sym_json_DOTdecode] = ACTIONS(3770), - [anon_sym_LBRACK2] = ACTIONS(3770), - [anon_sym_TILDE] = ACTIONS(3770), - [anon_sym_CARET] = ACTIONS(3770), - [anon_sym_AMP] = ACTIONS(3770), - [anon_sym_LT_DASH] = ACTIONS(3770), - [sym_none] = ACTIONS(3770), - [sym_true] = ACTIONS(3770), - [sym_false] = ACTIONS(3770), - [sym_nil] = ACTIONS(3770), - [anon_sym_if] = ACTIONS(3770), - [anon_sym_DOLLARif] = ACTIONS(3770), - [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_AT] = 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), - [anon_sym_assert] = ACTIONS(3770), - [anon_sym_defer] = ACTIONS(3770), - [anon_sym_goto] = ACTIONS(3770), - [anon_sym_break] = ACTIONS(3770), - [anon_sym_continue] = ACTIONS(3770), - [anon_sym_return] = ACTIONS(3770), - [anon_sym_DOLLARfor] = ACTIONS(3770), - [anon_sym_for] = ACTIONS(3770), - [anon_sym_POUND] = ACTIONS(3770), - [anon_sym_asm] = ACTIONS(3770), - [anon_sym_AT_LBRACK] = ACTIONS(3770), - [sym___double_quote] = ACTIONS(3770), - [sym___single_quote] = ACTIONS(3770), - [sym___c_double_quote] = ACTIONS(3770), - [sym___c_single_quote] = ACTIONS(3770), - [sym___r_double_quote] = ACTIONS(3770), - [sym___r_single_quote] = ACTIONS(3770), + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2359), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(591), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(615), + [anon_sym_DOT] = ACTIONS(617), + [anon_sym_as] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_RBRACE] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(615), + [anon_sym_RPAREN] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_STAR] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(617), + [anon_sym_PERCENT] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(617), + [anon_sym_GT] = ACTIONS(617), + [anon_sym_EQ_EQ] = ACTIONS(615), + [anon_sym_BANG_EQ] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_RBRACK] = ACTIONS(615), + [anon_sym_struct] = ACTIONS(601), + [anon_sym_COLON] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(615), + [anon_sym_DASH_DASH] = ACTIONS(615), + [anon_sym_QMARK] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_LBRACK2] = ACTIONS(617), + [anon_sym_CARET] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_LT_LT] = ACTIONS(615), + [anon_sym_GT_GT] = ACTIONS(617), + [anon_sym_GT_GT_GT] = ACTIONS(615), + [anon_sym_AMP_CARET] = ACTIONS(615), + [anon_sym_AMP_AMP] = ACTIONS(615), + [anon_sym_PIPE_PIPE] = ACTIONS(615), + [anon_sym_or] = ACTIONS(617), + [anon_sym_QMARK_DOT] = ACTIONS(615), + [anon_sym_POUND_LBRACK] = ACTIONS(615), + [anon_sym_is] = ACTIONS(617), + [anon_sym_BANGis] = ACTIONS(615), + [anon_sym_in] = ACTIONS(617), + [anon_sym_BANGin] = ACTIONS(615), + [anon_sym_shared] = ACTIONS(609), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(615), }, [1417] = { - [aux_sym_strictly_expression_list_repeat1] = STATE(1417), - [ts_builtin_sym_end] = ACTIONS(3305), - [sym_identifier] = ACTIONS(1690), - [anon_sym_LF] = ACTIONS(1690), - [anon_sym_CR] = ACTIONS(1690), - [anon_sym_CR_LF] = ACTIONS(1690), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_COMMA] = ACTIONS(3777), - [anon_sym_const] = ACTIONS(1690), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym___global] = ACTIONS(1690), - [anon_sym_type] = ACTIONS(1690), - [anon_sym_fn] = ACTIONS(1690), - [anon_sym_PLUS] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1690), - [anon_sym_STAR] = ACTIONS(1690), - [anon_sym_struct] = ACTIONS(1690), - [anon_sym_union] = ACTIONS(1690), - [anon_sym_pub] = ACTIONS(1690), - [anon_sym_mut] = ACTIONS(1690), - [anon_sym_enum] = ACTIONS(1690), - [anon_sym_interface] = ACTIONS(1690), - [anon_sym_QMARK] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_go] = ACTIONS(1690), - [anon_sym_spawn] = ACTIONS(1690), - [anon_sym_json_DOTdecode] = ACTIONS(1690), - [anon_sym_LBRACK2] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_CARET] = ACTIONS(1690), - [anon_sym_AMP] = ACTIONS(1690), - [anon_sym_LT_DASH] = ACTIONS(1690), - [sym_none] = ACTIONS(1690), - [sym_true] = ACTIONS(1690), - [sym_false] = ACTIONS(1690), - [sym_nil] = ACTIONS(1690), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_DOLLARif] = ACTIONS(1690), - [anon_sym_match] = ACTIONS(1690), - [anon_sym_select] = ACTIONS(1690), - [anon_sym_lock] = ACTIONS(1690), - [anon_sym_rlock] = ACTIONS(1690), - [anon_sym_unsafe] = ACTIONS(1690), - [anon_sym_sql] = ACTIONS(1690), - [sym_int_literal] = ACTIONS(1690), - [sym_float_literal] = ACTIONS(1690), - [sym_rune_literal] = ACTIONS(1690), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_shared] = ACTIONS(1690), - [anon_sym_map_LBRACK] = ACTIONS(1690), - [anon_sym_chan] = ACTIONS(1690), - [anon_sym_thread] = ACTIONS(1690), - [anon_sym_atomic] = ACTIONS(1690), - [anon_sym_assert] = ACTIONS(1690), - [anon_sym_defer] = ACTIONS(1690), - [anon_sym_goto] = ACTIONS(1690), - [anon_sym_break] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(1690), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_DOLLARfor] = ACTIONS(1690), - [anon_sym_for] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1690), - [anon_sym_asm] = ACTIONS(1690), - [anon_sym_AT_LBRACK] = ACTIONS(1690), - [sym___double_quote] = ACTIONS(1690), - [sym___single_quote] = ACTIONS(1690), - [sym___c_double_quote] = ACTIONS(1690), - [sym___c_single_quote] = ACTIONS(1690), - [sym___r_double_quote] = ACTIONS(1690), - [sym___r_single_quote] = ACTIONS(1690), + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2393), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(591), + [anon_sym_LF] = ACTIONS(593), + [anon_sym_CR] = ACTIONS(593), + [anon_sym_CR_LF] = ACTIONS(593), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(593), + [anon_sym_DOT] = ACTIONS(593), + [anon_sym_as] = ACTIONS(593), + [anon_sym_COMMA] = ACTIONS(593), + [anon_sym_RBRACE] = ACTIONS(593), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_STAR] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(593), + [anon_sym_PERCENT] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_EQ_EQ] = ACTIONS(593), + [anon_sym_BANG_EQ] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(593), + [anon_sym_GT_EQ] = ACTIONS(593), + [anon_sym_LBRACK] = ACTIONS(589), + [anon_sym_struct] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(593), + [anon_sym_DASH_DASH] = ACTIONS(593), + [anon_sym_QMARK] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(3734), + [anon_sym_LBRACK2] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(593), + [anon_sym_AMP] = ACTIONS(607), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_GT_GT_GT] = ACTIONS(593), + [anon_sym_AMP_CARET] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(593), + [anon_sym_PIPE_PIPE] = ACTIONS(593), + [anon_sym_or] = ACTIONS(593), + [anon_sym_QMARK_DOT] = ACTIONS(593), + [anon_sym_POUND_LBRACK] = ACTIONS(593), + [anon_sym_is] = ACTIONS(593), + [anon_sym_BANGis] = ACTIONS(593), + [anon_sym_in] = ACTIONS(593), + [anon_sym_BANGin] = ACTIONS(593), + [anon_sym_shared] = ACTIONS(609), + [anon_sym_map_LBRACK] = ACTIONS(543), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), }, [1418] = { - [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), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_LBRACE] = 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_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_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), - [sym_none] = ACTIONS(3029), - [sym_true] = ACTIONS(3029), - [sym_false] = ACTIONS(3029), - [sym_nil] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_DOLLARif] = 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_AT] = ACTIONS(3029), - [anon_sym_shared] = ACTIONS(3029), - [anon_sym_map_LBRACK] = ACTIONS(3029), - [anon_sym_chan] = ACTIONS(3029), - [anon_sym_thread] = ACTIONS(3029), - [anon_sym_atomic] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_defer] = ACTIONS(3029), - [anon_sym_goto] = ACTIONS(3029), - [anon_sym_break] = ACTIONS(3029), - [anon_sym_continue] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_DOLLARfor] = ACTIONS(3029), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_POUND] = ACTIONS(3029), - [anon_sym_asm] = ACTIONS(3029), - [anon_sym_AT_LBRACK] = ACTIONS(3029), - [sym___double_quote] = ACTIONS(3029), - [sym___single_quote] = ACTIONS(3029), - [sym___c_double_quote] = ACTIONS(3029), - [sym___c_single_quote] = ACTIONS(3029), - [sym___r_double_quote] = ACTIONS(3029), - [sym___r_single_quote] = ACTIONS(3029), + [aux_sym_strictly_expression_list_repeat1] = STATE(1427), + [ts_builtin_sym_end] = ACTIONS(3736), + [sym_identifier] = ACTIONS(3738), + [anon_sym_LF] = ACTIONS(3738), + [anon_sym_CR] = ACTIONS(3738), + [anon_sym_CR_LF] = ACTIONS(3738), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3738), + [anon_sym_LBRACE] = ACTIONS(3738), + [anon_sym_COMMA] = ACTIONS(3239), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(3738), + [anon_sym___global] = ACTIONS(3738), + [anon_sym_type] = ACTIONS(3738), + [anon_sym_fn] = ACTIONS(3738), + [anon_sym_PLUS] = ACTIONS(3738), + [anon_sym_DASH] = ACTIONS(3738), + [anon_sym_STAR] = ACTIONS(3738), + [anon_sym_struct] = ACTIONS(3738), + [anon_sym_union] = ACTIONS(3738), + [anon_sym_pub] = ACTIONS(3738), + [anon_sym_mut] = ACTIONS(3738), + [anon_sym_enum] = ACTIONS(3738), + [anon_sym_interface] = ACTIONS(3738), + [anon_sym_QMARK] = ACTIONS(3738), + [anon_sym_BANG] = ACTIONS(3738), + [anon_sym_go] = ACTIONS(3738), + [anon_sym_spawn] = ACTIONS(3738), + [anon_sym_json_DOTdecode] = ACTIONS(3738), + [anon_sym_LBRACK2] = ACTIONS(3738), + [anon_sym_TILDE] = ACTIONS(3738), + [anon_sym_CARET] = ACTIONS(3738), + [anon_sym_AMP] = ACTIONS(3738), + [anon_sym_LT_DASH] = ACTIONS(3738), + [sym_none] = ACTIONS(3738), + [sym_true] = ACTIONS(3738), + [sym_false] = ACTIONS(3738), + [sym_nil] = ACTIONS(3738), + [anon_sym_if] = ACTIONS(3738), + [anon_sym_DOLLARif] = ACTIONS(3738), + [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_AT] = 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_assert] = ACTIONS(3738), + [anon_sym_defer] = ACTIONS(3738), + [anon_sym_goto] = ACTIONS(3738), + [anon_sym_break] = ACTIONS(3738), + [anon_sym_continue] = ACTIONS(3738), + [anon_sym_return] = ACTIONS(3738), + [anon_sym_DOLLARfor] = ACTIONS(3738), + [anon_sym_for] = ACTIONS(3738), + [anon_sym_POUND] = ACTIONS(3738), + [anon_sym_asm] = ACTIONS(3738), + [anon_sym_AT_LBRACK] = ACTIONS(3738), + [sym___double_quote] = ACTIONS(3738), + [sym___single_quote] = ACTIONS(3738), + [sym___c_double_quote] = ACTIONS(3738), + [sym___c_single_quote] = ACTIONS(3738), + [sym___r_double_quote] = ACTIONS(3738), + [sym___r_single_quote] = ACTIONS(3738), }, [1419] = { - [ts_builtin_sym_end] = ACTIONS(3167), - [sym_identifier] = ACTIONS(3169), - [anon_sym_LF] = ACTIONS(3169), - [anon_sym_CR] = ACTIONS(3169), - [anon_sym_CR_LF] = ACTIONS(3169), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_const] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3169), - [anon_sym___global] = ACTIONS(3169), - [anon_sym_type] = ACTIONS(3169), - [anon_sym_PIPE] = ACTIONS(3169), - [anon_sym_fn] = ACTIONS(3169), - [anon_sym_PLUS] = ACTIONS(3169), - [anon_sym_DASH] = ACTIONS(3169), - [anon_sym_STAR] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_struct] = ACTIONS(3169), - [anon_sym_union] = ACTIONS(3169), - [anon_sym_pub] = ACTIONS(3169), - [anon_sym_mut] = ACTIONS(3169), - [anon_sym_enum] = ACTIONS(3169), - [anon_sym_interface] = ACTIONS(3169), - [anon_sym_QMARK] = ACTIONS(3169), - [anon_sym_BANG] = ACTIONS(3169), - [anon_sym_go] = ACTIONS(3169), - [anon_sym_spawn] = ACTIONS(3169), - [anon_sym_json_DOTdecode] = ACTIONS(3169), - [anon_sym_LBRACK2] = ACTIONS(3169), - [anon_sym_TILDE] = ACTIONS(3169), - [anon_sym_CARET] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3169), - [anon_sym_LT_DASH] = ACTIONS(3169), - [sym_none] = ACTIONS(3169), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [sym_nil] = ACTIONS(3169), - [anon_sym_if] = ACTIONS(3169), - [anon_sym_DOLLARif] = ACTIONS(3169), - [anon_sym_match] = ACTIONS(3169), - [anon_sym_select] = ACTIONS(3169), - [anon_sym_lock] = ACTIONS(3169), - [anon_sym_rlock] = ACTIONS(3169), - [anon_sym_unsafe] = ACTIONS(3169), - [anon_sym_sql] = ACTIONS(3169), - [sym_int_literal] = ACTIONS(3169), - [sym_float_literal] = ACTIONS(3169), - [sym_rune_literal] = ACTIONS(3169), - [anon_sym_AT] = ACTIONS(3169), - [anon_sym_shared] = ACTIONS(3169), - [anon_sym_map_LBRACK] = ACTIONS(3169), - [anon_sym_chan] = ACTIONS(3169), - [anon_sym_thread] = ACTIONS(3169), - [anon_sym_atomic] = ACTIONS(3169), - [anon_sym_assert] = ACTIONS(3169), - [anon_sym_defer] = ACTIONS(3169), - [anon_sym_goto] = ACTIONS(3169), - [anon_sym_break] = ACTIONS(3169), - [anon_sym_continue] = ACTIONS(3169), - [anon_sym_return] = ACTIONS(3169), - [anon_sym_DOLLARfor] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3169), - [anon_sym_POUND] = ACTIONS(3169), - [anon_sym_asm] = ACTIONS(3169), - [anon_sym_AT_LBRACK] = ACTIONS(3169), - [sym___double_quote] = ACTIONS(3169), - [sym___single_quote] = ACTIONS(3169), - [sym___c_double_quote] = ACTIONS(3169), - [sym___c_single_quote] = ACTIONS(3169), - [sym___r_double_quote] = ACTIONS(3169), - [sym___r_single_quote] = ACTIONS(3169), + [aux_sym__type_union_list_repeat1] = STATE(1419), + [ts_builtin_sym_end] = ACTIONS(3740), + [sym_identifier] = ACTIONS(3742), + [anon_sym_LF] = ACTIONS(3744), + [anon_sym_CR] = ACTIONS(3744), + [anon_sym_CR_LF] = ACTIONS(3744), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3742), + [anon_sym_LBRACE] = ACTIONS(3742), + [anon_sym_const] = ACTIONS(3742), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym___global] = ACTIONS(3742), + [anon_sym_type] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3747), + [anon_sym_fn] = ACTIONS(3742), + [anon_sym_PLUS] = ACTIONS(3742), + [anon_sym_DASH] = ACTIONS(3742), + [anon_sym_STAR] = ACTIONS(3742), + [anon_sym_struct] = ACTIONS(3742), + [anon_sym_union] = ACTIONS(3742), + [anon_sym_pub] = ACTIONS(3742), + [anon_sym_mut] = ACTIONS(3742), + [anon_sym_enum] = ACTIONS(3742), + [anon_sym_interface] = ACTIONS(3742), + [anon_sym_QMARK] = ACTIONS(3742), + [anon_sym_BANG] = ACTIONS(3742), + [anon_sym_go] = ACTIONS(3742), + [anon_sym_spawn] = ACTIONS(3742), + [anon_sym_json_DOTdecode] = ACTIONS(3742), + [anon_sym_LBRACK2] = ACTIONS(3742), + [anon_sym_TILDE] = ACTIONS(3742), + [anon_sym_CARET] = ACTIONS(3742), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_LT_DASH] = ACTIONS(3742), + [sym_none] = ACTIONS(3742), + [sym_true] = ACTIONS(3742), + [sym_false] = ACTIONS(3742), + [sym_nil] = ACTIONS(3742), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_DOLLARif] = ACTIONS(3742), + [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_AT] = 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), + [anon_sym_assert] = ACTIONS(3742), + [anon_sym_defer] = ACTIONS(3742), + [anon_sym_goto] = ACTIONS(3742), + [anon_sym_break] = ACTIONS(3742), + [anon_sym_continue] = ACTIONS(3742), + [anon_sym_return] = ACTIONS(3742), + [anon_sym_DOLLARfor] = ACTIONS(3742), + [anon_sym_for] = ACTIONS(3742), + [anon_sym_POUND] = ACTIONS(3742), + [anon_sym_asm] = ACTIONS(3742), + [anon_sym_AT_LBRACK] = ACTIONS(3742), + [sym___double_quote] = ACTIONS(3742), + [sym___single_quote] = ACTIONS(3742), + [sym___c_double_quote] = ACTIONS(3742), + [sym___c_single_quote] = ACTIONS(3742), + [sym___r_double_quote] = ACTIONS(3742), + [sym___r_single_quote] = ACTIONS(3742), }, [1420] = { - [aux_sym__type_union_list_repeat1] = STATE(1416), - [ts_builtin_sym_end] = ACTIONS(3780), - [sym_identifier] = ACTIONS(3782), - [anon_sym_LF] = ACTIONS(3784), - [anon_sym_CR] = ACTIONS(3784), - [anon_sym_CR_LF] = ACTIONS(3784), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3782), - [anon_sym_LBRACE] = ACTIONS(3782), - [anon_sym_const] = ACTIONS(3782), - [anon_sym_LPAREN] = ACTIONS(3782), - [anon_sym___global] = ACTIONS(3782), - [anon_sym_type] = ACTIONS(3782), - [anon_sym_PIPE] = ACTIONS(3775), - [anon_sym_fn] = ACTIONS(3782), - [anon_sym_PLUS] = ACTIONS(3782), - [anon_sym_DASH] = ACTIONS(3782), - [anon_sym_STAR] = ACTIONS(3782), - [anon_sym_struct] = ACTIONS(3782), - [anon_sym_union] = ACTIONS(3782), - [anon_sym_pub] = ACTIONS(3782), - [anon_sym_mut] = ACTIONS(3782), - [anon_sym_enum] = ACTIONS(3782), - [anon_sym_interface] = ACTIONS(3782), - [anon_sym_QMARK] = ACTIONS(3782), - [anon_sym_BANG] = ACTIONS(3782), - [anon_sym_go] = ACTIONS(3782), - [anon_sym_spawn] = ACTIONS(3782), - [anon_sym_json_DOTdecode] = ACTIONS(3782), - [anon_sym_LBRACK2] = ACTIONS(3782), - [anon_sym_TILDE] = ACTIONS(3782), - [anon_sym_CARET] = ACTIONS(3782), - [anon_sym_AMP] = ACTIONS(3782), - [anon_sym_LT_DASH] = ACTIONS(3782), - [sym_none] = ACTIONS(3782), - [sym_true] = ACTIONS(3782), - [sym_false] = ACTIONS(3782), - [sym_nil] = ACTIONS(3782), - [anon_sym_if] = ACTIONS(3782), - [anon_sym_DOLLARif] = ACTIONS(3782), - [anon_sym_match] = ACTIONS(3782), - [anon_sym_select] = ACTIONS(3782), - [anon_sym_lock] = ACTIONS(3782), - [anon_sym_rlock] = ACTIONS(3782), - [anon_sym_unsafe] = ACTIONS(3782), - [anon_sym_sql] = ACTIONS(3782), - [sym_int_literal] = ACTIONS(3782), - [sym_float_literal] = ACTIONS(3782), - [sym_rune_literal] = ACTIONS(3782), - [anon_sym_AT] = ACTIONS(3782), - [anon_sym_shared] = ACTIONS(3782), - [anon_sym_map_LBRACK] = ACTIONS(3782), - [anon_sym_chan] = ACTIONS(3782), - [anon_sym_thread] = ACTIONS(3782), - [anon_sym_atomic] = ACTIONS(3782), - [anon_sym_assert] = ACTIONS(3782), - [anon_sym_defer] = ACTIONS(3782), - [anon_sym_goto] = ACTIONS(3782), - [anon_sym_break] = ACTIONS(3782), - [anon_sym_continue] = ACTIONS(3782), - [anon_sym_return] = ACTIONS(3782), - [anon_sym_DOLLARfor] = ACTIONS(3782), - [anon_sym_for] = ACTIONS(3782), - [anon_sym_POUND] = ACTIONS(3782), - [anon_sym_asm] = ACTIONS(3782), - [anon_sym_AT_LBRACK] = ACTIONS(3782), - [sym___double_quote] = ACTIONS(3782), - [sym___single_quote] = ACTIONS(3782), - [sym___c_double_quote] = ACTIONS(3782), - [sym___c_single_quote] = ACTIONS(3782), - [sym___r_double_quote] = ACTIONS(3782), - [sym___r_single_quote] = ACTIONS(3782), + [aux_sym__type_union_list_repeat1] = STATE(1423), + [ts_builtin_sym_end] = ACTIONS(3750), + [sym_identifier] = ACTIONS(3752), + [anon_sym_LF] = ACTIONS(3754), + [anon_sym_CR] = ACTIONS(3754), + [anon_sym_CR_LF] = ACTIONS(3754), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3752), + [anon_sym_LBRACE] = ACTIONS(3752), + [anon_sym_const] = ACTIONS(3752), + [anon_sym_LPAREN] = ACTIONS(3752), + [anon_sym___global] = ACTIONS(3752), + [anon_sym_type] = ACTIONS(3752), + [anon_sym_PIPE] = ACTIONS(3757), + [anon_sym_fn] = ACTIONS(3752), + [anon_sym_PLUS] = ACTIONS(3752), + [anon_sym_DASH] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3752), + [anon_sym_struct] = ACTIONS(3752), + [anon_sym_union] = ACTIONS(3752), + [anon_sym_pub] = ACTIONS(3752), + [anon_sym_mut] = ACTIONS(3752), + [anon_sym_enum] = ACTIONS(3752), + [anon_sym_interface] = ACTIONS(3752), + [anon_sym_QMARK] = ACTIONS(3752), + [anon_sym_BANG] = ACTIONS(3752), + [anon_sym_go] = ACTIONS(3752), + [anon_sym_spawn] = ACTIONS(3752), + [anon_sym_json_DOTdecode] = ACTIONS(3752), + [anon_sym_LBRACK2] = ACTIONS(3752), + [anon_sym_TILDE] = ACTIONS(3752), + [anon_sym_CARET] = ACTIONS(3752), + [anon_sym_AMP] = ACTIONS(3752), + [anon_sym_LT_DASH] = ACTIONS(3752), + [sym_none] = ACTIONS(3752), + [sym_true] = ACTIONS(3752), + [sym_false] = ACTIONS(3752), + [sym_nil] = ACTIONS(3752), + [anon_sym_if] = ACTIONS(3752), + [anon_sym_DOLLARif] = ACTIONS(3752), + [anon_sym_match] = ACTIONS(3752), + [anon_sym_select] = ACTIONS(3752), + [anon_sym_lock] = ACTIONS(3752), + [anon_sym_rlock] = ACTIONS(3752), + [anon_sym_unsafe] = ACTIONS(3752), + [anon_sym_sql] = ACTIONS(3752), + [sym_int_literal] = ACTIONS(3752), + [sym_float_literal] = ACTIONS(3752), + [sym_rune_literal] = ACTIONS(3752), + [anon_sym_AT] = ACTIONS(3752), + [anon_sym_shared] = ACTIONS(3752), + [anon_sym_map_LBRACK] = ACTIONS(3752), + [anon_sym_chan] = ACTIONS(3752), + [anon_sym_thread] = ACTIONS(3752), + [anon_sym_atomic] = ACTIONS(3752), + [anon_sym_assert] = ACTIONS(3752), + [anon_sym_defer] = ACTIONS(3752), + [anon_sym_goto] = ACTIONS(3752), + [anon_sym_break] = ACTIONS(3752), + [anon_sym_continue] = ACTIONS(3752), + [anon_sym_return] = ACTIONS(3752), + [anon_sym_DOLLARfor] = ACTIONS(3752), + [anon_sym_for] = ACTIONS(3752), + [anon_sym_POUND] = ACTIONS(3752), + [anon_sym_asm] = ACTIONS(3752), + [anon_sym_AT_LBRACK] = ACTIONS(3752), + [sym___double_quote] = ACTIONS(3752), + [sym___single_quote] = ACTIONS(3752), + [sym___c_double_quote] = ACTIONS(3752), + [sym___c_single_quote] = ACTIONS(3752), + [sym___r_double_quote] = ACTIONS(3752), + [sym___r_single_quote] = ACTIONS(3752), }, [1421] = { - [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), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2774), - [anon_sym_LBRACE] = 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_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_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), - [sym_none] = ACTIONS(3029), - [sym_true] = ACTIONS(3029), - [sym_false] = ACTIONS(3029), - [sym_nil] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_DOLLARif] = 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_AT] = ACTIONS(3029), - [anon_sym_shared] = ACTIONS(3029), - [anon_sym_map_LBRACK] = ACTIONS(3029), - [anon_sym_chan] = ACTIONS(3029), - [anon_sym_thread] = ACTIONS(3029), - [anon_sym_atomic] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_defer] = ACTIONS(3029), - [anon_sym_goto] = ACTIONS(3029), - [anon_sym_break] = ACTIONS(3029), - [anon_sym_continue] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_DOLLARfor] = ACTIONS(3029), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_POUND] = ACTIONS(3029), - [anon_sym_asm] = ACTIONS(3029), - [anon_sym_AT_LBRACK] = ACTIONS(3029), - [sym___double_quote] = ACTIONS(3029), - [sym___single_quote] = ACTIONS(3029), - [sym___c_double_quote] = ACTIONS(3029), - [sym___c_single_quote] = ACTIONS(3029), - [sym___r_double_quote] = ACTIONS(3029), - [sym___r_single_quote] = ACTIONS(3029), + [aux_sym_strictly_expression_list_repeat1] = STATE(1427), + [ts_builtin_sym_end] = ACTIONS(3759), + [sym_identifier] = ACTIONS(3761), + [anon_sym_LF] = ACTIONS(3761), + [anon_sym_CR] = ACTIONS(3761), + [anon_sym_CR_LF] = ACTIONS(3761), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3761), + [anon_sym_LBRACE] = ACTIONS(3761), + [anon_sym_COMMA] = ACTIONS(3239), + [anon_sym_const] = ACTIONS(3761), + [anon_sym_LPAREN] = ACTIONS(3761), + [anon_sym___global] = ACTIONS(3761), + [anon_sym_type] = ACTIONS(3761), + [anon_sym_fn] = ACTIONS(3761), + [anon_sym_PLUS] = ACTIONS(3761), + [anon_sym_DASH] = ACTIONS(3761), + [anon_sym_STAR] = ACTIONS(3761), + [anon_sym_struct] = ACTIONS(3761), + [anon_sym_union] = ACTIONS(3761), + [anon_sym_pub] = ACTIONS(3761), + [anon_sym_mut] = ACTIONS(3761), + [anon_sym_enum] = ACTIONS(3761), + [anon_sym_interface] = ACTIONS(3761), + [anon_sym_QMARK] = ACTIONS(3761), + [anon_sym_BANG] = ACTIONS(3761), + [anon_sym_go] = ACTIONS(3761), + [anon_sym_spawn] = ACTIONS(3761), + [anon_sym_json_DOTdecode] = ACTIONS(3761), + [anon_sym_LBRACK2] = ACTIONS(3761), + [anon_sym_TILDE] = ACTIONS(3761), + [anon_sym_CARET] = ACTIONS(3761), + [anon_sym_AMP] = ACTIONS(3761), + [anon_sym_LT_DASH] = ACTIONS(3761), + [sym_none] = ACTIONS(3761), + [sym_true] = ACTIONS(3761), + [sym_false] = ACTIONS(3761), + [sym_nil] = ACTIONS(3761), + [anon_sym_if] = ACTIONS(3761), + [anon_sym_DOLLARif] = ACTIONS(3761), + [anon_sym_match] = ACTIONS(3761), + [anon_sym_select] = ACTIONS(3761), + [anon_sym_lock] = ACTIONS(3761), + [anon_sym_rlock] = ACTIONS(3761), + [anon_sym_unsafe] = ACTIONS(3761), + [anon_sym_sql] = ACTIONS(3761), + [sym_int_literal] = ACTIONS(3761), + [sym_float_literal] = ACTIONS(3761), + [sym_rune_literal] = ACTIONS(3761), + [anon_sym_AT] = ACTIONS(3761), + [anon_sym_shared] = ACTIONS(3761), + [anon_sym_map_LBRACK] = ACTIONS(3761), + [anon_sym_chan] = ACTIONS(3761), + [anon_sym_thread] = ACTIONS(3761), + [anon_sym_atomic] = ACTIONS(3761), + [anon_sym_assert] = ACTIONS(3761), + [anon_sym_defer] = ACTIONS(3761), + [anon_sym_goto] = ACTIONS(3761), + [anon_sym_break] = ACTIONS(3761), + [anon_sym_continue] = ACTIONS(3761), + [anon_sym_return] = ACTIONS(3761), + [anon_sym_DOLLARfor] = ACTIONS(3761), + [anon_sym_for] = ACTIONS(3761), + [anon_sym_POUND] = ACTIONS(3761), + [anon_sym_asm] = ACTIONS(3761), + [anon_sym_AT_LBRACK] = ACTIONS(3761), + [sym___double_quote] = ACTIONS(3761), + [sym___single_quote] = ACTIONS(3761), + [sym___c_double_quote] = ACTIONS(3761), + [sym___c_single_quote] = ACTIONS(3761), + [sym___r_double_quote] = ACTIONS(3761), + [sym___r_single_quote] = ACTIONS(3761), }, [1422] = { - [aux_sym_strictly_expression_list_repeat1] = STATE(1423), - [ts_builtin_sym_end] = ACTIONS(3227), - [sym_identifier] = ACTIONS(1770), - [anon_sym_LF] = ACTIONS(1770), - [anon_sym_CR] = ACTIONS(1770), - [anon_sym_CR_LF] = ACTIONS(1770), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1770), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1770), - [anon_sym___global] = ACTIONS(1770), - [anon_sym_type] = ACTIONS(1770), - [anon_sym_fn] = ACTIONS(1770), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [anon_sym_struct] = ACTIONS(1770), - [anon_sym_union] = ACTIONS(1770), - [anon_sym_pub] = ACTIONS(1770), - [anon_sym_mut] = ACTIONS(1770), - [anon_sym_enum] = ACTIONS(1770), - [anon_sym_interface] = ACTIONS(1770), - [anon_sym_QMARK] = ACTIONS(1770), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_go] = ACTIONS(1770), - [anon_sym_spawn] = ACTIONS(1770), - [anon_sym_json_DOTdecode] = ACTIONS(1770), - [anon_sym_LBRACK2] = ACTIONS(1770), - [anon_sym_TILDE] = ACTIONS(1770), - [anon_sym_CARET] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1770), - [anon_sym_LT_DASH] = ACTIONS(1770), - [sym_none] = ACTIONS(1770), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [sym_nil] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_DOLLARif] = ACTIONS(1770), - [anon_sym_match] = ACTIONS(1770), - [anon_sym_select] = ACTIONS(1770), - [anon_sym_lock] = ACTIONS(1770), - [anon_sym_rlock] = ACTIONS(1770), - [anon_sym_unsafe] = ACTIONS(1770), - [anon_sym_sql] = ACTIONS(1770), - [sym_int_literal] = ACTIONS(1770), - [sym_float_literal] = ACTIONS(1770), - [sym_rune_literal] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(1770), - [anon_sym_shared] = ACTIONS(1770), - [anon_sym_map_LBRACK] = ACTIONS(1770), - [anon_sym_chan] = ACTIONS(1770), - [anon_sym_thread] = ACTIONS(1770), - [anon_sym_atomic] = ACTIONS(1770), - [anon_sym_assert] = ACTIONS(1770), - [anon_sym_defer] = ACTIONS(1770), - [anon_sym_goto] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_DOLLARfor] = ACTIONS(1770), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_POUND] = ACTIONS(1770), - [anon_sym_asm] = ACTIONS(1770), - [anon_sym_AT_LBRACK] = ACTIONS(1770), - [sym___double_quote] = ACTIONS(1770), - [sym___single_quote] = ACTIONS(1770), - [sym___c_double_quote] = ACTIONS(1770), - [sym___c_single_quote] = ACTIONS(1770), - [sym___r_double_quote] = ACTIONS(1770), - [sym___r_single_quote] = ACTIONS(1770), - }, - [1423] = { - [aux_sym_strictly_expression_list_repeat1] = STATE(1417), - [ts_builtin_sym_end] = ACTIONS(3787), - [sym_identifier] = ACTIONS(3789), - [anon_sym_LF] = ACTIONS(3789), - [anon_sym_CR] = ACTIONS(3789), - [anon_sym_CR_LF] = ACTIONS(3789), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3789), - [anon_sym_LBRACE] = ACTIONS(3789), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_const] = ACTIONS(3789), - [anon_sym_LPAREN] = ACTIONS(3789), - [anon_sym___global] = ACTIONS(3789), - [anon_sym_type] = ACTIONS(3789), - [anon_sym_fn] = ACTIONS(3789), - [anon_sym_PLUS] = ACTIONS(3789), - [anon_sym_DASH] = ACTIONS(3789), - [anon_sym_STAR] = ACTIONS(3789), - [anon_sym_struct] = ACTIONS(3789), - [anon_sym_union] = ACTIONS(3789), - [anon_sym_pub] = ACTIONS(3789), - [anon_sym_mut] = ACTIONS(3789), - [anon_sym_enum] = ACTIONS(3789), - [anon_sym_interface] = ACTIONS(3789), - [anon_sym_QMARK] = ACTIONS(3789), - [anon_sym_BANG] = ACTIONS(3789), - [anon_sym_go] = ACTIONS(3789), - [anon_sym_spawn] = ACTIONS(3789), - [anon_sym_json_DOTdecode] = ACTIONS(3789), - [anon_sym_LBRACK2] = ACTIONS(3789), - [anon_sym_TILDE] = ACTIONS(3789), - [anon_sym_CARET] = ACTIONS(3789), - [anon_sym_AMP] = ACTIONS(3789), - [anon_sym_LT_DASH] = ACTIONS(3789), - [sym_none] = ACTIONS(3789), - [sym_true] = ACTIONS(3789), - [sym_false] = ACTIONS(3789), - [sym_nil] = ACTIONS(3789), - [anon_sym_if] = ACTIONS(3789), - [anon_sym_DOLLARif] = ACTIONS(3789), - [anon_sym_match] = ACTIONS(3789), - [anon_sym_select] = ACTIONS(3789), - [anon_sym_lock] = ACTIONS(3789), - [anon_sym_rlock] = ACTIONS(3789), - [anon_sym_unsafe] = ACTIONS(3789), - [anon_sym_sql] = ACTIONS(3789), - [sym_int_literal] = ACTIONS(3789), - [sym_float_literal] = ACTIONS(3789), - [sym_rune_literal] = ACTIONS(3789), - [anon_sym_AT] = ACTIONS(3789), - [anon_sym_shared] = ACTIONS(3789), - [anon_sym_map_LBRACK] = ACTIONS(3789), - [anon_sym_chan] = ACTIONS(3789), - [anon_sym_thread] = ACTIONS(3789), + [sym_reference_expression] = STATE(4490), + [sym_type_reference_expression] = STATE(2453), + [sym_plain_type] = STATE(2542), + [sym__plain_type_without_special] = STATE(2587), + [sym_anon_struct_type] = STATE(2535), + [sym_multi_return_type] = STATE(2587), + [sym_result_type] = STATE(2587), + [sym_option_type] = STATE(2587), + [sym_qualified_type] = STATE(2453), + [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(3763), + [anon_sym_LF] = ACTIONS(561), + [anon_sym_CR] = ACTIONS(561), + [anon_sym_CR_LF] = ACTIONS(561), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_DOT] = ACTIONS(561), + [anon_sym_as] = ACTIONS(561), + [anon_sym_COMMA] = ACTIONS(561), + [anon_sym_RBRACE] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(3765), + [anon_sym_RPAREN] = ACTIONS(561), + [anon_sym_PIPE] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(3767), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(3769), + [anon_sym_SLASH] = ACTIONS(561), + [anon_sym_PERCENT] = ACTIONS(561), + [anon_sym_LT] = ACTIONS(561), + [anon_sym_GT] = ACTIONS(561), + [anon_sym_EQ_EQ] = ACTIONS(561), + [anon_sym_BANG_EQ] = ACTIONS(561), + [anon_sym_LT_EQ] = ACTIONS(561), + [anon_sym_GT_EQ] = ACTIONS(561), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_struct] = ACTIONS(3771), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_DASH_DASH] = ACTIONS(561), + [anon_sym_QMARK] = ACTIONS(3773), + [anon_sym_BANG] = ACTIONS(3775), + [anon_sym_LBRACK2] = ACTIONS(3777), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(3779), + [anon_sym_LT_LT] = ACTIONS(561), + [anon_sym_GT_GT] = ACTIONS(561), + [anon_sym_GT_GT_GT] = ACTIONS(561), + [anon_sym_AMP_CARET] = ACTIONS(561), + [anon_sym_AMP_AMP] = ACTIONS(561), + [anon_sym_PIPE_PIPE] = ACTIONS(561), + [anon_sym_or] = ACTIONS(561), + [anon_sym_QMARK_DOT] = ACTIONS(561), + [anon_sym_POUND_LBRACK] = ACTIONS(561), + [anon_sym_is] = ACTIONS(561), + [anon_sym_BANGis] = ACTIONS(561), + [anon_sym_in] = ACTIONS(561), + [anon_sym_BANGin] = ACTIONS(561), + [anon_sym_shared] = ACTIONS(3781), + [anon_sym_map_LBRACK] = ACTIONS(3783), + [anon_sym_chan] = ACTIONS(3785), + [anon_sym_thread] = ACTIONS(3787), [anon_sym_atomic] = ACTIONS(3789), - [anon_sym_assert] = ACTIONS(3789), - [anon_sym_defer] = ACTIONS(3789), - [anon_sym_goto] = ACTIONS(3789), - [anon_sym_break] = ACTIONS(3789), - [anon_sym_continue] = ACTIONS(3789), - [anon_sym_return] = ACTIONS(3789), - [anon_sym_DOLLARfor] = ACTIONS(3789), - [anon_sym_for] = ACTIONS(3789), - [anon_sym_POUND] = ACTIONS(3789), - [anon_sym_asm] = ACTIONS(3789), - [anon_sym_AT_LBRACK] = ACTIONS(3789), - [sym___double_quote] = ACTIONS(3789), - [sym___single_quote] = ACTIONS(3789), - [sym___c_double_quote] = ACTIONS(3789), - [sym___c_single_quote] = ACTIONS(3789), - [sym___r_double_quote] = ACTIONS(3789), - [sym___r_single_quote] = ACTIONS(3789), }, - [1424] = { - [aux_sym_strictly_expression_list_repeat1] = STATE(1417), + [1423] = { + [aux_sym__type_union_list_repeat1] = STATE(1419), [ts_builtin_sym_end] = ACTIONS(3791), [sym_identifier] = ACTIONS(3793), - [anon_sym_LF] = ACTIONS(3793), - [anon_sym_CR] = ACTIONS(3793), - [anon_sym_CR_LF] = ACTIONS(3793), - [sym_comment] = ACTIONS(487), + [anon_sym_LF] = ACTIONS(3795), + [anon_sym_CR] = ACTIONS(3795), + [anon_sym_CR_LF] = ACTIONS(3795), + [sym_comment] = ACTIONS(493), [anon_sym_DOT] = ACTIONS(3793), [anon_sym_LBRACE] = ACTIONS(3793), - [anon_sym_COMMA] = ACTIONS(3233), [anon_sym_const] = ACTIONS(3793), [anon_sym_LPAREN] = ACTIONS(3793), [anon_sym___global] = ACTIONS(3793), [anon_sym_type] = ACTIONS(3793), + [anon_sym_PIPE] = ACTIONS(3757), [anon_sym_fn] = ACTIONS(3793), [anon_sym_PLUS] = ACTIONS(3793), [anon_sym_DASH] = ACTIONS(3793), @@ -176781,456 +177037,753 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3793), [sym___r_single_quote] = ACTIONS(3793), }, + [1424] = { + [sym_reference_expression] = STATE(4490), + [sym_type_reference_expression] = STATE(2453), + [sym_plain_type] = STATE(2513), + [sym__plain_type_without_special] = STATE(2587), + [sym_anon_struct_type] = STATE(2535), + [sym_multi_return_type] = STATE(2587), + [sym_result_type] = STATE(2587), + [sym_option_type] = STATE(2587), + [sym_qualified_type] = STATE(2453), + [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(3763), + [anon_sym_LF] = ACTIONS(613), + [anon_sym_CR] = ACTIONS(613), + [anon_sym_CR_LF] = ACTIONS(613), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(613), + [anon_sym_DOT] = ACTIONS(613), + [anon_sym_as] = ACTIONS(613), + [anon_sym_COMMA] = ACTIONS(613), + [anon_sym_RBRACE] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(3765), + [anon_sym_RPAREN] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(613), + [anon_sym_fn] = ACTIONS(3767), + [anon_sym_PLUS] = ACTIONS(613), + [anon_sym_DASH] = ACTIONS(613), + [anon_sym_STAR] = ACTIONS(3769), + [anon_sym_SLASH] = ACTIONS(613), + [anon_sym_PERCENT] = ACTIONS(613), + [anon_sym_LT] = ACTIONS(613), + [anon_sym_GT] = ACTIONS(613), + [anon_sym_EQ_EQ] = ACTIONS(613), + [anon_sym_BANG_EQ] = ACTIONS(613), + [anon_sym_LT_EQ] = ACTIONS(613), + [anon_sym_GT_EQ] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(611), + [anon_sym_struct] = ACTIONS(3771), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_QMARK] = ACTIONS(3773), + [anon_sym_BANG] = ACTIONS(3775), + [anon_sym_LBRACK2] = ACTIONS(3777), + [anon_sym_CARET] = ACTIONS(613), + [anon_sym_AMP] = ACTIONS(3779), + [anon_sym_LT_LT] = ACTIONS(613), + [anon_sym_GT_GT] = ACTIONS(613), + [anon_sym_GT_GT_GT] = ACTIONS(613), + [anon_sym_AMP_CARET] = ACTIONS(613), + [anon_sym_AMP_AMP] = ACTIONS(613), + [anon_sym_PIPE_PIPE] = ACTIONS(613), + [anon_sym_or] = ACTIONS(613), + [anon_sym_QMARK_DOT] = ACTIONS(613), + [anon_sym_POUND_LBRACK] = ACTIONS(613), + [anon_sym_is] = ACTIONS(613), + [anon_sym_BANGis] = ACTIONS(613), + [anon_sym_in] = ACTIONS(613), + [anon_sym_BANGin] = ACTIONS(613), + [anon_sym_shared] = ACTIONS(3781), + [anon_sym_map_LBRACK] = ACTIONS(3783), + [anon_sym_chan] = ACTIONS(3785), + [anon_sym_thread] = ACTIONS(3787), + [anon_sym_atomic] = ACTIONS(3789), + }, [1425] = { - [sym_reference_expression] = STATE(4486), - [sym_type_reference_expression] = STATE(2457), - [sym_plain_type] = STATE(2504), - [sym__plain_type_without_special] = STATE(2570), - [sym_anon_struct_type] = STATE(2569), - [sym_multi_return_type] = STATE(2570), - [sym_result_type] = STATE(2570), - [sym_option_type] = STATE(2570), - [sym_qualified_type] = STATE(2457), - [sym_fixed_array_type] = STATE(2569), - [sym_array_type] = STATE(2569), - [sym_pointer_type] = STATE(2569), - [sym_wrong_pointer_type] = STATE(2569), - [sym_map_type] = STATE(2569), - [sym_channel_type] = STATE(2569), - [sym_shared_type] = STATE(2569), - [sym_thread_type] = STATE(2569), - [sym_atomic_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_function_type] = STATE(2569), - [sym_identifier] = ACTIONS(3730), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(589), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_RBRACE] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3732), - [anon_sym_RPAREN] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3734), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_struct] = ACTIONS(3738), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(3740), - [anon_sym_BANG] = ACTIONS(3742), - [anon_sym_LBRACK2] = ACTIONS(3744), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(3746), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(3748), - [anon_sym_map_LBRACK] = ACTIONS(3750), - [anon_sym_chan] = ACTIONS(3752), - [anon_sym_thread] = ACTIONS(3754), - [anon_sym_atomic] = ACTIONS(3756), + [ts_builtin_sym_end] = ACTIONS(2972), + [sym_identifier] = ACTIONS(2974), + [anon_sym_LF] = ACTIONS(2974), + [anon_sym_CR] = ACTIONS(2974), + [anon_sym_CR_LF] = ACTIONS(2974), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2974), + [anon_sym_LBRACE] = ACTIONS(2974), + [anon_sym_const] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2974), + [anon_sym___global] = ACTIONS(2974), + [anon_sym_type] = ACTIONS(2974), + [anon_sym_PIPE] = ACTIONS(2974), + [anon_sym_fn] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_struct] = ACTIONS(2974), + [anon_sym_union] = ACTIONS(2974), + [anon_sym_pub] = ACTIONS(2974), + [anon_sym_mut] = ACTIONS(2974), + [anon_sym_enum] = ACTIONS(2974), + [anon_sym_interface] = ACTIONS(2974), + [anon_sym_QMARK] = ACTIONS(2974), + [anon_sym_BANG] = ACTIONS(2974), + [anon_sym_go] = ACTIONS(2974), + [anon_sym_spawn] = ACTIONS(2974), + [anon_sym_json_DOTdecode] = ACTIONS(2974), + [anon_sym_LBRACK2] = ACTIONS(2974), + [anon_sym_TILDE] = ACTIONS(2974), + [anon_sym_CARET] = ACTIONS(2974), + [anon_sym_AMP] = ACTIONS(2974), + [anon_sym_LT_DASH] = ACTIONS(2974), + [sym_none] = ACTIONS(2974), + [sym_true] = ACTIONS(2974), + [sym_false] = ACTIONS(2974), + [sym_nil] = ACTIONS(2974), + [anon_sym_if] = ACTIONS(2974), + [anon_sym_DOLLARif] = ACTIONS(2974), + [anon_sym_match] = ACTIONS(2974), + [anon_sym_select] = ACTIONS(2974), + [anon_sym_lock] = ACTIONS(2974), + [anon_sym_rlock] = ACTIONS(2974), + [anon_sym_unsafe] = ACTIONS(2974), + [anon_sym_sql] = ACTIONS(2974), + [sym_int_literal] = ACTIONS(2974), + [sym_float_literal] = ACTIONS(2974), + [sym_rune_literal] = ACTIONS(2974), + [anon_sym_AT] = ACTIONS(2974), + [anon_sym_shared] = ACTIONS(2974), + [anon_sym_map_LBRACK] = ACTIONS(2974), + [anon_sym_chan] = ACTIONS(2974), + [anon_sym_thread] = ACTIONS(2974), + [anon_sym_atomic] = ACTIONS(2974), + [anon_sym_assert] = ACTIONS(2974), + [anon_sym_defer] = ACTIONS(2974), + [anon_sym_goto] = ACTIONS(2974), + [anon_sym_break] = ACTIONS(2974), + [anon_sym_continue] = ACTIONS(2974), + [anon_sym_return] = ACTIONS(2974), + [anon_sym_DOLLARfor] = ACTIONS(2974), + [anon_sym_for] = ACTIONS(2974), + [anon_sym_POUND] = ACTIONS(2974), + [anon_sym_asm] = ACTIONS(2974), + [anon_sym_AT_LBRACK] = ACTIONS(2974), + [sym___double_quote] = ACTIONS(2974), + [sym___single_quote] = ACTIONS(2974), + [sym___c_double_quote] = ACTIONS(2974), + [sym___c_single_quote] = ACTIONS(2974), + [sym___r_double_quote] = ACTIONS(2974), + [sym___r_single_quote] = ACTIONS(2974), }, [1426] = { - [sym_reference_expression] = STATE(4486), - [sym_type_reference_expression] = STATE(2457), - [sym_plain_type] = STATE(2492), - [sym__plain_type_without_special] = STATE(2570), - [sym_anon_struct_type] = STATE(2569), - [sym_multi_return_type] = STATE(2570), - [sym_result_type] = STATE(2570), - [sym_option_type] = STATE(2570), - [sym_qualified_type] = STATE(2457), - [sym_fixed_array_type] = STATE(2569), - [sym_array_type] = STATE(2569), - [sym_pointer_type] = STATE(2569), - [sym_wrong_pointer_type] = STATE(2569), - [sym_map_type] = STATE(2569), - [sym_channel_type] = STATE(2569), - [sym_shared_type] = STATE(2569), - [sym_thread_type] = STATE(2569), - [sym_atomic_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_function_type] = STATE(2569), - [sym_identifier] = ACTIONS(3730), - [anon_sym_LF] = ACTIONS(615), - [anon_sym_CR] = ACTIONS(615), - [anon_sym_CR_LF] = ACTIONS(615), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(615), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(3732), - [anon_sym_RPAREN] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(3734), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(3738), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(3740), - [anon_sym_BANG] = ACTIONS(3742), - [anon_sym_LBRACK2] = ACTIONS(3744), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(3746), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_or] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(615), - [anon_sym_POUND_LBRACK] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(615), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(3748), - [anon_sym_map_LBRACK] = ACTIONS(3750), - [anon_sym_chan] = ACTIONS(3752), - [anon_sym_thread] = ACTIONS(3754), - [anon_sym_atomic] = ACTIONS(3756), + [ts_builtin_sym_end] = ACTIONS(2844), + [sym_identifier] = ACTIONS(2846), + [anon_sym_LF] = ACTIONS(2846), + [anon_sym_CR] = ACTIONS(2846), + [anon_sym_CR_LF] = ACTIONS(2846), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2846), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(2846), + [anon_sym_LPAREN] = ACTIONS(2846), + [anon_sym___global] = ACTIONS(2846), + [anon_sym_type] = ACTIONS(2846), + [anon_sym_PIPE] = ACTIONS(2846), + [anon_sym_fn] = ACTIONS(2846), + [anon_sym_PLUS] = ACTIONS(2846), + [anon_sym_DASH] = ACTIONS(2846), + [anon_sym_STAR] = ACTIONS(2846), + [anon_sym_LBRACK] = ACTIONS(2844), + [anon_sym_struct] = ACTIONS(2846), + [anon_sym_union] = ACTIONS(2846), + [anon_sym_pub] = ACTIONS(2846), + [anon_sym_mut] = ACTIONS(2846), + [anon_sym_enum] = ACTIONS(2846), + [anon_sym_interface] = ACTIONS(2846), + [anon_sym_QMARK] = ACTIONS(2846), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_go] = ACTIONS(2846), + [anon_sym_spawn] = ACTIONS(2846), + [anon_sym_json_DOTdecode] = ACTIONS(2846), + [anon_sym_LBRACK2] = ACTIONS(2846), + [anon_sym_TILDE] = ACTIONS(2846), + [anon_sym_CARET] = ACTIONS(2846), + [anon_sym_AMP] = ACTIONS(2846), + [anon_sym_LT_DASH] = ACTIONS(2846), + [sym_none] = ACTIONS(2846), + [sym_true] = ACTIONS(2846), + [sym_false] = ACTIONS(2846), + [sym_nil] = ACTIONS(2846), + [anon_sym_if] = ACTIONS(2846), + [anon_sym_DOLLARif] = ACTIONS(2846), + [anon_sym_match] = ACTIONS(2846), + [anon_sym_select] = ACTIONS(2846), + [anon_sym_lock] = ACTIONS(2846), + [anon_sym_rlock] = ACTIONS(2846), + [anon_sym_unsafe] = ACTIONS(2846), + [anon_sym_sql] = ACTIONS(2846), + [sym_int_literal] = ACTIONS(2846), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2846), + [anon_sym_shared] = ACTIONS(2846), + [anon_sym_map_LBRACK] = ACTIONS(2846), + [anon_sym_chan] = ACTIONS(2846), + [anon_sym_thread] = ACTIONS(2846), + [anon_sym_atomic] = ACTIONS(2846), + [anon_sym_assert] = ACTIONS(2846), + [anon_sym_defer] = ACTIONS(2846), + [anon_sym_goto] = ACTIONS(2846), + [anon_sym_break] = ACTIONS(2846), + [anon_sym_continue] = ACTIONS(2846), + [anon_sym_return] = ACTIONS(2846), + [anon_sym_DOLLARfor] = ACTIONS(2846), + [anon_sym_for] = ACTIONS(2846), + [anon_sym_POUND] = ACTIONS(2846), + [anon_sym_asm] = ACTIONS(2846), + [anon_sym_AT_LBRACK] = ACTIONS(2846), + [sym___double_quote] = ACTIONS(2846), + [sym___single_quote] = ACTIONS(2846), + [sym___c_double_quote] = ACTIONS(2846), + [sym___c_single_quote] = ACTIONS(2846), + [sym___r_double_quote] = ACTIONS(2846), + [sym___r_single_quote] = ACTIONS(2846), }, [1427] = { - [ts_builtin_sym_end] = ACTIONS(2702), - [sym_identifier] = ACTIONS(2704), - [anon_sym_LF] = ACTIONS(2704), - [anon_sym_CR] = ACTIONS(2704), - [anon_sym_CR_LF] = ACTIONS(2704), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_const] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym___global] = ACTIONS(2704), - [anon_sym_type] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_union] = ACTIONS(2704), - [anon_sym_pub] = ACTIONS(2704), - [anon_sym_mut] = ACTIONS(2704), - [anon_sym_enum] = ACTIONS(2704), - [anon_sym_interface] = ACTIONS(2704), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_go] = ACTIONS(2704), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2704), - [anon_sym_LBRACK2] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_CARET] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_LT_DASH] = ACTIONS(2704), - [sym_none] = ACTIONS(2704), - [sym_true] = ACTIONS(2704), - [sym_false] = ACTIONS(2704), - [sym_nil] = ACTIONS(2704), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_DOLLARif] = ACTIONS(2704), - [anon_sym_match] = ACTIONS(2704), - [anon_sym_select] = ACTIONS(2704), - [anon_sym_lock] = ACTIONS(2704), - [anon_sym_rlock] = ACTIONS(2704), - [anon_sym_unsafe] = ACTIONS(2704), - [anon_sym_sql] = ACTIONS(2704), - [sym_int_literal] = ACTIONS(2704), - [sym_float_literal] = ACTIONS(2704), - [sym_rune_literal] = ACTIONS(2704), - [anon_sym_AT] = ACTIONS(2704), - [anon_sym_shared] = ACTIONS(2704), - [anon_sym_map_LBRACK] = ACTIONS(2704), - [anon_sym_chan] = ACTIONS(2704), - [anon_sym_thread] = ACTIONS(2704), - [anon_sym_atomic] = ACTIONS(2704), - [anon_sym_assert] = ACTIONS(2704), - [anon_sym_defer] = ACTIONS(2704), - [anon_sym_goto] = ACTIONS(2704), - [anon_sym_break] = ACTIONS(2704), - [anon_sym_continue] = ACTIONS(2704), - [anon_sym_return] = ACTIONS(2704), - [anon_sym_DOLLARfor] = ACTIONS(2704), - [anon_sym_for] = ACTIONS(2704), - [anon_sym_POUND] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2704), - [anon_sym_AT_LBRACK] = ACTIONS(2704), - [sym___double_quote] = ACTIONS(2704), - [sym___single_quote] = ACTIONS(2704), - [sym___c_double_quote] = ACTIONS(2704), - [sym___c_single_quote] = ACTIONS(2704), - [sym___r_double_quote] = ACTIONS(2704), - [sym___r_single_quote] = ACTIONS(2704), + [aux_sym_strictly_expression_list_repeat1] = STATE(1427), + [ts_builtin_sym_end] = ACTIONS(3309), + [sym_identifier] = ACTIONS(1716), + [anon_sym_LF] = ACTIONS(1716), + [anon_sym_CR] = ACTIONS(1716), + [anon_sym_CR_LF] = ACTIONS(1716), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(3798), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym___global] = ACTIONS(1716), + [anon_sym_type] = ACTIONS(1716), + [anon_sym_fn] = ACTIONS(1716), + [anon_sym_PLUS] = ACTIONS(1716), + [anon_sym_DASH] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1716), + [anon_sym_struct] = ACTIONS(1716), + [anon_sym_union] = ACTIONS(1716), + [anon_sym_pub] = ACTIONS(1716), + [anon_sym_mut] = ACTIONS(1716), + [anon_sym_enum] = ACTIONS(1716), + [anon_sym_interface] = ACTIONS(1716), + [anon_sym_QMARK] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(1716), + [anon_sym_go] = ACTIONS(1716), + [anon_sym_spawn] = ACTIONS(1716), + [anon_sym_json_DOTdecode] = ACTIONS(1716), + [anon_sym_LBRACK2] = ACTIONS(1716), + [anon_sym_TILDE] = ACTIONS(1716), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1716), + [anon_sym_LT_DASH] = ACTIONS(1716), + [sym_none] = ACTIONS(1716), + [sym_true] = ACTIONS(1716), + [sym_false] = ACTIONS(1716), + [sym_nil] = ACTIONS(1716), + [anon_sym_if] = ACTIONS(1716), + [anon_sym_DOLLARif] = ACTIONS(1716), + [anon_sym_match] = ACTIONS(1716), + [anon_sym_select] = ACTIONS(1716), + [anon_sym_lock] = ACTIONS(1716), + [anon_sym_rlock] = ACTIONS(1716), + [anon_sym_unsafe] = ACTIONS(1716), + [anon_sym_sql] = ACTIONS(1716), + [sym_int_literal] = ACTIONS(1716), + [sym_float_literal] = ACTIONS(1716), + [sym_rune_literal] = ACTIONS(1716), + [anon_sym_AT] = ACTIONS(1716), + [anon_sym_shared] = ACTIONS(1716), + [anon_sym_map_LBRACK] = ACTIONS(1716), + [anon_sym_chan] = ACTIONS(1716), + [anon_sym_thread] = ACTIONS(1716), + [anon_sym_atomic] = ACTIONS(1716), + [anon_sym_assert] = ACTIONS(1716), + [anon_sym_defer] = ACTIONS(1716), + [anon_sym_goto] = ACTIONS(1716), + [anon_sym_break] = ACTIONS(1716), + [anon_sym_continue] = ACTIONS(1716), + [anon_sym_return] = ACTIONS(1716), + [anon_sym_DOLLARfor] = ACTIONS(1716), + [anon_sym_for] = ACTIONS(1716), + [anon_sym_POUND] = ACTIONS(1716), + [anon_sym_asm] = ACTIONS(1716), + [anon_sym_AT_LBRACK] = ACTIONS(1716), + [sym___double_quote] = ACTIONS(1716), + [sym___single_quote] = ACTIONS(1716), + [sym___c_double_quote] = ACTIONS(1716), + [sym___c_single_quote] = ACTIONS(1716), + [sym___r_double_quote] = ACTIONS(1716), + [sym___r_single_quote] = ACTIONS(1716), }, [1428] = { - [ts_builtin_sym_end] = ACTIONS(3305), - [sym_identifier] = ACTIONS(1690), - [anon_sym_LF] = ACTIONS(1690), - [anon_sym_CR] = ACTIONS(1690), - [anon_sym_CR_LF] = ACTIONS(1690), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_COMMA] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1690), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym___global] = ACTIONS(1690), - [anon_sym_type] = ACTIONS(1690), - [anon_sym_fn] = ACTIONS(1690), - [anon_sym_PLUS] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1690), - [anon_sym_STAR] = ACTIONS(1690), - [anon_sym_struct] = ACTIONS(1690), - [anon_sym_union] = ACTIONS(1690), - [anon_sym_pub] = ACTIONS(1690), - [anon_sym_mut] = ACTIONS(1690), - [anon_sym_enum] = ACTIONS(1690), - [anon_sym_interface] = ACTIONS(1690), - [anon_sym_QMARK] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_go] = ACTIONS(1690), - [anon_sym_spawn] = ACTIONS(1690), - [anon_sym_json_DOTdecode] = ACTIONS(1690), - [anon_sym_LBRACK2] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_CARET] = ACTIONS(1690), - [anon_sym_AMP] = ACTIONS(1690), - [anon_sym_LT_DASH] = ACTIONS(1690), - [sym_none] = ACTIONS(1690), - [sym_true] = ACTIONS(1690), - [sym_false] = ACTIONS(1690), - [sym_nil] = ACTIONS(1690), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_DOLLARif] = ACTIONS(1690), - [anon_sym_match] = ACTIONS(1690), - [anon_sym_select] = ACTIONS(1690), - [anon_sym_lock] = ACTIONS(1690), - [anon_sym_rlock] = ACTIONS(1690), - [anon_sym_unsafe] = ACTIONS(1690), - [anon_sym_sql] = ACTIONS(1690), - [sym_int_literal] = ACTIONS(1690), - [sym_float_literal] = ACTIONS(1690), - [sym_rune_literal] = ACTIONS(1690), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_shared] = ACTIONS(1690), - [anon_sym_map_LBRACK] = ACTIONS(1690), - [anon_sym_chan] = ACTIONS(1690), - [anon_sym_thread] = ACTIONS(1690), - [anon_sym_atomic] = ACTIONS(1690), - [anon_sym_assert] = ACTIONS(1690), - [anon_sym_defer] = ACTIONS(1690), - [anon_sym_goto] = ACTIONS(1690), - [anon_sym_break] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(1690), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_DOLLARfor] = ACTIONS(1690), - [anon_sym_for] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1690), - [anon_sym_asm] = ACTIONS(1690), - [anon_sym_AT_LBRACK] = ACTIONS(1690), - [sym___double_quote] = ACTIONS(1690), - [sym___single_quote] = ACTIONS(1690), - [sym___c_double_quote] = ACTIONS(1690), - [sym___c_single_quote] = ACTIONS(1690), - [sym___r_double_quote] = ACTIONS(1690), - [sym___r_single_quote] = ACTIONS(1690), + [sym_reference_expression] = STATE(4490), + [sym_type_reference_expression] = STATE(2453), + [sym_plain_type] = STATE(2531), + [sym__plain_type_without_special] = STATE(2587), + [sym_anon_struct_type] = STATE(2535), + [sym_multi_return_type] = STATE(2587), + [sym_result_type] = STATE(2587), + [sym_option_type] = STATE(2587), + [sym_qualified_type] = STATE(2453), + [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(3763), + [anon_sym_LF] = ACTIONS(621), + [anon_sym_CR] = ACTIONS(621), + [anon_sym_CR_LF] = ACTIONS(621), + [sym_comment] = ACTIONS(493), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_as] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(3765), + [anon_sym_RPAREN] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_fn] = ACTIONS(3767), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(3769), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(621), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_EQ_EQ] = ACTIONS(621), + [anon_sym_BANG_EQ] = ACTIONS(621), + [anon_sym_LT_EQ] = ACTIONS(621), + [anon_sym_GT_EQ] = ACTIONS(621), + [anon_sym_LBRACK] = ACTIONS(619), + [anon_sym_struct] = ACTIONS(3771), + [anon_sym_PLUS_PLUS] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(3773), + [anon_sym_BANG] = ACTIONS(3775), + [anon_sym_LBRACK2] = ACTIONS(3777), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(3779), + [anon_sym_LT_LT] = ACTIONS(621), + [anon_sym_GT_GT] = ACTIONS(621), + [anon_sym_GT_GT_GT] = ACTIONS(621), + [anon_sym_AMP_CARET] = ACTIONS(621), + [anon_sym_AMP_AMP] = ACTIONS(621), + [anon_sym_PIPE_PIPE] = ACTIONS(621), + [anon_sym_or] = ACTIONS(621), + [anon_sym_QMARK_DOT] = ACTIONS(621), + [anon_sym_POUND_LBRACK] = ACTIONS(621), + [anon_sym_is] = ACTIONS(621), + [anon_sym_BANGis] = ACTIONS(621), + [anon_sym_in] = ACTIONS(621), + [anon_sym_BANGin] = ACTIONS(621), + [anon_sym_shared] = ACTIONS(3781), + [anon_sym_map_LBRACK] = ACTIONS(3783), + [anon_sym_chan] = ACTIONS(3785), + [anon_sym_thread] = ACTIONS(3787), + [anon_sym_atomic] = ACTIONS(3789), }, [1429] = { - [sym_block] = STATE(1547), - [ts_builtin_sym_end] = ACTIONS(3795), - [sym_identifier] = ACTIONS(3797), - [anon_sym_LF] = ACTIONS(3797), - [anon_sym_CR] = ACTIONS(3797), - [anon_sym_CR_LF] = ACTIONS(3797), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3797), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3797), - [anon_sym_LPAREN] = ACTIONS(3797), - [anon_sym___global] = ACTIONS(3797), - [anon_sym_type] = ACTIONS(3797), - [anon_sym_fn] = ACTIONS(3797), - [anon_sym_PLUS] = ACTIONS(3797), - [anon_sym_DASH] = ACTIONS(3797), - [anon_sym_STAR] = ACTIONS(3797), - [anon_sym_struct] = ACTIONS(3797), - [anon_sym_union] = ACTIONS(3797), - [anon_sym_pub] = ACTIONS(3797), - [anon_sym_mut] = ACTIONS(3797), - [anon_sym_enum] = ACTIONS(3797), - [anon_sym_interface] = ACTIONS(3797), - [anon_sym_QMARK] = ACTIONS(3797), - [anon_sym_BANG] = ACTIONS(3797), - [anon_sym_go] = ACTIONS(3797), - [anon_sym_spawn] = ACTIONS(3797), - [anon_sym_json_DOTdecode] = ACTIONS(3797), - [anon_sym_LBRACK2] = ACTIONS(3797), - [anon_sym_TILDE] = ACTIONS(3797), - [anon_sym_CARET] = ACTIONS(3797), - [anon_sym_AMP] = ACTIONS(3797), - [anon_sym_LT_DASH] = ACTIONS(3797), - [sym_none] = ACTIONS(3797), - [sym_true] = ACTIONS(3797), - [sym_false] = ACTIONS(3797), - [sym_nil] = ACTIONS(3797), - [anon_sym_if] = ACTIONS(3797), - [anon_sym_DOLLARif] = ACTIONS(3797), - [anon_sym_match] = ACTIONS(3797), - [anon_sym_select] = ACTIONS(3797), - [anon_sym_lock] = ACTIONS(3797), - [anon_sym_rlock] = ACTIONS(3797), - [anon_sym_unsafe] = ACTIONS(3797), - [anon_sym_sql] = ACTIONS(3797), - [sym_int_literal] = ACTIONS(3797), - [sym_float_literal] = ACTIONS(3797), - [sym_rune_literal] = ACTIONS(3797), - [anon_sym_AT] = ACTIONS(3797), - [anon_sym_shared] = ACTIONS(3797), - [anon_sym_map_LBRACK] = ACTIONS(3797), - [anon_sym_chan] = ACTIONS(3797), - [anon_sym_thread] = ACTIONS(3797), - [anon_sym_atomic] = ACTIONS(3797), - [anon_sym_assert] = ACTIONS(3797), - [anon_sym_defer] = ACTIONS(3797), - [anon_sym_goto] = ACTIONS(3797), - [anon_sym_break] = ACTIONS(3797), - [anon_sym_continue] = ACTIONS(3797), - [anon_sym_return] = ACTIONS(3797), - [anon_sym_DOLLARfor] = ACTIONS(3797), - [anon_sym_for] = ACTIONS(3797), - [anon_sym_POUND] = ACTIONS(3797), - [anon_sym_asm] = ACTIONS(3797), - [anon_sym_AT_LBRACK] = ACTIONS(3797), - [sym___double_quote] = ACTIONS(3797), - [sym___single_quote] = ACTIONS(3797), - [sym___c_double_quote] = ACTIONS(3797), - [sym___c_single_quote] = ACTIONS(3797), - [sym___r_double_quote] = ACTIONS(3797), - [sym___r_single_quote] = ACTIONS(3797), + [ts_builtin_sym_end] = ACTIONS(2844), + [sym_identifier] = ACTIONS(2846), + [anon_sym_LF] = ACTIONS(2846), + [anon_sym_CR] = ACTIONS(2846), + [anon_sym_CR_LF] = ACTIONS(2846), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2742), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(2846), + [anon_sym_LPAREN] = ACTIONS(2846), + [anon_sym___global] = ACTIONS(2846), + [anon_sym_type] = ACTIONS(2846), + [anon_sym_PIPE] = ACTIONS(2846), + [anon_sym_fn] = ACTIONS(2846), + [anon_sym_PLUS] = ACTIONS(2846), + [anon_sym_DASH] = ACTIONS(2846), + [anon_sym_STAR] = ACTIONS(2846), + [anon_sym_LBRACK] = ACTIONS(2844), + [anon_sym_struct] = ACTIONS(2846), + [anon_sym_union] = ACTIONS(2846), + [anon_sym_pub] = ACTIONS(2846), + [anon_sym_mut] = ACTIONS(2846), + [anon_sym_enum] = ACTIONS(2846), + [anon_sym_interface] = ACTIONS(2846), + [anon_sym_QMARK] = ACTIONS(2846), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_go] = ACTIONS(2846), + [anon_sym_spawn] = ACTIONS(2846), + [anon_sym_json_DOTdecode] = ACTIONS(2846), + [anon_sym_LBRACK2] = ACTIONS(2846), + [anon_sym_TILDE] = ACTIONS(2846), + [anon_sym_CARET] = ACTIONS(2846), + [anon_sym_AMP] = ACTIONS(2846), + [anon_sym_LT_DASH] = ACTIONS(2846), + [sym_none] = ACTIONS(2846), + [sym_true] = ACTIONS(2846), + [sym_false] = ACTIONS(2846), + [sym_nil] = ACTIONS(2846), + [anon_sym_if] = ACTIONS(2846), + [anon_sym_DOLLARif] = ACTIONS(2846), + [anon_sym_match] = ACTIONS(2846), + [anon_sym_select] = ACTIONS(2846), + [anon_sym_lock] = ACTIONS(2846), + [anon_sym_rlock] = ACTIONS(2846), + [anon_sym_unsafe] = ACTIONS(2846), + [anon_sym_sql] = ACTIONS(2846), + [sym_int_literal] = ACTIONS(2846), + [sym_float_literal] = ACTIONS(2846), + [sym_rune_literal] = ACTIONS(2846), + [anon_sym_AT] = ACTIONS(2846), + [anon_sym_shared] = ACTIONS(2846), + [anon_sym_map_LBRACK] = ACTIONS(2846), + [anon_sym_chan] = ACTIONS(2846), + [anon_sym_thread] = ACTIONS(2846), + [anon_sym_atomic] = ACTIONS(2846), + [anon_sym_assert] = ACTIONS(2846), + [anon_sym_defer] = ACTIONS(2846), + [anon_sym_goto] = ACTIONS(2846), + [anon_sym_break] = ACTIONS(2846), + [anon_sym_continue] = ACTIONS(2846), + [anon_sym_return] = ACTIONS(2846), + [anon_sym_DOLLARfor] = ACTIONS(2846), + [anon_sym_for] = ACTIONS(2846), + [anon_sym_POUND] = ACTIONS(2846), + [anon_sym_asm] = ACTIONS(2846), + [anon_sym_AT_LBRACK] = ACTIONS(2846), + [sym___double_quote] = ACTIONS(2846), + [sym___single_quote] = ACTIONS(2846), + [sym___c_double_quote] = ACTIONS(2846), + [sym___c_single_quote] = ACTIONS(2846), + [sym___r_double_quote] = ACTIONS(2846), + [sym___r_single_quote] = ACTIONS(2846), }, [1430] = { - [ts_builtin_sym_end] = ACTIONS(3131), - [sym_identifier] = ACTIONS(3133), - [anon_sym_LF] = ACTIONS(3133), - [anon_sym_CR] = ACTIONS(3133), - [anon_sym_CR_LF] = ACTIONS(3133), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_const] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym___global] = ACTIONS(3133), - [anon_sym_type] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3133), - [anon_sym_fn] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_struct] = ACTIONS(3133), - [anon_sym_union] = ACTIONS(3133), - [anon_sym_pub] = ACTIONS(3133), - [anon_sym_mut] = ACTIONS(3133), - [anon_sym_enum] = ACTIONS(3133), - [anon_sym_interface] = ACTIONS(3133), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_go] = ACTIONS(3133), - [anon_sym_spawn] = ACTIONS(3133), - [anon_sym_json_DOTdecode] = ACTIONS(3133), - [anon_sym_LBRACK2] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_CARET] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_LT_DASH] = ACTIONS(3133), - [sym_none] = ACTIONS(3133), - [sym_true] = ACTIONS(3133), - [sym_false] = ACTIONS(3133), - [sym_nil] = ACTIONS(3133), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_DOLLARif] = ACTIONS(3133), - [anon_sym_match] = ACTIONS(3133), - [anon_sym_select] = ACTIONS(3133), - [anon_sym_lock] = ACTIONS(3133), - [anon_sym_rlock] = ACTIONS(3133), - [anon_sym_unsafe] = ACTIONS(3133), - [anon_sym_sql] = ACTIONS(3133), - [sym_int_literal] = ACTIONS(3133), - [sym_float_literal] = ACTIONS(3133), - [sym_rune_literal] = ACTIONS(3133), - [anon_sym_AT] = ACTIONS(3133), - [anon_sym_shared] = ACTIONS(3133), - [anon_sym_map_LBRACK] = ACTIONS(3133), - [anon_sym_chan] = ACTIONS(3133), - [anon_sym_thread] = ACTIONS(3133), - [anon_sym_atomic] = ACTIONS(3133), - [anon_sym_assert] = ACTIONS(3133), - [anon_sym_defer] = ACTIONS(3133), - [anon_sym_goto] = ACTIONS(3133), - [anon_sym_break] = ACTIONS(3133), - [anon_sym_continue] = ACTIONS(3133), - [anon_sym_return] = ACTIONS(3133), - [anon_sym_DOLLARfor] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3133), - [anon_sym_POUND] = ACTIONS(3133), - [anon_sym_asm] = ACTIONS(3133), - [anon_sym_AT_LBRACK] = ACTIONS(3133), - [sym___double_quote] = ACTIONS(3133), - [sym___single_quote] = ACTIONS(3133), - [sym___c_double_quote] = ACTIONS(3133), - [sym___c_single_quote] = ACTIONS(3133), - [sym___r_double_quote] = ACTIONS(3133), - [sym___r_single_quote] = ACTIONS(3133), + [aux_sym_strictly_expression_list_repeat1] = STATE(1421), + [ts_builtin_sym_end] = ACTIONS(3233), + [sym_identifier] = ACTIONS(1780), + [anon_sym_LF] = ACTIONS(1780), + [anon_sym_CR] = ACTIONS(1780), + [anon_sym_CR_LF] = ACTIONS(1780), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1780), + [anon_sym_COMMA] = ACTIONS(3239), + [anon_sym_const] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1780), + [anon_sym___global] = ACTIONS(1780), + [anon_sym_type] = ACTIONS(1780), + [anon_sym_fn] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_struct] = ACTIONS(1780), + [anon_sym_union] = ACTIONS(1780), + [anon_sym_pub] = ACTIONS(1780), + [anon_sym_mut] = ACTIONS(1780), + [anon_sym_enum] = ACTIONS(1780), + [anon_sym_interface] = ACTIONS(1780), + [anon_sym_QMARK] = ACTIONS(1780), + [anon_sym_BANG] = ACTIONS(1780), + [anon_sym_go] = ACTIONS(1780), + [anon_sym_spawn] = ACTIONS(1780), + [anon_sym_json_DOTdecode] = ACTIONS(1780), + [anon_sym_LBRACK2] = ACTIONS(1780), + [anon_sym_TILDE] = ACTIONS(1780), + [anon_sym_CARET] = ACTIONS(1780), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_LT_DASH] = ACTIONS(1780), + [sym_none] = ACTIONS(1780), + [sym_true] = ACTIONS(1780), + [sym_false] = ACTIONS(1780), + [sym_nil] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_DOLLARif] = ACTIONS(1780), + [anon_sym_match] = ACTIONS(1780), + [anon_sym_select] = ACTIONS(1780), + [anon_sym_lock] = ACTIONS(1780), + [anon_sym_rlock] = ACTIONS(1780), + [anon_sym_unsafe] = ACTIONS(1780), + [anon_sym_sql] = ACTIONS(1780), + [sym_int_literal] = ACTIONS(1780), + [sym_float_literal] = ACTIONS(1780), + [sym_rune_literal] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(1780), + [anon_sym_shared] = ACTIONS(1780), + [anon_sym_map_LBRACK] = ACTIONS(1780), + [anon_sym_chan] = ACTIONS(1780), + [anon_sym_thread] = ACTIONS(1780), + [anon_sym_atomic] = ACTIONS(1780), + [anon_sym_assert] = ACTIONS(1780), + [anon_sym_defer] = ACTIONS(1780), + [anon_sym_goto] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_DOLLARfor] = ACTIONS(1780), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(1780), + [anon_sym_asm] = ACTIONS(1780), + [anon_sym_AT_LBRACK] = ACTIONS(1780), + [sym___double_quote] = ACTIONS(1780), + [sym___single_quote] = ACTIONS(1780), + [sym___c_double_quote] = ACTIONS(1780), + [sym___c_single_quote] = ACTIONS(1780), + [sym___r_double_quote] = ACTIONS(1780), + [sym___r_single_quote] = ACTIONS(1780), }, [1431] = { - [sym_block] = STATE(1540), + [ts_builtin_sym_end] = ACTIONS(2924), + [sym_identifier] = ACTIONS(2926), + [anon_sym_LF] = ACTIONS(2926), + [anon_sym_CR] = ACTIONS(2926), + [anon_sym_CR_LF] = ACTIONS(2926), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2926), + [anon_sym_LBRACE] = ACTIONS(2926), + [anon_sym_const] = ACTIONS(2926), + [anon_sym_LPAREN] = ACTIONS(2926), + [anon_sym___global] = ACTIONS(2926), + [anon_sym_type] = ACTIONS(2926), + [anon_sym_PIPE] = ACTIONS(2926), + [anon_sym_fn] = ACTIONS(2926), + [anon_sym_PLUS] = ACTIONS(2926), + [anon_sym_DASH] = ACTIONS(2926), + [anon_sym_STAR] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(2926), + [anon_sym_union] = ACTIONS(2926), + [anon_sym_pub] = ACTIONS(2926), + [anon_sym_mut] = ACTIONS(2926), + [anon_sym_enum] = ACTIONS(2926), + [anon_sym_interface] = ACTIONS(2926), + [anon_sym_QMARK] = ACTIONS(2926), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_go] = ACTIONS(2926), + [anon_sym_spawn] = ACTIONS(2926), + [anon_sym_json_DOTdecode] = ACTIONS(2926), + [anon_sym_LBRACK2] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2926), + [anon_sym_CARET] = ACTIONS(2926), + [anon_sym_AMP] = ACTIONS(2926), + [anon_sym_LT_DASH] = ACTIONS(2926), + [sym_none] = ACTIONS(2926), + [sym_true] = ACTIONS(2926), + [sym_false] = ACTIONS(2926), + [sym_nil] = ACTIONS(2926), + [anon_sym_if] = ACTIONS(2926), + [anon_sym_DOLLARif] = ACTIONS(2926), + [anon_sym_match] = ACTIONS(2926), + [anon_sym_select] = ACTIONS(2926), + [anon_sym_lock] = ACTIONS(2926), + [anon_sym_rlock] = ACTIONS(2926), + [anon_sym_unsafe] = ACTIONS(2926), + [anon_sym_sql] = ACTIONS(2926), + [sym_int_literal] = ACTIONS(2926), + [sym_float_literal] = ACTIONS(2926), + [sym_rune_literal] = ACTIONS(2926), + [anon_sym_AT] = ACTIONS(2926), + [anon_sym_shared] = ACTIONS(2926), + [anon_sym_map_LBRACK] = ACTIONS(2926), + [anon_sym_chan] = ACTIONS(2926), + [anon_sym_thread] = ACTIONS(2926), + [anon_sym_atomic] = ACTIONS(2926), + [anon_sym_assert] = ACTIONS(2926), + [anon_sym_defer] = ACTIONS(2926), + [anon_sym_goto] = ACTIONS(2926), + [anon_sym_break] = ACTIONS(2926), + [anon_sym_continue] = ACTIONS(2926), + [anon_sym_return] = ACTIONS(2926), + [anon_sym_DOLLARfor] = ACTIONS(2926), + [anon_sym_for] = ACTIONS(2926), + [anon_sym_POUND] = ACTIONS(2926), + [anon_sym_asm] = ACTIONS(2926), + [anon_sym_AT_LBRACK] = ACTIONS(2926), + [sym___double_quote] = ACTIONS(2926), + [sym___single_quote] = ACTIONS(2926), + [sym___c_double_quote] = ACTIONS(2926), + [sym___c_single_quote] = ACTIONS(2926), + [sym___r_double_quote] = ACTIONS(2926), + [sym___r_single_quote] = ACTIONS(2926), + }, + [1432] = { + [ts_builtin_sym_end] = ACTIONS(2908), + [sym_identifier] = ACTIONS(2910), + [anon_sym_LF] = ACTIONS(2910), + [anon_sym_CR] = ACTIONS(2910), + [anon_sym_CR_LF] = ACTIONS(2910), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2910), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_const] = ACTIONS(2910), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym___global] = ACTIONS(2910), + [anon_sym_type] = ACTIONS(2910), + [anon_sym_PIPE] = ACTIONS(2910), + [anon_sym_fn] = ACTIONS(2910), + [anon_sym_PLUS] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2910), + [anon_sym_struct] = ACTIONS(2910), + [anon_sym_union] = ACTIONS(2910), + [anon_sym_pub] = ACTIONS(2910), + [anon_sym_mut] = ACTIONS(2910), + [anon_sym_enum] = ACTIONS(2910), + [anon_sym_interface] = ACTIONS(2910), + [anon_sym_QMARK] = ACTIONS(2910), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_go] = ACTIONS(2910), + [anon_sym_spawn] = ACTIONS(2910), + [anon_sym_json_DOTdecode] = ACTIONS(2910), + [anon_sym_LBRACK2] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_CARET] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_LT_DASH] = ACTIONS(2910), + [sym_none] = ACTIONS(2910), + [sym_true] = ACTIONS(2910), + [sym_false] = ACTIONS(2910), + [sym_nil] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_DOLLARif] = ACTIONS(2910), + [anon_sym_match] = ACTIONS(2910), + [anon_sym_select] = ACTIONS(2910), + [anon_sym_lock] = ACTIONS(2910), + [anon_sym_rlock] = ACTIONS(2910), + [anon_sym_unsafe] = ACTIONS(2910), + [anon_sym_sql] = ACTIONS(2910), + [sym_int_literal] = ACTIONS(2910), + [sym_float_literal] = ACTIONS(2910), + [sym_rune_literal] = ACTIONS(2910), + [anon_sym_AT] = ACTIONS(2910), + [anon_sym_shared] = ACTIONS(2910), + [anon_sym_map_LBRACK] = ACTIONS(2910), + [anon_sym_chan] = ACTIONS(2910), + [anon_sym_thread] = ACTIONS(2910), + [anon_sym_atomic] = ACTIONS(2910), + [anon_sym_assert] = ACTIONS(2910), + [anon_sym_defer] = ACTIONS(2910), + [anon_sym_goto] = ACTIONS(2910), + [anon_sym_break] = ACTIONS(2910), + [anon_sym_continue] = ACTIONS(2910), + [anon_sym_return] = ACTIONS(2910), + [anon_sym_DOLLARfor] = ACTIONS(2910), + [anon_sym_for] = ACTIONS(2910), + [anon_sym_POUND] = ACTIONS(2910), + [anon_sym_asm] = ACTIONS(2910), + [anon_sym_AT_LBRACK] = ACTIONS(2910), + [sym___double_quote] = ACTIONS(2910), + [sym___single_quote] = ACTIONS(2910), + [sym___c_double_quote] = ACTIONS(2910), + [sym___c_single_quote] = ACTIONS(2910), + [sym___r_double_quote] = ACTIONS(2910), + [sym___r_single_quote] = ACTIONS(2910), + }, + [1433] = { + [ts_builtin_sym_end] = ACTIONS(3309), + [sym_identifier] = ACTIONS(1716), + [anon_sym_LF] = ACTIONS(1716), + [anon_sym_CR] = ACTIONS(1716), + [anon_sym_CR_LF] = ACTIONS(1716), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym___global] = ACTIONS(1716), + [anon_sym_type] = ACTIONS(1716), + [anon_sym_fn] = ACTIONS(1716), + [anon_sym_PLUS] = ACTIONS(1716), + [anon_sym_DASH] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1716), + [anon_sym_struct] = ACTIONS(1716), + [anon_sym_union] = ACTIONS(1716), + [anon_sym_pub] = ACTIONS(1716), + [anon_sym_mut] = ACTIONS(1716), + [anon_sym_enum] = ACTIONS(1716), + [anon_sym_interface] = ACTIONS(1716), + [anon_sym_QMARK] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(1716), + [anon_sym_go] = ACTIONS(1716), + [anon_sym_spawn] = ACTIONS(1716), + [anon_sym_json_DOTdecode] = ACTIONS(1716), + [anon_sym_LBRACK2] = ACTIONS(1716), + [anon_sym_TILDE] = ACTIONS(1716), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1716), + [anon_sym_LT_DASH] = ACTIONS(1716), + [sym_none] = ACTIONS(1716), + [sym_true] = ACTIONS(1716), + [sym_false] = ACTIONS(1716), + [sym_nil] = ACTIONS(1716), + [anon_sym_if] = ACTIONS(1716), + [anon_sym_DOLLARif] = ACTIONS(1716), + [anon_sym_match] = ACTIONS(1716), + [anon_sym_select] = ACTIONS(1716), + [anon_sym_lock] = ACTIONS(1716), + [anon_sym_rlock] = ACTIONS(1716), + [anon_sym_unsafe] = ACTIONS(1716), + [anon_sym_sql] = ACTIONS(1716), + [sym_int_literal] = ACTIONS(1716), + [sym_float_literal] = ACTIONS(1716), + [sym_rune_literal] = ACTIONS(1716), + [anon_sym_AT] = ACTIONS(1716), + [anon_sym_shared] = ACTIONS(1716), + [anon_sym_map_LBRACK] = ACTIONS(1716), + [anon_sym_chan] = ACTIONS(1716), + [anon_sym_thread] = ACTIONS(1716), + [anon_sym_atomic] = ACTIONS(1716), + [anon_sym_assert] = ACTIONS(1716), + [anon_sym_defer] = ACTIONS(1716), + [anon_sym_goto] = ACTIONS(1716), + [anon_sym_break] = ACTIONS(1716), + [anon_sym_continue] = ACTIONS(1716), + [anon_sym_return] = ACTIONS(1716), + [anon_sym_DOLLARfor] = ACTIONS(1716), + [anon_sym_for] = ACTIONS(1716), + [anon_sym_POUND] = ACTIONS(1716), + [anon_sym_asm] = ACTIONS(1716), + [anon_sym_AT_LBRACK] = ACTIONS(1716), + [sym___double_quote] = ACTIONS(1716), + [sym___single_quote] = ACTIONS(1716), + [sym___c_double_quote] = ACTIONS(1716), + [sym___c_single_quote] = ACTIONS(1716), + [sym___r_double_quote] = ACTIONS(1716), + [sym___r_single_quote] = ACTIONS(1716), + }, + [1434] = { + [sym_block] = STATE(1537), [ts_builtin_sym_end] = ACTIONS(3801), [sym_identifier] = ACTIONS(3803), [anon_sym_LF] = ACTIONS(3803), [anon_sym_CR] = ACTIONS(3803), [anon_sym_CR_LF] = ACTIONS(3803), - [sym_comment] = ACTIONS(487), + [sym_comment] = ACTIONS(493), [anon_sym_DOT] = ACTIONS(3803), - [anon_sym_LBRACE] = ACTIONS(3799), + [anon_sym_LBRACE] = ACTIONS(3805), [anon_sym_const] = ACTIONS(3803), [anon_sym_LPAREN] = ACTIONS(3803), [anon_sym___global] = ACTIONS(3803), @@ -177294,527 +177847,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3803), [sym___r_single_quote] = ACTIONS(3803), }, - [1432] = { - [ts_builtin_sym_end] = ACTIONS(2957), - [sym_identifier] = ACTIONS(2959), - [anon_sym_LF] = ACTIONS(2959), - [anon_sym_CR] = ACTIONS(2959), - [anon_sym_CR_LF] = ACTIONS(2959), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2959), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_const] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym___global] = ACTIONS(2959), - [anon_sym_type] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_fn] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(2959), - [anon_sym_union] = ACTIONS(2959), - [anon_sym_pub] = ACTIONS(2959), - [anon_sym_mut] = ACTIONS(2959), - [anon_sym_enum] = ACTIONS(2959), - [anon_sym_interface] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2959), - [anon_sym_go] = ACTIONS(2959), - [anon_sym_spawn] = ACTIONS(2959), - [anon_sym_json_DOTdecode] = ACTIONS(2959), - [anon_sym_LBRACK2] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2959), - [anon_sym_CARET] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_LT_DASH] = ACTIONS(2959), - [sym_none] = ACTIONS(2959), - [sym_true] = ACTIONS(2959), - [sym_false] = ACTIONS(2959), - [sym_nil] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_DOLLARif] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_select] = ACTIONS(2959), - [anon_sym_lock] = ACTIONS(2959), - [anon_sym_rlock] = ACTIONS(2959), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2959), - [sym_int_literal] = ACTIONS(2959), - [sym_float_literal] = ACTIONS(2959), - [sym_rune_literal] = ACTIONS(2959), - [anon_sym_AT] = ACTIONS(2959), - [anon_sym_shared] = ACTIONS(2959), - [anon_sym_map_LBRACK] = ACTIONS(2959), - [anon_sym_chan] = ACTIONS(2959), - [anon_sym_thread] = ACTIONS(2959), - [anon_sym_atomic] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_defer] = ACTIONS(2959), - [anon_sym_goto] = ACTIONS(2959), - [anon_sym_break] = ACTIONS(2959), - [anon_sym_continue] = ACTIONS(2959), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_DOLLARfor] = ACTIONS(2959), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_POUND] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2959), - [anon_sym_AT_LBRACK] = ACTIONS(2959), - [sym___double_quote] = ACTIONS(2959), - [sym___single_quote] = ACTIONS(2959), - [sym___c_double_quote] = ACTIONS(2959), - [sym___c_single_quote] = ACTIONS(2959), - [sym___r_double_quote] = ACTIONS(2959), - [sym___r_single_quote] = ACTIONS(2959), - }, - [1433] = { - [ts_builtin_sym_end] = ACTIONS(2991), - [sym_identifier] = ACTIONS(2993), - [anon_sym_LF] = ACTIONS(2993), - [anon_sym_CR] = ACTIONS(2993), - [anon_sym_CR_LF] = ACTIONS(2993), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2993), - [anon_sym_const] = ACTIONS(2993), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym___global] = ACTIONS(2993), - [anon_sym_type] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2993), - [anon_sym_fn] = ACTIONS(2993), - [anon_sym_PLUS] = ACTIONS(2993), - [anon_sym_DASH] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2993), - [anon_sym_struct] = ACTIONS(2993), - [anon_sym_union] = ACTIONS(2993), - [anon_sym_pub] = ACTIONS(2993), - [anon_sym_mut] = ACTIONS(2993), - [anon_sym_enum] = ACTIONS(2993), - [anon_sym_interface] = ACTIONS(2993), - [anon_sym_QMARK] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2993), - [anon_sym_go] = ACTIONS(2993), - [anon_sym_spawn] = ACTIONS(2993), - [anon_sym_json_DOTdecode] = ACTIONS(2993), - [anon_sym_LBRACK2] = ACTIONS(2993), - [anon_sym_TILDE] = ACTIONS(2993), - [anon_sym_CARET] = ACTIONS(2993), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_LT_DASH] = ACTIONS(2993), - [sym_none] = ACTIONS(2993), - [sym_true] = ACTIONS(2993), - [sym_false] = ACTIONS(2993), - [sym_nil] = ACTIONS(2993), - [anon_sym_if] = ACTIONS(2993), - [anon_sym_DOLLARif] = ACTIONS(2993), - [anon_sym_match] = ACTIONS(2993), - [anon_sym_select] = ACTIONS(2993), - [anon_sym_lock] = ACTIONS(2993), - [anon_sym_rlock] = ACTIONS(2993), - [anon_sym_unsafe] = ACTIONS(2993), - [anon_sym_sql] = ACTIONS(2993), - [sym_int_literal] = ACTIONS(2993), - [sym_float_literal] = ACTIONS(2993), - [sym_rune_literal] = ACTIONS(2993), - [anon_sym_AT] = ACTIONS(2993), - [anon_sym_shared] = ACTIONS(2993), - [anon_sym_map_LBRACK] = ACTIONS(2993), - [anon_sym_chan] = ACTIONS(2993), - [anon_sym_thread] = ACTIONS(2993), - [anon_sym_atomic] = ACTIONS(2993), - [anon_sym_assert] = ACTIONS(2993), - [anon_sym_defer] = ACTIONS(2993), - [anon_sym_goto] = ACTIONS(2993), - [anon_sym_break] = ACTIONS(2993), - [anon_sym_continue] = ACTIONS(2993), - [anon_sym_return] = ACTIONS(2993), - [anon_sym_DOLLARfor] = ACTIONS(2993), - [anon_sym_for] = ACTIONS(2993), - [anon_sym_POUND] = ACTIONS(2993), - [anon_sym_asm] = ACTIONS(2993), - [anon_sym_AT_LBRACK] = ACTIONS(2993), - [sym___double_quote] = ACTIONS(2993), - [sym___single_quote] = ACTIONS(2993), - [sym___c_double_quote] = ACTIONS(2993), - [sym___c_single_quote] = ACTIONS(2993), - [sym___r_double_quote] = ACTIONS(2993), - [sym___r_single_quote] = ACTIONS(2993), - }, - [1434] = { - [sym_block] = STATE(1518), - [ts_builtin_sym_end] = ACTIONS(3805), - [sym_identifier] = ACTIONS(3807), - [anon_sym_LF] = ACTIONS(3807), - [anon_sym_CR] = ACTIONS(3807), - [anon_sym_CR_LF] = ACTIONS(3807), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3807), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3807), - [anon_sym_LPAREN] = ACTIONS(3807), - [anon_sym___global] = ACTIONS(3807), - [anon_sym_type] = ACTIONS(3807), - [anon_sym_fn] = ACTIONS(3807), - [anon_sym_PLUS] = ACTIONS(3807), - [anon_sym_DASH] = ACTIONS(3807), - [anon_sym_STAR] = ACTIONS(3807), - [anon_sym_struct] = ACTIONS(3807), - [anon_sym_union] = ACTIONS(3807), - [anon_sym_pub] = ACTIONS(3807), - [anon_sym_mut] = ACTIONS(3807), - [anon_sym_enum] = ACTIONS(3807), - [anon_sym_interface] = ACTIONS(3807), - [anon_sym_QMARK] = ACTIONS(3807), - [anon_sym_BANG] = ACTIONS(3807), - [anon_sym_go] = ACTIONS(3807), - [anon_sym_spawn] = ACTIONS(3807), - [anon_sym_json_DOTdecode] = ACTIONS(3807), - [anon_sym_LBRACK2] = ACTIONS(3807), - [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_CARET] = ACTIONS(3807), - [anon_sym_AMP] = ACTIONS(3807), - [anon_sym_LT_DASH] = ACTIONS(3807), - [sym_none] = ACTIONS(3807), - [sym_true] = ACTIONS(3807), - [sym_false] = ACTIONS(3807), - [sym_nil] = ACTIONS(3807), - [anon_sym_if] = ACTIONS(3807), - [anon_sym_DOLLARif] = ACTIONS(3807), - [anon_sym_match] = ACTIONS(3807), - [anon_sym_select] = ACTIONS(3807), - [anon_sym_lock] = ACTIONS(3807), - [anon_sym_rlock] = ACTIONS(3807), - [anon_sym_unsafe] = ACTIONS(3807), - [anon_sym_sql] = ACTIONS(3807), - [sym_int_literal] = ACTIONS(3807), - [sym_float_literal] = ACTIONS(3807), - [sym_rune_literal] = ACTIONS(3807), - [anon_sym_AT] = ACTIONS(3807), - [anon_sym_shared] = ACTIONS(3807), - [anon_sym_map_LBRACK] = ACTIONS(3807), - [anon_sym_chan] = ACTIONS(3807), - [anon_sym_thread] = ACTIONS(3807), - [anon_sym_atomic] = ACTIONS(3807), - [anon_sym_assert] = ACTIONS(3807), - [anon_sym_defer] = ACTIONS(3807), - [anon_sym_goto] = ACTIONS(3807), - [anon_sym_break] = ACTIONS(3807), - [anon_sym_continue] = ACTIONS(3807), - [anon_sym_return] = ACTIONS(3807), - [anon_sym_DOLLARfor] = ACTIONS(3807), - [anon_sym_for] = ACTIONS(3807), - [anon_sym_POUND] = ACTIONS(3807), - [anon_sym_asm] = ACTIONS(3807), - [anon_sym_AT_LBRACK] = ACTIONS(3807), - [sym___double_quote] = ACTIONS(3807), - [sym___single_quote] = ACTIONS(3807), - [sym___c_double_quote] = ACTIONS(3807), - [sym___c_single_quote] = ACTIONS(3807), - [sym___r_double_quote] = ACTIONS(3807), - [sym___r_single_quote] = ACTIONS(3807), - }, [1435] = { - [ts_builtin_sym_end] = ACTIONS(2917), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LF] = ACTIONS(2919), - [anon_sym_CR] = ACTIONS(2919), - [anon_sym_CR_LF] = ACTIONS(2919), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym___global] = ACTIONS(2919), - [anon_sym_type] = ACTIONS(2919), - [anon_sym_PIPE] = ACTIONS(2919), - [anon_sym_fn] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_union] = ACTIONS(2919), - [anon_sym_pub] = ACTIONS(2919), - [anon_sym_mut] = ACTIONS(2919), - [anon_sym_enum] = ACTIONS(2919), - [anon_sym_interface] = ACTIONS(2919), - [anon_sym_QMARK] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_go] = ACTIONS(2919), - [anon_sym_spawn] = ACTIONS(2919), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_CARET] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_LT_DASH] = ACTIONS(2919), - [sym_none] = ACTIONS(2919), - [sym_true] = ACTIONS(2919), - [sym_false] = ACTIONS(2919), - [sym_nil] = ACTIONS(2919), - [anon_sym_if] = ACTIONS(2919), - [anon_sym_DOLLARif] = ACTIONS(2919), - [anon_sym_match] = ACTIONS(2919), - [anon_sym_select] = ACTIONS(2919), - [anon_sym_lock] = ACTIONS(2919), - [anon_sym_rlock] = ACTIONS(2919), - [anon_sym_unsafe] = ACTIONS(2919), - [anon_sym_sql] = ACTIONS(2919), - [sym_int_literal] = ACTIONS(2919), - [sym_float_literal] = ACTIONS(2919), - [sym_rune_literal] = ACTIONS(2919), - [anon_sym_AT] = ACTIONS(2919), - [anon_sym_shared] = ACTIONS(2919), - [anon_sym_map_LBRACK] = ACTIONS(2919), - [anon_sym_chan] = ACTIONS(2919), - [anon_sym_thread] = ACTIONS(2919), - [anon_sym_atomic] = ACTIONS(2919), - [anon_sym_assert] = ACTIONS(2919), - [anon_sym_defer] = ACTIONS(2919), - [anon_sym_goto] = ACTIONS(2919), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2919), - [anon_sym_return] = ACTIONS(2919), - [anon_sym_DOLLARfor] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2919), - [anon_sym_POUND] = ACTIONS(2919), - [anon_sym_asm] = ACTIONS(2919), - [anon_sym_AT_LBRACK] = ACTIONS(2919), - [sym___double_quote] = ACTIONS(2919), - [sym___single_quote] = ACTIONS(2919), - [sym___c_double_quote] = ACTIONS(2919), - [sym___c_single_quote] = ACTIONS(2919), - [sym___r_double_quote] = ACTIONS(2919), - [sym___r_single_quote] = ACTIONS(2919), + [ts_builtin_sym_end] = ACTIONS(2832), + [sym_identifier] = ACTIONS(2834), + [anon_sym_LF] = ACTIONS(2834), + [anon_sym_CR] = ACTIONS(2834), + [anon_sym_CR_LF] = ACTIONS(2834), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2834), + [anon_sym_LBRACE] = ACTIONS(2834), + [anon_sym_const] = ACTIONS(2834), + [anon_sym_LPAREN] = ACTIONS(2834), + [anon_sym___global] = ACTIONS(2834), + [anon_sym_type] = ACTIONS(2834), + [anon_sym_PIPE] = ACTIONS(2834), + [anon_sym_fn] = ACTIONS(2834), + [anon_sym_PLUS] = ACTIONS(2834), + [anon_sym_DASH] = ACTIONS(2834), + [anon_sym_STAR] = ACTIONS(2834), + [anon_sym_struct] = ACTIONS(2834), + [anon_sym_union] = ACTIONS(2834), + [anon_sym_pub] = ACTIONS(2834), + [anon_sym_mut] = ACTIONS(2834), + [anon_sym_enum] = ACTIONS(2834), + [anon_sym_interface] = ACTIONS(2834), + [anon_sym_QMARK] = ACTIONS(2834), + [anon_sym_BANG] = ACTIONS(2834), + [anon_sym_go] = ACTIONS(2834), + [anon_sym_spawn] = ACTIONS(2834), + [anon_sym_json_DOTdecode] = ACTIONS(2834), + [anon_sym_LBRACK2] = ACTIONS(2834), + [anon_sym_TILDE] = ACTIONS(2834), + [anon_sym_CARET] = ACTIONS(2834), + [anon_sym_AMP] = ACTIONS(2834), + [anon_sym_LT_DASH] = ACTIONS(2834), + [sym_none] = ACTIONS(2834), + [sym_true] = ACTIONS(2834), + [sym_false] = ACTIONS(2834), + [sym_nil] = ACTIONS(2834), + [anon_sym_if] = ACTIONS(2834), + [anon_sym_DOLLARif] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2834), + [anon_sym_select] = ACTIONS(2834), + [anon_sym_lock] = ACTIONS(2834), + [anon_sym_rlock] = ACTIONS(2834), + [anon_sym_unsafe] = ACTIONS(2834), + [anon_sym_sql] = ACTIONS(2834), + [sym_int_literal] = ACTIONS(2834), + [sym_float_literal] = ACTIONS(2834), + [sym_rune_literal] = ACTIONS(2834), + [anon_sym_AT] = ACTIONS(2834), + [anon_sym_shared] = ACTIONS(2834), + [anon_sym_map_LBRACK] = ACTIONS(2834), + [anon_sym_chan] = ACTIONS(2834), + [anon_sym_thread] = ACTIONS(2834), + [anon_sym_atomic] = ACTIONS(2834), + [anon_sym_assert] = ACTIONS(2834), + [anon_sym_defer] = ACTIONS(2834), + [anon_sym_goto] = ACTIONS(2834), + [anon_sym_break] = ACTIONS(2834), + [anon_sym_continue] = ACTIONS(2834), + [anon_sym_return] = ACTIONS(2834), + [anon_sym_DOLLARfor] = ACTIONS(2834), + [anon_sym_for] = ACTIONS(2834), + [anon_sym_POUND] = ACTIONS(2834), + [anon_sym_asm] = ACTIONS(2834), + [anon_sym_AT_LBRACK] = ACTIONS(2834), + [sym___double_quote] = ACTIONS(2834), + [sym___single_quote] = ACTIONS(2834), + [sym___c_double_quote] = ACTIONS(2834), + [sym___c_single_quote] = ACTIONS(2834), + [sym___r_double_quote] = ACTIONS(2834), + [sym___r_single_quote] = ACTIONS(2834), }, [1436] = { - [ts_builtin_sym_end] = ACTIONS(3039), - [sym_identifier] = ACTIONS(3041), - [anon_sym_LF] = ACTIONS(3041), - [anon_sym_CR] = ACTIONS(3041), - [anon_sym_CR_LF] = ACTIONS(3041), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3041), - [anon_sym_const] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(3041), - [anon_sym___global] = ACTIONS(3041), - [anon_sym_type] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3041), - [anon_sym_fn] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3041), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_union] = ACTIONS(3041), - [anon_sym_pub] = ACTIONS(3041), - [anon_sym_mut] = ACTIONS(3041), - [anon_sym_enum] = ACTIONS(3041), - [anon_sym_interface] = ACTIONS(3041), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3041), - [anon_sym_go] = ACTIONS(3041), - [anon_sym_spawn] = ACTIONS(3041), - [anon_sym_json_DOTdecode] = ACTIONS(3041), - [anon_sym_LBRACK2] = ACTIONS(3041), - [anon_sym_TILDE] = ACTIONS(3041), - [anon_sym_CARET] = ACTIONS(3041), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_LT_DASH] = ACTIONS(3041), - [sym_none] = ACTIONS(3041), - [sym_true] = ACTIONS(3041), - [sym_false] = ACTIONS(3041), - [sym_nil] = ACTIONS(3041), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_DOLLARif] = ACTIONS(3041), - [anon_sym_match] = ACTIONS(3041), - [anon_sym_select] = ACTIONS(3041), - [anon_sym_lock] = ACTIONS(3041), - [anon_sym_rlock] = ACTIONS(3041), - [anon_sym_unsafe] = ACTIONS(3041), - [anon_sym_sql] = ACTIONS(3041), - [sym_int_literal] = ACTIONS(3041), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [anon_sym_AT] = ACTIONS(3041), - [anon_sym_shared] = ACTIONS(3041), - [anon_sym_map_LBRACK] = ACTIONS(3041), - [anon_sym_chan] = ACTIONS(3041), - [anon_sym_thread] = ACTIONS(3041), - [anon_sym_atomic] = ACTIONS(3041), - [anon_sym_assert] = ACTIONS(3041), - [anon_sym_defer] = ACTIONS(3041), - [anon_sym_goto] = ACTIONS(3041), - [anon_sym_break] = ACTIONS(3041), - [anon_sym_continue] = ACTIONS(3041), - [anon_sym_return] = ACTIONS(3041), - [anon_sym_DOLLARfor] = ACTIONS(3041), - [anon_sym_for] = ACTIONS(3041), - [anon_sym_POUND] = ACTIONS(3041), - [anon_sym_asm] = ACTIONS(3041), - [anon_sym_AT_LBRACK] = ACTIONS(3041), - [sym___double_quote] = ACTIONS(3041), - [sym___single_quote] = ACTIONS(3041), - [sym___c_double_quote] = ACTIONS(3041), - [sym___c_single_quote] = ACTIONS(3041), - [sym___r_double_quote] = ACTIONS(3041), - [sym___r_single_quote] = ACTIONS(3041), + [ts_builtin_sym_end] = ACTIONS(2976), + [sym_identifier] = ACTIONS(2978), + [anon_sym_LF] = ACTIONS(2978), + [anon_sym_CR] = ACTIONS(2978), + [anon_sym_CR_LF] = ACTIONS(2978), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2978), + [anon_sym_LBRACE] = ACTIONS(2978), + [anon_sym_const] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2978), + [anon_sym___global] = ACTIONS(2978), + [anon_sym_type] = ACTIONS(2978), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_fn] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2978), + [anon_sym_DASH] = ACTIONS(2978), + [anon_sym_STAR] = ACTIONS(2978), + [anon_sym_struct] = ACTIONS(2978), + [anon_sym_union] = ACTIONS(2978), + [anon_sym_pub] = ACTIONS(2978), + [anon_sym_mut] = ACTIONS(2978), + [anon_sym_enum] = ACTIONS(2978), + [anon_sym_interface] = ACTIONS(2978), + [anon_sym_QMARK] = ACTIONS(2978), + [anon_sym_BANG] = ACTIONS(2978), + [anon_sym_go] = ACTIONS(2978), + [anon_sym_spawn] = ACTIONS(2978), + [anon_sym_json_DOTdecode] = ACTIONS(2978), + [anon_sym_LBRACK2] = ACTIONS(2978), + [anon_sym_TILDE] = ACTIONS(2978), + [anon_sym_CARET] = ACTIONS(2978), + [anon_sym_AMP] = ACTIONS(2978), + [anon_sym_LT_DASH] = ACTIONS(2978), + [sym_none] = ACTIONS(2978), + [sym_true] = ACTIONS(2978), + [sym_false] = ACTIONS(2978), + [sym_nil] = ACTIONS(2978), + [anon_sym_if] = ACTIONS(2978), + [anon_sym_DOLLARif] = ACTIONS(2978), + [anon_sym_match] = ACTIONS(2978), + [anon_sym_select] = ACTIONS(2978), + [anon_sym_lock] = ACTIONS(2978), + [anon_sym_rlock] = ACTIONS(2978), + [anon_sym_unsafe] = ACTIONS(2978), + [anon_sym_sql] = ACTIONS(2978), + [sym_int_literal] = ACTIONS(2978), + [sym_float_literal] = ACTIONS(2978), + [sym_rune_literal] = ACTIONS(2978), + [anon_sym_AT] = ACTIONS(2978), + [anon_sym_shared] = ACTIONS(2978), + [anon_sym_map_LBRACK] = ACTIONS(2978), + [anon_sym_chan] = ACTIONS(2978), + [anon_sym_thread] = ACTIONS(2978), + [anon_sym_atomic] = ACTIONS(2978), + [anon_sym_assert] = ACTIONS(2978), + [anon_sym_defer] = ACTIONS(2978), + [anon_sym_goto] = ACTIONS(2978), + [anon_sym_break] = ACTIONS(2978), + [anon_sym_continue] = ACTIONS(2978), + [anon_sym_return] = ACTIONS(2978), + [anon_sym_DOLLARfor] = ACTIONS(2978), + [anon_sym_for] = ACTIONS(2978), + [anon_sym_POUND] = ACTIONS(2978), + [anon_sym_asm] = ACTIONS(2978), + [anon_sym_AT_LBRACK] = ACTIONS(2978), + [sym___double_quote] = ACTIONS(2978), + [sym___single_quote] = ACTIONS(2978), + [sym___c_double_quote] = ACTIONS(2978), + [sym___c_single_quote] = ACTIONS(2978), + [sym___r_double_quote] = ACTIONS(2978), + [sym___r_single_quote] = ACTIONS(2978), }, [1437] = { - [ts_builtin_sym_end] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2927), - [anon_sym_LF] = ACTIONS(2927), - [anon_sym_CR] = ACTIONS(2927), - [anon_sym_CR_LF] = ACTIONS(2927), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2927), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_const] = ACTIONS(2927), - [anon_sym_LPAREN] = ACTIONS(2927), - [anon_sym___global] = ACTIONS(2927), - [anon_sym_type] = ACTIONS(2927), - [anon_sym_PIPE] = ACTIONS(2927), - [anon_sym_fn] = ACTIONS(2927), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_struct] = ACTIONS(2927), - [anon_sym_union] = ACTIONS(2927), - [anon_sym_pub] = ACTIONS(2927), - [anon_sym_mut] = ACTIONS(2927), - [anon_sym_enum] = ACTIONS(2927), - [anon_sym_interface] = ACTIONS(2927), - [anon_sym_QMARK] = ACTIONS(2927), - [anon_sym_BANG] = ACTIONS(2927), - [anon_sym_go] = ACTIONS(2927), - [anon_sym_spawn] = ACTIONS(2927), - [anon_sym_json_DOTdecode] = ACTIONS(2927), - [anon_sym_LBRACK2] = ACTIONS(2927), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_CARET] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2927), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2927), - [anon_sym_DOLLARif] = ACTIONS(2927), - [anon_sym_match] = ACTIONS(2927), - [anon_sym_select] = ACTIONS(2927), - [anon_sym_lock] = ACTIONS(2927), - [anon_sym_rlock] = ACTIONS(2927), - [anon_sym_unsafe] = ACTIONS(2927), - [anon_sym_sql] = ACTIONS(2927), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2927), - [sym_rune_literal] = ACTIONS(2927), - [anon_sym_AT] = ACTIONS(2927), - [anon_sym_shared] = ACTIONS(2927), - [anon_sym_map_LBRACK] = ACTIONS(2927), - [anon_sym_chan] = ACTIONS(2927), - [anon_sym_thread] = ACTIONS(2927), - [anon_sym_atomic] = ACTIONS(2927), - [anon_sym_assert] = ACTIONS(2927), - [anon_sym_defer] = ACTIONS(2927), - [anon_sym_goto] = ACTIONS(2927), - [anon_sym_break] = ACTIONS(2927), - [anon_sym_continue] = ACTIONS(2927), - [anon_sym_return] = ACTIONS(2927), - [anon_sym_DOLLARfor] = ACTIONS(2927), - [anon_sym_for] = ACTIONS(2927), - [anon_sym_POUND] = ACTIONS(2927), - [anon_sym_asm] = ACTIONS(2927), - [anon_sym_AT_LBRACK] = ACTIONS(2927), - [sym___double_quote] = ACTIONS(2927), - [sym___single_quote] = ACTIONS(2927), - [sym___c_double_quote] = ACTIONS(2927), - [sym___c_single_quote] = ACTIONS(2927), - [sym___r_double_quote] = ACTIONS(2927), - [sym___r_single_quote] = ACTIONS(2927), + [ts_builtin_sym_end] = ACTIONS(3104), + [sym_identifier] = ACTIONS(3106), + [anon_sym_LF] = ACTIONS(3106), + [anon_sym_CR] = ACTIONS(3106), + [anon_sym_CR_LF] = ACTIONS(3106), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3106), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3106), + [anon_sym___global] = ACTIONS(3106), + [anon_sym_type] = ACTIONS(3106), + [anon_sym_PIPE] = ACTIONS(3106), + [anon_sym_fn] = ACTIONS(3106), + [anon_sym_PLUS] = ACTIONS(3106), + [anon_sym_DASH] = ACTIONS(3106), + [anon_sym_STAR] = ACTIONS(3106), + [anon_sym_struct] = ACTIONS(3106), + [anon_sym_union] = ACTIONS(3106), + [anon_sym_pub] = ACTIONS(3106), + [anon_sym_mut] = ACTIONS(3106), + [anon_sym_enum] = ACTIONS(3106), + [anon_sym_interface] = ACTIONS(3106), + [anon_sym_QMARK] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(3106), + [anon_sym_go] = ACTIONS(3106), + [anon_sym_spawn] = ACTIONS(3106), + [anon_sym_json_DOTdecode] = ACTIONS(3106), + [anon_sym_LBRACK2] = ACTIONS(3106), + [anon_sym_TILDE] = ACTIONS(3106), + [anon_sym_CARET] = ACTIONS(3106), + [anon_sym_AMP] = ACTIONS(3106), + [anon_sym_LT_DASH] = ACTIONS(3106), + [sym_none] = ACTIONS(3106), + [sym_true] = ACTIONS(3106), + [sym_false] = ACTIONS(3106), + [sym_nil] = ACTIONS(3106), + [anon_sym_if] = ACTIONS(3106), + [anon_sym_DOLLARif] = ACTIONS(3106), + [anon_sym_match] = ACTIONS(3106), + [anon_sym_select] = ACTIONS(3106), + [anon_sym_lock] = ACTIONS(3106), + [anon_sym_rlock] = ACTIONS(3106), + [anon_sym_unsafe] = ACTIONS(3106), + [anon_sym_sql] = ACTIONS(3106), + [sym_int_literal] = ACTIONS(3106), + [sym_float_literal] = ACTIONS(3106), + [sym_rune_literal] = ACTIONS(3106), + [anon_sym_AT] = ACTIONS(3106), + [anon_sym_shared] = ACTIONS(3106), + [anon_sym_map_LBRACK] = ACTIONS(3106), + [anon_sym_chan] = ACTIONS(3106), + [anon_sym_thread] = ACTIONS(3106), + [anon_sym_atomic] = ACTIONS(3106), + [anon_sym_assert] = ACTIONS(3106), + [anon_sym_defer] = ACTIONS(3106), + [anon_sym_goto] = ACTIONS(3106), + [anon_sym_break] = ACTIONS(3106), + [anon_sym_continue] = ACTIONS(3106), + [anon_sym_return] = ACTIONS(3106), + [anon_sym_DOLLARfor] = ACTIONS(3106), + [anon_sym_for] = ACTIONS(3106), + [anon_sym_POUND] = ACTIONS(3106), + [anon_sym_asm] = ACTIONS(3106), + [anon_sym_AT_LBRACK] = ACTIONS(3106), + [sym___double_quote] = ACTIONS(3106), + [sym___single_quote] = ACTIONS(3106), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3106), + [sym___r_double_quote] = ACTIONS(3106), + [sym___r_single_quote] = ACTIONS(3106), }, [1438] = { - [ts_builtin_sym_end] = ACTIONS(3171), - [sym_identifier] = ACTIONS(3173), - [anon_sym_LF] = ACTIONS(3173), - [anon_sym_CR] = ACTIONS(3173), - [anon_sym_CR_LF] = ACTIONS(3173), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_const] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym___global] = ACTIONS(3173), - [anon_sym_type] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3173), - [anon_sym_fn] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_struct] = ACTIONS(3173), - [anon_sym_union] = ACTIONS(3173), - [anon_sym_pub] = ACTIONS(3173), - [anon_sym_mut] = ACTIONS(3173), - [anon_sym_enum] = ACTIONS(3173), - [anon_sym_interface] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_go] = ACTIONS(3173), - [anon_sym_spawn] = ACTIONS(3173), - [anon_sym_json_DOTdecode] = ACTIONS(3173), - [anon_sym_LBRACK2] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_CARET] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_LT_DASH] = ACTIONS(3173), - [sym_none] = ACTIONS(3173), - [sym_true] = ACTIONS(3173), - [sym_false] = ACTIONS(3173), - [sym_nil] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_DOLLARif] = ACTIONS(3173), - [anon_sym_match] = ACTIONS(3173), - [anon_sym_select] = ACTIONS(3173), - [anon_sym_lock] = ACTIONS(3173), - [anon_sym_rlock] = ACTIONS(3173), - [anon_sym_unsafe] = ACTIONS(3173), - [anon_sym_sql] = ACTIONS(3173), - [sym_int_literal] = ACTIONS(3173), - [sym_float_literal] = ACTIONS(3173), - [sym_rune_literal] = ACTIONS(3173), - [anon_sym_AT] = ACTIONS(3173), - [anon_sym_shared] = ACTIONS(3173), - [anon_sym_map_LBRACK] = ACTIONS(3173), - [anon_sym_chan] = ACTIONS(3173), - [anon_sym_thread] = ACTIONS(3173), - [anon_sym_atomic] = ACTIONS(3173), - [anon_sym_assert] = ACTIONS(3173), - [anon_sym_defer] = ACTIONS(3173), - [anon_sym_goto] = ACTIONS(3173), - [anon_sym_break] = ACTIONS(3173), - [anon_sym_continue] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_DOLLARfor] = ACTIONS(3173), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_POUND] = ACTIONS(3173), - [anon_sym_asm] = ACTIONS(3173), - [anon_sym_AT_LBRACK] = ACTIONS(3173), - [sym___double_quote] = ACTIONS(3173), - [sym___single_quote] = ACTIONS(3173), - [sym___c_double_quote] = ACTIONS(3173), - [sym___c_single_quote] = ACTIONS(3173), - [sym___r_double_quote] = ACTIONS(3173), - [sym___r_single_quote] = ACTIONS(3173), - }, - [1439] = { - [sym_block] = STATE(1506), - [ts_builtin_sym_end] = ACTIONS(3809), - [sym_identifier] = ACTIONS(3811), + [sym_label_reference] = STATE(1504), + [ts_builtin_sym_end] = ACTIONS(3807), + [sym_identifier] = ACTIONS(3809), [anon_sym_LF] = ACTIONS(3811), [anon_sym_CR] = ACTIONS(3811), [anon_sym_CR_LF] = ACTIONS(3811), - [sym_comment] = ACTIONS(487), + [sym_comment] = ACTIONS(493), [anon_sym_DOT] = ACTIONS(3811), - [anon_sym_LBRACE] = ACTIONS(3799), + [anon_sym_LBRACE] = ACTIONS(3811), [anon_sym_const] = ACTIONS(3811), [anon_sym_LPAREN] = ACTIONS(3811), [anon_sym___global] = ACTIONS(3811), @@ -177878,16 +178139,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3811), [sym___r_single_quote] = ACTIONS(3811), }, - [1440] = { - [sym_block] = STATE(1494), + [1439] = { + [sym_label_reference] = STATE(1503), [ts_builtin_sym_end] = ACTIONS(3813), - [sym_identifier] = ACTIONS(3815), + [sym_identifier] = ACTIONS(3809), [anon_sym_LF] = ACTIONS(3815), [anon_sym_CR] = ACTIONS(3815), [anon_sym_CR_LF] = ACTIONS(3815), - [sym_comment] = ACTIONS(487), + [sym_comment] = ACTIONS(493), [anon_sym_DOT] = ACTIONS(3815), - [anon_sym_LBRACE] = ACTIONS(3799), + [anon_sym_LBRACE] = ACTIONS(3815), [anon_sym_const] = ACTIONS(3815), [anon_sym_LPAREN] = ACTIONS(3815), [anon_sym___global] = ACTIONS(3815), @@ -177951,16 +178212,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3815), [sym___r_single_quote] = ACTIONS(3815), }, - [1441] = { - [sym_block] = STATE(1533), + [1440] = { + [sym_block] = STATE(1536), [ts_builtin_sym_end] = ACTIONS(3817), [sym_identifier] = ACTIONS(3819), [anon_sym_LF] = ACTIONS(3819), [anon_sym_CR] = ACTIONS(3819), [anon_sym_CR_LF] = ACTIONS(3819), - [sym_comment] = ACTIONS(487), + [sym_comment] = ACTIONS(493), [anon_sym_DOT] = ACTIONS(3819), - [anon_sym_LBRACE] = ACTIONS(3799), + [anon_sym_LBRACE] = ACTIONS(3805), [anon_sym_const] = ACTIONS(3819), [anon_sym_LPAREN] = ACTIONS(3819), [anon_sym___global] = ACTIONS(3819), @@ -178024,235 +178285,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3819), [sym___r_single_quote] = ACTIONS(3819), }, + [1441] = { + [ts_builtin_sym_end] = ACTIONS(2840), + [sym_identifier] = ACTIONS(2842), + [anon_sym_LF] = ACTIONS(2842), + [anon_sym_CR] = ACTIONS(2842), + [anon_sym_CR_LF] = ACTIONS(2842), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2842), + [anon_sym_LBRACE] = ACTIONS(2842), + [anon_sym_const] = ACTIONS(2842), + [anon_sym_LPAREN] = ACTIONS(2842), + [anon_sym___global] = ACTIONS(2842), + [anon_sym_type] = ACTIONS(2842), + [anon_sym_PIPE] = ACTIONS(2842), + [anon_sym_fn] = ACTIONS(2842), + [anon_sym_PLUS] = ACTIONS(2842), + [anon_sym_DASH] = ACTIONS(2842), + [anon_sym_STAR] = ACTIONS(2842), + [anon_sym_struct] = ACTIONS(2842), + [anon_sym_union] = ACTIONS(2842), + [anon_sym_pub] = ACTIONS(2842), + [anon_sym_mut] = ACTIONS(2842), + [anon_sym_enum] = ACTIONS(2842), + [anon_sym_interface] = ACTIONS(2842), + [anon_sym_QMARK] = ACTIONS(2842), + [anon_sym_BANG] = ACTIONS(2842), + [anon_sym_go] = ACTIONS(2842), + [anon_sym_spawn] = ACTIONS(2842), + [anon_sym_json_DOTdecode] = ACTIONS(2842), + [anon_sym_LBRACK2] = ACTIONS(2842), + [anon_sym_TILDE] = ACTIONS(2842), + [anon_sym_CARET] = ACTIONS(2842), + [anon_sym_AMP] = ACTIONS(2842), + [anon_sym_LT_DASH] = ACTIONS(2842), + [sym_none] = ACTIONS(2842), + [sym_true] = ACTIONS(2842), + [sym_false] = ACTIONS(2842), + [sym_nil] = ACTIONS(2842), + [anon_sym_if] = ACTIONS(2842), + [anon_sym_DOLLARif] = ACTIONS(2842), + [anon_sym_match] = ACTIONS(2842), + [anon_sym_select] = ACTIONS(2842), + [anon_sym_lock] = ACTIONS(2842), + [anon_sym_rlock] = ACTIONS(2842), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_sql] = ACTIONS(2842), + [sym_int_literal] = ACTIONS(2842), + [sym_float_literal] = ACTIONS(2842), + [sym_rune_literal] = ACTIONS(2842), + [anon_sym_AT] = ACTIONS(2842), + [anon_sym_shared] = ACTIONS(2842), + [anon_sym_map_LBRACK] = ACTIONS(2842), + [anon_sym_chan] = ACTIONS(2842), + [anon_sym_thread] = ACTIONS(2842), + [anon_sym_atomic] = ACTIONS(2842), + [anon_sym_assert] = ACTIONS(2842), + [anon_sym_defer] = ACTIONS(2842), + [anon_sym_goto] = ACTIONS(2842), + [anon_sym_break] = ACTIONS(2842), + [anon_sym_continue] = ACTIONS(2842), + [anon_sym_return] = ACTIONS(2842), + [anon_sym_DOLLARfor] = ACTIONS(2842), + [anon_sym_for] = ACTIONS(2842), + [anon_sym_POUND] = ACTIONS(2842), + [anon_sym_asm] = ACTIONS(2842), + [anon_sym_AT_LBRACK] = ACTIONS(2842), + [sym___double_quote] = ACTIONS(2842), + [sym___single_quote] = ACTIONS(2842), + [sym___c_double_quote] = ACTIONS(2842), + [sym___c_single_quote] = ACTIONS(2842), + [sym___r_double_quote] = ACTIONS(2842), + [sym___r_single_quote] = ACTIONS(2842), + }, [1442] = { - [ts_builtin_sym_end] = ACTIONS(3079), - [sym_identifier] = ACTIONS(3081), - [anon_sym_LF] = ACTIONS(3081), - [anon_sym_CR] = ACTIONS(3081), - [anon_sym_CR_LF] = ACTIONS(3081), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_const] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3081), - [anon_sym___global] = ACTIONS(3081), - [anon_sym_type] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_struct] = ACTIONS(3081), - [anon_sym_union] = ACTIONS(3081), - [anon_sym_pub] = ACTIONS(3081), - [anon_sym_mut] = ACTIONS(3081), - [anon_sym_enum] = ACTIONS(3081), - [anon_sym_interface] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(3081), - [anon_sym_BANG] = ACTIONS(3081), - [anon_sym_go] = ACTIONS(3081), - [anon_sym_spawn] = ACTIONS(3081), - [anon_sym_json_DOTdecode] = ACTIONS(3081), - [anon_sym_LBRACK2] = ACTIONS(3081), - [anon_sym_TILDE] = ACTIONS(3081), - [anon_sym_CARET] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_LT_DASH] = ACTIONS(3081), - [sym_none] = ACTIONS(3081), - [sym_true] = ACTIONS(3081), - [sym_false] = ACTIONS(3081), - [sym_nil] = ACTIONS(3081), - [anon_sym_if] = ACTIONS(3081), - [anon_sym_DOLLARif] = ACTIONS(3081), - [anon_sym_match] = ACTIONS(3081), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3081), - [anon_sym_rlock] = ACTIONS(3081), - [anon_sym_unsafe] = ACTIONS(3081), - [anon_sym_sql] = ACTIONS(3081), - [sym_int_literal] = ACTIONS(3081), - [sym_float_literal] = ACTIONS(3081), - [sym_rune_literal] = ACTIONS(3081), - [anon_sym_AT] = ACTIONS(3081), - [anon_sym_shared] = ACTIONS(3081), - [anon_sym_map_LBRACK] = ACTIONS(3081), - [anon_sym_chan] = ACTIONS(3081), - [anon_sym_thread] = ACTIONS(3081), - [anon_sym_atomic] = ACTIONS(3081), - [anon_sym_assert] = ACTIONS(3081), - [anon_sym_defer] = ACTIONS(3081), - [anon_sym_goto] = ACTIONS(3081), - [anon_sym_break] = ACTIONS(3081), - [anon_sym_continue] = ACTIONS(3081), - [anon_sym_return] = ACTIONS(3081), - [anon_sym_DOLLARfor] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(3081), - [anon_sym_POUND] = ACTIONS(3081), - [anon_sym_asm] = ACTIONS(3081), - [anon_sym_AT_LBRACK] = ACTIONS(3081), - [sym___double_quote] = ACTIONS(3081), - [sym___single_quote] = ACTIONS(3081), - [sym___c_double_quote] = ACTIONS(3081), - [sym___c_single_quote] = ACTIONS(3081), - [sym___r_double_quote] = ACTIONS(3081), - [sym___r_single_quote] = ACTIONS(3081), + [ts_builtin_sym_end] = ACTIONS(2852), + [sym_identifier] = ACTIONS(2854), + [anon_sym_LF] = ACTIONS(2854), + [anon_sym_CR] = ACTIONS(2854), + [anon_sym_CR_LF] = ACTIONS(2854), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2854), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_const] = ACTIONS(2854), + [anon_sym_LPAREN] = ACTIONS(2854), + [anon_sym___global] = ACTIONS(2854), + [anon_sym_type] = ACTIONS(2854), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_fn] = ACTIONS(2854), + [anon_sym_PLUS] = ACTIONS(2854), + [anon_sym_DASH] = ACTIONS(2854), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_struct] = ACTIONS(2854), + [anon_sym_union] = ACTIONS(2854), + [anon_sym_pub] = ACTIONS(2854), + [anon_sym_mut] = ACTIONS(2854), + [anon_sym_enum] = ACTIONS(2854), + [anon_sym_interface] = ACTIONS(2854), + [anon_sym_QMARK] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_go] = ACTIONS(2854), + [anon_sym_spawn] = ACTIONS(2854), + [anon_sym_json_DOTdecode] = ACTIONS(2854), + [anon_sym_LBRACK2] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2854), + [anon_sym_CARET] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_LT_DASH] = ACTIONS(2854), + [sym_none] = ACTIONS(2854), + [sym_true] = ACTIONS(2854), + [sym_false] = ACTIONS(2854), + [sym_nil] = ACTIONS(2854), + [anon_sym_if] = ACTIONS(2854), + [anon_sym_DOLLARif] = ACTIONS(2854), + [anon_sym_match] = ACTIONS(2854), + [anon_sym_select] = ACTIONS(2854), + [anon_sym_lock] = ACTIONS(2854), + [anon_sym_rlock] = ACTIONS(2854), + [anon_sym_unsafe] = ACTIONS(2854), + [anon_sym_sql] = ACTIONS(2854), + [sym_int_literal] = ACTIONS(2854), + [sym_float_literal] = ACTIONS(2854), + [sym_rune_literal] = ACTIONS(2854), + [anon_sym_AT] = ACTIONS(2854), + [anon_sym_shared] = ACTIONS(2854), + [anon_sym_map_LBRACK] = ACTIONS(2854), + [anon_sym_chan] = ACTIONS(2854), + [anon_sym_thread] = ACTIONS(2854), + [anon_sym_atomic] = ACTIONS(2854), + [anon_sym_assert] = ACTIONS(2854), + [anon_sym_defer] = ACTIONS(2854), + [anon_sym_goto] = ACTIONS(2854), + [anon_sym_break] = ACTIONS(2854), + [anon_sym_continue] = ACTIONS(2854), + [anon_sym_return] = ACTIONS(2854), + [anon_sym_DOLLARfor] = ACTIONS(2854), + [anon_sym_for] = ACTIONS(2854), + [anon_sym_POUND] = ACTIONS(2854), + [anon_sym_asm] = ACTIONS(2854), + [anon_sym_AT_LBRACK] = ACTIONS(2854), + [sym___double_quote] = ACTIONS(2854), + [sym___single_quote] = ACTIONS(2854), + [sym___c_double_quote] = ACTIONS(2854), + [sym___c_single_quote] = ACTIONS(2854), + [sym___r_double_quote] = ACTIONS(2854), + [sym___r_single_quote] = ACTIONS(2854), }, [1443] = { - [ts_builtin_sym_end] = ACTIONS(3127), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LF] = ACTIONS(3129), - [anon_sym_CR] = ACTIONS(3129), - [anon_sym_CR_LF] = ACTIONS(3129), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3129), - [anon_sym_const] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3129), - [anon_sym___global] = ACTIONS(3129), - [anon_sym_type] = ACTIONS(3129), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(3129), - [anon_sym_struct] = ACTIONS(3129), - [anon_sym_union] = ACTIONS(3129), - [anon_sym_pub] = ACTIONS(3129), - [anon_sym_mut] = ACTIONS(3129), - [anon_sym_enum] = ACTIONS(3129), - [anon_sym_interface] = ACTIONS(3129), - [anon_sym_QMARK] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_go] = ACTIONS(3129), - [anon_sym_spawn] = ACTIONS(3129), - [anon_sym_json_DOTdecode] = ACTIONS(3129), - [anon_sym_LBRACK2] = ACTIONS(3129), - [anon_sym_TILDE] = ACTIONS(3129), - [anon_sym_CARET] = ACTIONS(3129), - [anon_sym_AMP] = ACTIONS(3129), - [anon_sym_LT_DASH] = ACTIONS(3129), - [sym_none] = ACTIONS(3129), - [sym_true] = ACTIONS(3129), - [sym_false] = ACTIONS(3129), - [sym_nil] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_DOLLARif] = ACTIONS(3129), - [anon_sym_match] = ACTIONS(3129), - [anon_sym_select] = ACTIONS(3129), - [anon_sym_lock] = ACTIONS(3129), - [anon_sym_rlock] = ACTIONS(3129), - [anon_sym_unsafe] = ACTIONS(3129), - [anon_sym_sql] = ACTIONS(3129), - [sym_int_literal] = ACTIONS(3129), - [sym_float_literal] = ACTIONS(3129), - [sym_rune_literal] = ACTIONS(3129), - [anon_sym_AT] = ACTIONS(3129), - [anon_sym_shared] = ACTIONS(3129), - [anon_sym_map_LBRACK] = ACTIONS(3129), - [anon_sym_chan] = ACTIONS(3129), - [anon_sym_thread] = ACTIONS(3129), - [anon_sym_atomic] = ACTIONS(3129), - [anon_sym_assert] = ACTIONS(3129), - [anon_sym_defer] = ACTIONS(3129), - [anon_sym_goto] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_DOLLARfor] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(3129), - [anon_sym_asm] = ACTIONS(3129), - [anon_sym_AT_LBRACK] = ACTIONS(3129), - [sym___double_quote] = ACTIONS(3129), - [sym___single_quote] = ACTIONS(3129), - [sym___c_double_quote] = ACTIONS(3129), - [sym___c_single_quote] = ACTIONS(3129), - [sym___r_double_quote] = ACTIONS(3129), - [sym___r_single_quote] = ACTIONS(3129), - }, - [1444] = { - [ts_builtin_sym_end] = ACTIONS(3163), - [sym_identifier] = ACTIONS(3165), - [anon_sym_LF] = ACTIONS(3165), - [anon_sym_CR] = ACTIONS(3165), - [anon_sym_CR_LF] = ACTIONS(3165), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_const] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym___global] = ACTIONS(3165), - [anon_sym_type] = ACTIONS(3165), - [anon_sym_PIPE] = ACTIONS(3165), - [anon_sym_fn] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_STAR] = ACTIONS(3165), - [anon_sym_struct] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3165), - [anon_sym_pub] = ACTIONS(3165), - [anon_sym_mut] = ACTIONS(3165), - [anon_sym_enum] = ACTIONS(3165), - [anon_sym_interface] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_BANG] = ACTIONS(3165), - [anon_sym_go] = ACTIONS(3165), - [anon_sym_spawn] = ACTIONS(3165), - [anon_sym_json_DOTdecode] = ACTIONS(3165), - [anon_sym_LBRACK2] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3165), - [anon_sym_CARET] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [sym_none] = ACTIONS(3165), - [sym_true] = ACTIONS(3165), - [sym_false] = ACTIONS(3165), - [sym_nil] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_DOLLARif] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_select] = ACTIONS(3165), - [anon_sym_lock] = ACTIONS(3165), - [anon_sym_rlock] = ACTIONS(3165), - [anon_sym_unsafe] = ACTIONS(3165), - [anon_sym_sql] = ACTIONS(3165), - [sym_int_literal] = ACTIONS(3165), - [sym_float_literal] = ACTIONS(3165), - [sym_rune_literal] = ACTIONS(3165), - [anon_sym_AT] = ACTIONS(3165), - [anon_sym_shared] = ACTIONS(3165), - [anon_sym_map_LBRACK] = ACTIONS(3165), - [anon_sym_chan] = ACTIONS(3165), - [anon_sym_thread] = ACTIONS(3165), - [anon_sym_atomic] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_defer] = ACTIONS(3165), - [anon_sym_goto] = ACTIONS(3165), - [anon_sym_break] = ACTIONS(3165), - [anon_sym_continue] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_DOLLARfor] = ACTIONS(3165), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_POUND] = ACTIONS(3165), - [anon_sym_asm] = ACTIONS(3165), - [anon_sym_AT_LBRACK] = ACTIONS(3165), - [sym___double_quote] = ACTIONS(3165), - [sym___single_quote] = ACTIONS(3165), - [sym___c_double_quote] = ACTIONS(3165), - [sym___c_single_quote] = ACTIONS(3165), - [sym___r_double_quote] = ACTIONS(3165), - [sym___r_single_quote] = ACTIONS(3165), - }, - [1445] = { - [sym_block] = STATE(1551), + [sym_block] = STATE(1538), [ts_builtin_sym_end] = ACTIONS(3821), [sym_identifier] = ACTIONS(3823), [anon_sym_LF] = ACTIONS(3823), [anon_sym_CR] = ACTIONS(3823), [anon_sym_CR_LF] = ACTIONS(3823), - [sym_comment] = ACTIONS(487), + [sym_comment] = ACTIONS(493), [anon_sym_DOT] = ACTIONS(3823), - [anon_sym_LBRACE] = ACTIONS(3799), + [anon_sym_LBRACE] = ACTIONS(3805), [anon_sym_const] = ACTIONS(3823), [anon_sym_LPAREN] = ACTIONS(3823), [anon_sym___global] = ACTIONS(3823), @@ -178316,89 +178504,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3823), [sym___r_single_quote] = ACTIONS(3823), }, - [1446] = { - [ts_builtin_sym_end] = ACTIONS(3119), - [sym_identifier] = ACTIONS(3121), - [anon_sym_LF] = ACTIONS(3121), - [anon_sym_CR] = ACTIONS(3121), - [anon_sym_CR_LF] = ACTIONS(3121), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(3121), - [anon_sym_const] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym___global] = ACTIONS(3121), - [anon_sym_type] = ACTIONS(3121), - [anon_sym_PIPE] = ACTIONS(3121), - [anon_sym_fn] = ACTIONS(3121), - [anon_sym_PLUS] = ACTIONS(3121), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(3121), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_pub] = ACTIONS(3121), - [anon_sym_mut] = ACTIONS(3121), - [anon_sym_enum] = ACTIONS(3121), - [anon_sym_interface] = ACTIONS(3121), - [anon_sym_QMARK] = ACTIONS(3121), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_go] = ACTIONS(3121), - [anon_sym_spawn] = ACTIONS(3121), - [anon_sym_json_DOTdecode] = ACTIONS(3121), - [anon_sym_LBRACK2] = ACTIONS(3121), - [anon_sym_TILDE] = ACTIONS(3121), - [anon_sym_CARET] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3121), - [anon_sym_LT_DASH] = ACTIONS(3121), - [sym_none] = ACTIONS(3121), - [sym_true] = ACTIONS(3121), - [sym_false] = ACTIONS(3121), - [sym_nil] = ACTIONS(3121), - [anon_sym_if] = ACTIONS(3121), - [anon_sym_DOLLARif] = ACTIONS(3121), - [anon_sym_match] = ACTIONS(3121), - [anon_sym_select] = ACTIONS(3121), - [anon_sym_lock] = ACTIONS(3121), - [anon_sym_rlock] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(3121), - [anon_sym_sql] = ACTIONS(3121), - [sym_int_literal] = ACTIONS(3121), - [sym_float_literal] = ACTIONS(3121), - [sym_rune_literal] = ACTIONS(3121), - [anon_sym_AT] = ACTIONS(3121), - [anon_sym_shared] = ACTIONS(3121), - [anon_sym_map_LBRACK] = ACTIONS(3121), - [anon_sym_chan] = ACTIONS(3121), - [anon_sym_thread] = ACTIONS(3121), - [anon_sym_atomic] = ACTIONS(3121), - [anon_sym_assert] = ACTIONS(3121), - [anon_sym_defer] = ACTIONS(3121), - [anon_sym_goto] = ACTIONS(3121), - [anon_sym_break] = ACTIONS(3121), - [anon_sym_continue] = ACTIONS(3121), - [anon_sym_return] = ACTIONS(3121), - [anon_sym_DOLLARfor] = ACTIONS(3121), - [anon_sym_for] = ACTIONS(3121), - [anon_sym_POUND] = ACTIONS(3121), - [anon_sym_asm] = ACTIONS(3121), - [anon_sym_AT_LBRACK] = ACTIONS(3121), - [sym___double_quote] = ACTIONS(3121), - [sym___single_quote] = ACTIONS(3121), - [sym___c_double_quote] = ACTIONS(3121), - [sym___c_single_quote] = ACTIONS(3121), - [sym___r_double_quote] = ACTIONS(3121), - [sym___r_single_quote] = ACTIONS(3121), + [1444] = { + [ts_builtin_sym_end] = ACTIONS(2856), + [sym_identifier] = ACTIONS(2858), + [anon_sym_LF] = ACTIONS(2858), + [anon_sym_CR] = ACTIONS(2858), + [anon_sym_CR_LF] = ACTIONS(2858), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2858), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_const] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2858), + [anon_sym___global] = ACTIONS(2858), + [anon_sym_type] = ACTIONS(2858), + [anon_sym_PIPE] = ACTIONS(2858), + [anon_sym_fn] = ACTIONS(2858), + [anon_sym_PLUS] = ACTIONS(2858), + [anon_sym_DASH] = ACTIONS(2858), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_struct] = ACTIONS(2858), + [anon_sym_union] = ACTIONS(2858), + [anon_sym_pub] = ACTIONS(2858), + [anon_sym_mut] = ACTIONS(2858), + [anon_sym_enum] = ACTIONS(2858), + [anon_sym_interface] = ACTIONS(2858), + [anon_sym_QMARK] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_go] = ACTIONS(2858), + [anon_sym_spawn] = ACTIONS(2858), + [anon_sym_json_DOTdecode] = ACTIONS(2858), + [anon_sym_LBRACK2] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2858), + [anon_sym_CARET] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2858), + [anon_sym_LT_DASH] = ACTIONS(2858), + [sym_none] = ACTIONS(2858), + [sym_true] = ACTIONS(2858), + [sym_false] = ACTIONS(2858), + [sym_nil] = ACTIONS(2858), + [anon_sym_if] = ACTIONS(2858), + [anon_sym_DOLLARif] = ACTIONS(2858), + [anon_sym_match] = ACTIONS(2858), + [anon_sym_select] = ACTIONS(2858), + [anon_sym_lock] = ACTIONS(2858), + [anon_sym_rlock] = ACTIONS(2858), + [anon_sym_unsafe] = ACTIONS(2858), + [anon_sym_sql] = ACTIONS(2858), + [sym_int_literal] = ACTIONS(2858), + [sym_float_literal] = ACTIONS(2858), + [sym_rune_literal] = ACTIONS(2858), + [anon_sym_AT] = ACTIONS(2858), + [anon_sym_shared] = ACTIONS(2858), + [anon_sym_map_LBRACK] = ACTIONS(2858), + [anon_sym_chan] = ACTIONS(2858), + [anon_sym_thread] = ACTIONS(2858), + [anon_sym_atomic] = ACTIONS(2858), + [anon_sym_assert] = ACTIONS(2858), + [anon_sym_defer] = ACTIONS(2858), + [anon_sym_goto] = ACTIONS(2858), + [anon_sym_break] = ACTIONS(2858), + [anon_sym_continue] = ACTIONS(2858), + [anon_sym_return] = ACTIONS(2858), + [anon_sym_DOLLARfor] = ACTIONS(2858), + [anon_sym_for] = ACTIONS(2858), + [anon_sym_POUND] = ACTIONS(2858), + [anon_sym_asm] = ACTIONS(2858), + [anon_sym_AT_LBRACK] = ACTIONS(2858), + [sym___double_quote] = ACTIONS(2858), + [sym___single_quote] = ACTIONS(2858), + [sym___c_double_quote] = ACTIONS(2858), + [sym___c_single_quote] = ACTIONS(2858), + [sym___r_double_quote] = ACTIONS(2858), + [sym___r_single_quote] = ACTIONS(2858), }, - [1447] = { - [sym_block] = STATE(1520), + [1445] = { + [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), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_AT] = 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), + [sym___double_quote] = ACTIONS(3030), + [sym___single_quote] = ACTIONS(3030), + [sym___c_double_quote] = ACTIONS(3030), + [sym___c_single_quote] = ACTIONS(3030), + [sym___r_double_quote] = ACTIONS(3030), + [sym___r_single_quote] = ACTIONS(3030), + }, + [1446] = { + [sym_block] = STATE(1560), [ts_builtin_sym_end] = ACTIONS(3825), [sym_identifier] = ACTIONS(3827), [anon_sym_LF] = ACTIONS(3827), [anon_sym_CR] = ACTIONS(3827), [anon_sym_CR_LF] = ACTIONS(3827), - [sym_comment] = ACTIONS(487), + [sym_comment] = ACTIONS(493), [anon_sym_DOT] = ACTIONS(3827), - [anon_sym_LBRACE] = ACTIONS(3799), + [anon_sym_LBRACE] = ACTIONS(3805), [anon_sym_const] = ACTIONS(3827), [anon_sym_LPAREN] = ACTIONS(3827), [anon_sym___global] = ACTIONS(3827), @@ -178462,308 +178723,381 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3827), [sym___r_single_quote] = ACTIONS(3827), }, + [1447] = { + [ts_builtin_sym_end] = ACTIONS(3829), + [sym_identifier] = ACTIONS(3831), + [anon_sym_LF] = ACTIONS(3831), + [anon_sym_CR] = ACTIONS(3831), + [anon_sym_CR_LF] = ACTIONS(3831), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3831), + [anon_sym_LBRACE] = ACTIONS(3831), + [anon_sym_const] = ACTIONS(3831), + [anon_sym_LPAREN] = ACTIONS(3831), + [anon_sym___global] = ACTIONS(3831), + [anon_sym_type] = ACTIONS(3831), + [anon_sym_PIPE] = ACTIONS(3831), + [anon_sym_fn] = ACTIONS(3831), + [anon_sym_PLUS] = ACTIONS(3831), + [anon_sym_DASH] = ACTIONS(3831), + [anon_sym_STAR] = ACTIONS(3831), + [anon_sym_struct] = ACTIONS(3831), + [anon_sym_union] = ACTIONS(3831), + [anon_sym_pub] = ACTIONS(3831), + [anon_sym_mut] = ACTIONS(3831), + [anon_sym_enum] = ACTIONS(3831), + [anon_sym_interface] = ACTIONS(3831), + [anon_sym_QMARK] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3831), + [anon_sym_go] = ACTIONS(3831), + [anon_sym_spawn] = ACTIONS(3831), + [anon_sym_json_DOTdecode] = ACTIONS(3831), + [anon_sym_LBRACK2] = ACTIONS(3831), + [anon_sym_TILDE] = ACTIONS(3831), + [anon_sym_CARET] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3831), + [anon_sym_LT_DASH] = ACTIONS(3831), + [sym_none] = ACTIONS(3831), + [sym_true] = ACTIONS(3831), + [sym_false] = ACTIONS(3831), + [sym_nil] = ACTIONS(3831), + [anon_sym_if] = ACTIONS(3831), + [anon_sym_DOLLARif] = ACTIONS(3831), + [anon_sym_match] = ACTIONS(3831), + [anon_sym_select] = ACTIONS(3831), + [anon_sym_lock] = ACTIONS(3831), + [anon_sym_rlock] = ACTIONS(3831), + [anon_sym_unsafe] = ACTIONS(3831), + [anon_sym_sql] = ACTIONS(3831), + [sym_int_literal] = ACTIONS(3831), + [sym_float_literal] = ACTIONS(3831), + [sym_rune_literal] = ACTIONS(3831), + [anon_sym_AT] = ACTIONS(3831), + [anon_sym_shared] = ACTIONS(3831), + [anon_sym_map_LBRACK] = ACTIONS(3831), + [anon_sym_chan] = ACTIONS(3831), + [anon_sym_thread] = ACTIONS(3831), + [anon_sym_atomic] = ACTIONS(3831), + [anon_sym_assert] = ACTIONS(3831), + [anon_sym_defer] = ACTIONS(3831), + [anon_sym_goto] = ACTIONS(3831), + [anon_sym_break] = ACTIONS(3831), + [anon_sym_continue] = ACTIONS(3831), + [anon_sym_return] = ACTIONS(3831), + [anon_sym_DOLLARfor] = ACTIONS(3831), + [anon_sym_for] = ACTIONS(3831), + [anon_sym_POUND] = ACTIONS(3831), + [anon_sym_asm] = ACTIONS(3831), + [anon_sym_AT_LBRACK] = ACTIONS(3831), + [sym___double_quote] = ACTIONS(3831), + [sym___single_quote] = ACTIONS(3831), + [sym___c_double_quote] = ACTIONS(3831), + [sym___c_single_quote] = ACTIONS(3831), + [sym___r_double_quote] = ACTIONS(3831), + [sym___r_single_quote] = ACTIONS(3831), + }, [1448] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(591), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_as] = ACTIONS(595), - [anon_sym_RBRACE] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_RPAREN] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(591), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(591), - [anon_sym_BANG_EQ] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(591), - [anon_sym_GT_EQ] = ACTIONS(591), - [anon_sym_LBRACK] = ACTIONS(591), - [anon_sym_RBRACK] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(591), - [anon_sym_DASH_DASH] = ACTIONS(591), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(3829), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(591), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(591), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_GT_GT_GT] = ACTIONS(591), - [anon_sym_AMP_CARET] = ACTIONS(591), - [anon_sym_AMP_AMP] = ACTIONS(591), - [anon_sym_PIPE_PIPE] = ACTIONS(591), - [anon_sym_or] = ACTIONS(595), - [anon_sym_QMARK_DOT] = ACTIONS(591), - [anon_sym_POUND_LBRACK] = ACTIONS(591), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(591), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(591), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(591), + [sym_block] = STATE(1549), + [ts_builtin_sym_end] = ACTIONS(3833), + [sym_identifier] = ACTIONS(3835), + [anon_sym_LF] = ACTIONS(3835), + [anon_sym_CR] = ACTIONS(3835), + [anon_sym_CR_LF] = ACTIONS(3835), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3835), + [anon_sym_LBRACE] = ACTIONS(3805), + [anon_sym_const] = ACTIONS(3835), + [anon_sym_LPAREN] = ACTIONS(3835), + [anon_sym___global] = ACTIONS(3835), + [anon_sym_type] = ACTIONS(3835), + [anon_sym_fn] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(3835), + [anon_sym_DASH] = ACTIONS(3835), + [anon_sym_STAR] = ACTIONS(3835), + [anon_sym_struct] = ACTIONS(3835), + [anon_sym_union] = ACTIONS(3835), + [anon_sym_pub] = ACTIONS(3835), + [anon_sym_mut] = ACTIONS(3835), + [anon_sym_enum] = ACTIONS(3835), + [anon_sym_interface] = ACTIONS(3835), + [anon_sym_QMARK] = ACTIONS(3835), + [anon_sym_BANG] = ACTIONS(3835), + [anon_sym_go] = ACTIONS(3835), + [anon_sym_spawn] = ACTIONS(3835), + [anon_sym_json_DOTdecode] = ACTIONS(3835), + [anon_sym_LBRACK2] = ACTIONS(3835), + [anon_sym_TILDE] = ACTIONS(3835), + [anon_sym_CARET] = ACTIONS(3835), + [anon_sym_AMP] = ACTIONS(3835), + [anon_sym_LT_DASH] = ACTIONS(3835), + [sym_none] = ACTIONS(3835), + [sym_true] = ACTIONS(3835), + [sym_false] = ACTIONS(3835), + [sym_nil] = ACTIONS(3835), + [anon_sym_if] = ACTIONS(3835), + [anon_sym_DOLLARif] = ACTIONS(3835), + [anon_sym_match] = ACTIONS(3835), + [anon_sym_select] = ACTIONS(3835), + [anon_sym_lock] = ACTIONS(3835), + [anon_sym_rlock] = ACTIONS(3835), + [anon_sym_unsafe] = ACTIONS(3835), + [anon_sym_sql] = ACTIONS(3835), + [sym_int_literal] = ACTIONS(3835), + [sym_float_literal] = ACTIONS(3835), + [sym_rune_literal] = ACTIONS(3835), + [anon_sym_AT] = ACTIONS(3835), + [anon_sym_shared] = ACTIONS(3835), + [anon_sym_map_LBRACK] = ACTIONS(3835), + [anon_sym_chan] = ACTIONS(3835), + [anon_sym_thread] = ACTIONS(3835), + [anon_sym_atomic] = ACTIONS(3835), + [anon_sym_assert] = ACTIONS(3835), + [anon_sym_defer] = ACTIONS(3835), + [anon_sym_goto] = ACTIONS(3835), + [anon_sym_break] = ACTIONS(3835), + [anon_sym_continue] = ACTIONS(3835), + [anon_sym_return] = ACTIONS(3835), + [anon_sym_DOLLARfor] = ACTIONS(3835), + [anon_sym_for] = ACTIONS(3835), + [anon_sym_POUND] = ACTIONS(3835), + [anon_sym_asm] = ACTIONS(3835), + [anon_sym_AT_LBRACK] = ACTIONS(3835), + [sym___double_quote] = ACTIONS(3835), + [sym___single_quote] = ACTIONS(3835), + [sym___c_double_quote] = ACTIONS(3835), + [sym___c_single_quote] = ACTIONS(3835), + [sym___r_double_quote] = ACTIONS(3835), + [sym___r_single_quote] = ACTIONS(3835), }, [1449] = { - [sym_block] = STATE(1525), - [ts_builtin_sym_end] = ACTIONS(3831), - [sym_identifier] = ACTIONS(3833), - [anon_sym_LF] = ACTIONS(3833), - [anon_sym_CR] = ACTIONS(3833), - [anon_sym_CR_LF] = ACTIONS(3833), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3833), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3833), - [anon_sym_LPAREN] = ACTIONS(3833), - [anon_sym___global] = ACTIONS(3833), - [anon_sym_type] = ACTIONS(3833), - [anon_sym_fn] = ACTIONS(3833), - [anon_sym_PLUS] = ACTIONS(3833), - [anon_sym_DASH] = ACTIONS(3833), - [anon_sym_STAR] = ACTIONS(3833), - [anon_sym_struct] = ACTIONS(3833), - [anon_sym_union] = ACTIONS(3833), - [anon_sym_pub] = ACTIONS(3833), - [anon_sym_mut] = ACTIONS(3833), - [anon_sym_enum] = ACTIONS(3833), - [anon_sym_interface] = ACTIONS(3833), - [anon_sym_QMARK] = ACTIONS(3833), - [anon_sym_BANG] = ACTIONS(3833), - [anon_sym_go] = ACTIONS(3833), - [anon_sym_spawn] = ACTIONS(3833), - [anon_sym_json_DOTdecode] = ACTIONS(3833), - [anon_sym_LBRACK2] = ACTIONS(3833), - [anon_sym_TILDE] = ACTIONS(3833), - [anon_sym_CARET] = ACTIONS(3833), - [anon_sym_AMP] = ACTIONS(3833), - [anon_sym_LT_DASH] = ACTIONS(3833), - [sym_none] = ACTIONS(3833), - [sym_true] = ACTIONS(3833), - [sym_false] = ACTIONS(3833), - [sym_nil] = ACTIONS(3833), - [anon_sym_if] = ACTIONS(3833), - [anon_sym_DOLLARif] = ACTIONS(3833), - [anon_sym_match] = ACTIONS(3833), - [anon_sym_select] = ACTIONS(3833), - [anon_sym_lock] = ACTIONS(3833), - [anon_sym_rlock] = ACTIONS(3833), - [anon_sym_unsafe] = ACTIONS(3833), - [anon_sym_sql] = ACTIONS(3833), - [sym_int_literal] = ACTIONS(3833), - [sym_float_literal] = ACTIONS(3833), - [sym_rune_literal] = ACTIONS(3833), - [anon_sym_AT] = ACTIONS(3833), - [anon_sym_shared] = ACTIONS(3833), - [anon_sym_map_LBRACK] = ACTIONS(3833), - [anon_sym_chan] = ACTIONS(3833), - [anon_sym_thread] = ACTIONS(3833), - [anon_sym_atomic] = ACTIONS(3833), - [anon_sym_assert] = ACTIONS(3833), - [anon_sym_defer] = ACTIONS(3833), - [anon_sym_goto] = ACTIONS(3833), - [anon_sym_break] = ACTIONS(3833), - [anon_sym_continue] = ACTIONS(3833), - [anon_sym_return] = ACTIONS(3833), - [anon_sym_DOLLARfor] = ACTIONS(3833), - [anon_sym_for] = ACTIONS(3833), - [anon_sym_POUND] = ACTIONS(3833), - [anon_sym_asm] = ACTIONS(3833), - [anon_sym_AT_LBRACK] = ACTIONS(3833), - [sym___double_quote] = ACTIONS(3833), - [sym___single_quote] = ACTIONS(3833), - [sym___c_double_quote] = ACTIONS(3833), - [sym___c_single_quote] = ACTIONS(3833), - [sym___r_double_quote] = ACTIONS(3833), - [sym___r_single_quote] = ACTIONS(3833), + [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), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_AT] = 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), + [sym___double_quote] = ACTIONS(3042), + [sym___single_quote] = ACTIONS(3042), + [sym___c_double_quote] = ACTIONS(3042), + [sym___c_single_quote] = ACTIONS(3042), + [sym___r_double_quote] = ACTIONS(3042), + [sym___r_single_quote] = ACTIONS(3042), }, [1450] = { - [sym_block] = STATE(1507), - [ts_builtin_sym_end] = ACTIONS(3835), - [sym_identifier] = ACTIONS(3837), - [anon_sym_LF] = ACTIONS(3837), - [anon_sym_CR] = ACTIONS(3837), - [anon_sym_CR_LF] = ACTIONS(3837), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3837), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3837), - [anon_sym_LPAREN] = ACTIONS(3837), - [anon_sym___global] = ACTIONS(3837), - [anon_sym_type] = ACTIONS(3837), - [anon_sym_fn] = ACTIONS(3837), - [anon_sym_PLUS] = ACTIONS(3837), - [anon_sym_DASH] = ACTIONS(3837), - [anon_sym_STAR] = ACTIONS(3837), - [anon_sym_struct] = ACTIONS(3837), - [anon_sym_union] = ACTIONS(3837), - [anon_sym_pub] = ACTIONS(3837), - [anon_sym_mut] = ACTIONS(3837), - [anon_sym_enum] = ACTIONS(3837), - [anon_sym_interface] = ACTIONS(3837), - [anon_sym_QMARK] = ACTIONS(3837), + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2393), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(591), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(589), + [anon_sym_DOT] = ACTIONS(593), + [anon_sym_as] = ACTIONS(593), + [anon_sym_RBRACE] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_RPAREN] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_STAR] = ACTIONS(3357), + [anon_sym_SLASH] = ACTIONS(593), + [anon_sym_PERCENT] = ACTIONS(589), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_EQ_EQ] = ACTIONS(589), + [anon_sym_BANG_EQ] = ACTIONS(589), + [anon_sym_LT_EQ] = ACTIONS(589), + [anon_sym_GT_EQ] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(589), + [anon_sym_RBRACK] = ACTIONS(589), + [anon_sym_struct] = ACTIONS(601), + [anon_sym_COLON] = ACTIONS(589), + [anon_sym_PLUS_PLUS] = ACTIONS(589), + [anon_sym_DASH_DASH] = ACTIONS(589), + [anon_sym_QMARK] = ACTIONS(509), [anon_sym_BANG] = ACTIONS(3837), - [anon_sym_go] = ACTIONS(3837), - [anon_sym_spawn] = ACTIONS(3837), - [anon_sym_json_DOTdecode] = ACTIONS(3837), - [anon_sym_LBRACK2] = ACTIONS(3837), - [anon_sym_TILDE] = ACTIONS(3837), - [anon_sym_CARET] = ACTIONS(3837), - [anon_sym_AMP] = ACTIONS(3837), - [anon_sym_LT_DASH] = ACTIONS(3837), - [sym_none] = ACTIONS(3837), - [sym_true] = ACTIONS(3837), - [sym_false] = ACTIONS(3837), - [sym_nil] = ACTIONS(3837), - [anon_sym_if] = ACTIONS(3837), - [anon_sym_DOLLARif] = ACTIONS(3837), - [anon_sym_match] = ACTIONS(3837), - [anon_sym_select] = ACTIONS(3837), - [anon_sym_lock] = ACTIONS(3837), - [anon_sym_rlock] = ACTIONS(3837), - [anon_sym_unsafe] = ACTIONS(3837), - [anon_sym_sql] = ACTIONS(3837), - [sym_int_literal] = ACTIONS(3837), - [sym_float_literal] = ACTIONS(3837), - [sym_rune_literal] = ACTIONS(3837), - [anon_sym_AT] = ACTIONS(3837), - [anon_sym_shared] = ACTIONS(3837), - [anon_sym_map_LBRACK] = ACTIONS(3837), - [anon_sym_chan] = ACTIONS(3837), - [anon_sym_thread] = ACTIONS(3837), - [anon_sym_atomic] = ACTIONS(3837), - [anon_sym_assert] = ACTIONS(3837), - [anon_sym_defer] = ACTIONS(3837), - [anon_sym_goto] = ACTIONS(3837), - [anon_sym_break] = ACTIONS(3837), - [anon_sym_continue] = ACTIONS(3837), - [anon_sym_return] = ACTIONS(3837), - [anon_sym_DOLLARfor] = ACTIONS(3837), - [anon_sym_for] = ACTIONS(3837), - [anon_sym_POUND] = ACTIONS(3837), - [anon_sym_asm] = ACTIONS(3837), - [anon_sym_AT_LBRACK] = ACTIONS(3837), - [sym___double_quote] = ACTIONS(3837), - [sym___single_quote] = ACTIONS(3837), - [sym___c_double_quote] = ACTIONS(3837), - [sym___c_single_quote] = ACTIONS(3837), - [sym___r_double_quote] = ACTIONS(3837), - [sym___r_single_quote] = ACTIONS(3837), + [anon_sym_LBRACK2] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(607), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_GT_GT_GT] = ACTIONS(589), + [anon_sym_AMP_CARET] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_or] = ACTIONS(593), + [anon_sym_QMARK_DOT] = ACTIONS(589), + [anon_sym_POUND_LBRACK] = ACTIONS(589), + [anon_sym_is] = ACTIONS(593), + [anon_sym_BANGis] = ACTIONS(589), + [anon_sym_in] = ACTIONS(593), + [anon_sym_BANGin] = ACTIONS(589), + [anon_sym_shared] = ACTIONS(609), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(589), }, [1451] = { - [ts_builtin_sym_end] = ACTIONS(2901), - [sym_identifier] = ACTIONS(2903), - [anon_sym_LF] = ACTIONS(2903), - [anon_sym_CR] = ACTIONS(2903), - [anon_sym_CR_LF] = ACTIONS(2903), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2903), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_const] = ACTIONS(2903), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym___global] = ACTIONS(2903), - [anon_sym_type] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2903), - [anon_sym_PLUS] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_STAR] = ACTIONS(2903), - [anon_sym_struct] = ACTIONS(2903), - [anon_sym_union] = ACTIONS(2903), - [anon_sym_pub] = ACTIONS(2903), - [anon_sym_mut] = ACTIONS(2903), - [anon_sym_enum] = ACTIONS(2903), - [anon_sym_interface] = ACTIONS(2903), - [anon_sym_QMARK] = ACTIONS(2903), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_go] = ACTIONS(2903), - [anon_sym_spawn] = ACTIONS(2903), - [anon_sym_json_DOTdecode] = ACTIONS(2903), - [anon_sym_LBRACK2] = ACTIONS(2903), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_CARET] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2903), - [anon_sym_LT_DASH] = ACTIONS(2903), - [sym_none] = ACTIONS(2903), - [sym_true] = ACTIONS(2903), - [sym_false] = ACTIONS(2903), - [sym_nil] = ACTIONS(2903), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_DOLLARif] = ACTIONS(2903), - [anon_sym_match] = ACTIONS(2903), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2903), - [anon_sym_rlock] = ACTIONS(2903), - [anon_sym_unsafe] = ACTIONS(2903), - [anon_sym_sql] = ACTIONS(2903), - [sym_int_literal] = ACTIONS(2903), - [sym_float_literal] = ACTIONS(2903), - [sym_rune_literal] = ACTIONS(2903), - [anon_sym_AT] = ACTIONS(2903), - [anon_sym_shared] = ACTIONS(2903), - [anon_sym_map_LBRACK] = ACTIONS(2903), - [anon_sym_chan] = ACTIONS(2903), - [anon_sym_thread] = ACTIONS(2903), - [anon_sym_atomic] = ACTIONS(2903), - [anon_sym_assert] = ACTIONS(2903), - [anon_sym_defer] = ACTIONS(2903), - [anon_sym_goto] = ACTIONS(2903), - [anon_sym_break] = ACTIONS(2903), - [anon_sym_continue] = ACTIONS(2903), - [anon_sym_return] = ACTIONS(2903), - [anon_sym_DOLLARfor] = ACTIONS(2903), - [anon_sym_for] = ACTIONS(2903), - [anon_sym_POUND] = ACTIONS(2903), - [anon_sym_asm] = ACTIONS(2903), - [anon_sym_AT_LBRACK] = ACTIONS(2903), - [sym___double_quote] = ACTIONS(2903), - [sym___single_quote] = ACTIONS(2903), - [sym___c_double_quote] = ACTIONS(2903), - [sym___c_single_quote] = ACTIONS(2903), - [sym___r_double_quote] = ACTIONS(2903), - [sym___r_single_quote] = ACTIONS(2903), + [ts_builtin_sym_end] = ACTIONS(2920), + [sym_identifier] = ACTIONS(2922), + [anon_sym_LF] = ACTIONS(2922), + [anon_sym_CR] = ACTIONS(2922), + [anon_sym_CR_LF] = ACTIONS(2922), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(2922), + [anon_sym_LPAREN] = ACTIONS(2922), + [anon_sym___global] = ACTIONS(2922), + [anon_sym_type] = ACTIONS(2922), + [anon_sym_PIPE] = ACTIONS(2922), + [anon_sym_fn] = ACTIONS(2922), + [anon_sym_PLUS] = ACTIONS(2922), + [anon_sym_DASH] = ACTIONS(2922), + [anon_sym_STAR] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_pub] = ACTIONS(2922), + [anon_sym_mut] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_interface] = ACTIONS(2922), + [anon_sym_QMARK] = ACTIONS(2922), + [anon_sym_BANG] = ACTIONS(2922), + [anon_sym_go] = ACTIONS(2922), + [anon_sym_spawn] = ACTIONS(2922), + [anon_sym_json_DOTdecode] = ACTIONS(2922), + [anon_sym_LBRACK2] = ACTIONS(2922), + [anon_sym_TILDE] = ACTIONS(2922), + [anon_sym_CARET] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2922), + [anon_sym_LT_DASH] = ACTIONS(2922), + [sym_none] = ACTIONS(2922), + [sym_true] = ACTIONS(2922), + [sym_false] = ACTIONS(2922), + [sym_nil] = ACTIONS(2922), + [anon_sym_if] = ACTIONS(2922), + [anon_sym_DOLLARif] = ACTIONS(2922), + [anon_sym_match] = ACTIONS(2922), + [anon_sym_select] = ACTIONS(2922), + [anon_sym_lock] = ACTIONS(2922), + [anon_sym_rlock] = ACTIONS(2922), + [anon_sym_unsafe] = ACTIONS(2922), + [anon_sym_sql] = ACTIONS(2922), + [sym_int_literal] = ACTIONS(2922), + [sym_float_literal] = ACTIONS(2922), + [sym_rune_literal] = ACTIONS(2922), + [anon_sym_AT] = ACTIONS(2922), + [anon_sym_shared] = ACTIONS(2922), + [anon_sym_map_LBRACK] = ACTIONS(2922), + [anon_sym_chan] = ACTIONS(2922), + [anon_sym_thread] = ACTIONS(2922), + [anon_sym_atomic] = ACTIONS(2922), + [anon_sym_assert] = ACTIONS(2922), + [anon_sym_defer] = ACTIONS(2922), + [anon_sym_goto] = ACTIONS(2922), + [anon_sym_break] = ACTIONS(2922), + [anon_sym_continue] = ACTIONS(2922), + [anon_sym_return] = ACTIONS(2922), + [anon_sym_DOLLARfor] = ACTIONS(2922), + [anon_sym_for] = ACTIONS(2922), + [anon_sym_POUND] = ACTIONS(2922), + [anon_sym_asm] = ACTIONS(2922), + [anon_sym_AT_LBRACK] = ACTIONS(2922), + [sym___double_quote] = ACTIONS(2922), + [sym___single_quote] = ACTIONS(2922), + [sym___c_double_quote] = ACTIONS(2922), + [sym___c_single_quote] = ACTIONS(2922), + [sym___r_double_quote] = ACTIONS(2922), + [sym___r_single_quote] = ACTIONS(2922), }, [1452] = { - [sym_block] = STATE(1532), + [sym_block] = STATE(1495), [ts_builtin_sym_end] = ACTIONS(3839), [sym_identifier] = ACTIONS(3841), [anon_sym_LF] = ACTIONS(3841), [anon_sym_CR] = ACTIONS(3841), [anon_sym_CR_LF] = ACTIONS(3841), - [sym_comment] = ACTIONS(487), + [sym_comment] = ACTIONS(493), [anon_sym_DOT] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3799), + [anon_sym_LBRACE] = ACTIONS(3805), [anon_sym_const] = ACTIONS(3841), [anon_sym_LPAREN] = ACTIONS(3841), [anon_sym___global] = ACTIONS(3841), @@ -178828,15 +179162,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(3841), }, [1453] = { - [sym_block] = STATE(1510), + [sym_block] = STATE(1509), [ts_builtin_sym_end] = ACTIONS(3843), [sym_identifier] = ACTIONS(3845), [anon_sym_LF] = ACTIONS(3845), [anon_sym_CR] = ACTIONS(3845), [anon_sym_CR_LF] = ACTIONS(3845), - [sym_comment] = ACTIONS(487), + [sym_comment] = ACTIONS(493), [anon_sym_DOT] = ACTIONS(3845), - [anon_sym_LBRACE] = ACTIONS(3799), + [anon_sym_LBRACE] = ACTIONS(3805), [anon_sym_const] = ACTIONS(3845), [anon_sym_LPAREN] = ACTIONS(3845), [anon_sym___global] = ACTIONS(3845), @@ -178901,3197 +179235,3345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(3845), }, [1454] = { - [ts_builtin_sym_end] = ACTIONS(2937), - [sym_identifier] = ACTIONS(2939), - [anon_sym_LF] = ACTIONS(2939), - [anon_sym_CR] = ACTIONS(2939), - [anon_sym_CR_LF] = ACTIONS(2939), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2939), - [anon_sym_LBRACE] = ACTIONS(2939), - [anon_sym_const] = ACTIONS(2939), - [anon_sym_LPAREN] = ACTIONS(2939), - [anon_sym___global] = ACTIONS(2939), - [anon_sym_type] = ACTIONS(2939), - [anon_sym_PIPE] = ACTIONS(2939), - [anon_sym_fn] = ACTIONS(2939), - [anon_sym_PLUS] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2939), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_struct] = ACTIONS(2939), - [anon_sym_union] = ACTIONS(2939), - [anon_sym_pub] = ACTIONS(2939), - [anon_sym_mut] = ACTIONS(2939), - [anon_sym_enum] = ACTIONS(2939), - [anon_sym_interface] = ACTIONS(2939), - [anon_sym_QMARK] = ACTIONS(2939), - [anon_sym_BANG] = ACTIONS(2939), - [anon_sym_go] = ACTIONS(2939), - [anon_sym_spawn] = ACTIONS(2939), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2939), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_CARET] = ACTIONS(2939), - [anon_sym_AMP] = ACTIONS(2939), - [anon_sym_LT_DASH] = ACTIONS(2939), - [sym_none] = ACTIONS(2939), - [sym_true] = ACTIONS(2939), - [sym_false] = ACTIONS(2939), - [sym_nil] = ACTIONS(2939), - [anon_sym_if] = ACTIONS(2939), - [anon_sym_DOLLARif] = ACTIONS(2939), - [anon_sym_match] = ACTIONS(2939), - [anon_sym_select] = ACTIONS(2939), - [anon_sym_lock] = ACTIONS(2939), - [anon_sym_rlock] = ACTIONS(2939), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2939), - [sym_int_literal] = ACTIONS(2939), - [sym_float_literal] = ACTIONS(2939), - [sym_rune_literal] = ACTIONS(2939), - [anon_sym_AT] = ACTIONS(2939), - [anon_sym_shared] = ACTIONS(2939), - [anon_sym_map_LBRACK] = ACTIONS(2939), - [anon_sym_chan] = ACTIONS(2939), - [anon_sym_thread] = ACTIONS(2939), - [anon_sym_atomic] = ACTIONS(2939), - [anon_sym_assert] = ACTIONS(2939), - [anon_sym_defer] = ACTIONS(2939), - [anon_sym_goto] = ACTIONS(2939), - [anon_sym_break] = ACTIONS(2939), - [anon_sym_continue] = ACTIONS(2939), - [anon_sym_return] = ACTIONS(2939), - [anon_sym_DOLLARfor] = ACTIONS(2939), - [anon_sym_for] = ACTIONS(2939), - [anon_sym_POUND] = ACTIONS(2939), - [anon_sym_asm] = ACTIONS(2939), - [anon_sym_AT_LBRACK] = ACTIONS(2939), - [sym___double_quote] = ACTIONS(2939), - [sym___single_quote] = ACTIONS(2939), - [sym___c_double_quote] = ACTIONS(2939), - [sym___c_single_quote] = ACTIONS(2939), - [sym___r_double_quote] = ACTIONS(2939), - [sym___r_single_quote] = ACTIONS(2939), + [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), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3046), + [anon_sym_LBRACE] = 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_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_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), + [sym_none] = ACTIONS(3046), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_nil] = ACTIONS(3046), + [anon_sym_if] = ACTIONS(3046), + [anon_sym_DOLLARif] = 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_AT] = 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), + [sym___double_quote] = ACTIONS(3046), + [sym___single_quote] = ACTIONS(3046), + [sym___c_double_quote] = ACTIONS(3046), + [sym___c_single_quote] = ACTIONS(3046), + [sym___r_double_quote] = ACTIONS(3046), + [sym___r_single_quote] = ACTIONS(3046), }, [1455] = { - [sym_label_reference] = STATE(1559), - [ts_builtin_sym_end] = ACTIONS(3847), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LF] = ACTIONS(3851), - [anon_sym_CR] = ACTIONS(3851), - [anon_sym_CR_LF] = ACTIONS(3851), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_LBRACE] = ACTIONS(3851), - [anon_sym_const] = ACTIONS(3851), - [anon_sym_LPAREN] = ACTIONS(3851), - [anon_sym___global] = ACTIONS(3851), - [anon_sym_type] = ACTIONS(3851), - [anon_sym_fn] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3851), - [anon_sym_struct] = ACTIONS(3851), - [anon_sym_union] = ACTIONS(3851), - [anon_sym_pub] = ACTIONS(3851), - [anon_sym_mut] = ACTIONS(3851), - [anon_sym_enum] = ACTIONS(3851), - [anon_sym_interface] = ACTIONS(3851), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_go] = ACTIONS(3851), - [anon_sym_spawn] = ACTIONS(3851), - [anon_sym_json_DOTdecode] = ACTIONS(3851), - [anon_sym_LBRACK2] = ACTIONS(3851), - [anon_sym_TILDE] = ACTIONS(3851), - [anon_sym_CARET] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_DASH] = ACTIONS(3851), - [sym_none] = ACTIONS(3851), - [sym_true] = ACTIONS(3851), - [sym_false] = ACTIONS(3851), - [sym_nil] = ACTIONS(3851), - [anon_sym_if] = ACTIONS(3851), - [anon_sym_DOLLARif] = ACTIONS(3851), - [anon_sym_match] = ACTIONS(3851), - [anon_sym_select] = ACTIONS(3851), - [anon_sym_lock] = ACTIONS(3851), - [anon_sym_rlock] = ACTIONS(3851), - [anon_sym_unsafe] = ACTIONS(3851), - [anon_sym_sql] = ACTIONS(3851), - [sym_int_literal] = ACTIONS(3851), - [sym_float_literal] = ACTIONS(3851), - [sym_rune_literal] = ACTIONS(3851), - [anon_sym_AT] = ACTIONS(3851), - [anon_sym_shared] = ACTIONS(3851), - [anon_sym_map_LBRACK] = ACTIONS(3851), - [anon_sym_chan] = ACTIONS(3851), - [anon_sym_thread] = ACTIONS(3851), - [anon_sym_atomic] = ACTIONS(3851), - [anon_sym_assert] = ACTIONS(3851), - [anon_sym_defer] = ACTIONS(3851), - [anon_sym_goto] = ACTIONS(3851), - [anon_sym_break] = ACTIONS(3851), - [anon_sym_continue] = ACTIONS(3851), - [anon_sym_return] = ACTIONS(3851), - [anon_sym_DOLLARfor] = ACTIONS(3851), - [anon_sym_for] = ACTIONS(3851), - [anon_sym_POUND] = ACTIONS(3851), - [anon_sym_asm] = ACTIONS(3851), - [anon_sym_AT_LBRACK] = ACTIONS(3851), - [sym___double_quote] = ACTIONS(3851), - [sym___single_quote] = ACTIONS(3851), - [sym___c_double_quote] = ACTIONS(3851), - [sym___c_single_quote] = ACTIONS(3851), - [sym___r_double_quote] = ACTIONS(3851), - [sym___r_single_quote] = ACTIONS(3851), + [ts_builtin_sym_end] = ACTIONS(2820), + [sym_identifier] = ACTIONS(2822), + [anon_sym_LF] = ACTIONS(2822), + [anon_sym_CR] = ACTIONS(2822), + [anon_sym_CR_LF] = ACTIONS(2822), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2822), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_const] = ACTIONS(2822), + [anon_sym_LPAREN] = ACTIONS(2822), + [anon_sym___global] = ACTIONS(2822), + [anon_sym_type] = ACTIONS(2822), + [anon_sym_PIPE] = ACTIONS(2822), + [anon_sym_fn] = ACTIONS(2822), + [anon_sym_PLUS] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2822), + [anon_sym_STAR] = ACTIONS(2822), + [anon_sym_struct] = ACTIONS(2822), + [anon_sym_union] = ACTIONS(2822), + [anon_sym_pub] = ACTIONS(2822), + [anon_sym_mut] = ACTIONS(2822), + [anon_sym_enum] = ACTIONS(2822), + [anon_sym_interface] = ACTIONS(2822), + [anon_sym_QMARK] = ACTIONS(2822), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_go] = ACTIONS(2822), + [anon_sym_spawn] = ACTIONS(2822), + [anon_sym_json_DOTdecode] = ACTIONS(2822), + [anon_sym_LBRACK2] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_CARET] = ACTIONS(2822), + [anon_sym_AMP] = ACTIONS(2822), + [anon_sym_LT_DASH] = ACTIONS(2822), + [sym_none] = ACTIONS(2822), + [sym_true] = ACTIONS(2822), + [sym_false] = ACTIONS(2822), + [sym_nil] = ACTIONS(2822), + [anon_sym_if] = ACTIONS(2822), + [anon_sym_DOLLARif] = ACTIONS(2822), + [anon_sym_match] = ACTIONS(2822), + [anon_sym_select] = ACTIONS(2822), + [anon_sym_lock] = ACTIONS(2822), + [anon_sym_rlock] = ACTIONS(2822), + [anon_sym_unsafe] = ACTIONS(2822), + [anon_sym_sql] = ACTIONS(2822), + [sym_int_literal] = ACTIONS(2822), + [sym_float_literal] = ACTIONS(2822), + [sym_rune_literal] = ACTIONS(2822), + [anon_sym_AT] = ACTIONS(2822), + [anon_sym_shared] = ACTIONS(2822), + [anon_sym_map_LBRACK] = ACTIONS(2822), + [anon_sym_chan] = ACTIONS(2822), + [anon_sym_thread] = ACTIONS(2822), + [anon_sym_atomic] = ACTIONS(2822), + [anon_sym_assert] = ACTIONS(2822), + [anon_sym_defer] = ACTIONS(2822), + [anon_sym_goto] = ACTIONS(2822), + [anon_sym_break] = ACTIONS(2822), + [anon_sym_continue] = ACTIONS(2822), + [anon_sym_return] = ACTIONS(2822), + [anon_sym_DOLLARfor] = ACTIONS(2822), + [anon_sym_for] = ACTIONS(2822), + [anon_sym_POUND] = ACTIONS(2822), + [anon_sym_asm] = ACTIONS(2822), + [anon_sym_AT_LBRACK] = ACTIONS(2822), + [sym___double_quote] = ACTIONS(2822), + [sym___single_quote] = ACTIONS(2822), + [sym___c_double_quote] = ACTIONS(2822), + [sym___c_single_quote] = ACTIONS(2822), + [sym___r_double_quote] = ACTIONS(2822), + [sym___r_single_quote] = ACTIONS(2822), }, [1456] = { - [sym_label_reference] = STATE(1562), - [ts_builtin_sym_end] = ACTIONS(3853), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LF] = ACTIONS(3855), - [anon_sym_CR] = ACTIONS(3855), - [anon_sym_CR_LF] = ACTIONS(3855), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3855), - [anon_sym_LBRACE] = ACTIONS(3855), - [anon_sym_const] = ACTIONS(3855), - [anon_sym_LPAREN] = ACTIONS(3855), - [anon_sym___global] = ACTIONS(3855), - [anon_sym_type] = ACTIONS(3855), - [anon_sym_fn] = ACTIONS(3855), - [anon_sym_PLUS] = ACTIONS(3855), - [anon_sym_DASH] = ACTIONS(3855), - [anon_sym_STAR] = ACTIONS(3855), - [anon_sym_struct] = ACTIONS(3855), - [anon_sym_union] = ACTIONS(3855), - [anon_sym_pub] = ACTIONS(3855), - [anon_sym_mut] = ACTIONS(3855), - [anon_sym_enum] = ACTIONS(3855), - [anon_sym_interface] = ACTIONS(3855), - [anon_sym_QMARK] = ACTIONS(3855), - [anon_sym_BANG] = ACTIONS(3855), - [anon_sym_go] = ACTIONS(3855), - [anon_sym_spawn] = ACTIONS(3855), - [anon_sym_json_DOTdecode] = ACTIONS(3855), - [anon_sym_LBRACK2] = ACTIONS(3855), - [anon_sym_TILDE] = ACTIONS(3855), - [anon_sym_CARET] = ACTIONS(3855), - [anon_sym_AMP] = ACTIONS(3855), - [anon_sym_LT_DASH] = ACTIONS(3855), - [sym_none] = ACTIONS(3855), - [sym_true] = ACTIONS(3855), - [sym_false] = ACTIONS(3855), - [sym_nil] = ACTIONS(3855), - [anon_sym_if] = ACTIONS(3855), - [anon_sym_DOLLARif] = ACTIONS(3855), - [anon_sym_match] = ACTIONS(3855), - [anon_sym_select] = ACTIONS(3855), - [anon_sym_lock] = ACTIONS(3855), - [anon_sym_rlock] = ACTIONS(3855), - [anon_sym_unsafe] = ACTIONS(3855), - [anon_sym_sql] = ACTIONS(3855), - [sym_int_literal] = ACTIONS(3855), - [sym_float_literal] = ACTIONS(3855), - [sym_rune_literal] = ACTIONS(3855), - [anon_sym_AT] = ACTIONS(3855), - [anon_sym_shared] = ACTIONS(3855), - [anon_sym_map_LBRACK] = ACTIONS(3855), - [anon_sym_chan] = ACTIONS(3855), - [anon_sym_thread] = ACTIONS(3855), - [anon_sym_atomic] = ACTIONS(3855), - [anon_sym_assert] = ACTIONS(3855), - [anon_sym_defer] = ACTIONS(3855), - [anon_sym_goto] = ACTIONS(3855), - [anon_sym_break] = ACTIONS(3855), - [anon_sym_continue] = ACTIONS(3855), - [anon_sym_return] = ACTIONS(3855), - [anon_sym_DOLLARfor] = ACTIONS(3855), - [anon_sym_for] = ACTIONS(3855), - [anon_sym_POUND] = ACTIONS(3855), - [anon_sym_asm] = ACTIONS(3855), - [anon_sym_AT_LBRACK] = ACTIONS(3855), - [sym___double_quote] = ACTIONS(3855), - [sym___single_quote] = ACTIONS(3855), - [sym___c_double_quote] = ACTIONS(3855), - [sym___c_single_quote] = ACTIONS(3855), - [sym___r_double_quote] = ACTIONS(3855), - [sym___r_single_quote] = ACTIONS(3855), + [ts_builtin_sym_end] = ACTIONS(3080), + [sym_identifier] = ACTIONS(3082), + [anon_sym_LF] = ACTIONS(3082), + [anon_sym_CR] = ACTIONS(3082), + [anon_sym_CR_LF] = ACTIONS(3082), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3082), + [anon_sym_const] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3082), + [anon_sym___global] = ACTIONS(3082), + [anon_sym_type] = ACTIONS(3082), + [anon_sym_PIPE] = ACTIONS(3082), + [anon_sym_fn] = ACTIONS(3082), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_STAR] = ACTIONS(3082), + [anon_sym_struct] = ACTIONS(3082), + [anon_sym_union] = ACTIONS(3082), + [anon_sym_pub] = ACTIONS(3082), + [anon_sym_mut] = ACTIONS(3082), + [anon_sym_enum] = ACTIONS(3082), + [anon_sym_interface] = ACTIONS(3082), + [anon_sym_QMARK] = ACTIONS(3082), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_go] = ACTIONS(3082), + [anon_sym_spawn] = ACTIONS(3082), + [anon_sym_json_DOTdecode] = ACTIONS(3082), + [anon_sym_LBRACK2] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_CARET] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(3082), + [anon_sym_LT_DASH] = ACTIONS(3082), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_DOLLARif] = ACTIONS(3082), + [anon_sym_match] = ACTIONS(3082), + [anon_sym_select] = ACTIONS(3082), + [anon_sym_lock] = ACTIONS(3082), + [anon_sym_rlock] = ACTIONS(3082), + [anon_sym_unsafe] = ACTIONS(3082), + [anon_sym_sql] = ACTIONS(3082), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3082), + [sym_rune_literal] = ACTIONS(3082), + [anon_sym_AT] = ACTIONS(3082), + [anon_sym_shared] = ACTIONS(3082), + [anon_sym_map_LBRACK] = ACTIONS(3082), + [anon_sym_chan] = ACTIONS(3082), + [anon_sym_thread] = ACTIONS(3082), + [anon_sym_atomic] = ACTIONS(3082), + [anon_sym_assert] = ACTIONS(3082), + [anon_sym_defer] = ACTIONS(3082), + [anon_sym_goto] = ACTIONS(3082), + [anon_sym_break] = ACTIONS(3082), + [anon_sym_continue] = ACTIONS(3082), + [anon_sym_return] = ACTIONS(3082), + [anon_sym_DOLLARfor] = ACTIONS(3082), + [anon_sym_for] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(3082), + [anon_sym_asm] = ACTIONS(3082), + [anon_sym_AT_LBRACK] = ACTIONS(3082), + [sym___double_quote] = ACTIONS(3082), + [sym___single_quote] = ACTIONS(3082), + [sym___c_double_quote] = ACTIONS(3082), + [sym___c_single_quote] = ACTIONS(3082), + [sym___r_double_quote] = ACTIONS(3082), + [sym___r_single_quote] = ACTIONS(3082), }, [1457] = { - [ts_builtin_sym_end] = ACTIONS(3111), - [sym_identifier] = ACTIONS(3113), - [anon_sym_LF] = ACTIONS(3113), - [anon_sym_CR] = ACTIONS(3113), - [anon_sym_CR_LF] = ACTIONS(3113), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_const] = ACTIONS(3113), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym___global] = ACTIONS(3113), - [anon_sym_type] = ACTIONS(3113), - [anon_sym_PIPE] = ACTIONS(3113), - [anon_sym_fn] = ACTIONS(3113), - [anon_sym_PLUS] = ACTIONS(3113), - [anon_sym_DASH] = ACTIONS(3113), - [anon_sym_STAR] = ACTIONS(3113), - [anon_sym_struct] = ACTIONS(3113), - [anon_sym_union] = ACTIONS(3113), - [anon_sym_pub] = ACTIONS(3113), - [anon_sym_mut] = ACTIONS(3113), - [anon_sym_enum] = ACTIONS(3113), - [anon_sym_interface] = ACTIONS(3113), - [anon_sym_QMARK] = ACTIONS(3113), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(3113), - [anon_sym_spawn] = ACTIONS(3113), - [anon_sym_json_DOTdecode] = ACTIONS(3113), - [anon_sym_LBRACK2] = ACTIONS(3113), - [anon_sym_TILDE] = ACTIONS(3113), - [anon_sym_CARET] = ACTIONS(3113), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT_DASH] = ACTIONS(3113), - [sym_none] = ACTIONS(3113), - [sym_true] = ACTIONS(3113), - [sym_false] = ACTIONS(3113), - [sym_nil] = ACTIONS(3113), - [anon_sym_if] = ACTIONS(3113), - [anon_sym_DOLLARif] = ACTIONS(3113), - [anon_sym_match] = ACTIONS(3113), - [anon_sym_select] = ACTIONS(3113), - [anon_sym_lock] = ACTIONS(3113), - [anon_sym_rlock] = ACTIONS(3113), - [anon_sym_unsafe] = ACTIONS(3113), - [anon_sym_sql] = ACTIONS(3113), - [sym_int_literal] = ACTIONS(3113), - [sym_float_literal] = ACTIONS(3113), - [sym_rune_literal] = ACTIONS(3113), - [anon_sym_AT] = ACTIONS(3113), - [anon_sym_shared] = ACTIONS(3113), - [anon_sym_map_LBRACK] = ACTIONS(3113), - [anon_sym_chan] = ACTIONS(3113), - [anon_sym_thread] = ACTIONS(3113), - [anon_sym_atomic] = ACTIONS(3113), - [anon_sym_assert] = ACTIONS(3113), - [anon_sym_defer] = ACTIONS(3113), - [anon_sym_goto] = ACTIONS(3113), - [anon_sym_break] = ACTIONS(3113), - [anon_sym_continue] = ACTIONS(3113), - [anon_sym_return] = ACTIONS(3113), - [anon_sym_DOLLARfor] = ACTIONS(3113), - [anon_sym_for] = ACTIONS(3113), - [anon_sym_POUND] = ACTIONS(3113), - [anon_sym_asm] = ACTIONS(3113), - [anon_sym_AT_LBRACK] = ACTIONS(3113), - [sym___double_quote] = ACTIONS(3113), - [sym___single_quote] = ACTIONS(3113), - [sym___c_double_quote] = ACTIONS(3113), - [sym___c_single_quote] = ACTIONS(3113), - [sym___r_double_quote] = ACTIONS(3113), - [sym___r_single_quote] = ACTIONS(3113), + [sym_block] = STATE(1565), + [ts_builtin_sym_end] = ACTIONS(3847), + [sym_identifier] = ACTIONS(3849), + [anon_sym_LF] = ACTIONS(3849), + [anon_sym_CR] = ACTIONS(3849), + [anon_sym_CR_LF] = ACTIONS(3849), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3849), + [anon_sym_LBRACE] = ACTIONS(3805), + [anon_sym_const] = ACTIONS(3849), + [anon_sym_LPAREN] = ACTIONS(3849), + [anon_sym___global] = ACTIONS(3849), + [anon_sym_type] = ACTIONS(3849), + [anon_sym_fn] = ACTIONS(3849), + [anon_sym_PLUS] = ACTIONS(3849), + [anon_sym_DASH] = ACTIONS(3849), + [anon_sym_STAR] = ACTIONS(3849), + [anon_sym_struct] = ACTIONS(3849), + [anon_sym_union] = ACTIONS(3849), + [anon_sym_pub] = ACTIONS(3849), + [anon_sym_mut] = ACTIONS(3849), + [anon_sym_enum] = ACTIONS(3849), + [anon_sym_interface] = ACTIONS(3849), + [anon_sym_QMARK] = ACTIONS(3849), + [anon_sym_BANG] = ACTIONS(3849), + [anon_sym_go] = ACTIONS(3849), + [anon_sym_spawn] = ACTIONS(3849), + [anon_sym_json_DOTdecode] = ACTIONS(3849), + [anon_sym_LBRACK2] = ACTIONS(3849), + [anon_sym_TILDE] = ACTIONS(3849), + [anon_sym_CARET] = ACTIONS(3849), + [anon_sym_AMP] = ACTIONS(3849), + [anon_sym_LT_DASH] = ACTIONS(3849), + [sym_none] = ACTIONS(3849), + [sym_true] = ACTIONS(3849), + [sym_false] = ACTIONS(3849), + [sym_nil] = ACTIONS(3849), + [anon_sym_if] = ACTIONS(3849), + [anon_sym_DOLLARif] = ACTIONS(3849), + [anon_sym_match] = ACTIONS(3849), + [anon_sym_select] = ACTIONS(3849), + [anon_sym_lock] = ACTIONS(3849), + [anon_sym_rlock] = ACTIONS(3849), + [anon_sym_unsafe] = ACTIONS(3849), + [anon_sym_sql] = ACTIONS(3849), + [sym_int_literal] = ACTIONS(3849), + [sym_float_literal] = ACTIONS(3849), + [sym_rune_literal] = ACTIONS(3849), + [anon_sym_AT] = ACTIONS(3849), + [anon_sym_shared] = ACTIONS(3849), + [anon_sym_map_LBRACK] = ACTIONS(3849), + [anon_sym_chan] = ACTIONS(3849), + [anon_sym_thread] = ACTIONS(3849), + [anon_sym_atomic] = ACTIONS(3849), + [anon_sym_assert] = ACTIONS(3849), + [anon_sym_defer] = ACTIONS(3849), + [anon_sym_goto] = ACTIONS(3849), + [anon_sym_break] = ACTIONS(3849), + [anon_sym_continue] = ACTIONS(3849), + [anon_sym_return] = ACTIONS(3849), + [anon_sym_DOLLARfor] = ACTIONS(3849), + [anon_sym_for] = ACTIONS(3849), + [anon_sym_POUND] = ACTIONS(3849), + [anon_sym_asm] = ACTIONS(3849), + [anon_sym_AT_LBRACK] = ACTIONS(3849), + [sym___double_quote] = ACTIONS(3849), + [sym___single_quote] = ACTIONS(3849), + [sym___c_double_quote] = ACTIONS(3849), + [sym___c_single_quote] = ACTIONS(3849), + [sym___r_double_quote] = ACTIONS(3849), + [sym___r_single_quote] = ACTIONS(3849), }, [1458] = { - [ts_builtin_sym_end] = ACTIONS(3107), - [sym_identifier] = ACTIONS(3109), - [anon_sym_LF] = ACTIONS(3109), - [anon_sym_CR] = ACTIONS(3109), - [anon_sym_CR_LF] = ACTIONS(3109), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_const] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym___global] = ACTIONS(3109), - [anon_sym_type] = ACTIONS(3109), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_fn] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(3109), - [anon_sym_union] = ACTIONS(3109), - [anon_sym_pub] = ACTIONS(3109), - [anon_sym_mut] = ACTIONS(3109), - [anon_sym_enum] = ACTIONS(3109), - [anon_sym_interface] = ACTIONS(3109), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_go] = ACTIONS(3109), - [anon_sym_spawn] = ACTIONS(3109), - [anon_sym_json_DOTdecode] = ACTIONS(3109), - [anon_sym_LBRACK2] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT_DASH] = ACTIONS(3109), - [sym_none] = ACTIONS(3109), - [sym_true] = ACTIONS(3109), - [sym_false] = ACTIONS(3109), - [sym_nil] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_DOLLARif] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(3109), - [anon_sym_select] = ACTIONS(3109), - [anon_sym_lock] = ACTIONS(3109), - [anon_sym_rlock] = ACTIONS(3109), - [anon_sym_unsafe] = ACTIONS(3109), - [anon_sym_sql] = ACTIONS(3109), - [sym_int_literal] = ACTIONS(3109), - [sym_float_literal] = ACTIONS(3109), - [sym_rune_literal] = ACTIONS(3109), - [anon_sym_AT] = ACTIONS(3109), - [anon_sym_shared] = ACTIONS(3109), - [anon_sym_map_LBRACK] = ACTIONS(3109), - [anon_sym_chan] = ACTIONS(3109), - [anon_sym_thread] = ACTIONS(3109), - [anon_sym_atomic] = ACTIONS(3109), - [anon_sym_assert] = ACTIONS(3109), - [anon_sym_defer] = ACTIONS(3109), - [anon_sym_goto] = ACTIONS(3109), - [anon_sym_break] = ACTIONS(3109), - [anon_sym_continue] = ACTIONS(3109), - [anon_sym_return] = ACTIONS(3109), - [anon_sym_DOLLARfor] = ACTIONS(3109), - [anon_sym_for] = ACTIONS(3109), - [anon_sym_POUND] = ACTIONS(3109), - [anon_sym_asm] = ACTIONS(3109), - [anon_sym_AT_LBRACK] = ACTIONS(3109), - [sym___double_quote] = ACTIONS(3109), - [sym___single_quote] = ACTIONS(3109), - [sym___c_double_quote] = ACTIONS(3109), - [sym___c_single_quote] = ACTIONS(3109), - [sym___r_double_quote] = ACTIONS(3109), - [sym___r_single_quote] = ACTIONS(3109), + [ts_builtin_sym_end] = ACTIONS(2912), + [sym_identifier] = ACTIONS(2914), + [anon_sym_LF] = ACTIONS(2914), + [anon_sym_CR] = ACTIONS(2914), + [anon_sym_CR_LF] = ACTIONS(2914), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2914), + [anon_sym_LBRACE] = ACTIONS(2914), + [anon_sym_const] = ACTIONS(2914), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym___global] = ACTIONS(2914), + [anon_sym_type] = ACTIONS(2914), + [anon_sym_PIPE] = ACTIONS(2914), + [anon_sym_fn] = ACTIONS(2914), + [anon_sym_PLUS] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_struct] = ACTIONS(2914), + [anon_sym_union] = ACTIONS(2914), + [anon_sym_pub] = ACTIONS(2914), + [anon_sym_mut] = ACTIONS(2914), + [anon_sym_enum] = ACTIONS(2914), + [anon_sym_interface] = ACTIONS(2914), + [anon_sym_QMARK] = ACTIONS(2914), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_go] = ACTIONS(2914), + [anon_sym_spawn] = ACTIONS(2914), + [anon_sym_json_DOTdecode] = ACTIONS(2914), + [anon_sym_LBRACK2] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2914), + [anon_sym_CARET] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2914), + [anon_sym_LT_DASH] = ACTIONS(2914), + [sym_none] = ACTIONS(2914), + [sym_true] = ACTIONS(2914), + [sym_false] = ACTIONS(2914), + [sym_nil] = ACTIONS(2914), + [anon_sym_if] = ACTIONS(2914), + [anon_sym_DOLLARif] = ACTIONS(2914), + [anon_sym_match] = ACTIONS(2914), + [anon_sym_select] = ACTIONS(2914), + [anon_sym_lock] = ACTIONS(2914), + [anon_sym_rlock] = ACTIONS(2914), + [anon_sym_unsafe] = ACTIONS(2914), + [anon_sym_sql] = ACTIONS(2914), + [sym_int_literal] = ACTIONS(2914), + [sym_float_literal] = ACTIONS(2914), + [sym_rune_literal] = ACTIONS(2914), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_shared] = ACTIONS(2914), + [anon_sym_map_LBRACK] = ACTIONS(2914), + [anon_sym_chan] = ACTIONS(2914), + [anon_sym_thread] = ACTIONS(2914), + [anon_sym_atomic] = ACTIONS(2914), + [anon_sym_assert] = ACTIONS(2914), + [anon_sym_defer] = ACTIONS(2914), + [anon_sym_goto] = ACTIONS(2914), + [anon_sym_break] = ACTIONS(2914), + [anon_sym_continue] = ACTIONS(2914), + [anon_sym_return] = ACTIONS(2914), + [anon_sym_DOLLARfor] = ACTIONS(2914), + [anon_sym_for] = ACTIONS(2914), + [anon_sym_POUND] = ACTIONS(2914), + [anon_sym_asm] = ACTIONS(2914), + [anon_sym_AT_LBRACK] = ACTIONS(2914), + [sym___double_quote] = ACTIONS(2914), + [sym___single_quote] = ACTIONS(2914), + [sym___c_double_quote] = ACTIONS(2914), + [sym___c_single_quote] = ACTIONS(2914), + [sym___r_double_quote] = ACTIONS(2914), + [sym___r_single_quote] = ACTIONS(2914), }, [1459] = { - [sym_block] = STATE(1580), - [ts_builtin_sym_end] = ACTIONS(3857), - [sym_identifier] = ACTIONS(3859), - [anon_sym_LF] = ACTIONS(3859), - [anon_sym_CR] = ACTIONS(3859), - [anon_sym_CR_LF] = ACTIONS(3859), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3859), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3859), - [anon_sym_LPAREN] = ACTIONS(3859), - [anon_sym___global] = ACTIONS(3859), - [anon_sym_type] = ACTIONS(3859), - [anon_sym_fn] = ACTIONS(3859), - [anon_sym_PLUS] = ACTIONS(3859), - [anon_sym_DASH] = ACTIONS(3859), - [anon_sym_STAR] = ACTIONS(3859), - [anon_sym_struct] = ACTIONS(3859), - [anon_sym_union] = ACTIONS(3859), - [anon_sym_pub] = ACTIONS(3859), - [anon_sym_mut] = ACTIONS(3859), - [anon_sym_enum] = ACTIONS(3859), - [anon_sym_interface] = ACTIONS(3859), - [anon_sym_QMARK] = ACTIONS(3859), - [anon_sym_BANG] = ACTIONS(3859), - [anon_sym_go] = ACTIONS(3859), - [anon_sym_spawn] = ACTIONS(3859), - [anon_sym_json_DOTdecode] = ACTIONS(3859), - [anon_sym_LBRACK2] = ACTIONS(3859), - [anon_sym_TILDE] = ACTIONS(3859), - [anon_sym_CARET] = ACTIONS(3859), - [anon_sym_AMP] = ACTIONS(3859), - [anon_sym_LT_DASH] = ACTIONS(3859), - [sym_none] = ACTIONS(3859), - [sym_true] = ACTIONS(3859), - [sym_false] = ACTIONS(3859), - [sym_nil] = ACTIONS(3859), - [anon_sym_if] = ACTIONS(3859), - [anon_sym_DOLLARif] = ACTIONS(3859), - [anon_sym_match] = ACTIONS(3859), - [anon_sym_select] = ACTIONS(3859), - [anon_sym_lock] = ACTIONS(3859), - [anon_sym_rlock] = ACTIONS(3859), - [anon_sym_unsafe] = ACTIONS(3859), - [anon_sym_sql] = ACTIONS(3859), - [sym_int_literal] = ACTIONS(3859), - [sym_float_literal] = ACTIONS(3859), - [sym_rune_literal] = ACTIONS(3859), - [anon_sym_AT] = ACTIONS(3859), - [anon_sym_shared] = ACTIONS(3859), - [anon_sym_map_LBRACK] = ACTIONS(3859), - [anon_sym_chan] = ACTIONS(3859), - [anon_sym_thread] = ACTIONS(3859), - [anon_sym_atomic] = ACTIONS(3859), - [anon_sym_assert] = ACTIONS(3859), - [anon_sym_defer] = ACTIONS(3859), - [anon_sym_goto] = ACTIONS(3859), - [anon_sym_break] = ACTIONS(3859), - [anon_sym_continue] = ACTIONS(3859), - [anon_sym_return] = ACTIONS(3859), - [anon_sym_DOLLARfor] = ACTIONS(3859), - [anon_sym_for] = ACTIONS(3859), - [anon_sym_POUND] = ACTIONS(3859), - [anon_sym_asm] = ACTIONS(3859), - [anon_sym_AT_LBRACK] = ACTIONS(3859), - [sym___double_quote] = ACTIONS(3859), - [sym___single_quote] = ACTIONS(3859), - [sym___c_double_quote] = ACTIONS(3859), - [sym___c_single_quote] = ACTIONS(3859), - [sym___r_double_quote] = ACTIONS(3859), - [sym___r_single_quote] = ACTIONS(3859), + [sym_block] = STATE(1564), + [ts_builtin_sym_end] = ACTIONS(3851), + [sym_identifier] = ACTIONS(3853), + [anon_sym_LF] = ACTIONS(3853), + [anon_sym_CR] = ACTIONS(3853), + [anon_sym_CR_LF] = ACTIONS(3853), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_LBRACE] = ACTIONS(3805), + [anon_sym_const] = ACTIONS(3853), + [anon_sym_LPAREN] = ACTIONS(3853), + [anon_sym___global] = ACTIONS(3853), + [anon_sym_type] = ACTIONS(3853), + [anon_sym_fn] = ACTIONS(3853), + [anon_sym_PLUS] = ACTIONS(3853), + [anon_sym_DASH] = ACTIONS(3853), + [anon_sym_STAR] = ACTIONS(3853), + [anon_sym_struct] = ACTIONS(3853), + [anon_sym_union] = ACTIONS(3853), + [anon_sym_pub] = ACTIONS(3853), + [anon_sym_mut] = ACTIONS(3853), + [anon_sym_enum] = ACTIONS(3853), + [anon_sym_interface] = ACTIONS(3853), + [anon_sym_QMARK] = ACTIONS(3853), + [anon_sym_BANG] = ACTIONS(3853), + [anon_sym_go] = ACTIONS(3853), + [anon_sym_spawn] = ACTIONS(3853), + [anon_sym_json_DOTdecode] = ACTIONS(3853), + [anon_sym_LBRACK2] = ACTIONS(3853), + [anon_sym_TILDE] = ACTIONS(3853), + [anon_sym_CARET] = ACTIONS(3853), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_LT_DASH] = ACTIONS(3853), + [sym_none] = ACTIONS(3853), + [sym_true] = ACTIONS(3853), + [sym_false] = ACTIONS(3853), + [sym_nil] = ACTIONS(3853), + [anon_sym_if] = ACTIONS(3853), + [anon_sym_DOLLARif] = ACTIONS(3853), + [anon_sym_match] = ACTIONS(3853), + [anon_sym_select] = ACTIONS(3853), + [anon_sym_lock] = ACTIONS(3853), + [anon_sym_rlock] = ACTIONS(3853), + [anon_sym_unsafe] = ACTIONS(3853), + [anon_sym_sql] = ACTIONS(3853), + [sym_int_literal] = ACTIONS(3853), + [sym_float_literal] = ACTIONS(3853), + [sym_rune_literal] = ACTIONS(3853), + [anon_sym_AT] = ACTIONS(3853), + [anon_sym_shared] = ACTIONS(3853), + [anon_sym_map_LBRACK] = ACTIONS(3853), + [anon_sym_chan] = ACTIONS(3853), + [anon_sym_thread] = ACTIONS(3853), + [anon_sym_atomic] = ACTIONS(3853), + [anon_sym_assert] = ACTIONS(3853), + [anon_sym_defer] = ACTIONS(3853), + [anon_sym_goto] = ACTIONS(3853), + [anon_sym_break] = ACTIONS(3853), + [anon_sym_continue] = ACTIONS(3853), + [anon_sym_return] = ACTIONS(3853), + [anon_sym_DOLLARfor] = ACTIONS(3853), + [anon_sym_for] = ACTIONS(3853), + [anon_sym_POUND] = ACTIONS(3853), + [anon_sym_asm] = ACTIONS(3853), + [anon_sym_AT_LBRACK] = ACTIONS(3853), + [sym___double_quote] = ACTIONS(3853), + [sym___single_quote] = ACTIONS(3853), + [sym___c_double_quote] = ACTIONS(3853), + [sym___c_single_quote] = ACTIONS(3853), + [sym___r_double_quote] = ACTIONS(3853), + [sym___r_single_quote] = ACTIONS(3853), }, [1460] = { - [sym_block] = STATE(1487), - [ts_builtin_sym_end] = ACTIONS(3861), - [sym_identifier] = ACTIONS(3863), - [anon_sym_LF] = ACTIONS(3863), - [anon_sym_CR] = ACTIONS(3863), - [anon_sym_CR_LF] = ACTIONS(3863), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3863), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3863), - [anon_sym_LPAREN] = ACTIONS(3863), - [anon_sym___global] = ACTIONS(3863), - [anon_sym_type] = ACTIONS(3863), - [anon_sym_fn] = ACTIONS(3863), - [anon_sym_PLUS] = ACTIONS(3863), - [anon_sym_DASH] = ACTIONS(3863), - [anon_sym_STAR] = ACTIONS(3863), - [anon_sym_struct] = ACTIONS(3863), - [anon_sym_union] = ACTIONS(3863), - [anon_sym_pub] = ACTIONS(3863), - [anon_sym_mut] = ACTIONS(3863), - [anon_sym_enum] = ACTIONS(3863), - [anon_sym_interface] = ACTIONS(3863), - [anon_sym_QMARK] = ACTIONS(3863), - [anon_sym_BANG] = ACTIONS(3863), - [anon_sym_go] = ACTIONS(3863), - [anon_sym_spawn] = ACTIONS(3863), - [anon_sym_json_DOTdecode] = ACTIONS(3863), - [anon_sym_LBRACK2] = ACTIONS(3863), - [anon_sym_TILDE] = ACTIONS(3863), - [anon_sym_CARET] = ACTIONS(3863), - [anon_sym_AMP] = ACTIONS(3863), - [anon_sym_LT_DASH] = ACTIONS(3863), - [sym_none] = ACTIONS(3863), - [sym_true] = ACTIONS(3863), - [sym_false] = ACTIONS(3863), - [sym_nil] = ACTIONS(3863), - [anon_sym_if] = ACTIONS(3863), - [anon_sym_DOLLARif] = ACTIONS(3863), - [anon_sym_match] = ACTIONS(3863), - [anon_sym_select] = ACTIONS(3863), - [anon_sym_lock] = ACTIONS(3863), - [anon_sym_rlock] = ACTIONS(3863), - [anon_sym_unsafe] = ACTIONS(3863), - [anon_sym_sql] = ACTIONS(3863), - [sym_int_literal] = ACTIONS(3863), - [sym_float_literal] = ACTIONS(3863), - [sym_rune_literal] = ACTIONS(3863), - [anon_sym_AT] = ACTIONS(3863), - [anon_sym_shared] = ACTIONS(3863), - [anon_sym_map_LBRACK] = ACTIONS(3863), - [anon_sym_chan] = ACTIONS(3863), - [anon_sym_thread] = ACTIONS(3863), - [anon_sym_atomic] = ACTIONS(3863), - [anon_sym_assert] = ACTIONS(3863), - [anon_sym_defer] = ACTIONS(3863), - [anon_sym_goto] = ACTIONS(3863), - [anon_sym_break] = ACTIONS(3863), - [anon_sym_continue] = ACTIONS(3863), - [anon_sym_return] = ACTIONS(3863), - [anon_sym_DOLLARfor] = ACTIONS(3863), - [anon_sym_for] = ACTIONS(3863), - [anon_sym_POUND] = ACTIONS(3863), - [anon_sym_asm] = ACTIONS(3863), - [anon_sym_AT_LBRACK] = ACTIONS(3863), - [sym___double_quote] = ACTIONS(3863), - [sym___single_quote] = ACTIONS(3863), - [sym___c_double_quote] = ACTIONS(3863), - [sym___c_single_quote] = ACTIONS(3863), - [sym___r_double_quote] = ACTIONS(3863), - [sym___r_single_quote] = ACTIONS(3863), + [sym_block] = STATE(1557), + [ts_builtin_sym_end] = ACTIONS(3855), + [sym_identifier] = ACTIONS(3857), + [anon_sym_LF] = ACTIONS(3857), + [anon_sym_CR] = ACTIONS(3857), + [anon_sym_CR_LF] = ACTIONS(3857), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3857), + [anon_sym_LBRACE] = ACTIONS(3805), + [anon_sym_const] = ACTIONS(3857), + [anon_sym_LPAREN] = ACTIONS(3857), + [anon_sym___global] = ACTIONS(3857), + [anon_sym_type] = ACTIONS(3857), + [anon_sym_fn] = ACTIONS(3857), + [anon_sym_PLUS] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3857), + [anon_sym_STAR] = ACTIONS(3857), + [anon_sym_struct] = ACTIONS(3857), + [anon_sym_union] = ACTIONS(3857), + [anon_sym_pub] = ACTIONS(3857), + [anon_sym_mut] = ACTIONS(3857), + [anon_sym_enum] = ACTIONS(3857), + [anon_sym_interface] = ACTIONS(3857), + [anon_sym_QMARK] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_go] = ACTIONS(3857), + [anon_sym_spawn] = ACTIONS(3857), + [anon_sym_json_DOTdecode] = ACTIONS(3857), + [anon_sym_LBRACK2] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_CARET] = ACTIONS(3857), + [anon_sym_AMP] = ACTIONS(3857), + [anon_sym_LT_DASH] = ACTIONS(3857), + [sym_none] = ACTIONS(3857), + [sym_true] = ACTIONS(3857), + [sym_false] = ACTIONS(3857), + [sym_nil] = ACTIONS(3857), + [anon_sym_if] = ACTIONS(3857), + [anon_sym_DOLLARif] = ACTIONS(3857), + [anon_sym_match] = ACTIONS(3857), + [anon_sym_select] = ACTIONS(3857), + [anon_sym_lock] = ACTIONS(3857), + [anon_sym_rlock] = ACTIONS(3857), + [anon_sym_unsafe] = ACTIONS(3857), + [anon_sym_sql] = ACTIONS(3857), + [sym_int_literal] = ACTIONS(3857), + [sym_float_literal] = ACTIONS(3857), + [sym_rune_literal] = ACTIONS(3857), + [anon_sym_AT] = ACTIONS(3857), + [anon_sym_shared] = ACTIONS(3857), + [anon_sym_map_LBRACK] = ACTIONS(3857), + [anon_sym_chan] = ACTIONS(3857), + [anon_sym_thread] = ACTIONS(3857), + [anon_sym_atomic] = ACTIONS(3857), + [anon_sym_assert] = ACTIONS(3857), + [anon_sym_defer] = ACTIONS(3857), + [anon_sym_goto] = ACTIONS(3857), + [anon_sym_break] = ACTIONS(3857), + [anon_sym_continue] = ACTIONS(3857), + [anon_sym_return] = ACTIONS(3857), + [anon_sym_DOLLARfor] = ACTIONS(3857), + [anon_sym_for] = ACTIONS(3857), + [anon_sym_POUND] = ACTIONS(3857), + [anon_sym_asm] = ACTIONS(3857), + [anon_sym_AT_LBRACK] = ACTIONS(3857), + [sym___double_quote] = ACTIONS(3857), + [sym___single_quote] = ACTIONS(3857), + [sym___c_double_quote] = ACTIONS(3857), + [sym___c_single_quote] = ACTIONS(3857), + [sym___r_double_quote] = ACTIONS(3857), + [sym___r_single_quote] = ACTIONS(3857), }, [1461] = { - [sym_block] = STATE(1550), - [ts_builtin_sym_end] = ACTIONS(3865), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LF] = ACTIONS(3867), - [anon_sym_CR] = ACTIONS(3867), - [anon_sym_CR_LF] = ACTIONS(3867), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3867), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3867), - [anon_sym_LPAREN] = ACTIONS(3867), - [anon_sym___global] = ACTIONS(3867), - [anon_sym_type] = ACTIONS(3867), - [anon_sym_fn] = ACTIONS(3867), - [anon_sym_PLUS] = ACTIONS(3867), - [anon_sym_DASH] = ACTIONS(3867), - [anon_sym_STAR] = ACTIONS(3867), - [anon_sym_struct] = ACTIONS(3867), - [anon_sym_union] = ACTIONS(3867), - [anon_sym_pub] = ACTIONS(3867), - [anon_sym_mut] = ACTIONS(3867), - [anon_sym_enum] = ACTIONS(3867), - [anon_sym_interface] = ACTIONS(3867), - [anon_sym_QMARK] = ACTIONS(3867), - [anon_sym_BANG] = ACTIONS(3867), - [anon_sym_go] = ACTIONS(3867), - [anon_sym_spawn] = ACTIONS(3867), - [anon_sym_json_DOTdecode] = ACTIONS(3867), - [anon_sym_LBRACK2] = ACTIONS(3867), - [anon_sym_TILDE] = ACTIONS(3867), - [anon_sym_CARET] = ACTIONS(3867), - [anon_sym_AMP] = ACTIONS(3867), - [anon_sym_LT_DASH] = ACTIONS(3867), - [sym_none] = ACTIONS(3867), - [sym_true] = ACTIONS(3867), - [sym_false] = ACTIONS(3867), - [sym_nil] = ACTIONS(3867), - [anon_sym_if] = ACTIONS(3867), - [anon_sym_DOLLARif] = ACTIONS(3867), - [anon_sym_match] = ACTIONS(3867), - [anon_sym_select] = ACTIONS(3867), - [anon_sym_lock] = ACTIONS(3867), - [anon_sym_rlock] = ACTIONS(3867), - [anon_sym_unsafe] = ACTIONS(3867), - [anon_sym_sql] = ACTIONS(3867), - [sym_int_literal] = ACTIONS(3867), - [sym_float_literal] = ACTIONS(3867), - [sym_rune_literal] = ACTIONS(3867), - [anon_sym_AT] = ACTIONS(3867), - [anon_sym_shared] = ACTIONS(3867), - [anon_sym_map_LBRACK] = ACTIONS(3867), - [anon_sym_chan] = ACTIONS(3867), - [anon_sym_thread] = ACTIONS(3867), - [anon_sym_atomic] = ACTIONS(3867), - [anon_sym_assert] = ACTIONS(3867), - [anon_sym_defer] = ACTIONS(3867), - [anon_sym_goto] = ACTIONS(3867), - [anon_sym_break] = ACTIONS(3867), - [anon_sym_continue] = ACTIONS(3867), - [anon_sym_return] = ACTIONS(3867), - [anon_sym_DOLLARfor] = ACTIONS(3867), - [anon_sym_for] = ACTIONS(3867), - [anon_sym_POUND] = ACTIONS(3867), - [anon_sym_asm] = ACTIONS(3867), - [anon_sym_AT_LBRACK] = ACTIONS(3867), - [sym___double_quote] = ACTIONS(3867), - [sym___single_quote] = ACTIONS(3867), - [sym___c_double_quote] = ACTIONS(3867), - [sym___c_single_quote] = ACTIONS(3867), - [sym___r_double_quote] = ACTIONS(3867), - [sym___r_single_quote] = ACTIONS(3867), + [ts_builtin_sym_end] = ACTIONS(2892), + [sym_identifier] = ACTIONS(2894), + [anon_sym_LF] = ACTIONS(2894), + [anon_sym_CR] = ACTIONS(2894), + [anon_sym_CR_LF] = ACTIONS(2894), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2894), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_LPAREN] = ACTIONS(2894), + [anon_sym___global] = ACTIONS(2894), + [anon_sym_type] = ACTIONS(2894), + [anon_sym_PIPE] = ACTIONS(2894), + [anon_sym_fn] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_STAR] = ACTIONS(2894), + [anon_sym_struct] = ACTIONS(2894), + [anon_sym_union] = ACTIONS(2894), + [anon_sym_pub] = ACTIONS(2894), + [anon_sym_mut] = ACTIONS(2894), + [anon_sym_enum] = ACTIONS(2894), + [anon_sym_interface] = ACTIONS(2894), + [anon_sym_QMARK] = ACTIONS(2894), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_go] = ACTIONS(2894), + [anon_sym_spawn] = ACTIONS(2894), + [anon_sym_json_DOTdecode] = ACTIONS(2894), + [anon_sym_LBRACK2] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_CARET] = ACTIONS(2894), + [anon_sym_AMP] = ACTIONS(2894), + [anon_sym_LT_DASH] = ACTIONS(2894), + [sym_none] = ACTIONS(2894), + [sym_true] = ACTIONS(2894), + [sym_false] = ACTIONS(2894), + [sym_nil] = ACTIONS(2894), + [anon_sym_if] = ACTIONS(2894), + [anon_sym_DOLLARif] = ACTIONS(2894), + [anon_sym_match] = ACTIONS(2894), + [anon_sym_select] = ACTIONS(2894), + [anon_sym_lock] = ACTIONS(2894), + [anon_sym_rlock] = ACTIONS(2894), + [anon_sym_unsafe] = ACTIONS(2894), + [anon_sym_sql] = ACTIONS(2894), + [sym_int_literal] = ACTIONS(2894), + [sym_float_literal] = ACTIONS(2894), + [sym_rune_literal] = ACTIONS(2894), + [anon_sym_AT] = ACTIONS(2894), + [anon_sym_shared] = ACTIONS(2894), + [anon_sym_map_LBRACK] = ACTIONS(2894), + [anon_sym_chan] = ACTIONS(2894), + [anon_sym_thread] = ACTIONS(2894), + [anon_sym_atomic] = ACTIONS(2894), + [anon_sym_assert] = ACTIONS(2894), + [anon_sym_defer] = ACTIONS(2894), + [anon_sym_goto] = ACTIONS(2894), + [anon_sym_break] = ACTIONS(2894), + [anon_sym_continue] = ACTIONS(2894), + [anon_sym_return] = ACTIONS(2894), + [anon_sym_DOLLARfor] = ACTIONS(2894), + [anon_sym_for] = ACTIONS(2894), + [anon_sym_POUND] = ACTIONS(2894), + [anon_sym_asm] = ACTIONS(2894), + [anon_sym_AT_LBRACK] = ACTIONS(2894), + [sym___double_quote] = ACTIONS(2894), + [sym___single_quote] = ACTIONS(2894), + [sym___c_double_quote] = ACTIONS(2894), + [sym___c_single_quote] = ACTIONS(2894), + [sym___r_double_quote] = ACTIONS(2894), + [sym___r_single_quote] = ACTIONS(2894), }, [1462] = { - [sym_block] = STATE(1486), - [ts_builtin_sym_end] = ACTIONS(3869), - [sym_identifier] = ACTIONS(3871), - [anon_sym_LF] = ACTIONS(3871), - [anon_sym_CR] = ACTIONS(3871), - [anon_sym_CR_LF] = ACTIONS(3871), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3871), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3871), - [anon_sym_LPAREN] = ACTIONS(3871), - [anon_sym___global] = ACTIONS(3871), - [anon_sym_type] = ACTIONS(3871), - [anon_sym_fn] = ACTIONS(3871), - [anon_sym_PLUS] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3871), - [anon_sym_STAR] = ACTIONS(3871), - [anon_sym_struct] = ACTIONS(3871), - [anon_sym_union] = ACTIONS(3871), - [anon_sym_pub] = ACTIONS(3871), - [anon_sym_mut] = ACTIONS(3871), - [anon_sym_enum] = ACTIONS(3871), - [anon_sym_interface] = ACTIONS(3871), - [anon_sym_QMARK] = ACTIONS(3871), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_go] = ACTIONS(3871), - [anon_sym_spawn] = ACTIONS(3871), - [anon_sym_json_DOTdecode] = ACTIONS(3871), - [anon_sym_LBRACK2] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_CARET] = ACTIONS(3871), - [anon_sym_AMP] = ACTIONS(3871), - [anon_sym_LT_DASH] = ACTIONS(3871), - [sym_none] = ACTIONS(3871), - [sym_true] = ACTIONS(3871), - [sym_false] = ACTIONS(3871), - [sym_nil] = ACTIONS(3871), - [anon_sym_if] = ACTIONS(3871), - [anon_sym_DOLLARif] = ACTIONS(3871), - [anon_sym_match] = ACTIONS(3871), - [anon_sym_select] = ACTIONS(3871), - [anon_sym_lock] = ACTIONS(3871), - [anon_sym_rlock] = ACTIONS(3871), - [anon_sym_unsafe] = ACTIONS(3871), - [anon_sym_sql] = ACTIONS(3871), - [sym_int_literal] = ACTIONS(3871), - [sym_float_literal] = ACTIONS(3871), - [sym_rune_literal] = ACTIONS(3871), - [anon_sym_AT] = ACTIONS(3871), - [anon_sym_shared] = ACTIONS(3871), - [anon_sym_map_LBRACK] = ACTIONS(3871), - [anon_sym_chan] = ACTIONS(3871), - [anon_sym_thread] = ACTIONS(3871), - [anon_sym_atomic] = ACTIONS(3871), - [anon_sym_assert] = ACTIONS(3871), - [anon_sym_defer] = ACTIONS(3871), - [anon_sym_goto] = ACTIONS(3871), - [anon_sym_break] = ACTIONS(3871), - [anon_sym_continue] = ACTIONS(3871), - [anon_sym_return] = ACTIONS(3871), - [anon_sym_DOLLARfor] = ACTIONS(3871), - [anon_sym_for] = ACTIONS(3871), - [anon_sym_POUND] = ACTIONS(3871), - [anon_sym_asm] = ACTIONS(3871), - [anon_sym_AT_LBRACK] = ACTIONS(3871), - [sym___double_quote] = ACTIONS(3871), - [sym___single_quote] = ACTIONS(3871), - [sym___c_double_quote] = ACTIONS(3871), - [sym___c_single_quote] = ACTIONS(3871), - [sym___r_double_quote] = ACTIONS(3871), - [sym___r_single_quote] = ACTIONS(3871), + [ts_builtin_sym_end] = ACTIONS(2812), + [sym_identifier] = ACTIONS(2814), + [anon_sym_LF] = ACTIONS(2814), + [anon_sym_CR] = ACTIONS(2814), + [anon_sym_CR_LF] = ACTIONS(2814), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2814), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_const] = ACTIONS(2814), + [anon_sym_LPAREN] = ACTIONS(2814), + [anon_sym___global] = ACTIONS(2814), + [anon_sym_type] = ACTIONS(2814), + [anon_sym_PIPE] = ACTIONS(2814), + [anon_sym_fn] = ACTIONS(2814), + [anon_sym_PLUS] = ACTIONS(2814), + [anon_sym_DASH] = ACTIONS(2814), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_struct] = ACTIONS(2814), + [anon_sym_union] = ACTIONS(2814), + [anon_sym_pub] = ACTIONS(2814), + [anon_sym_mut] = ACTIONS(2814), + [anon_sym_enum] = ACTIONS(2814), + [anon_sym_interface] = ACTIONS(2814), + [anon_sym_QMARK] = ACTIONS(2814), + [anon_sym_BANG] = ACTIONS(2814), + [anon_sym_go] = ACTIONS(2814), + [anon_sym_spawn] = ACTIONS(2814), + [anon_sym_json_DOTdecode] = ACTIONS(2814), + [anon_sym_LBRACK2] = ACTIONS(2814), + [anon_sym_TILDE] = ACTIONS(2814), + [anon_sym_CARET] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2814), + [anon_sym_LT_DASH] = ACTIONS(2814), + [sym_none] = ACTIONS(2814), + [sym_true] = ACTIONS(2814), + [sym_false] = ACTIONS(2814), + [sym_nil] = ACTIONS(2814), + [anon_sym_if] = ACTIONS(2814), + [anon_sym_DOLLARif] = ACTIONS(2814), + [anon_sym_match] = ACTIONS(2814), + [anon_sym_select] = ACTIONS(2814), + [anon_sym_lock] = ACTIONS(2814), + [anon_sym_rlock] = ACTIONS(2814), + [anon_sym_unsafe] = ACTIONS(2814), + [anon_sym_sql] = ACTIONS(2814), + [sym_int_literal] = ACTIONS(2814), + [sym_float_literal] = ACTIONS(2814), + [sym_rune_literal] = ACTIONS(2814), + [anon_sym_AT] = ACTIONS(2814), + [anon_sym_shared] = ACTIONS(2814), + [anon_sym_map_LBRACK] = ACTIONS(2814), + [anon_sym_chan] = ACTIONS(2814), + [anon_sym_thread] = ACTIONS(2814), + [anon_sym_atomic] = ACTIONS(2814), + [anon_sym_assert] = ACTIONS(2814), + [anon_sym_defer] = ACTIONS(2814), + [anon_sym_goto] = ACTIONS(2814), + [anon_sym_break] = ACTIONS(2814), + [anon_sym_continue] = ACTIONS(2814), + [anon_sym_return] = ACTIONS(2814), + [anon_sym_DOLLARfor] = ACTIONS(2814), + [anon_sym_for] = ACTIONS(2814), + [anon_sym_POUND] = ACTIONS(2814), + [anon_sym_asm] = ACTIONS(2814), + [anon_sym_AT_LBRACK] = ACTIONS(2814), + [sym___double_quote] = ACTIONS(2814), + [sym___single_quote] = ACTIONS(2814), + [sym___c_double_quote] = ACTIONS(2814), + [sym___c_single_quote] = ACTIONS(2814), + [sym___r_double_quote] = ACTIONS(2814), + [sym___r_single_quote] = ACTIONS(2814), }, [1463] = { - [ts_builtin_sym_end] = ACTIONS(3103), - [sym_identifier] = ACTIONS(3105), - [anon_sym_LF] = ACTIONS(3105), - [anon_sym_CR] = ACTIONS(3105), - [anon_sym_CR_LF] = ACTIONS(3105), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(3105), - [anon_sym_const] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3105), - [anon_sym___global] = ACTIONS(3105), - [anon_sym_type] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3105), - [anon_sym_fn] = ACTIONS(3105), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_struct] = ACTIONS(3105), - [anon_sym_union] = ACTIONS(3105), - [anon_sym_pub] = ACTIONS(3105), - [anon_sym_mut] = ACTIONS(3105), - [anon_sym_enum] = ACTIONS(3105), - [anon_sym_interface] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3105), - [anon_sym_go] = ACTIONS(3105), - [anon_sym_spawn] = ACTIONS(3105), - [anon_sym_json_DOTdecode] = ACTIONS(3105), - [anon_sym_LBRACK2] = ACTIONS(3105), - [anon_sym_TILDE] = ACTIONS(3105), - [anon_sym_CARET] = ACTIONS(3105), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_LT_DASH] = ACTIONS(3105), - [sym_none] = ACTIONS(3105), - [sym_true] = ACTIONS(3105), - [sym_false] = ACTIONS(3105), - [sym_nil] = ACTIONS(3105), - [anon_sym_if] = ACTIONS(3105), - [anon_sym_DOLLARif] = ACTIONS(3105), - [anon_sym_match] = ACTIONS(3105), - [anon_sym_select] = ACTIONS(3105), - [anon_sym_lock] = ACTIONS(3105), - [anon_sym_rlock] = ACTIONS(3105), - [anon_sym_unsafe] = ACTIONS(3105), - [anon_sym_sql] = ACTIONS(3105), - [sym_int_literal] = ACTIONS(3105), - [sym_float_literal] = ACTIONS(3105), - [sym_rune_literal] = ACTIONS(3105), - [anon_sym_AT] = ACTIONS(3105), - [anon_sym_shared] = ACTIONS(3105), - [anon_sym_map_LBRACK] = ACTIONS(3105), - [anon_sym_chan] = ACTIONS(3105), - [anon_sym_thread] = ACTIONS(3105), - [anon_sym_atomic] = ACTIONS(3105), - [anon_sym_assert] = ACTIONS(3105), - [anon_sym_defer] = ACTIONS(3105), - [anon_sym_goto] = ACTIONS(3105), - [anon_sym_break] = ACTIONS(3105), - [anon_sym_continue] = ACTIONS(3105), - [anon_sym_return] = ACTIONS(3105), - [anon_sym_DOLLARfor] = ACTIONS(3105), - [anon_sym_for] = ACTIONS(3105), - [anon_sym_POUND] = ACTIONS(3105), - [anon_sym_asm] = ACTIONS(3105), - [anon_sym_AT_LBRACK] = ACTIONS(3105), - [sym___double_quote] = ACTIONS(3105), - [sym___single_quote] = ACTIONS(3105), - [sym___c_double_quote] = ACTIONS(3105), - [sym___c_single_quote] = ACTIONS(3105), - [sym___r_double_quote] = ACTIONS(3105), - [sym___r_single_quote] = ACTIONS(3105), + [sym_block] = STATE(1532), + [ts_builtin_sym_end] = ACTIONS(3859), + [sym_identifier] = ACTIONS(3861), + [anon_sym_LF] = ACTIONS(3861), + [anon_sym_CR] = ACTIONS(3861), + [anon_sym_CR_LF] = ACTIONS(3861), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3861), + [anon_sym_LBRACE] = ACTIONS(3805), + [anon_sym_const] = ACTIONS(3861), + [anon_sym_LPAREN] = ACTIONS(3861), + [anon_sym___global] = ACTIONS(3861), + [anon_sym_type] = ACTIONS(3861), + [anon_sym_fn] = ACTIONS(3861), + [anon_sym_PLUS] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3861), + [anon_sym_STAR] = ACTIONS(3861), + [anon_sym_struct] = ACTIONS(3861), + [anon_sym_union] = ACTIONS(3861), + [anon_sym_pub] = ACTIONS(3861), + [anon_sym_mut] = ACTIONS(3861), + [anon_sym_enum] = ACTIONS(3861), + [anon_sym_interface] = ACTIONS(3861), + [anon_sym_QMARK] = ACTIONS(3861), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(3861), + [anon_sym_spawn] = ACTIONS(3861), + [anon_sym_json_DOTdecode] = ACTIONS(3861), + [anon_sym_LBRACK2] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_CARET] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym_LT_DASH] = ACTIONS(3861), + [sym_none] = ACTIONS(3861), + [sym_true] = ACTIONS(3861), + [sym_false] = ACTIONS(3861), + [sym_nil] = ACTIONS(3861), + [anon_sym_if] = ACTIONS(3861), + [anon_sym_DOLLARif] = ACTIONS(3861), + [anon_sym_match] = ACTIONS(3861), + [anon_sym_select] = ACTIONS(3861), + [anon_sym_lock] = ACTIONS(3861), + [anon_sym_rlock] = ACTIONS(3861), + [anon_sym_unsafe] = ACTIONS(3861), + [anon_sym_sql] = ACTIONS(3861), + [sym_int_literal] = ACTIONS(3861), + [sym_float_literal] = ACTIONS(3861), + [sym_rune_literal] = ACTIONS(3861), + [anon_sym_AT] = ACTIONS(3861), + [anon_sym_shared] = ACTIONS(3861), + [anon_sym_map_LBRACK] = ACTIONS(3861), + [anon_sym_chan] = ACTIONS(3861), + [anon_sym_thread] = ACTIONS(3861), + [anon_sym_atomic] = ACTIONS(3861), + [anon_sym_assert] = ACTIONS(3861), + [anon_sym_defer] = ACTIONS(3861), + [anon_sym_goto] = ACTIONS(3861), + [anon_sym_break] = ACTIONS(3861), + [anon_sym_continue] = ACTIONS(3861), + [anon_sym_return] = ACTIONS(3861), + [anon_sym_DOLLARfor] = ACTIONS(3861), + [anon_sym_for] = ACTIONS(3861), + [anon_sym_POUND] = ACTIONS(3861), + [anon_sym_asm] = ACTIONS(3861), + [anon_sym_AT_LBRACK] = ACTIONS(3861), + [sym___double_quote] = ACTIONS(3861), + [sym___single_quote] = ACTIONS(3861), + [sym___c_double_quote] = ACTIONS(3861), + [sym___c_single_quote] = ACTIONS(3861), + [sym___r_double_quote] = ACTIONS(3861), + [sym___r_single_quote] = ACTIONS(3861), }, [1464] = { - [ts_builtin_sym_end] = ACTIONS(3099), - [sym_identifier] = ACTIONS(3101), - [anon_sym_LF] = ACTIONS(3101), - [anon_sym_CR] = ACTIONS(3101), - [anon_sym_CR_LF] = ACTIONS(3101), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_const] = ACTIONS(3101), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym___global] = ACTIONS(3101), - [anon_sym_type] = ACTIONS(3101), - [anon_sym_PIPE] = ACTIONS(3101), - [anon_sym_fn] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_struct] = ACTIONS(3101), - [anon_sym_union] = ACTIONS(3101), - [anon_sym_pub] = ACTIONS(3101), - [anon_sym_mut] = ACTIONS(3101), - [anon_sym_enum] = ACTIONS(3101), - [anon_sym_interface] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_BANG] = ACTIONS(3101), - [anon_sym_go] = ACTIONS(3101), - [anon_sym_spawn] = ACTIONS(3101), - [anon_sym_json_DOTdecode] = ACTIONS(3101), - [anon_sym_LBRACK2] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_CARET] = ACTIONS(3101), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_LT_DASH] = ACTIONS(3101), - [sym_none] = ACTIONS(3101), - [sym_true] = ACTIONS(3101), - [sym_false] = ACTIONS(3101), - [sym_nil] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_DOLLARif] = ACTIONS(3101), - [anon_sym_match] = ACTIONS(3101), - [anon_sym_select] = ACTIONS(3101), - [anon_sym_lock] = ACTIONS(3101), - [anon_sym_rlock] = ACTIONS(3101), - [anon_sym_unsafe] = ACTIONS(3101), - [anon_sym_sql] = ACTIONS(3101), - [sym_int_literal] = ACTIONS(3101), - [sym_float_literal] = ACTIONS(3101), - [sym_rune_literal] = ACTIONS(3101), - [anon_sym_AT] = ACTIONS(3101), - [anon_sym_shared] = ACTIONS(3101), - [anon_sym_map_LBRACK] = ACTIONS(3101), - [anon_sym_chan] = ACTIONS(3101), - [anon_sym_thread] = ACTIONS(3101), - [anon_sym_atomic] = ACTIONS(3101), - [anon_sym_assert] = ACTIONS(3101), - [anon_sym_defer] = ACTIONS(3101), - [anon_sym_goto] = ACTIONS(3101), - [anon_sym_break] = ACTIONS(3101), - [anon_sym_continue] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_DOLLARfor] = ACTIONS(3101), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_POUND] = ACTIONS(3101), - [anon_sym_asm] = ACTIONS(3101), - [anon_sym_AT_LBRACK] = ACTIONS(3101), - [sym___double_quote] = ACTIONS(3101), - [sym___single_quote] = ACTIONS(3101), - [sym___c_double_quote] = ACTIONS(3101), - [sym___c_single_quote] = ACTIONS(3101), - [sym___r_double_quote] = ACTIONS(3101), - [sym___r_single_quote] = ACTIONS(3101), + [sym_block] = STATE(1556), + [ts_builtin_sym_end] = ACTIONS(3863), + [sym_identifier] = ACTIONS(3865), + [anon_sym_LF] = ACTIONS(3865), + [anon_sym_CR] = ACTIONS(3865), + [anon_sym_CR_LF] = ACTIONS(3865), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3865), + [anon_sym_LBRACE] = ACTIONS(3805), + [anon_sym_const] = ACTIONS(3865), + [anon_sym_LPAREN] = ACTIONS(3865), + [anon_sym___global] = ACTIONS(3865), + [anon_sym_type] = ACTIONS(3865), + [anon_sym_fn] = ACTIONS(3865), + [anon_sym_PLUS] = ACTIONS(3865), + [anon_sym_DASH] = ACTIONS(3865), + [anon_sym_STAR] = ACTIONS(3865), + [anon_sym_struct] = ACTIONS(3865), + [anon_sym_union] = ACTIONS(3865), + [anon_sym_pub] = ACTIONS(3865), + [anon_sym_mut] = ACTIONS(3865), + [anon_sym_enum] = ACTIONS(3865), + [anon_sym_interface] = ACTIONS(3865), + [anon_sym_QMARK] = ACTIONS(3865), + [anon_sym_BANG] = ACTIONS(3865), + [anon_sym_go] = ACTIONS(3865), + [anon_sym_spawn] = ACTIONS(3865), + [anon_sym_json_DOTdecode] = ACTIONS(3865), + [anon_sym_LBRACK2] = ACTIONS(3865), + [anon_sym_TILDE] = ACTIONS(3865), + [anon_sym_CARET] = ACTIONS(3865), + [anon_sym_AMP] = ACTIONS(3865), + [anon_sym_LT_DASH] = ACTIONS(3865), + [sym_none] = ACTIONS(3865), + [sym_true] = ACTIONS(3865), + [sym_false] = ACTIONS(3865), + [sym_nil] = ACTIONS(3865), + [anon_sym_if] = ACTIONS(3865), + [anon_sym_DOLLARif] = ACTIONS(3865), + [anon_sym_match] = ACTIONS(3865), + [anon_sym_select] = ACTIONS(3865), + [anon_sym_lock] = ACTIONS(3865), + [anon_sym_rlock] = ACTIONS(3865), + [anon_sym_unsafe] = ACTIONS(3865), + [anon_sym_sql] = ACTIONS(3865), + [sym_int_literal] = ACTIONS(3865), + [sym_float_literal] = ACTIONS(3865), + [sym_rune_literal] = ACTIONS(3865), + [anon_sym_AT] = ACTIONS(3865), + [anon_sym_shared] = ACTIONS(3865), + [anon_sym_map_LBRACK] = ACTIONS(3865), + [anon_sym_chan] = ACTIONS(3865), + [anon_sym_thread] = ACTIONS(3865), + [anon_sym_atomic] = ACTIONS(3865), + [anon_sym_assert] = ACTIONS(3865), + [anon_sym_defer] = ACTIONS(3865), + [anon_sym_goto] = ACTIONS(3865), + [anon_sym_break] = ACTIONS(3865), + [anon_sym_continue] = ACTIONS(3865), + [anon_sym_return] = ACTIONS(3865), + [anon_sym_DOLLARfor] = ACTIONS(3865), + [anon_sym_for] = ACTIONS(3865), + [anon_sym_POUND] = ACTIONS(3865), + [anon_sym_asm] = ACTIONS(3865), + [anon_sym_AT_LBRACK] = ACTIONS(3865), + [sym___double_quote] = ACTIONS(3865), + [sym___single_quote] = ACTIONS(3865), + [sym___c_double_quote] = ACTIONS(3865), + [sym___c_single_quote] = ACTIONS(3865), + [sym___r_double_quote] = ACTIONS(3865), + [sym___r_single_quote] = ACTIONS(3865), }, [1465] = { - [ts_builtin_sym_end] = ACTIONS(2987), - [sym_identifier] = ACTIONS(2989), - [anon_sym_LF] = ACTIONS(2989), - [anon_sym_CR] = ACTIONS(2989), - [anon_sym_CR_LF] = ACTIONS(2989), - [sym_comment] = ACTIONS(487), - [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_PIPE] = ACTIONS(2989), - [anon_sym_fn] = ACTIONS(2989), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2989), - [anon_sym_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_AT] = ACTIONS(2989), - [anon_sym_shared] = ACTIONS(2989), - [anon_sym_map_LBRACK] = ACTIONS(2989), - [anon_sym_chan] = ACTIONS(2989), - [anon_sym_thread] = ACTIONS(2989), - [anon_sym_atomic] = ACTIONS(2989), - [anon_sym_assert] = ACTIONS(2989), - [anon_sym_defer] = ACTIONS(2989), - [anon_sym_goto] = ACTIONS(2989), - [anon_sym_break] = ACTIONS(2989), - [anon_sym_continue] = ACTIONS(2989), - [anon_sym_return] = ACTIONS(2989), - [anon_sym_DOLLARfor] = ACTIONS(2989), - [anon_sym_for] = ACTIONS(2989), - [anon_sym_POUND] = ACTIONS(2989), - [anon_sym_asm] = ACTIONS(2989), - [anon_sym_AT_LBRACK] = ACTIONS(2989), - [sym___double_quote] = ACTIONS(2989), - [sym___single_quote] = ACTIONS(2989), - [sym___c_double_quote] = ACTIONS(2989), - [sym___c_single_quote] = ACTIONS(2989), - [sym___r_double_quote] = ACTIONS(2989), - [sym___r_single_quote] = ACTIONS(2989), + [sym_block] = STATE(1546), + [ts_builtin_sym_end] = ACTIONS(3867), + [sym_identifier] = ACTIONS(3869), + [anon_sym_LF] = ACTIONS(3869), + [anon_sym_CR] = ACTIONS(3869), + [anon_sym_CR_LF] = ACTIONS(3869), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3869), + [anon_sym_LBRACE] = ACTIONS(3805), + [anon_sym_const] = ACTIONS(3869), + [anon_sym_LPAREN] = ACTIONS(3869), + [anon_sym___global] = ACTIONS(3869), + [anon_sym_type] = ACTIONS(3869), + [anon_sym_fn] = ACTIONS(3869), + [anon_sym_PLUS] = ACTIONS(3869), + [anon_sym_DASH] = ACTIONS(3869), + [anon_sym_STAR] = ACTIONS(3869), + [anon_sym_struct] = ACTIONS(3869), + [anon_sym_union] = ACTIONS(3869), + [anon_sym_pub] = ACTIONS(3869), + [anon_sym_mut] = ACTIONS(3869), + [anon_sym_enum] = ACTIONS(3869), + [anon_sym_interface] = ACTIONS(3869), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_BANG] = ACTIONS(3869), + [anon_sym_go] = ACTIONS(3869), + [anon_sym_spawn] = ACTIONS(3869), + [anon_sym_json_DOTdecode] = ACTIONS(3869), + [anon_sym_LBRACK2] = ACTIONS(3869), + [anon_sym_TILDE] = ACTIONS(3869), + [anon_sym_CARET] = ACTIONS(3869), + [anon_sym_AMP] = ACTIONS(3869), + [anon_sym_LT_DASH] = ACTIONS(3869), + [sym_none] = ACTIONS(3869), + [sym_true] = ACTIONS(3869), + [sym_false] = ACTIONS(3869), + [sym_nil] = ACTIONS(3869), + [anon_sym_if] = ACTIONS(3869), + [anon_sym_DOLLARif] = ACTIONS(3869), + [anon_sym_match] = ACTIONS(3869), + [anon_sym_select] = ACTIONS(3869), + [anon_sym_lock] = ACTIONS(3869), + [anon_sym_rlock] = ACTIONS(3869), + [anon_sym_unsafe] = ACTIONS(3869), + [anon_sym_sql] = ACTIONS(3869), + [sym_int_literal] = ACTIONS(3869), + [sym_float_literal] = ACTIONS(3869), + [sym_rune_literal] = ACTIONS(3869), + [anon_sym_AT] = ACTIONS(3869), + [anon_sym_shared] = ACTIONS(3869), + [anon_sym_map_LBRACK] = ACTIONS(3869), + [anon_sym_chan] = ACTIONS(3869), + [anon_sym_thread] = ACTIONS(3869), + [anon_sym_atomic] = ACTIONS(3869), + [anon_sym_assert] = ACTIONS(3869), + [anon_sym_defer] = ACTIONS(3869), + [anon_sym_goto] = ACTIONS(3869), + [anon_sym_break] = ACTIONS(3869), + [anon_sym_continue] = ACTIONS(3869), + [anon_sym_return] = ACTIONS(3869), + [anon_sym_DOLLARfor] = ACTIONS(3869), + [anon_sym_for] = ACTIONS(3869), + [anon_sym_POUND] = ACTIONS(3869), + [anon_sym_asm] = ACTIONS(3869), + [anon_sym_AT_LBRACK] = ACTIONS(3869), + [sym___double_quote] = ACTIONS(3869), + [sym___single_quote] = ACTIONS(3869), + [sym___c_double_quote] = ACTIONS(3869), + [sym___c_single_quote] = ACTIONS(3869), + [sym___r_double_quote] = ACTIONS(3869), + [sym___r_single_quote] = ACTIONS(3869), }, [1466] = { - [ts_builtin_sym_end] = ACTIONS(3095), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LF] = ACTIONS(3097), - [anon_sym_CR] = ACTIONS(3097), - [anon_sym_CR_LF] = ACTIONS(3097), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_const] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym___global] = ACTIONS(3097), - [anon_sym_type] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3097), - [anon_sym_fn] = ACTIONS(3097), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_struct] = ACTIONS(3097), - [anon_sym_union] = ACTIONS(3097), - [anon_sym_pub] = ACTIONS(3097), - [anon_sym_mut] = ACTIONS(3097), - [anon_sym_enum] = ACTIONS(3097), - [anon_sym_interface] = ACTIONS(3097), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_go] = ACTIONS(3097), - [anon_sym_spawn] = ACTIONS(3097), - [anon_sym_json_DOTdecode] = ACTIONS(3097), - [anon_sym_LBRACK2] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_CARET] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_LT_DASH] = ACTIONS(3097), - [sym_none] = ACTIONS(3097), - [sym_true] = ACTIONS(3097), - [sym_false] = ACTIONS(3097), - [sym_nil] = ACTIONS(3097), - [anon_sym_if] = ACTIONS(3097), - [anon_sym_DOLLARif] = ACTIONS(3097), - [anon_sym_match] = ACTIONS(3097), - [anon_sym_select] = ACTIONS(3097), - [anon_sym_lock] = ACTIONS(3097), - [anon_sym_rlock] = ACTIONS(3097), - [anon_sym_unsafe] = ACTIONS(3097), - [anon_sym_sql] = ACTIONS(3097), - [sym_int_literal] = ACTIONS(3097), - [sym_float_literal] = ACTIONS(3097), - [sym_rune_literal] = ACTIONS(3097), - [anon_sym_AT] = ACTIONS(3097), - [anon_sym_shared] = ACTIONS(3097), - [anon_sym_map_LBRACK] = ACTIONS(3097), - [anon_sym_chan] = ACTIONS(3097), - [anon_sym_thread] = ACTIONS(3097), - [anon_sym_atomic] = ACTIONS(3097), - [anon_sym_assert] = ACTIONS(3097), - [anon_sym_defer] = ACTIONS(3097), - [anon_sym_goto] = ACTIONS(3097), - [anon_sym_break] = ACTIONS(3097), - [anon_sym_continue] = ACTIONS(3097), - [anon_sym_return] = ACTIONS(3097), - [anon_sym_DOLLARfor] = ACTIONS(3097), - [anon_sym_for] = ACTIONS(3097), - [anon_sym_POUND] = ACTIONS(3097), - [anon_sym_asm] = ACTIONS(3097), - [anon_sym_AT_LBRACK] = ACTIONS(3097), - [sym___double_quote] = ACTIONS(3097), - [sym___single_quote] = ACTIONS(3097), - [sym___c_double_quote] = ACTIONS(3097), - [sym___c_single_quote] = ACTIONS(3097), - [sym___r_double_quote] = ACTIONS(3097), - [sym___r_single_quote] = ACTIONS(3097), + [sym_block] = STATE(1578), + [ts_builtin_sym_end] = ACTIONS(3871), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LF] = ACTIONS(3873), + [anon_sym_CR] = ACTIONS(3873), + [anon_sym_CR_LF] = ACTIONS(3873), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3873), + [anon_sym_LBRACE] = ACTIONS(3805), + [anon_sym_const] = ACTIONS(3873), + [anon_sym_LPAREN] = ACTIONS(3873), + [anon_sym___global] = ACTIONS(3873), + [anon_sym_type] = ACTIONS(3873), + [anon_sym_fn] = ACTIONS(3873), + [anon_sym_PLUS] = ACTIONS(3873), + [anon_sym_DASH] = ACTIONS(3873), + [anon_sym_STAR] = ACTIONS(3873), + [anon_sym_struct] = ACTIONS(3873), + [anon_sym_union] = ACTIONS(3873), + [anon_sym_pub] = ACTIONS(3873), + [anon_sym_mut] = ACTIONS(3873), + [anon_sym_enum] = ACTIONS(3873), + [anon_sym_interface] = ACTIONS(3873), + [anon_sym_QMARK] = ACTIONS(3873), + [anon_sym_BANG] = ACTIONS(3873), + [anon_sym_go] = ACTIONS(3873), + [anon_sym_spawn] = ACTIONS(3873), + [anon_sym_json_DOTdecode] = ACTIONS(3873), + [anon_sym_LBRACK2] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3873), + [anon_sym_CARET] = ACTIONS(3873), + [anon_sym_AMP] = ACTIONS(3873), + [anon_sym_LT_DASH] = ACTIONS(3873), + [sym_none] = ACTIONS(3873), + [sym_true] = ACTIONS(3873), + [sym_false] = ACTIONS(3873), + [sym_nil] = ACTIONS(3873), + [anon_sym_if] = ACTIONS(3873), + [anon_sym_DOLLARif] = ACTIONS(3873), + [anon_sym_match] = ACTIONS(3873), + [anon_sym_select] = ACTIONS(3873), + [anon_sym_lock] = ACTIONS(3873), + [anon_sym_rlock] = ACTIONS(3873), + [anon_sym_unsafe] = ACTIONS(3873), + [anon_sym_sql] = ACTIONS(3873), + [sym_int_literal] = ACTIONS(3873), + [sym_float_literal] = ACTIONS(3873), + [sym_rune_literal] = ACTIONS(3873), + [anon_sym_AT] = ACTIONS(3873), + [anon_sym_shared] = ACTIONS(3873), + [anon_sym_map_LBRACK] = ACTIONS(3873), + [anon_sym_chan] = ACTIONS(3873), + [anon_sym_thread] = ACTIONS(3873), + [anon_sym_atomic] = ACTIONS(3873), + [anon_sym_assert] = ACTIONS(3873), + [anon_sym_defer] = ACTIONS(3873), + [anon_sym_goto] = ACTIONS(3873), + [anon_sym_break] = ACTIONS(3873), + [anon_sym_continue] = ACTIONS(3873), + [anon_sym_return] = ACTIONS(3873), + [anon_sym_DOLLARfor] = ACTIONS(3873), + [anon_sym_for] = ACTIONS(3873), + [anon_sym_POUND] = ACTIONS(3873), + [anon_sym_asm] = ACTIONS(3873), + [anon_sym_AT_LBRACK] = ACTIONS(3873), + [sym___double_quote] = ACTIONS(3873), + [sym___single_quote] = ACTIONS(3873), + [sym___c_double_quote] = ACTIONS(3873), + [sym___c_single_quote] = ACTIONS(3873), + [sym___r_double_quote] = ACTIONS(3873), + [sym___r_single_quote] = ACTIONS(3873), }, [1467] = { - [ts_builtin_sym_end] = ACTIONS(2933), - [sym_identifier] = ACTIONS(2935), - [anon_sym_LF] = ACTIONS(2935), - [anon_sym_CR] = ACTIONS(2935), - [anon_sym_CR_LF] = ACTIONS(2935), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2935), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym___global] = ACTIONS(2935), - [anon_sym_type] = ACTIONS(2935), - [anon_sym_PIPE] = ACTIONS(2935), - [anon_sym_fn] = ACTIONS(2935), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_struct] = ACTIONS(2935), - [anon_sym_union] = ACTIONS(2935), - [anon_sym_pub] = ACTIONS(2935), - [anon_sym_mut] = ACTIONS(2935), - [anon_sym_enum] = ACTIONS(2935), - [anon_sym_interface] = ACTIONS(2935), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2935), - [anon_sym_json_DOTdecode] = ACTIONS(2935), - [anon_sym_LBRACK2] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_CARET] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LT_DASH] = ACTIONS(2935), - [sym_none] = ACTIONS(2935), - [sym_true] = ACTIONS(2935), - [sym_false] = ACTIONS(2935), - [sym_nil] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_DOLLARif] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2935), - [anon_sym_rlock] = ACTIONS(2935), - [anon_sym_unsafe] = ACTIONS(2935), - [anon_sym_sql] = ACTIONS(2935), - [sym_int_literal] = ACTIONS(2935), - [sym_float_literal] = ACTIONS(2935), - [sym_rune_literal] = ACTIONS(2935), - [anon_sym_AT] = ACTIONS(2935), - [anon_sym_shared] = ACTIONS(2935), - [anon_sym_map_LBRACK] = ACTIONS(2935), - [anon_sym_chan] = ACTIONS(2935), - [anon_sym_thread] = ACTIONS(2935), - [anon_sym_atomic] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_defer] = ACTIONS(2935), - [anon_sym_goto] = ACTIONS(2935), - [anon_sym_break] = ACTIONS(2935), - [anon_sym_continue] = ACTIONS(2935), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_DOLLARfor] = ACTIONS(2935), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_POUND] = ACTIONS(2935), - [anon_sym_asm] = ACTIONS(2935), - [anon_sym_AT_LBRACK] = ACTIONS(2935), - [sym___double_quote] = ACTIONS(2935), - [sym___single_quote] = ACTIONS(2935), - [sym___c_double_quote] = ACTIONS(2935), - [sym___c_single_quote] = ACTIONS(2935), - [sym___r_double_quote] = ACTIONS(2935), - [sym___r_single_quote] = ACTIONS(2935), + [sym_block] = STATE(1583), + [ts_builtin_sym_end] = ACTIONS(3875), + [sym_identifier] = ACTIONS(3877), + [anon_sym_LF] = ACTIONS(3877), + [anon_sym_CR] = ACTIONS(3877), + [anon_sym_CR_LF] = ACTIONS(3877), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3877), + [anon_sym_LBRACE] = ACTIONS(3805), + [anon_sym_const] = ACTIONS(3877), + [anon_sym_LPAREN] = ACTIONS(3877), + [anon_sym___global] = ACTIONS(3877), + [anon_sym_type] = ACTIONS(3877), + [anon_sym_fn] = ACTIONS(3877), + [anon_sym_PLUS] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3877), + [anon_sym_STAR] = ACTIONS(3877), + [anon_sym_struct] = ACTIONS(3877), + [anon_sym_union] = ACTIONS(3877), + [anon_sym_pub] = ACTIONS(3877), + [anon_sym_mut] = ACTIONS(3877), + [anon_sym_enum] = ACTIONS(3877), + [anon_sym_interface] = ACTIONS(3877), + [anon_sym_QMARK] = ACTIONS(3877), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_go] = ACTIONS(3877), + [anon_sym_spawn] = ACTIONS(3877), + [anon_sym_json_DOTdecode] = ACTIONS(3877), + [anon_sym_LBRACK2] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_CARET] = ACTIONS(3877), + [anon_sym_AMP] = ACTIONS(3877), + [anon_sym_LT_DASH] = ACTIONS(3877), + [sym_none] = ACTIONS(3877), + [sym_true] = ACTIONS(3877), + [sym_false] = ACTIONS(3877), + [sym_nil] = ACTIONS(3877), + [anon_sym_if] = ACTIONS(3877), + [anon_sym_DOLLARif] = ACTIONS(3877), + [anon_sym_match] = ACTIONS(3877), + [anon_sym_select] = ACTIONS(3877), + [anon_sym_lock] = ACTIONS(3877), + [anon_sym_rlock] = ACTIONS(3877), + [anon_sym_unsafe] = ACTIONS(3877), + [anon_sym_sql] = ACTIONS(3877), + [sym_int_literal] = ACTIONS(3877), + [sym_float_literal] = ACTIONS(3877), + [sym_rune_literal] = ACTIONS(3877), + [anon_sym_AT] = ACTIONS(3877), + [anon_sym_shared] = ACTIONS(3877), + [anon_sym_map_LBRACK] = ACTIONS(3877), + [anon_sym_chan] = ACTIONS(3877), + [anon_sym_thread] = ACTIONS(3877), + [anon_sym_atomic] = ACTIONS(3877), + [anon_sym_assert] = ACTIONS(3877), + [anon_sym_defer] = ACTIONS(3877), + [anon_sym_goto] = ACTIONS(3877), + [anon_sym_break] = ACTIONS(3877), + [anon_sym_continue] = ACTIONS(3877), + [anon_sym_return] = ACTIONS(3877), + [anon_sym_DOLLARfor] = ACTIONS(3877), + [anon_sym_for] = ACTIONS(3877), + [anon_sym_POUND] = ACTIONS(3877), + [anon_sym_asm] = ACTIONS(3877), + [anon_sym_AT_LBRACK] = ACTIONS(3877), + [sym___double_quote] = ACTIONS(3877), + [sym___single_quote] = ACTIONS(3877), + [sym___c_double_quote] = ACTIONS(3877), + [sym___c_single_quote] = ACTIONS(3877), + [sym___r_double_quote] = ACTIONS(3877), + [sym___r_single_quote] = ACTIONS(3877), }, [1468] = { - [sym_block] = STATE(1499), - [ts_builtin_sym_end] = ACTIONS(3873), - [sym_identifier] = ACTIONS(3875), - [anon_sym_LF] = ACTIONS(3875), - [anon_sym_CR] = ACTIONS(3875), - [anon_sym_CR_LF] = ACTIONS(3875), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3875), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3875), - [anon_sym_LPAREN] = ACTIONS(3875), - [anon_sym___global] = ACTIONS(3875), - [anon_sym_type] = ACTIONS(3875), - [anon_sym_fn] = ACTIONS(3875), - [anon_sym_PLUS] = ACTIONS(3875), - [anon_sym_DASH] = ACTIONS(3875), - [anon_sym_STAR] = ACTIONS(3875), - [anon_sym_struct] = ACTIONS(3875), - [anon_sym_union] = ACTIONS(3875), - [anon_sym_pub] = ACTIONS(3875), - [anon_sym_mut] = ACTIONS(3875), - [anon_sym_enum] = ACTIONS(3875), - [anon_sym_interface] = ACTIONS(3875), - [anon_sym_QMARK] = ACTIONS(3875), - [anon_sym_BANG] = ACTIONS(3875), - [anon_sym_go] = ACTIONS(3875), - [anon_sym_spawn] = ACTIONS(3875), - [anon_sym_json_DOTdecode] = ACTIONS(3875), - [anon_sym_LBRACK2] = ACTIONS(3875), - [anon_sym_TILDE] = ACTIONS(3875), - [anon_sym_CARET] = ACTIONS(3875), - [anon_sym_AMP] = ACTIONS(3875), - [anon_sym_LT_DASH] = ACTIONS(3875), - [sym_none] = ACTIONS(3875), - [sym_true] = ACTIONS(3875), - [sym_false] = ACTIONS(3875), - [sym_nil] = ACTIONS(3875), - [anon_sym_if] = ACTIONS(3875), - [anon_sym_DOLLARif] = ACTIONS(3875), - [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(3875), - [sym_rune_literal] = ACTIONS(3875), - [anon_sym_AT] = ACTIONS(3875), - [anon_sym_shared] = ACTIONS(3875), - [anon_sym_map_LBRACK] = ACTIONS(3875), - [anon_sym_chan] = ACTIONS(3875), - [anon_sym_thread] = ACTIONS(3875), - [anon_sym_atomic] = ACTIONS(3875), - [anon_sym_assert] = ACTIONS(3875), - [anon_sym_defer] = ACTIONS(3875), - [anon_sym_goto] = ACTIONS(3875), - [anon_sym_break] = ACTIONS(3875), - [anon_sym_continue] = ACTIONS(3875), - [anon_sym_return] = ACTIONS(3875), - [anon_sym_DOLLARfor] = ACTIONS(3875), - [anon_sym_for] = ACTIONS(3875), - [anon_sym_POUND] = ACTIONS(3875), - [anon_sym_asm] = ACTIONS(3875), - [anon_sym_AT_LBRACK] = ACTIONS(3875), - [sym___double_quote] = ACTIONS(3875), - [sym___single_quote] = ACTIONS(3875), - [sym___c_double_quote] = ACTIONS(3875), - [sym___c_single_quote] = ACTIONS(3875), - [sym___r_double_quote] = ACTIONS(3875), - [sym___r_single_quote] = ACTIONS(3875), + [ts_builtin_sym_end] = ACTIONS(2884), + [sym_identifier] = ACTIONS(2886), + [anon_sym_LF] = ACTIONS(2886), + [anon_sym_CR] = ACTIONS(2886), + [anon_sym_CR_LF] = ACTIONS(2886), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2886), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_const] = ACTIONS(2886), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym___global] = ACTIONS(2886), + [anon_sym_type] = ACTIONS(2886), + [anon_sym_PIPE] = ACTIONS(2886), + [anon_sym_fn] = ACTIONS(2886), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_STAR] = ACTIONS(2886), + [anon_sym_struct] = ACTIONS(2886), + [anon_sym_union] = ACTIONS(2886), + [anon_sym_pub] = ACTIONS(2886), + [anon_sym_mut] = ACTIONS(2886), + [anon_sym_enum] = ACTIONS(2886), + [anon_sym_interface] = ACTIONS(2886), + [anon_sym_QMARK] = ACTIONS(2886), + [anon_sym_BANG] = ACTIONS(2886), + [anon_sym_go] = ACTIONS(2886), + [anon_sym_spawn] = ACTIONS(2886), + [anon_sym_json_DOTdecode] = ACTIONS(2886), + [anon_sym_LBRACK2] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2886), + [anon_sym_CARET] = ACTIONS(2886), + [anon_sym_AMP] = ACTIONS(2886), + [anon_sym_LT_DASH] = ACTIONS(2886), + [sym_none] = ACTIONS(2886), + [sym_true] = ACTIONS(2886), + [sym_false] = ACTIONS(2886), + [sym_nil] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_DOLLARif] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_select] = ACTIONS(2886), + [anon_sym_lock] = ACTIONS(2886), + [anon_sym_rlock] = ACTIONS(2886), + [anon_sym_unsafe] = ACTIONS(2886), + [anon_sym_sql] = ACTIONS(2886), + [sym_int_literal] = ACTIONS(2886), + [sym_float_literal] = ACTIONS(2886), + [sym_rune_literal] = ACTIONS(2886), + [anon_sym_AT] = ACTIONS(2886), + [anon_sym_shared] = ACTIONS(2886), + [anon_sym_map_LBRACK] = ACTIONS(2886), + [anon_sym_chan] = ACTIONS(2886), + [anon_sym_thread] = ACTIONS(2886), + [anon_sym_atomic] = ACTIONS(2886), + [anon_sym_assert] = ACTIONS(2886), + [anon_sym_defer] = ACTIONS(2886), + [anon_sym_goto] = ACTIONS(2886), + [anon_sym_break] = ACTIONS(2886), + [anon_sym_continue] = ACTIONS(2886), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_DOLLARfor] = ACTIONS(2886), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_POUND] = ACTIONS(2886), + [anon_sym_asm] = ACTIONS(2886), + [anon_sym_AT_LBRACK] = ACTIONS(2886), + [sym___double_quote] = ACTIONS(2886), + [sym___single_quote] = ACTIONS(2886), + [sym___c_double_quote] = ACTIONS(2886), + [sym___c_single_quote] = ACTIONS(2886), + [sym___r_double_quote] = ACTIONS(2886), + [sym___r_single_quote] = ACTIONS(2886), }, [1469] = { - [ts_builtin_sym_end] = ACTIONS(3758), - [sym_identifier] = ACTIONS(3760), - [anon_sym_LF] = ACTIONS(3760), - [anon_sym_CR] = ACTIONS(3760), - [anon_sym_CR_LF] = ACTIONS(3760), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3760), - [anon_sym_LBRACE] = ACTIONS(3760), - [anon_sym_const] = ACTIONS(3760), - [anon_sym_LPAREN] = ACTIONS(3760), - [anon_sym___global] = ACTIONS(3760), - [anon_sym_type] = ACTIONS(3760), - [anon_sym_PIPE] = ACTIONS(3760), - [anon_sym_fn] = ACTIONS(3760), - [anon_sym_PLUS] = ACTIONS(3760), - [anon_sym_DASH] = ACTIONS(3760), - [anon_sym_STAR] = ACTIONS(3760), - [anon_sym_struct] = ACTIONS(3760), - [anon_sym_union] = ACTIONS(3760), - [anon_sym_pub] = ACTIONS(3760), - [anon_sym_mut] = ACTIONS(3760), - [anon_sym_enum] = ACTIONS(3760), - [anon_sym_interface] = ACTIONS(3760), - [anon_sym_QMARK] = ACTIONS(3760), - [anon_sym_BANG] = ACTIONS(3760), - [anon_sym_go] = ACTIONS(3760), - [anon_sym_spawn] = ACTIONS(3760), - [anon_sym_json_DOTdecode] = ACTIONS(3760), - [anon_sym_LBRACK2] = ACTIONS(3760), - [anon_sym_TILDE] = ACTIONS(3760), - [anon_sym_CARET] = ACTIONS(3760), - [anon_sym_AMP] = ACTIONS(3760), - [anon_sym_LT_DASH] = ACTIONS(3760), - [sym_none] = ACTIONS(3760), - [sym_true] = ACTIONS(3760), - [sym_false] = ACTIONS(3760), - [sym_nil] = ACTIONS(3760), - [anon_sym_if] = ACTIONS(3760), - [anon_sym_DOLLARif] = ACTIONS(3760), - [anon_sym_match] = ACTIONS(3760), - [anon_sym_select] = ACTIONS(3760), - [anon_sym_lock] = ACTIONS(3760), - [anon_sym_rlock] = ACTIONS(3760), - [anon_sym_unsafe] = ACTIONS(3760), - [anon_sym_sql] = ACTIONS(3760), - [sym_int_literal] = ACTIONS(3760), - [sym_float_literal] = ACTIONS(3760), - [sym_rune_literal] = ACTIONS(3760), - [anon_sym_AT] = ACTIONS(3760), - [anon_sym_shared] = ACTIONS(3760), - [anon_sym_map_LBRACK] = ACTIONS(3760), - [anon_sym_chan] = ACTIONS(3760), - [anon_sym_thread] = ACTIONS(3760), - [anon_sym_atomic] = ACTIONS(3760), - [anon_sym_assert] = ACTIONS(3760), - [anon_sym_defer] = ACTIONS(3760), - [anon_sym_goto] = ACTIONS(3760), - [anon_sym_break] = ACTIONS(3760), - [anon_sym_continue] = ACTIONS(3760), - [anon_sym_return] = ACTIONS(3760), - [anon_sym_DOLLARfor] = ACTIONS(3760), - [anon_sym_for] = ACTIONS(3760), - [anon_sym_POUND] = ACTIONS(3760), - [anon_sym_asm] = ACTIONS(3760), - [anon_sym_AT_LBRACK] = ACTIONS(3760), - [sym___double_quote] = ACTIONS(3760), - [sym___single_quote] = ACTIONS(3760), - [sym___c_double_quote] = ACTIONS(3760), - [sym___c_single_quote] = ACTIONS(3760), - [sym___r_double_quote] = ACTIONS(3760), - [sym___r_single_quote] = ACTIONS(3760), + [sym_block] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(3879), + [sym_identifier] = ACTIONS(3881), + [anon_sym_LF] = ACTIONS(3881), + [anon_sym_CR] = ACTIONS(3881), + [anon_sym_CR_LF] = ACTIONS(3881), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3881), + [anon_sym_LBRACE] = ACTIONS(3805), + [anon_sym_const] = ACTIONS(3881), + [anon_sym_LPAREN] = ACTIONS(3881), + [anon_sym___global] = ACTIONS(3881), + [anon_sym_type] = ACTIONS(3881), + [anon_sym_fn] = ACTIONS(3881), + [anon_sym_PLUS] = ACTIONS(3881), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_STAR] = ACTIONS(3881), + [anon_sym_struct] = ACTIONS(3881), + [anon_sym_union] = ACTIONS(3881), + [anon_sym_pub] = ACTIONS(3881), + [anon_sym_mut] = ACTIONS(3881), + [anon_sym_enum] = ACTIONS(3881), + [anon_sym_interface] = ACTIONS(3881), + [anon_sym_QMARK] = ACTIONS(3881), + [anon_sym_BANG] = ACTIONS(3881), + [anon_sym_go] = ACTIONS(3881), + [anon_sym_spawn] = ACTIONS(3881), + [anon_sym_json_DOTdecode] = ACTIONS(3881), + [anon_sym_LBRACK2] = ACTIONS(3881), + [anon_sym_TILDE] = ACTIONS(3881), + [anon_sym_CARET] = ACTIONS(3881), + [anon_sym_AMP] = ACTIONS(3881), + [anon_sym_LT_DASH] = ACTIONS(3881), + [sym_none] = ACTIONS(3881), + [sym_true] = ACTIONS(3881), + [sym_false] = ACTIONS(3881), + [sym_nil] = ACTIONS(3881), + [anon_sym_if] = ACTIONS(3881), + [anon_sym_DOLLARif] = ACTIONS(3881), + [anon_sym_match] = ACTIONS(3881), + [anon_sym_select] = ACTIONS(3881), + [anon_sym_lock] = ACTIONS(3881), + [anon_sym_rlock] = ACTIONS(3881), + [anon_sym_unsafe] = ACTIONS(3881), + [anon_sym_sql] = ACTIONS(3881), + [sym_int_literal] = ACTIONS(3881), + [sym_float_literal] = ACTIONS(3881), + [sym_rune_literal] = ACTIONS(3881), + [anon_sym_AT] = ACTIONS(3881), + [anon_sym_shared] = ACTIONS(3881), + [anon_sym_map_LBRACK] = ACTIONS(3881), + [anon_sym_chan] = ACTIONS(3881), + [anon_sym_thread] = ACTIONS(3881), + [anon_sym_atomic] = ACTIONS(3881), + [anon_sym_assert] = ACTIONS(3881), + [anon_sym_defer] = ACTIONS(3881), + [anon_sym_goto] = ACTIONS(3881), + [anon_sym_break] = ACTIONS(3881), + [anon_sym_continue] = ACTIONS(3881), + [anon_sym_return] = ACTIONS(3881), + [anon_sym_DOLLARfor] = ACTIONS(3881), + [anon_sym_for] = ACTIONS(3881), + [anon_sym_POUND] = ACTIONS(3881), + [anon_sym_asm] = ACTIONS(3881), + [anon_sym_AT_LBRACK] = ACTIONS(3881), + [sym___double_quote] = ACTIONS(3881), + [sym___single_quote] = ACTIONS(3881), + [sym___c_double_quote] = ACTIONS(3881), + [sym___c_single_quote] = ACTIONS(3881), + [sym___r_double_quote] = ACTIONS(3881), + [sym___r_single_quote] = ACTIONS(3881), }, [1470] = { - [ts_builtin_sym_end] = ACTIONS(2854), - [sym_identifier] = ACTIONS(2856), - [anon_sym_LF] = ACTIONS(2856), - [anon_sym_CR] = ACTIONS(2856), - [anon_sym_CR_LF] = ACTIONS(2856), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2856), - [anon_sym_const] = ACTIONS(2856), - [anon_sym_LPAREN] = ACTIONS(2856), - [anon_sym___global] = ACTIONS(2856), - [anon_sym_type] = ACTIONS(2856), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_fn] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2856), - [anon_sym_DASH] = ACTIONS(2856), - [anon_sym_STAR] = ACTIONS(2856), - [anon_sym_struct] = ACTIONS(2856), - [anon_sym_union] = ACTIONS(2856), - [anon_sym_pub] = ACTIONS(2856), - [anon_sym_mut] = ACTIONS(2856), - [anon_sym_enum] = ACTIONS(2856), - [anon_sym_interface] = ACTIONS(2856), - [anon_sym_QMARK] = ACTIONS(2856), - [anon_sym_BANG] = ACTIONS(2856), - [anon_sym_go] = ACTIONS(2856), - [anon_sym_spawn] = ACTIONS(2856), - [anon_sym_json_DOTdecode] = ACTIONS(2856), - [anon_sym_LBRACK2] = ACTIONS(2856), - [anon_sym_TILDE] = ACTIONS(2856), - [anon_sym_CARET] = ACTIONS(2856), - [anon_sym_AMP] = ACTIONS(2856), - [anon_sym_LT_DASH] = ACTIONS(2856), - [sym_none] = ACTIONS(2856), - [sym_true] = ACTIONS(2856), - [sym_false] = ACTIONS(2856), - [sym_nil] = ACTIONS(2856), - [anon_sym_if] = ACTIONS(2856), - [anon_sym_DOLLARif] = ACTIONS(2856), - [anon_sym_match] = ACTIONS(2856), - [anon_sym_select] = ACTIONS(2856), - [anon_sym_lock] = ACTIONS(2856), - [anon_sym_rlock] = ACTIONS(2856), - [anon_sym_unsafe] = ACTIONS(2856), - [anon_sym_sql] = ACTIONS(2856), - [sym_int_literal] = ACTIONS(2856), - [sym_float_literal] = ACTIONS(2856), - [sym_rune_literal] = ACTIONS(2856), - [anon_sym_AT] = ACTIONS(2856), - [anon_sym_shared] = ACTIONS(2856), - [anon_sym_map_LBRACK] = ACTIONS(2856), - [anon_sym_chan] = ACTIONS(2856), - [anon_sym_thread] = ACTIONS(2856), - [anon_sym_atomic] = ACTIONS(2856), - [anon_sym_assert] = ACTIONS(2856), - [anon_sym_defer] = ACTIONS(2856), - [anon_sym_goto] = ACTIONS(2856), - [anon_sym_break] = ACTIONS(2856), - [anon_sym_continue] = ACTIONS(2856), - [anon_sym_return] = ACTIONS(2856), - [anon_sym_DOLLARfor] = ACTIONS(2856), - [anon_sym_for] = ACTIONS(2856), - [anon_sym_POUND] = ACTIONS(2856), - [anon_sym_asm] = ACTIONS(2856), - [anon_sym_AT_LBRACK] = ACTIONS(2856), - [sym___double_quote] = ACTIONS(2856), - [sym___single_quote] = ACTIONS(2856), - [sym___c_double_quote] = ACTIONS(2856), - [sym___c_single_quote] = ACTIONS(2856), - [sym___r_double_quote] = ACTIONS(2856), - [sym___r_single_quote] = ACTIONS(2856), + [sym_block] = STATE(1545), + [ts_builtin_sym_end] = ACTIONS(3883), + [sym_identifier] = ACTIONS(3885), + [anon_sym_LF] = ACTIONS(3885), + [anon_sym_CR] = ACTIONS(3885), + [anon_sym_CR_LF] = ACTIONS(3885), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3805), + [anon_sym_const] = ACTIONS(3885), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym___global] = ACTIONS(3885), + [anon_sym_type] = ACTIONS(3885), + [anon_sym_fn] = ACTIONS(3885), + [anon_sym_PLUS] = ACTIONS(3885), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_struct] = ACTIONS(3885), + [anon_sym_union] = ACTIONS(3885), + [anon_sym_pub] = ACTIONS(3885), + [anon_sym_mut] = ACTIONS(3885), + [anon_sym_enum] = ACTIONS(3885), + [anon_sym_interface] = ACTIONS(3885), + [anon_sym_QMARK] = ACTIONS(3885), + [anon_sym_BANG] = ACTIONS(3885), + [anon_sym_go] = ACTIONS(3885), + [anon_sym_spawn] = ACTIONS(3885), + [anon_sym_json_DOTdecode] = ACTIONS(3885), + [anon_sym_LBRACK2] = ACTIONS(3885), + [anon_sym_TILDE] = ACTIONS(3885), + [anon_sym_CARET] = ACTIONS(3885), + [anon_sym_AMP] = ACTIONS(3885), + [anon_sym_LT_DASH] = ACTIONS(3885), + [sym_none] = ACTIONS(3885), + [sym_true] = ACTIONS(3885), + [sym_false] = ACTIONS(3885), + [sym_nil] = ACTIONS(3885), + [anon_sym_if] = ACTIONS(3885), + [anon_sym_DOLLARif] = ACTIONS(3885), + [anon_sym_match] = ACTIONS(3885), + [anon_sym_select] = ACTIONS(3885), + [anon_sym_lock] = ACTIONS(3885), + [anon_sym_rlock] = ACTIONS(3885), + [anon_sym_unsafe] = ACTIONS(3885), + [anon_sym_sql] = ACTIONS(3885), + [sym_int_literal] = ACTIONS(3885), + [sym_float_literal] = ACTIONS(3885), + [sym_rune_literal] = ACTIONS(3885), + [anon_sym_AT] = ACTIONS(3885), + [anon_sym_shared] = ACTIONS(3885), + [anon_sym_map_LBRACK] = ACTIONS(3885), + [anon_sym_chan] = ACTIONS(3885), + [anon_sym_thread] = ACTIONS(3885), + [anon_sym_atomic] = ACTIONS(3885), + [anon_sym_assert] = ACTIONS(3885), + [anon_sym_defer] = ACTIONS(3885), + [anon_sym_goto] = ACTIONS(3885), + [anon_sym_break] = ACTIONS(3885), + [anon_sym_continue] = ACTIONS(3885), + [anon_sym_return] = ACTIONS(3885), + [anon_sym_DOLLARfor] = ACTIONS(3885), + [anon_sym_for] = ACTIONS(3885), + [anon_sym_POUND] = ACTIONS(3885), + [anon_sym_asm] = ACTIONS(3885), + [anon_sym_AT_LBRACK] = ACTIONS(3885), + [sym___double_quote] = ACTIONS(3885), + [sym___single_quote] = ACTIONS(3885), + [sym___c_double_quote] = ACTIONS(3885), + [sym___c_single_quote] = ACTIONS(3885), + [sym___r_double_quote] = ACTIONS(3885), + [sym___r_single_quote] = ACTIONS(3885), }, [1471] = { - [sym_block] = STATE(1530), - [ts_builtin_sym_end] = ACTIONS(3877), - [sym_identifier] = ACTIONS(3879), - [anon_sym_LF] = ACTIONS(3879), - [anon_sym_CR] = ACTIONS(3879), - [anon_sym_CR_LF] = ACTIONS(3879), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3879), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3879), - [anon_sym_LPAREN] = ACTIONS(3879), - [anon_sym___global] = ACTIONS(3879), - [anon_sym_type] = ACTIONS(3879), - [anon_sym_fn] = ACTIONS(3879), - [anon_sym_PLUS] = ACTIONS(3879), - [anon_sym_DASH] = ACTIONS(3879), - [anon_sym_STAR] = ACTIONS(3879), - [anon_sym_struct] = ACTIONS(3879), - [anon_sym_union] = ACTIONS(3879), - [anon_sym_pub] = ACTIONS(3879), - [anon_sym_mut] = ACTIONS(3879), - [anon_sym_enum] = ACTIONS(3879), - [anon_sym_interface] = ACTIONS(3879), - [anon_sym_QMARK] = ACTIONS(3879), - [anon_sym_BANG] = ACTIONS(3879), - [anon_sym_go] = ACTIONS(3879), - [anon_sym_spawn] = ACTIONS(3879), - [anon_sym_json_DOTdecode] = ACTIONS(3879), - [anon_sym_LBRACK2] = ACTIONS(3879), - [anon_sym_TILDE] = ACTIONS(3879), - [anon_sym_CARET] = ACTIONS(3879), - [anon_sym_AMP] = ACTIONS(3879), - [anon_sym_LT_DASH] = ACTIONS(3879), - [sym_none] = ACTIONS(3879), - [sym_true] = ACTIONS(3879), - [sym_false] = ACTIONS(3879), - [sym_nil] = ACTIONS(3879), - [anon_sym_if] = ACTIONS(3879), - [anon_sym_DOLLARif] = ACTIONS(3879), - [anon_sym_match] = ACTIONS(3879), - [anon_sym_select] = ACTIONS(3879), - [anon_sym_lock] = ACTIONS(3879), - [anon_sym_rlock] = ACTIONS(3879), - [anon_sym_unsafe] = ACTIONS(3879), - [anon_sym_sql] = ACTIONS(3879), - [sym_int_literal] = ACTIONS(3879), - [sym_float_literal] = ACTIONS(3879), - [sym_rune_literal] = ACTIONS(3879), - [anon_sym_AT] = ACTIONS(3879), - [anon_sym_shared] = ACTIONS(3879), - [anon_sym_map_LBRACK] = ACTIONS(3879), - [anon_sym_chan] = ACTIONS(3879), - [anon_sym_thread] = ACTIONS(3879), - [anon_sym_atomic] = ACTIONS(3879), - [anon_sym_assert] = ACTIONS(3879), - [anon_sym_defer] = ACTIONS(3879), - [anon_sym_goto] = ACTIONS(3879), - [anon_sym_break] = ACTIONS(3879), - [anon_sym_continue] = ACTIONS(3879), - [anon_sym_return] = ACTIONS(3879), - [anon_sym_DOLLARfor] = ACTIONS(3879), - [anon_sym_for] = ACTIONS(3879), - [anon_sym_POUND] = ACTIONS(3879), - [anon_sym_asm] = ACTIONS(3879), - [anon_sym_AT_LBRACK] = ACTIONS(3879), - [sym___double_quote] = ACTIONS(3879), - [sym___single_quote] = ACTIONS(3879), - [sym___c_double_quote] = ACTIONS(3879), - [sym___c_single_quote] = ACTIONS(3879), - [sym___r_double_quote] = ACTIONS(3879), - [sym___r_single_quote] = ACTIONS(3879), + [sym_block] = STATE(1543), + [ts_builtin_sym_end] = ACTIONS(3887), + [sym_identifier] = ACTIONS(3889), + [anon_sym_LF] = ACTIONS(3889), + [anon_sym_CR] = ACTIONS(3889), + [anon_sym_CR_LF] = ACTIONS(3889), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3889), + [anon_sym_LBRACE] = ACTIONS(3805), + [anon_sym_const] = ACTIONS(3889), + [anon_sym_LPAREN] = ACTIONS(3889), + [anon_sym___global] = ACTIONS(3889), + [anon_sym_type] = ACTIONS(3889), + [anon_sym_fn] = ACTIONS(3889), + [anon_sym_PLUS] = ACTIONS(3889), + [anon_sym_DASH] = ACTIONS(3889), + [anon_sym_STAR] = ACTIONS(3889), + [anon_sym_struct] = ACTIONS(3889), + [anon_sym_union] = ACTIONS(3889), + [anon_sym_pub] = ACTIONS(3889), + [anon_sym_mut] = ACTIONS(3889), + [anon_sym_enum] = ACTIONS(3889), + [anon_sym_interface] = ACTIONS(3889), + [anon_sym_QMARK] = ACTIONS(3889), + [anon_sym_BANG] = ACTIONS(3889), + [anon_sym_go] = ACTIONS(3889), + [anon_sym_spawn] = ACTIONS(3889), + [anon_sym_json_DOTdecode] = ACTIONS(3889), + [anon_sym_LBRACK2] = ACTIONS(3889), + [anon_sym_TILDE] = ACTIONS(3889), + [anon_sym_CARET] = ACTIONS(3889), + [anon_sym_AMP] = ACTIONS(3889), + [anon_sym_LT_DASH] = ACTIONS(3889), + [sym_none] = ACTIONS(3889), + [sym_true] = ACTIONS(3889), + [sym_false] = ACTIONS(3889), + [sym_nil] = ACTIONS(3889), + [anon_sym_if] = ACTIONS(3889), + [anon_sym_DOLLARif] = ACTIONS(3889), + [anon_sym_match] = ACTIONS(3889), + [anon_sym_select] = ACTIONS(3889), + [anon_sym_lock] = ACTIONS(3889), + [anon_sym_rlock] = ACTIONS(3889), + [anon_sym_unsafe] = ACTIONS(3889), + [anon_sym_sql] = ACTIONS(3889), + [sym_int_literal] = ACTIONS(3889), + [sym_float_literal] = ACTIONS(3889), + [sym_rune_literal] = ACTIONS(3889), + [anon_sym_AT] = ACTIONS(3889), + [anon_sym_shared] = ACTIONS(3889), + [anon_sym_map_LBRACK] = ACTIONS(3889), + [anon_sym_chan] = ACTIONS(3889), + [anon_sym_thread] = ACTIONS(3889), + [anon_sym_atomic] = ACTIONS(3889), + [anon_sym_assert] = ACTIONS(3889), + [anon_sym_defer] = ACTIONS(3889), + [anon_sym_goto] = ACTIONS(3889), + [anon_sym_break] = ACTIONS(3889), + [anon_sym_continue] = ACTIONS(3889), + [anon_sym_return] = ACTIONS(3889), + [anon_sym_DOLLARfor] = ACTIONS(3889), + [anon_sym_for] = ACTIONS(3889), + [anon_sym_POUND] = ACTIONS(3889), + [anon_sym_asm] = ACTIONS(3889), + [anon_sym_AT_LBRACK] = ACTIONS(3889), + [sym___double_quote] = ACTIONS(3889), + [sym___single_quote] = ACTIONS(3889), + [sym___c_double_quote] = ACTIONS(3889), + [sym___c_single_quote] = ACTIONS(3889), + [sym___r_double_quote] = ACTIONS(3889), + [sym___r_single_quote] = ACTIONS(3889), }, [1472] = { - [ts_builtin_sym_end] = ACTIONS(3007), - [sym_identifier] = ACTIONS(3009), - [anon_sym_LF] = ACTIONS(3009), - [anon_sym_CR] = ACTIONS(3009), - [anon_sym_CR_LF] = ACTIONS(3009), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_const] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3009), - [anon_sym___global] = ACTIONS(3009), - [anon_sym_type] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3009), - [anon_sym_fn] = ACTIONS(3009), - [anon_sym_PLUS] = ACTIONS(3009), - [anon_sym_DASH] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3009), - [anon_sym_struct] = ACTIONS(3009), - [anon_sym_union] = ACTIONS(3009), - [anon_sym_pub] = ACTIONS(3009), - [anon_sym_mut] = ACTIONS(3009), - [anon_sym_enum] = ACTIONS(3009), - [anon_sym_interface] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3009), - [anon_sym_BANG] = ACTIONS(3009), - [anon_sym_go] = ACTIONS(3009), - [anon_sym_spawn] = ACTIONS(3009), - [anon_sym_json_DOTdecode] = ACTIONS(3009), - [anon_sym_LBRACK2] = ACTIONS(3009), - [anon_sym_TILDE] = ACTIONS(3009), - [anon_sym_CARET] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_LT_DASH] = ACTIONS(3009), - [sym_none] = ACTIONS(3009), - [sym_true] = ACTIONS(3009), - [sym_false] = ACTIONS(3009), - [sym_nil] = ACTIONS(3009), - [anon_sym_if] = ACTIONS(3009), - [anon_sym_DOLLARif] = ACTIONS(3009), - [anon_sym_match] = ACTIONS(3009), - [anon_sym_select] = ACTIONS(3009), - [anon_sym_lock] = ACTIONS(3009), - [anon_sym_rlock] = ACTIONS(3009), - [anon_sym_unsafe] = ACTIONS(3009), - [anon_sym_sql] = ACTIONS(3009), - [sym_int_literal] = ACTIONS(3009), - [sym_float_literal] = ACTIONS(3009), - [sym_rune_literal] = ACTIONS(3009), - [anon_sym_AT] = ACTIONS(3009), - [anon_sym_shared] = ACTIONS(3009), - [anon_sym_map_LBRACK] = ACTIONS(3009), - [anon_sym_chan] = ACTIONS(3009), - [anon_sym_thread] = ACTIONS(3009), - [anon_sym_atomic] = ACTIONS(3009), - [anon_sym_assert] = ACTIONS(3009), - [anon_sym_defer] = ACTIONS(3009), - [anon_sym_goto] = ACTIONS(3009), - [anon_sym_break] = ACTIONS(3009), - [anon_sym_continue] = ACTIONS(3009), - [anon_sym_return] = ACTIONS(3009), - [anon_sym_DOLLARfor] = ACTIONS(3009), - [anon_sym_for] = ACTIONS(3009), - [anon_sym_POUND] = ACTIONS(3009), - [anon_sym_asm] = ACTIONS(3009), - [anon_sym_AT_LBRACK] = ACTIONS(3009), - [sym___double_quote] = ACTIONS(3009), - [sym___single_quote] = ACTIONS(3009), - [sym___c_double_quote] = ACTIONS(3009), - [sym___c_single_quote] = ACTIONS(3009), - [sym___r_double_quote] = ACTIONS(3009), - [sym___r_single_quote] = ACTIONS(3009), + [ts_builtin_sym_end] = ACTIONS(2956), + [sym_identifier] = ACTIONS(2958), + [anon_sym_LF] = ACTIONS(2958), + [anon_sym_CR] = ACTIONS(2958), + [anon_sym_CR_LF] = ACTIONS(2958), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2958), + [anon_sym_LBRACE] = ACTIONS(2958), + [anon_sym_const] = ACTIONS(2958), + [anon_sym_LPAREN] = ACTIONS(2958), + [anon_sym___global] = ACTIONS(2958), + [anon_sym_type] = ACTIONS(2958), + [anon_sym_PIPE] = ACTIONS(2958), + [anon_sym_fn] = ACTIONS(2958), + [anon_sym_PLUS] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2958), + [anon_sym_STAR] = ACTIONS(2958), + [anon_sym_struct] = ACTIONS(2958), + [anon_sym_union] = ACTIONS(2958), + [anon_sym_pub] = ACTIONS(2958), + [anon_sym_mut] = ACTIONS(2958), + [anon_sym_enum] = ACTIONS(2958), + [anon_sym_interface] = ACTIONS(2958), + [anon_sym_QMARK] = ACTIONS(2958), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_go] = ACTIONS(2958), + [anon_sym_spawn] = ACTIONS(2958), + [anon_sym_json_DOTdecode] = ACTIONS(2958), + [anon_sym_LBRACK2] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_CARET] = ACTIONS(2958), + [anon_sym_AMP] = ACTIONS(2958), + [anon_sym_LT_DASH] = ACTIONS(2958), + [sym_none] = ACTIONS(2958), + [sym_true] = ACTIONS(2958), + [sym_false] = ACTIONS(2958), + [sym_nil] = ACTIONS(2958), + [anon_sym_if] = ACTIONS(2958), + [anon_sym_DOLLARif] = ACTIONS(2958), + [anon_sym_match] = ACTIONS(2958), + [anon_sym_select] = ACTIONS(2958), + [anon_sym_lock] = ACTIONS(2958), + [anon_sym_rlock] = ACTIONS(2958), + [anon_sym_unsafe] = ACTIONS(2958), + [anon_sym_sql] = ACTIONS(2958), + [sym_int_literal] = ACTIONS(2958), + [sym_float_literal] = ACTIONS(2958), + [sym_rune_literal] = ACTIONS(2958), + [anon_sym_AT] = ACTIONS(2958), + [anon_sym_shared] = ACTIONS(2958), + [anon_sym_map_LBRACK] = ACTIONS(2958), + [anon_sym_chan] = ACTIONS(2958), + [anon_sym_thread] = ACTIONS(2958), + [anon_sym_atomic] = ACTIONS(2958), + [anon_sym_assert] = ACTIONS(2958), + [anon_sym_defer] = ACTIONS(2958), + [anon_sym_goto] = ACTIONS(2958), + [anon_sym_break] = ACTIONS(2958), + [anon_sym_continue] = ACTIONS(2958), + [anon_sym_return] = ACTIONS(2958), + [anon_sym_DOLLARfor] = ACTIONS(2958), + [anon_sym_for] = ACTIONS(2958), + [anon_sym_POUND] = ACTIONS(2958), + [anon_sym_asm] = ACTIONS(2958), + [anon_sym_AT_LBRACK] = ACTIONS(2958), + [sym___double_quote] = ACTIONS(2958), + [sym___single_quote] = ACTIONS(2958), + [sym___c_double_quote] = ACTIONS(2958), + [sym___c_single_quote] = ACTIONS(2958), + [sym___r_double_quote] = ACTIONS(2958), + [sym___r_single_quote] = ACTIONS(2958), }, [1473] = { - [sym_block] = STATE(1513), - [ts_builtin_sym_end] = ACTIONS(3881), - [sym_identifier] = ACTIONS(3883), - [anon_sym_LF] = ACTIONS(3883), - [anon_sym_CR] = ACTIONS(3883), - [anon_sym_CR_LF] = ACTIONS(3883), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3883), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3883), - [anon_sym_LPAREN] = ACTIONS(3883), - [anon_sym___global] = ACTIONS(3883), - [anon_sym_type] = ACTIONS(3883), - [anon_sym_fn] = ACTIONS(3883), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3883), - [anon_sym_struct] = ACTIONS(3883), - [anon_sym_union] = ACTIONS(3883), - [anon_sym_pub] = ACTIONS(3883), - [anon_sym_mut] = ACTIONS(3883), - [anon_sym_enum] = ACTIONS(3883), - [anon_sym_interface] = ACTIONS(3883), - [anon_sym_QMARK] = ACTIONS(3883), - [anon_sym_BANG] = ACTIONS(3883), - [anon_sym_go] = ACTIONS(3883), - [anon_sym_spawn] = ACTIONS(3883), - [anon_sym_json_DOTdecode] = ACTIONS(3883), - [anon_sym_LBRACK2] = ACTIONS(3883), - [anon_sym_TILDE] = ACTIONS(3883), - [anon_sym_CARET] = ACTIONS(3883), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_DASH] = ACTIONS(3883), - [sym_none] = ACTIONS(3883), - [sym_true] = ACTIONS(3883), - [sym_false] = ACTIONS(3883), - [sym_nil] = ACTIONS(3883), - [anon_sym_if] = ACTIONS(3883), - [anon_sym_DOLLARif] = ACTIONS(3883), - [anon_sym_match] = ACTIONS(3883), - [anon_sym_select] = ACTIONS(3883), - [anon_sym_lock] = ACTIONS(3883), - [anon_sym_rlock] = ACTIONS(3883), - [anon_sym_unsafe] = ACTIONS(3883), - [anon_sym_sql] = ACTIONS(3883), - [sym_int_literal] = ACTIONS(3883), - [sym_float_literal] = ACTIONS(3883), - [sym_rune_literal] = ACTIONS(3883), - [anon_sym_AT] = ACTIONS(3883), - [anon_sym_shared] = ACTIONS(3883), - [anon_sym_map_LBRACK] = ACTIONS(3883), - [anon_sym_chan] = ACTIONS(3883), - [anon_sym_thread] = ACTIONS(3883), - [anon_sym_atomic] = ACTIONS(3883), - [anon_sym_assert] = ACTIONS(3883), - [anon_sym_defer] = ACTIONS(3883), - [anon_sym_goto] = ACTIONS(3883), - [anon_sym_break] = ACTIONS(3883), - [anon_sym_continue] = ACTIONS(3883), - [anon_sym_return] = ACTIONS(3883), - [anon_sym_DOLLARfor] = ACTIONS(3883), - [anon_sym_for] = ACTIONS(3883), - [anon_sym_POUND] = ACTIONS(3883), - [anon_sym_asm] = ACTIONS(3883), - [anon_sym_AT_LBRACK] = ACTIONS(3883), - [sym___double_quote] = ACTIONS(3883), - [sym___single_quote] = ACTIONS(3883), - [sym___c_double_quote] = ACTIONS(3883), - [sym___c_single_quote] = ACTIONS(3883), - [sym___r_double_quote] = ACTIONS(3883), - [sym___r_single_quote] = ACTIONS(3883), + [sym_block] = STATE(1573), + [ts_builtin_sym_end] = ACTIONS(3891), + [sym_identifier] = ACTIONS(3893), + [anon_sym_LF] = ACTIONS(3893), + [anon_sym_CR] = ACTIONS(3893), + [anon_sym_CR_LF] = ACTIONS(3893), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3893), + [anon_sym_LBRACE] = ACTIONS(3805), + [anon_sym_const] = ACTIONS(3893), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym___global] = ACTIONS(3893), + [anon_sym_type] = ACTIONS(3893), + [anon_sym_fn] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(3893), + [anon_sym_struct] = ACTIONS(3893), + [anon_sym_union] = ACTIONS(3893), + [anon_sym_pub] = ACTIONS(3893), + [anon_sym_mut] = ACTIONS(3893), + [anon_sym_enum] = ACTIONS(3893), + [anon_sym_interface] = ACTIONS(3893), + [anon_sym_QMARK] = ACTIONS(3893), + [anon_sym_BANG] = ACTIONS(3893), + [anon_sym_go] = ACTIONS(3893), + [anon_sym_spawn] = ACTIONS(3893), + [anon_sym_json_DOTdecode] = ACTIONS(3893), + [anon_sym_LBRACK2] = ACTIONS(3893), + [anon_sym_TILDE] = ACTIONS(3893), + [anon_sym_CARET] = ACTIONS(3893), + [anon_sym_AMP] = ACTIONS(3893), + [anon_sym_LT_DASH] = ACTIONS(3893), + [sym_none] = ACTIONS(3893), + [sym_true] = ACTIONS(3893), + [sym_false] = ACTIONS(3893), + [sym_nil] = ACTIONS(3893), + [anon_sym_if] = ACTIONS(3893), + [anon_sym_DOLLARif] = ACTIONS(3893), + [anon_sym_match] = ACTIONS(3893), + [anon_sym_select] = ACTIONS(3893), + [anon_sym_lock] = ACTIONS(3893), + [anon_sym_rlock] = ACTIONS(3893), + [anon_sym_unsafe] = ACTIONS(3893), + [anon_sym_sql] = ACTIONS(3893), + [sym_int_literal] = ACTIONS(3893), + [sym_float_literal] = ACTIONS(3893), + [sym_rune_literal] = ACTIONS(3893), + [anon_sym_AT] = ACTIONS(3893), + [anon_sym_shared] = ACTIONS(3893), + [anon_sym_map_LBRACK] = ACTIONS(3893), + [anon_sym_chan] = ACTIONS(3893), + [anon_sym_thread] = ACTIONS(3893), + [anon_sym_atomic] = ACTIONS(3893), + [anon_sym_assert] = ACTIONS(3893), + [anon_sym_defer] = ACTIONS(3893), + [anon_sym_goto] = ACTIONS(3893), + [anon_sym_break] = ACTIONS(3893), + [anon_sym_continue] = ACTIONS(3893), + [anon_sym_return] = ACTIONS(3893), + [anon_sym_DOLLARfor] = ACTIONS(3893), + [anon_sym_for] = ACTIONS(3893), + [anon_sym_POUND] = ACTIONS(3893), + [anon_sym_asm] = ACTIONS(3893), + [anon_sym_AT_LBRACK] = ACTIONS(3893), + [sym___double_quote] = ACTIONS(3893), + [sym___single_quote] = ACTIONS(3893), + [sym___c_double_quote] = ACTIONS(3893), + [sym___c_single_quote] = ACTIONS(3893), + [sym___r_double_quote] = ACTIONS(3893), + [sym___r_single_quote] = ACTIONS(3893), }, [1474] = { - [ts_builtin_sym_end] = ACTIONS(2842), - [sym_identifier] = ACTIONS(2844), - [anon_sym_LF] = ACTIONS(2844), - [anon_sym_CR] = ACTIONS(2844), - [anon_sym_CR_LF] = ACTIONS(2844), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_const] = ACTIONS(2844), - [anon_sym_LPAREN] = ACTIONS(2844), - [anon_sym___global] = ACTIONS(2844), - [anon_sym_type] = ACTIONS(2844), - [anon_sym_PIPE] = ACTIONS(2844), - [anon_sym_fn] = ACTIONS(2844), - [anon_sym_PLUS] = ACTIONS(2844), - [anon_sym_DASH] = ACTIONS(2844), - [anon_sym_STAR] = ACTIONS(2844), - [anon_sym_struct] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(2844), - [anon_sym_pub] = ACTIONS(2844), - [anon_sym_mut] = ACTIONS(2844), - [anon_sym_enum] = ACTIONS(2844), - [anon_sym_interface] = ACTIONS(2844), - [anon_sym_QMARK] = ACTIONS(2844), - [anon_sym_BANG] = ACTIONS(2844), - [anon_sym_go] = ACTIONS(2844), - [anon_sym_spawn] = ACTIONS(2844), - [anon_sym_json_DOTdecode] = ACTIONS(2844), - [anon_sym_LBRACK2] = ACTIONS(2844), - [anon_sym_TILDE] = ACTIONS(2844), - [anon_sym_CARET] = ACTIONS(2844), - [anon_sym_AMP] = ACTIONS(2844), - [anon_sym_LT_DASH] = ACTIONS(2844), - [sym_none] = ACTIONS(2844), - [sym_true] = ACTIONS(2844), - [sym_false] = ACTIONS(2844), - [sym_nil] = ACTIONS(2844), - [anon_sym_if] = ACTIONS(2844), - [anon_sym_DOLLARif] = ACTIONS(2844), - [anon_sym_match] = ACTIONS(2844), - [anon_sym_select] = ACTIONS(2844), - [anon_sym_lock] = ACTIONS(2844), - [anon_sym_rlock] = ACTIONS(2844), - [anon_sym_unsafe] = ACTIONS(2844), - [anon_sym_sql] = ACTIONS(2844), - [sym_int_literal] = ACTIONS(2844), - [sym_float_literal] = ACTIONS(2844), - [sym_rune_literal] = ACTIONS(2844), - [anon_sym_AT] = ACTIONS(2844), - [anon_sym_shared] = ACTIONS(2844), - [anon_sym_map_LBRACK] = ACTIONS(2844), - [anon_sym_chan] = ACTIONS(2844), - [anon_sym_thread] = ACTIONS(2844), - [anon_sym_atomic] = ACTIONS(2844), - [anon_sym_assert] = ACTIONS(2844), - [anon_sym_defer] = ACTIONS(2844), - [anon_sym_goto] = ACTIONS(2844), - [anon_sym_break] = ACTIONS(2844), - [anon_sym_continue] = ACTIONS(2844), - [anon_sym_return] = ACTIONS(2844), - [anon_sym_DOLLARfor] = ACTIONS(2844), - [anon_sym_for] = ACTIONS(2844), - [anon_sym_POUND] = ACTIONS(2844), - [anon_sym_asm] = ACTIONS(2844), - [anon_sym_AT_LBRACK] = ACTIONS(2844), - [sym___double_quote] = ACTIONS(2844), - [sym___single_quote] = ACTIONS(2844), - [sym___c_double_quote] = ACTIONS(2844), - [sym___c_single_quote] = ACTIONS(2844), - [sym___r_double_quote] = ACTIONS(2844), - [sym___r_single_quote] = ACTIONS(2844), + [ts_builtin_sym_end] = ACTIONS(2880), + [sym_identifier] = ACTIONS(2882), + [anon_sym_LF] = ACTIONS(2882), + [anon_sym_CR] = ACTIONS(2882), + [anon_sym_CR_LF] = ACTIONS(2882), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2882), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym___global] = ACTIONS(2882), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_PIPE] = ACTIONS(2882), + [anon_sym_fn] = ACTIONS(2882), + [anon_sym_PLUS] = ACTIONS(2882), + [anon_sym_DASH] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(2882), + [anon_sym_struct] = ACTIONS(2882), + [anon_sym_union] = ACTIONS(2882), + [anon_sym_pub] = ACTIONS(2882), + [anon_sym_mut] = ACTIONS(2882), + [anon_sym_enum] = ACTIONS(2882), + [anon_sym_interface] = ACTIONS(2882), + [anon_sym_QMARK] = ACTIONS(2882), + [anon_sym_BANG] = ACTIONS(2882), + [anon_sym_go] = ACTIONS(2882), + [anon_sym_spawn] = ACTIONS(2882), + [anon_sym_json_DOTdecode] = ACTIONS(2882), + [anon_sym_LBRACK2] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2882), + [anon_sym_CARET] = ACTIONS(2882), + [anon_sym_AMP] = ACTIONS(2882), + [anon_sym_LT_DASH] = ACTIONS(2882), + [sym_none] = ACTIONS(2882), + [sym_true] = ACTIONS(2882), + [sym_false] = ACTIONS(2882), + [sym_nil] = ACTIONS(2882), + [anon_sym_if] = ACTIONS(2882), + [anon_sym_DOLLARif] = ACTIONS(2882), + [anon_sym_match] = ACTIONS(2882), + [anon_sym_select] = ACTIONS(2882), + [anon_sym_lock] = ACTIONS(2882), + [anon_sym_rlock] = ACTIONS(2882), + [anon_sym_unsafe] = ACTIONS(2882), + [anon_sym_sql] = ACTIONS(2882), + [sym_int_literal] = ACTIONS(2882), + [sym_float_literal] = ACTIONS(2882), + [sym_rune_literal] = ACTIONS(2882), + [anon_sym_AT] = ACTIONS(2882), + [anon_sym_shared] = ACTIONS(2882), + [anon_sym_map_LBRACK] = ACTIONS(2882), + [anon_sym_chan] = ACTIONS(2882), + [anon_sym_thread] = ACTIONS(2882), + [anon_sym_atomic] = ACTIONS(2882), + [anon_sym_assert] = ACTIONS(2882), + [anon_sym_defer] = ACTIONS(2882), + [anon_sym_goto] = ACTIONS(2882), + [anon_sym_break] = ACTIONS(2882), + [anon_sym_continue] = ACTIONS(2882), + [anon_sym_return] = ACTIONS(2882), + [anon_sym_DOLLARfor] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2882), + [anon_sym_POUND] = ACTIONS(2882), + [anon_sym_asm] = ACTIONS(2882), + [anon_sym_AT_LBRACK] = ACTIONS(2882), + [sym___double_quote] = ACTIONS(2882), + [sym___single_quote] = ACTIONS(2882), + [sym___c_double_quote] = ACTIONS(2882), + [sym___c_single_quote] = ACTIONS(2882), + [sym___r_double_quote] = ACTIONS(2882), + [sym___r_single_quote] = ACTIONS(2882), }, [1475] = { - [ts_builtin_sym_end] = ACTIONS(3135), - [sym_identifier] = ACTIONS(3137), - [anon_sym_LF] = ACTIONS(3137), - [anon_sym_CR] = ACTIONS(3137), - [anon_sym_CR_LF] = ACTIONS(3137), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_const] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3137), - [anon_sym___global] = ACTIONS(3137), - [anon_sym_type] = ACTIONS(3137), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_fn] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_struct] = ACTIONS(3137), - [anon_sym_union] = ACTIONS(3137), - [anon_sym_pub] = ACTIONS(3137), - [anon_sym_mut] = ACTIONS(3137), - [anon_sym_enum] = ACTIONS(3137), - [anon_sym_interface] = ACTIONS(3137), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_go] = ACTIONS(3137), - [anon_sym_spawn] = ACTIONS(3137), - [anon_sym_json_DOTdecode] = ACTIONS(3137), - [anon_sym_LBRACK2] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_CARET] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_LT_DASH] = ACTIONS(3137), - [sym_none] = ACTIONS(3137), - [sym_true] = ACTIONS(3137), - [sym_false] = ACTIONS(3137), - [sym_nil] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_DOLLARif] = ACTIONS(3137), - [anon_sym_match] = ACTIONS(3137), - [anon_sym_select] = ACTIONS(3137), - [anon_sym_lock] = ACTIONS(3137), - [anon_sym_rlock] = ACTIONS(3137), - [anon_sym_unsafe] = ACTIONS(3137), - [anon_sym_sql] = ACTIONS(3137), - [sym_int_literal] = ACTIONS(3137), - [sym_float_literal] = ACTIONS(3137), - [sym_rune_literal] = ACTIONS(3137), - [anon_sym_AT] = ACTIONS(3137), - [anon_sym_shared] = ACTIONS(3137), - [anon_sym_map_LBRACK] = ACTIONS(3137), - [anon_sym_chan] = ACTIONS(3137), - [anon_sym_thread] = ACTIONS(3137), - [anon_sym_atomic] = ACTIONS(3137), - [anon_sym_assert] = ACTIONS(3137), - [anon_sym_defer] = ACTIONS(3137), - [anon_sym_goto] = ACTIONS(3137), - [anon_sym_break] = ACTIONS(3137), - [anon_sym_continue] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3137), - [anon_sym_DOLLARfor] = ACTIONS(3137), - [anon_sym_for] = ACTIONS(3137), - [anon_sym_POUND] = ACTIONS(3137), - [anon_sym_asm] = ACTIONS(3137), - [anon_sym_AT_LBRACK] = ACTIONS(3137), - [sym___double_quote] = ACTIONS(3137), - [sym___single_quote] = ACTIONS(3137), - [sym___c_double_quote] = ACTIONS(3137), - [sym___c_single_quote] = ACTIONS(3137), - [sym___r_double_quote] = ACTIONS(3137), - [sym___r_single_quote] = ACTIONS(3137), + [ts_builtin_sym_end] = ACTIONS(2872), + [sym_identifier] = ACTIONS(2874), + [anon_sym_LF] = ACTIONS(2874), + [anon_sym_CR] = ACTIONS(2874), + [anon_sym_CR_LF] = ACTIONS(2874), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2874), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_const] = ACTIONS(2874), + [anon_sym_LPAREN] = ACTIONS(2874), + [anon_sym___global] = ACTIONS(2874), + [anon_sym_type] = ACTIONS(2874), + [anon_sym_PIPE] = ACTIONS(2874), + [anon_sym_fn] = ACTIONS(2874), + [anon_sym_PLUS] = ACTIONS(2874), + [anon_sym_DASH] = ACTIONS(2874), + [anon_sym_STAR] = ACTIONS(2874), + [anon_sym_struct] = ACTIONS(2874), + [anon_sym_union] = ACTIONS(2874), + [anon_sym_pub] = ACTIONS(2874), + [anon_sym_mut] = ACTIONS(2874), + [anon_sym_enum] = ACTIONS(2874), + [anon_sym_interface] = ACTIONS(2874), + [anon_sym_QMARK] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_go] = ACTIONS(2874), + [anon_sym_spawn] = ACTIONS(2874), + [anon_sym_json_DOTdecode] = ACTIONS(2874), + [anon_sym_LBRACK2] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_CARET] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_LT_DASH] = ACTIONS(2874), + [sym_none] = ACTIONS(2874), + [sym_true] = ACTIONS(2874), + [sym_false] = ACTIONS(2874), + [sym_nil] = ACTIONS(2874), + [anon_sym_if] = ACTIONS(2874), + [anon_sym_DOLLARif] = ACTIONS(2874), + [anon_sym_match] = ACTIONS(2874), + [anon_sym_select] = ACTIONS(2874), + [anon_sym_lock] = ACTIONS(2874), + [anon_sym_rlock] = ACTIONS(2874), + [anon_sym_unsafe] = ACTIONS(2874), + [anon_sym_sql] = ACTIONS(2874), + [sym_int_literal] = ACTIONS(2874), + [sym_float_literal] = ACTIONS(2874), + [sym_rune_literal] = ACTIONS(2874), + [anon_sym_AT] = ACTIONS(2874), + [anon_sym_shared] = ACTIONS(2874), + [anon_sym_map_LBRACK] = ACTIONS(2874), + [anon_sym_chan] = ACTIONS(2874), + [anon_sym_thread] = ACTIONS(2874), + [anon_sym_atomic] = ACTIONS(2874), + [anon_sym_assert] = ACTIONS(2874), + [anon_sym_defer] = ACTIONS(2874), + [anon_sym_goto] = ACTIONS(2874), + [anon_sym_break] = ACTIONS(2874), + [anon_sym_continue] = ACTIONS(2874), + [anon_sym_return] = ACTIONS(2874), + [anon_sym_DOLLARfor] = ACTIONS(2874), + [anon_sym_for] = ACTIONS(2874), + [anon_sym_POUND] = ACTIONS(2874), + [anon_sym_asm] = ACTIONS(2874), + [anon_sym_AT_LBRACK] = ACTIONS(2874), + [sym___double_quote] = ACTIONS(2874), + [sym___single_quote] = ACTIONS(2874), + [sym___c_double_quote] = ACTIONS(2874), + [sym___c_single_quote] = ACTIONS(2874), + [sym___r_double_quote] = ACTIONS(2874), + [sym___r_single_quote] = ACTIONS(2874), }, [1476] = { - [ts_builtin_sym_end] = ACTIONS(2782), - [sym_identifier] = ACTIONS(2784), - [anon_sym_LF] = ACTIONS(2784), - [anon_sym_CR] = ACTIONS(2784), - [anon_sym_CR_LF] = ACTIONS(2784), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2784), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_const] = ACTIONS(2784), - [anon_sym_LPAREN] = ACTIONS(2784), - [anon_sym___global] = ACTIONS(2784), - [anon_sym_type] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_fn] = ACTIONS(2784), - [anon_sym_PLUS] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_STAR] = ACTIONS(2784), - [anon_sym_struct] = ACTIONS(2784), - [anon_sym_union] = ACTIONS(2784), - [anon_sym_pub] = ACTIONS(2784), - [anon_sym_mut] = ACTIONS(2784), - [anon_sym_enum] = ACTIONS(2784), - [anon_sym_interface] = ACTIONS(2784), - [anon_sym_QMARK] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_go] = ACTIONS(2784), - [anon_sym_spawn] = ACTIONS(2784), - [anon_sym_json_DOTdecode] = ACTIONS(2784), - [anon_sym_LBRACK2] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2784), - [anon_sym_CARET] = ACTIONS(2784), - [anon_sym_AMP] = ACTIONS(2784), - [anon_sym_LT_DASH] = ACTIONS(2784), - [sym_none] = ACTIONS(2784), - [sym_true] = ACTIONS(2784), - [sym_false] = ACTIONS(2784), - [sym_nil] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_DOLLARif] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_select] = ACTIONS(2784), - [anon_sym_lock] = ACTIONS(2784), - [anon_sym_rlock] = ACTIONS(2784), - [anon_sym_unsafe] = ACTIONS(2784), - [anon_sym_sql] = ACTIONS(2784), - [sym_int_literal] = ACTIONS(2784), - [sym_float_literal] = ACTIONS(2784), - [sym_rune_literal] = ACTIONS(2784), - [anon_sym_AT] = ACTIONS(2784), - [anon_sym_shared] = ACTIONS(2784), - [anon_sym_map_LBRACK] = ACTIONS(2784), - [anon_sym_chan] = ACTIONS(2784), - [anon_sym_thread] = ACTIONS(2784), - [anon_sym_atomic] = ACTIONS(2784), - [anon_sym_assert] = ACTIONS(2784), - [anon_sym_defer] = ACTIONS(2784), - [anon_sym_goto] = ACTIONS(2784), - [anon_sym_break] = ACTIONS(2784), - [anon_sym_continue] = ACTIONS(2784), - [anon_sym_return] = ACTIONS(2784), - [anon_sym_DOLLARfor] = ACTIONS(2784), - [anon_sym_for] = ACTIONS(2784), - [anon_sym_POUND] = ACTIONS(2784), - [anon_sym_asm] = ACTIONS(2784), - [anon_sym_AT_LBRACK] = ACTIONS(2784), - [sym___double_quote] = ACTIONS(2784), - [sym___single_quote] = ACTIONS(2784), - [sym___c_double_quote] = ACTIONS(2784), - [sym___c_single_quote] = ACTIONS(2784), - [sym___r_double_quote] = ACTIONS(2784), - [sym___r_single_quote] = ACTIONS(2784), + [ts_builtin_sym_end] = ACTIONS(2864), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LF] = ACTIONS(2866), + [anon_sym_CR] = ACTIONS(2866), + [anon_sym_CR_LF] = ACTIONS(2866), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2866), + [anon_sym_LBRACE] = ACTIONS(2866), + [anon_sym_const] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2866), + [anon_sym___global] = ACTIONS(2866), + [anon_sym_type] = ACTIONS(2866), + [anon_sym_PIPE] = ACTIONS(2866), + [anon_sym_fn] = ACTIONS(2866), + [anon_sym_PLUS] = ACTIONS(2866), + [anon_sym_DASH] = ACTIONS(2866), + [anon_sym_STAR] = ACTIONS(2866), + [anon_sym_struct] = ACTIONS(2866), + [anon_sym_union] = ACTIONS(2866), + [anon_sym_pub] = ACTIONS(2866), + [anon_sym_mut] = ACTIONS(2866), + [anon_sym_enum] = ACTIONS(2866), + [anon_sym_interface] = ACTIONS(2866), + [anon_sym_QMARK] = ACTIONS(2866), + [anon_sym_BANG] = ACTIONS(2866), + [anon_sym_go] = ACTIONS(2866), + [anon_sym_spawn] = ACTIONS(2866), + [anon_sym_json_DOTdecode] = ACTIONS(2866), + [anon_sym_LBRACK2] = ACTIONS(2866), + [anon_sym_TILDE] = ACTIONS(2866), + [anon_sym_CARET] = ACTIONS(2866), + [anon_sym_AMP] = ACTIONS(2866), + [anon_sym_LT_DASH] = ACTIONS(2866), + [sym_none] = ACTIONS(2866), + [sym_true] = ACTIONS(2866), + [sym_false] = ACTIONS(2866), + [sym_nil] = ACTIONS(2866), + [anon_sym_if] = ACTIONS(2866), + [anon_sym_DOLLARif] = ACTIONS(2866), + [anon_sym_match] = ACTIONS(2866), + [anon_sym_select] = ACTIONS(2866), + [anon_sym_lock] = ACTIONS(2866), + [anon_sym_rlock] = ACTIONS(2866), + [anon_sym_unsafe] = ACTIONS(2866), + [anon_sym_sql] = ACTIONS(2866), + [sym_int_literal] = ACTIONS(2866), + [sym_float_literal] = ACTIONS(2866), + [sym_rune_literal] = ACTIONS(2866), + [anon_sym_AT] = ACTIONS(2866), + [anon_sym_shared] = ACTIONS(2866), + [anon_sym_map_LBRACK] = ACTIONS(2866), + [anon_sym_chan] = ACTIONS(2866), + [anon_sym_thread] = ACTIONS(2866), + [anon_sym_atomic] = ACTIONS(2866), + [anon_sym_assert] = ACTIONS(2866), + [anon_sym_defer] = ACTIONS(2866), + [anon_sym_goto] = ACTIONS(2866), + [anon_sym_break] = ACTIONS(2866), + [anon_sym_continue] = ACTIONS(2866), + [anon_sym_return] = ACTIONS(2866), + [anon_sym_DOLLARfor] = ACTIONS(2866), + [anon_sym_for] = ACTIONS(2866), + [anon_sym_POUND] = ACTIONS(2866), + [anon_sym_asm] = ACTIONS(2866), + [anon_sym_AT_LBRACK] = ACTIONS(2866), + [sym___double_quote] = ACTIONS(2866), + [sym___single_quote] = ACTIONS(2866), + [sym___c_double_quote] = ACTIONS(2866), + [sym___c_single_quote] = ACTIONS(2866), + [sym___r_double_quote] = ACTIONS(2866), + [sym___r_single_quote] = ACTIONS(2866), }, [1477] = { - [ts_builtin_sym_end] = ACTIONS(3885), - [sym_identifier] = ACTIONS(3887), - [anon_sym_LF] = ACTIONS(3887), - [anon_sym_CR] = ACTIONS(3887), - [anon_sym_CR_LF] = ACTIONS(3887), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3887), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_const] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(3887), - [anon_sym___global] = ACTIONS(3887), - [anon_sym_type] = ACTIONS(3887), - [anon_sym_PIPE] = ACTIONS(3887), - [anon_sym_fn] = ACTIONS(3887), - [anon_sym_PLUS] = ACTIONS(3887), - [anon_sym_DASH] = ACTIONS(3887), - [anon_sym_STAR] = ACTIONS(3887), - [anon_sym_struct] = ACTIONS(3887), - [anon_sym_union] = ACTIONS(3887), - [anon_sym_pub] = ACTIONS(3887), - [anon_sym_mut] = ACTIONS(3887), - [anon_sym_enum] = ACTIONS(3887), - [anon_sym_interface] = ACTIONS(3887), - [anon_sym_QMARK] = ACTIONS(3887), - [anon_sym_BANG] = ACTIONS(3887), - [anon_sym_go] = ACTIONS(3887), - [anon_sym_spawn] = ACTIONS(3887), - [anon_sym_json_DOTdecode] = ACTIONS(3887), - [anon_sym_LBRACK2] = ACTIONS(3887), - [anon_sym_TILDE] = ACTIONS(3887), - [anon_sym_CARET] = ACTIONS(3887), - [anon_sym_AMP] = ACTIONS(3887), - [anon_sym_LT_DASH] = ACTIONS(3887), - [sym_none] = ACTIONS(3887), - [sym_true] = ACTIONS(3887), - [sym_false] = ACTIONS(3887), - [sym_nil] = ACTIONS(3887), - [anon_sym_if] = ACTIONS(3887), - [anon_sym_DOLLARif] = ACTIONS(3887), - [anon_sym_match] = ACTIONS(3887), - [anon_sym_select] = ACTIONS(3887), - [anon_sym_lock] = ACTIONS(3887), - [anon_sym_rlock] = ACTIONS(3887), - [anon_sym_unsafe] = ACTIONS(3887), - [anon_sym_sql] = ACTIONS(3887), - [sym_int_literal] = ACTIONS(3887), - [sym_float_literal] = ACTIONS(3887), - [sym_rune_literal] = ACTIONS(3887), - [anon_sym_AT] = ACTIONS(3887), - [anon_sym_shared] = ACTIONS(3887), - [anon_sym_map_LBRACK] = ACTIONS(3887), - [anon_sym_chan] = ACTIONS(3887), - [anon_sym_thread] = ACTIONS(3887), - [anon_sym_atomic] = ACTIONS(3887), - [anon_sym_assert] = ACTIONS(3887), - [anon_sym_defer] = ACTIONS(3887), - [anon_sym_goto] = ACTIONS(3887), - [anon_sym_break] = ACTIONS(3887), - [anon_sym_continue] = ACTIONS(3887), - [anon_sym_return] = ACTIONS(3887), - [anon_sym_DOLLARfor] = ACTIONS(3887), - [anon_sym_for] = ACTIONS(3887), - [anon_sym_POUND] = ACTIONS(3887), - [anon_sym_asm] = ACTIONS(3887), - [anon_sym_AT_LBRACK] = ACTIONS(3887), - [sym___double_quote] = ACTIONS(3887), - [sym___single_quote] = ACTIONS(3887), - [sym___c_double_quote] = ACTIONS(3887), - [sym___c_single_quote] = ACTIONS(3887), - [sym___r_double_quote] = ACTIONS(3887), - [sym___r_single_quote] = ACTIONS(3887), + [ts_builtin_sym_end] = ACTIONS(3740), + [sym_identifier] = ACTIONS(3742), + [anon_sym_LF] = ACTIONS(3742), + [anon_sym_CR] = ACTIONS(3742), + [anon_sym_CR_LF] = ACTIONS(3742), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3742), + [anon_sym_LBRACE] = ACTIONS(3742), + [anon_sym_const] = ACTIONS(3742), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym___global] = ACTIONS(3742), + [anon_sym_type] = ACTIONS(3742), + [anon_sym_PIPE] = ACTIONS(3742), + [anon_sym_fn] = ACTIONS(3742), + [anon_sym_PLUS] = ACTIONS(3742), + [anon_sym_DASH] = ACTIONS(3742), + [anon_sym_STAR] = ACTIONS(3742), + [anon_sym_struct] = ACTIONS(3742), + [anon_sym_union] = ACTIONS(3742), + [anon_sym_pub] = ACTIONS(3742), + [anon_sym_mut] = ACTIONS(3742), + [anon_sym_enum] = ACTIONS(3742), + [anon_sym_interface] = ACTIONS(3742), + [anon_sym_QMARK] = ACTIONS(3742), + [anon_sym_BANG] = ACTIONS(3742), + [anon_sym_go] = ACTIONS(3742), + [anon_sym_spawn] = ACTIONS(3742), + [anon_sym_json_DOTdecode] = ACTIONS(3742), + [anon_sym_LBRACK2] = ACTIONS(3742), + [anon_sym_TILDE] = ACTIONS(3742), + [anon_sym_CARET] = ACTIONS(3742), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_LT_DASH] = ACTIONS(3742), + [sym_none] = ACTIONS(3742), + [sym_true] = ACTIONS(3742), + [sym_false] = ACTIONS(3742), + [sym_nil] = ACTIONS(3742), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_DOLLARif] = ACTIONS(3742), + [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_AT] = 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), + [anon_sym_assert] = ACTIONS(3742), + [anon_sym_defer] = ACTIONS(3742), + [anon_sym_goto] = ACTIONS(3742), + [anon_sym_break] = ACTIONS(3742), + [anon_sym_continue] = ACTIONS(3742), + [anon_sym_return] = ACTIONS(3742), + [anon_sym_DOLLARfor] = ACTIONS(3742), + [anon_sym_for] = ACTIONS(3742), + [anon_sym_POUND] = ACTIONS(3742), + [anon_sym_asm] = ACTIONS(3742), + [anon_sym_AT_LBRACK] = ACTIONS(3742), + [sym___double_quote] = ACTIONS(3742), + [sym___single_quote] = ACTIONS(3742), + [sym___c_double_quote] = ACTIONS(3742), + [sym___c_single_quote] = ACTIONS(3742), + [sym___r_double_quote] = ACTIONS(3742), + [sym___r_single_quote] = ACTIONS(3742), }, [1478] = { - [sym_block] = STATE(1545), - [ts_builtin_sym_end] = ACTIONS(3889), - [sym_identifier] = ACTIONS(3891), - [anon_sym_LF] = ACTIONS(3891), - [anon_sym_CR] = ACTIONS(3891), - [anon_sym_CR_LF] = ACTIONS(3891), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3891), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3891), - [anon_sym_LPAREN] = ACTIONS(3891), - [anon_sym___global] = ACTIONS(3891), - [anon_sym_type] = ACTIONS(3891), - [anon_sym_fn] = ACTIONS(3891), - [anon_sym_PLUS] = ACTIONS(3891), - [anon_sym_DASH] = ACTIONS(3891), - [anon_sym_STAR] = ACTIONS(3891), - [anon_sym_struct] = ACTIONS(3891), - [anon_sym_union] = ACTIONS(3891), - [anon_sym_pub] = ACTIONS(3891), - [anon_sym_mut] = ACTIONS(3891), - [anon_sym_enum] = ACTIONS(3891), - [anon_sym_interface] = ACTIONS(3891), - [anon_sym_QMARK] = ACTIONS(3891), - [anon_sym_BANG] = ACTIONS(3891), - [anon_sym_go] = ACTIONS(3891), - [anon_sym_spawn] = ACTIONS(3891), - [anon_sym_json_DOTdecode] = ACTIONS(3891), - [anon_sym_LBRACK2] = ACTIONS(3891), - [anon_sym_TILDE] = ACTIONS(3891), - [anon_sym_CARET] = ACTIONS(3891), - [anon_sym_AMP] = ACTIONS(3891), - [anon_sym_LT_DASH] = ACTIONS(3891), - [sym_none] = ACTIONS(3891), - [sym_true] = ACTIONS(3891), - [sym_false] = ACTIONS(3891), - [sym_nil] = ACTIONS(3891), - [anon_sym_if] = ACTIONS(3891), - [anon_sym_DOLLARif] = ACTIONS(3891), - [anon_sym_match] = ACTIONS(3891), - [anon_sym_select] = ACTIONS(3891), - [anon_sym_lock] = ACTIONS(3891), - [anon_sym_rlock] = ACTIONS(3891), - [anon_sym_unsafe] = ACTIONS(3891), - [anon_sym_sql] = ACTIONS(3891), - [sym_int_literal] = ACTIONS(3891), - [sym_float_literal] = ACTIONS(3891), - [sym_rune_literal] = ACTIONS(3891), - [anon_sym_AT] = ACTIONS(3891), - [anon_sym_shared] = ACTIONS(3891), - [anon_sym_map_LBRACK] = ACTIONS(3891), - [anon_sym_chan] = ACTIONS(3891), - [anon_sym_thread] = ACTIONS(3891), - [anon_sym_atomic] = ACTIONS(3891), - [anon_sym_assert] = ACTIONS(3891), - [anon_sym_defer] = ACTIONS(3891), - [anon_sym_goto] = ACTIONS(3891), - [anon_sym_break] = ACTIONS(3891), - [anon_sym_continue] = ACTIONS(3891), - [anon_sym_return] = ACTIONS(3891), - [anon_sym_DOLLARfor] = ACTIONS(3891), - [anon_sym_for] = ACTIONS(3891), - [anon_sym_POUND] = ACTIONS(3891), - [anon_sym_asm] = ACTIONS(3891), - [anon_sym_AT_LBRACK] = ACTIONS(3891), - [sym___double_quote] = ACTIONS(3891), - [sym___single_quote] = ACTIONS(3891), - [sym___c_double_quote] = ACTIONS(3891), - [sym___c_single_quote] = ACTIONS(3891), - [sym___r_double_quote] = ACTIONS(3891), - [sym___r_single_quote] = ACTIONS(3891), + [sym_block] = STATE(1491), + [ts_builtin_sym_end] = ACTIONS(3895), + [sym_identifier] = ACTIONS(3897), + [anon_sym_LF] = ACTIONS(3897), + [anon_sym_CR] = ACTIONS(3897), + [anon_sym_CR_LF] = ACTIONS(3897), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3897), + [anon_sym_LBRACE] = ACTIONS(3805), + [anon_sym_const] = ACTIONS(3897), + [anon_sym_LPAREN] = ACTIONS(3897), + [anon_sym___global] = ACTIONS(3897), + [anon_sym_type] = ACTIONS(3897), + [anon_sym_fn] = ACTIONS(3897), + [anon_sym_PLUS] = ACTIONS(3897), + [anon_sym_DASH] = ACTIONS(3897), + [anon_sym_STAR] = ACTIONS(3897), + [anon_sym_struct] = ACTIONS(3897), + [anon_sym_union] = ACTIONS(3897), + [anon_sym_pub] = ACTIONS(3897), + [anon_sym_mut] = ACTIONS(3897), + [anon_sym_enum] = ACTIONS(3897), + [anon_sym_interface] = ACTIONS(3897), + [anon_sym_QMARK] = ACTIONS(3897), + [anon_sym_BANG] = ACTIONS(3897), + [anon_sym_go] = ACTIONS(3897), + [anon_sym_spawn] = ACTIONS(3897), + [anon_sym_json_DOTdecode] = ACTIONS(3897), + [anon_sym_LBRACK2] = ACTIONS(3897), + [anon_sym_TILDE] = ACTIONS(3897), + [anon_sym_CARET] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3897), + [anon_sym_LT_DASH] = ACTIONS(3897), + [sym_none] = ACTIONS(3897), + [sym_true] = ACTIONS(3897), + [sym_false] = ACTIONS(3897), + [sym_nil] = ACTIONS(3897), + [anon_sym_if] = ACTIONS(3897), + [anon_sym_DOLLARif] = ACTIONS(3897), + [anon_sym_match] = ACTIONS(3897), + [anon_sym_select] = ACTIONS(3897), + [anon_sym_lock] = ACTIONS(3897), + [anon_sym_rlock] = ACTIONS(3897), + [anon_sym_unsafe] = ACTIONS(3897), + [anon_sym_sql] = ACTIONS(3897), + [sym_int_literal] = ACTIONS(3897), + [sym_float_literal] = ACTIONS(3897), + [sym_rune_literal] = ACTIONS(3897), + [anon_sym_AT] = ACTIONS(3897), + [anon_sym_shared] = ACTIONS(3897), + [anon_sym_map_LBRACK] = ACTIONS(3897), + [anon_sym_chan] = ACTIONS(3897), + [anon_sym_thread] = ACTIONS(3897), + [anon_sym_atomic] = ACTIONS(3897), + [anon_sym_assert] = ACTIONS(3897), + [anon_sym_defer] = ACTIONS(3897), + [anon_sym_goto] = ACTIONS(3897), + [anon_sym_break] = ACTIONS(3897), + [anon_sym_continue] = ACTIONS(3897), + [anon_sym_return] = ACTIONS(3897), + [anon_sym_DOLLARfor] = ACTIONS(3897), + [anon_sym_for] = ACTIONS(3897), + [anon_sym_POUND] = ACTIONS(3897), + [anon_sym_asm] = ACTIONS(3897), + [anon_sym_AT_LBRACK] = ACTIONS(3897), + [sym___double_quote] = ACTIONS(3897), + [sym___single_quote] = ACTIONS(3897), + [sym___c_double_quote] = ACTIONS(3897), + [sym___c_single_quote] = ACTIONS(3897), + [sym___r_double_quote] = ACTIONS(3897), + [sym___r_single_quote] = ACTIONS(3897), }, [1479] = { - [sym_block] = STATE(1573), - [ts_builtin_sym_end] = ACTIONS(3893), - [sym_identifier] = ACTIONS(3895), - [anon_sym_LF] = ACTIONS(3895), - [anon_sym_CR] = ACTIONS(3895), - [anon_sym_CR_LF] = ACTIONS(3895), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3895), - [anon_sym_LPAREN] = ACTIONS(3895), - [anon_sym___global] = ACTIONS(3895), - [anon_sym_type] = ACTIONS(3895), - [anon_sym_fn] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3895), - [anon_sym_struct] = ACTIONS(3895), - [anon_sym_union] = ACTIONS(3895), - [anon_sym_pub] = ACTIONS(3895), - [anon_sym_mut] = ACTIONS(3895), - [anon_sym_enum] = ACTIONS(3895), - [anon_sym_interface] = ACTIONS(3895), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_go] = ACTIONS(3895), - [anon_sym_spawn] = ACTIONS(3895), - [anon_sym_json_DOTdecode] = ACTIONS(3895), - [anon_sym_LBRACK2] = ACTIONS(3895), - [anon_sym_TILDE] = ACTIONS(3895), - [anon_sym_CARET] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_DASH] = ACTIONS(3895), - [sym_none] = ACTIONS(3895), - [sym_true] = ACTIONS(3895), - [sym_false] = ACTIONS(3895), - [sym_nil] = ACTIONS(3895), - [anon_sym_if] = ACTIONS(3895), - [anon_sym_DOLLARif] = ACTIONS(3895), - [anon_sym_match] = ACTIONS(3895), - [anon_sym_select] = ACTIONS(3895), - [anon_sym_lock] = ACTIONS(3895), - [anon_sym_rlock] = ACTIONS(3895), - [anon_sym_unsafe] = ACTIONS(3895), - [anon_sym_sql] = ACTIONS(3895), - [sym_int_literal] = ACTIONS(3895), - [sym_float_literal] = ACTIONS(3895), - [sym_rune_literal] = ACTIONS(3895), - [anon_sym_AT] = ACTIONS(3895), - [anon_sym_shared] = ACTIONS(3895), - [anon_sym_map_LBRACK] = ACTIONS(3895), - [anon_sym_chan] = ACTIONS(3895), - [anon_sym_thread] = ACTIONS(3895), - [anon_sym_atomic] = ACTIONS(3895), - [anon_sym_assert] = ACTIONS(3895), - [anon_sym_defer] = ACTIONS(3895), - [anon_sym_goto] = ACTIONS(3895), - [anon_sym_break] = ACTIONS(3895), - [anon_sym_continue] = ACTIONS(3895), - [anon_sym_return] = ACTIONS(3895), - [anon_sym_DOLLARfor] = ACTIONS(3895), - [anon_sym_for] = ACTIONS(3895), - [anon_sym_POUND] = ACTIONS(3895), - [anon_sym_asm] = ACTIONS(3895), - [anon_sym_AT_LBRACK] = ACTIONS(3895), - [sym___double_quote] = ACTIONS(3895), - [sym___single_quote] = ACTIONS(3895), - [sym___c_double_quote] = ACTIONS(3895), - [sym___c_single_quote] = ACTIONS(3895), - [sym___r_double_quote] = ACTIONS(3895), - [sym___r_single_quote] = ACTIONS(3895), + [ts_builtin_sym_end] = ACTIONS(3127), + [sym_identifier] = ACTIONS(3129), + [anon_sym_LF] = ACTIONS(3129), + [anon_sym_CR] = ACTIONS(3129), + [anon_sym_CR_LF] = ACTIONS(3129), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3129), + [anon_sym_const] = ACTIONS(3129), + [anon_sym_LPAREN] = ACTIONS(3129), + [anon_sym___global] = ACTIONS(3129), + [anon_sym_type] = ACTIONS(3129), + [anon_sym_PIPE] = ACTIONS(3129), + [anon_sym_fn] = ACTIONS(3129), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3129), + [anon_sym_STAR] = ACTIONS(3129), + [anon_sym_struct] = ACTIONS(3129), + [anon_sym_union] = ACTIONS(3129), + [anon_sym_pub] = ACTIONS(3129), + [anon_sym_mut] = ACTIONS(3129), + [anon_sym_enum] = ACTIONS(3129), + [anon_sym_interface] = ACTIONS(3129), + [anon_sym_QMARK] = ACTIONS(3129), + [anon_sym_BANG] = ACTIONS(3129), + [anon_sym_go] = ACTIONS(3129), + [anon_sym_spawn] = ACTIONS(3129), + [anon_sym_json_DOTdecode] = ACTIONS(3129), + [anon_sym_LBRACK2] = ACTIONS(3129), + [anon_sym_TILDE] = ACTIONS(3129), + [anon_sym_CARET] = ACTIONS(3129), + [anon_sym_AMP] = ACTIONS(3129), + [anon_sym_LT_DASH] = ACTIONS(3129), + [sym_none] = ACTIONS(3129), + [sym_true] = ACTIONS(3129), + [sym_false] = ACTIONS(3129), + [sym_nil] = ACTIONS(3129), + [anon_sym_if] = ACTIONS(3129), + [anon_sym_DOLLARif] = ACTIONS(3129), + [anon_sym_match] = ACTIONS(3129), + [anon_sym_select] = ACTIONS(3129), + [anon_sym_lock] = ACTIONS(3129), + [anon_sym_rlock] = ACTIONS(3129), + [anon_sym_unsafe] = ACTIONS(3129), + [anon_sym_sql] = ACTIONS(3129), + [sym_int_literal] = ACTIONS(3129), + [sym_float_literal] = ACTIONS(3129), + [sym_rune_literal] = ACTIONS(3129), + [anon_sym_AT] = ACTIONS(3129), + [anon_sym_shared] = ACTIONS(3129), + [anon_sym_map_LBRACK] = ACTIONS(3129), + [anon_sym_chan] = ACTIONS(3129), + [anon_sym_thread] = ACTIONS(3129), + [anon_sym_atomic] = ACTIONS(3129), + [anon_sym_assert] = ACTIONS(3129), + [anon_sym_defer] = ACTIONS(3129), + [anon_sym_goto] = ACTIONS(3129), + [anon_sym_break] = ACTIONS(3129), + [anon_sym_continue] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3129), + [anon_sym_DOLLARfor] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(3129), + [anon_sym_POUND] = ACTIONS(3129), + [anon_sym_asm] = ACTIONS(3129), + [anon_sym_AT_LBRACK] = ACTIONS(3129), + [sym___double_quote] = ACTIONS(3129), + [sym___single_quote] = ACTIONS(3129), + [sym___c_double_quote] = ACTIONS(3129), + [sym___c_single_quote] = ACTIONS(3129), + [sym___r_double_quote] = ACTIONS(3129), + [sym___r_single_quote] = ACTIONS(3129), }, [1480] = { - [ts_builtin_sym_end] = ACTIONS(2838), - [sym_identifier] = ACTIONS(2840), - [anon_sym_LF] = ACTIONS(2840), - [anon_sym_CR] = ACTIONS(2840), - [anon_sym_CR_LF] = ACTIONS(2840), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_const] = ACTIONS(2840), - [anon_sym_LPAREN] = ACTIONS(2840), - [anon_sym___global] = ACTIONS(2840), - [anon_sym_type] = ACTIONS(2840), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_fn] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_struct] = ACTIONS(2840), - [anon_sym_union] = ACTIONS(2840), - [anon_sym_pub] = ACTIONS(2840), - [anon_sym_mut] = ACTIONS(2840), - [anon_sym_enum] = ACTIONS(2840), - [anon_sym_interface] = ACTIONS(2840), - [anon_sym_QMARK] = ACTIONS(2840), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_go] = ACTIONS(2840), - [anon_sym_spawn] = ACTIONS(2840), - [anon_sym_json_DOTdecode] = ACTIONS(2840), - [anon_sym_LBRACK2] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2840), - [anon_sym_CARET] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2840), - [anon_sym_LT_DASH] = ACTIONS(2840), - [sym_none] = ACTIONS(2840), - [sym_true] = ACTIONS(2840), - [sym_false] = ACTIONS(2840), - [sym_nil] = ACTIONS(2840), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_DOLLARif] = ACTIONS(2840), - [anon_sym_match] = ACTIONS(2840), - [anon_sym_select] = ACTIONS(2840), - [anon_sym_lock] = ACTIONS(2840), - [anon_sym_rlock] = ACTIONS(2840), - [anon_sym_unsafe] = ACTIONS(2840), - [anon_sym_sql] = ACTIONS(2840), - [sym_int_literal] = ACTIONS(2840), - [sym_float_literal] = ACTIONS(2840), - [sym_rune_literal] = ACTIONS(2840), - [anon_sym_AT] = ACTIONS(2840), - [anon_sym_shared] = ACTIONS(2840), - [anon_sym_map_LBRACK] = ACTIONS(2840), - [anon_sym_chan] = ACTIONS(2840), - [anon_sym_thread] = ACTIONS(2840), - [anon_sym_atomic] = ACTIONS(2840), - [anon_sym_assert] = ACTIONS(2840), - [anon_sym_defer] = ACTIONS(2840), - [anon_sym_goto] = ACTIONS(2840), - [anon_sym_break] = ACTIONS(2840), - [anon_sym_continue] = ACTIONS(2840), - [anon_sym_return] = ACTIONS(2840), - [anon_sym_DOLLARfor] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2840), - [anon_sym_POUND] = ACTIONS(2840), - [anon_sym_asm] = ACTIONS(2840), - [anon_sym_AT_LBRACK] = ACTIONS(2840), - [sym___double_quote] = ACTIONS(2840), - [sym___single_quote] = ACTIONS(2840), - [sym___c_double_quote] = ACTIONS(2840), - [sym___c_single_quote] = ACTIONS(2840), - [sym___r_double_quote] = ACTIONS(2840), - [sym___r_single_quote] = ACTIONS(2840), + [ts_builtin_sym_end] = ACTIONS(2808), + [sym_identifier] = ACTIONS(2810), + [anon_sym_LF] = ACTIONS(2810), + [anon_sym_CR] = ACTIONS(2810), + [anon_sym_CR_LF] = ACTIONS(2810), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2810), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_const] = ACTIONS(2810), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym___global] = ACTIONS(2810), + [anon_sym_type] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_fn] = ACTIONS(2810), + [anon_sym_PLUS] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_STAR] = ACTIONS(2810), + [anon_sym_struct] = ACTIONS(2810), + [anon_sym_union] = ACTIONS(2810), + [anon_sym_pub] = ACTIONS(2810), + [anon_sym_mut] = ACTIONS(2810), + [anon_sym_enum] = ACTIONS(2810), + [anon_sym_interface] = ACTIONS(2810), + [anon_sym_QMARK] = ACTIONS(2810), + [anon_sym_BANG] = ACTIONS(2810), + [anon_sym_go] = ACTIONS(2810), + [anon_sym_spawn] = ACTIONS(2810), + [anon_sym_json_DOTdecode] = ACTIONS(2810), + [anon_sym_LBRACK2] = ACTIONS(2810), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2810), + [anon_sym_LT_DASH] = ACTIONS(2810), + [sym_none] = ACTIONS(2810), + [sym_true] = ACTIONS(2810), + [sym_false] = ACTIONS(2810), + [sym_nil] = ACTIONS(2810), + [anon_sym_if] = ACTIONS(2810), + [anon_sym_DOLLARif] = ACTIONS(2810), + [anon_sym_match] = ACTIONS(2810), + [anon_sym_select] = ACTIONS(2810), + [anon_sym_lock] = ACTIONS(2810), + [anon_sym_rlock] = ACTIONS(2810), + [anon_sym_unsafe] = ACTIONS(2810), + [anon_sym_sql] = ACTIONS(2810), + [sym_int_literal] = ACTIONS(2810), + [sym_float_literal] = ACTIONS(2810), + [sym_rune_literal] = ACTIONS(2810), + [anon_sym_AT] = ACTIONS(2810), + [anon_sym_shared] = ACTIONS(2810), + [anon_sym_map_LBRACK] = ACTIONS(2810), + [anon_sym_chan] = ACTIONS(2810), + [anon_sym_thread] = ACTIONS(2810), + [anon_sym_atomic] = ACTIONS(2810), + [anon_sym_assert] = ACTIONS(2810), + [anon_sym_defer] = ACTIONS(2810), + [anon_sym_goto] = ACTIONS(2810), + [anon_sym_break] = ACTIONS(2810), + [anon_sym_continue] = ACTIONS(2810), + [anon_sym_return] = ACTIONS(2810), + [anon_sym_DOLLARfor] = ACTIONS(2810), + [anon_sym_for] = ACTIONS(2810), + [anon_sym_POUND] = ACTIONS(2810), + [anon_sym_asm] = ACTIONS(2810), + [anon_sym_AT_LBRACK] = ACTIONS(2810), + [sym___double_quote] = ACTIONS(2810), + [sym___single_quote] = ACTIONS(2810), + [sym___c_double_quote] = ACTIONS(2810), + [sym___c_single_quote] = ACTIONS(2810), + [sym___r_double_quote] = ACTIONS(2810), + [sym___r_single_quote] = ACTIONS(2810), }, [1481] = { - [ts_builtin_sym_end] = ACTIONS(3175), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LF] = ACTIONS(3177), - [anon_sym_CR] = ACTIONS(3177), - [anon_sym_CR_LF] = ACTIONS(3177), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_const] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym___global] = ACTIONS(3177), - [anon_sym_type] = ACTIONS(3177), - [anon_sym_PIPE] = ACTIONS(3177), - [anon_sym_fn] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3177), - [anon_sym_struct] = ACTIONS(3177), - [anon_sym_union] = ACTIONS(3177), - [anon_sym_pub] = ACTIONS(3177), - [anon_sym_mut] = ACTIONS(3177), - [anon_sym_enum] = ACTIONS(3177), - [anon_sym_interface] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_go] = ACTIONS(3177), - [anon_sym_spawn] = ACTIONS(3177), - [anon_sym_json_DOTdecode] = ACTIONS(3177), - [anon_sym_LBRACK2] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_CARET] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LT_DASH] = ACTIONS(3177), - [sym_none] = ACTIONS(3177), - [sym_true] = ACTIONS(3177), - [sym_false] = ACTIONS(3177), - [sym_nil] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_DOLLARif] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_select] = ACTIONS(3177), - [anon_sym_lock] = ACTIONS(3177), - [anon_sym_rlock] = ACTIONS(3177), - [anon_sym_unsafe] = ACTIONS(3177), - [anon_sym_sql] = ACTIONS(3177), - [sym_int_literal] = ACTIONS(3177), - [sym_float_literal] = ACTIONS(3177), - [sym_rune_literal] = ACTIONS(3177), - [anon_sym_AT] = ACTIONS(3177), - [anon_sym_shared] = ACTIONS(3177), - [anon_sym_map_LBRACK] = ACTIONS(3177), - [anon_sym_chan] = ACTIONS(3177), - [anon_sym_thread] = ACTIONS(3177), - [anon_sym_atomic] = ACTIONS(3177), - [anon_sym_assert] = ACTIONS(3177), - [anon_sym_defer] = ACTIONS(3177), - [anon_sym_goto] = ACTIONS(3177), - [anon_sym_break] = ACTIONS(3177), - [anon_sym_continue] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_DOLLARfor] = ACTIONS(3177), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_POUND] = ACTIONS(3177), - [anon_sym_asm] = ACTIONS(3177), - [anon_sym_AT_LBRACK] = ACTIONS(3177), - [sym___double_quote] = ACTIONS(3177), - [sym___single_quote] = ACTIONS(3177), - [sym___c_double_quote] = ACTIONS(3177), - [sym___c_single_quote] = ACTIONS(3177), - [sym___r_double_quote] = ACTIONS(3177), - [sym___r_single_quote] = ACTIONS(3177), + [ts_builtin_sym_end] = ACTIONS(2762), + [sym_identifier] = ACTIONS(2764), + [anon_sym_LF] = ACTIONS(2764), + [anon_sym_CR] = ACTIONS(2764), + [anon_sym_CR_LF] = ACTIONS(2764), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2764), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_const] = ACTIONS(2764), + [anon_sym_LPAREN] = ACTIONS(2764), + [anon_sym___global] = ACTIONS(2764), + [anon_sym_type] = ACTIONS(2764), + [anon_sym_PIPE] = ACTIONS(2764), + [anon_sym_fn] = ACTIONS(2764), + [anon_sym_PLUS] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2764), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_struct] = ACTIONS(2764), + [anon_sym_union] = ACTIONS(2764), + [anon_sym_pub] = ACTIONS(2764), + [anon_sym_mut] = ACTIONS(2764), + [anon_sym_enum] = ACTIONS(2764), + [anon_sym_interface] = ACTIONS(2764), + [anon_sym_QMARK] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_go] = ACTIONS(2764), + [anon_sym_spawn] = ACTIONS(2764), + [anon_sym_json_DOTdecode] = ACTIONS(2764), + [anon_sym_LBRACK2] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2764), + [anon_sym_CARET] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_LT_DASH] = ACTIONS(2764), + [sym_none] = ACTIONS(2764), + [sym_true] = ACTIONS(2764), + [sym_false] = ACTIONS(2764), + [sym_nil] = ACTIONS(2764), + [anon_sym_if] = ACTIONS(2764), + [anon_sym_DOLLARif] = ACTIONS(2764), + [anon_sym_match] = ACTIONS(2764), + [anon_sym_select] = ACTIONS(2764), + [anon_sym_lock] = ACTIONS(2764), + [anon_sym_rlock] = ACTIONS(2764), + [anon_sym_unsafe] = ACTIONS(2764), + [anon_sym_sql] = ACTIONS(2764), + [sym_int_literal] = ACTIONS(2764), + [sym_float_literal] = ACTIONS(2764), + [sym_rune_literal] = ACTIONS(2764), + [anon_sym_AT] = ACTIONS(2764), + [anon_sym_shared] = ACTIONS(2764), + [anon_sym_map_LBRACK] = ACTIONS(2764), + [anon_sym_chan] = ACTIONS(2764), + [anon_sym_thread] = ACTIONS(2764), + [anon_sym_atomic] = ACTIONS(2764), + [anon_sym_assert] = ACTIONS(2764), + [anon_sym_defer] = ACTIONS(2764), + [anon_sym_goto] = ACTIONS(2764), + [anon_sym_break] = ACTIONS(2764), + [anon_sym_continue] = ACTIONS(2764), + [anon_sym_return] = ACTIONS(2764), + [anon_sym_DOLLARfor] = ACTIONS(2764), + [anon_sym_for] = ACTIONS(2764), + [anon_sym_POUND] = ACTIONS(2764), + [anon_sym_asm] = ACTIONS(2764), + [anon_sym_AT_LBRACK] = ACTIONS(2764), + [sym___double_quote] = ACTIONS(2764), + [sym___single_quote] = ACTIONS(2764), + [sym___c_double_quote] = ACTIONS(2764), + [sym___c_single_quote] = ACTIONS(2764), + [sym___r_double_quote] = ACTIONS(2764), + [sym___r_single_quote] = ACTIONS(2764), }, [1482] = { - [sym_block] = STATE(1552), - [ts_builtin_sym_end] = ACTIONS(3897), - [sym_identifier] = ACTIONS(3899), - [anon_sym_LF] = ACTIONS(3899), - [anon_sym_CR] = ACTIONS(3899), - [anon_sym_CR_LF] = ACTIONS(3899), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3899), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3899), - [anon_sym_LPAREN] = ACTIONS(3899), - [anon_sym___global] = ACTIONS(3899), - [anon_sym_type] = ACTIONS(3899), - [anon_sym_fn] = ACTIONS(3899), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_STAR] = ACTIONS(3899), - [anon_sym_struct] = ACTIONS(3899), - [anon_sym_union] = ACTIONS(3899), - [anon_sym_pub] = ACTIONS(3899), - [anon_sym_mut] = ACTIONS(3899), - [anon_sym_enum] = ACTIONS(3899), - [anon_sym_interface] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3899), - [anon_sym_go] = ACTIONS(3899), - [anon_sym_spawn] = ACTIONS(3899), - [anon_sym_json_DOTdecode] = ACTIONS(3899), - [anon_sym_LBRACK2] = ACTIONS(3899), - [anon_sym_TILDE] = ACTIONS(3899), - [anon_sym_CARET] = ACTIONS(3899), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_LT_DASH] = ACTIONS(3899), - [sym_none] = ACTIONS(3899), - [sym_true] = ACTIONS(3899), - [sym_false] = ACTIONS(3899), - [sym_nil] = ACTIONS(3899), - [anon_sym_if] = ACTIONS(3899), - [anon_sym_DOLLARif] = ACTIONS(3899), - [anon_sym_match] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_lock] = ACTIONS(3899), - [anon_sym_rlock] = ACTIONS(3899), - [anon_sym_unsafe] = ACTIONS(3899), - [anon_sym_sql] = ACTIONS(3899), - [sym_int_literal] = ACTIONS(3899), - [sym_float_literal] = ACTIONS(3899), - [sym_rune_literal] = ACTIONS(3899), - [anon_sym_AT] = ACTIONS(3899), - [anon_sym_shared] = ACTIONS(3899), - [anon_sym_map_LBRACK] = ACTIONS(3899), - [anon_sym_chan] = ACTIONS(3899), - [anon_sym_thread] = ACTIONS(3899), - [anon_sym_atomic] = ACTIONS(3899), - [anon_sym_assert] = ACTIONS(3899), - [anon_sym_defer] = ACTIONS(3899), - [anon_sym_goto] = ACTIONS(3899), - [anon_sym_break] = ACTIONS(3899), - [anon_sym_continue] = ACTIONS(3899), - [anon_sym_return] = ACTIONS(3899), - [anon_sym_DOLLARfor] = ACTIONS(3899), - [anon_sym_for] = ACTIONS(3899), - [anon_sym_POUND] = ACTIONS(3899), - [anon_sym_asm] = ACTIONS(3899), - [anon_sym_AT_LBRACK] = ACTIONS(3899), - [sym___double_quote] = ACTIONS(3899), - [sym___single_quote] = ACTIONS(3899), - [sym___c_double_quote] = ACTIONS(3899), - [sym___c_single_quote] = ACTIONS(3899), - [sym___r_double_quote] = ACTIONS(3899), - [sym___r_single_quote] = ACTIONS(3899), + [ts_builtin_sym_end] = ACTIONS(3084), + [sym_identifier] = ACTIONS(3086), + [anon_sym_LF] = ACTIONS(3086), + [anon_sym_CR] = ACTIONS(3086), + [anon_sym_CR_LF] = ACTIONS(3086), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3086), + [anon_sym_LBRACE] = ACTIONS(3086), + [anon_sym_const] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym___global] = ACTIONS(3086), + [anon_sym_type] = ACTIONS(3086), + [anon_sym_PIPE] = ACTIONS(3086), + [anon_sym_fn] = ACTIONS(3086), + [anon_sym_PLUS] = ACTIONS(3086), + [anon_sym_DASH] = ACTIONS(3086), + [anon_sym_STAR] = ACTIONS(3086), + [anon_sym_struct] = ACTIONS(3086), + [anon_sym_union] = ACTIONS(3086), + [anon_sym_pub] = ACTIONS(3086), + [anon_sym_mut] = ACTIONS(3086), + [anon_sym_enum] = ACTIONS(3086), + [anon_sym_interface] = ACTIONS(3086), + [anon_sym_QMARK] = ACTIONS(3086), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_go] = ACTIONS(3086), + [anon_sym_spawn] = ACTIONS(3086), + [anon_sym_json_DOTdecode] = ACTIONS(3086), + [anon_sym_LBRACK2] = ACTIONS(3086), + [anon_sym_TILDE] = ACTIONS(3086), + [anon_sym_CARET] = ACTIONS(3086), + [anon_sym_AMP] = ACTIONS(3086), + [anon_sym_LT_DASH] = ACTIONS(3086), + [sym_none] = ACTIONS(3086), + [sym_true] = ACTIONS(3086), + [sym_false] = ACTIONS(3086), + [sym_nil] = ACTIONS(3086), + [anon_sym_if] = ACTIONS(3086), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3086), + [anon_sym_select] = ACTIONS(3086), + [anon_sym_lock] = ACTIONS(3086), + [anon_sym_rlock] = ACTIONS(3086), + [anon_sym_unsafe] = ACTIONS(3086), + [anon_sym_sql] = ACTIONS(3086), + [sym_int_literal] = ACTIONS(3086), + [sym_float_literal] = ACTIONS(3086), + [sym_rune_literal] = ACTIONS(3086), + [anon_sym_AT] = ACTIONS(3086), + [anon_sym_shared] = ACTIONS(3086), + [anon_sym_map_LBRACK] = ACTIONS(3086), + [anon_sym_chan] = ACTIONS(3086), + [anon_sym_thread] = ACTIONS(3086), + [anon_sym_atomic] = ACTIONS(3086), + [anon_sym_assert] = ACTIONS(3086), + [anon_sym_defer] = ACTIONS(3086), + [anon_sym_goto] = ACTIONS(3086), + [anon_sym_break] = ACTIONS(3086), + [anon_sym_continue] = ACTIONS(3086), + [anon_sym_return] = ACTIONS(3086), + [anon_sym_DOLLARfor] = ACTIONS(3086), + [anon_sym_for] = ACTIONS(3086), + [anon_sym_POUND] = ACTIONS(3086), + [anon_sym_asm] = ACTIONS(3086), + [anon_sym_AT_LBRACK] = ACTIONS(3086), + [sym___double_quote] = ACTIONS(3086), + [sym___single_quote] = ACTIONS(3086), + [sym___c_double_quote] = ACTIONS(3086), + [sym___c_single_quote] = ACTIONS(3086), + [sym___r_double_quote] = ACTIONS(3086), + [sym___r_single_quote] = ACTIONS(3086), }, [1483] = { - [ts_builtin_sym_end] = ACTIONS(2913), - [sym_identifier] = ACTIONS(2915), - [anon_sym_LF] = ACTIONS(2915), - [anon_sym_CR] = ACTIONS(2915), - [anon_sym_CR_LF] = ACTIONS(2915), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_const] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2915), - [anon_sym___global] = ACTIONS(2915), - [anon_sym_type] = ACTIONS(2915), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_fn] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_struct] = ACTIONS(2915), - [anon_sym_union] = ACTIONS(2915), - [anon_sym_pub] = ACTIONS(2915), - [anon_sym_mut] = ACTIONS(2915), - [anon_sym_enum] = ACTIONS(2915), - [anon_sym_interface] = ACTIONS(2915), - [anon_sym_QMARK] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2915), - [anon_sym_json_DOTdecode] = ACTIONS(2915), - [anon_sym_LBRACK2] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_LT_DASH] = ACTIONS(2915), - [sym_none] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [sym_nil] = ACTIONS(2915), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_DOLLARif] = ACTIONS(2915), - [anon_sym_match] = ACTIONS(2915), - [anon_sym_select] = ACTIONS(2915), - [anon_sym_lock] = ACTIONS(2915), - [anon_sym_rlock] = ACTIONS(2915), - [anon_sym_unsafe] = ACTIONS(2915), - [anon_sym_sql] = ACTIONS(2915), - [sym_int_literal] = ACTIONS(2915), - [sym_float_literal] = ACTIONS(2915), - [sym_rune_literal] = ACTIONS(2915), - [anon_sym_AT] = ACTIONS(2915), - [anon_sym_shared] = ACTIONS(2915), - [anon_sym_map_LBRACK] = ACTIONS(2915), - [anon_sym_chan] = ACTIONS(2915), - [anon_sym_thread] = ACTIONS(2915), - [anon_sym_atomic] = ACTIONS(2915), - [anon_sym_assert] = ACTIONS(2915), - [anon_sym_defer] = ACTIONS(2915), - [anon_sym_goto] = ACTIONS(2915), - [anon_sym_break] = ACTIONS(2915), - [anon_sym_continue] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2915), - [anon_sym_DOLLARfor] = ACTIONS(2915), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_POUND] = ACTIONS(2915), - [anon_sym_asm] = ACTIONS(2915), - [anon_sym_AT_LBRACK] = ACTIONS(2915), - [sym___double_quote] = ACTIONS(2915), - [sym___single_quote] = ACTIONS(2915), - [sym___c_double_quote] = ACTIONS(2915), - [sym___c_single_quote] = ACTIONS(2915), - [sym___r_double_quote] = ACTIONS(2915), - [sym___r_single_quote] = ACTIONS(2915), + [sym_block] = STATE(1575), + [ts_builtin_sym_end] = ACTIONS(3899), + [sym_identifier] = ACTIONS(3901), + [anon_sym_LF] = ACTIONS(3901), + [anon_sym_CR] = ACTIONS(3901), + [anon_sym_CR_LF] = ACTIONS(3901), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3901), + [anon_sym_LBRACE] = ACTIONS(3805), + [anon_sym_const] = ACTIONS(3901), + [anon_sym_LPAREN] = ACTIONS(3901), + [anon_sym___global] = ACTIONS(3901), + [anon_sym_type] = ACTIONS(3901), + [anon_sym_fn] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3901), + [anon_sym_DASH] = ACTIONS(3901), + [anon_sym_STAR] = ACTIONS(3901), + [anon_sym_struct] = ACTIONS(3901), + [anon_sym_union] = ACTIONS(3901), + [anon_sym_pub] = ACTIONS(3901), + [anon_sym_mut] = ACTIONS(3901), + [anon_sym_enum] = ACTIONS(3901), + [anon_sym_interface] = ACTIONS(3901), + [anon_sym_QMARK] = ACTIONS(3901), + [anon_sym_BANG] = ACTIONS(3901), + [anon_sym_go] = ACTIONS(3901), + [anon_sym_spawn] = ACTIONS(3901), + [anon_sym_json_DOTdecode] = ACTIONS(3901), + [anon_sym_LBRACK2] = ACTIONS(3901), + [anon_sym_TILDE] = ACTIONS(3901), + [anon_sym_CARET] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3901), + [anon_sym_LT_DASH] = ACTIONS(3901), + [sym_none] = ACTIONS(3901), + [sym_true] = ACTIONS(3901), + [sym_false] = ACTIONS(3901), + [sym_nil] = ACTIONS(3901), + [anon_sym_if] = ACTIONS(3901), + [anon_sym_DOLLARif] = ACTIONS(3901), + [anon_sym_match] = ACTIONS(3901), + [anon_sym_select] = ACTIONS(3901), + [anon_sym_lock] = ACTIONS(3901), + [anon_sym_rlock] = ACTIONS(3901), + [anon_sym_unsafe] = ACTIONS(3901), + [anon_sym_sql] = ACTIONS(3901), + [sym_int_literal] = ACTIONS(3901), + [sym_float_literal] = ACTIONS(3901), + [sym_rune_literal] = ACTIONS(3901), + [anon_sym_AT] = ACTIONS(3901), + [anon_sym_shared] = ACTIONS(3901), + [anon_sym_map_LBRACK] = ACTIONS(3901), + [anon_sym_chan] = ACTIONS(3901), + [anon_sym_thread] = ACTIONS(3901), + [anon_sym_atomic] = ACTIONS(3901), + [anon_sym_assert] = ACTIONS(3901), + [anon_sym_defer] = ACTIONS(3901), + [anon_sym_goto] = ACTIONS(3901), + [anon_sym_break] = ACTIONS(3901), + [anon_sym_continue] = ACTIONS(3901), + [anon_sym_return] = ACTIONS(3901), + [anon_sym_DOLLARfor] = ACTIONS(3901), + [anon_sym_for] = ACTIONS(3901), + [anon_sym_POUND] = ACTIONS(3901), + [anon_sym_asm] = ACTIONS(3901), + [anon_sym_AT_LBRACK] = ACTIONS(3901), + [sym___double_quote] = ACTIONS(3901), + [sym___single_quote] = ACTIONS(3901), + [sym___c_double_quote] = ACTIONS(3901), + [sym___c_single_quote] = ACTIONS(3901), + [sym___r_double_quote] = ACTIONS(3901), + [sym___r_single_quote] = ACTIONS(3901), }, [1484] = { - [sym_block] = STATE(1515), - [ts_builtin_sym_end] = ACTIONS(3901), - [sym_identifier] = ACTIONS(3903), - [anon_sym_LF] = ACTIONS(3903), - [anon_sym_CR] = ACTIONS(3903), - [anon_sym_CR_LF] = ACTIONS(3903), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3903), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3903), - [anon_sym_LPAREN] = ACTIONS(3903), - [anon_sym___global] = ACTIONS(3903), - [anon_sym_type] = ACTIONS(3903), - [anon_sym_fn] = ACTIONS(3903), - [anon_sym_PLUS] = ACTIONS(3903), - [anon_sym_DASH] = ACTIONS(3903), - [anon_sym_STAR] = ACTIONS(3903), - [anon_sym_struct] = ACTIONS(3903), - [anon_sym_union] = ACTIONS(3903), - [anon_sym_pub] = ACTIONS(3903), - [anon_sym_mut] = ACTIONS(3903), - [anon_sym_enum] = ACTIONS(3903), - [anon_sym_interface] = ACTIONS(3903), - [anon_sym_QMARK] = ACTIONS(3903), - [anon_sym_BANG] = ACTIONS(3903), - [anon_sym_go] = ACTIONS(3903), - [anon_sym_spawn] = ACTIONS(3903), - [anon_sym_json_DOTdecode] = ACTIONS(3903), - [anon_sym_LBRACK2] = ACTIONS(3903), - [anon_sym_TILDE] = ACTIONS(3903), - [anon_sym_CARET] = ACTIONS(3903), - [anon_sym_AMP] = ACTIONS(3903), - [anon_sym_LT_DASH] = ACTIONS(3903), - [sym_none] = ACTIONS(3903), - [sym_true] = ACTIONS(3903), - [sym_false] = ACTIONS(3903), - [sym_nil] = ACTIONS(3903), - [anon_sym_if] = ACTIONS(3903), - [anon_sym_DOLLARif] = ACTIONS(3903), - [anon_sym_match] = ACTIONS(3903), - [anon_sym_select] = ACTIONS(3903), - [anon_sym_lock] = ACTIONS(3903), - [anon_sym_rlock] = ACTIONS(3903), - [anon_sym_unsafe] = ACTIONS(3903), - [anon_sym_sql] = ACTIONS(3903), - [sym_int_literal] = ACTIONS(3903), - [sym_float_literal] = ACTIONS(3903), - [sym_rune_literal] = ACTIONS(3903), - [anon_sym_AT] = ACTIONS(3903), - [anon_sym_shared] = ACTIONS(3903), - [anon_sym_map_LBRACK] = ACTIONS(3903), - [anon_sym_chan] = ACTIONS(3903), - [anon_sym_thread] = ACTIONS(3903), - [anon_sym_atomic] = ACTIONS(3903), - [anon_sym_assert] = ACTIONS(3903), - [anon_sym_defer] = ACTIONS(3903), - [anon_sym_goto] = ACTIONS(3903), - [anon_sym_break] = ACTIONS(3903), - [anon_sym_continue] = ACTIONS(3903), - [anon_sym_return] = ACTIONS(3903), - [anon_sym_DOLLARfor] = ACTIONS(3903), - [anon_sym_for] = ACTIONS(3903), - [anon_sym_POUND] = ACTIONS(3903), - [anon_sym_asm] = ACTIONS(3903), - [anon_sym_AT_LBRACK] = ACTIONS(3903), - [sym___double_quote] = ACTIONS(3903), - [sym___single_quote] = ACTIONS(3903), - [sym___c_double_quote] = ACTIONS(3903), - [sym___c_single_quote] = ACTIONS(3903), - [sym___r_double_quote] = ACTIONS(3903), - [sym___r_single_quote] = ACTIONS(3903), + [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), + [sym_comment] = ACTIONS(493), + [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_PIPE] = 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_AT] = 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), + [sym___double_quote] = ACTIONS(3038), + [sym___single_quote] = ACTIONS(3038), + [sym___c_double_quote] = ACTIONS(3038), + [sym___c_single_quote] = ACTIONS(3038), + [sym___r_double_quote] = ACTIONS(3038), + [sym___r_single_quote] = ACTIONS(3038), }, [1485] = { - [sym_block] = STATE(1556), - [ts_builtin_sym_end] = ACTIONS(3905), - [sym_identifier] = ACTIONS(3907), - [anon_sym_LF] = ACTIONS(3907), - [anon_sym_CR] = ACTIONS(3907), - [anon_sym_CR_LF] = ACTIONS(3907), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3907), - [anon_sym_LPAREN] = ACTIONS(3907), - [anon_sym___global] = ACTIONS(3907), - [anon_sym_type] = ACTIONS(3907), - [anon_sym_fn] = ACTIONS(3907), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3907), - [anon_sym_struct] = ACTIONS(3907), - [anon_sym_union] = ACTIONS(3907), - [anon_sym_pub] = ACTIONS(3907), - [anon_sym_mut] = ACTIONS(3907), - [anon_sym_enum] = ACTIONS(3907), - [anon_sym_interface] = ACTIONS(3907), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_go] = ACTIONS(3907), - [anon_sym_spawn] = ACTIONS(3907), - [anon_sym_json_DOTdecode] = ACTIONS(3907), - [anon_sym_LBRACK2] = ACTIONS(3907), - [anon_sym_TILDE] = ACTIONS(3907), - [anon_sym_CARET] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_DASH] = ACTIONS(3907), - [sym_none] = ACTIONS(3907), - [sym_true] = ACTIONS(3907), - [sym_false] = ACTIONS(3907), - [sym_nil] = ACTIONS(3907), - [anon_sym_if] = ACTIONS(3907), - [anon_sym_DOLLARif] = ACTIONS(3907), - [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(3907), - [sym_rune_literal] = ACTIONS(3907), - [anon_sym_AT] = ACTIONS(3907), - [anon_sym_shared] = ACTIONS(3907), - [anon_sym_map_LBRACK] = ACTIONS(3907), - [anon_sym_chan] = ACTIONS(3907), - [anon_sym_thread] = ACTIONS(3907), - [anon_sym_atomic] = ACTIONS(3907), - [anon_sym_assert] = ACTIONS(3907), - [anon_sym_defer] = ACTIONS(3907), - [anon_sym_goto] = ACTIONS(3907), - [anon_sym_break] = ACTIONS(3907), - [anon_sym_continue] = ACTIONS(3907), - [anon_sym_return] = ACTIONS(3907), - [anon_sym_DOLLARfor] = ACTIONS(3907), - [anon_sym_for] = ACTIONS(3907), - [anon_sym_POUND] = ACTIONS(3907), - [anon_sym_asm] = ACTIONS(3907), - [anon_sym_AT_LBRACK] = ACTIONS(3907), - [sym___double_quote] = ACTIONS(3907), - [sym___single_quote] = ACTIONS(3907), - [sym___c_double_quote] = ACTIONS(3907), - [sym___c_single_quote] = ACTIONS(3907), - [sym___r_double_quote] = ACTIONS(3907), - [sym___r_single_quote] = ACTIONS(3907), + [ts_builtin_sym_end] = ACTIONS(3000), + [sym_identifier] = ACTIONS(3002), + [anon_sym_LF] = ACTIONS(3002), + [anon_sym_CR] = ACTIONS(3002), + [anon_sym_CR_LF] = ACTIONS(3002), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3002), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_const] = ACTIONS(3002), + [anon_sym_LPAREN] = ACTIONS(3002), + [anon_sym___global] = ACTIONS(3002), + [anon_sym_type] = ACTIONS(3002), + [anon_sym_PIPE] = ACTIONS(3002), + [anon_sym_fn] = ACTIONS(3002), + [anon_sym_PLUS] = ACTIONS(3002), + [anon_sym_DASH] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(3002), + [anon_sym_struct] = ACTIONS(3002), + [anon_sym_union] = ACTIONS(3002), + [anon_sym_pub] = ACTIONS(3002), + [anon_sym_mut] = ACTIONS(3002), + [anon_sym_enum] = ACTIONS(3002), + [anon_sym_interface] = ACTIONS(3002), + [anon_sym_QMARK] = ACTIONS(3002), + [anon_sym_BANG] = ACTIONS(3002), + [anon_sym_go] = ACTIONS(3002), + [anon_sym_spawn] = ACTIONS(3002), + [anon_sym_json_DOTdecode] = ACTIONS(3002), + [anon_sym_LBRACK2] = ACTIONS(3002), + [anon_sym_TILDE] = ACTIONS(3002), + [anon_sym_CARET] = ACTIONS(3002), + [anon_sym_AMP] = ACTIONS(3002), + [anon_sym_LT_DASH] = ACTIONS(3002), + [sym_none] = ACTIONS(3002), + [sym_true] = ACTIONS(3002), + [sym_false] = ACTIONS(3002), + [sym_nil] = ACTIONS(3002), + [anon_sym_if] = ACTIONS(3002), + [anon_sym_DOLLARif] = ACTIONS(3002), + [anon_sym_match] = ACTIONS(3002), + [anon_sym_select] = ACTIONS(3002), + [anon_sym_lock] = ACTIONS(3002), + [anon_sym_rlock] = ACTIONS(3002), + [anon_sym_unsafe] = ACTIONS(3002), + [anon_sym_sql] = ACTIONS(3002), + [sym_int_literal] = ACTIONS(3002), + [sym_float_literal] = ACTIONS(3002), + [sym_rune_literal] = ACTIONS(3002), + [anon_sym_AT] = ACTIONS(3002), + [anon_sym_shared] = ACTIONS(3002), + [anon_sym_map_LBRACK] = ACTIONS(3002), + [anon_sym_chan] = ACTIONS(3002), + [anon_sym_thread] = ACTIONS(3002), + [anon_sym_atomic] = ACTIONS(3002), + [anon_sym_assert] = ACTIONS(3002), + [anon_sym_defer] = ACTIONS(3002), + [anon_sym_goto] = ACTIONS(3002), + [anon_sym_break] = ACTIONS(3002), + [anon_sym_continue] = ACTIONS(3002), + [anon_sym_return] = ACTIONS(3002), + [anon_sym_DOLLARfor] = ACTIONS(3002), + [anon_sym_for] = ACTIONS(3002), + [anon_sym_POUND] = ACTIONS(3002), + [anon_sym_asm] = ACTIONS(3002), + [anon_sym_AT_LBRACK] = ACTIONS(3002), + [sym___double_quote] = ACTIONS(3002), + [sym___single_quote] = ACTIONS(3002), + [sym___c_double_quote] = ACTIONS(3002), + [sym___c_single_quote] = ACTIONS(3002), + [sym___r_double_quote] = ACTIONS(3002), + [sym___r_single_quote] = ACTIONS(3002), }, [1486] = { - [ts_builtin_sym_end] = ACTIONS(3909), - [sym_identifier] = ACTIONS(3911), - [anon_sym_LF] = ACTIONS(3911), - [anon_sym_CR] = ACTIONS(3911), - [anon_sym_CR_LF] = ACTIONS(3911), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3911), - [anon_sym_LBRACE] = ACTIONS(3911), - [anon_sym_const] = ACTIONS(3911), - [anon_sym_LPAREN] = ACTIONS(3911), - [anon_sym___global] = ACTIONS(3911), - [anon_sym_type] = ACTIONS(3911), - [anon_sym_fn] = ACTIONS(3911), - [anon_sym_PLUS] = ACTIONS(3911), - [anon_sym_DASH] = ACTIONS(3911), - [anon_sym_STAR] = ACTIONS(3911), - [anon_sym_struct] = ACTIONS(3911), - [anon_sym_union] = ACTIONS(3911), - [anon_sym_pub] = ACTIONS(3911), - [anon_sym_mut] = ACTIONS(3911), - [anon_sym_enum] = ACTIONS(3911), - [anon_sym_interface] = ACTIONS(3911), - [anon_sym_QMARK] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3911), - [anon_sym_go] = ACTIONS(3911), - [anon_sym_spawn] = ACTIONS(3911), - [anon_sym_json_DOTdecode] = ACTIONS(3911), - [anon_sym_LBRACK2] = ACTIONS(3911), - [anon_sym_TILDE] = ACTIONS(3911), - [anon_sym_CARET] = ACTIONS(3911), - [anon_sym_AMP] = ACTIONS(3911), - [anon_sym_LT_DASH] = ACTIONS(3911), - [sym_none] = ACTIONS(3911), - [sym_true] = ACTIONS(3911), - [sym_false] = ACTIONS(3911), - [sym_nil] = ACTIONS(3911), - [anon_sym_if] = ACTIONS(3911), - [anon_sym_DOLLARif] = ACTIONS(3911), - [anon_sym_match] = ACTIONS(3911), - [anon_sym_select] = ACTIONS(3911), - [anon_sym_lock] = ACTIONS(3911), - [anon_sym_rlock] = ACTIONS(3911), - [anon_sym_unsafe] = ACTIONS(3911), - [anon_sym_sql] = ACTIONS(3911), - [sym_int_literal] = ACTIONS(3911), - [sym_float_literal] = ACTIONS(3911), - [sym_rune_literal] = ACTIONS(3911), - [anon_sym_AT] = ACTIONS(3911), - [anon_sym_shared] = ACTIONS(3911), - [anon_sym_map_LBRACK] = ACTIONS(3911), - [anon_sym_chan] = ACTIONS(3911), - [anon_sym_thread] = ACTIONS(3911), - [anon_sym_atomic] = ACTIONS(3911), - [anon_sym_assert] = ACTIONS(3911), - [anon_sym_defer] = ACTIONS(3911), - [anon_sym_goto] = ACTIONS(3911), - [anon_sym_break] = ACTIONS(3911), - [anon_sym_continue] = ACTIONS(3911), - [anon_sym_return] = ACTIONS(3911), - [anon_sym_DOLLARfor] = ACTIONS(3911), - [anon_sym_for] = ACTIONS(3911), - [anon_sym_POUND] = ACTIONS(3911), - [anon_sym_asm] = ACTIONS(3911), - [anon_sym_AT_LBRACK] = ACTIONS(3911), - [sym___double_quote] = ACTIONS(3911), - [sym___single_quote] = ACTIONS(3911), - [sym___c_double_quote] = ACTIONS(3911), - [sym___c_single_quote] = ACTIONS(3911), - [sym___r_double_quote] = ACTIONS(3911), - [sym___r_single_quote] = ACTIONS(3911), + [sym_block] = STATE(1562), + [ts_builtin_sym_end] = ACTIONS(3903), + [sym_identifier] = ACTIONS(3905), + [anon_sym_LF] = ACTIONS(3905), + [anon_sym_CR] = ACTIONS(3905), + [anon_sym_CR_LF] = ACTIONS(3905), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3905), + [anon_sym_LBRACE] = ACTIONS(3805), + [anon_sym_const] = ACTIONS(3905), + [anon_sym_LPAREN] = ACTIONS(3905), + [anon_sym___global] = ACTIONS(3905), + [anon_sym_type] = ACTIONS(3905), + [anon_sym_fn] = ACTIONS(3905), + [anon_sym_PLUS] = ACTIONS(3905), + [anon_sym_DASH] = ACTIONS(3905), + [anon_sym_STAR] = ACTIONS(3905), + [anon_sym_struct] = ACTIONS(3905), + [anon_sym_union] = ACTIONS(3905), + [anon_sym_pub] = ACTIONS(3905), + [anon_sym_mut] = ACTIONS(3905), + [anon_sym_enum] = ACTIONS(3905), + [anon_sym_interface] = ACTIONS(3905), + [anon_sym_QMARK] = ACTIONS(3905), + [anon_sym_BANG] = ACTIONS(3905), + [anon_sym_go] = ACTIONS(3905), + [anon_sym_spawn] = ACTIONS(3905), + [anon_sym_json_DOTdecode] = ACTIONS(3905), + [anon_sym_LBRACK2] = ACTIONS(3905), + [anon_sym_TILDE] = ACTIONS(3905), + [anon_sym_CARET] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3905), + [anon_sym_LT_DASH] = ACTIONS(3905), + [sym_none] = ACTIONS(3905), + [sym_true] = ACTIONS(3905), + [sym_false] = ACTIONS(3905), + [sym_nil] = ACTIONS(3905), + [anon_sym_if] = ACTIONS(3905), + [anon_sym_DOLLARif] = ACTIONS(3905), + [anon_sym_match] = ACTIONS(3905), + [anon_sym_select] = ACTIONS(3905), + [anon_sym_lock] = ACTIONS(3905), + [anon_sym_rlock] = ACTIONS(3905), + [anon_sym_unsafe] = ACTIONS(3905), + [anon_sym_sql] = ACTIONS(3905), + [sym_int_literal] = ACTIONS(3905), + [sym_float_literal] = ACTIONS(3905), + [sym_rune_literal] = ACTIONS(3905), + [anon_sym_AT] = ACTIONS(3905), + [anon_sym_shared] = ACTIONS(3905), + [anon_sym_map_LBRACK] = ACTIONS(3905), + [anon_sym_chan] = ACTIONS(3905), + [anon_sym_thread] = ACTIONS(3905), + [anon_sym_atomic] = ACTIONS(3905), + [anon_sym_assert] = ACTIONS(3905), + [anon_sym_defer] = ACTIONS(3905), + [anon_sym_goto] = ACTIONS(3905), + [anon_sym_break] = ACTIONS(3905), + [anon_sym_continue] = ACTIONS(3905), + [anon_sym_return] = ACTIONS(3905), + [anon_sym_DOLLARfor] = ACTIONS(3905), + [anon_sym_for] = ACTIONS(3905), + [anon_sym_POUND] = ACTIONS(3905), + [anon_sym_asm] = ACTIONS(3905), + [anon_sym_AT_LBRACK] = ACTIONS(3905), + [sym___double_quote] = ACTIONS(3905), + [sym___single_quote] = ACTIONS(3905), + [sym___c_double_quote] = ACTIONS(3905), + [sym___c_single_quote] = ACTIONS(3905), + [sym___r_double_quote] = ACTIONS(3905), + [sym___r_single_quote] = ACTIONS(3905), }, [1487] = { - [ts_builtin_sym_end] = ACTIONS(3913), - [sym_identifier] = ACTIONS(3915), - [anon_sym_LF] = ACTIONS(3915), - [anon_sym_CR] = ACTIONS(3915), - [anon_sym_CR_LF] = ACTIONS(3915), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_LBRACE] = ACTIONS(3915), - [anon_sym_const] = ACTIONS(3915), - [anon_sym_LPAREN] = ACTIONS(3915), - [anon_sym___global] = ACTIONS(3915), - [anon_sym_type] = ACTIONS(3915), - [anon_sym_fn] = ACTIONS(3915), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3915), - [anon_sym_struct] = ACTIONS(3915), - [anon_sym_union] = ACTIONS(3915), - [anon_sym_pub] = ACTIONS(3915), - [anon_sym_mut] = ACTIONS(3915), - [anon_sym_enum] = ACTIONS(3915), - [anon_sym_interface] = ACTIONS(3915), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_go] = ACTIONS(3915), - [anon_sym_spawn] = ACTIONS(3915), - [anon_sym_json_DOTdecode] = ACTIONS(3915), - [anon_sym_LBRACK2] = ACTIONS(3915), - [anon_sym_TILDE] = ACTIONS(3915), - [anon_sym_CARET] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_DASH] = ACTIONS(3915), - [sym_none] = ACTIONS(3915), - [sym_true] = ACTIONS(3915), - [sym_false] = ACTIONS(3915), - [sym_nil] = ACTIONS(3915), - [anon_sym_if] = ACTIONS(3915), - [anon_sym_DOLLARif] = ACTIONS(3915), - [anon_sym_match] = ACTIONS(3915), - [anon_sym_select] = ACTIONS(3915), - [anon_sym_lock] = ACTIONS(3915), - [anon_sym_rlock] = ACTIONS(3915), - [anon_sym_unsafe] = ACTIONS(3915), - [anon_sym_sql] = ACTIONS(3915), - [sym_int_literal] = ACTIONS(3915), - [sym_float_literal] = ACTIONS(3915), - [sym_rune_literal] = ACTIONS(3915), - [anon_sym_AT] = ACTIONS(3915), - [anon_sym_shared] = ACTIONS(3915), - [anon_sym_map_LBRACK] = ACTIONS(3915), - [anon_sym_chan] = ACTIONS(3915), - [anon_sym_thread] = ACTIONS(3915), - [anon_sym_atomic] = ACTIONS(3915), - [anon_sym_assert] = ACTIONS(3915), - [anon_sym_defer] = ACTIONS(3915), - [anon_sym_goto] = ACTIONS(3915), - [anon_sym_break] = ACTIONS(3915), - [anon_sym_continue] = ACTIONS(3915), - [anon_sym_return] = ACTIONS(3915), - [anon_sym_DOLLARfor] = ACTIONS(3915), - [anon_sym_for] = ACTIONS(3915), - [anon_sym_POUND] = ACTIONS(3915), - [anon_sym_asm] = ACTIONS(3915), - [anon_sym_AT_LBRACK] = ACTIONS(3915), - [sym___double_quote] = ACTIONS(3915), - [sym___single_quote] = ACTIONS(3915), - [sym___c_double_quote] = ACTIONS(3915), - [sym___c_single_quote] = ACTIONS(3915), - [sym___r_double_quote] = ACTIONS(3915), - [sym___r_single_quote] = ACTIONS(3915), + [sym_block] = STATE(1570), + [ts_builtin_sym_end] = ACTIONS(3907), + [sym_identifier] = ACTIONS(3909), + [anon_sym_LF] = ACTIONS(3909), + [anon_sym_CR] = ACTIONS(3909), + [anon_sym_CR_LF] = ACTIONS(3909), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3909), + [anon_sym_LBRACE] = ACTIONS(3805), + [anon_sym_const] = ACTIONS(3909), + [anon_sym_LPAREN] = ACTIONS(3909), + [anon_sym___global] = ACTIONS(3909), + [anon_sym_type] = ACTIONS(3909), + [anon_sym_fn] = ACTIONS(3909), + [anon_sym_PLUS] = ACTIONS(3909), + [anon_sym_DASH] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(3909), + [anon_sym_struct] = ACTIONS(3909), + [anon_sym_union] = ACTIONS(3909), + [anon_sym_pub] = ACTIONS(3909), + [anon_sym_mut] = ACTIONS(3909), + [anon_sym_enum] = ACTIONS(3909), + [anon_sym_interface] = ACTIONS(3909), + [anon_sym_QMARK] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3909), + [anon_sym_go] = ACTIONS(3909), + [anon_sym_spawn] = ACTIONS(3909), + [anon_sym_json_DOTdecode] = ACTIONS(3909), + [anon_sym_LBRACK2] = ACTIONS(3909), + [anon_sym_TILDE] = ACTIONS(3909), + [anon_sym_CARET] = ACTIONS(3909), + [anon_sym_AMP] = ACTIONS(3909), + [anon_sym_LT_DASH] = ACTIONS(3909), + [sym_none] = ACTIONS(3909), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [sym_nil] = ACTIONS(3909), + [anon_sym_if] = ACTIONS(3909), + [anon_sym_DOLLARif] = ACTIONS(3909), + [anon_sym_match] = ACTIONS(3909), + [anon_sym_select] = ACTIONS(3909), + [anon_sym_lock] = ACTIONS(3909), + [anon_sym_rlock] = ACTIONS(3909), + [anon_sym_unsafe] = ACTIONS(3909), + [anon_sym_sql] = ACTIONS(3909), + [sym_int_literal] = ACTIONS(3909), + [sym_float_literal] = ACTIONS(3909), + [sym_rune_literal] = ACTIONS(3909), + [anon_sym_AT] = ACTIONS(3909), + [anon_sym_shared] = ACTIONS(3909), + [anon_sym_map_LBRACK] = ACTIONS(3909), + [anon_sym_chan] = ACTIONS(3909), + [anon_sym_thread] = ACTIONS(3909), + [anon_sym_atomic] = ACTIONS(3909), + [anon_sym_assert] = ACTIONS(3909), + [anon_sym_defer] = ACTIONS(3909), + [anon_sym_goto] = ACTIONS(3909), + [anon_sym_break] = ACTIONS(3909), + [anon_sym_continue] = ACTIONS(3909), + [anon_sym_return] = ACTIONS(3909), + [anon_sym_DOLLARfor] = ACTIONS(3909), + [anon_sym_for] = ACTIONS(3909), + [anon_sym_POUND] = ACTIONS(3909), + [anon_sym_asm] = ACTIONS(3909), + [anon_sym_AT_LBRACK] = ACTIONS(3909), + [sym___double_quote] = ACTIONS(3909), + [sym___single_quote] = ACTIONS(3909), + [sym___c_double_quote] = ACTIONS(3909), + [sym___c_single_quote] = ACTIONS(3909), + [sym___r_double_quote] = ACTIONS(3909), + [sym___r_single_quote] = ACTIONS(3909), }, [1488] = { - [ts_builtin_sym_end] = ACTIONS(3917), - [sym_identifier] = ACTIONS(3919), - [anon_sym_LF] = ACTIONS(3919), - [anon_sym_CR] = ACTIONS(3919), - [anon_sym_CR_LF] = ACTIONS(3919), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3919), - [anon_sym_LBRACE] = ACTIONS(3919), - [anon_sym_const] = ACTIONS(3919), - [anon_sym_LPAREN] = ACTIONS(3919), - [anon_sym___global] = ACTIONS(3919), - [anon_sym_type] = ACTIONS(3919), - [anon_sym_fn] = ACTIONS(3919), - [anon_sym_PLUS] = ACTIONS(3919), - [anon_sym_DASH] = ACTIONS(3919), - [anon_sym_STAR] = ACTIONS(3919), - [anon_sym_struct] = ACTIONS(3919), - [anon_sym_union] = ACTIONS(3919), - [anon_sym_pub] = ACTIONS(3919), - [anon_sym_mut] = ACTIONS(3919), - [anon_sym_enum] = ACTIONS(3919), - [anon_sym_interface] = ACTIONS(3919), - [anon_sym_QMARK] = ACTIONS(3919), - [anon_sym_BANG] = ACTIONS(3919), - [anon_sym_go] = ACTIONS(3919), - [anon_sym_spawn] = ACTIONS(3919), - [anon_sym_json_DOTdecode] = ACTIONS(3919), - [anon_sym_LBRACK2] = ACTIONS(3919), - [anon_sym_TILDE] = ACTIONS(3919), - [anon_sym_CARET] = ACTIONS(3919), - [anon_sym_AMP] = ACTIONS(3919), - [anon_sym_LT_DASH] = ACTIONS(3919), - [sym_none] = ACTIONS(3919), - [sym_true] = ACTIONS(3919), - [sym_false] = ACTIONS(3919), - [sym_nil] = ACTIONS(3919), - [anon_sym_if] = ACTIONS(3919), - [anon_sym_DOLLARif] = ACTIONS(3919), - [anon_sym_match] = ACTIONS(3919), - [anon_sym_select] = ACTIONS(3919), - [anon_sym_lock] = ACTIONS(3919), - [anon_sym_rlock] = ACTIONS(3919), - [anon_sym_unsafe] = ACTIONS(3919), - [anon_sym_sql] = ACTIONS(3919), - [sym_int_literal] = ACTIONS(3919), - [sym_float_literal] = ACTIONS(3919), - [sym_rune_literal] = ACTIONS(3919), - [anon_sym_AT] = ACTIONS(3919), - [anon_sym_shared] = ACTIONS(3919), - [anon_sym_map_LBRACK] = ACTIONS(3919), - [anon_sym_chan] = ACTIONS(3919), - [anon_sym_thread] = ACTIONS(3919), - [anon_sym_atomic] = ACTIONS(3919), - [anon_sym_assert] = ACTIONS(3919), - [anon_sym_defer] = ACTIONS(3919), - [anon_sym_goto] = ACTIONS(3919), - [anon_sym_break] = ACTIONS(3919), - [anon_sym_continue] = ACTIONS(3919), - [anon_sym_return] = ACTIONS(3919), - [anon_sym_DOLLARfor] = ACTIONS(3919), - [anon_sym_for] = ACTIONS(3919), - [anon_sym_POUND] = ACTIONS(3919), - [anon_sym_asm] = ACTIONS(3919), - [anon_sym_AT_LBRACK] = ACTIONS(3919), - [sym___double_quote] = ACTIONS(3919), - [sym___single_quote] = ACTIONS(3919), - [sym___c_double_quote] = ACTIONS(3919), - [sym___c_single_quote] = ACTIONS(3919), - [sym___r_double_quote] = ACTIONS(3919), - [sym___r_single_quote] = ACTIONS(3919), + [ts_builtin_sym_end] = ACTIONS(2804), + [sym_identifier] = ACTIONS(2806), + [anon_sym_LF] = ACTIONS(2806), + [anon_sym_CR] = ACTIONS(2806), + [anon_sym_CR_LF] = ACTIONS(2806), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2806), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_const] = ACTIONS(2806), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym___global] = ACTIONS(2806), + [anon_sym_type] = ACTIONS(2806), + [anon_sym_PIPE] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2806), + [anon_sym_PLUS] = ACTIONS(2806), + [anon_sym_DASH] = ACTIONS(2806), + [anon_sym_STAR] = ACTIONS(2806), + [anon_sym_struct] = ACTIONS(2806), + [anon_sym_union] = ACTIONS(2806), + [anon_sym_pub] = ACTIONS(2806), + [anon_sym_mut] = ACTIONS(2806), + [anon_sym_enum] = ACTIONS(2806), + [anon_sym_interface] = ACTIONS(2806), + [anon_sym_QMARK] = ACTIONS(2806), + [anon_sym_BANG] = ACTIONS(2806), + [anon_sym_go] = ACTIONS(2806), + [anon_sym_spawn] = ACTIONS(2806), + [anon_sym_json_DOTdecode] = ACTIONS(2806), + [anon_sym_LBRACK2] = ACTIONS(2806), + [anon_sym_TILDE] = ACTIONS(2806), + [anon_sym_CARET] = ACTIONS(2806), + [anon_sym_AMP] = ACTIONS(2806), + [anon_sym_LT_DASH] = ACTIONS(2806), + [sym_none] = ACTIONS(2806), + [sym_true] = ACTIONS(2806), + [sym_false] = ACTIONS(2806), + [sym_nil] = ACTIONS(2806), + [anon_sym_if] = ACTIONS(2806), + [anon_sym_DOLLARif] = ACTIONS(2806), + [anon_sym_match] = ACTIONS(2806), + [anon_sym_select] = ACTIONS(2806), + [anon_sym_lock] = ACTIONS(2806), + [anon_sym_rlock] = ACTIONS(2806), + [anon_sym_unsafe] = ACTIONS(2806), + [anon_sym_sql] = ACTIONS(2806), + [sym_int_literal] = ACTIONS(2806), + [sym_float_literal] = ACTIONS(2806), + [sym_rune_literal] = ACTIONS(2806), + [anon_sym_AT] = ACTIONS(2806), + [anon_sym_shared] = ACTIONS(2806), + [anon_sym_map_LBRACK] = ACTIONS(2806), + [anon_sym_chan] = ACTIONS(2806), + [anon_sym_thread] = ACTIONS(2806), + [anon_sym_atomic] = ACTIONS(2806), + [anon_sym_assert] = ACTIONS(2806), + [anon_sym_defer] = ACTIONS(2806), + [anon_sym_goto] = ACTIONS(2806), + [anon_sym_break] = ACTIONS(2806), + [anon_sym_continue] = ACTIONS(2806), + [anon_sym_return] = ACTIONS(2806), + [anon_sym_DOLLARfor] = ACTIONS(2806), + [anon_sym_for] = ACTIONS(2806), + [anon_sym_POUND] = ACTIONS(2806), + [anon_sym_asm] = ACTIONS(2806), + [anon_sym_AT_LBRACK] = ACTIONS(2806), + [sym___double_quote] = ACTIONS(2806), + [sym___single_quote] = ACTIONS(2806), + [sym___c_double_quote] = ACTIONS(2806), + [sym___c_single_quote] = ACTIONS(2806), + [sym___r_double_quote] = ACTIONS(2806), + [sym___r_single_quote] = ACTIONS(2806), }, [1489] = { - [ts_builtin_sym_end] = ACTIONS(3921), - [sym_identifier] = ACTIONS(3923), - [anon_sym_LF] = ACTIONS(3923), - [anon_sym_CR] = ACTIONS(3923), - [anon_sym_CR_LF] = ACTIONS(3923), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3923), - [anon_sym_LBRACE] = ACTIONS(3923), - [anon_sym_const] = ACTIONS(3923), - [anon_sym_LPAREN] = ACTIONS(3923), - [anon_sym___global] = ACTIONS(3923), - [anon_sym_type] = ACTIONS(3923), - [anon_sym_fn] = ACTIONS(3923), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3923), - [anon_sym_struct] = ACTIONS(3923), - [anon_sym_union] = ACTIONS(3923), - [anon_sym_pub] = ACTIONS(3923), - [anon_sym_mut] = ACTIONS(3923), - [anon_sym_enum] = ACTIONS(3923), - [anon_sym_interface] = ACTIONS(3923), - [anon_sym_QMARK] = ACTIONS(3923), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_go] = ACTIONS(3923), - [anon_sym_spawn] = ACTIONS(3923), - [anon_sym_json_DOTdecode] = ACTIONS(3923), - [anon_sym_LBRACK2] = ACTIONS(3923), - [anon_sym_TILDE] = ACTIONS(3923), - [anon_sym_CARET] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_DASH] = ACTIONS(3923), - [sym_none] = ACTIONS(3923), - [sym_true] = ACTIONS(3923), - [sym_false] = ACTIONS(3923), - [sym_nil] = ACTIONS(3923), - [anon_sym_if] = ACTIONS(3923), - [anon_sym_DOLLARif] = ACTIONS(3923), - [anon_sym_match] = ACTIONS(3923), - [anon_sym_select] = ACTIONS(3923), - [anon_sym_lock] = ACTIONS(3923), - [anon_sym_rlock] = ACTIONS(3923), - [anon_sym_unsafe] = ACTIONS(3923), - [anon_sym_sql] = ACTIONS(3923), - [sym_int_literal] = ACTIONS(3923), - [sym_float_literal] = ACTIONS(3923), - [sym_rune_literal] = ACTIONS(3923), - [anon_sym_AT] = ACTIONS(3923), - [anon_sym_shared] = ACTIONS(3923), - [anon_sym_map_LBRACK] = ACTIONS(3923), - [anon_sym_chan] = ACTIONS(3923), - [anon_sym_thread] = ACTIONS(3923), - [anon_sym_atomic] = ACTIONS(3923), - [anon_sym_assert] = ACTIONS(3923), - [anon_sym_defer] = ACTIONS(3923), - [anon_sym_goto] = ACTIONS(3923), - [anon_sym_break] = ACTIONS(3923), - [anon_sym_continue] = ACTIONS(3923), - [anon_sym_return] = ACTIONS(3923), - [anon_sym_DOLLARfor] = ACTIONS(3923), - [anon_sym_for] = ACTIONS(3923), - [anon_sym_POUND] = ACTIONS(3923), - [anon_sym_asm] = ACTIONS(3923), - [anon_sym_AT_LBRACK] = ACTIONS(3923), - [sym___double_quote] = ACTIONS(3923), - [sym___single_quote] = ACTIONS(3923), - [sym___c_double_quote] = ACTIONS(3923), - [sym___c_single_quote] = ACTIONS(3923), - [sym___r_double_quote] = ACTIONS(3923), - [sym___r_single_quote] = ACTIONS(3923), + [sym_block] = STATE(1496), + [ts_builtin_sym_end] = ACTIONS(3911), + [sym_identifier] = ACTIONS(3913), + [anon_sym_LF] = ACTIONS(3913), + [anon_sym_CR] = ACTIONS(3913), + [anon_sym_CR_LF] = ACTIONS(3913), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3913), + [anon_sym_LBRACE] = ACTIONS(3805), + [anon_sym_const] = ACTIONS(3913), + [anon_sym_LPAREN] = ACTIONS(3913), + [anon_sym___global] = ACTIONS(3913), + [anon_sym_type] = ACTIONS(3913), + [anon_sym_fn] = ACTIONS(3913), + [anon_sym_PLUS] = ACTIONS(3913), + [anon_sym_DASH] = ACTIONS(3913), + [anon_sym_STAR] = ACTIONS(3913), + [anon_sym_struct] = ACTIONS(3913), + [anon_sym_union] = ACTIONS(3913), + [anon_sym_pub] = ACTIONS(3913), + [anon_sym_mut] = ACTIONS(3913), + [anon_sym_enum] = ACTIONS(3913), + [anon_sym_interface] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3913), + [anon_sym_BANG] = ACTIONS(3913), + [anon_sym_go] = ACTIONS(3913), + [anon_sym_spawn] = ACTIONS(3913), + [anon_sym_json_DOTdecode] = ACTIONS(3913), + [anon_sym_LBRACK2] = ACTIONS(3913), + [anon_sym_TILDE] = ACTIONS(3913), + [anon_sym_CARET] = ACTIONS(3913), + [anon_sym_AMP] = ACTIONS(3913), + [anon_sym_LT_DASH] = ACTIONS(3913), + [sym_none] = ACTIONS(3913), + [sym_true] = ACTIONS(3913), + [sym_false] = ACTIONS(3913), + [sym_nil] = ACTIONS(3913), + [anon_sym_if] = ACTIONS(3913), + [anon_sym_DOLLARif] = ACTIONS(3913), + [anon_sym_match] = ACTIONS(3913), + [anon_sym_select] = ACTIONS(3913), + [anon_sym_lock] = ACTIONS(3913), + [anon_sym_rlock] = ACTIONS(3913), + [anon_sym_unsafe] = ACTIONS(3913), + [anon_sym_sql] = ACTIONS(3913), + [sym_int_literal] = ACTIONS(3913), + [sym_float_literal] = ACTIONS(3913), + [sym_rune_literal] = ACTIONS(3913), + [anon_sym_AT] = ACTIONS(3913), + [anon_sym_shared] = ACTIONS(3913), + [anon_sym_map_LBRACK] = ACTIONS(3913), + [anon_sym_chan] = ACTIONS(3913), + [anon_sym_thread] = ACTIONS(3913), + [anon_sym_atomic] = ACTIONS(3913), + [anon_sym_assert] = ACTIONS(3913), + [anon_sym_defer] = ACTIONS(3913), + [anon_sym_goto] = ACTIONS(3913), + [anon_sym_break] = ACTIONS(3913), + [anon_sym_continue] = ACTIONS(3913), + [anon_sym_return] = ACTIONS(3913), + [anon_sym_DOLLARfor] = ACTIONS(3913), + [anon_sym_for] = ACTIONS(3913), + [anon_sym_POUND] = ACTIONS(3913), + [anon_sym_asm] = ACTIONS(3913), + [anon_sym_AT_LBRACK] = ACTIONS(3913), + [sym___double_quote] = ACTIONS(3913), + [sym___single_quote] = ACTIONS(3913), + [sym___c_double_quote] = ACTIONS(3913), + [sym___c_single_quote] = ACTIONS(3913), + [sym___r_double_quote] = ACTIONS(3913), + [sym___r_single_quote] = ACTIONS(3913), }, [1490] = { - [ts_builtin_sym_end] = ACTIONS(3925), - [sym_identifier] = ACTIONS(3927), - [anon_sym_LF] = ACTIONS(3927), - [anon_sym_CR] = ACTIONS(3927), - [anon_sym_CR_LF] = ACTIONS(3927), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3927), - [anon_sym_LBRACE] = ACTIONS(3927), - [anon_sym_const] = ACTIONS(3927), - [anon_sym_LPAREN] = ACTIONS(3927), - [anon_sym___global] = ACTIONS(3927), - [anon_sym_type] = ACTIONS(3927), - [anon_sym_fn] = ACTIONS(3927), - [anon_sym_PLUS] = ACTIONS(3927), - [anon_sym_DASH] = ACTIONS(3927), - [anon_sym_STAR] = ACTIONS(3927), - [anon_sym_struct] = ACTIONS(3927), - [anon_sym_union] = ACTIONS(3927), - [anon_sym_pub] = ACTIONS(3927), - [anon_sym_mut] = ACTIONS(3927), - [anon_sym_enum] = ACTIONS(3927), - [anon_sym_interface] = ACTIONS(3927), - [anon_sym_QMARK] = ACTIONS(3927), - [anon_sym_BANG] = ACTIONS(3927), - [anon_sym_go] = ACTIONS(3927), - [anon_sym_spawn] = ACTIONS(3927), - [anon_sym_json_DOTdecode] = ACTIONS(3927), - [anon_sym_LBRACK2] = ACTIONS(3927), - [anon_sym_TILDE] = ACTIONS(3927), - [anon_sym_CARET] = ACTIONS(3927), - [anon_sym_AMP] = ACTIONS(3927), - [anon_sym_LT_DASH] = ACTIONS(3927), - [sym_none] = ACTIONS(3927), - [sym_true] = ACTIONS(3927), - [sym_false] = ACTIONS(3927), - [sym_nil] = ACTIONS(3927), - [anon_sym_if] = ACTIONS(3927), - [anon_sym_DOLLARif] = ACTIONS(3927), - [anon_sym_match] = ACTIONS(3927), - [anon_sym_select] = ACTIONS(3927), - [anon_sym_lock] = ACTIONS(3927), - [anon_sym_rlock] = ACTIONS(3927), - [anon_sym_unsafe] = ACTIONS(3927), - [anon_sym_sql] = ACTIONS(3927), - [sym_int_literal] = ACTIONS(3927), - [sym_float_literal] = ACTIONS(3927), - [sym_rune_literal] = ACTIONS(3927), - [anon_sym_AT] = ACTIONS(3927), - [anon_sym_shared] = ACTIONS(3927), - [anon_sym_map_LBRACK] = ACTIONS(3927), - [anon_sym_chan] = ACTIONS(3927), - [anon_sym_thread] = ACTIONS(3927), - [anon_sym_atomic] = ACTIONS(3927), - [anon_sym_assert] = ACTIONS(3927), - [anon_sym_defer] = ACTIONS(3927), - [anon_sym_goto] = ACTIONS(3927), - [anon_sym_break] = ACTIONS(3927), - [anon_sym_continue] = ACTIONS(3927), - [anon_sym_return] = ACTIONS(3927), - [anon_sym_DOLLARfor] = ACTIONS(3927), - [anon_sym_for] = ACTIONS(3927), - [anon_sym_POUND] = ACTIONS(3927), - [anon_sym_asm] = ACTIONS(3927), - [anon_sym_AT_LBRACK] = ACTIONS(3927), - [sym___double_quote] = ACTIONS(3927), - [sym___single_quote] = ACTIONS(3927), - [sym___c_double_quote] = ACTIONS(3927), - [sym___c_single_quote] = ACTIONS(3927), - [sym___r_double_quote] = ACTIONS(3927), - [sym___r_single_quote] = ACTIONS(3927), + [ts_builtin_sym_end] = ACTIONS(3915), + [sym_identifier] = ACTIONS(3917), + [anon_sym_LF] = ACTIONS(3917), + [anon_sym_CR] = ACTIONS(3917), + [anon_sym_CR_LF] = ACTIONS(3917), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3917), + [anon_sym_LBRACE] = ACTIONS(3917), + [anon_sym_const] = ACTIONS(3917), + [anon_sym_LPAREN] = ACTIONS(3917), + [anon_sym___global] = ACTIONS(3917), + [anon_sym_type] = ACTIONS(3917), + [anon_sym_fn] = ACTIONS(3917), + [anon_sym_PLUS] = ACTIONS(3917), + [anon_sym_DASH] = ACTIONS(3917), + [anon_sym_STAR] = ACTIONS(3917), + [anon_sym_struct] = ACTIONS(3917), + [anon_sym_union] = ACTIONS(3917), + [anon_sym_pub] = ACTIONS(3917), + [anon_sym_mut] = ACTIONS(3917), + [anon_sym_enum] = ACTIONS(3917), + [anon_sym_interface] = ACTIONS(3917), + [anon_sym_QMARK] = ACTIONS(3917), + [anon_sym_BANG] = ACTIONS(3917), + [anon_sym_go] = ACTIONS(3917), + [anon_sym_spawn] = ACTIONS(3917), + [anon_sym_json_DOTdecode] = ACTIONS(3917), + [anon_sym_LBRACK2] = ACTIONS(3917), + [anon_sym_TILDE] = ACTIONS(3917), + [anon_sym_CARET] = ACTIONS(3917), + [anon_sym_AMP] = ACTIONS(3917), + [anon_sym_LT_DASH] = ACTIONS(3917), + [sym_none] = ACTIONS(3917), + [sym_true] = ACTIONS(3917), + [sym_false] = ACTIONS(3917), + [sym_nil] = ACTIONS(3917), + [anon_sym_if] = ACTIONS(3917), + [anon_sym_DOLLARif] = ACTIONS(3917), + [anon_sym_match] = ACTIONS(3917), + [anon_sym_select] = ACTIONS(3917), + [anon_sym_lock] = ACTIONS(3917), + [anon_sym_rlock] = ACTIONS(3917), + [anon_sym_unsafe] = ACTIONS(3917), + [anon_sym_sql] = ACTIONS(3917), + [sym_int_literal] = ACTIONS(3917), + [sym_float_literal] = ACTIONS(3917), + [sym_rune_literal] = ACTIONS(3917), + [anon_sym_AT] = ACTIONS(3917), + [anon_sym_shared] = ACTIONS(3917), + [anon_sym_map_LBRACK] = ACTIONS(3917), + [anon_sym_chan] = ACTIONS(3917), + [anon_sym_thread] = ACTIONS(3917), + [anon_sym_atomic] = ACTIONS(3917), + [anon_sym_assert] = ACTIONS(3917), + [anon_sym_defer] = ACTIONS(3917), + [anon_sym_goto] = ACTIONS(3917), + [anon_sym_break] = ACTIONS(3917), + [anon_sym_continue] = ACTIONS(3917), + [anon_sym_return] = ACTIONS(3917), + [anon_sym_DOLLARfor] = ACTIONS(3917), + [anon_sym_for] = ACTIONS(3917), + [anon_sym_POUND] = ACTIONS(3917), + [anon_sym_asm] = ACTIONS(3917), + [anon_sym_AT_LBRACK] = ACTIONS(3917), + [sym___double_quote] = ACTIONS(3917), + [sym___single_quote] = ACTIONS(3917), + [sym___c_double_quote] = ACTIONS(3917), + [sym___c_single_quote] = ACTIONS(3917), + [sym___r_double_quote] = ACTIONS(3917), + [sym___r_single_quote] = ACTIONS(3917), }, [1491] = { - [ts_builtin_sym_end] = ACTIONS(3929), - [sym_identifier] = ACTIONS(3931), - [anon_sym_LF] = ACTIONS(3931), - [anon_sym_CR] = ACTIONS(3931), - [anon_sym_CR_LF] = ACTIONS(3931), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3931), - [anon_sym_LBRACE] = ACTIONS(3931), - [anon_sym_const] = ACTIONS(3931), - [anon_sym_LPAREN] = ACTIONS(3931), - [anon_sym___global] = ACTIONS(3931), - [anon_sym_type] = ACTIONS(3931), - [anon_sym_fn] = ACTIONS(3931), - [anon_sym_PLUS] = ACTIONS(3931), - [anon_sym_DASH] = ACTIONS(3931), - [anon_sym_STAR] = ACTIONS(3931), - [anon_sym_struct] = ACTIONS(3931), - [anon_sym_union] = ACTIONS(3931), - [anon_sym_pub] = ACTIONS(3931), - [anon_sym_mut] = ACTIONS(3931), - [anon_sym_enum] = ACTIONS(3931), - [anon_sym_interface] = ACTIONS(3931), - [anon_sym_QMARK] = ACTIONS(3931), - [anon_sym_BANG] = ACTIONS(3931), - [anon_sym_go] = ACTIONS(3931), - [anon_sym_spawn] = ACTIONS(3931), - [anon_sym_json_DOTdecode] = ACTIONS(3931), - [anon_sym_LBRACK2] = ACTIONS(3931), - [anon_sym_TILDE] = ACTIONS(3931), - [anon_sym_CARET] = ACTIONS(3931), - [anon_sym_AMP] = ACTIONS(3931), - [anon_sym_LT_DASH] = ACTIONS(3931), - [sym_none] = ACTIONS(3931), - [sym_true] = ACTIONS(3931), - [sym_false] = ACTIONS(3931), - [sym_nil] = ACTIONS(3931), - [anon_sym_if] = ACTIONS(3931), - [anon_sym_DOLLARif] = ACTIONS(3931), - [anon_sym_match] = ACTIONS(3931), - [anon_sym_select] = ACTIONS(3931), - [anon_sym_lock] = ACTIONS(3931), - [anon_sym_rlock] = ACTIONS(3931), - [anon_sym_unsafe] = ACTIONS(3931), - [anon_sym_sql] = ACTIONS(3931), - [sym_int_literal] = ACTIONS(3931), - [sym_float_literal] = ACTIONS(3931), - [sym_rune_literal] = ACTIONS(3931), - [anon_sym_AT] = ACTIONS(3931), - [anon_sym_shared] = ACTIONS(3931), - [anon_sym_map_LBRACK] = ACTIONS(3931), - [anon_sym_chan] = ACTIONS(3931), - [anon_sym_thread] = ACTIONS(3931), - [anon_sym_atomic] = ACTIONS(3931), - [anon_sym_assert] = ACTIONS(3931), - [anon_sym_defer] = ACTIONS(3931), - [anon_sym_goto] = ACTIONS(3931), - [anon_sym_break] = ACTIONS(3931), - [anon_sym_continue] = ACTIONS(3931), - [anon_sym_return] = ACTIONS(3931), - [anon_sym_DOLLARfor] = ACTIONS(3931), - [anon_sym_for] = ACTIONS(3931), - [anon_sym_POUND] = ACTIONS(3931), - [anon_sym_asm] = ACTIONS(3931), - [anon_sym_AT_LBRACK] = ACTIONS(3931), - [sym___double_quote] = ACTIONS(3931), - [sym___single_quote] = ACTIONS(3931), - [sym___c_double_quote] = ACTIONS(3931), - [sym___c_single_quote] = ACTIONS(3931), - [sym___r_double_quote] = ACTIONS(3931), - [sym___r_single_quote] = ACTIONS(3931), + [ts_builtin_sym_end] = ACTIONS(3919), + [sym_identifier] = ACTIONS(3921), + [anon_sym_LF] = ACTIONS(3921), + [anon_sym_CR] = ACTIONS(3921), + [anon_sym_CR_LF] = ACTIONS(3921), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3921), + [anon_sym_LBRACE] = ACTIONS(3921), + [anon_sym_const] = ACTIONS(3921), + [anon_sym_LPAREN] = ACTIONS(3921), + [anon_sym___global] = ACTIONS(3921), + [anon_sym_type] = ACTIONS(3921), + [anon_sym_fn] = ACTIONS(3921), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_STAR] = ACTIONS(3921), + [anon_sym_struct] = ACTIONS(3921), + [anon_sym_union] = ACTIONS(3921), + [anon_sym_pub] = ACTIONS(3921), + [anon_sym_mut] = ACTIONS(3921), + [anon_sym_enum] = ACTIONS(3921), + [anon_sym_interface] = ACTIONS(3921), + [anon_sym_QMARK] = ACTIONS(3921), + [anon_sym_BANG] = ACTIONS(3921), + [anon_sym_go] = ACTIONS(3921), + [anon_sym_spawn] = ACTIONS(3921), + [anon_sym_json_DOTdecode] = ACTIONS(3921), + [anon_sym_LBRACK2] = ACTIONS(3921), + [anon_sym_TILDE] = ACTIONS(3921), + [anon_sym_CARET] = ACTIONS(3921), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_LT_DASH] = ACTIONS(3921), + [sym_none] = ACTIONS(3921), + [sym_true] = ACTIONS(3921), + [sym_false] = ACTIONS(3921), + [sym_nil] = ACTIONS(3921), + [anon_sym_if] = ACTIONS(3921), + [anon_sym_DOLLARif] = ACTIONS(3921), + [anon_sym_match] = ACTIONS(3921), + [anon_sym_select] = ACTIONS(3921), + [anon_sym_lock] = ACTIONS(3921), + [anon_sym_rlock] = ACTIONS(3921), + [anon_sym_unsafe] = ACTIONS(3921), + [anon_sym_sql] = ACTIONS(3921), + [sym_int_literal] = ACTIONS(3921), + [sym_float_literal] = ACTIONS(3921), + [sym_rune_literal] = ACTIONS(3921), + [anon_sym_AT] = ACTIONS(3921), + [anon_sym_shared] = ACTIONS(3921), + [anon_sym_map_LBRACK] = ACTIONS(3921), + [anon_sym_chan] = ACTIONS(3921), + [anon_sym_thread] = ACTIONS(3921), + [anon_sym_atomic] = ACTIONS(3921), + [anon_sym_assert] = ACTIONS(3921), + [anon_sym_defer] = ACTIONS(3921), + [anon_sym_goto] = ACTIONS(3921), + [anon_sym_break] = ACTIONS(3921), + [anon_sym_continue] = ACTIONS(3921), + [anon_sym_return] = ACTIONS(3921), + [anon_sym_DOLLARfor] = ACTIONS(3921), + [anon_sym_for] = ACTIONS(3921), + [anon_sym_POUND] = ACTIONS(3921), + [anon_sym_asm] = ACTIONS(3921), + [anon_sym_AT_LBRACK] = ACTIONS(3921), + [sym___double_quote] = ACTIONS(3921), + [sym___single_quote] = ACTIONS(3921), + [sym___c_double_quote] = ACTIONS(3921), + [sym___c_single_quote] = ACTIONS(3921), + [sym___r_double_quote] = ACTIONS(3921), + [sym___r_single_quote] = ACTIONS(3921), }, [1492] = { - [ts_builtin_sym_end] = ACTIONS(2826), - [sym_identifier] = ACTIONS(2828), - [anon_sym_LF] = ACTIONS(2828), - [anon_sym_CR] = ACTIONS(2828), - [anon_sym_CR_LF] = ACTIONS(2828), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2828), - [anon_sym_const] = ACTIONS(2828), - [anon_sym_LPAREN] = ACTIONS(2828), - [anon_sym___global] = ACTIONS(2828), - [anon_sym_type] = ACTIONS(2828), - [anon_sym_fn] = ACTIONS(2828), - [anon_sym_PLUS] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_struct] = ACTIONS(2828), - [anon_sym_union] = ACTIONS(2828), - [anon_sym_pub] = ACTIONS(2828), - [anon_sym_mut] = ACTIONS(2828), - [anon_sym_enum] = ACTIONS(2828), - [anon_sym_interface] = ACTIONS(2828), - [anon_sym_QMARK] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_go] = ACTIONS(2828), - [anon_sym_spawn] = ACTIONS(2828), - [anon_sym_json_DOTdecode] = ACTIONS(2828), - [anon_sym_LBRACK2] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_CARET] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2828), - [anon_sym_LT_DASH] = ACTIONS(2828), - [sym_none] = ACTIONS(2828), - [sym_true] = ACTIONS(2828), - [sym_false] = ACTIONS(2828), - [sym_nil] = ACTIONS(2828), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_DOLLARif] = ACTIONS(2828), - [anon_sym_match] = ACTIONS(2828), - [anon_sym_select] = ACTIONS(2828), - [anon_sym_lock] = ACTIONS(2828), - [anon_sym_rlock] = ACTIONS(2828), - [anon_sym_unsafe] = ACTIONS(2828), - [anon_sym_sql] = ACTIONS(2828), - [sym_int_literal] = ACTIONS(2828), - [sym_float_literal] = ACTIONS(2828), - [sym_rune_literal] = ACTIONS(2828), - [anon_sym_AT] = ACTIONS(2828), - [anon_sym_shared] = ACTIONS(2828), - [anon_sym_map_LBRACK] = ACTIONS(2828), - [anon_sym_chan] = ACTIONS(2828), - [anon_sym_thread] = ACTIONS(2828), - [anon_sym_atomic] = ACTIONS(2828), - [anon_sym_assert] = ACTIONS(2828), - [anon_sym_defer] = ACTIONS(2828), - [anon_sym_goto] = ACTIONS(2828), - [anon_sym_break] = ACTIONS(2828), - [anon_sym_continue] = ACTIONS(2828), - [anon_sym_return] = ACTIONS(2828), - [anon_sym_DOLLARfor] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2828), - [anon_sym_POUND] = ACTIONS(2828), - [anon_sym_asm] = ACTIONS(2828), - [anon_sym_AT_LBRACK] = ACTIONS(2828), - [sym___double_quote] = ACTIONS(2828), - [sym___single_quote] = ACTIONS(2828), - [sym___c_double_quote] = ACTIONS(2828), - [sym___c_single_quote] = ACTIONS(2828), - [sym___r_double_quote] = ACTIONS(2828), - [sym___r_single_quote] = ACTIONS(2828), + [ts_builtin_sym_end] = ACTIONS(3923), + [sym_identifier] = ACTIONS(3925), + [anon_sym_LF] = ACTIONS(3925), + [anon_sym_CR] = ACTIONS(3925), + [anon_sym_CR_LF] = ACTIONS(3925), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3925), + [anon_sym_LBRACE] = ACTIONS(3925), + [anon_sym_const] = ACTIONS(3925), + [anon_sym_LPAREN] = ACTIONS(3925), + [anon_sym___global] = ACTIONS(3925), + [anon_sym_type] = ACTIONS(3925), + [anon_sym_fn] = ACTIONS(3925), + [anon_sym_PLUS] = ACTIONS(3925), + [anon_sym_DASH] = ACTIONS(3925), + [anon_sym_STAR] = ACTIONS(3925), + [anon_sym_struct] = ACTIONS(3925), + [anon_sym_union] = ACTIONS(3925), + [anon_sym_pub] = ACTIONS(3925), + [anon_sym_mut] = ACTIONS(3925), + [anon_sym_enum] = ACTIONS(3925), + [anon_sym_interface] = ACTIONS(3925), + [anon_sym_QMARK] = ACTIONS(3925), + [anon_sym_BANG] = ACTIONS(3925), + [anon_sym_go] = ACTIONS(3925), + [anon_sym_spawn] = ACTIONS(3925), + [anon_sym_json_DOTdecode] = ACTIONS(3925), + [anon_sym_LBRACK2] = ACTIONS(3925), + [anon_sym_TILDE] = ACTIONS(3925), + [anon_sym_CARET] = ACTIONS(3925), + [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_LT_DASH] = ACTIONS(3925), + [sym_none] = ACTIONS(3925), + [sym_true] = ACTIONS(3925), + [sym_false] = ACTIONS(3925), + [sym_nil] = ACTIONS(3925), + [anon_sym_if] = ACTIONS(3925), + [anon_sym_DOLLARif] = ACTIONS(3925), + [anon_sym_match] = ACTIONS(3925), + [anon_sym_select] = ACTIONS(3925), + [anon_sym_lock] = ACTIONS(3925), + [anon_sym_rlock] = ACTIONS(3925), + [anon_sym_unsafe] = ACTIONS(3925), + [anon_sym_sql] = ACTIONS(3925), + [sym_int_literal] = ACTIONS(3925), + [sym_float_literal] = ACTIONS(3925), + [sym_rune_literal] = ACTIONS(3925), + [anon_sym_AT] = ACTIONS(3925), + [anon_sym_shared] = ACTIONS(3925), + [anon_sym_map_LBRACK] = ACTIONS(3925), + [anon_sym_chan] = ACTIONS(3925), + [anon_sym_thread] = ACTIONS(3925), + [anon_sym_atomic] = ACTIONS(3925), + [anon_sym_assert] = ACTIONS(3925), + [anon_sym_defer] = ACTIONS(3925), + [anon_sym_goto] = ACTIONS(3925), + [anon_sym_break] = ACTIONS(3925), + [anon_sym_continue] = ACTIONS(3925), + [anon_sym_return] = ACTIONS(3925), + [anon_sym_DOLLARfor] = ACTIONS(3925), + [anon_sym_for] = ACTIONS(3925), + [anon_sym_POUND] = ACTIONS(3925), + [anon_sym_asm] = ACTIONS(3925), + [anon_sym_AT_LBRACK] = ACTIONS(3925), + [sym___double_quote] = ACTIONS(3925), + [sym___single_quote] = ACTIONS(3925), + [sym___c_double_quote] = ACTIONS(3925), + [sym___c_single_quote] = ACTIONS(3925), + [sym___r_double_quote] = ACTIONS(3925), + [sym___r_single_quote] = ACTIONS(3925), }, [1493] = { - [ts_builtin_sym_end] = ACTIONS(3933), - [sym_identifier] = ACTIONS(3935), - [anon_sym_LF] = ACTIONS(3935), - [anon_sym_CR] = ACTIONS(3935), - [anon_sym_CR_LF] = ACTIONS(3935), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_LBRACE] = ACTIONS(3935), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_LPAREN] = ACTIONS(3935), - [anon_sym___global] = ACTIONS(3935), - [anon_sym_type] = ACTIONS(3935), - [anon_sym_fn] = ACTIONS(3935), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3935), - [anon_sym_struct] = ACTIONS(3935), - [anon_sym_union] = ACTIONS(3935), - [anon_sym_pub] = ACTIONS(3935), - [anon_sym_mut] = ACTIONS(3935), - [anon_sym_enum] = ACTIONS(3935), - [anon_sym_interface] = ACTIONS(3935), - [anon_sym_QMARK] = ACTIONS(3935), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_go] = ACTIONS(3935), - [anon_sym_spawn] = ACTIONS(3935), - [anon_sym_json_DOTdecode] = ACTIONS(3935), - [anon_sym_LBRACK2] = ACTIONS(3935), - [anon_sym_TILDE] = ACTIONS(3935), - [anon_sym_CARET] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_DASH] = ACTIONS(3935), - [sym_none] = ACTIONS(3935), - [sym_true] = ACTIONS(3935), - [sym_false] = ACTIONS(3935), - [sym_nil] = ACTIONS(3935), - [anon_sym_if] = ACTIONS(3935), - [anon_sym_DOLLARif] = ACTIONS(3935), - [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(3935), - [sym_rune_literal] = ACTIONS(3935), - [anon_sym_AT] = ACTIONS(3935), - [anon_sym_shared] = ACTIONS(3935), - [anon_sym_map_LBRACK] = ACTIONS(3935), - [anon_sym_chan] = ACTIONS(3935), - [anon_sym_thread] = ACTIONS(3935), - [anon_sym_atomic] = ACTIONS(3935), - [anon_sym_assert] = ACTIONS(3935), - [anon_sym_defer] = ACTIONS(3935), - [anon_sym_goto] = ACTIONS(3935), - [anon_sym_break] = ACTIONS(3935), - [anon_sym_continue] = ACTIONS(3935), - [anon_sym_return] = ACTIONS(3935), - [anon_sym_DOLLARfor] = ACTIONS(3935), - [anon_sym_for] = ACTIONS(3935), - [anon_sym_POUND] = ACTIONS(3935), - [anon_sym_asm] = ACTIONS(3935), - [anon_sym_AT_LBRACK] = ACTIONS(3935), - [sym___double_quote] = ACTIONS(3935), - [sym___single_quote] = ACTIONS(3935), - [sym___c_double_quote] = ACTIONS(3935), - [sym___c_single_quote] = ACTIONS(3935), - [sym___r_double_quote] = ACTIONS(3935), - [sym___r_single_quote] = ACTIONS(3935), + [ts_builtin_sym_end] = ACTIONS(3927), + [sym_identifier] = ACTIONS(3929), + [anon_sym_LF] = ACTIONS(3929), + [anon_sym_CR] = ACTIONS(3929), + [anon_sym_CR_LF] = ACTIONS(3929), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3929), + [anon_sym_const] = ACTIONS(3929), + [anon_sym_LPAREN] = ACTIONS(3929), + [anon_sym___global] = ACTIONS(3929), + [anon_sym_type] = ACTIONS(3929), + [anon_sym_fn] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_STAR] = ACTIONS(3929), + [anon_sym_struct] = ACTIONS(3929), + [anon_sym_union] = ACTIONS(3929), + [anon_sym_pub] = ACTIONS(3929), + [anon_sym_mut] = ACTIONS(3929), + [anon_sym_enum] = ACTIONS(3929), + [anon_sym_interface] = ACTIONS(3929), + [anon_sym_QMARK] = ACTIONS(3929), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_go] = ACTIONS(3929), + [anon_sym_spawn] = ACTIONS(3929), + [anon_sym_json_DOTdecode] = ACTIONS(3929), + [anon_sym_LBRACK2] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_CARET] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_LT_DASH] = ACTIONS(3929), + [sym_none] = ACTIONS(3929), + [sym_true] = ACTIONS(3929), + [sym_false] = ACTIONS(3929), + [sym_nil] = ACTIONS(3929), + [anon_sym_if] = ACTIONS(3929), + [anon_sym_DOLLARif] = ACTIONS(3929), + [anon_sym_match] = ACTIONS(3929), + [anon_sym_select] = ACTIONS(3929), + [anon_sym_lock] = ACTIONS(3929), + [anon_sym_rlock] = ACTIONS(3929), + [anon_sym_unsafe] = ACTIONS(3929), + [anon_sym_sql] = ACTIONS(3929), + [sym_int_literal] = ACTIONS(3929), + [sym_float_literal] = ACTIONS(3929), + [sym_rune_literal] = ACTIONS(3929), + [anon_sym_AT] = ACTIONS(3929), + [anon_sym_shared] = ACTIONS(3929), + [anon_sym_map_LBRACK] = ACTIONS(3929), + [anon_sym_chan] = ACTIONS(3929), + [anon_sym_thread] = ACTIONS(3929), + [anon_sym_atomic] = ACTIONS(3929), + [anon_sym_assert] = ACTIONS(3929), + [anon_sym_defer] = ACTIONS(3929), + [anon_sym_goto] = ACTIONS(3929), + [anon_sym_break] = ACTIONS(3929), + [anon_sym_continue] = ACTIONS(3929), + [anon_sym_return] = ACTIONS(3929), + [anon_sym_DOLLARfor] = ACTIONS(3929), + [anon_sym_for] = ACTIONS(3929), + [anon_sym_POUND] = ACTIONS(3929), + [anon_sym_asm] = ACTIONS(3929), + [anon_sym_AT_LBRACK] = ACTIONS(3929), + [sym___double_quote] = ACTIONS(3929), + [sym___single_quote] = ACTIONS(3929), + [sym___c_double_quote] = ACTIONS(3929), + [sym___c_single_quote] = ACTIONS(3929), + [sym___r_double_quote] = ACTIONS(3929), + [sym___r_single_quote] = ACTIONS(3929), }, [1494] = { - [ts_builtin_sym_end] = ACTIONS(3937), - [sym_identifier] = ACTIONS(3939), - [anon_sym_LF] = ACTIONS(3939), - [anon_sym_CR] = ACTIONS(3939), - [anon_sym_CR_LF] = ACTIONS(3939), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3939), - [anon_sym_LBRACE] = ACTIONS(3939), - [anon_sym_const] = ACTIONS(3939), - [anon_sym_LPAREN] = ACTIONS(3939), - [anon_sym___global] = ACTIONS(3939), - [anon_sym_type] = ACTIONS(3939), - [anon_sym_fn] = ACTIONS(3939), - [anon_sym_PLUS] = ACTIONS(3939), - [anon_sym_DASH] = ACTIONS(3939), - [anon_sym_STAR] = ACTIONS(3939), - [anon_sym_struct] = ACTIONS(3939), - [anon_sym_union] = ACTIONS(3939), - [anon_sym_pub] = ACTIONS(3939), - [anon_sym_mut] = ACTIONS(3939), - [anon_sym_enum] = ACTIONS(3939), - [anon_sym_interface] = ACTIONS(3939), - [anon_sym_QMARK] = ACTIONS(3939), - [anon_sym_BANG] = ACTIONS(3939), - [anon_sym_go] = ACTIONS(3939), - [anon_sym_spawn] = ACTIONS(3939), - [anon_sym_json_DOTdecode] = ACTIONS(3939), - [anon_sym_LBRACK2] = ACTIONS(3939), - [anon_sym_TILDE] = ACTIONS(3939), - [anon_sym_CARET] = ACTIONS(3939), - [anon_sym_AMP] = ACTIONS(3939), - [anon_sym_LT_DASH] = ACTIONS(3939), - [sym_none] = ACTIONS(3939), - [sym_true] = ACTIONS(3939), - [sym_false] = ACTIONS(3939), - [sym_nil] = ACTIONS(3939), - [anon_sym_if] = ACTIONS(3939), - [anon_sym_DOLLARif] = ACTIONS(3939), - [anon_sym_match] = ACTIONS(3939), - [anon_sym_select] = ACTIONS(3939), - [anon_sym_lock] = ACTIONS(3939), - [anon_sym_rlock] = ACTIONS(3939), - [anon_sym_unsafe] = ACTIONS(3939), - [anon_sym_sql] = ACTIONS(3939), - [sym_int_literal] = ACTIONS(3939), - [sym_float_literal] = ACTIONS(3939), - [sym_rune_literal] = ACTIONS(3939), - [anon_sym_AT] = ACTIONS(3939), - [anon_sym_shared] = ACTIONS(3939), - [anon_sym_map_LBRACK] = ACTIONS(3939), - [anon_sym_chan] = ACTIONS(3939), - [anon_sym_thread] = ACTIONS(3939), - [anon_sym_atomic] = ACTIONS(3939), - [anon_sym_assert] = ACTIONS(3939), - [anon_sym_defer] = ACTIONS(3939), - [anon_sym_goto] = ACTIONS(3939), - [anon_sym_break] = ACTIONS(3939), - [anon_sym_continue] = ACTIONS(3939), - [anon_sym_return] = ACTIONS(3939), - [anon_sym_DOLLARfor] = ACTIONS(3939), - [anon_sym_for] = ACTIONS(3939), - [anon_sym_POUND] = ACTIONS(3939), - [anon_sym_asm] = ACTIONS(3939), - [anon_sym_AT_LBRACK] = ACTIONS(3939), - [sym___double_quote] = ACTIONS(3939), - [sym___single_quote] = ACTIONS(3939), - [sym___c_double_quote] = ACTIONS(3939), - [sym___c_single_quote] = ACTIONS(3939), - [sym___r_double_quote] = ACTIONS(3939), - [sym___r_single_quote] = ACTIONS(3939), + [ts_builtin_sym_end] = ACTIONS(3931), + [sym_identifier] = ACTIONS(3933), + [anon_sym_LF] = ACTIONS(3933), + [anon_sym_CR] = ACTIONS(3933), + [anon_sym_CR_LF] = ACTIONS(3933), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_LBRACE] = ACTIONS(3933), + [anon_sym_const] = ACTIONS(3933), + [anon_sym_LPAREN] = ACTIONS(3933), + [anon_sym___global] = ACTIONS(3933), + [anon_sym_type] = ACTIONS(3933), + [anon_sym_fn] = ACTIONS(3933), + [anon_sym_PLUS] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_struct] = ACTIONS(3933), + [anon_sym_union] = ACTIONS(3933), + [anon_sym_pub] = ACTIONS(3933), + [anon_sym_mut] = ACTIONS(3933), + [anon_sym_enum] = ACTIONS(3933), + [anon_sym_interface] = ACTIONS(3933), + [anon_sym_QMARK] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_go] = ACTIONS(3933), + [anon_sym_spawn] = ACTIONS(3933), + [anon_sym_json_DOTdecode] = ACTIONS(3933), + [anon_sym_LBRACK2] = ACTIONS(3933), + [anon_sym_TILDE] = ACTIONS(3933), + [anon_sym_CARET] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT_DASH] = ACTIONS(3933), + [sym_none] = ACTIONS(3933), + [sym_true] = ACTIONS(3933), + [sym_false] = ACTIONS(3933), + [sym_nil] = ACTIONS(3933), + [anon_sym_if] = ACTIONS(3933), + [anon_sym_DOLLARif] = ACTIONS(3933), + [anon_sym_match] = ACTIONS(3933), + [anon_sym_select] = ACTIONS(3933), + [anon_sym_lock] = ACTIONS(3933), + [anon_sym_rlock] = ACTIONS(3933), + [anon_sym_unsafe] = ACTIONS(3933), + [anon_sym_sql] = ACTIONS(3933), + [sym_int_literal] = ACTIONS(3933), + [sym_float_literal] = ACTIONS(3933), + [sym_rune_literal] = ACTIONS(3933), + [anon_sym_AT] = ACTIONS(3933), + [anon_sym_shared] = ACTIONS(3933), + [anon_sym_map_LBRACK] = ACTIONS(3933), + [anon_sym_chan] = ACTIONS(3933), + [anon_sym_thread] = ACTIONS(3933), + [anon_sym_atomic] = ACTIONS(3933), + [anon_sym_assert] = ACTIONS(3933), + [anon_sym_defer] = ACTIONS(3933), + [anon_sym_goto] = ACTIONS(3933), + [anon_sym_break] = ACTIONS(3933), + [anon_sym_continue] = ACTIONS(3933), + [anon_sym_return] = ACTIONS(3933), + [anon_sym_DOLLARfor] = ACTIONS(3933), + [anon_sym_for] = ACTIONS(3933), + [anon_sym_POUND] = ACTIONS(3933), + [anon_sym_asm] = ACTIONS(3933), + [anon_sym_AT_LBRACK] = ACTIONS(3933), + [sym___double_quote] = ACTIONS(3933), + [sym___single_quote] = ACTIONS(3933), + [sym___c_double_quote] = ACTIONS(3933), + [sym___c_single_quote] = ACTIONS(3933), + [sym___r_double_quote] = ACTIONS(3933), + [sym___r_single_quote] = ACTIONS(3933), }, [1495] = { - [ts_builtin_sym_end] = ACTIONS(3941), - [sym_identifier] = ACTIONS(3943), - [anon_sym_LF] = ACTIONS(3943), - [anon_sym_CR] = ACTIONS(3943), - [anon_sym_CR_LF] = ACTIONS(3943), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(3943), - [anon_sym_const] = ACTIONS(3943), - [anon_sym_LPAREN] = ACTIONS(3943), - [anon_sym___global] = ACTIONS(3943), - [anon_sym_type] = ACTIONS(3943), - [anon_sym_fn] = ACTIONS(3943), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3943), - [anon_sym_struct] = ACTIONS(3943), - [anon_sym_union] = ACTIONS(3943), - [anon_sym_pub] = ACTIONS(3943), - [anon_sym_mut] = ACTIONS(3943), - [anon_sym_enum] = ACTIONS(3943), - [anon_sym_interface] = ACTIONS(3943), - [anon_sym_QMARK] = ACTIONS(3943), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_go] = ACTIONS(3943), - [anon_sym_spawn] = ACTIONS(3943), - [anon_sym_json_DOTdecode] = ACTIONS(3943), - [anon_sym_LBRACK2] = ACTIONS(3943), - [anon_sym_TILDE] = ACTIONS(3943), - [anon_sym_CARET] = ACTIONS(3943), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_LT_DASH] = ACTIONS(3943), - [sym_none] = ACTIONS(3943), - [sym_true] = ACTIONS(3943), - [sym_false] = ACTIONS(3943), - [sym_nil] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_DOLLARif] = ACTIONS(3943), - [anon_sym_match] = ACTIONS(3943), - [anon_sym_select] = ACTIONS(3943), - [anon_sym_lock] = ACTIONS(3943), - [anon_sym_rlock] = ACTIONS(3943), - [anon_sym_unsafe] = ACTIONS(3943), - [anon_sym_sql] = ACTIONS(3943), - [sym_int_literal] = ACTIONS(3943), - [sym_float_literal] = ACTIONS(3943), - [sym_rune_literal] = ACTIONS(3943), - [anon_sym_AT] = ACTIONS(3943), - [anon_sym_shared] = ACTIONS(3943), - [anon_sym_map_LBRACK] = ACTIONS(3943), - [anon_sym_chan] = ACTIONS(3943), - [anon_sym_thread] = ACTIONS(3943), - [anon_sym_atomic] = ACTIONS(3943), - [anon_sym_assert] = ACTIONS(3943), - [anon_sym_defer] = ACTIONS(3943), - [anon_sym_goto] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_DOLLARfor] = ACTIONS(3943), - [anon_sym_for] = ACTIONS(3943), - [anon_sym_POUND] = ACTIONS(3943), - [anon_sym_asm] = ACTIONS(3943), - [anon_sym_AT_LBRACK] = ACTIONS(3943), - [sym___double_quote] = ACTIONS(3943), - [sym___single_quote] = ACTIONS(3943), - [sym___c_double_quote] = ACTIONS(3943), - [sym___c_single_quote] = ACTIONS(3943), - [sym___r_double_quote] = ACTIONS(3943), - [sym___r_single_quote] = ACTIONS(3943), + [ts_builtin_sym_end] = ACTIONS(3935), + [sym_identifier] = ACTIONS(3937), + [anon_sym_LF] = ACTIONS(3937), + [anon_sym_CR] = ACTIONS(3937), + [anon_sym_CR_LF] = ACTIONS(3937), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3937), + [anon_sym_LBRACE] = ACTIONS(3937), + [anon_sym_const] = ACTIONS(3937), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym___global] = ACTIONS(3937), + [anon_sym_type] = ACTIONS(3937), + [anon_sym_fn] = ACTIONS(3937), + [anon_sym_PLUS] = ACTIONS(3937), + [anon_sym_DASH] = ACTIONS(3937), + [anon_sym_STAR] = ACTIONS(3937), + [anon_sym_struct] = ACTIONS(3937), + [anon_sym_union] = ACTIONS(3937), + [anon_sym_pub] = ACTIONS(3937), + [anon_sym_mut] = ACTIONS(3937), + [anon_sym_enum] = ACTIONS(3937), + [anon_sym_interface] = ACTIONS(3937), + [anon_sym_QMARK] = ACTIONS(3937), + [anon_sym_BANG] = ACTIONS(3937), + [anon_sym_go] = ACTIONS(3937), + [anon_sym_spawn] = ACTIONS(3937), + [anon_sym_json_DOTdecode] = ACTIONS(3937), + [anon_sym_LBRACK2] = ACTIONS(3937), + [anon_sym_TILDE] = ACTIONS(3937), + [anon_sym_CARET] = ACTIONS(3937), + [anon_sym_AMP] = ACTIONS(3937), + [anon_sym_LT_DASH] = ACTIONS(3937), + [sym_none] = ACTIONS(3937), + [sym_true] = ACTIONS(3937), + [sym_false] = ACTIONS(3937), + [sym_nil] = ACTIONS(3937), + [anon_sym_if] = ACTIONS(3937), + [anon_sym_DOLLARif] = ACTIONS(3937), + [anon_sym_match] = ACTIONS(3937), + [anon_sym_select] = ACTIONS(3937), + [anon_sym_lock] = ACTIONS(3937), + [anon_sym_rlock] = ACTIONS(3937), + [anon_sym_unsafe] = ACTIONS(3937), + [anon_sym_sql] = ACTIONS(3937), + [sym_int_literal] = ACTIONS(3937), + [sym_float_literal] = ACTIONS(3937), + [sym_rune_literal] = ACTIONS(3937), + [anon_sym_AT] = ACTIONS(3937), + [anon_sym_shared] = ACTIONS(3937), + [anon_sym_map_LBRACK] = ACTIONS(3937), + [anon_sym_chan] = ACTIONS(3937), + [anon_sym_thread] = ACTIONS(3937), + [anon_sym_atomic] = ACTIONS(3937), + [anon_sym_assert] = ACTIONS(3937), + [anon_sym_defer] = ACTIONS(3937), + [anon_sym_goto] = ACTIONS(3937), + [anon_sym_break] = ACTIONS(3937), + [anon_sym_continue] = ACTIONS(3937), + [anon_sym_return] = ACTIONS(3937), + [anon_sym_DOLLARfor] = ACTIONS(3937), + [anon_sym_for] = ACTIONS(3937), + [anon_sym_POUND] = ACTIONS(3937), + [anon_sym_asm] = ACTIONS(3937), + [anon_sym_AT_LBRACK] = ACTIONS(3937), + [sym___double_quote] = ACTIONS(3937), + [sym___single_quote] = ACTIONS(3937), + [sym___c_double_quote] = ACTIONS(3937), + [sym___c_single_quote] = ACTIONS(3937), + [sym___r_double_quote] = ACTIONS(3937), + [sym___r_single_quote] = ACTIONS(3937), }, [1496] = { - [ts_builtin_sym_end] = ACTIONS(3945), - [sym_identifier] = ACTIONS(3947), - [anon_sym_LF] = ACTIONS(3947), - [anon_sym_CR] = ACTIONS(3947), - [anon_sym_CR_LF] = ACTIONS(3947), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3947), - [anon_sym_LBRACE] = ACTIONS(3947), - [anon_sym_const] = ACTIONS(3947), - [anon_sym_LPAREN] = ACTIONS(3947), - [anon_sym___global] = ACTIONS(3947), - [anon_sym_type] = ACTIONS(3947), - [anon_sym_fn] = ACTIONS(3947), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_STAR] = ACTIONS(3947), - [anon_sym_struct] = ACTIONS(3947), - [anon_sym_union] = ACTIONS(3947), - [anon_sym_pub] = ACTIONS(3947), - [anon_sym_mut] = ACTIONS(3947), - [anon_sym_enum] = ACTIONS(3947), - [anon_sym_interface] = ACTIONS(3947), - [anon_sym_QMARK] = ACTIONS(3947), - [anon_sym_BANG] = ACTIONS(3947), - [anon_sym_go] = ACTIONS(3947), - [anon_sym_spawn] = ACTIONS(3947), - [anon_sym_json_DOTdecode] = ACTIONS(3947), - [anon_sym_LBRACK2] = ACTIONS(3947), - [anon_sym_TILDE] = ACTIONS(3947), - [anon_sym_CARET] = ACTIONS(3947), - [anon_sym_AMP] = ACTIONS(3947), - [anon_sym_LT_DASH] = ACTIONS(3947), - [sym_none] = ACTIONS(3947), - [sym_true] = ACTIONS(3947), - [sym_false] = ACTIONS(3947), - [sym_nil] = ACTIONS(3947), - [anon_sym_if] = ACTIONS(3947), - [anon_sym_DOLLARif] = ACTIONS(3947), - [anon_sym_match] = ACTIONS(3947), - [anon_sym_select] = ACTIONS(3947), - [anon_sym_lock] = ACTIONS(3947), - [anon_sym_rlock] = ACTIONS(3947), - [anon_sym_unsafe] = ACTIONS(3947), - [anon_sym_sql] = ACTIONS(3947), - [sym_int_literal] = ACTIONS(3947), - [sym_float_literal] = ACTIONS(3947), - [sym_rune_literal] = ACTIONS(3947), - [anon_sym_AT] = ACTIONS(3947), - [anon_sym_shared] = ACTIONS(3947), - [anon_sym_map_LBRACK] = ACTIONS(3947), - [anon_sym_chan] = ACTIONS(3947), - [anon_sym_thread] = ACTIONS(3947), - [anon_sym_atomic] = ACTIONS(3947), - [anon_sym_assert] = ACTIONS(3947), - [anon_sym_defer] = ACTIONS(3947), - [anon_sym_goto] = ACTIONS(3947), - [anon_sym_break] = ACTIONS(3947), - [anon_sym_continue] = ACTIONS(3947), - [anon_sym_return] = ACTIONS(3947), - [anon_sym_DOLLARfor] = ACTIONS(3947), - [anon_sym_for] = ACTIONS(3947), - [anon_sym_POUND] = ACTIONS(3947), - [anon_sym_asm] = ACTIONS(3947), - [anon_sym_AT_LBRACK] = ACTIONS(3947), - [sym___double_quote] = ACTIONS(3947), - [sym___single_quote] = ACTIONS(3947), - [sym___c_double_quote] = ACTIONS(3947), - [sym___c_single_quote] = ACTIONS(3947), - [sym___r_double_quote] = ACTIONS(3947), - [sym___r_single_quote] = ACTIONS(3947), + [ts_builtin_sym_end] = ACTIONS(3939), + [sym_identifier] = ACTIONS(3941), + [anon_sym_LF] = ACTIONS(3941), + [anon_sym_CR] = ACTIONS(3941), + [anon_sym_CR_LF] = ACTIONS(3941), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_LBRACE] = ACTIONS(3941), + [anon_sym_const] = ACTIONS(3941), + [anon_sym_LPAREN] = ACTIONS(3941), + [anon_sym___global] = ACTIONS(3941), + [anon_sym_type] = ACTIONS(3941), + [anon_sym_fn] = ACTIONS(3941), + [anon_sym_PLUS] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_STAR] = ACTIONS(3941), + [anon_sym_struct] = ACTIONS(3941), + [anon_sym_union] = ACTIONS(3941), + [anon_sym_pub] = ACTIONS(3941), + [anon_sym_mut] = ACTIONS(3941), + [anon_sym_enum] = ACTIONS(3941), + [anon_sym_interface] = ACTIONS(3941), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_BANG] = ACTIONS(3941), + [anon_sym_go] = ACTIONS(3941), + [anon_sym_spawn] = ACTIONS(3941), + [anon_sym_json_DOTdecode] = ACTIONS(3941), + [anon_sym_LBRACK2] = ACTIONS(3941), + [anon_sym_TILDE] = ACTIONS(3941), + [anon_sym_CARET] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_LT_DASH] = ACTIONS(3941), + [sym_none] = ACTIONS(3941), + [sym_true] = ACTIONS(3941), + [sym_false] = ACTIONS(3941), + [sym_nil] = ACTIONS(3941), + [anon_sym_if] = ACTIONS(3941), + [anon_sym_DOLLARif] = ACTIONS(3941), + [anon_sym_match] = ACTIONS(3941), + [anon_sym_select] = ACTIONS(3941), + [anon_sym_lock] = ACTIONS(3941), + [anon_sym_rlock] = ACTIONS(3941), + [anon_sym_unsafe] = ACTIONS(3941), + [anon_sym_sql] = ACTIONS(3941), + [sym_int_literal] = ACTIONS(3941), + [sym_float_literal] = ACTIONS(3941), + [sym_rune_literal] = ACTIONS(3941), + [anon_sym_AT] = ACTIONS(3941), + [anon_sym_shared] = ACTIONS(3941), + [anon_sym_map_LBRACK] = ACTIONS(3941), + [anon_sym_chan] = ACTIONS(3941), + [anon_sym_thread] = ACTIONS(3941), + [anon_sym_atomic] = ACTIONS(3941), + [anon_sym_assert] = ACTIONS(3941), + [anon_sym_defer] = ACTIONS(3941), + [anon_sym_goto] = ACTIONS(3941), + [anon_sym_break] = ACTIONS(3941), + [anon_sym_continue] = ACTIONS(3941), + [anon_sym_return] = ACTIONS(3941), + [anon_sym_DOLLARfor] = ACTIONS(3941), + [anon_sym_for] = ACTIONS(3941), + [anon_sym_POUND] = ACTIONS(3941), + [anon_sym_asm] = ACTIONS(3941), + [anon_sym_AT_LBRACK] = ACTIONS(3941), + [sym___double_quote] = ACTIONS(3941), + [sym___single_quote] = ACTIONS(3941), + [sym___c_double_quote] = ACTIONS(3941), + [sym___c_single_quote] = ACTIONS(3941), + [sym___r_double_quote] = ACTIONS(3941), + [sym___r_single_quote] = ACTIONS(3941), }, [1497] = { - [ts_builtin_sym_end] = ACTIONS(3949), - [sym_identifier] = ACTIONS(3951), - [anon_sym_LF] = ACTIONS(3951), - [anon_sym_CR] = ACTIONS(3951), - [anon_sym_CR_LF] = ACTIONS(3951), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3951), + [ts_builtin_sym_end] = ACTIONS(3943), + [sym_identifier] = ACTIONS(3945), + [anon_sym_LF] = ACTIONS(3945), + [anon_sym_CR] = ACTIONS(3945), + [anon_sym_CR_LF] = ACTIONS(3945), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3945), + [anon_sym_LBRACE] = ACTIONS(3945), + [anon_sym_const] = ACTIONS(3945), + [anon_sym_LPAREN] = ACTIONS(3945), + [anon_sym___global] = ACTIONS(3945), + [anon_sym_type] = ACTIONS(3945), + [anon_sym_fn] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3945), + [anon_sym_DASH] = ACTIONS(3945), + [anon_sym_STAR] = ACTIONS(3945), + [anon_sym_struct] = ACTIONS(3945), + [anon_sym_union] = ACTIONS(3945), + [anon_sym_pub] = ACTIONS(3945), + [anon_sym_mut] = ACTIONS(3945), + [anon_sym_enum] = ACTIONS(3945), + [anon_sym_interface] = ACTIONS(3945), + [anon_sym_QMARK] = ACTIONS(3945), + [anon_sym_BANG] = ACTIONS(3945), + [anon_sym_go] = ACTIONS(3945), + [anon_sym_spawn] = ACTIONS(3945), + [anon_sym_json_DOTdecode] = ACTIONS(3945), + [anon_sym_LBRACK2] = ACTIONS(3945), + [anon_sym_TILDE] = ACTIONS(3945), + [anon_sym_CARET] = ACTIONS(3945), + [anon_sym_AMP] = ACTIONS(3945), + [anon_sym_LT_DASH] = ACTIONS(3945), + [sym_none] = ACTIONS(3945), + [sym_true] = ACTIONS(3945), + [sym_false] = ACTIONS(3945), + [sym_nil] = ACTIONS(3945), + [anon_sym_if] = ACTIONS(3945), + [anon_sym_DOLLARif] = ACTIONS(3945), + [anon_sym_match] = ACTIONS(3945), + [anon_sym_select] = ACTIONS(3945), + [anon_sym_lock] = ACTIONS(3945), + [anon_sym_rlock] = ACTIONS(3945), + [anon_sym_unsafe] = ACTIONS(3945), + [anon_sym_sql] = ACTIONS(3945), + [sym_int_literal] = ACTIONS(3945), + [sym_float_literal] = ACTIONS(3945), + [sym_rune_literal] = ACTIONS(3945), + [anon_sym_AT] = ACTIONS(3945), + [anon_sym_shared] = ACTIONS(3945), + [anon_sym_map_LBRACK] = ACTIONS(3945), + [anon_sym_chan] = ACTIONS(3945), + [anon_sym_thread] = ACTIONS(3945), + [anon_sym_atomic] = ACTIONS(3945), + [anon_sym_assert] = ACTIONS(3945), + [anon_sym_defer] = ACTIONS(3945), + [anon_sym_goto] = ACTIONS(3945), + [anon_sym_break] = ACTIONS(3945), + [anon_sym_continue] = ACTIONS(3945), + [anon_sym_return] = ACTIONS(3945), + [anon_sym_DOLLARfor] = ACTIONS(3945), + [anon_sym_for] = ACTIONS(3945), + [anon_sym_POUND] = ACTIONS(3945), + [anon_sym_asm] = ACTIONS(3945), + [anon_sym_AT_LBRACK] = ACTIONS(3945), + [sym___double_quote] = ACTIONS(3945), + [sym___single_quote] = ACTIONS(3945), + [sym___c_double_quote] = ACTIONS(3945), + [sym___c_single_quote] = ACTIONS(3945), + [sym___r_double_quote] = ACTIONS(3945), + [sym___r_single_quote] = ACTIONS(3945), + }, + [1498] = { + [ts_builtin_sym_end] = ACTIONS(3947), + [sym_identifier] = ACTIONS(3949), + [anon_sym_LF] = ACTIONS(3949), + [anon_sym_CR] = ACTIONS(3949), + [anon_sym_CR_LF] = ACTIONS(3949), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_LBRACE] = ACTIONS(3949), + [anon_sym_const] = ACTIONS(3949), + [anon_sym_LPAREN] = ACTIONS(3949), + [anon_sym___global] = ACTIONS(3949), + [anon_sym_type] = ACTIONS(3949), + [anon_sym_fn] = ACTIONS(3949), + [anon_sym_PLUS] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_STAR] = ACTIONS(3949), + [anon_sym_struct] = ACTIONS(3949), + [anon_sym_union] = ACTIONS(3949), + [anon_sym_pub] = ACTIONS(3949), + [anon_sym_mut] = ACTIONS(3949), + [anon_sym_enum] = ACTIONS(3949), + [anon_sym_interface] = ACTIONS(3949), + [anon_sym_QMARK] = ACTIONS(3949), + [anon_sym_BANG] = ACTIONS(3949), + [anon_sym_go] = ACTIONS(3949), + [anon_sym_spawn] = ACTIONS(3949), + [anon_sym_json_DOTdecode] = ACTIONS(3949), + [anon_sym_LBRACK2] = ACTIONS(3949), + [anon_sym_TILDE] = ACTIONS(3949), + [anon_sym_CARET] = ACTIONS(3949), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_LT_DASH] = ACTIONS(3949), + [sym_none] = ACTIONS(3949), + [sym_true] = ACTIONS(3949), + [sym_false] = ACTIONS(3949), + [sym_nil] = ACTIONS(3949), + [anon_sym_if] = ACTIONS(3949), + [anon_sym_DOLLARif] = ACTIONS(3949), + [anon_sym_match] = ACTIONS(3949), + [anon_sym_select] = ACTIONS(3949), + [anon_sym_lock] = ACTIONS(3949), + [anon_sym_rlock] = ACTIONS(3949), + [anon_sym_unsafe] = ACTIONS(3949), + [anon_sym_sql] = ACTIONS(3949), + [sym_int_literal] = ACTIONS(3949), + [sym_float_literal] = ACTIONS(3949), + [sym_rune_literal] = ACTIONS(3949), + [anon_sym_AT] = ACTIONS(3949), + [anon_sym_shared] = ACTIONS(3949), + [anon_sym_map_LBRACK] = ACTIONS(3949), + [anon_sym_chan] = ACTIONS(3949), + [anon_sym_thread] = ACTIONS(3949), + [anon_sym_atomic] = ACTIONS(3949), + [anon_sym_assert] = ACTIONS(3949), + [anon_sym_defer] = ACTIONS(3949), + [anon_sym_goto] = ACTIONS(3949), + [anon_sym_break] = ACTIONS(3949), + [anon_sym_continue] = ACTIONS(3949), + [anon_sym_return] = ACTIONS(3949), + [anon_sym_DOLLARfor] = ACTIONS(3949), + [anon_sym_for] = ACTIONS(3949), + [anon_sym_POUND] = ACTIONS(3949), + [anon_sym_asm] = ACTIONS(3949), + [anon_sym_AT_LBRACK] = ACTIONS(3949), + [sym___double_quote] = ACTIONS(3949), + [sym___single_quote] = ACTIONS(3949), + [sym___c_double_quote] = ACTIONS(3949), + [sym___c_single_quote] = ACTIONS(3949), + [sym___r_double_quote] = ACTIONS(3949), + [sym___r_single_quote] = ACTIONS(3949), + }, + [1499] = { + [sym_import_declaration] = STATE(1499), + [aux_sym_import_list_repeat1] = STATE(1499), + [ts_builtin_sym_end] = ACTIONS(3951), + [sym_identifier] = ACTIONS(3953), + [sym_comment] = ACTIONS(3), + [anon_sym_import] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3953), [anon_sym_LBRACE] = ACTIONS(3951), - [anon_sym_const] = ACTIONS(3951), + [anon_sym_const] = ACTIONS(3953), [anon_sym_LPAREN] = ACTIONS(3951), - [anon_sym___global] = ACTIONS(3951), - [anon_sym_type] = ACTIONS(3951), - [anon_sym_fn] = ACTIONS(3951), + [anon_sym___global] = ACTIONS(3953), + [anon_sym_type] = ACTIONS(3953), + [anon_sym_fn] = ACTIONS(3953), [anon_sym_PLUS] = ACTIONS(3951), [anon_sym_DASH] = ACTIONS(3951), [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_struct] = ACTIONS(3951), - [anon_sym_union] = ACTIONS(3951), - [anon_sym_pub] = ACTIONS(3951), - [anon_sym_mut] = ACTIONS(3951), - [anon_sym_enum] = ACTIONS(3951), - [anon_sym_interface] = ACTIONS(3951), + [anon_sym_struct] = ACTIONS(3953), + [anon_sym_union] = ACTIONS(3953), + [anon_sym_pub] = ACTIONS(3953), + [anon_sym_mut] = ACTIONS(3953), + [anon_sym_enum] = ACTIONS(3953), + [anon_sym_interface] = ACTIONS(3953), [anon_sym_QMARK] = ACTIONS(3951), [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_go] = ACTIONS(3951), - [anon_sym_spawn] = ACTIONS(3951), + [anon_sym_go] = ACTIONS(3953), + [anon_sym_spawn] = ACTIONS(3953), [anon_sym_json_DOTdecode] = ACTIONS(3951), [anon_sym_LBRACK2] = ACTIONS(3951), [anon_sym_TILDE] = ACTIONS(3951), [anon_sym_CARET] = ACTIONS(3951), [anon_sym_AMP] = ACTIONS(3951), [anon_sym_LT_DASH] = ACTIONS(3951), - [sym_none] = ACTIONS(3951), - [sym_true] = ACTIONS(3951), - [sym_false] = ACTIONS(3951), - [sym_nil] = ACTIONS(3951), - [anon_sym_if] = ACTIONS(3951), - [anon_sym_DOLLARif] = ACTIONS(3951), - [anon_sym_match] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_lock] = ACTIONS(3951), - [anon_sym_rlock] = ACTIONS(3951), - [anon_sym_unsafe] = ACTIONS(3951), - [anon_sym_sql] = ACTIONS(3951), - [sym_int_literal] = ACTIONS(3951), + [sym_none] = ACTIONS(3953), + [sym_true] = ACTIONS(3953), + [sym_false] = ACTIONS(3953), + [sym_nil] = ACTIONS(3953), + [anon_sym_if] = ACTIONS(3953), + [anon_sym_DOLLARif] = ACTIONS(3953), + [anon_sym_match] = ACTIONS(3953), + [anon_sym_select] = ACTIONS(3953), + [anon_sym_lock] = ACTIONS(3953), + [anon_sym_rlock] = ACTIONS(3953), + [anon_sym_unsafe] = ACTIONS(3953), + [anon_sym_sql] = ACTIONS(3953), + [sym_int_literal] = ACTIONS(3953), [sym_float_literal] = ACTIONS(3951), [sym_rune_literal] = ACTIONS(3951), - [anon_sym_AT] = ACTIONS(3951), - [anon_sym_shared] = ACTIONS(3951), + [anon_sym_AT] = ACTIONS(3953), + [anon_sym_shared] = ACTIONS(3953), [anon_sym_map_LBRACK] = ACTIONS(3951), - [anon_sym_chan] = ACTIONS(3951), - [anon_sym_thread] = ACTIONS(3951), - [anon_sym_atomic] = ACTIONS(3951), - [anon_sym_assert] = ACTIONS(3951), - [anon_sym_defer] = ACTIONS(3951), - [anon_sym_goto] = ACTIONS(3951), - [anon_sym_break] = ACTIONS(3951), - [anon_sym_continue] = ACTIONS(3951), - [anon_sym_return] = ACTIONS(3951), - [anon_sym_DOLLARfor] = ACTIONS(3951), - [anon_sym_for] = ACTIONS(3951), + [anon_sym_chan] = ACTIONS(3953), + [anon_sym_thread] = ACTIONS(3953), + [anon_sym_atomic] = ACTIONS(3953), + [anon_sym_assert] = ACTIONS(3953), + [anon_sym_defer] = ACTIONS(3953), + [anon_sym_goto] = ACTIONS(3953), + [anon_sym_break] = ACTIONS(3953), + [anon_sym_continue] = ACTIONS(3953), + [anon_sym_return] = ACTIONS(3953), + [anon_sym_DOLLARfor] = ACTIONS(3953), + [anon_sym_for] = ACTIONS(3953), [anon_sym_POUND] = ACTIONS(3951), - [anon_sym_asm] = ACTIONS(3951), + [anon_sym_asm] = ACTIONS(3953), [anon_sym_AT_LBRACK] = ACTIONS(3951), [sym___double_quote] = ACTIONS(3951), [sym___single_quote] = ACTIONS(3951), @@ -182100,5326 +182582,5326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3951), [sym___r_single_quote] = ACTIONS(3951), }, - [1498] = { - [ts_builtin_sym_end] = ACTIONS(3953), - [sym_identifier] = ACTIONS(3955), - [anon_sym_LF] = ACTIONS(3955), - [anon_sym_CR] = ACTIONS(3955), - [anon_sym_CR_LF] = ACTIONS(3955), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3955), - [anon_sym_LBRACE] = ACTIONS(3955), - [anon_sym_const] = ACTIONS(3955), - [anon_sym_LPAREN] = ACTIONS(3955), - [anon_sym___global] = ACTIONS(3955), - [anon_sym_type] = ACTIONS(3955), - [anon_sym_fn] = ACTIONS(3955), - [anon_sym_PLUS] = ACTIONS(3955), - [anon_sym_DASH] = ACTIONS(3955), - [anon_sym_STAR] = ACTIONS(3955), - [anon_sym_struct] = ACTIONS(3955), - [anon_sym_union] = ACTIONS(3955), - [anon_sym_pub] = ACTIONS(3955), - [anon_sym_mut] = ACTIONS(3955), - [anon_sym_enum] = ACTIONS(3955), - [anon_sym_interface] = ACTIONS(3955), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_BANG] = ACTIONS(3955), - [anon_sym_go] = ACTIONS(3955), - [anon_sym_spawn] = ACTIONS(3955), - [anon_sym_json_DOTdecode] = ACTIONS(3955), - [anon_sym_LBRACK2] = ACTIONS(3955), - [anon_sym_TILDE] = ACTIONS(3955), - [anon_sym_CARET] = ACTIONS(3955), - [anon_sym_AMP] = ACTIONS(3955), - [anon_sym_LT_DASH] = ACTIONS(3955), - [sym_none] = ACTIONS(3955), - [sym_true] = ACTIONS(3955), - [sym_false] = ACTIONS(3955), - [sym_nil] = ACTIONS(3955), - [anon_sym_if] = ACTIONS(3955), - [anon_sym_DOLLARif] = ACTIONS(3955), - [anon_sym_match] = ACTIONS(3955), - [anon_sym_select] = ACTIONS(3955), - [anon_sym_lock] = ACTIONS(3955), - [anon_sym_rlock] = ACTIONS(3955), - [anon_sym_unsafe] = ACTIONS(3955), - [anon_sym_sql] = ACTIONS(3955), - [sym_int_literal] = ACTIONS(3955), - [sym_float_literal] = ACTIONS(3955), - [sym_rune_literal] = ACTIONS(3955), - [anon_sym_AT] = ACTIONS(3955), - [anon_sym_shared] = ACTIONS(3955), - [anon_sym_map_LBRACK] = ACTIONS(3955), - [anon_sym_chan] = ACTIONS(3955), - [anon_sym_thread] = ACTIONS(3955), - [anon_sym_atomic] = ACTIONS(3955), - [anon_sym_assert] = ACTIONS(3955), - [anon_sym_defer] = ACTIONS(3955), - [anon_sym_goto] = ACTIONS(3955), - [anon_sym_break] = ACTIONS(3955), - [anon_sym_continue] = ACTIONS(3955), - [anon_sym_return] = ACTIONS(3955), - [anon_sym_DOLLARfor] = ACTIONS(3955), - [anon_sym_for] = ACTIONS(3955), - [anon_sym_POUND] = ACTIONS(3955), - [anon_sym_asm] = ACTIONS(3955), - [anon_sym_AT_LBRACK] = ACTIONS(3955), - [sym___double_quote] = ACTIONS(3955), - [sym___single_quote] = ACTIONS(3955), - [sym___c_double_quote] = ACTIONS(3955), - [sym___c_single_quote] = ACTIONS(3955), - [sym___r_double_quote] = ACTIONS(3955), - [sym___r_single_quote] = ACTIONS(3955), - }, - [1499] = { - [ts_builtin_sym_end] = ACTIONS(3957), - [sym_identifier] = ACTIONS(3959), - [anon_sym_LF] = ACTIONS(3959), - [anon_sym_CR] = ACTIONS(3959), - [anon_sym_CR_LF] = ACTIONS(3959), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3959), - [anon_sym_LBRACE] = ACTIONS(3959), - [anon_sym_const] = ACTIONS(3959), - [anon_sym_LPAREN] = ACTIONS(3959), - [anon_sym___global] = ACTIONS(3959), - [anon_sym_type] = ACTIONS(3959), - [anon_sym_fn] = ACTIONS(3959), - [anon_sym_PLUS] = ACTIONS(3959), - [anon_sym_DASH] = ACTIONS(3959), - [anon_sym_STAR] = ACTIONS(3959), - [anon_sym_struct] = ACTIONS(3959), - [anon_sym_union] = ACTIONS(3959), - [anon_sym_pub] = ACTIONS(3959), - [anon_sym_mut] = ACTIONS(3959), - [anon_sym_enum] = ACTIONS(3959), - [anon_sym_interface] = ACTIONS(3959), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_BANG] = ACTIONS(3959), - [anon_sym_go] = ACTIONS(3959), - [anon_sym_spawn] = ACTIONS(3959), - [anon_sym_json_DOTdecode] = ACTIONS(3959), - [anon_sym_LBRACK2] = ACTIONS(3959), - [anon_sym_TILDE] = ACTIONS(3959), - [anon_sym_CARET] = ACTIONS(3959), - [anon_sym_AMP] = ACTIONS(3959), - [anon_sym_LT_DASH] = ACTIONS(3959), - [sym_none] = ACTIONS(3959), - [sym_true] = ACTIONS(3959), - [sym_false] = ACTIONS(3959), - [sym_nil] = ACTIONS(3959), - [anon_sym_if] = ACTIONS(3959), - [anon_sym_DOLLARif] = ACTIONS(3959), - [anon_sym_match] = ACTIONS(3959), - [anon_sym_select] = ACTIONS(3959), - [anon_sym_lock] = ACTIONS(3959), - [anon_sym_rlock] = ACTIONS(3959), - [anon_sym_unsafe] = ACTIONS(3959), - [anon_sym_sql] = ACTIONS(3959), - [sym_int_literal] = ACTIONS(3959), - [sym_float_literal] = ACTIONS(3959), - [sym_rune_literal] = ACTIONS(3959), - [anon_sym_AT] = ACTIONS(3959), - [anon_sym_shared] = ACTIONS(3959), - [anon_sym_map_LBRACK] = ACTIONS(3959), - [anon_sym_chan] = ACTIONS(3959), - [anon_sym_thread] = ACTIONS(3959), - [anon_sym_atomic] = ACTIONS(3959), - [anon_sym_assert] = ACTIONS(3959), - [anon_sym_defer] = ACTIONS(3959), - [anon_sym_goto] = ACTIONS(3959), - [anon_sym_break] = ACTIONS(3959), - [anon_sym_continue] = ACTIONS(3959), - [anon_sym_return] = ACTIONS(3959), - [anon_sym_DOLLARfor] = ACTIONS(3959), - [anon_sym_for] = ACTIONS(3959), - [anon_sym_POUND] = ACTIONS(3959), - [anon_sym_asm] = ACTIONS(3959), - [anon_sym_AT_LBRACK] = ACTIONS(3959), - [sym___double_quote] = ACTIONS(3959), - [sym___single_quote] = ACTIONS(3959), - [sym___c_double_quote] = ACTIONS(3959), - [sym___c_single_quote] = ACTIONS(3959), - [sym___r_double_quote] = ACTIONS(3959), - [sym___r_single_quote] = ACTIONS(3959), - }, [1500] = { - [ts_builtin_sym_end] = ACTIONS(3961), - [sym_identifier] = ACTIONS(3963), - [anon_sym_LF] = ACTIONS(3963), - [anon_sym_CR] = ACTIONS(3963), - [anon_sym_CR_LF] = ACTIONS(3963), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3963), - [anon_sym_LBRACE] = ACTIONS(3963), - [anon_sym_const] = ACTIONS(3963), - [anon_sym_LPAREN] = ACTIONS(3963), - [anon_sym___global] = ACTIONS(3963), - [anon_sym_type] = ACTIONS(3963), - [anon_sym_fn] = ACTIONS(3963), - [anon_sym_PLUS] = ACTIONS(3963), - [anon_sym_DASH] = ACTIONS(3963), - [anon_sym_STAR] = ACTIONS(3963), - [anon_sym_struct] = ACTIONS(3963), - [anon_sym_union] = ACTIONS(3963), - [anon_sym_pub] = ACTIONS(3963), - [anon_sym_mut] = ACTIONS(3963), - [anon_sym_enum] = ACTIONS(3963), - [anon_sym_interface] = ACTIONS(3963), - [anon_sym_QMARK] = ACTIONS(3963), - [anon_sym_BANG] = ACTIONS(3963), - [anon_sym_go] = ACTIONS(3963), - [anon_sym_spawn] = ACTIONS(3963), - [anon_sym_json_DOTdecode] = ACTIONS(3963), - [anon_sym_LBRACK2] = ACTIONS(3963), - [anon_sym_TILDE] = ACTIONS(3963), - [anon_sym_CARET] = ACTIONS(3963), - [anon_sym_AMP] = ACTIONS(3963), - [anon_sym_LT_DASH] = ACTIONS(3963), - [sym_none] = ACTIONS(3963), - [sym_true] = ACTIONS(3963), - [sym_false] = ACTIONS(3963), - [sym_nil] = ACTIONS(3963), - [anon_sym_if] = ACTIONS(3963), - [anon_sym_DOLLARif] = ACTIONS(3963), - [anon_sym_match] = ACTIONS(3963), - [anon_sym_select] = ACTIONS(3963), - [anon_sym_lock] = ACTIONS(3963), - [anon_sym_rlock] = ACTIONS(3963), - [anon_sym_unsafe] = ACTIONS(3963), - [anon_sym_sql] = ACTIONS(3963), - [sym_int_literal] = ACTIONS(3963), - [sym_float_literal] = ACTIONS(3963), - [sym_rune_literal] = ACTIONS(3963), - [anon_sym_AT] = ACTIONS(3963), - [anon_sym_shared] = ACTIONS(3963), - [anon_sym_map_LBRACK] = ACTIONS(3963), - [anon_sym_chan] = ACTIONS(3963), - [anon_sym_thread] = ACTIONS(3963), - [anon_sym_atomic] = ACTIONS(3963), - [anon_sym_assert] = ACTIONS(3963), - [anon_sym_defer] = ACTIONS(3963), - [anon_sym_goto] = ACTIONS(3963), - [anon_sym_break] = ACTIONS(3963), - [anon_sym_continue] = ACTIONS(3963), - [anon_sym_return] = ACTIONS(3963), - [anon_sym_DOLLARfor] = ACTIONS(3963), - [anon_sym_for] = ACTIONS(3963), - [anon_sym_POUND] = ACTIONS(3963), - [anon_sym_asm] = ACTIONS(3963), - [anon_sym_AT_LBRACK] = ACTIONS(3963), - [sym___double_quote] = ACTIONS(3963), - [sym___single_quote] = ACTIONS(3963), - [sym___c_double_quote] = ACTIONS(3963), - [sym___c_single_quote] = ACTIONS(3963), - [sym___r_double_quote] = ACTIONS(3963), - [sym___r_single_quote] = ACTIONS(3963), + [ts_builtin_sym_end] = ACTIONS(3958), + [sym_identifier] = ACTIONS(3960), + [anon_sym_LF] = ACTIONS(3960), + [anon_sym_CR] = ACTIONS(3960), + [anon_sym_CR_LF] = ACTIONS(3960), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3960), + [anon_sym_LBRACE] = ACTIONS(3960), + [anon_sym_const] = ACTIONS(3960), + [anon_sym_LPAREN] = ACTIONS(3960), + [anon_sym___global] = ACTIONS(3960), + [anon_sym_type] = ACTIONS(3960), + [anon_sym_fn] = ACTIONS(3960), + [anon_sym_PLUS] = ACTIONS(3960), + [anon_sym_DASH] = ACTIONS(3960), + [anon_sym_STAR] = ACTIONS(3960), + [anon_sym_struct] = ACTIONS(3960), + [anon_sym_union] = ACTIONS(3960), + [anon_sym_pub] = ACTIONS(3960), + [anon_sym_mut] = ACTIONS(3960), + [anon_sym_enum] = ACTIONS(3960), + [anon_sym_interface] = ACTIONS(3960), + [anon_sym_QMARK] = ACTIONS(3960), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_go] = ACTIONS(3960), + [anon_sym_spawn] = ACTIONS(3960), + [anon_sym_json_DOTdecode] = ACTIONS(3960), + [anon_sym_LBRACK2] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3960), + [anon_sym_CARET] = ACTIONS(3960), + [anon_sym_AMP] = ACTIONS(3960), + [anon_sym_LT_DASH] = ACTIONS(3960), + [sym_none] = ACTIONS(3960), + [sym_true] = ACTIONS(3960), + [sym_false] = ACTIONS(3960), + [sym_nil] = ACTIONS(3960), + [anon_sym_if] = ACTIONS(3960), + [anon_sym_DOLLARif] = ACTIONS(3960), + [anon_sym_match] = ACTIONS(3960), + [anon_sym_select] = ACTIONS(3960), + [anon_sym_lock] = ACTIONS(3960), + [anon_sym_rlock] = ACTIONS(3960), + [anon_sym_unsafe] = ACTIONS(3960), + [anon_sym_sql] = ACTIONS(3960), + [sym_int_literal] = ACTIONS(3960), + [sym_float_literal] = ACTIONS(3960), + [sym_rune_literal] = ACTIONS(3960), + [anon_sym_AT] = ACTIONS(3960), + [anon_sym_shared] = ACTIONS(3960), + [anon_sym_map_LBRACK] = ACTIONS(3960), + [anon_sym_chan] = ACTIONS(3960), + [anon_sym_thread] = ACTIONS(3960), + [anon_sym_atomic] = ACTIONS(3960), + [anon_sym_assert] = ACTIONS(3960), + [anon_sym_defer] = ACTIONS(3960), + [anon_sym_goto] = ACTIONS(3960), + [anon_sym_break] = ACTIONS(3960), + [anon_sym_continue] = ACTIONS(3960), + [anon_sym_return] = ACTIONS(3960), + [anon_sym_DOLLARfor] = ACTIONS(3960), + [anon_sym_for] = ACTIONS(3960), + [anon_sym_POUND] = ACTIONS(3960), + [anon_sym_asm] = ACTIONS(3960), + [anon_sym_AT_LBRACK] = ACTIONS(3960), + [sym___double_quote] = ACTIONS(3960), + [sym___single_quote] = ACTIONS(3960), + [sym___c_double_quote] = ACTIONS(3960), + [sym___c_single_quote] = ACTIONS(3960), + [sym___r_double_quote] = ACTIONS(3960), + [sym___r_single_quote] = ACTIONS(3960), }, [1501] = { - [ts_builtin_sym_end] = ACTIONS(3965), - [sym_identifier] = ACTIONS(3967), - [anon_sym_LF] = ACTIONS(3967), - [anon_sym_CR] = ACTIONS(3967), - [anon_sym_CR_LF] = ACTIONS(3967), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3967), - [anon_sym_LBRACE] = ACTIONS(3967), - [anon_sym_const] = ACTIONS(3967), - [anon_sym_LPAREN] = ACTIONS(3967), - [anon_sym___global] = ACTIONS(3967), - [anon_sym_type] = ACTIONS(3967), - [anon_sym_fn] = ACTIONS(3967), - [anon_sym_PLUS] = ACTIONS(3967), - [anon_sym_DASH] = ACTIONS(3967), - [anon_sym_STAR] = ACTIONS(3967), - [anon_sym_struct] = ACTIONS(3967), - [anon_sym_union] = ACTIONS(3967), - [anon_sym_pub] = ACTIONS(3967), - [anon_sym_mut] = ACTIONS(3967), - [anon_sym_enum] = ACTIONS(3967), - [anon_sym_interface] = ACTIONS(3967), - [anon_sym_QMARK] = ACTIONS(3967), - [anon_sym_BANG] = ACTIONS(3967), - [anon_sym_go] = ACTIONS(3967), - [anon_sym_spawn] = ACTIONS(3967), - [anon_sym_json_DOTdecode] = ACTIONS(3967), - [anon_sym_LBRACK2] = ACTIONS(3967), - [anon_sym_TILDE] = ACTIONS(3967), - [anon_sym_CARET] = ACTIONS(3967), - [anon_sym_AMP] = ACTIONS(3967), - [anon_sym_LT_DASH] = ACTIONS(3967), - [sym_none] = ACTIONS(3967), - [sym_true] = ACTIONS(3967), - [sym_false] = ACTIONS(3967), - [sym_nil] = ACTIONS(3967), - [anon_sym_if] = ACTIONS(3967), - [anon_sym_DOLLARif] = ACTIONS(3967), - [anon_sym_match] = ACTIONS(3967), - [anon_sym_select] = ACTIONS(3967), - [anon_sym_lock] = ACTIONS(3967), - [anon_sym_rlock] = ACTIONS(3967), - [anon_sym_unsafe] = ACTIONS(3967), - [anon_sym_sql] = ACTIONS(3967), - [sym_int_literal] = ACTIONS(3967), - [sym_float_literal] = ACTIONS(3967), - [sym_rune_literal] = ACTIONS(3967), - [anon_sym_AT] = ACTIONS(3967), - [anon_sym_shared] = ACTIONS(3967), - [anon_sym_map_LBRACK] = ACTIONS(3967), - [anon_sym_chan] = ACTIONS(3967), - [anon_sym_thread] = ACTIONS(3967), - [anon_sym_atomic] = ACTIONS(3967), - [anon_sym_assert] = ACTIONS(3967), - [anon_sym_defer] = ACTIONS(3967), - [anon_sym_goto] = ACTIONS(3967), - [anon_sym_break] = ACTIONS(3967), - [anon_sym_continue] = ACTIONS(3967), - [anon_sym_return] = ACTIONS(3967), - [anon_sym_DOLLARfor] = ACTIONS(3967), - [anon_sym_for] = ACTIONS(3967), - [anon_sym_POUND] = ACTIONS(3967), - [anon_sym_asm] = ACTIONS(3967), - [anon_sym_AT_LBRACK] = ACTIONS(3967), - [sym___double_quote] = ACTIONS(3967), - [sym___single_quote] = ACTIONS(3967), - [sym___c_double_quote] = ACTIONS(3967), - [sym___c_single_quote] = ACTIONS(3967), - [sym___r_double_quote] = ACTIONS(3967), - [sym___r_single_quote] = ACTIONS(3967), + [ts_builtin_sym_end] = ACTIONS(3962), + [sym_identifier] = ACTIONS(3964), + [anon_sym_LF] = ACTIONS(3964), + [anon_sym_CR] = ACTIONS(3964), + [anon_sym_CR_LF] = ACTIONS(3964), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3964), + [anon_sym_LBRACE] = ACTIONS(3964), + [anon_sym_const] = ACTIONS(3964), + [anon_sym_LPAREN] = ACTIONS(3964), + [anon_sym___global] = ACTIONS(3964), + [anon_sym_type] = ACTIONS(3964), + [anon_sym_fn] = ACTIONS(3964), + [anon_sym_PLUS] = ACTIONS(3964), + [anon_sym_DASH] = ACTIONS(3964), + [anon_sym_STAR] = ACTIONS(3964), + [anon_sym_struct] = ACTIONS(3964), + [anon_sym_union] = ACTIONS(3964), + [anon_sym_pub] = ACTIONS(3964), + [anon_sym_mut] = ACTIONS(3964), + [anon_sym_enum] = ACTIONS(3964), + [anon_sym_interface] = ACTIONS(3964), + [anon_sym_QMARK] = ACTIONS(3964), + [anon_sym_BANG] = ACTIONS(3964), + [anon_sym_go] = ACTIONS(3964), + [anon_sym_spawn] = ACTIONS(3964), + [anon_sym_json_DOTdecode] = ACTIONS(3964), + [anon_sym_LBRACK2] = ACTIONS(3964), + [anon_sym_TILDE] = ACTIONS(3964), + [anon_sym_CARET] = ACTIONS(3964), + [anon_sym_AMP] = ACTIONS(3964), + [anon_sym_LT_DASH] = ACTIONS(3964), + [sym_none] = ACTIONS(3964), + [sym_true] = ACTIONS(3964), + [sym_false] = ACTIONS(3964), + [sym_nil] = ACTIONS(3964), + [anon_sym_if] = ACTIONS(3964), + [anon_sym_DOLLARif] = ACTIONS(3964), + [anon_sym_match] = ACTIONS(3964), + [anon_sym_select] = ACTIONS(3964), + [anon_sym_lock] = ACTIONS(3964), + [anon_sym_rlock] = ACTIONS(3964), + [anon_sym_unsafe] = ACTIONS(3964), + [anon_sym_sql] = ACTIONS(3964), + [sym_int_literal] = ACTIONS(3964), + [sym_float_literal] = ACTIONS(3964), + [sym_rune_literal] = ACTIONS(3964), + [anon_sym_AT] = ACTIONS(3964), + [anon_sym_shared] = ACTIONS(3964), + [anon_sym_map_LBRACK] = ACTIONS(3964), + [anon_sym_chan] = ACTIONS(3964), + [anon_sym_thread] = ACTIONS(3964), + [anon_sym_atomic] = ACTIONS(3964), + [anon_sym_assert] = ACTIONS(3964), + [anon_sym_defer] = ACTIONS(3964), + [anon_sym_goto] = ACTIONS(3964), + [anon_sym_break] = ACTIONS(3964), + [anon_sym_continue] = ACTIONS(3964), + [anon_sym_return] = ACTIONS(3964), + [anon_sym_DOLLARfor] = ACTIONS(3964), + [anon_sym_for] = ACTIONS(3964), + [anon_sym_POUND] = ACTIONS(3964), + [anon_sym_asm] = ACTIONS(3964), + [anon_sym_AT_LBRACK] = ACTIONS(3964), + [sym___double_quote] = ACTIONS(3964), + [sym___single_quote] = ACTIONS(3964), + [sym___c_double_quote] = ACTIONS(3964), + [sym___c_single_quote] = ACTIONS(3964), + [sym___r_double_quote] = ACTIONS(3964), + [sym___r_single_quote] = ACTIONS(3964), }, [1502] = { - [ts_builtin_sym_end] = ACTIONS(3969), - [sym_identifier] = ACTIONS(3971), - [anon_sym_LF] = ACTIONS(3971), - [anon_sym_CR] = ACTIONS(3971), - [anon_sym_CR_LF] = ACTIONS(3971), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3971), - [anon_sym_LBRACE] = ACTIONS(3971), - [anon_sym_const] = ACTIONS(3971), - [anon_sym_LPAREN] = ACTIONS(3971), - [anon_sym___global] = ACTIONS(3971), - [anon_sym_type] = ACTIONS(3971), - [anon_sym_fn] = ACTIONS(3971), - [anon_sym_PLUS] = ACTIONS(3971), - [anon_sym_DASH] = ACTIONS(3971), - [anon_sym_STAR] = ACTIONS(3971), - [anon_sym_struct] = ACTIONS(3971), - [anon_sym_union] = ACTIONS(3971), - [anon_sym_pub] = ACTIONS(3971), - [anon_sym_mut] = ACTIONS(3971), - [anon_sym_enum] = ACTIONS(3971), - [anon_sym_interface] = ACTIONS(3971), - [anon_sym_QMARK] = ACTIONS(3971), - [anon_sym_BANG] = ACTIONS(3971), - [anon_sym_go] = ACTIONS(3971), - [anon_sym_spawn] = ACTIONS(3971), - [anon_sym_json_DOTdecode] = ACTIONS(3971), - [anon_sym_LBRACK2] = ACTIONS(3971), - [anon_sym_TILDE] = ACTIONS(3971), - [anon_sym_CARET] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3971), - [anon_sym_LT_DASH] = ACTIONS(3971), - [sym_none] = ACTIONS(3971), - [sym_true] = ACTIONS(3971), - [sym_false] = ACTIONS(3971), - [sym_nil] = ACTIONS(3971), - [anon_sym_if] = ACTIONS(3971), - [anon_sym_DOLLARif] = ACTIONS(3971), - [anon_sym_match] = ACTIONS(3971), - [anon_sym_select] = ACTIONS(3971), - [anon_sym_lock] = ACTIONS(3971), - [anon_sym_rlock] = ACTIONS(3971), - [anon_sym_unsafe] = ACTIONS(3971), - [anon_sym_sql] = ACTIONS(3971), - [sym_int_literal] = ACTIONS(3971), - [sym_float_literal] = ACTIONS(3971), - [sym_rune_literal] = ACTIONS(3971), - [anon_sym_AT] = ACTIONS(3971), - [anon_sym_shared] = ACTIONS(3971), - [anon_sym_map_LBRACK] = ACTIONS(3971), - [anon_sym_chan] = ACTIONS(3971), - [anon_sym_thread] = ACTIONS(3971), - [anon_sym_atomic] = ACTIONS(3971), - [anon_sym_assert] = ACTIONS(3971), - [anon_sym_defer] = ACTIONS(3971), - [anon_sym_goto] = ACTIONS(3971), - [anon_sym_break] = ACTIONS(3971), - [anon_sym_continue] = ACTIONS(3971), - [anon_sym_return] = ACTIONS(3971), - [anon_sym_DOLLARfor] = ACTIONS(3971), - [anon_sym_for] = ACTIONS(3971), - [anon_sym_POUND] = ACTIONS(3971), - [anon_sym_asm] = ACTIONS(3971), - [anon_sym_AT_LBRACK] = ACTIONS(3971), - [sym___double_quote] = ACTIONS(3971), - [sym___single_quote] = ACTIONS(3971), - [sym___c_double_quote] = ACTIONS(3971), - [sym___c_single_quote] = ACTIONS(3971), - [sym___r_double_quote] = ACTIONS(3971), - [sym___r_single_quote] = ACTIONS(3971), + [ts_builtin_sym_end] = ACTIONS(3966), + [sym_identifier] = ACTIONS(3968), + [anon_sym_LF] = ACTIONS(3968), + [anon_sym_CR] = ACTIONS(3968), + [anon_sym_CR_LF] = ACTIONS(3968), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3968), + [anon_sym_LBRACE] = ACTIONS(3968), + [anon_sym_const] = ACTIONS(3968), + [anon_sym_LPAREN] = ACTIONS(3968), + [anon_sym___global] = ACTIONS(3968), + [anon_sym_type] = ACTIONS(3968), + [anon_sym_fn] = ACTIONS(3968), + [anon_sym_PLUS] = ACTIONS(3968), + [anon_sym_DASH] = ACTIONS(3968), + [anon_sym_STAR] = ACTIONS(3968), + [anon_sym_struct] = ACTIONS(3968), + [anon_sym_union] = ACTIONS(3968), + [anon_sym_pub] = ACTIONS(3968), + [anon_sym_mut] = ACTIONS(3968), + [anon_sym_enum] = ACTIONS(3968), + [anon_sym_interface] = ACTIONS(3968), + [anon_sym_QMARK] = ACTIONS(3968), + [anon_sym_BANG] = ACTIONS(3968), + [anon_sym_go] = ACTIONS(3968), + [anon_sym_spawn] = ACTIONS(3968), + [anon_sym_json_DOTdecode] = ACTIONS(3968), + [anon_sym_LBRACK2] = ACTIONS(3968), + [anon_sym_TILDE] = ACTIONS(3968), + [anon_sym_CARET] = ACTIONS(3968), + [anon_sym_AMP] = ACTIONS(3968), + [anon_sym_LT_DASH] = ACTIONS(3968), + [sym_none] = ACTIONS(3968), + [sym_true] = ACTIONS(3968), + [sym_false] = ACTIONS(3968), + [sym_nil] = ACTIONS(3968), + [anon_sym_if] = ACTIONS(3968), + [anon_sym_DOLLARif] = ACTIONS(3968), + [anon_sym_match] = ACTIONS(3968), + [anon_sym_select] = ACTIONS(3968), + [anon_sym_lock] = ACTIONS(3968), + [anon_sym_rlock] = ACTIONS(3968), + [anon_sym_unsafe] = ACTIONS(3968), + [anon_sym_sql] = ACTIONS(3968), + [sym_int_literal] = ACTIONS(3968), + [sym_float_literal] = ACTIONS(3968), + [sym_rune_literal] = ACTIONS(3968), + [anon_sym_AT] = ACTIONS(3968), + [anon_sym_shared] = ACTIONS(3968), + [anon_sym_map_LBRACK] = ACTIONS(3968), + [anon_sym_chan] = ACTIONS(3968), + [anon_sym_thread] = ACTIONS(3968), + [anon_sym_atomic] = ACTIONS(3968), + [anon_sym_assert] = ACTIONS(3968), + [anon_sym_defer] = ACTIONS(3968), + [anon_sym_goto] = ACTIONS(3968), + [anon_sym_break] = ACTIONS(3968), + [anon_sym_continue] = ACTIONS(3968), + [anon_sym_return] = ACTIONS(3968), + [anon_sym_DOLLARfor] = ACTIONS(3968), + [anon_sym_for] = ACTIONS(3968), + [anon_sym_POUND] = ACTIONS(3968), + [anon_sym_asm] = ACTIONS(3968), + [anon_sym_AT_LBRACK] = ACTIONS(3968), + [sym___double_quote] = ACTIONS(3968), + [sym___single_quote] = ACTIONS(3968), + [sym___c_double_quote] = ACTIONS(3968), + [sym___c_single_quote] = ACTIONS(3968), + [sym___r_double_quote] = ACTIONS(3968), + [sym___r_single_quote] = ACTIONS(3968), }, [1503] = { - [ts_builtin_sym_end] = ACTIONS(3973), - [sym_identifier] = ACTIONS(3975), - [anon_sym_LF] = ACTIONS(3975), - [anon_sym_CR] = ACTIONS(3975), - [anon_sym_CR_LF] = ACTIONS(3975), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3975), - [anon_sym_LBRACE] = ACTIONS(3975), - [anon_sym_const] = ACTIONS(3975), - [anon_sym_LPAREN] = ACTIONS(3975), - [anon_sym___global] = ACTIONS(3975), - [anon_sym_type] = ACTIONS(3975), - [anon_sym_fn] = ACTIONS(3975), - [anon_sym_PLUS] = ACTIONS(3975), - [anon_sym_DASH] = ACTIONS(3975), - [anon_sym_STAR] = ACTIONS(3975), - [anon_sym_struct] = ACTIONS(3975), - [anon_sym_union] = ACTIONS(3975), - [anon_sym_pub] = ACTIONS(3975), - [anon_sym_mut] = ACTIONS(3975), - [anon_sym_enum] = ACTIONS(3975), - [anon_sym_interface] = ACTIONS(3975), - [anon_sym_QMARK] = ACTIONS(3975), - [anon_sym_BANG] = ACTIONS(3975), - [anon_sym_go] = ACTIONS(3975), - [anon_sym_spawn] = ACTIONS(3975), - [anon_sym_json_DOTdecode] = ACTIONS(3975), - [anon_sym_LBRACK2] = ACTIONS(3975), - [anon_sym_TILDE] = ACTIONS(3975), - [anon_sym_CARET] = ACTIONS(3975), - [anon_sym_AMP] = ACTIONS(3975), - [anon_sym_LT_DASH] = ACTIONS(3975), - [sym_none] = ACTIONS(3975), - [sym_true] = ACTIONS(3975), - [sym_false] = ACTIONS(3975), - [sym_nil] = ACTIONS(3975), - [anon_sym_if] = ACTIONS(3975), - [anon_sym_DOLLARif] = ACTIONS(3975), - [anon_sym_match] = ACTIONS(3975), - [anon_sym_select] = ACTIONS(3975), - [anon_sym_lock] = ACTIONS(3975), - [anon_sym_rlock] = ACTIONS(3975), - [anon_sym_unsafe] = ACTIONS(3975), - [anon_sym_sql] = ACTIONS(3975), - [sym_int_literal] = ACTIONS(3975), - [sym_float_literal] = ACTIONS(3975), - [sym_rune_literal] = ACTIONS(3975), - [anon_sym_AT] = ACTIONS(3975), - [anon_sym_shared] = ACTIONS(3975), - [anon_sym_map_LBRACK] = ACTIONS(3975), - [anon_sym_chan] = ACTIONS(3975), - [anon_sym_thread] = ACTIONS(3975), - [anon_sym_atomic] = ACTIONS(3975), - [anon_sym_assert] = ACTIONS(3975), - [anon_sym_defer] = ACTIONS(3975), - [anon_sym_goto] = ACTIONS(3975), - [anon_sym_break] = ACTIONS(3975), - [anon_sym_continue] = ACTIONS(3975), - [anon_sym_return] = ACTIONS(3975), - [anon_sym_DOLLARfor] = ACTIONS(3975), - [anon_sym_for] = ACTIONS(3975), - [anon_sym_POUND] = ACTIONS(3975), - [anon_sym_asm] = ACTIONS(3975), - [anon_sym_AT_LBRACK] = ACTIONS(3975), - [sym___double_quote] = ACTIONS(3975), - [sym___single_quote] = ACTIONS(3975), - [sym___c_double_quote] = ACTIONS(3975), - [sym___c_single_quote] = ACTIONS(3975), - [sym___r_double_quote] = ACTIONS(3975), - [sym___r_single_quote] = ACTIONS(3975), + [ts_builtin_sym_end] = ACTIONS(3970), + [sym_identifier] = ACTIONS(3972), + [anon_sym_LF] = ACTIONS(3972), + [anon_sym_CR] = ACTIONS(3972), + [anon_sym_CR_LF] = ACTIONS(3972), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3972), + [anon_sym_LBRACE] = ACTIONS(3972), + [anon_sym_const] = ACTIONS(3972), + [anon_sym_LPAREN] = ACTIONS(3972), + [anon_sym___global] = ACTIONS(3972), + [anon_sym_type] = ACTIONS(3972), + [anon_sym_fn] = ACTIONS(3972), + [anon_sym_PLUS] = ACTIONS(3972), + [anon_sym_DASH] = ACTIONS(3972), + [anon_sym_STAR] = ACTIONS(3972), + [anon_sym_struct] = ACTIONS(3972), + [anon_sym_union] = ACTIONS(3972), + [anon_sym_pub] = ACTIONS(3972), + [anon_sym_mut] = ACTIONS(3972), + [anon_sym_enum] = ACTIONS(3972), + [anon_sym_interface] = ACTIONS(3972), + [anon_sym_QMARK] = ACTIONS(3972), + [anon_sym_BANG] = ACTIONS(3972), + [anon_sym_go] = ACTIONS(3972), + [anon_sym_spawn] = ACTIONS(3972), + [anon_sym_json_DOTdecode] = ACTIONS(3972), + [anon_sym_LBRACK2] = ACTIONS(3972), + [anon_sym_TILDE] = ACTIONS(3972), + [anon_sym_CARET] = ACTIONS(3972), + [anon_sym_AMP] = ACTIONS(3972), + [anon_sym_LT_DASH] = ACTIONS(3972), + [sym_none] = ACTIONS(3972), + [sym_true] = ACTIONS(3972), + [sym_false] = ACTIONS(3972), + [sym_nil] = ACTIONS(3972), + [anon_sym_if] = ACTIONS(3972), + [anon_sym_DOLLARif] = ACTIONS(3972), + [anon_sym_match] = ACTIONS(3972), + [anon_sym_select] = ACTIONS(3972), + [anon_sym_lock] = ACTIONS(3972), + [anon_sym_rlock] = ACTIONS(3972), + [anon_sym_unsafe] = ACTIONS(3972), + [anon_sym_sql] = ACTIONS(3972), + [sym_int_literal] = ACTIONS(3972), + [sym_float_literal] = ACTIONS(3972), + [sym_rune_literal] = ACTIONS(3972), + [anon_sym_AT] = ACTIONS(3972), + [anon_sym_shared] = ACTIONS(3972), + [anon_sym_map_LBRACK] = ACTIONS(3972), + [anon_sym_chan] = ACTIONS(3972), + [anon_sym_thread] = ACTIONS(3972), + [anon_sym_atomic] = ACTIONS(3972), + [anon_sym_assert] = ACTIONS(3972), + [anon_sym_defer] = ACTIONS(3972), + [anon_sym_goto] = ACTIONS(3972), + [anon_sym_break] = ACTIONS(3972), + [anon_sym_continue] = ACTIONS(3972), + [anon_sym_return] = ACTIONS(3972), + [anon_sym_DOLLARfor] = ACTIONS(3972), + [anon_sym_for] = ACTIONS(3972), + [anon_sym_POUND] = ACTIONS(3972), + [anon_sym_asm] = ACTIONS(3972), + [anon_sym_AT_LBRACK] = ACTIONS(3972), + [sym___double_quote] = ACTIONS(3972), + [sym___single_quote] = ACTIONS(3972), + [sym___c_double_quote] = ACTIONS(3972), + [sym___c_single_quote] = ACTIONS(3972), + [sym___r_double_quote] = ACTIONS(3972), + [sym___r_single_quote] = ACTIONS(3972), }, [1504] = { - [ts_builtin_sym_end] = ACTIONS(3977), - [sym_identifier] = ACTIONS(3979), - [anon_sym_LF] = ACTIONS(3979), - [anon_sym_CR] = ACTIONS(3979), - [anon_sym_CR_LF] = ACTIONS(3979), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3979), - [anon_sym_LBRACE] = ACTIONS(3979), - [anon_sym_const] = ACTIONS(3979), - [anon_sym_LPAREN] = ACTIONS(3979), - [anon_sym___global] = ACTIONS(3979), - [anon_sym_type] = ACTIONS(3979), - [anon_sym_fn] = ACTIONS(3979), - [anon_sym_PLUS] = ACTIONS(3979), - [anon_sym_DASH] = ACTIONS(3979), - [anon_sym_STAR] = ACTIONS(3979), - [anon_sym_struct] = ACTIONS(3979), - [anon_sym_union] = ACTIONS(3979), - [anon_sym_pub] = ACTIONS(3979), - [anon_sym_mut] = ACTIONS(3979), - [anon_sym_enum] = ACTIONS(3979), - [anon_sym_interface] = ACTIONS(3979), - [anon_sym_QMARK] = ACTIONS(3979), - [anon_sym_BANG] = ACTIONS(3979), - [anon_sym_go] = ACTIONS(3979), - [anon_sym_spawn] = ACTIONS(3979), - [anon_sym_json_DOTdecode] = ACTIONS(3979), - [anon_sym_LBRACK2] = ACTIONS(3979), - [anon_sym_TILDE] = ACTIONS(3979), - [anon_sym_CARET] = ACTIONS(3979), - [anon_sym_AMP] = ACTIONS(3979), - [anon_sym_LT_DASH] = ACTIONS(3979), - [sym_none] = ACTIONS(3979), - [sym_true] = ACTIONS(3979), - [sym_false] = ACTIONS(3979), - [sym_nil] = ACTIONS(3979), - [anon_sym_if] = ACTIONS(3979), - [anon_sym_DOLLARif] = ACTIONS(3979), - [anon_sym_match] = ACTIONS(3979), - [anon_sym_select] = ACTIONS(3979), - [anon_sym_lock] = ACTIONS(3979), - [anon_sym_rlock] = ACTIONS(3979), - [anon_sym_unsafe] = ACTIONS(3979), - [anon_sym_sql] = ACTIONS(3979), - [sym_int_literal] = ACTIONS(3979), - [sym_float_literal] = ACTIONS(3979), - [sym_rune_literal] = ACTIONS(3979), - [anon_sym_AT] = ACTIONS(3979), - [anon_sym_shared] = ACTIONS(3979), - [anon_sym_map_LBRACK] = ACTIONS(3979), - [anon_sym_chan] = ACTIONS(3979), - [anon_sym_thread] = ACTIONS(3979), - [anon_sym_atomic] = ACTIONS(3979), - [anon_sym_assert] = ACTIONS(3979), - [anon_sym_defer] = ACTIONS(3979), - [anon_sym_goto] = ACTIONS(3979), - [anon_sym_break] = ACTIONS(3979), - [anon_sym_continue] = ACTIONS(3979), - [anon_sym_return] = ACTIONS(3979), - [anon_sym_DOLLARfor] = ACTIONS(3979), - [anon_sym_for] = ACTIONS(3979), - [anon_sym_POUND] = ACTIONS(3979), - [anon_sym_asm] = ACTIONS(3979), - [anon_sym_AT_LBRACK] = ACTIONS(3979), - [sym___double_quote] = ACTIONS(3979), - [sym___single_quote] = ACTIONS(3979), - [sym___c_double_quote] = ACTIONS(3979), - [sym___c_single_quote] = ACTIONS(3979), - [sym___r_double_quote] = ACTIONS(3979), - [sym___r_single_quote] = ACTIONS(3979), + [ts_builtin_sym_end] = ACTIONS(3974), + [sym_identifier] = ACTIONS(3976), + [anon_sym_LF] = ACTIONS(3976), + [anon_sym_CR] = ACTIONS(3976), + [anon_sym_CR_LF] = ACTIONS(3976), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3976), + [anon_sym_LBRACE] = ACTIONS(3976), + [anon_sym_const] = ACTIONS(3976), + [anon_sym_LPAREN] = ACTIONS(3976), + [anon_sym___global] = ACTIONS(3976), + [anon_sym_type] = ACTIONS(3976), + [anon_sym_fn] = ACTIONS(3976), + [anon_sym_PLUS] = ACTIONS(3976), + [anon_sym_DASH] = ACTIONS(3976), + [anon_sym_STAR] = ACTIONS(3976), + [anon_sym_struct] = ACTIONS(3976), + [anon_sym_union] = ACTIONS(3976), + [anon_sym_pub] = ACTIONS(3976), + [anon_sym_mut] = ACTIONS(3976), + [anon_sym_enum] = ACTIONS(3976), + [anon_sym_interface] = ACTIONS(3976), + [anon_sym_QMARK] = ACTIONS(3976), + [anon_sym_BANG] = ACTIONS(3976), + [anon_sym_go] = ACTIONS(3976), + [anon_sym_spawn] = ACTIONS(3976), + [anon_sym_json_DOTdecode] = ACTIONS(3976), + [anon_sym_LBRACK2] = ACTIONS(3976), + [anon_sym_TILDE] = ACTIONS(3976), + [anon_sym_CARET] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3976), + [anon_sym_LT_DASH] = ACTIONS(3976), + [sym_none] = ACTIONS(3976), + [sym_true] = ACTIONS(3976), + [sym_false] = ACTIONS(3976), + [sym_nil] = ACTIONS(3976), + [anon_sym_if] = ACTIONS(3976), + [anon_sym_DOLLARif] = ACTIONS(3976), + [anon_sym_match] = ACTIONS(3976), + [anon_sym_select] = ACTIONS(3976), + [anon_sym_lock] = ACTIONS(3976), + [anon_sym_rlock] = ACTIONS(3976), + [anon_sym_unsafe] = ACTIONS(3976), + [anon_sym_sql] = ACTIONS(3976), + [sym_int_literal] = ACTIONS(3976), + [sym_float_literal] = ACTIONS(3976), + [sym_rune_literal] = ACTIONS(3976), + [anon_sym_AT] = ACTIONS(3976), + [anon_sym_shared] = ACTIONS(3976), + [anon_sym_map_LBRACK] = ACTIONS(3976), + [anon_sym_chan] = ACTIONS(3976), + [anon_sym_thread] = ACTIONS(3976), + [anon_sym_atomic] = ACTIONS(3976), + [anon_sym_assert] = ACTIONS(3976), + [anon_sym_defer] = ACTIONS(3976), + [anon_sym_goto] = ACTIONS(3976), + [anon_sym_break] = ACTIONS(3976), + [anon_sym_continue] = ACTIONS(3976), + [anon_sym_return] = ACTIONS(3976), + [anon_sym_DOLLARfor] = ACTIONS(3976), + [anon_sym_for] = ACTIONS(3976), + [anon_sym_POUND] = ACTIONS(3976), + [anon_sym_asm] = ACTIONS(3976), + [anon_sym_AT_LBRACK] = ACTIONS(3976), + [sym___double_quote] = ACTIONS(3976), + [sym___single_quote] = ACTIONS(3976), + [sym___c_double_quote] = ACTIONS(3976), + [sym___c_single_quote] = ACTIONS(3976), + [sym___r_double_quote] = ACTIONS(3976), + [sym___r_single_quote] = ACTIONS(3976), }, [1505] = { - [ts_builtin_sym_end] = ACTIONS(3981), - [sym_identifier] = ACTIONS(3983), - [anon_sym_LF] = ACTIONS(3983), - [anon_sym_CR] = ACTIONS(3983), - [anon_sym_CR_LF] = ACTIONS(3983), - [sym_comment] = ACTIONS(487), - [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_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_AT] = 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), - [sym___double_quote] = ACTIONS(3983), - [sym___single_quote] = ACTIONS(3983), - [sym___c_double_quote] = ACTIONS(3983), - [sym___c_single_quote] = ACTIONS(3983), - [sym___r_double_quote] = ACTIONS(3983), - [sym___r_single_quote] = ACTIONS(3983), + [ts_builtin_sym_end] = ACTIONS(3978), + [sym_identifier] = ACTIONS(3980), + [anon_sym_LF] = ACTIONS(3980), + [anon_sym_CR] = ACTIONS(3980), + [anon_sym_CR_LF] = ACTIONS(3980), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3980), + [anon_sym_LBRACE] = ACTIONS(3980), + [anon_sym_const] = ACTIONS(3980), + [anon_sym_LPAREN] = ACTIONS(3980), + [anon_sym___global] = ACTIONS(3980), + [anon_sym_type] = ACTIONS(3980), + [anon_sym_fn] = ACTIONS(3980), + [anon_sym_PLUS] = ACTIONS(3980), + [anon_sym_DASH] = ACTIONS(3980), + [anon_sym_STAR] = ACTIONS(3980), + [anon_sym_struct] = ACTIONS(3980), + [anon_sym_union] = ACTIONS(3980), + [anon_sym_pub] = ACTIONS(3980), + [anon_sym_mut] = ACTIONS(3980), + [anon_sym_enum] = ACTIONS(3980), + [anon_sym_interface] = ACTIONS(3980), + [anon_sym_QMARK] = ACTIONS(3980), + [anon_sym_BANG] = ACTIONS(3980), + [anon_sym_go] = ACTIONS(3980), + [anon_sym_spawn] = ACTIONS(3980), + [anon_sym_json_DOTdecode] = ACTIONS(3980), + [anon_sym_LBRACK2] = ACTIONS(3980), + [anon_sym_TILDE] = ACTIONS(3980), + [anon_sym_CARET] = ACTIONS(3980), + [anon_sym_AMP] = ACTIONS(3980), + [anon_sym_LT_DASH] = ACTIONS(3980), + [sym_none] = ACTIONS(3980), + [sym_true] = ACTIONS(3980), + [sym_false] = ACTIONS(3980), + [sym_nil] = ACTIONS(3980), + [anon_sym_if] = ACTIONS(3980), + [anon_sym_DOLLARif] = ACTIONS(3980), + [anon_sym_match] = ACTIONS(3980), + [anon_sym_select] = ACTIONS(3980), + [anon_sym_lock] = ACTIONS(3980), + [anon_sym_rlock] = ACTIONS(3980), + [anon_sym_unsafe] = ACTIONS(3980), + [anon_sym_sql] = ACTIONS(3980), + [sym_int_literal] = ACTIONS(3980), + [sym_float_literal] = ACTIONS(3980), + [sym_rune_literal] = ACTIONS(3980), + [anon_sym_AT] = ACTIONS(3980), + [anon_sym_shared] = ACTIONS(3980), + [anon_sym_map_LBRACK] = ACTIONS(3980), + [anon_sym_chan] = ACTIONS(3980), + [anon_sym_thread] = ACTIONS(3980), + [anon_sym_atomic] = ACTIONS(3980), + [anon_sym_assert] = ACTIONS(3980), + [anon_sym_defer] = ACTIONS(3980), + [anon_sym_goto] = ACTIONS(3980), + [anon_sym_break] = ACTIONS(3980), + [anon_sym_continue] = ACTIONS(3980), + [anon_sym_return] = ACTIONS(3980), + [anon_sym_DOLLARfor] = ACTIONS(3980), + [anon_sym_for] = ACTIONS(3980), + [anon_sym_POUND] = ACTIONS(3980), + [anon_sym_asm] = ACTIONS(3980), + [anon_sym_AT_LBRACK] = ACTIONS(3980), + [sym___double_quote] = ACTIONS(3980), + [sym___single_quote] = ACTIONS(3980), + [sym___c_double_quote] = ACTIONS(3980), + [sym___c_single_quote] = ACTIONS(3980), + [sym___r_double_quote] = ACTIONS(3980), + [sym___r_single_quote] = ACTIONS(3980), }, [1506] = { - [ts_builtin_sym_end] = ACTIONS(3985), - [sym_identifier] = ACTIONS(3987), - [anon_sym_LF] = ACTIONS(3987), - [anon_sym_CR] = ACTIONS(3987), - [anon_sym_CR_LF] = ACTIONS(3987), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3987), - [anon_sym_LBRACE] = ACTIONS(3987), - [anon_sym_const] = ACTIONS(3987), - [anon_sym_LPAREN] = ACTIONS(3987), - [anon_sym___global] = ACTIONS(3987), - [anon_sym_type] = ACTIONS(3987), - [anon_sym_fn] = ACTIONS(3987), - [anon_sym_PLUS] = ACTIONS(3987), - [anon_sym_DASH] = ACTIONS(3987), - [anon_sym_STAR] = ACTIONS(3987), - [anon_sym_struct] = ACTIONS(3987), - [anon_sym_union] = ACTIONS(3987), - [anon_sym_pub] = ACTIONS(3987), - [anon_sym_mut] = ACTIONS(3987), - [anon_sym_enum] = ACTIONS(3987), - [anon_sym_interface] = ACTIONS(3987), - [anon_sym_QMARK] = ACTIONS(3987), - [anon_sym_BANG] = ACTIONS(3987), - [anon_sym_go] = ACTIONS(3987), - [anon_sym_spawn] = ACTIONS(3987), - [anon_sym_json_DOTdecode] = ACTIONS(3987), - [anon_sym_LBRACK2] = ACTIONS(3987), - [anon_sym_TILDE] = ACTIONS(3987), - [anon_sym_CARET] = ACTIONS(3987), - [anon_sym_AMP] = ACTIONS(3987), - [anon_sym_LT_DASH] = ACTIONS(3987), - [sym_none] = ACTIONS(3987), - [sym_true] = ACTIONS(3987), - [sym_false] = ACTIONS(3987), - [sym_nil] = ACTIONS(3987), - [anon_sym_if] = ACTIONS(3987), - [anon_sym_DOLLARif] = ACTIONS(3987), - [anon_sym_match] = ACTIONS(3987), - [anon_sym_select] = ACTIONS(3987), - [anon_sym_lock] = ACTIONS(3987), - [anon_sym_rlock] = ACTIONS(3987), - [anon_sym_unsafe] = ACTIONS(3987), - [anon_sym_sql] = ACTIONS(3987), - [sym_int_literal] = ACTIONS(3987), - [sym_float_literal] = ACTIONS(3987), - [sym_rune_literal] = ACTIONS(3987), - [anon_sym_AT] = ACTIONS(3987), - [anon_sym_shared] = ACTIONS(3987), - [anon_sym_map_LBRACK] = ACTIONS(3987), - [anon_sym_chan] = ACTIONS(3987), - [anon_sym_thread] = ACTIONS(3987), - [anon_sym_atomic] = ACTIONS(3987), - [anon_sym_assert] = ACTIONS(3987), - [anon_sym_defer] = ACTIONS(3987), - [anon_sym_goto] = ACTIONS(3987), - [anon_sym_break] = ACTIONS(3987), - [anon_sym_continue] = ACTIONS(3987), - [anon_sym_return] = ACTIONS(3987), - [anon_sym_DOLLARfor] = ACTIONS(3987), - [anon_sym_for] = ACTIONS(3987), - [anon_sym_POUND] = ACTIONS(3987), - [anon_sym_asm] = ACTIONS(3987), - [anon_sym_AT_LBRACK] = ACTIONS(3987), - [sym___double_quote] = ACTIONS(3987), - [sym___single_quote] = ACTIONS(3987), - [sym___c_double_quote] = ACTIONS(3987), - [sym___c_single_quote] = ACTIONS(3987), - [sym___r_double_quote] = ACTIONS(3987), - [sym___r_single_quote] = ACTIONS(3987), + [ts_builtin_sym_end] = ACTIONS(3982), + [sym_identifier] = ACTIONS(3984), + [anon_sym_LF] = ACTIONS(3984), + [anon_sym_CR] = ACTIONS(3984), + [anon_sym_CR_LF] = ACTIONS(3984), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3984), + [anon_sym_LBRACE] = ACTIONS(3984), + [anon_sym_const] = ACTIONS(3984), + [anon_sym_LPAREN] = ACTIONS(3984), + [anon_sym___global] = ACTIONS(3984), + [anon_sym_type] = ACTIONS(3984), + [anon_sym_fn] = ACTIONS(3984), + [anon_sym_PLUS] = ACTIONS(3984), + [anon_sym_DASH] = ACTIONS(3984), + [anon_sym_STAR] = ACTIONS(3984), + [anon_sym_struct] = ACTIONS(3984), + [anon_sym_union] = ACTIONS(3984), + [anon_sym_pub] = ACTIONS(3984), + [anon_sym_mut] = ACTIONS(3984), + [anon_sym_enum] = ACTIONS(3984), + [anon_sym_interface] = ACTIONS(3984), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_BANG] = ACTIONS(3984), + [anon_sym_go] = ACTIONS(3984), + [anon_sym_spawn] = ACTIONS(3984), + [anon_sym_json_DOTdecode] = ACTIONS(3984), + [anon_sym_LBRACK2] = ACTIONS(3984), + [anon_sym_TILDE] = ACTIONS(3984), + [anon_sym_CARET] = ACTIONS(3984), + [anon_sym_AMP] = ACTIONS(3984), + [anon_sym_LT_DASH] = ACTIONS(3984), + [sym_none] = ACTIONS(3984), + [sym_true] = ACTIONS(3984), + [sym_false] = ACTIONS(3984), + [sym_nil] = ACTIONS(3984), + [anon_sym_if] = ACTIONS(3984), + [anon_sym_DOLLARif] = ACTIONS(3984), + [anon_sym_match] = ACTIONS(3984), + [anon_sym_select] = ACTIONS(3984), + [anon_sym_lock] = ACTIONS(3984), + [anon_sym_rlock] = ACTIONS(3984), + [anon_sym_unsafe] = ACTIONS(3984), + [anon_sym_sql] = ACTIONS(3984), + [sym_int_literal] = ACTIONS(3984), + [sym_float_literal] = ACTIONS(3984), + [sym_rune_literal] = ACTIONS(3984), + [anon_sym_AT] = ACTIONS(3984), + [anon_sym_shared] = ACTIONS(3984), + [anon_sym_map_LBRACK] = ACTIONS(3984), + [anon_sym_chan] = ACTIONS(3984), + [anon_sym_thread] = ACTIONS(3984), + [anon_sym_atomic] = ACTIONS(3984), + [anon_sym_assert] = ACTIONS(3984), + [anon_sym_defer] = ACTIONS(3984), + [anon_sym_goto] = ACTIONS(3984), + [anon_sym_break] = ACTIONS(3984), + [anon_sym_continue] = ACTIONS(3984), + [anon_sym_return] = ACTIONS(3984), + [anon_sym_DOLLARfor] = ACTIONS(3984), + [anon_sym_for] = ACTIONS(3984), + [anon_sym_POUND] = ACTIONS(3984), + [anon_sym_asm] = ACTIONS(3984), + [anon_sym_AT_LBRACK] = ACTIONS(3984), + [sym___double_quote] = ACTIONS(3984), + [sym___single_quote] = ACTIONS(3984), + [sym___c_double_quote] = ACTIONS(3984), + [sym___c_single_quote] = ACTIONS(3984), + [sym___r_double_quote] = ACTIONS(3984), + [sym___r_single_quote] = ACTIONS(3984), }, [1507] = { - [ts_builtin_sym_end] = ACTIONS(3989), - [sym_identifier] = ACTIONS(3991), - [anon_sym_LF] = ACTIONS(3991), - [anon_sym_CR] = ACTIONS(3991), - [anon_sym_CR_LF] = ACTIONS(3991), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3991), - [anon_sym_const] = ACTIONS(3991), - [anon_sym_LPAREN] = ACTIONS(3991), - [anon_sym___global] = ACTIONS(3991), - [anon_sym_type] = ACTIONS(3991), - [anon_sym_fn] = ACTIONS(3991), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(3991), - [anon_sym_struct] = ACTIONS(3991), - [anon_sym_union] = ACTIONS(3991), - [anon_sym_pub] = ACTIONS(3991), - [anon_sym_mut] = ACTIONS(3991), - [anon_sym_enum] = ACTIONS(3991), - [anon_sym_interface] = ACTIONS(3991), - [anon_sym_QMARK] = ACTIONS(3991), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_go] = ACTIONS(3991), - [anon_sym_spawn] = ACTIONS(3991), - [anon_sym_json_DOTdecode] = ACTIONS(3991), - [anon_sym_LBRACK2] = ACTIONS(3991), - [anon_sym_TILDE] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_DASH] = ACTIONS(3991), - [sym_none] = ACTIONS(3991), - [sym_true] = ACTIONS(3991), - [sym_false] = ACTIONS(3991), - [sym_nil] = ACTIONS(3991), - [anon_sym_if] = ACTIONS(3991), - [anon_sym_DOLLARif] = ACTIONS(3991), - [anon_sym_match] = ACTIONS(3991), - [anon_sym_select] = ACTIONS(3991), - [anon_sym_lock] = ACTIONS(3991), - [anon_sym_rlock] = ACTIONS(3991), - [anon_sym_unsafe] = ACTIONS(3991), - [anon_sym_sql] = ACTIONS(3991), - [sym_int_literal] = ACTIONS(3991), - [sym_float_literal] = ACTIONS(3991), - [sym_rune_literal] = ACTIONS(3991), - [anon_sym_AT] = ACTIONS(3991), - [anon_sym_shared] = ACTIONS(3991), - [anon_sym_map_LBRACK] = ACTIONS(3991), - [anon_sym_chan] = ACTIONS(3991), - [anon_sym_thread] = ACTIONS(3991), - [anon_sym_atomic] = ACTIONS(3991), - [anon_sym_assert] = ACTIONS(3991), - [anon_sym_defer] = ACTIONS(3991), - [anon_sym_goto] = ACTIONS(3991), - [anon_sym_break] = ACTIONS(3991), - [anon_sym_continue] = ACTIONS(3991), - [anon_sym_return] = ACTIONS(3991), - [anon_sym_DOLLARfor] = ACTIONS(3991), - [anon_sym_for] = ACTIONS(3991), - [anon_sym_POUND] = ACTIONS(3991), - [anon_sym_asm] = ACTIONS(3991), - [anon_sym_AT_LBRACK] = ACTIONS(3991), - [sym___double_quote] = ACTIONS(3991), - [sym___single_quote] = ACTIONS(3991), - [sym___c_double_quote] = ACTIONS(3991), - [sym___c_single_quote] = ACTIONS(3991), - [sym___r_double_quote] = ACTIONS(3991), - [sym___r_single_quote] = ACTIONS(3991), + [ts_builtin_sym_end] = ACTIONS(3986), + [sym_identifier] = ACTIONS(3988), + [anon_sym_LF] = ACTIONS(3988), + [anon_sym_CR] = ACTIONS(3988), + [anon_sym_CR_LF] = ACTIONS(3988), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3988), + [anon_sym_LBRACE] = ACTIONS(3988), + [anon_sym_const] = ACTIONS(3988), + [anon_sym_LPAREN] = ACTIONS(3988), + [anon_sym___global] = ACTIONS(3988), + [anon_sym_type] = ACTIONS(3988), + [anon_sym_fn] = ACTIONS(3988), + [anon_sym_PLUS] = ACTIONS(3988), + [anon_sym_DASH] = ACTIONS(3988), + [anon_sym_STAR] = ACTIONS(3988), + [anon_sym_struct] = ACTIONS(3988), + [anon_sym_union] = ACTIONS(3988), + [anon_sym_pub] = ACTIONS(3988), + [anon_sym_mut] = ACTIONS(3988), + [anon_sym_enum] = ACTIONS(3988), + [anon_sym_interface] = ACTIONS(3988), + [anon_sym_QMARK] = ACTIONS(3988), + [anon_sym_BANG] = ACTIONS(3988), + [anon_sym_go] = ACTIONS(3988), + [anon_sym_spawn] = ACTIONS(3988), + [anon_sym_json_DOTdecode] = ACTIONS(3988), + [anon_sym_LBRACK2] = ACTIONS(3988), + [anon_sym_TILDE] = ACTIONS(3988), + [anon_sym_CARET] = ACTIONS(3988), + [anon_sym_AMP] = ACTIONS(3988), + [anon_sym_LT_DASH] = ACTIONS(3988), + [sym_none] = ACTIONS(3988), + [sym_true] = ACTIONS(3988), + [sym_false] = ACTIONS(3988), + [sym_nil] = ACTIONS(3988), + [anon_sym_if] = ACTIONS(3988), + [anon_sym_DOLLARif] = ACTIONS(3988), + [anon_sym_match] = ACTIONS(3988), + [anon_sym_select] = ACTIONS(3988), + [anon_sym_lock] = ACTIONS(3988), + [anon_sym_rlock] = ACTIONS(3988), + [anon_sym_unsafe] = ACTIONS(3988), + [anon_sym_sql] = ACTIONS(3988), + [sym_int_literal] = ACTIONS(3988), + [sym_float_literal] = ACTIONS(3988), + [sym_rune_literal] = ACTIONS(3988), + [anon_sym_AT] = ACTIONS(3988), + [anon_sym_shared] = ACTIONS(3988), + [anon_sym_map_LBRACK] = ACTIONS(3988), + [anon_sym_chan] = ACTIONS(3988), + [anon_sym_thread] = ACTIONS(3988), + [anon_sym_atomic] = ACTIONS(3988), + [anon_sym_assert] = ACTIONS(3988), + [anon_sym_defer] = ACTIONS(3988), + [anon_sym_goto] = ACTIONS(3988), + [anon_sym_break] = ACTIONS(3988), + [anon_sym_continue] = ACTIONS(3988), + [anon_sym_return] = ACTIONS(3988), + [anon_sym_DOLLARfor] = ACTIONS(3988), + [anon_sym_for] = ACTIONS(3988), + [anon_sym_POUND] = ACTIONS(3988), + [anon_sym_asm] = ACTIONS(3988), + [anon_sym_AT_LBRACK] = ACTIONS(3988), + [sym___double_quote] = ACTIONS(3988), + [sym___single_quote] = ACTIONS(3988), + [sym___c_double_quote] = ACTIONS(3988), + [sym___c_single_quote] = ACTIONS(3988), + [sym___r_double_quote] = ACTIONS(3988), + [sym___r_single_quote] = ACTIONS(3988), }, [1508] = { - [ts_builtin_sym_end] = ACTIONS(3993), - [sym_identifier] = ACTIONS(3995), - [anon_sym_LF] = ACTIONS(3995), - [anon_sym_CR] = ACTIONS(3995), - [anon_sym_CR_LF] = ACTIONS(3995), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3995), - [anon_sym_LBRACE] = ACTIONS(3995), - [anon_sym_const] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(3995), - [anon_sym___global] = ACTIONS(3995), - [anon_sym_type] = ACTIONS(3995), - [anon_sym_fn] = ACTIONS(3995), - [anon_sym_PLUS] = ACTIONS(3995), - [anon_sym_DASH] = ACTIONS(3995), - [anon_sym_STAR] = ACTIONS(3995), - [anon_sym_struct] = ACTIONS(3995), - [anon_sym_union] = ACTIONS(3995), - [anon_sym_pub] = ACTIONS(3995), - [anon_sym_mut] = ACTIONS(3995), - [anon_sym_enum] = ACTIONS(3995), - [anon_sym_interface] = ACTIONS(3995), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_BANG] = ACTIONS(3995), - [anon_sym_go] = ACTIONS(3995), - [anon_sym_spawn] = ACTIONS(3995), - [anon_sym_json_DOTdecode] = ACTIONS(3995), - [anon_sym_LBRACK2] = ACTIONS(3995), - [anon_sym_TILDE] = ACTIONS(3995), - [anon_sym_CARET] = ACTIONS(3995), - [anon_sym_AMP] = ACTIONS(3995), - [anon_sym_LT_DASH] = ACTIONS(3995), - [sym_none] = ACTIONS(3995), - [sym_true] = ACTIONS(3995), - [sym_false] = ACTIONS(3995), - [sym_nil] = ACTIONS(3995), - [anon_sym_if] = ACTIONS(3995), - [anon_sym_DOLLARif] = ACTIONS(3995), - [anon_sym_match] = ACTIONS(3995), - [anon_sym_select] = ACTIONS(3995), - [anon_sym_lock] = ACTIONS(3995), - [anon_sym_rlock] = ACTIONS(3995), - [anon_sym_unsafe] = ACTIONS(3995), - [anon_sym_sql] = ACTIONS(3995), - [sym_int_literal] = ACTIONS(3995), - [sym_float_literal] = ACTIONS(3995), - [sym_rune_literal] = ACTIONS(3995), - [anon_sym_AT] = ACTIONS(3995), - [anon_sym_shared] = ACTIONS(3995), - [anon_sym_map_LBRACK] = ACTIONS(3995), - [anon_sym_chan] = ACTIONS(3995), - [anon_sym_thread] = ACTIONS(3995), - [anon_sym_atomic] = ACTIONS(3995), - [anon_sym_assert] = ACTIONS(3995), - [anon_sym_defer] = ACTIONS(3995), - [anon_sym_goto] = ACTIONS(3995), - [anon_sym_break] = ACTIONS(3995), - [anon_sym_continue] = ACTIONS(3995), - [anon_sym_return] = ACTIONS(3995), - [anon_sym_DOLLARfor] = ACTIONS(3995), - [anon_sym_for] = ACTIONS(3995), - [anon_sym_POUND] = ACTIONS(3995), - [anon_sym_asm] = ACTIONS(3995), - [anon_sym_AT_LBRACK] = ACTIONS(3995), - [sym___double_quote] = ACTIONS(3995), - [sym___single_quote] = ACTIONS(3995), - [sym___c_double_quote] = ACTIONS(3995), - [sym___c_single_quote] = ACTIONS(3995), - [sym___r_double_quote] = ACTIONS(3995), - [sym___r_single_quote] = ACTIONS(3995), + [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), + [sym_comment] = ACTIONS(493), + [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_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_AT] = 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), + [sym___double_quote] = ACTIONS(3992), + [sym___single_quote] = ACTIONS(3992), + [sym___c_double_quote] = ACTIONS(3992), + [sym___c_single_quote] = ACTIONS(3992), + [sym___r_double_quote] = ACTIONS(3992), + [sym___r_single_quote] = ACTIONS(3992), }, [1509] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_COMMA] = ACTIONS(583), - [anon_sym_LPAREN] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(583), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(583), - [anon_sym_BANG_EQ] = ACTIONS(583), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_DOT_DOT_DOT] = ACTIONS(583), - [anon_sym_LBRACK] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(583), - [anon_sym_AMP_CARET] = ACTIONS(583), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE_PIPE] = ACTIONS(583), - [anon_sym_or] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(583), - [anon_sym_POUND_LBRACK] = ACTIONS(583), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(583), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(583), - [anon_sym_COLON_EQ] = ACTIONS(583), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(585), + [ts_builtin_sym_end] = ACTIONS(3994), + [sym_identifier] = ACTIONS(3996), + [anon_sym_LF] = ACTIONS(3996), + [anon_sym_CR] = ACTIONS(3996), + [anon_sym_CR_LF] = ACTIONS(3996), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3996), + [anon_sym_LBRACE] = ACTIONS(3996), + [anon_sym_const] = ACTIONS(3996), + [anon_sym_LPAREN] = ACTIONS(3996), + [anon_sym___global] = ACTIONS(3996), + [anon_sym_type] = ACTIONS(3996), + [anon_sym_fn] = ACTIONS(3996), + [anon_sym_PLUS] = ACTIONS(3996), + [anon_sym_DASH] = ACTIONS(3996), + [anon_sym_STAR] = ACTIONS(3996), + [anon_sym_struct] = ACTIONS(3996), + [anon_sym_union] = ACTIONS(3996), + [anon_sym_pub] = ACTIONS(3996), + [anon_sym_mut] = ACTIONS(3996), + [anon_sym_enum] = ACTIONS(3996), + [anon_sym_interface] = ACTIONS(3996), + [anon_sym_QMARK] = ACTIONS(3996), + [anon_sym_BANG] = ACTIONS(3996), + [anon_sym_go] = ACTIONS(3996), + [anon_sym_spawn] = ACTIONS(3996), + [anon_sym_json_DOTdecode] = ACTIONS(3996), + [anon_sym_LBRACK2] = ACTIONS(3996), + [anon_sym_TILDE] = ACTIONS(3996), + [anon_sym_CARET] = ACTIONS(3996), + [anon_sym_AMP] = ACTIONS(3996), + [anon_sym_LT_DASH] = ACTIONS(3996), + [sym_none] = ACTIONS(3996), + [sym_true] = ACTIONS(3996), + [sym_false] = ACTIONS(3996), + [sym_nil] = ACTIONS(3996), + [anon_sym_if] = ACTIONS(3996), + [anon_sym_DOLLARif] = ACTIONS(3996), + [anon_sym_match] = ACTIONS(3996), + [anon_sym_select] = ACTIONS(3996), + [anon_sym_lock] = ACTIONS(3996), + [anon_sym_rlock] = ACTIONS(3996), + [anon_sym_unsafe] = ACTIONS(3996), + [anon_sym_sql] = ACTIONS(3996), + [sym_int_literal] = ACTIONS(3996), + [sym_float_literal] = ACTIONS(3996), + [sym_rune_literal] = ACTIONS(3996), + [anon_sym_AT] = ACTIONS(3996), + [anon_sym_shared] = ACTIONS(3996), + [anon_sym_map_LBRACK] = ACTIONS(3996), + [anon_sym_chan] = ACTIONS(3996), + [anon_sym_thread] = ACTIONS(3996), + [anon_sym_atomic] = ACTIONS(3996), + [anon_sym_assert] = ACTIONS(3996), + [anon_sym_defer] = ACTIONS(3996), + [anon_sym_goto] = ACTIONS(3996), + [anon_sym_break] = ACTIONS(3996), + [anon_sym_continue] = ACTIONS(3996), + [anon_sym_return] = ACTIONS(3996), + [anon_sym_DOLLARfor] = ACTIONS(3996), + [anon_sym_for] = ACTIONS(3996), + [anon_sym_POUND] = ACTIONS(3996), + [anon_sym_asm] = ACTIONS(3996), + [anon_sym_AT_LBRACK] = ACTIONS(3996), + [sym___double_quote] = ACTIONS(3996), + [sym___single_quote] = ACTIONS(3996), + [sym___c_double_quote] = ACTIONS(3996), + [sym___c_single_quote] = ACTIONS(3996), + [sym___r_double_quote] = ACTIONS(3996), + [sym___r_single_quote] = ACTIONS(3996), }, [1510] = { - [ts_builtin_sym_end] = ACTIONS(3997), - [sym_identifier] = ACTIONS(3999), - [anon_sym_LF] = ACTIONS(3999), - [anon_sym_CR] = ACTIONS(3999), - [anon_sym_CR_LF] = ACTIONS(3999), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3999), - [anon_sym_LBRACE] = ACTIONS(3999), - [anon_sym_const] = ACTIONS(3999), - [anon_sym_LPAREN] = ACTIONS(3999), - [anon_sym___global] = ACTIONS(3999), - [anon_sym_type] = ACTIONS(3999), - [anon_sym_fn] = ACTIONS(3999), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3999), - [anon_sym_struct] = ACTIONS(3999), - [anon_sym_union] = ACTIONS(3999), - [anon_sym_pub] = ACTIONS(3999), - [anon_sym_mut] = ACTIONS(3999), - [anon_sym_enum] = ACTIONS(3999), - [anon_sym_interface] = ACTIONS(3999), - [anon_sym_QMARK] = ACTIONS(3999), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_go] = ACTIONS(3999), - [anon_sym_spawn] = ACTIONS(3999), - [anon_sym_json_DOTdecode] = ACTIONS(3999), - [anon_sym_LBRACK2] = ACTIONS(3999), - [anon_sym_TILDE] = ACTIONS(3999), - [anon_sym_CARET] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_DASH] = ACTIONS(3999), - [sym_none] = ACTIONS(3999), - [sym_true] = ACTIONS(3999), - [sym_false] = ACTIONS(3999), - [sym_nil] = ACTIONS(3999), - [anon_sym_if] = ACTIONS(3999), - [anon_sym_DOLLARif] = ACTIONS(3999), - [anon_sym_match] = ACTIONS(3999), - [anon_sym_select] = ACTIONS(3999), - [anon_sym_lock] = ACTIONS(3999), - [anon_sym_rlock] = ACTIONS(3999), - [anon_sym_unsafe] = ACTIONS(3999), - [anon_sym_sql] = ACTIONS(3999), - [sym_int_literal] = ACTIONS(3999), - [sym_float_literal] = ACTIONS(3999), - [sym_rune_literal] = ACTIONS(3999), - [anon_sym_AT] = ACTIONS(3999), - [anon_sym_shared] = ACTIONS(3999), - [anon_sym_map_LBRACK] = ACTIONS(3999), - [anon_sym_chan] = ACTIONS(3999), - [anon_sym_thread] = ACTIONS(3999), - [anon_sym_atomic] = ACTIONS(3999), - [anon_sym_assert] = ACTIONS(3999), - [anon_sym_defer] = ACTIONS(3999), - [anon_sym_goto] = ACTIONS(3999), - [anon_sym_break] = ACTIONS(3999), - [anon_sym_continue] = ACTIONS(3999), - [anon_sym_return] = ACTIONS(3999), - [anon_sym_DOLLARfor] = ACTIONS(3999), - [anon_sym_for] = ACTIONS(3999), - [anon_sym_POUND] = ACTIONS(3999), - [anon_sym_asm] = ACTIONS(3999), - [anon_sym_AT_LBRACK] = ACTIONS(3999), - [sym___double_quote] = ACTIONS(3999), - [sym___single_quote] = ACTIONS(3999), - [sym___c_double_quote] = ACTIONS(3999), - [sym___c_single_quote] = ACTIONS(3999), - [sym___r_double_quote] = ACTIONS(3999), - [sym___r_single_quote] = ACTIONS(3999), + [ts_builtin_sym_end] = ACTIONS(3998), + [sym_identifier] = ACTIONS(4000), + [anon_sym_LF] = ACTIONS(4000), + [anon_sym_CR] = ACTIONS(4000), + [anon_sym_CR_LF] = ACTIONS(4000), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4000), + [anon_sym_const] = ACTIONS(4000), + [anon_sym_LPAREN] = ACTIONS(4000), + [anon_sym___global] = ACTIONS(4000), + [anon_sym_type] = ACTIONS(4000), + [anon_sym_fn] = ACTIONS(4000), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [anon_sym_struct] = ACTIONS(4000), + [anon_sym_union] = ACTIONS(4000), + [anon_sym_pub] = ACTIONS(4000), + [anon_sym_mut] = ACTIONS(4000), + [anon_sym_enum] = ACTIONS(4000), + [anon_sym_interface] = ACTIONS(4000), + [anon_sym_QMARK] = ACTIONS(4000), + [anon_sym_BANG] = ACTIONS(4000), + [anon_sym_go] = ACTIONS(4000), + [anon_sym_spawn] = ACTIONS(4000), + [anon_sym_json_DOTdecode] = ACTIONS(4000), + [anon_sym_LBRACK2] = ACTIONS(4000), + [anon_sym_TILDE] = ACTIONS(4000), + [anon_sym_CARET] = ACTIONS(4000), + [anon_sym_AMP] = ACTIONS(4000), + [anon_sym_LT_DASH] = ACTIONS(4000), + [sym_none] = ACTIONS(4000), + [sym_true] = ACTIONS(4000), + [sym_false] = ACTIONS(4000), + [sym_nil] = ACTIONS(4000), + [anon_sym_if] = ACTIONS(4000), + [anon_sym_DOLLARif] = ACTIONS(4000), + [anon_sym_match] = ACTIONS(4000), + [anon_sym_select] = ACTIONS(4000), + [anon_sym_lock] = ACTIONS(4000), + [anon_sym_rlock] = ACTIONS(4000), + [anon_sym_unsafe] = ACTIONS(4000), + [anon_sym_sql] = ACTIONS(4000), + [sym_int_literal] = ACTIONS(4000), + [sym_float_literal] = ACTIONS(4000), + [sym_rune_literal] = ACTIONS(4000), + [anon_sym_AT] = ACTIONS(4000), + [anon_sym_shared] = ACTIONS(4000), + [anon_sym_map_LBRACK] = ACTIONS(4000), + [anon_sym_chan] = ACTIONS(4000), + [anon_sym_thread] = ACTIONS(4000), + [anon_sym_atomic] = ACTIONS(4000), + [anon_sym_assert] = ACTIONS(4000), + [anon_sym_defer] = ACTIONS(4000), + [anon_sym_goto] = ACTIONS(4000), + [anon_sym_break] = ACTIONS(4000), + [anon_sym_continue] = ACTIONS(4000), + [anon_sym_return] = ACTIONS(4000), + [anon_sym_DOLLARfor] = ACTIONS(4000), + [anon_sym_for] = ACTIONS(4000), + [anon_sym_POUND] = ACTIONS(4000), + [anon_sym_asm] = ACTIONS(4000), + [anon_sym_AT_LBRACK] = ACTIONS(4000), + [sym___double_quote] = ACTIONS(4000), + [sym___single_quote] = ACTIONS(4000), + [sym___c_double_quote] = ACTIONS(4000), + [sym___c_single_quote] = ACTIONS(4000), + [sym___r_double_quote] = ACTIONS(4000), + [sym___r_single_quote] = ACTIONS(4000), }, [1511] = { - [ts_builtin_sym_end] = ACTIONS(4001), - [sym_identifier] = ACTIONS(4003), - [anon_sym_LF] = ACTIONS(4003), - [anon_sym_CR] = ACTIONS(4003), - [anon_sym_CR_LF] = ACTIONS(4003), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4003), - [anon_sym_LBRACE] = ACTIONS(4003), - [anon_sym_const] = ACTIONS(4003), - [anon_sym_LPAREN] = ACTIONS(4003), - [anon_sym___global] = ACTIONS(4003), - [anon_sym_type] = ACTIONS(4003), - [anon_sym_fn] = ACTIONS(4003), - [anon_sym_PLUS] = ACTIONS(4003), - [anon_sym_DASH] = ACTIONS(4003), - [anon_sym_STAR] = ACTIONS(4003), - [anon_sym_struct] = ACTIONS(4003), - [anon_sym_union] = ACTIONS(4003), - [anon_sym_pub] = ACTIONS(4003), - [anon_sym_mut] = ACTIONS(4003), - [anon_sym_enum] = ACTIONS(4003), - [anon_sym_interface] = ACTIONS(4003), - [anon_sym_QMARK] = ACTIONS(4003), - [anon_sym_BANG] = ACTIONS(4003), - [anon_sym_go] = ACTIONS(4003), - [anon_sym_spawn] = ACTIONS(4003), - [anon_sym_json_DOTdecode] = ACTIONS(4003), - [anon_sym_LBRACK2] = ACTIONS(4003), - [anon_sym_TILDE] = ACTIONS(4003), - [anon_sym_CARET] = ACTIONS(4003), - [anon_sym_AMP] = ACTIONS(4003), - [anon_sym_LT_DASH] = ACTIONS(4003), - [sym_none] = ACTIONS(4003), - [sym_true] = ACTIONS(4003), - [sym_false] = ACTIONS(4003), - [sym_nil] = ACTIONS(4003), - [anon_sym_if] = ACTIONS(4003), - [anon_sym_DOLLARif] = ACTIONS(4003), - [anon_sym_match] = ACTIONS(4003), - [anon_sym_select] = ACTIONS(4003), - [anon_sym_lock] = ACTIONS(4003), - [anon_sym_rlock] = ACTIONS(4003), - [anon_sym_unsafe] = ACTIONS(4003), - [anon_sym_sql] = ACTIONS(4003), - [sym_int_literal] = ACTIONS(4003), - [sym_float_literal] = ACTIONS(4003), - [sym_rune_literal] = ACTIONS(4003), - [anon_sym_AT] = ACTIONS(4003), - [anon_sym_shared] = ACTIONS(4003), - [anon_sym_map_LBRACK] = ACTIONS(4003), - [anon_sym_chan] = ACTIONS(4003), - [anon_sym_thread] = ACTIONS(4003), - [anon_sym_atomic] = ACTIONS(4003), - [anon_sym_assert] = ACTIONS(4003), - [anon_sym_defer] = ACTIONS(4003), - [anon_sym_goto] = ACTIONS(4003), - [anon_sym_break] = ACTIONS(4003), - [anon_sym_continue] = ACTIONS(4003), - [anon_sym_return] = ACTIONS(4003), - [anon_sym_DOLLARfor] = ACTIONS(4003), - [anon_sym_for] = ACTIONS(4003), - [anon_sym_POUND] = ACTIONS(4003), - [anon_sym_asm] = ACTIONS(4003), - [anon_sym_AT_LBRACK] = ACTIONS(4003), - [sym___double_quote] = ACTIONS(4003), - [sym___single_quote] = ACTIONS(4003), - [sym___c_double_quote] = ACTIONS(4003), - [sym___c_single_quote] = ACTIONS(4003), - [sym___r_double_quote] = ACTIONS(4003), - [sym___r_single_quote] = ACTIONS(4003), + [ts_builtin_sym_end] = ACTIONS(4002), + [sym_identifier] = ACTIONS(4004), + [anon_sym_LF] = ACTIONS(4004), + [anon_sym_CR] = ACTIONS(4004), + [anon_sym_CR_LF] = ACTIONS(4004), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4004), + [anon_sym_LBRACE] = ACTIONS(4004), + [anon_sym_const] = ACTIONS(4004), + [anon_sym_LPAREN] = ACTIONS(4004), + [anon_sym___global] = ACTIONS(4004), + [anon_sym_type] = ACTIONS(4004), + [anon_sym_fn] = ACTIONS(4004), + [anon_sym_PLUS] = ACTIONS(4004), + [anon_sym_DASH] = ACTIONS(4004), + [anon_sym_STAR] = ACTIONS(4004), + [anon_sym_struct] = ACTIONS(4004), + [anon_sym_union] = ACTIONS(4004), + [anon_sym_pub] = ACTIONS(4004), + [anon_sym_mut] = ACTIONS(4004), + [anon_sym_enum] = ACTIONS(4004), + [anon_sym_interface] = ACTIONS(4004), + [anon_sym_QMARK] = ACTIONS(4004), + [anon_sym_BANG] = ACTIONS(4004), + [anon_sym_go] = ACTIONS(4004), + [anon_sym_spawn] = ACTIONS(4004), + [anon_sym_json_DOTdecode] = ACTIONS(4004), + [anon_sym_LBRACK2] = ACTIONS(4004), + [anon_sym_TILDE] = ACTIONS(4004), + [anon_sym_CARET] = ACTIONS(4004), + [anon_sym_AMP] = ACTIONS(4004), + [anon_sym_LT_DASH] = ACTIONS(4004), + [sym_none] = ACTIONS(4004), + [sym_true] = ACTIONS(4004), + [sym_false] = ACTIONS(4004), + [sym_nil] = ACTIONS(4004), + [anon_sym_if] = ACTIONS(4004), + [anon_sym_DOLLARif] = ACTIONS(4004), + [anon_sym_match] = ACTIONS(4004), + [anon_sym_select] = ACTIONS(4004), + [anon_sym_lock] = ACTIONS(4004), + [anon_sym_rlock] = ACTIONS(4004), + [anon_sym_unsafe] = ACTIONS(4004), + [anon_sym_sql] = ACTIONS(4004), + [sym_int_literal] = ACTIONS(4004), + [sym_float_literal] = ACTIONS(4004), + [sym_rune_literal] = ACTIONS(4004), + [anon_sym_AT] = ACTIONS(4004), + [anon_sym_shared] = ACTIONS(4004), + [anon_sym_map_LBRACK] = ACTIONS(4004), + [anon_sym_chan] = ACTIONS(4004), + [anon_sym_thread] = ACTIONS(4004), + [anon_sym_atomic] = ACTIONS(4004), + [anon_sym_assert] = ACTIONS(4004), + [anon_sym_defer] = ACTIONS(4004), + [anon_sym_goto] = ACTIONS(4004), + [anon_sym_break] = ACTIONS(4004), + [anon_sym_continue] = ACTIONS(4004), + [anon_sym_return] = ACTIONS(4004), + [anon_sym_DOLLARfor] = ACTIONS(4004), + [anon_sym_for] = ACTIONS(4004), + [anon_sym_POUND] = ACTIONS(4004), + [anon_sym_asm] = ACTIONS(4004), + [anon_sym_AT_LBRACK] = ACTIONS(4004), + [sym___double_quote] = ACTIONS(4004), + [sym___single_quote] = ACTIONS(4004), + [sym___c_double_quote] = ACTIONS(4004), + [sym___c_single_quote] = ACTIONS(4004), + [sym___r_double_quote] = ACTIONS(4004), + [sym___r_single_quote] = ACTIONS(4004), }, [1512] = { - [ts_builtin_sym_end] = ACTIONS(4005), - [sym_identifier] = ACTIONS(4007), - [anon_sym_LF] = ACTIONS(4007), - [anon_sym_CR] = ACTIONS(4007), - [anon_sym_CR_LF] = ACTIONS(4007), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4007), - [anon_sym_LBRACE] = ACTIONS(4007), - [anon_sym_const] = ACTIONS(4007), - [anon_sym_LPAREN] = ACTIONS(4007), - [anon_sym___global] = ACTIONS(4007), - [anon_sym_type] = ACTIONS(4007), - [anon_sym_fn] = ACTIONS(4007), - [anon_sym_PLUS] = ACTIONS(4007), - [anon_sym_DASH] = ACTIONS(4007), - [anon_sym_STAR] = ACTIONS(4007), - [anon_sym_struct] = ACTIONS(4007), - [anon_sym_union] = ACTIONS(4007), - [anon_sym_pub] = ACTIONS(4007), - [anon_sym_mut] = ACTIONS(4007), - [anon_sym_enum] = ACTIONS(4007), - [anon_sym_interface] = ACTIONS(4007), - [anon_sym_QMARK] = ACTIONS(4007), - [anon_sym_BANG] = ACTIONS(4007), - [anon_sym_go] = ACTIONS(4007), - [anon_sym_spawn] = ACTIONS(4007), - [anon_sym_json_DOTdecode] = ACTIONS(4007), - [anon_sym_LBRACK2] = ACTIONS(4007), - [anon_sym_TILDE] = ACTIONS(4007), - [anon_sym_CARET] = ACTIONS(4007), - [anon_sym_AMP] = ACTIONS(4007), - [anon_sym_LT_DASH] = ACTIONS(4007), - [sym_none] = ACTIONS(4007), - [sym_true] = ACTIONS(4007), - [sym_false] = ACTIONS(4007), - [sym_nil] = ACTIONS(4007), - [anon_sym_if] = ACTIONS(4007), - [anon_sym_DOLLARif] = ACTIONS(4007), - [anon_sym_match] = ACTIONS(4007), - [anon_sym_select] = ACTIONS(4007), - [anon_sym_lock] = ACTIONS(4007), - [anon_sym_rlock] = ACTIONS(4007), - [anon_sym_unsafe] = ACTIONS(4007), - [anon_sym_sql] = ACTIONS(4007), - [sym_int_literal] = ACTIONS(4007), - [sym_float_literal] = ACTIONS(4007), - [sym_rune_literal] = ACTIONS(4007), - [anon_sym_AT] = ACTIONS(4007), - [anon_sym_shared] = ACTIONS(4007), - [anon_sym_map_LBRACK] = ACTIONS(4007), - [anon_sym_chan] = ACTIONS(4007), - [anon_sym_thread] = ACTIONS(4007), - [anon_sym_atomic] = ACTIONS(4007), - [anon_sym_assert] = ACTIONS(4007), - [anon_sym_defer] = ACTIONS(4007), - [anon_sym_goto] = ACTIONS(4007), - [anon_sym_break] = ACTIONS(4007), - [anon_sym_continue] = ACTIONS(4007), - [anon_sym_return] = ACTIONS(4007), - [anon_sym_DOLLARfor] = ACTIONS(4007), - [anon_sym_for] = ACTIONS(4007), - [anon_sym_POUND] = ACTIONS(4007), - [anon_sym_asm] = ACTIONS(4007), - [anon_sym_AT_LBRACK] = ACTIONS(4007), - [sym___double_quote] = ACTIONS(4007), - [sym___single_quote] = ACTIONS(4007), - [sym___c_double_quote] = ACTIONS(4007), - [sym___c_single_quote] = ACTIONS(4007), - [sym___r_double_quote] = ACTIONS(4007), - [sym___r_single_quote] = ACTIONS(4007), + [ts_builtin_sym_end] = ACTIONS(4006), + [sym_identifier] = ACTIONS(4008), + [anon_sym_LF] = ACTIONS(4008), + [anon_sym_CR] = ACTIONS(4008), + [anon_sym_CR_LF] = ACTIONS(4008), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4008), + [anon_sym_LBRACE] = ACTIONS(4008), + [anon_sym_const] = ACTIONS(4008), + [anon_sym_LPAREN] = ACTIONS(4008), + [anon_sym___global] = ACTIONS(4008), + [anon_sym_type] = ACTIONS(4008), + [anon_sym_fn] = ACTIONS(4008), + [anon_sym_PLUS] = ACTIONS(4008), + [anon_sym_DASH] = ACTIONS(4008), + [anon_sym_STAR] = ACTIONS(4008), + [anon_sym_struct] = ACTIONS(4008), + [anon_sym_union] = ACTIONS(4008), + [anon_sym_pub] = ACTIONS(4008), + [anon_sym_mut] = ACTIONS(4008), + [anon_sym_enum] = ACTIONS(4008), + [anon_sym_interface] = ACTIONS(4008), + [anon_sym_QMARK] = ACTIONS(4008), + [anon_sym_BANG] = ACTIONS(4008), + [anon_sym_go] = ACTIONS(4008), + [anon_sym_spawn] = ACTIONS(4008), + [anon_sym_json_DOTdecode] = ACTIONS(4008), + [anon_sym_LBRACK2] = ACTIONS(4008), + [anon_sym_TILDE] = ACTIONS(4008), + [anon_sym_CARET] = ACTIONS(4008), + [anon_sym_AMP] = ACTIONS(4008), + [anon_sym_LT_DASH] = ACTIONS(4008), + [sym_none] = ACTIONS(4008), + [sym_true] = ACTIONS(4008), + [sym_false] = ACTIONS(4008), + [sym_nil] = ACTIONS(4008), + [anon_sym_if] = ACTIONS(4008), + [anon_sym_DOLLARif] = ACTIONS(4008), + [anon_sym_match] = ACTIONS(4008), + [anon_sym_select] = ACTIONS(4008), + [anon_sym_lock] = ACTIONS(4008), + [anon_sym_rlock] = ACTIONS(4008), + [anon_sym_unsafe] = ACTIONS(4008), + [anon_sym_sql] = ACTIONS(4008), + [sym_int_literal] = ACTIONS(4008), + [sym_float_literal] = ACTIONS(4008), + [sym_rune_literal] = ACTIONS(4008), + [anon_sym_AT] = ACTIONS(4008), + [anon_sym_shared] = ACTIONS(4008), + [anon_sym_map_LBRACK] = ACTIONS(4008), + [anon_sym_chan] = ACTIONS(4008), + [anon_sym_thread] = ACTIONS(4008), + [anon_sym_atomic] = ACTIONS(4008), + [anon_sym_assert] = ACTIONS(4008), + [anon_sym_defer] = ACTIONS(4008), + [anon_sym_goto] = ACTIONS(4008), + [anon_sym_break] = ACTIONS(4008), + [anon_sym_continue] = ACTIONS(4008), + [anon_sym_return] = ACTIONS(4008), + [anon_sym_DOLLARfor] = ACTIONS(4008), + [anon_sym_for] = ACTIONS(4008), + [anon_sym_POUND] = ACTIONS(4008), + [anon_sym_asm] = ACTIONS(4008), + [anon_sym_AT_LBRACK] = ACTIONS(4008), + [sym___double_quote] = ACTIONS(4008), + [sym___single_quote] = ACTIONS(4008), + [sym___c_double_quote] = ACTIONS(4008), + [sym___c_single_quote] = ACTIONS(4008), + [sym___r_double_quote] = ACTIONS(4008), + [sym___r_single_quote] = ACTIONS(4008), }, [1513] = { - [ts_builtin_sym_end] = ACTIONS(4009), - [sym_identifier] = ACTIONS(4011), - [anon_sym_LF] = ACTIONS(4011), - [anon_sym_CR] = ACTIONS(4011), - [anon_sym_CR_LF] = ACTIONS(4011), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4011), - [anon_sym_LBRACE] = ACTIONS(4011), - [anon_sym_const] = ACTIONS(4011), - [anon_sym_LPAREN] = ACTIONS(4011), - [anon_sym___global] = ACTIONS(4011), - [anon_sym_type] = ACTIONS(4011), - [anon_sym_fn] = ACTIONS(4011), - [anon_sym_PLUS] = ACTIONS(4011), - [anon_sym_DASH] = ACTIONS(4011), - [anon_sym_STAR] = ACTIONS(4011), - [anon_sym_struct] = ACTIONS(4011), - [anon_sym_union] = ACTIONS(4011), - [anon_sym_pub] = ACTIONS(4011), - [anon_sym_mut] = ACTIONS(4011), - [anon_sym_enum] = ACTIONS(4011), - [anon_sym_interface] = ACTIONS(4011), - [anon_sym_QMARK] = ACTIONS(4011), - [anon_sym_BANG] = ACTIONS(4011), - [anon_sym_go] = ACTIONS(4011), - [anon_sym_spawn] = ACTIONS(4011), - [anon_sym_json_DOTdecode] = ACTIONS(4011), - [anon_sym_LBRACK2] = ACTIONS(4011), - [anon_sym_TILDE] = ACTIONS(4011), - [anon_sym_CARET] = ACTIONS(4011), - [anon_sym_AMP] = ACTIONS(4011), - [anon_sym_LT_DASH] = ACTIONS(4011), - [sym_none] = ACTIONS(4011), - [sym_true] = ACTIONS(4011), - [sym_false] = ACTIONS(4011), - [sym_nil] = ACTIONS(4011), - [anon_sym_if] = ACTIONS(4011), - [anon_sym_DOLLARif] = ACTIONS(4011), - [anon_sym_match] = ACTIONS(4011), - [anon_sym_select] = ACTIONS(4011), - [anon_sym_lock] = ACTIONS(4011), - [anon_sym_rlock] = ACTIONS(4011), - [anon_sym_unsafe] = ACTIONS(4011), - [anon_sym_sql] = ACTIONS(4011), - [sym_int_literal] = ACTIONS(4011), - [sym_float_literal] = ACTIONS(4011), - [sym_rune_literal] = ACTIONS(4011), - [anon_sym_AT] = ACTIONS(4011), - [anon_sym_shared] = ACTIONS(4011), - [anon_sym_map_LBRACK] = ACTIONS(4011), - [anon_sym_chan] = ACTIONS(4011), - [anon_sym_thread] = ACTIONS(4011), - [anon_sym_atomic] = ACTIONS(4011), - [anon_sym_assert] = ACTIONS(4011), - [anon_sym_defer] = ACTIONS(4011), - [anon_sym_goto] = ACTIONS(4011), - [anon_sym_break] = ACTIONS(4011), - [anon_sym_continue] = ACTIONS(4011), - [anon_sym_return] = ACTIONS(4011), - [anon_sym_DOLLARfor] = ACTIONS(4011), - [anon_sym_for] = ACTIONS(4011), - [anon_sym_POUND] = ACTIONS(4011), - [anon_sym_asm] = ACTIONS(4011), - [anon_sym_AT_LBRACK] = ACTIONS(4011), - [sym___double_quote] = ACTIONS(4011), - [sym___single_quote] = ACTIONS(4011), - [sym___c_double_quote] = ACTIONS(4011), - [sym___c_single_quote] = ACTIONS(4011), - [sym___r_double_quote] = ACTIONS(4011), - [sym___r_single_quote] = ACTIONS(4011), + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2359), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(591), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(617), + [anon_sym_as] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_COMMA] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_STAR] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(617), + [anon_sym_PERCENT] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(617), + [anon_sym_GT] = ACTIONS(617), + [anon_sym_EQ_EQ] = ACTIONS(615), + [anon_sym_BANG_EQ] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_struct] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(615), + [anon_sym_DASH_DASH] = ACTIONS(615), + [anon_sym_QMARK] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_LBRACK2] = ACTIONS(617), + [anon_sym_CARET] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_LT_LT] = ACTIONS(615), + [anon_sym_GT_GT] = ACTIONS(617), + [anon_sym_GT_GT_GT] = ACTIONS(615), + [anon_sym_AMP_CARET] = ACTIONS(615), + [anon_sym_AMP_AMP] = ACTIONS(615), + [anon_sym_PIPE_PIPE] = ACTIONS(615), + [anon_sym_or] = ACTIONS(617), + [anon_sym_QMARK_DOT] = ACTIONS(615), + [anon_sym_POUND_LBRACK] = ACTIONS(615), + [anon_sym_is] = ACTIONS(617), + [anon_sym_BANGis] = ACTIONS(615), + [anon_sym_in] = ACTIONS(617), + [anon_sym_BANGin] = ACTIONS(615), + [anon_sym_COLON_EQ] = ACTIONS(615), + [anon_sym_shared] = ACTIONS(609), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(617), }, [1514] = { - [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), - [sym_comment] = ACTIONS(487), - [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_AT] = ACTIONS(4015), - [anon_sym_shared] = ACTIONS(4015), - [anon_sym_map_LBRACK] = ACTIONS(4015), - [anon_sym_chan] = ACTIONS(4015), - [anon_sym_thread] = ACTIONS(4015), - [anon_sym_atomic] = ACTIONS(4015), - [anon_sym_assert] = ACTIONS(4015), - [anon_sym_defer] = ACTIONS(4015), - [anon_sym_goto] = ACTIONS(4015), - [anon_sym_break] = ACTIONS(4015), - [anon_sym_continue] = ACTIONS(4015), - [anon_sym_return] = ACTIONS(4015), - [anon_sym_DOLLARfor] = ACTIONS(4015), - [anon_sym_for] = ACTIONS(4015), - [anon_sym_POUND] = ACTIONS(4015), - [anon_sym_asm] = ACTIONS(4015), - [anon_sym_AT_LBRACK] = ACTIONS(4015), - [sym___double_quote] = ACTIONS(4015), - [sym___single_quote] = ACTIONS(4015), - [sym___c_double_quote] = ACTIONS(4015), - [sym___c_single_quote] = ACTIONS(4015), - [sym___r_double_quote] = ACTIONS(4015), - [sym___r_single_quote] = ACTIONS(4015), + [ts_builtin_sym_end] = ACTIONS(4010), + [sym_identifier] = ACTIONS(4012), + [anon_sym_LF] = ACTIONS(4012), + [anon_sym_CR] = ACTIONS(4012), + [anon_sym_CR_LF] = ACTIONS(4012), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4012), + [anon_sym_LBRACE] = ACTIONS(4012), + [anon_sym_const] = ACTIONS(4012), + [anon_sym_LPAREN] = ACTIONS(4012), + [anon_sym___global] = ACTIONS(4012), + [anon_sym_type] = ACTIONS(4012), + [anon_sym_fn] = ACTIONS(4012), + [anon_sym_PLUS] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4012), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_struct] = ACTIONS(4012), + [anon_sym_union] = ACTIONS(4012), + [anon_sym_pub] = ACTIONS(4012), + [anon_sym_mut] = ACTIONS(4012), + [anon_sym_enum] = ACTIONS(4012), + [anon_sym_interface] = ACTIONS(4012), + [anon_sym_QMARK] = ACTIONS(4012), + [anon_sym_BANG] = ACTIONS(4012), + [anon_sym_go] = ACTIONS(4012), + [anon_sym_spawn] = ACTIONS(4012), + [anon_sym_json_DOTdecode] = ACTIONS(4012), + [anon_sym_LBRACK2] = ACTIONS(4012), + [anon_sym_TILDE] = ACTIONS(4012), + [anon_sym_CARET] = ACTIONS(4012), + [anon_sym_AMP] = ACTIONS(4012), + [anon_sym_LT_DASH] = ACTIONS(4012), + [sym_none] = ACTIONS(4012), + [sym_true] = ACTIONS(4012), + [sym_false] = ACTIONS(4012), + [sym_nil] = ACTIONS(4012), + [anon_sym_if] = ACTIONS(4012), + [anon_sym_DOLLARif] = ACTIONS(4012), + [anon_sym_match] = ACTIONS(4012), + [anon_sym_select] = ACTIONS(4012), + [anon_sym_lock] = ACTIONS(4012), + [anon_sym_rlock] = ACTIONS(4012), + [anon_sym_unsafe] = ACTIONS(4012), + [anon_sym_sql] = ACTIONS(4012), + [sym_int_literal] = ACTIONS(4012), + [sym_float_literal] = ACTIONS(4012), + [sym_rune_literal] = ACTIONS(4012), + [anon_sym_AT] = ACTIONS(4012), + [anon_sym_shared] = ACTIONS(4012), + [anon_sym_map_LBRACK] = ACTIONS(4012), + [anon_sym_chan] = ACTIONS(4012), + [anon_sym_thread] = ACTIONS(4012), + [anon_sym_atomic] = ACTIONS(4012), + [anon_sym_assert] = ACTIONS(4012), + [anon_sym_defer] = ACTIONS(4012), + [anon_sym_goto] = ACTIONS(4012), + [anon_sym_break] = ACTIONS(4012), + [anon_sym_continue] = ACTIONS(4012), + [anon_sym_return] = ACTIONS(4012), + [anon_sym_DOLLARfor] = ACTIONS(4012), + [anon_sym_for] = ACTIONS(4012), + [anon_sym_POUND] = ACTIONS(4012), + [anon_sym_asm] = ACTIONS(4012), + [anon_sym_AT_LBRACK] = ACTIONS(4012), + [sym___double_quote] = ACTIONS(4012), + [sym___single_quote] = ACTIONS(4012), + [sym___c_double_quote] = ACTIONS(4012), + [sym___c_single_quote] = ACTIONS(4012), + [sym___r_double_quote] = ACTIONS(4012), + [sym___r_single_quote] = ACTIONS(4012), }, [1515] = { - [ts_builtin_sym_end] = ACTIONS(4017), - [sym_identifier] = ACTIONS(4019), - [anon_sym_LF] = ACTIONS(4019), - [anon_sym_CR] = ACTIONS(4019), - [anon_sym_CR_LF] = ACTIONS(4019), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4019), - [anon_sym_LBRACE] = ACTIONS(4019), - [anon_sym_const] = ACTIONS(4019), - [anon_sym_LPAREN] = ACTIONS(4019), - [anon_sym___global] = ACTIONS(4019), - [anon_sym_type] = ACTIONS(4019), - [anon_sym_fn] = ACTIONS(4019), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_struct] = ACTIONS(4019), - [anon_sym_union] = ACTIONS(4019), - [anon_sym_pub] = ACTIONS(4019), - [anon_sym_mut] = ACTIONS(4019), - [anon_sym_enum] = ACTIONS(4019), - [anon_sym_interface] = ACTIONS(4019), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_go] = ACTIONS(4019), - [anon_sym_spawn] = ACTIONS(4019), - [anon_sym_json_DOTdecode] = ACTIONS(4019), - [anon_sym_LBRACK2] = ACTIONS(4019), - [anon_sym_TILDE] = ACTIONS(4019), - [anon_sym_CARET] = ACTIONS(4019), - [anon_sym_AMP] = ACTIONS(4019), - [anon_sym_LT_DASH] = ACTIONS(4019), - [sym_none] = ACTIONS(4019), - [sym_true] = ACTIONS(4019), - [sym_false] = ACTIONS(4019), - [sym_nil] = ACTIONS(4019), - [anon_sym_if] = ACTIONS(4019), - [anon_sym_DOLLARif] = ACTIONS(4019), - [anon_sym_match] = ACTIONS(4019), - [anon_sym_select] = ACTIONS(4019), - [anon_sym_lock] = ACTIONS(4019), - [anon_sym_rlock] = ACTIONS(4019), - [anon_sym_unsafe] = ACTIONS(4019), - [anon_sym_sql] = ACTIONS(4019), - [sym_int_literal] = ACTIONS(4019), - [sym_float_literal] = ACTIONS(4019), - [sym_rune_literal] = ACTIONS(4019), - [anon_sym_AT] = ACTIONS(4019), - [anon_sym_shared] = ACTIONS(4019), - [anon_sym_map_LBRACK] = ACTIONS(4019), - [anon_sym_chan] = ACTIONS(4019), - [anon_sym_thread] = ACTIONS(4019), - [anon_sym_atomic] = ACTIONS(4019), - [anon_sym_assert] = ACTIONS(4019), - [anon_sym_defer] = ACTIONS(4019), - [anon_sym_goto] = ACTIONS(4019), - [anon_sym_break] = ACTIONS(4019), - [anon_sym_continue] = ACTIONS(4019), - [anon_sym_return] = ACTIONS(4019), - [anon_sym_DOLLARfor] = ACTIONS(4019), - [anon_sym_for] = ACTIONS(4019), - [anon_sym_POUND] = ACTIONS(4019), - [anon_sym_asm] = ACTIONS(4019), - [anon_sym_AT_LBRACK] = ACTIONS(4019), - [sym___double_quote] = ACTIONS(4019), - [sym___single_quote] = ACTIONS(4019), - [sym___c_double_quote] = ACTIONS(4019), - [sym___c_single_quote] = ACTIONS(4019), - [sym___r_double_quote] = ACTIONS(4019), - [sym___r_single_quote] = ACTIONS(4019), + [ts_builtin_sym_end] = ACTIONS(2692), + [sym_identifier] = ACTIONS(2694), + [anon_sym_LF] = ACTIONS(2694), + [anon_sym_CR] = ACTIONS(2694), + [anon_sym_CR_LF] = ACTIONS(2694), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2694), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_const] = ACTIONS(2694), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym___global] = ACTIONS(2694), + [anon_sym_type] = ACTIONS(2694), + [anon_sym_fn] = ACTIONS(2694), + [anon_sym_PLUS] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(2694), + [anon_sym_struct] = ACTIONS(2694), + [anon_sym_union] = ACTIONS(2694), + [anon_sym_pub] = ACTIONS(2694), + [anon_sym_mut] = ACTIONS(2694), + [anon_sym_enum] = ACTIONS(2694), + [anon_sym_interface] = ACTIONS(2694), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_BANG] = ACTIONS(2694), + [anon_sym_go] = ACTIONS(2694), + [anon_sym_spawn] = ACTIONS(2694), + [anon_sym_json_DOTdecode] = ACTIONS(2694), + [anon_sym_LBRACK2] = ACTIONS(2694), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_CARET] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2694), + [anon_sym_LT_DASH] = ACTIONS(2694), + [sym_none] = ACTIONS(2694), + [sym_true] = ACTIONS(2694), + [sym_false] = ACTIONS(2694), + [sym_nil] = ACTIONS(2694), + [anon_sym_if] = ACTIONS(2694), + [anon_sym_DOLLARif] = ACTIONS(2694), + [anon_sym_match] = ACTIONS(2694), + [anon_sym_select] = ACTIONS(2694), + [anon_sym_lock] = ACTIONS(2694), + [anon_sym_rlock] = ACTIONS(2694), + [anon_sym_unsafe] = ACTIONS(2694), + [anon_sym_sql] = ACTIONS(2694), + [sym_int_literal] = ACTIONS(2694), + [sym_float_literal] = ACTIONS(2694), + [sym_rune_literal] = ACTIONS(2694), + [anon_sym_AT] = ACTIONS(2694), + [anon_sym_shared] = ACTIONS(2694), + [anon_sym_map_LBRACK] = ACTIONS(2694), + [anon_sym_chan] = ACTIONS(2694), + [anon_sym_thread] = ACTIONS(2694), + [anon_sym_atomic] = ACTIONS(2694), + [anon_sym_assert] = ACTIONS(2694), + [anon_sym_defer] = ACTIONS(2694), + [anon_sym_goto] = ACTIONS(2694), + [anon_sym_break] = ACTIONS(2694), + [anon_sym_continue] = ACTIONS(2694), + [anon_sym_return] = ACTIONS(2694), + [anon_sym_DOLLARfor] = ACTIONS(2694), + [anon_sym_for] = ACTIONS(2694), + [anon_sym_POUND] = ACTIONS(2694), + [anon_sym_asm] = ACTIONS(2694), + [anon_sym_AT_LBRACK] = ACTIONS(2694), + [sym___double_quote] = ACTIONS(2694), + [sym___single_quote] = ACTIONS(2694), + [sym___c_double_quote] = ACTIONS(2694), + [sym___c_single_quote] = ACTIONS(2694), + [sym___r_double_quote] = ACTIONS(2694), + [sym___r_single_quote] = ACTIONS(2694), }, [1516] = { - [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), - [sym_comment] = ACTIONS(487), - [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_AT] = 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), - [sym___double_quote] = ACTIONS(4023), - [sym___single_quote] = ACTIONS(4023), - [sym___c_double_quote] = ACTIONS(4023), - [sym___c_single_quote] = ACTIONS(4023), - [sym___r_double_quote] = ACTIONS(4023), - [sym___r_single_quote] = ACTIONS(4023), + [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), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4016), + [anon_sym_LBRACE] = ACTIONS(4016), + [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_AT] = 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), + [sym___double_quote] = ACTIONS(4016), + [sym___single_quote] = ACTIONS(4016), + [sym___c_double_quote] = ACTIONS(4016), + [sym___c_single_quote] = ACTIONS(4016), + [sym___r_double_quote] = ACTIONS(4016), + [sym___r_single_quote] = ACTIONS(4016), }, [1517] = { - [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), - [sym_comment] = ACTIONS(487), - [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_AT] = ACTIONS(4027), - [anon_sym_shared] = ACTIONS(4027), - [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), - [sym___double_quote] = ACTIONS(4027), - [sym___single_quote] = ACTIONS(4027), - [sym___c_double_quote] = ACTIONS(4027), - [sym___c_single_quote] = ACTIONS(4027), - [sym___r_double_quote] = ACTIONS(4027), - [sym___r_single_quote] = ACTIONS(4027), + [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), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(4020), + [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_AT] = ACTIONS(4020), + [anon_sym_shared] = ACTIONS(4020), + [anon_sym_map_LBRACK] = ACTIONS(4020), + [anon_sym_chan] = ACTIONS(4020), + [anon_sym_thread] = ACTIONS(4020), + [anon_sym_atomic] = ACTIONS(4020), + [anon_sym_assert] = ACTIONS(4020), + [anon_sym_defer] = ACTIONS(4020), + [anon_sym_goto] = ACTIONS(4020), + [anon_sym_break] = ACTIONS(4020), + [anon_sym_continue] = ACTIONS(4020), + [anon_sym_return] = ACTIONS(4020), + [anon_sym_DOLLARfor] = ACTIONS(4020), + [anon_sym_for] = ACTIONS(4020), + [anon_sym_POUND] = ACTIONS(4020), + [anon_sym_asm] = ACTIONS(4020), + [anon_sym_AT_LBRACK] = ACTIONS(4020), + [sym___double_quote] = ACTIONS(4020), + [sym___single_quote] = ACTIONS(4020), + [sym___c_double_quote] = ACTIONS(4020), + [sym___c_single_quote] = ACTIONS(4020), + [sym___r_double_quote] = ACTIONS(4020), + [sym___r_single_quote] = ACTIONS(4020), }, [1518] = { - [ts_builtin_sym_end] = ACTIONS(4029), - [sym_identifier] = ACTIONS(4031), - [anon_sym_LF] = ACTIONS(4031), - [anon_sym_CR] = ACTIONS(4031), - [anon_sym_CR_LF] = ACTIONS(4031), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_LBRACE] = ACTIONS(4031), - [anon_sym_const] = ACTIONS(4031), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym___global] = ACTIONS(4031), - [anon_sym_type] = ACTIONS(4031), - [anon_sym_fn] = ACTIONS(4031), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [anon_sym_struct] = ACTIONS(4031), - [anon_sym_union] = ACTIONS(4031), - [anon_sym_pub] = ACTIONS(4031), - [anon_sym_mut] = ACTIONS(4031), - [anon_sym_enum] = ACTIONS(4031), - [anon_sym_interface] = ACTIONS(4031), - [anon_sym_QMARK] = ACTIONS(4031), - [anon_sym_BANG] = ACTIONS(4031), - [anon_sym_go] = ACTIONS(4031), - [anon_sym_spawn] = ACTIONS(4031), - [anon_sym_json_DOTdecode] = ACTIONS(4031), - [anon_sym_LBRACK2] = ACTIONS(4031), - [anon_sym_TILDE] = ACTIONS(4031), - [anon_sym_CARET] = ACTIONS(4031), - [anon_sym_AMP] = ACTIONS(4031), - [anon_sym_LT_DASH] = ACTIONS(4031), - [sym_none] = ACTIONS(4031), - [sym_true] = ACTIONS(4031), - [sym_false] = ACTIONS(4031), - [sym_nil] = ACTIONS(4031), - [anon_sym_if] = ACTIONS(4031), - [anon_sym_DOLLARif] = ACTIONS(4031), - [anon_sym_match] = ACTIONS(4031), - [anon_sym_select] = ACTIONS(4031), - [anon_sym_lock] = ACTIONS(4031), - [anon_sym_rlock] = ACTIONS(4031), - [anon_sym_unsafe] = ACTIONS(4031), - [anon_sym_sql] = ACTIONS(4031), - [sym_int_literal] = ACTIONS(4031), - [sym_float_literal] = ACTIONS(4031), - [sym_rune_literal] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4031), - [anon_sym_shared] = ACTIONS(4031), - [anon_sym_map_LBRACK] = ACTIONS(4031), - [anon_sym_chan] = ACTIONS(4031), - [anon_sym_thread] = ACTIONS(4031), - [anon_sym_atomic] = ACTIONS(4031), - [anon_sym_assert] = ACTIONS(4031), - [anon_sym_defer] = ACTIONS(4031), - [anon_sym_goto] = ACTIONS(4031), - [anon_sym_break] = ACTIONS(4031), - [anon_sym_continue] = ACTIONS(4031), - [anon_sym_return] = ACTIONS(4031), - [anon_sym_DOLLARfor] = ACTIONS(4031), - [anon_sym_for] = ACTIONS(4031), - [anon_sym_POUND] = ACTIONS(4031), - [anon_sym_asm] = ACTIONS(4031), - [anon_sym_AT_LBRACK] = ACTIONS(4031), - [sym___double_quote] = ACTIONS(4031), - [sym___single_quote] = ACTIONS(4031), - [sym___c_double_quote] = ACTIONS(4031), - [sym___c_single_quote] = ACTIONS(4031), - [sym___r_double_quote] = ACTIONS(4031), - [sym___r_single_quote] = ACTIONS(4031), + [ts_builtin_sym_end] = ACTIONS(4022), + [sym_identifier] = ACTIONS(4024), + [anon_sym_LF] = ACTIONS(4024), + [anon_sym_CR] = ACTIONS(4024), + [anon_sym_CR_LF] = ACTIONS(4024), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4024), + [anon_sym_LBRACE] = ACTIONS(4024), + [anon_sym_const] = ACTIONS(4024), + [anon_sym_LPAREN] = ACTIONS(4024), + [anon_sym___global] = ACTIONS(4024), + [anon_sym_type] = ACTIONS(4024), + [anon_sym_fn] = ACTIONS(4024), + [anon_sym_PLUS] = ACTIONS(4024), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_STAR] = ACTIONS(4024), + [anon_sym_struct] = ACTIONS(4024), + [anon_sym_union] = ACTIONS(4024), + [anon_sym_pub] = ACTIONS(4024), + [anon_sym_mut] = ACTIONS(4024), + [anon_sym_enum] = ACTIONS(4024), + [anon_sym_interface] = ACTIONS(4024), + [anon_sym_QMARK] = ACTIONS(4024), + [anon_sym_BANG] = ACTIONS(4024), + [anon_sym_go] = ACTIONS(4024), + [anon_sym_spawn] = ACTIONS(4024), + [anon_sym_json_DOTdecode] = ACTIONS(4024), + [anon_sym_LBRACK2] = ACTIONS(4024), + [anon_sym_TILDE] = ACTIONS(4024), + [anon_sym_CARET] = ACTIONS(4024), + [anon_sym_AMP] = ACTIONS(4024), + [anon_sym_LT_DASH] = ACTIONS(4024), + [sym_none] = ACTIONS(4024), + [sym_true] = ACTIONS(4024), + [sym_false] = ACTIONS(4024), + [sym_nil] = ACTIONS(4024), + [anon_sym_if] = ACTIONS(4024), + [anon_sym_DOLLARif] = ACTIONS(4024), + [anon_sym_match] = ACTIONS(4024), + [anon_sym_select] = ACTIONS(4024), + [anon_sym_lock] = ACTIONS(4024), + [anon_sym_rlock] = ACTIONS(4024), + [anon_sym_unsafe] = ACTIONS(4024), + [anon_sym_sql] = ACTIONS(4024), + [sym_int_literal] = ACTIONS(4024), + [sym_float_literal] = ACTIONS(4024), + [sym_rune_literal] = ACTIONS(4024), + [anon_sym_AT] = ACTIONS(4024), + [anon_sym_shared] = ACTIONS(4024), + [anon_sym_map_LBRACK] = ACTIONS(4024), + [anon_sym_chan] = ACTIONS(4024), + [anon_sym_thread] = ACTIONS(4024), + [anon_sym_atomic] = ACTIONS(4024), + [anon_sym_assert] = ACTIONS(4024), + [anon_sym_defer] = ACTIONS(4024), + [anon_sym_goto] = ACTIONS(4024), + [anon_sym_break] = ACTIONS(4024), + [anon_sym_continue] = ACTIONS(4024), + [anon_sym_return] = ACTIONS(4024), + [anon_sym_DOLLARfor] = ACTIONS(4024), + [anon_sym_for] = ACTIONS(4024), + [anon_sym_POUND] = ACTIONS(4024), + [anon_sym_asm] = ACTIONS(4024), + [anon_sym_AT_LBRACK] = ACTIONS(4024), + [sym___double_quote] = ACTIONS(4024), + [sym___single_quote] = ACTIONS(4024), + [sym___c_double_quote] = ACTIONS(4024), + [sym___c_single_quote] = ACTIONS(4024), + [sym___r_double_quote] = ACTIONS(4024), + [sym___r_single_quote] = ACTIONS(4024), }, [1519] = { - [ts_builtin_sym_end] = ACTIONS(4033), - [sym_identifier] = ACTIONS(4035), - [anon_sym_LF] = ACTIONS(4035), - [anon_sym_CR] = ACTIONS(4035), - [anon_sym_CR_LF] = ACTIONS(4035), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4035), - [anon_sym_LBRACE] = ACTIONS(4035), - [anon_sym_const] = ACTIONS(4035), - [anon_sym_LPAREN] = ACTIONS(4035), - [anon_sym___global] = ACTIONS(4035), - [anon_sym_type] = ACTIONS(4035), - [anon_sym_fn] = ACTIONS(4035), - [anon_sym_PLUS] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4035), - [anon_sym_STAR] = ACTIONS(4035), - [anon_sym_struct] = ACTIONS(4035), - [anon_sym_union] = ACTIONS(4035), - [anon_sym_pub] = ACTIONS(4035), - [anon_sym_mut] = ACTIONS(4035), - [anon_sym_enum] = ACTIONS(4035), - [anon_sym_interface] = ACTIONS(4035), - [anon_sym_QMARK] = ACTIONS(4035), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_go] = ACTIONS(4035), - [anon_sym_spawn] = ACTIONS(4035), - [anon_sym_json_DOTdecode] = ACTIONS(4035), - [anon_sym_LBRACK2] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_CARET] = ACTIONS(4035), - [anon_sym_AMP] = ACTIONS(4035), - [anon_sym_LT_DASH] = ACTIONS(4035), - [sym_none] = ACTIONS(4035), - [sym_true] = ACTIONS(4035), - [sym_false] = ACTIONS(4035), - [sym_nil] = ACTIONS(4035), - [anon_sym_if] = ACTIONS(4035), - [anon_sym_DOLLARif] = ACTIONS(4035), - [anon_sym_match] = ACTIONS(4035), - [anon_sym_select] = ACTIONS(4035), - [anon_sym_lock] = ACTIONS(4035), - [anon_sym_rlock] = ACTIONS(4035), - [anon_sym_unsafe] = ACTIONS(4035), - [anon_sym_sql] = ACTIONS(4035), - [sym_int_literal] = ACTIONS(4035), - [sym_float_literal] = ACTIONS(4035), - [sym_rune_literal] = ACTIONS(4035), - [anon_sym_AT] = ACTIONS(4035), - [anon_sym_shared] = ACTIONS(4035), - [anon_sym_map_LBRACK] = ACTIONS(4035), - [anon_sym_chan] = ACTIONS(4035), - [anon_sym_thread] = ACTIONS(4035), - [anon_sym_atomic] = ACTIONS(4035), - [anon_sym_assert] = ACTIONS(4035), - [anon_sym_defer] = ACTIONS(4035), - [anon_sym_goto] = ACTIONS(4035), - [anon_sym_break] = ACTIONS(4035), - [anon_sym_continue] = ACTIONS(4035), - [anon_sym_return] = ACTIONS(4035), - [anon_sym_DOLLARfor] = ACTIONS(4035), - [anon_sym_for] = ACTIONS(4035), - [anon_sym_POUND] = ACTIONS(4035), - [anon_sym_asm] = ACTIONS(4035), - [anon_sym_AT_LBRACK] = ACTIONS(4035), - [sym___double_quote] = ACTIONS(4035), - [sym___single_quote] = ACTIONS(4035), - [sym___c_double_quote] = ACTIONS(4035), - [sym___c_single_quote] = ACTIONS(4035), - [sym___r_double_quote] = ACTIONS(4035), - [sym___r_single_quote] = ACTIONS(4035), + [ts_builtin_sym_end] = ACTIONS(4026), + [sym_identifier] = ACTIONS(4028), + [anon_sym_LF] = ACTIONS(4028), + [anon_sym_CR] = ACTIONS(4028), + [anon_sym_CR_LF] = ACTIONS(4028), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4028), + [anon_sym_LBRACE] = ACTIONS(4028), + [anon_sym_const] = ACTIONS(4028), + [anon_sym_LPAREN] = ACTIONS(4028), + [anon_sym___global] = ACTIONS(4028), + [anon_sym_type] = ACTIONS(4028), + [anon_sym_fn] = ACTIONS(4028), + [anon_sym_PLUS] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4028), + [anon_sym_STAR] = ACTIONS(4028), + [anon_sym_struct] = ACTIONS(4028), + [anon_sym_union] = ACTIONS(4028), + [anon_sym_pub] = ACTIONS(4028), + [anon_sym_mut] = ACTIONS(4028), + [anon_sym_enum] = ACTIONS(4028), + [anon_sym_interface] = ACTIONS(4028), + [anon_sym_QMARK] = ACTIONS(4028), + [anon_sym_BANG] = ACTIONS(4028), + [anon_sym_go] = ACTIONS(4028), + [anon_sym_spawn] = ACTIONS(4028), + [anon_sym_json_DOTdecode] = ACTIONS(4028), + [anon_sym_LBRACK2] = ACTIONS(4028), + [anon_sym_TILDE] = ACTIONS(4028), + [anon_sym_CARET] = ACTIONS(4028), + [anon_sym_AMP] = ACTIONS(4028), + [anon_sym_LT_DASH] = ACTIONS(4028), + [sym_none] = ACTIONS(4028), + [sym_true] = ACTIONS(4028), + [sym_false] = ACTIONS(4028), + [sym_nil] = ACTIONS(4028), + [anon_sym_if] = ACTIONS(4028), + [anon_sym_DOLLARif] = ACTIONS(4028), + [anon_sym_match] = ACTIONS(4028), + [anon_sym_select] = ACTIONS(4028), + [anon_sym_lock] = ACTIONS(4028), + [anon_sym_rlock] = ACTIONS(4028), + [anon_sym_unsafe] = ACTIONS(4028), + [anon_sym_sql] = ACTIONS(4028), + [sym_int_literal] = ACTIONS(4028), + [sym_float_literal] = ACTIONS(4028), + [sym_rune_literal] = ACTIONS(4028), + [anon_sym_AT] = ACTIONS(4028), + [anon_sym_shared] = ACTIONS(4028), + [anon_sym_map_LBRACK] = ACTIONS(4028), + [anon_sym_chan] = ACTIONS(4028), + [anon_sym_thread] = ACTIONS(4028), + [anon_sym_atomic] = ACTIONS(4028), + [anon_sym_assert] = ACTIONS(4028), + [anon_sym_defer] = ACTIONS(4028), + [anon_sym_goto] = ACTIONS(4028), + [anon_sym_break] = ACTIONS(4028), + [anon_sym_continue] = ACTIONS(4028), + [anon_sym_return] = ACTIONS(4028), + [anon_sym_DOLLARfor] = ACTIONS(4028), + [anon_sym_for] = ACTIONS(4028), + [anon_sym_POUND] = ACTIONS(4028), + [anon_sym_asm] = ACTIONS(4028), + [anon_sym_AT_LBRACK] = ACTIONS(4028), + [sym___double_quote] = ACTIONS(4028), + [sym___single_quote] = ACTIONS(4028), + [sym___c_double_quote] = ACTIONS(4028), + [sym___c_single_quote] = ACTIONS(4028), + [sym___r_double_quote] = ACTIONS(4028), + [sym___r_single_quote] = ACTIONS(4028), }, [1520] = { - [ts_builtin_sym_end] = ACTIONS(4037), - [sym_identifier] = ACTIONS(4039), - [anon_sym_LF] = ACTIONS(4039), - [anon_sym_CR] = ACTIONS(4039), - [anon_sym_CR_LF] = ACTIONS(4039), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4039), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_const] = ACTIONS(4039), - [anon_sym_LPAREN] = ACTIONS(4039), - [anon_sym___global] = ACTIONS(4039), - [anon_sym_type] = ACTIONS(4039), - [anon_sym_fn] = ACTIONS(4039), - [anon_sym_PLUS] = ACTIONS(4039), - [anon_sym_DASH] = ACTIONS(4039), - [anon_sym_STAR] = ACTIONS(4039), - [anon_sym_struct] = ACTIONS(4039), - [anon_sym_union] = ACTIONS(4039), - [anon_sym_pub] = ACTIONS(4039), - [anon_sym_mut] = ACTIONS(4039), - [anon_sym_enum] = ACTIONS(4039), - [anon_sym_interface] = ACTIONS(4039), - [anon_sym_QMARK] = ACTIONS(4039), - [anon_sym_BANG] = ACTIONS(4039), - [anon_sym_go] = ACTIONS(4039), - [anon_sym_spawn] = ACTIONS(4039), - [anon_sym_json_DOTdecode] = ACTIONS(4039), - [anon_sym_LBRACK2] = ACTIONS(4039), - [anon_sym_TILDE] = ACTIONS(4039), - [anon_sym_CARET] = ACTIONS(4039), - [anon_sym_AMP] = ACTIONS(4039), - [anon_sym_LT_DASH] = ACTIONS(4039), - [sym_none] = ACTIONS(4039), - [sym_true] = ACTIONS(4039), - [sym_false] = ACTIONS(4039), - [sym_nil] = ACTIONS(4039), - [anon_sym_if] = ACTIONS(4039), - [anon_sym_DOLLARif] = ACTIONS(4039), - [anon_sym_match] = ACTIONS(4039), - [anon_sym_select] = ACTIONS(4039), - [anon_sym_lock] = ACTIONS(4039), - [anon_sym_rlock] = ACTIONS(4039), - [anon_sym_unsafe] = ACTIONS(4039), - [anon_sym_sql] = ACTIONS(4039), - [sym_int_literal] = ACTIONS(4039), - [sym_float_literal] = ACTIONS(4039), - [sym_rune_literal] = ACTIONS(4039), - [anon_sym_AT] = ACTIONS(4039), - [anon_sym_shared] = ACTIONS(4039), - [anon_sym_map_LBRACK] = ACTIONS(4039), - [anon_sym_chan] = ACTIONS(4039), - [anon_sym_thread] = ACTIONS(4039), - [anon_sym_atomic] = ACTIONS(4039), - [anon_sym_assert] = ACTIONS(4039), - [anon_sym_defer] = ACTIONS(4039), - [anon_sym_goto] = ACTIONS(4039), - [anon_sym_break] = ACTIONS(4039), - [anon_sym_continue] = ACTIONS(4039), - [anon_sym_return] = ACTIONS(4039), - [anon_sym_DOLLARfor] = ACTIONS(4039), - [anon_sym_for] = ACTIONS(4039), - [anon_sym_POUND] = ACTIONS(4039), - [anon_sym_asm] = ACTIONS(4039), - [anon_sym_AT_LBRACK] = ACTIONS(4039), - [sym___double_quote] = ACTIONS(4039), - [sym___single_quote] = ACTIONS(4039), - [sym___c_double_quote] = ACTIONS(4039), - [sym___c_single_quote] = ACTIONS(4039), - [sym___r_double_quote] = ACTIONS(4039), - [sym___r_single_quote] = ACTIONS(4039), + [ts_builtin_sym_end] = ACTIONS(4030), + [sym_identifier] = ACTIONS(4032), + [anon_sym_LF] = ACTIONS(4032), + [anon_sym_CR] = ACTIONS(4032), + [anon_sym_CR_LF] = ACTIONS(4032), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4032), + [anon_sym_const] = ACTIONS(4032), + [anon_sym_LPAREN] = ACTIONS(4032), + [anon_sym___global] = ACTIONS(4032), + [anon_sym_type] = ACTIONS(4032), + [anon_sym_fn] = ACTIONS(4032), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_struct] = ACTIONS(4032), + [anon_sym_union] = ACTIONS(4032), + [anon_sym_pub] = ACTIONS(4032), + [anon_sym_mut] = ACTIONS(4032), + [anon_sym_enum] = ACTIONS(4032), + [anon_sym_interface] = ACTIONS(4032), + [anon_sym_QMARK] = ACTIONS(4032), + [anon_sym_BANG] = ACTIONS(4032), + [anon_sym_go] = ACTIONS(4032), + [anon_sym_spawn] = ACTIONS(4032), + [anon_sym_json_DOTdecode] = ACTIONS(4032), + [anon_sym_LBRACK2] = ACTIONS(4032), + [anon_sym_TILDE] = ACTIONS(4032), + [anon_sym_CARET] = ACTIONS(4032), + [anon_sym_AMP] = ACTIONS(4032), + [anon_sym_LT_DASH] = ACTIONS(4032), + [sym_none] = ACTIONS(4032), + [sym_true] = ACTIONS(4032), + [sym_false] = ACTIONS(4032), + [sym_nil] = ACTIONS(4032), + [anon_sym_if] = ACTIONS(4032), + [anon_sym_DOLLARif] = ACTIONS(4032), + [anon_sym_match] = ACTIONS(4032), + [anon_sym_select] = ACTIONS(4032), + [anon_sym_lock] = ACTIONS(4032), + [anon_sym_rlock] = ACTIONS(4032), + [anon_sym_unsafe] = ACTIONS(4032), + [anon_sym_sql] = ACTIONS(4032), + [sym_int_literal] = ACTIONS(4032), + [sym_float_literal] = ACTIONS(4032), + [sym_rune_literal] = ACTIONS(4032), + [anon_sym_AT] = ACTIONS(4032), + [anon_sym_shared] = ACTIONS(4032), + [anon_sym_map_LBRACK] = ACTIONS(4032), + [anon_sym_chan] = ACTIONS(4032), + [anon_sym_thread] = ACTIONS(4032), + [anon_sym_atomic] = ACTIONS(4032), + [anon_sym_assert] = ACTIONS(4032), + [anon_sym_defer] = ACTIONS(4032), + [anon_sym_goto] = ACTIONS(4032), + [anon_sym_break] = ACTIONS(4032), + [anon_sym_continue] = ACTIONS(4032), + [anon_sym_return] = ACTIONS(4032), + [anon_sym_DOLLARfor] = ACTIONS(4032), + [anon_sym_for] = ACTIONS(4032), + [anon_sym_POUND] = ACTIONS(4032), + [anon_sym_asm] = ACTIONS(4032), + [anon_sym_AT_LBRACK] = ACTIONS(4032), + [sym___double_quote] = ACTIONS(4032), + [sym___single_quote] = ACTIONS(4032), + [sym___c_double_quote] = ACTIONS(4032), + [sym___c_single_quote] = ACTIONS(4032), + [sym___r_double_quote] = ACTIONS(4032), + [sym___r_single_quote] = ACTIONS(4032), }, [1521] = { - [ts_builtin_sym_end] = ACTIONS(4041), - [sym_identifier] = ACTIONS(4043), - [anon_sym_LF] = ACTIONS(4043), - [anon_sym_CR] = ACTIONS(4043), - [anon_sym_CR_LF] = ACTIONS(4043), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4043), - [anon_sym_LBRACE] = ACTIONS(4043), - [anon_sym_const] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym___global] = ACTIONS(4043), - [anon_sym_type] = ACTIONS(4043), - [anon_sym_fn] = ACTIONS(4043), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_STAR] = ACTIONS(4043), - [anon_sym_struct] = ACTIONS(4043), - [anon_sym_union] = ACTIONS(4043), - [anon_sym_pub] = ACTIONS(4043), - [anon_sym_mut] = ACTIONS(4043), - [anon_sym_enum] = ACTIONS(4043), - [anon_sym_interface] = ACTIONS(4043), - [anon_sym_QMARK] = ACTIONS(4043), - [anon_sym_BANG] = ACTIONS(4043), - [anon_sym_go] = ACTIONS(4043), - [anon_sym_spawn] = ACTIONS(4043), - [anon_sym_json_DOTdecode] = ACTIONS(4043), - [anon_sym_LBRACK2] = ACTIONS(4043), - [anon_sym_TILDE] = ACTIONS(4043), - [anon_sym_CARET] = ACTIONS(4043), - [anon_sym_AMP] = ACTIONS(4043), - [anon_sym_LT_DASH] = ACTIONS(4043), - [sym_none] = ACTIONS(4043), - [sym_true] = ACTIONS(4043), - [sym_false] = ACTIONS(4043), - [sym_nil] = ACTIONS(4043), - [anon_sym_if] = ACTIONS(4043), - [anon_sym_DOLLARif] = ACTIONS(4043), - [anon_sym_match] = ACTIONS(4043), - [anon_sym_select] = ACTIONS(4043), - [anon_sym_lock] = ACTIONS(4043), - [anon_sym_rlock] = ACTIONS(4043), - [anon_sym_unsafe] = ACTIONS(4043), - [anon_sym_sql] = ACTIONS(4043), - [sym_int_literal] = ACTIONS(4043), - [sym_float_literal] = ACTIONS(4043), - [sym_rune_literal] = ACTIONS(4043), - [anon_sym_AT] = ACTIONS(4043), - [anon_sym_shared] = ACTIONS(4043), - [anon_sym_map_LBRACK] = ACTIONS(4043), - [anon_sym_chan] = ACTIONS(4043), - [anon_sym_thread] = ACTIONS(4043), - [anon_sym_atomic] = ACTIONS(4043), - [anon_sym_assert] = ACTIONS(4043), - [anon_sym_defer] = ACTIONS(4043), - [anon_sym_goto] = ACTIONS(4043), - [anon_sym_break] = ACTIONS(4043), - [anon_sym_continue] = ACTIONS(4043), - [anon_sym_return] = ACTIONS(4043), - [anon_sym_DOLLARfor] = ACTIONS(4043), - [anon_sym_for] = ACTIONS(4043), - [anon_sym_POUND] = ACTIONS(4043), - [anon_sym_asm] = ACTIONS(4043), - [anon_sym_AT_LBRACK] = ACTIONS(4043), - [sym___double_quote] = ACTIONS(4043), - [sym___single_quote] = ACTIONS(4043), - [sym___c_double_quote] = ACTIONS(4043), - [sym___c_single_quote] = ACTIONS(4043), - [sym___r_double_quote] = ACTIONS(4043), - [sym___r_single_quote] = ACTIONS(4043), + [ts_builtin_sym_end] = ACTIONS(4034), + [sym_identifier] = ACTIONS(4036), + [anon_sym_LF] = ACTIONS(4036), + [anon_sym_CR] = ACTIONS(4036), + [anon_sym_CR_LF] = ACTIONS(4036), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4036), + [anon_sym_LBRACE] = ACTIONS(4036), + [anon_sym_const] = ACTIONS(4036), + [anon_sym_LPAREN] = ACTIONS(4036), + [anon_sym___global] = ACTIONS(4036), + [anon_sym_type] = ACTIONS(4036), + [anon_sym_fn] = ACTIONS(4036), + [anon_sym_PLUS] = ACTIONS(4036), + [anon_sym_DASH] = ACTIONS(4036), + [anon_sym_STAR] = ACTIONS(4036), + [anon_sym_struct] = ACTIONS(4036), + [anon_sym_union] = ACTIONS(4036), + [anon_sym_pub] = ACTIONS(4036), + [anon_sym_mut] = ACTIONS(4036), + [anon_sym_enum] = ACTIONS(4036), + [anon_sym_interface] = ACTIONS(4036), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_BANG] = ACTIONS(4036), + [anon_sym_go] = ACTIONS(4036), + [anon_sym_spawn] = ACTIONS(4036), + [anon_sym_json_DOTdecode] = ACTIONS(4036), + [anon_sym_LBRACK2] = ACTIONS(4036), + [anon_sym_TILDE] = ACTIONS(4036), + [anon_sym_CARET] = ACTIONS(4036), + [anon_sym_AMP] = ACTIONS(4036), + [anon_sym_LT_DASH] = ACTIONS(4036), + [sym_none] = ACTIONS(4036), + [sym_true] = ACTIONS(4036), + [sym_false] = ACTIONS(4036), + [sym_nil] = ACTIONS(4036), + [anon_sym_if] = ACTIONS(4036), + [anon_sym_DOLLARif] = ACTIONS(4036), + [anon_sym_match] = ACTIONS(4036), + [anon_sym_select] = ACTIONS(4036), + [anon_sym_lock] = ACTIONS(4036), + [anon_sym_rlock] = ACTIONS(4036), + [anon_sym_unsafe] = ACTIONS(4036), + [anon_sym_sql] = ACTIONS(4036), + [sym_int_literal] = ACTIONS(4036), + [sym_float_literal] = ACTIONS(4036), + [sym_rune_literal] = ACTIONS(4036), + [anon_sym_AT] = ACTIONS(4036), + [anon_sym_shared] = ACTIONS(4036), + [anon_sym_map_LBRACK] = ACTIONS(4036), + [anon_sym_chan] = ACTIONS(4036), + [anon_sym_thread] = ACTIONS(4036), + [anon_sym_atomic] = ACTIONS(4036), + [anon_sym_assert] = ACTIONS(4036), + [anon_sym_defer] = ACTIONS(4036), + [anon_sym_goto] = ACTIONS(4036), + [anon_sym_break] = ACTIONS(4036), + [anon_sym_continue] = ACTIONS(4036), + [anon_sym_return] = ACTIONS(4036), + [anon_sym_DOLLARfor] = ACTIONS(4036), + [anon_sym_for] = ACTIONS(4036), + [anon_sym_POUND] = ACTIONS(4036), + [anon_sym_asm] = ACTIONS(4036), + [anon_sym_AT_LBRACK] = ACTIONS(4036), + [sym___double_quote] = ACTIONS(4036), + [sym___single_quote] = ACTIONS(4036), + [sym___c_double_quote] = ACTIONS(4036), + [sym___c_single_quote] = ACTIONS(4036), + [sym___r_double_quote] = ACTIONS(4036), + [sym___r_single_quote] = ACTIONS(4036), }, [1522] = { - [ts_builtin_sym_end] = ACTIONS(4045), - [sym_identifier] = ACTIONS(4047), - [anon_sym_LF] = ACTIONS(4047), - [anon_sym_CR] = ACTIONS(4047), - [anon_sym_CR_LF] = ACTIONS(4047), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_LBRACE] = ACTIONS(4047), - [anon_sym_const] = ACTIONS(4047), - [anon_sym_LPAREN] = ACTIONS(4047), - [anon_sym___global] = ACTIONS(4047), - [anon_sym_type] = ACTIONS(4047), - [anon_sym_fn] = ACTIONS(4047), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4047), - [anon_sym_struct] = ACTIONS(4047), - [anon_sym_union] = ACTIONS(4047), - [anon_sym_pub] = ACTIONS(4047), - [anon_sym_mut] = ACTIONS(4047), - [anon_sym_enum] = ACTIONS(4047), - [anon_sym_interface] = ACTIONS(4047), - [anon_sym_QMARK] = ACTIONS(4047), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_go] = ACTIONS(4047), - [anon_sym_spawn] = ACTIONS(4047), - [anon_sym_json_DOTdecode] = ACTIONS(4047), - [anon_sym_LBRACK2] = ACTIONS(4047), - [anon_sym_TILDE] = ACTIONS(4047), - [anon_sym_CARET] = ACTIONS(4047), - [anon_sym_AMP] = ACTIONS(4047), - [anon_sym_LT_DASH] = ACTIONS(4047), - [sym_none] = ACTIONS(4047), - [sym_true] = ACTIONS(4047), - [sym_false] = ACTIONS(4047), - [sym_nil] = ACTIONS(4047), - [anon_sym_if] = ACTIONS(4047), - [anon_sym_DOLLARif] = ACTIONS(4047), - [anon_sym_match] = ACTIONS(4047), - [anon_sym_select] = ACTIONS(4047), - [anon_sym_lock] = ACTIONS(4047), - [anon_sym_rlock] = ACTIONS(4047), - [anon_sym_unsafe] = ACTIONS(4047), - [anon_sym_sql] = ACTIONS(4047), - [sym_int_literal] = ACTIONS(4047), - [sym_float_literal] = ACTIONS(4047), - [sym_rune_literal] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4047), - [anon_sym_shared] = ACTIONS(4047), - [anon_sym_map_LBRACK] = ACTIONS(4047), - [anon_sym_chan] = ACTIONS(4047), - [anon_sym_thread] = ACTIONS(4047), - [anon_sym_atomic] = ACTIONS(4047), - [anon_sym_assert] = ACTIONS(4047), - [anon_sym_defer] = ACTIONS(4047), - [anon_sym_goto] = ACTIONS(4047), - [anon_sym_break] = ACTIONS(4047), - [anon_sym_continue] = ACTIONS(4047), - [anon_sym_return] = ACTIONS(4047), - [anon_sym_DOLLARfor] = ACTIONS(4047), - [anon_sym_for] = ACTIONS(4047), - [anon_sym_POUND] = ACTIONS(4047), - [anon_sym_asm] = ACTIONS(4047), - [anon_sym_AT_LBRACK] = ACTIONS(4047), - [sym___double_quote] = ACTIONS(4047), - [sym___single_quote] = ACTIONS(4047), - [sym___c_double_quote] = ACTIONS(4047), - [sym___c_single_quote] = ACTIONS(4047), - [sym___r_double_quote] = ACTIONS(4047), - [sym___r_single_quote] = ACTIONS(4047), + [ts_builtin_sym_end] = ACTIONS(4038), + [sym_identifier] = ACTIONS(4040), + [anon_sym_LF] = ACTIONS(4040), + [anon_sym_CR] = ACTIONS(4040), + [anon_sym_CR_LF] = ACTIONS(4040), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4040), + [anon_sym_LBRACE] = ACTIONS(4040), + [anon_sym_const] = ACTIONS(4040), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym___global] = ACTIONS(4040), + [anon_sym_type] = ACTIONS(4040), + [anon_sym_fn] = ACTIONS(4040), + [anon_sym_PLUS] = ACTIONS(4040), + [anon_sym_DASH] = ACTIONS(4040), + [anon_sym_STAR] = ACTIONS(4040), + [anon_sym_struct] = ACTIONS(4040), + [anon_sym_union] = ACTIONS(4040), + [anon_sym_pub] = ACTIONS(4040), + [anon_sym_mut] = ACTIONS(4040), + [anon_sym_enum] = ACTIONS(4040), + [anon_sym_interface] = ACTIONS(4040), + [anon_sym_QMARK] = ACTIONS(4040), + [anon_sym_BANG] = ACTIONS(4040), + [anon_sym_go] = ACTIONS(4040), + [anon_sym_spawn] = ACTIONS(4040), + [anon_sym_json_DOTdecode] = ACTIONS(4040), + [anon_sym_LBRACK2] = ACTIONS(4040), + [anon_sym_TILDE] = ACTIONS(4040), + [anon_sym_CARET] = ACTIONS(4040), + [anon_sym_AMP] = ACTIONS(4040), + [anon_sym_LT_DASH] = ACTIONS(4040), + [sym_none] = ACTIONS(4040), + [sym_true] = ACTIONS(4040), + [sym_false] = ACTIONS(4040), + [sym_nil] = ACTIONS(4040), + [anon_sym_if] = ACTIONS(4040), + [anon_sym_DOLLARif] = ACTIONS(4040), + [anon_sym_match] = ACTIONS(4040), + [anon_sym_select] = ACTIONS(4040), + [anon_sym_lock] = ACTIONS(4040), + [anon_sym_rlock] = ACTIONS(4040), + [anon_sym_unsafe] = ACTIONS(4040), + [anon_sym_sql] = ACTIONS(4040), + [sym_int_literal] = ACTIONS(4040), + [sym_float_literal] = ACTIONS(4040), + [sym_rune_literal] = ACTIONS(4040), + [anon_sym_AT] = ACTIONS(4040), + [anon_sym_shared] = ACTIONS(4040), + [anon_sym_map_LBRACK] = ACTIONS(4040), + [anon_sym_chan] = ACTIONS(4040), + [anon_sym_thread] = ACTIONS(4040), + [anon_sym_atomic] = ACTIONS(4040), + [anon_sym_assert] = ACTIONS(4040), + [anon_sym_defer] = ACTIONS(4040), + [anon_sym_goto] = ACTIONS(4040), + [anon_sym_break] = ACTIONS(4040), + [anon_sym_continue] = ACTIONS(4040), + [anon_sym_return] = ACTIONS(4040), + [anon_sym_DOLLARfor] = ACTIONS(4040), + [anon_sym_for] = ACTIONS(4040), + [anon_sym_POUND] = ACTIONS(4040), + [anon_sym_asm] = ACTIONS(4040), + [anon_sym_AT_LBRACK] = ACTIONS(4040), + [sym___double_quote] = ACTIONS(4040), + [sym___single_quote] = ACTIONS(4040), + [sym___c_double_quote] = ACTIONS(4040), + [sym___c_single_quote] = ACTIONS(4040), + [sym___r_double_quote] = ACTIONS(4040), + [sym___r_single_quote] = ACTIONS(4040), }, [1523] = { - [ts_builtin_sym_end] = ACTIONS(4049), - [sym_identifier] = ACTIONS(4051), - [anon_sym_LF] = ACTIONS(4051), - [anon_sym_CR] = ACTIONS(4051), - [anon_sym_CR_LF] = ACTIONS(4051), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4051), - [anon_sym_LBRACE] = ACTIONS(4051), - [anon_sym_const] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(4051), - [anon_sym___global] = ACTIONS(4051), - [anon_sym_type] = ACTIONS(4051), - [anon_sym_fn] = ACTIONS(4051), - [anon_sym_PLUS] = ACTIONS(4051), - [anon_sym_DASH] = ACTIONS(4051), - [anon_sym_STAR] = ACTIONS(4051), - [anon_sym_struct] = ACTIONS(4051), - [anon_sym_union] = ACTIONS(4051), - [anon_sym_pub] = ACTIONS(4051), - [anon_sym_mut] = ACTIONS(4051), - [anon_sym_enum] = ACTIONS(4051), - [anon_sym_interface] = ACTIONS(4051), - [anon_sym_QMARK] = ACTIONS(4051), - [anon_sym_BANG] = ACTIONS(4051), - [anon_sym_go] = ACTIONS(4051), - [anon_sym_spawn] = ACTIONS(4051), - [anon_sym_json_DOTdecode] = ACTIONS(4051), - [anon_sym_LBRACK2] = ACTIONS(4051), - [anon_sym_TILDE] = ACTIONS(4051), - [anon_sym_CARET] = ACTIONS(4051), - [anon_sym_AMP] = ACTIONS(4051), - [anon_sym_LT_DASH] = ACTIONS(4051), - [sym_none] = ACTIONS(4051), - [sym_true] = ACTIONS(4051), - [sym_false] = ACTIONS(4051), - [sym_nil] = ACTIONS(4051), - [anon_sym_if] = ACTIONS(4051), - [anon_sym_DOLLARif] = ACTIONS(4051), - [anon_sym_match] = ACTIONS(4051), - [anon_sym_select] = ACTIONS(4051), - [anon_sym_lock] = ACTIONS(4051), - [anon_sym_rlock] = ACTIONS(4051), - [anon_sym_unsafe] = ACTIONS(4051), - [anon_sym_sql] = ACTIONS(4051), - [sym_int_literal] = ACTIONS(4051), - [sym_float_literal] = ACTIONS(4051), - [sym_rune_literal] = ACTIONS(4051), - [anon_sym_AT] = ACTIONS(4051), - [anon_sym_shared] = ACTIONS(4051), - [anon_sym_map_LBRACK] = ACTIONS(4051), - [anon_sym_chan] = ACTIONS(4051), - [anon_sym_thread] = ACTIONS(4051), - [anon_sym_atomic] = ACTIONS(4051), - [anon_sym_assert] = ACTIONS(4051), - [anon_sym_defer] = ACTIONS(4051), - [anon_sym_goto] = ACTIONS(4051), - [anon_sym_break] = ACTIONS(4051), - [anon_sym_continue] = ACTIONS(4051), - [anon_sym_return] = ACTIONS(4051), - [anon_sym_DOLLARfor] = ACTIONS(4051), - [anon_sym_for] = ACTIONS(4051), - [anon_sym_POUND] = ACTIONS(4051), - [anon_sym_asm] = ACTIONS(4051), - [anon_sym_AT_LBRACK] = ACTIONS(4051), - [sym___double_quote] = ACTIONS(4051), - [sym___single_quote] = ACTIONS(4051), - [sym___c_double_quote] = ACTIONS(4051), - [sym___c_single_quote] = ACTIONS(4051), - [sym___r_double_quote] = ACTIONS(4051), - [sym___r_single_quote] = ACTIONS(4051), + [ts_builtin_sym_end] = ACTIONS(4042), + [sym_identifier] = ACTIONS(4044), + [anon_sym_LF] = ACTIONS(4044), + [anon_sym_CR] = ACTIONS(4044), + [anon_sym_CR_LF] = ACTIONS(4044), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4044), + [anon_sym_LBRACE] = ACTIONS(4044), + [anon_sym_const] = ACTIONS(4044), + [anon_sym_LPAREN] = ACTIONS(4044), + [anon_sym___global] = ACTIONS(4044), + [anon_sym_type] = ACTIONS(4044), + [anon_sym_fn] = ACTIONS(4044), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_STAR] = ACTIONS(4044), + [anon_sym_struct] = ACTIONS(4044), + [anon_sym_union] = ACTIONS(4044), + [anon_sym_pub] = ACTIONS(4044), + [anon_sym_mut] = ACTIONS(4044), + [anon_sym_enum] = ACTIONS(4044), + [anon_sym_interface] = ACTIONS(4044), + [anon_sym_QMARK] = ACTIONS(4044), + [anon_sym_BANG] = ACTIONS(4044), + [anon_sym_go] = ACTIONS(4044), + [anon_sym_spawn] = ACTIONS(4044), + [anon_sym_json_DOTdecode] = ACTIONS(4044), + [anon_sym_LBRACK2] = ACTIONS(4044), + [anon_sym_TILDE] = ACTIONS(4044), + [anon_sym_CARET] = ACTIONS(4044), + [anon_sym_AMP] = ACTIONS(4044), + [anon_sym_LT_DASH] = ACTIONS(4044), + [sym_none] = ACTIONS(4044), + [sym_true] = ACTIONS(4044), + [sym_false] = ACTIONS(4044), + [sym_nil] = ACTIONS(4044), + [anon_sym_if] = ACTIONS(4044), + [anon_sym_DOLLARif] = ACTIONS(4044), + [anon_sym_match] = ACTIONS(4044), + [anon_sym_select] = ACTIONS(4044), + [anon_sym_lock] = ACTIONS(4044), + [anon_sym_rlock] = ACTIONS(4044), + [anon_sym_unsafe] = ACTIONS(4044), + [anon_sym_sql] = ACTIONS(4044), + [sym_int_literal] = ACTIONS(4044), + [sym_float_literal] = ACTIONS(4044), + [sym_rune_literal] = ACTIONS(4044), + [anon_sym_AT] = ACTIONS(4044), + [anon_sym_shared] = ACTIONS(4044), + [anon_sym_map_LBRACK] = ACTIONS(4044), + [anon_sym_chan] = ACTIONS(4044), + [anon_sym_thread] = ACTIONS(4044), + [anon_sym_atomic] = ACTIONS(4044), + [anon_sym_assert] = ACTIONS(4044), + [anon_sym_defer] = ACTIONS(4044), + [anon_sym_goto] = ACTIONS(4044), + [anon_sym_break] = ACTIONS(4044), + [anon_sym_continue] = ACTIONS(4044), + [anon_sym_return] = ACTIONS(4044), + [anon_sym_DOLLARfor] = ACTIONS(4044), + [anon_sym_for] = ACTIONS(4044), + [anon_sym_POUND] = ACTIONS(4044), + [anon_sym_asm] = ACTIONS(4044), + [anon_sym_AT_LBRACK] = ACTIONS(4044), + [sym___double_quote] = ACTIONS(4044), + [sym___single_quote] = ACTIONS(4044), + [sym___c_double_quote] = ACTIONS(4044), + [sym___c_single_quote] = ACTIONS(4044), + [sym___r_double_quote] = ACTIONS(4044), + [sym___r_single_quote] = ACTIONS(4044), }, [1524] = { - [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), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4055), - [anon_sym_LBRACE] = ACTIONS(4055), - [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_AT] = 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), - [sym___double_quote] = ACTIONS(4055), - [sym___single_quote] = ACTIONS(4055), - [sym___c_double_quote] = ACTIONS(4055), - [sym___c_single_quote] = ACTIONS(4055), - [sym___r_double_quote] = ACTIONS(4055), - [sym___r_single_quote] = ACTIONS(4055), + [ts_builtin_sym_end] = ACTIONS(3100), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LF] = ACTIONS(3102), + [anon_sym_CR] = ACTIONS(3102), + [anon_sym_CR_LF] = ACTIONS(3102), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(3102), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_const] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(3102), + [anon_sym___global] = ACTIONS(3102), + [anon_sym_type] = ACTIONS(3102), + [anon_sym_fn] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3102), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_struct] = ACTIONS(3102), + [anon_sym_union] = ACTIONS(3102), + [anon_sym_pub] = ACTIONS(3102), + [anon_sym_mut] = ACTIONS(3102), + [anon_sym_enum] = ACTIONS(3102), + [anon_sym_interface] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3102), + [anon_sym_BANG] = ACTIONS(3102), + [anon_sym_go] = ACTIONS(3102), + [anon_sym_spawn] = ACTIONS(3102), + [anon_sym_json_DOTdecode] = ACTIONS(3102), + [anon_sym_LBRACK2] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3102), + [anon_sym_CARET] = ACTIONS(3102), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT_DASH] = ACTIONS(3102), + [sym_none] = ACTIONS(3102), + [sym_true] = ACTIONS(3102), + [sym_false] = ACTIONS(3102), + [sym_nil] = ACTIONS(3102), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_DOLLARif] = ACTIONS(3102), + [anon_sym_match] = ACTIONS(3102), + [anon_sym_select] = ACTIONS(3102), + [anon_sym_lock] = ACTIONS(3102), + [anon_sym_rlock] = ACTIONS(3102), + [anon_sym_unsafe] = ACTIONS(3102), + [anon_sym_sql] = ACTIONS(3102), + [sym_int_literal] = ACTIONS(3102), + [sym_float_literal] = ACTIONS(3102), + [sym_rune_literal] = ACTIONS(3102), + [anon_sym_AT] = ACTIONS(3102), + [anon_sym_shared] = ACTIONS(3102), + [anon_sym_map_LBRACK] = ACTIONS(3102), + [anon_sym_chan] = ACTIONS(3102), + [anon_sym_thread] = ACTIONS(3102), + [anon_sym_atomic] = ACTIONS(3102), + [anon_sym_assert] = ACTIONS(3102), + [anon_sym_defer] = ACTIONS(3102), + [anon_sym_goto] = ACTIONS(3102), + [anon_sym_break] = ACTIONS(3102), + [anon_sym_continue] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_DOLLARfor] = ACTIONS(3102), + [anon_sym_for] = ACTIONS(3102), + [anon_sym_POUND] = ACTIONS(3102), + [anon_sym_asm] = ACTIONS(3102), + [anon_sym_AT_LBRACK] = ACTIONS(3102), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3102), + [sym___c_double_quote] = ACTIONS(3102), + [sym___c_single_quote] = ACTIONS(3102), + [sym___r_double_quote] = ACTIONS(3102), + [sym___r_single_quote] = ACTIONS(3102), }, [1525] = { - [ts_builtin_sym_end] = ACTIONS(4057), - [sym_identifier] = ACTIONS(4059), - [anon_sym_LF] = ACTIONS(4059), - [anon_sym_CR] = ACTIONS(4059), - [anon_sym_CR_LF] = ACTIONS(4059), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4059), - [anon_sym_LBRACE] = ACTIONS(4059), - [anon_sym_const] = ACTIONS(4059), - [anon_sym_LPAREN] = ACTIONS(4059), - [anon_sym___global] = ACTIONS(4059), - [anon_sym_type] = ACTIONS(4059), - [anon_sym_fn] = ACTIONS(4059), - [anon_sym_PLUS] = ACTIONS(4059), - [anon_sym_DASH] = ACTIONS(4059), - [anon_sym_STAR] = ACTIONS(4059), - [anon_sym_struct] = ACTIONS(4059), - [anon_sym_union] = ACTIONS(4059), - [anon_sym_pub] = ACTIONS(4059), - [anon_sym_mut] = ACTIONS(4059), - [anon_sym_enum] = ACTIONS(4059), - [anon_sym_interface] = ACTIONS(4059), - [anon_sym_QMARK] = ACTIONS(4059), - [anon_sym_BANG] = ACTIONS(4059), - [anon_sym_go] = ACTIONS(4059), - [anon_sym_spawn] = ACTIONS(4059), - [anon_sym_json_DOTdecode] = ACTIONS(4059), - [anon_sym_LBRACK2] = ACTIONS(4059), - [anon_sym_TILDE] = ACTIONS(4059), - [anon_sym_CARET] = ACTIONS(4059), - [anon_sym_AMP] = ACTIONS(4059), - [anon_sym_LT_DASH] = ACTIONS(4059), - [sym_none] = ACTIONS(4059), - [sym_true] = ACTIONS(4059), - [sym_false] = ACTIONS(4059), - [sym_nil] = ACTIONS(4059), - [anon_sym_if] = ACTIONS(4059), - [anon_sym_DOLLARif] = ACTIONS(4059), - [anon_sym_match] = ACTIONS(4059), - [anon_sym_select] = ACTIONS(4059), - [anon_sym_lock] = ACTIONS(4059), - [anon_sym_rlock] = ACTIONS(4059), - [anon_sym_unsafe] = ACTIONS(4059), - [anon_sym_sql] = ACTIONS(4059), - [sym_int_literal] = ACTIONS(4059), - [sym_float_literal] = ACTIONS(4059), - [sym_rune_literal] = ACTIONS(4059), - [anon_sym_AT] = ACTIONS(4059), - [anon_sym_shared] = ACTIONS(4059), - [anon_sym_map_LBRACK] = ACTIONS(4059), - [anon_sym_chan] = ACTIONS(4059), - [anon_sym_thread] = ACTIONS(4059), - [anon_sym_atomic] = ACTIONS(4059), - [anon_sym_assert] = ACTIONS(4059), - [anon_sym_defer] = ACTIONS(4059), - [anon_sym_goto] = ACTIONS(4059), - [anon_sym_break] = ACTIONS(4059), - [anon_sym_continue] = ACTIONS(4059), - [anon_sym_return] = ACTIONS(4059), - [anon_sym_DOLLARfor] = ACTIONS(4059), - [anon_sym_for] = ACTIONS(4059), - [anon_sym_POUND] = ACTIONS(4059), - [anon_sym_asm] = ACTIONS(4059), - [anon_sym_AT_LBRACK] = ACTIONS(4059), - [sym___double_quote] = ACTIONS(4059), - [sym___single_quote] = ACTIONS(4059), - [sym___c_double_quote] = ACTIONS(4059), - [sym___c_single_quote] = ACTIONS(4059), - [sym___r_double_quote] = ACTIONS(4059), - [sym___r_single_quote] = ACTIONS(4059), + [ts_builtin_sym_end] = ACTIONS(4046), + [sym_identifier] = ACTIONS(4048), + [anon_sym_LF] = ACTIONS(4048), + [anon_sym_CR] = ACTIONS(4048), + [anon_sym_CR_LF] = ACTIONS(4048), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4048), + [anon_sym_LBRACE] = ACTIONS(4048), + [anon_sym_const] = ACTIONS(4048), + [anon_sym_LPAREN] = ACTIONS(4048), + [anon_sym___global] = ACTIONS(4048), + [anon_sym_type] = ACTIONS(4048), + [anon_sym_fn] = ACTIONS(4048), + [anon_sym_PLUS] = ACTIONS(4048), + [anon_sym_DASH] = ACTIONS(4048), + [anon_sym_STAR] = ACTIONS(4048), + [anon_sym_struct] = ACTIONS(4048), + [anon_sym_union] = ACTIONS(4048), + [anon_sym_pub] = ACTIONS(4048), + [anon_sym_mut] = ACTIONS(4048), + [anon_sym_enum] = ACTIONS(4048), + [anon_sym_interface] = ACTIONS(4048), + [anon_sym_QMARK] = ACTIONS(4048), + [anon_sym_BANG] = ACTIONS(4048), + [anon_sym_go] = ACTIONS(4048), + [anon_sym_spawn] = ACTIONS(4048), + [anon_sym_json_DOTdecode] = ACTIONS(4048), + [anon_sym_LBRACK2] = ACTIONS(4048), + [anon_sym_TILDE] = ACTIONS(4048), + [anon_sym_CARET] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_LT_DASH] = ACTIONS(4048), + [sym_none] = ACTIONS(4048), + [sym_true] = ACTIONS(4048), + [sym_false] = ACTIONS(4048), + [sym_nil] = ACTIONS(4048), + [anon_sym_if] = ACTIONS(4048), + [anon_sym_DOLLARif] = ACTIONS(4048), + [anon_sym_match] = ACTIONS(4048), + [anon_sym_select] = ACTIONS(4048), + [anon_sym_lock] = ACTIONS(4048), + [anon_sym_rlock] = ACTIONS(4048), + [anon_sym_unsafe] = ACTIONS(4048), + [anon_sym_sql] = ACTIONS(4048), + [sym_int_literal] = ACTIONS(4048), + [sym_float_literal] = ACTIONS(4048), + [sym_rune_literal] = ACTIONS(4048), + [anon_sym_AT] = ACTIONS(4048), + [anon_sym_shared] = ACTIONS(4048), + [anon_sym_map_LBRACK] = ACTIONS(4048), + [anon_sym_chan] = ACTIONS(4048), + [anon_sym_thread] = ACTIONS(4048), + [anon_sym_atomic] = ACTIONS(4048), + [anon_sym_assert] = ACTIONS(4048), + [anon_sym_defer] = ACTIONS(4048), + [anon_sym_goto] = ACTIONS(4048), + [anon_sym_break] = ACTIONS(4048), + [anon_sym_continue] = ACTIONS(4048), + [anon_sym_return] = ACTIONS(4048), + [anon_sym_DOLLARfor] = ACTIONS(4048), + [anon_sym_for] = ACTIONS(4048), + [anon_sym_POUND] = ACTIONS(4048), + [anon_sym_asm] = ACTIONS(4048), + [anon_sym_AT_LBRACK] = ACTIONS(4048), + [sym___double_quote] = ACTIONS(4048), + [sym___single_quote] = ACTIONS(4048), + [sym___c_double_quote] = ACTIONS(4048), + [sym___c_single_quote] = ACTIONS(4048), + [sym___r_double_quote] = ACTIONS(4048), + [sym___r_single_quote] = ACTIONS(4048), }, [1526] = { - [ts_builtin_sym_end] = ACTIONS(2698), - [sym_identifier] = ACTIONS(2700), - [anon_sym_LF] = ACTIONS(2700), - [anon_sym_CR] = ACTIONS(2700), - [anon_sym_CR_LF] = ACTIONS(2700), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_const] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym___global] = ACTIONS(2700), - [anon_sym_type] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_union] = ACTIONS(2700), - [anon_sym_pub] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_enum] = ACTIONS(2700), - [anon_sym_interface] = ACTIONS(2700), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2700), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), - [sym_rune_literal] = ACTIONS(2700), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2700), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [anon_sym_assert] = ACTIONS(2700), - [anon_sym_defer] = ACTIONS(2700), - [anon_sym_goto] = ACTIONS(2700), - [anon_sym_break] = ACTIONS(2700), - [anon_sym_continue] = ACTIONS(2700), - [anon_sym_return] = ACTIONS(2700), - [anon_sym_DOLLARfor] = ACTIONS(2700), - [anon_sym_for] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(2700), - [anon_sym_asm] = ACTIONS(2700), - [anon_sym_AT_LBRACK] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2700), - [sym___single_quote] = ACTIONS(2700), - [sym___c_double_quote] = ACTIONS(2700), - [sym___c_single_quote] = ACTIONS(2700), - [sym___r_double_quote] = ACTIONS(2700), - [sym___r_single_quote] = ACTIONS(2700), + [ts_builtin_sym_end] = ACTIONS(4050), + [sym_identifier] = ACTIONS(4052), + [anon_sym_LF] = ACTIONS(4052), + [anon_sym_CR] = ACTIONS(4052), + [anon_sym_CR_LF] = ACTIONS(4052), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(4052), + [anon_sym_const] = ACTIONS(4052), + [anon_sym_LPAREN] = ACTIONS(4052), + [anon_sym___global] = ACTIONS(4052), + [anon_sym_type] = ACTIONS(4052), + [anon_sym_fn] = ACTIONS(4052), + [anon_sym_PLUS] = ACTIONS(4052), + [anon_sym_DASH] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(4052), + [anon_sym_struct] = ACTIONS(4052), + [anon_sym_union] = ACTIONS(4052), + [anon_sym_pub] = ACTIONS(4052), + [anon_sym_mut] = ACTIONS(4052), + [anon_sym_enum] = ACTIONS(4052), + [anon_sym_interface] = ACTIONS(4052), + [anon_sym_QMARK] = ACTIONS(4052), + [anon_sym_BANG] = ACTIONS(4052), + [anon_sym_go] = ACTIONS(4052), + [anon_sym_spawn] = ACTIONS(4052), + [anon_sym_json_DOTdecode] = ACTIONS(4052), + [anon_sym_LBRACK2] = ACTIONS(4052), + [anon_sym_TILDE] = ACTIONS(4052), + [anon_sym_CARET] = ACTIONS(4052), + [anon_sym_AMP] = ACTIONS(4052), + [anon_sym_LT_DASH] = ACTIONS(4052), + [sym_none] = ACTIONS(4052), + [sym_true] = ACTIONS(4052), + [sym_false] = ACTIONS(4052), + [sym_nil] = ACTIONS(4052), + [anon_sym_if] = ACTIONS(4052), + [anon_sym_DOLLARif] = ACTIONS(4052), + [anon_sym_match] = ACTIONS(4052), + [anon_sym_select] = ACTIONS(4052), + [anon_sym_lock] = ACTIONS(4052), + [anon_sym_rlock] = ACTIONS(4052), + [anon_sym_unsafe] = ACTIONS(4052), + [anon_sym_sql] = ACTIONS(4052), + [sym_int_literal] = ACTIONS(4052), + [sym_float_literal] = ACTIONS(4052), + [sym_rune_literal] = ACTIONS(4052), + [anon_sym_AT] = ACTIONS(4052), + [anon_sym_shared] = ACTIONS(4052), + [anon_sym_map_LBRACK] = ACTIONS(4052), + [anon_sym_chan] = ACTIONS(4052), + [anon_sym_thread] = ACTIONS(4052), + [anon_sym_atomic] = ACTIONS(4052), + [anon_sym_assert] = ACTIONS(4052), + [anon_sym_defer] = ACTIONS(4052), + [anon_sym_goto] = ACTIONS(4052), + [anon_sym_break] = ACTIONS(4052), + [anon_sym_continue] = ACTIONS(4052), + [anon_sym_return] = ACTIONS(4052), + [anon_sym_DOLLARfor] = ACTIONS(4052), + [anon_sym_for] = ACTIONS(4052), + [anon_sym_POUND] = ACTIONS(4052), + [anon_sym_asm] = ACTIONS(4052), + [anon_sym_AT_LBRACK] = ACTIONS(4052), + [sym___double_quote] = ACTIONS(4052), + [sym___single_quote] = ACTIONS(4052), + [sym___c_double_quote] = ACTIONS(4052), + [sym___c_single_quote] = ACTIONS(4052), + [sym___r_double_quote] = ACTIONS(4052), + [sym___r_single_quote] = ACTIONS(4052), }, [1527] = { - [ts_builtin_sym_end] = ACTIONS(4061), - [sym_identifier] = ACTIONS(4063), - [anon_sym_LF] = ACTIONS(4063), - [anon_sym_CR] = ACTIONS(4063), - [anon_sym_CR_LF] = ACTIONS(4063), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4063), - [anon_sym_LBRACE] = ACTIONS(4063), - [anon_sym_const] = ACTIONS(4063), - [anon_sym_LPAREN] = ACTIONS(4063), - [anon_sym___global] = ACTIONS(4063), - [anon_sym_type] = ACTIONS(4063), - [anon_sym_fn] = ACTIONS(4063), - [anon_sym_PLUS] = ACTIONS(4063), - [anon_sym_DASH] = ACTIONS(4063), - [anon_sym_STAR] = ACTIONS(4063), - [anon_sym_struct] = ACTIONS(4063), - [anon_sym_union] = ACTIONS(4063), - [anon_sym_pub] = ACTIONS(4063), - [anon_sym_mut] = ACTIONS(4063), - [anon_sym_enum] = ACTIONS(4063), - [anon_sym_interface] = ACTIONS(4063), - [anon_sym_QMARK] = ACTIONS(4063), - [anon_sym_BANG] = ACTIONS(4063), - [anon_sym_go] = ACTIONS(4063), - [anon_sym_spawn] = ACTIONS(4063), - [anon_sym_json_DOTdecode] = ACTIONS(4063), - [anon_sym_LBRACK2] = ACTIONS(4063), - [anon_sym_TILDE] = ACTIONS(4063), - [anon_sym_CARET] = ACTIONS(4063), - [anon_sym_AMP] = ACTIONS(4063), - [anon_sym_LT_DASH] = ACTIONS(4063), - [sym_none] = ACTIONS(4063), - [sym_true] = ACTIONS(4063), - [sym_false] = ACTIONS(4063), - [sym_nil] = ACTIONS(4063), - [anon_sym_if] = ACTIONS(4063), - [anon_sym_DOLLARif] = ACTIONS(4063), - [anon_sym_match] = ACTIONS(4063), - [anon_sym_select] = ACTIONS(4063), - [anon_sym_lock] = ACTIONS(4063), - [anon_sym_rlock] = ACTIONS(4063), - [anon_sym_unsafe] = ACTIONS(4063), - [anon_sym_sql] = ACTIONS(4063), - [sym_int_literal] = ACTIONS(4063), - [sym_float_literal] = ACTIONS(4063), - [sym_rune_literal] = ACTIONS(4063), - [anon_sym_AT] = ACTIONS(4063), - [anon_sym_shared] = ACTIONS(4063), - [anon_sym_map_LBRACK] = ACTIONS(4063), - [anon_sym_chan] = ACTIONS(4063), - [anon_sym_thread] = ACTIONS(4063), - [anon_sym_atomic] = ACTIONS(4063), - [anon_sym_assert] = ACTIONS(4063), - [anon_sym_defer] = ACTIONS(4063), - [anon_sym_goto] = ACTIONS(4063), - [anon_sym_break] = ACTIONS(4063), - [anon_sym_continue] = ACTIONS(4063), - [anon_sym_return] = ACTIONS(4063), - [anon_sym_DOLLARfor] = ACTIONS(4063), - [anon_sym_for] = ACTIONS(4063), - [anon_sym_POUND] = ACTIONS(4063), - [anon_sym_asm] = ACTIONS(4063), - [anon_sym_AT_LBRACK] = ACTIONS(4063), - [sym___double_quote] = ACTIONS(4063), - [sym___single_quote] = ACTIONS(4063), - [sym___c_double_quote] = ACTIONS(4063), - [sym___c_single_quote] = ACTIONS(4063), - [sym___r_double_quote] = ACTIONS(4063), - [sym___r_single_quote] = ACTIONS(4063), + [ts_builtin_sym_end] = ACTIONS(4054), + [sym_identifier] = ACTIONS(4056), + [anon_sym_LF] = ACTIONS(4056), + [anon_sym_CR] = ACTIONS(4056), + [anon_sym_CR_LF] = ACTIONS(4056), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4056), + [anon_sym_LBRACE] = ACTIONS(4056), + [anon_sym_const] = ACTIONS(4056), + [anon_sym_LPAREN] = ACTIONS(4056), + [anon_sym___global] = ACTIONS(4056), + [anon_sym_type] = ACTIONS(4056), + [anon_sym_fn] = ACTIONS(4056), + [anon_sym_PLUS] = ACTIONS(4056), + [anon_sym_DASH] = ACTIONS(4056), + [anon_sym_STAR] = ACTIONS(4056), + [anon_sym_struct] = ACTIONS(4056), + [anon_sym_union] = ACTIONS(4056), + [anon_sym_pub] = ACTIONS(4056), + [anon_sym_mut] = ACTIONS(4056), + [anon_sym_enum] = ACTIONS(4056), + [anon_sym_interface] = ACTIONS(4056), + [anon_sym_QMARK] = ACTIONS(4056), + [anon_sym_BANG] = ACTIONS(4056), + [anon_sym_go] = ACTIONS(4056), + [anon_sym_spawn] = ACTIONS(4056), + [anon_sym_json_DOTdecode] = ACTIONS(4056), + [anon_sym_LBRACK2] = ACTIONS(4056), + [anon_sym_TILDE] = ACTIONS(4056), + [anon_sym_CARET] = ACTIONS(4056), + [anon_sym_AMP] = ACTIONS(4056), + [anon_sym_LT_DASH] = ACTIONS(4056), + [sym_none] = ACTIONS(4056), + [sym_true] = ACTIONS(4056), + [sym_false] = ACTIONS(4056), + [sym_nil] = ACTIONS(4056), + [anon_sym_if] = ACTIONS(4056), + [anon_sym_DOLLARif] = ACTIONS(4056), + [anon_sym_match] = ACTIONS(4056), + [anon_sym_select] = ACTIONS(4056), + [anon_sym_lock] = ACTIONS(4056), + [anon_sym_rlock] = ACTIONS(4056), + [anon_sym_unsafe] = ACTIONS(4056), + [anon_sym_sql] = ACTIONS(4056), + [sym_int_literal] = ACTIONS(4056), + [sym_float_literal] = ACTIONS(4056), + [sym_rune_literal] = ACTIONS(4056), + [anon_sym_AT] = ACTIONS(4056), + [anon_sym_shared] = ACTIONS(4056), + [anon_sym_map_LBRACK] = ACTIONS(4056), + [anon_sym_chan] = ACTIONS(4056), + [anon_sym_thread] = ACTIONS(4056), + [anon_sym_atomic] = ACTIONS(4056), + [anon_sym_assert] = ACTIONS(4056), + [anon_sym_defer] = ACTIONS(4056), + [anon_sym_goto] = ACTIONS(4056), + [anon_sym_break] = ACTIONS(4056), + [anon_sym_continue] = ACTIONS(4056), + [anon_sym_return] = ACTIONS(4056), + [anon_sym_DOLLARfor] = ACTIONS(4056), + [anon_sym_for] = ACTIONS(4056), + [anon_sym_POUND] = ACTIONS(4056), + [anon_sym_asm] = ACTIONS(4056), + [anon_sym_AT_LBRACK] = ACTIONS(4056), + [sym___double_quote] = ACTIONS(4056), + [sym___single_quote] = ACTIONS(4056), + [sym___c_double_quote] = ACTIONS(4056), + [sym___c_single_quote] = ACTIONS(4056), + [sym___r_double_quote] = ACTIONS(4056), + [sym___r_single_quote] = ACTIONS(4056), }, [1528] = { - [ts_builtin_sym_end] = ACTIONS(4065), - [sym_identifier] = ACTIONS(4067), - [anon_sym_LF] = ACTIONS(4067), - [anon_sym_CR] = ACTIONS(4067), - [anon_sym_CR_LF] = ACTIONS(4067), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4067), - [anon_sym_LBRACE] = ACTIONS(4067), - [anon_sym_const] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym___global] = ACTIONS(4067), - [anon_sym_type] = ACTIONS(4067), - [anon_sym_fn] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4067), - [anon_sym_DASH] = ACTIONS(4067), - [anon_sym_STAR] = ACTIONS(4067), - [anon_sym_struct] = ACTIONS(4067), - [anon_sym_union] = ACTIONS(4067), - [anon_sym_pub] = ACTIONS(4067), - [anon_sym_mut] = ACTIONS(4067), - [anon_sym_enum] = ACTIONS(4067), - [anon_sym_interface] = ACTIONS(4067), - [anon_sym_QMARK] = ACTIONS(4067), - [anon_sym_BANG] = ACTIONS(4067), - [anon_sym_go] = ACTIONS(4067), - [anon_sym_spawn] = ACTIONS(4067), - [anon_sym_json_DOTdecode] = ACTIONS(4067), - [anon_sym_LBRACK2] = ACTIONS(4067), - [anon_sym_TILDE] = ACTIONS(4067), - [anon_sym_CARET] = ACTIONS(4067), - [anon_sym_AMP] = ACTIONS(4067), - [anon_sym_LT_DASH] = ACTIONS(4067), - [sym_none] = ACTIONS(4067), - [sym_true] = ACTIONS(4067), - [sym_false] = ACTIONS(4067), - [sym_nil] = ACTIONS(4067), - [anon_sym_if] = ACTIONS(4067), - [anon_sym_DOLLARif] = ACTIONS(4067), - [anon_sym_match] = ACTIONS(4067), - [anon_sym_select] = ACTIONS(4067), - [anon_sym_lock] = ACTIONS(4067), - [anon_sym_rlock] = ACTIONS(4067), - [anon_sym_unsafe] = ACTIONS(4067), - [anon_sym_sql] = ACTIONS(4067), - [sym_int_literal] = ACTIONS(4067), - [sym_float_literal] = ACTIONS(4067), - [sym_rune_literal] = ACTIONS(4067), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_shared] = ACTIONS(4067), - [anon_sym_map_LBRACK] = ACTIONS(4067), - [anon_sym_chan] = ACTIONS(4067), - [anon_sym_thread] = ACTIONS(4067), - [anon_sym_atomic] = ACTIONS(4067), - [anon_sym_assert] = ACTIONS(4067), - [anon_sym_defer] = ACTIONS(4067), - [anon_sym_goto] = ACTIONS(4067), - [anon_sym_break] = ACTIONS(4067), - [anon_sym_continue] = ACTIONS(4067), - [anon_sym_return] = ACTIONS(4067), - [anon_sym_DOLLARfor] = ACTIONS(4067), - [anon_sym_for] = ACTIONS(4067), - [anon_sym_POUND] = ACTIONS(4067), - [anon_sym_asm] = ACTIONS(4067), - [anon_sym_AT_LBRACK] = ACTIONS(4067), - [sym___double_quote] = ACTIONS(4067), - [sym___single_quote] = ACTIONS(4067), - [sym___c_double_quote] = ACTIONS(4067), - [sym___c_single_quote] = ACTIONS(4067), - [sym___r_double_quote] = ACTIONS(4067), - [sym___r_single_quote] = ACTIONS(4067), + [ts_builtin_sym_end] = ACTIONS(4058), + [sym_identifier] = ACTIONS(4060), + [anon_sym_LF] = ACTIONS(4060), + [anon_sym_CR] = ACTIONS(4060), + [anon_sym_CR_LF] = ACTIONS(4060), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4060), + [anon_sym_LBRACE] = ACTIONS(4060), + [anon_sym_const] = ACTIONS(4060), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym___global] = ACTIONS(4060), + [anon_sym_type] = ACTIONS(4060), + [anon_sym_fn] = ACTIONS(4060), + [anon_sym_PLUS] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4060), + [anon_sym_STAR] = ACTIONS(4060), + [anon_sym_struct] = ACTIONS(4060), + [anon_sym_union] = ACTIONS(4060), + [anon_sym_pub] = ACTIONS(4060), + [anon_sym_mut] = ACTIONS(4060), + [anon_sym_enum] = ACTIONS(4060), + [anon_sym_interface] = ACTIONS(4060), + [anon_sym_QMARK] = ACTIONS(4060), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_go] = ACTIONS(4060), + [anon_sym_spawn] = ACTIONS(4060), + [anon_sym_json_DOTdecode] = ACTIONS(4060), + [anon_sym_LBRACK2] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_CARET] = ACTIONS(4060), + [anon_sym_AMP] = ACTIONS(4060), + [anon_sym_LT_DASH] = ACTIONS(4060), + [sym_none] = ACTIONS(4060), + [sym_true] = ACTIONS(4060), + [sym_false] = ACTIONS(4060), + [sym_nil] = ACTIONS(4060), + [anon_sym_if] = ACTIONS(4060), + [anon_sym_DOLLARif] = ACTIONS(4060), + [anon_sym_match] = ACTIONS(4060), + [anon_sym_select] = ACTIONS(4060), + [anon_sym_lock] = ACTIONS(4060), + [anon_sym_rlock] = ACTIONS(4060), + [anon_sym_unsafe] = ACTIONS(4060), + [anon_sym_sql] = ACTIONS(4060), + [sym_int_literal] = ACTIONS(4060), + [sym_float_literal] = ACTIONS(4060), + [sym_rune_literal] = ACTIONS(4060), + [anon_sym_AT] = ACTIONS(4060), + [anon_sym_shared] = ACTIONS(4060), + [anon_sym_map_LBRACK] = ACTIONS(4060), + [anon_sym_chan] = ACTIONS(4060), + [anon_sym_thread] = ACTIONS(4060), + [anon_sym_atomic] = ACTIONS(4060), + [anon_sym_assert] = ACTIONS(4060), + [anon_sym_defer] = ACTIONS(4060), + [anon_sym_goto] = ACTIONS(4060), + [anon_sym_break] = ACTIONS(4060), + [anon_sym_continue] = ACTIONS(4060), + [anon_sym_return] = ACTIONS(4060), + [anon_sym_DOLLARfor] = ACTIONS(4060), + [anon_sym_for] = ACTIONS(4060), + [anon_sym_POUND] = ACTIONS(4060), + [anon_sym_asm] = ACTIONS(4060), + [anon_sym_AT_LBRACK] = ACTIONS(4060), + [sym___double_quote] = ACTIONS(4060), + [sym___single_quote] = ACTIONS(4060), + [sym___c_double_quote] = ACTIONS(4060), + [sym___c_single_quote] = ACTIONS(4060), + [sym___r_double_quote] = ACTIONS(4060), + [sym___r_single_quote] = ACTIONS(4060), }, [1529] = { - [ts_builtin_sym_end] = ACTIONS(4069), - [sym_identifier] = ACTIONS(4071), - [anon_sym_LF] = ACTIONS(4071), - [anon_sym_CR] = ACTIONS(4071), - [anon_sym_CR_LF] = ACTIONS(4071), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(4071), - [anon_sym_const] = ACTIONS(4071), - [anon_sym_LPAREN] = ACTIONS(4071), - [anon_sym___global] = ACTIONS(4071), - [anon_sym_type] = ACTIONS(4071), - [anon_sym_fn] = ACTIONS(4071), - [anon_sym_PLUS] = ACTIONS(4071), - [anon_sym_DASH] = ACTIONS(4071), - [anon_sym_STAR] = ACTIONS(4071), - [anon_sym_struct] = ACTIONS(4071), - [anon_sym_union] = ACTIONS(4071), - [anon_sym_pub] = ACTIONS(4071), - [anon_sym_mut] = ACTIONS(4071), - [anon_sym_enum] = ACTIONS(4071), - [anon_sym_interface] = ACTIONS(4071), - [anon_sym_QMARK] = ACTIONS(4071), - [anon_sym_BANG] = ACTIONS(4071), - [anon_sym_go] = ACTIONS(4071), - [anon_sym_spawn] = ACTIONS(4071), - [anon_sym_json_DOTdecode] = ACTIONS(4071), - [anon_sym_LBRACK2] = ACTIONS(4071), - [anon_sym_TILDE] = ACTIONS(4071), - [anon_sym_CARET] = ACTIONS(4071), - [anon_sym_AMP] = ACTIONS(4071), - [anon_sym_LT_DASH] = ACTIONS(4071), - [sym_none] = ACTIONS(4071), - [sym_true] = ACTIONS(4071), - [sym_false] = ACTIONS(4071), - [sym_nil] = ACTIONS(4071), - [anon_sym_if] = ACTIONS(4071), - [anon_sym_DOLLARif] = ACTIONS(4071), - [anon_sym_match] = ACTIONS(4071), - [anon_sym_select] = ACTIONS(4071), - [anon_sym_lock] = ACTIONS(4071), - [anon_sym_rlock] = ACTIONS(4071), - [anon_sym_unsafe] = ACTIONS(4071), - [anon_sym_sql] = ACTIONS(4071), - [sym_int_literal] = ACTIONS(4071), - [sym_float_literal] = ACTIONS(4071), - [sym_rune_literal] = ACTIONS(4071), - [anon_sym_AT] = ACTIONS(4071), - [anon_sym_shared] = ACTIONS(4071), - [anon_sym_map_LBRACK] = ACTIONS(4071), - [anon_sym_chan] = ACTIONS(4071), - [anon_sym_thread] = ACTIONS(4071), - [anon_sym_atomic] = ACTIONS(4071), - [anon_sym_assert] = ACTIONS(4071), - [anon_sym_defer] = ACTIONS(4071), - [anon_sym_goto] = ACTIONS(4071), - [anon_sym_break] = ACTIONS(4071), - [anon_sym_continue] = ACTIONS(4071), - [anon_sym_return] = ACTIONS(4071), - [anon_sym_DOLLARfor] = ACTIONS(4071), - [anon_sym_for] = ACTIONS(4071), - [anon_sym_POUND] = ACTIONS(4071), - [anon_sym_asm] = ACTIONS(4071), - [anon_sym_AT_LBRACK] = ACTIONS(4071), - [sym___double_quote] = ACTIONS(4071), - [sym___single_quote] = ACTIONS(4071), - [sym___c_double_quote] = ACTIONS(4071), - [sym___c_single_quote] = ACTIONS(4071), - [sym___r_double_quote] = ACTIONS(4071), - [sym___r_single_quote] = ACTIONS(4071), + [ts_builtin_sym_end] = ACTIONS(4062), + [sym_identifier] = ACTIONS(4064), + [anon_sym_LF] = ACTIONS(4064), + [anon_sym_CR] = ACTIONS(4064), + [anon_sym_CR_LF] = ACTIONS(4064), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4064), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_const] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4064), + [anon_sym___global] = ACTIONS(4064), + [anon_sym_type] = ACTIONS(4064), + [anon_sym_fn] = ACTIONS(4064), + [anon_sym_PLUS] = ACTIONS(4064), + [anon_sym_DASH] = ACTIONS(4064), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_struct] = ACTIONS(4064), + [anon_sym_union] = ACTIONS(4064), + [anon_sym_pub] = ACTIONS(4064), + [anon_sym_mut] = ACTIONS(4064), + [anon_sym_enum] = ACTIONS(4064), + [anon_sym_interface] = ACTIONS(4064), + [anon_sym_QMARK] = ACTIONS(4064), + [anon_sym_BANG] = ACTIONS(4064), + [anon_sym_go] = ACTIONS(4064), + [anon_sym_spawn] = ACTIONS(4064), + [anon_sym_json_DOTdecode] = ACTIONS(4064), + [anon_sym_LBRACK2] = ACTIONS(4064), + [anon_sym_TILDE] = ACTIONS(4064), + [anon_sym_CARET] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym_LT_DASH] = ACTIONS(4064), + [sym_none] = ACTIONS(4064), + [sym_true] = ACTIONS(4064), + [sym_false] = ACTIONS(4064), + [sym_nil] = ACTIONS(4064), + [anon_sym_if] = ACTIONS(4064), + [anon_sym_DOLLARif] = ACTIONS(4064), + [anon_sym_match] = ACTIONS(4064), + [anon_sym_select] = ACTIONS(4064), + [anon_sym_lock] = ACTIONS(4064), + [anon_sym_rlock] = ACTIONS(4064), + [anon_sym_unsafe] = ACTIONS(4064), + [anon_sym_sql] = ACTIONS(4064), + [sym_int_literal] = ACTIONS(4064), + [sym_float_literal] = ACTIONS(4064), + [sym_rune_literal] = ACTIONS(4064), + [anon_sym_AT] = ACTIONS(4064), + [anon_sym_shared] = ACTIONS(4064), + [anon_sym_map_LBRACK] = ACTIONS(4064), + [anon_sym_chan] = ACTIONS(4064), + [anon_sym_thread] = ACTIONS(4064), + [anon_sym_atomic] = ACTIONS(4064), + [anon_sym_assert] = ACTIONS(4064), + [anon_sym_defer] = ACTIONS(4064), + [anon_sym_goto] = ACTIONS(4064), + [anon_sym_break] = ACTIONS(4064), + [anon_sym_continue] = ACTIONS(4064), + [anon_sym_return] = ACTIONS(4064), + [anon_sym_DOLLARfor] = ACTIONS(4064), + [anon_sym_for] = ACTIONS(4064), + [anon_sym_POUND] = ACTIONS(4064), + [anon_sym_asm] = ACTIONS(4064), + [anon_sym_AT_LBRACK] = ACTIONS(4064), + [sym___double_quote] = ACTIONS(4064), + [sym___single_quote] = ACTIONS(4064), + [sym___c_double_quote] = ACTIONS(4064), + [sym___c_single_quote] = ACTIONS(4064), + [sym___r_double_quote] = ACTIONS(4064), + [sym___r_single_quote] = ACTIONS(4064), }, [1530] = { - [ts_builtin_sym_end] = ACTIONS(4073), - [sym_identifier] = ACTIONS(4075), - [anon_sym_LF] = ACTIONS(4075), - [anon_sym_CR] = ACTIONS(4075), - [anon_sym_CR_LF] = ACTIONS(4075), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_LBRACE] = ACTIONS(4075), - [anon_sym_const] = ACTIONS(4075), - [anon_sym_LPAREN] = ACTIONS(4075), - [anon_sym___global] = ACTIONS(4075), - [anon_sym_type] = ACTIONS(4075), - [anon_sym_fn] = ACTIONS(4075), - [anon_sym_PLUS] = ACTIONS(4075), - [anon_sym_DASH] = ACTIONS(4075), - [anon_sym_STAR] = ACTIONS(4075), - [anon_sym_struct] = ACTIONS(4075), - [anon_sym_union] = ACTIONS(4075), - [anon_sym_pub] = ACTIONS(4075), - [anon_sym_mut] = ACTIONS(4075), - [anon_sym_enum] = ACTIONS(4075), - [anon_sym_interface] = ACTIONS(4075), - [anon_sym_QMARK] = ACTIONS(4075), - [anon_sym_BANG] = ACTIONS(4075), - [anon_sym_go] = ACTIONS(4075), - [anon_sym_spawn] = ACTIONS(4075), - [anon_sym_json_DOTdecode] = ACTIONS(4075), - [anon_sym_LBRACK2] = ACTIONS(4075), - [anon_sym_TILDE] = ACTIONS(4075), - [anon_sym_CARET] = ACTIONS(4075), - [anon_sym_AMP] = ACTIONS(4075), - [anon_sym_LT_DASH] = ACTIONS(4075), - [sym_none] = ACTIONS(4075), - [sym_true] = ACTIONS(4075), - [sym_false] = ACTIONS(4075), - [sym_nil] = ACTIONS(4075), - [anon_sym_if] = ACTIONS(4075), - [anon_sym_DOLLARif] = ACTIONS(4075), - [anon_sym_match] = ACTIONS(4075), - [anon_sym_select] = ACTIONS(4075), - [anon_sym_lock] = ACTIONS(4075), - [anon_sym_rlock] = ACTIONS(4075), - [anon_sym_unsafe] = ACTIONS(4075), - [anon_sym_sql] = ACTIONS(4075), - [sym_int_literal] = ACTIONS(4075), - [sym_float_literal] = ACTIONS(4075), - [sym_rune_literal] = ACTIONS(4075), - [anon_sym_AT] = ACTIONS(4075), - [anon_sym_shared] = ACTIONS(4075), - [anon_sym_map_LBRACK] = ACTIONS(4075), - [anon_sym_chan] = ACTIONS(4075), - [anon_sym_thread] = ACTIONS(4075), - [anon_sym_atomic] = ACTIONS(4075), - [anon_sym_assert] = ACTIONS(4075), - [anon_sym_defer] = ACTIONS(4075), - [anon_sym_goto] = ACTIONS(4075), - [anon_sym_break] = ACTIONS(4075), - [anon_sym_continue] = ACTIONS(4075), - [anon_sym_return] = ACTIONS(4075), - [anon_sym_DOLLARfor] = ACTIONS(4075), - [anon_sym_for] = ACTIONS(4075), - [anon_sym_POUND] = ACTIONS(4075), - [anon_sym_asm] = ACTIONS(4075), - [anon_sym_AT_LBRACK] = ACTIONS(4075), - [sym___double_quote] = ACTIONS(4075), - [sym___single_quote] = ACTIONS(4075), - [sym___c_double_quote] = ACTIONS(4075), - [sym___c_single_quote] = ACTIONS(4075), - [sym___r_double_quote] = ACTIONS(4075), - [sym___r_single_quote] = ACTIONS(4075), + [ts_builtin_sym_end] = ACTIONS(4066), + [sym_identifier] = ACTIONS(4068), + [anon_sym_LF] = ACTIONS(4068), + [anon_sym_CR] = ACTIONS(4068), + [anon_sym_CR_LF] = ACTIONS(4068), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4068), + [anon_sym_LBRACE] = ACTIONS(4068), + [anon_sym_const] = ACTIONS(4068), + [anon_sym_LPAREN] = ACTIONS(4068), + [anon_sym___global] = ACTIONS(4068), + [anon_sym_type] = ACTIONS(4068), + [anon_sym_fn] = ACTIONS(4068), + [anon_sym_PLUS] = ACTIONS(4068), + [anon_sym_DASH] = ACTIONS(4068), + [anon_sym_STAR] = ACTIONS(4068), + [anon_sym_struct] = ACTIONS(4068), + [anon_sym_union] = ACTIONS(4068), + [anon_sym_pub] = ACTIONS(4068), + [anon_sym_mut] = ACTIONS(4068), + [anon_sym_enum] = ACTIONS(4068), + [anon_sym_interface] = ACTIONS(4068), + [anon_sym_QMARK] = ACTIONS(4068), + [anon_sym_BANG] = ACTIONS(4068), + [anon_sym_go] = ACTIONS(4068), + [anon_sym_spawn] = ACTIONS(4068), + [anon_sym_json_DOTdecode] = ACTIONS(4068), + [anon_sym_LBRACK2] = ACTIONS(4068), + [anon_sym_TILDE] = ACTIONS(4068), + [anon_sym_CARET] = ACTIONS(4068), + [anon_sym_AMP] = ACTIONS(4068), + [anon_sym_LT_DASH] = ACTIONS(4068), + [sym_none] = ACTIONS(4068), + [sym_true] = ACTIONS(4068), + [sym_false] = ACTIONS(4068), + [sym_nil] = ACTIONS(4068), + [anon_sym_if] = ACTIONS(4068), + [anon_sym_DOLLARif] = ACTIONS(4068), + [anon_sym_match] = ACTIONS(4068), + [anon_sym_select] = ACTIONS(4068), + [anon_sym_lock] = ACTIONS(4068), + [anon_sym_rlock] = ACTIONS(4068), + [anon_sym_unsafe] = ACTIONS(4068), + [anon_sym_sql] = ACTIONS(4068), + [sym_int_literal] = ACTIONS(4068), + [sym_float_literal] = ACTIONS(4068), + [sym_rune_literal] = ACTIONS(4068), + [anon_sym_AT] = ACTIONS(4068), + [anon_sym_shared] = ACTIONS(4068), + [anon_sym_map_LBRACK] = ACTIONS(4068), + [anon_sym_chan] = ACTIONS(4068), + [anon_sym_thread] = ACTIONS(4068), + [anon_sym_atomic] = ACTIONS(4068), + [anon_sym_assert] = ACTIONS(4068), + [anon_sym_defer] = ACTIONS(4068), + [anon_sym_goto] = ACTIONS(4068), + [anon_sym_break] = ACTIONS(4068), + [anon_sym_continue] = ACTIONS(4068), + [anon_sym_return] = ACTIONS(4068), + [anon_sym_DOLLARfor] = ACTIONS(4068), + [anon_sym_for] = ACTIONS(4068), + [anon_sym_POUND] = ACTIONS(4068), + [anon_sym_asm] = ACTIONS(4068), + [anon_sym_AT_LBRACK] = ACTIONS(4068), + [sym___double_quote] = ACTIONS(4068), + [sym___single_quote] = ACTIONS(4068), + [sym___c_double_quote] = ACTIONS(4068), + [sym___c_single_quote] = ACTIONS(4068), + [sym___r_double_quote] = ACTIONS(4068), + [sym___r_single_quote] = ACTIONS(4068), }, [1531] = { - [ts_builtin_sym_end] = ACTIONS(4077), - [sym_identifier] = ACTIONS(4079), - [anon_sym_LF] = ACTIONS(4079), - [anon_sym_CR] = ACTIONS(4079), - [anon_sym_CR_LF] = ACTIONS(4079), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4079), - [anon_sym_LBRACE] = ACTIONS(4079), - [anon_sym_const] = ACTIONS(4079), - [anon_sym_LPAREN] = ACTIONS(4079), - [anon_sym___global] = ACTIONS(4079), - [anon_sym_type] = ACTIONS(4079), - [anon_sym_fn] = ACTIONS(4079), - [anon_sym_PLUS] = ACTIONS(4079), - [anon_sym_DASH] = ACTIONS(4079), - [anon_sym_STAR] = ACTIONS(4079), - [anon_sym_struct] = ACTIONS(4079), - [anon_sym_union] = ACTIONS(4079), - [anon_sym_pub] = ACTIONS(4079), - [anon_sym_mut] = ACTIONS(4079), - [anon_sym_enum] = ACTIONS(4079), - [anon_sym_interface] = ACTIONS(4079), - [anon_sym_QMARK] = ACTIONS(4079), - [anon_sym_BANG] = ACTIONS(4079), - [anon_sym_go] = ACTIONS(4079), - [anon_sym_spawn] = ACTIONS(4079), - [anon_sym_json_DOTdecode] = ACTIONS(4079), - [anon_sym_LBRACK2] = ACTIONS(4079), - [anon_sym_TILDE] = ACTIONS(4079), - [anon_sym_CARET] = ACTIONS(4079), - [anon_sym_AMP] = ACTIONS(4079), - [anon_sym_LT_DASH] = ACTIONS(4079), - [sym_none] = ACTIONS(4079), - [sym_true] = ACTIONS(4079), - [sym_false] = ACTIONS(4079), - [sym_nil] = ACTIONS(4079), - [anon_sym_if] = ACTIONS(4079), - [anon_sym_DOLLARif] = ACTIONS(4079), - [anon_sym_match] = ACTIONS(4079), - [anon_sym_select] = ACTIONS(4079), - [anon_sym_lock] = ACTIONS(4079), - [anon_sym_rlock] = ACTIONS(4079), - [anon_sym_unsafe] = ACTIONS(4079), - [anon_sym_sql] = ACTIONS(4079), - [sym_int_literal] = ACTIONS(4079), - [sym_float_literal] = ACTIONS(4079), - [sym_rune_literal] = ACTIONS(4079), - [anon_sym_AT] = ACTIONS(4079), - [anon_sym_shared] = ACTIONS(4079), - [anon_sym_map_LBRACK] = ACTIONS(4079), - [anon_sym_chan] = ACTIONS(4079), - [anon_sym_thread] = ACTIONS(4079), - [anon_sym_atomic] = ACTIONS(4079), - [anon_sym_assert] = ACTIONS(4079), - [anon_sym_defer] = ACTIONS(4079), - [anon_sym_goto] = ACTIONS(4079), - [anon_sym_break] = ACTIONS(4079), - [anon_sym_continue] = ACTIONS(4079), - [anon_sym_return] = ACTIONS(4079), - [anon_sym_DOLLARfor] = ACTIONS(4079), - [anon_sym_for] = ACTIONS(4079), - [anon_sym_POUND] = ACTIONS(4079), - [anon_sym_asm] = ACTIONS(4079), - [anon_sym_AT_LBRACK] = ACTIONS(4079), - [sym___double_quote] = ACTIONS(4079), - [sym___single_quote] = ACTIONS(4079), - [sym___c_double_quote] = ACTIONS(4079), - [sym___c_single_quote] = ACTIONS(4079), - [sym___r_double_quote] = ACTIONS(4079), - [sym___r_single_quote] = ACTIONS(4079), + [ts_builtin_sym_end] = ACTIONS(4070), + [sym_identifier] = ACTIONS(4072), + [anon_sym_LF] = ACTIONS(4072), + [anon_sym_CR] = ACTIONS(4072), + [anon_sym_CR_LF] = ACTIONS(4072), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4072), + [anon_sym_LBRACE] = ACTIONS(4072), + [anon_sym_const] = ACTIONS(4072), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym___global] = ACTIONS(4072), + [anon_sym_type] = ACTIONS(4072), + [anon_sym_fn] = ACTIONS(4072), + [anon_sym_PLUS] = ACTIONS(4072), + [anon_sym_DASH] = ACTIONS(4072), + [anon_sym_STAR] = ACTIONS(4072), + [anon_sym_struct] = ACTIONS(4072), + [anon_sym_union] = ACTIONS(4072), + [anon_sym_pub] = ACTIONS(4072), + [anon_sym_mut] = ACTIONS(4072), + [anon_sym_enum] = ACTIONS(4072), + [anon_sym_interface] = ACTIONS(4072), + [anon_sym_QMARK] = ACTIONS(4072), + [anon_sym_BANG] = ACTIONS(4072), + [anon_sym_go] = ACTIONS(4072), + [anon_sym_spawn] = ACTIONS(4072), + [anon_sym_json_DOTdecode] = ACTIONS(4072), + [anon_sym_LBRACK2] = ACTIONS(4072), + [anon_sym_TILDE] = ACTIONS(4072), + [anon_sym_CARET] = ACTIONS(4072), + [anon_sym_AMP] = ACTIONS(4072), + [anon_sym_LT_DASH] = ACTIONS(4072), + [sym_none] = ACTIONS(4072), + [sym_true] = ACTIONS(4072), + [sym_false] = ACTIONS(4072), + [sym_nil] = ACTIONS(4072), + [anon_sym_if] = ACTIONS(4072), + [anon_sym_DOLLARif] = ACTIONS(4072), + [anon_sym_match] = ACTIONS(4072), + [anon_sym_select] = ACTIONS(4072), + [anon_sym_lock] = ACTIONS(4072), + [anon_sym_rlock] = ACTIONS(4072), + [anon_sym_unsafe] = ACTIONS(4072), + [anon_sym_sql] = ACTIONS(4072), + [sym_int_literal] = ACTIONS(4072), + [sym_float_literal] = ACTIONS(4072), + [sym_rune_literal] = ACTIONS(4072), + [anon_sym_AT] = ACTIONS(4072), + [anon_sym_shared] = ACTIONS(4072), + [anon_sym_map_LBRACK] = ACTIONS(4072), + [anon_sym_chan] = ACTIONS(4072), + [anon_sym_thread] = ACTIONS(4072), + [anon_sym_atomic] = ACTIONS(4072), + [anon_sym_assert] = ACTIONS(4072), + [anon_sym_defer] = ACTIONS(4072), + [anon_sym_goto] = ACTIONS(4072), + [anon_sym_break] = ACTIONS(4072), + [anon_sym_continue] = ACTIONS(4072), + [anon_sym_return] = ACTIONS(4072), + [anon_sym_DOLLARfor] = ACTIONS(4072), + [anon_sym_for] = ACTIONS(4072), + [anon_sym_POUND] = ACTIONS(4072), + [anon_sym_asm] = ACTIONS(4072), + [anon_sym_AT_LBRACK] = ACTIONS(4072), + [sym___double_quote] = ACTIONS(4072), + [sym___single_quote] = ACTIONS(4072), + [sym___c_double_quote] = ACTIONS(4072), + [sym___c_single_quote] = ACTIONS(4072), + [sym___r_double_quote] = ACTIONS(4072), + [sym___r_single_quote] = ACTIONS(4072), }, [1532] = { - [ts_builtin_sym_end] = ACTIONS(4081), - [sym_identifier] = ACTIONS(4083), - [anon_sym_LF] = ACTIONS(4083), - [anon_sym_CR] = ACTIONS(4083), - [anon_sym_CR_LF] = ACTIONS(4083), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4083), - [anon_sym_LBRACE] = ACTIONS(4083), - [anon_sym_const] = ACTIONS(4083), - [anon_sym_LPAREN] = ACTIONS(4083), - [anon_sym___global] = ACTIONS(4083), - [anon_sym_type] = ACTIONS(4083), - [anon_sym_fn] = ACTIONS(4083), - [anon_sym_PLUS] = ACTIONS(4083), - [anon_sym_DASH] = ACTIONS(4083), - [anon_sym_STAR] = ACTIONS(4083), - [anon_sym_struct] = ACTIONS(4083), - [anon_sym_union] = ACTIONS(4083), - [anon_sym_pub] = ACTIONS(4083), - [anon_sym_mut] = ACTIONS(4083), - [anon_sym_enum] = ACTIONS(4083), - [anon_sym_interface] = ACTIONS(4083), - [anon_sym_QMARK] = ACTIONS(4083), - [anon_sym_BANG] = ACTIONS(4083), - [anon_sym_go] = ACTIONS(4083), - [anon_sym_spawn] = ACTIONS(4083), - [anon_sym_json_DOTdecode] = ACTIONS(4083), - [anon_sym_LBRACK2] = ACTIONS(4083), - [anon_sym_TILDE] = ACTIONS(4083), - [anon_sym_CARET] = ACTIONS(4083), - [anon_sym_AMP] = ACTIONS(4083), - [anon_sym_LT_DASH] = ACTIONS(4083), - [sym_none] = ACTIONS(4083), - [sym_true] = ACTIONS(4083), - [sym_false] = ACTIONS(4083), - [sym_nil] = ACTIONS(4083), - [anon_sym_if] = ACTIONS(4083), - [anon_sym_DOLLARif] = ACTIONS(4083), - [anon_sym_match] = ACTIONS(4083), - [anon_sym_select] = ACTIONS(4083), - [anon_sym_lock] = ACTIONS(4083), - [anon_sym_rlock] = ACTIONS(4083), - [anon_sym_unsafe] = ACTIONS(4083), - [anon_sym_sql] = ACTIONS(4083), - [sym_int_literal] = ACTIONS(4083), - [sym_float_literal] = ACTIONS(4083), - [sym_rune_literal] = ACTIONS(4083), - [anon_sym_AT] = ACTIONS(4083), - [anon_sym_shared] = ACTIONS(4083), - [anon_sym_map_LBRACK] = ACTIONS(4083), - [anon_sym_chan] = ACTIONS(4083), - [anon_sym_thread] = ACTIONS(4083), - [anon_sym_atomic] = ACTIONS(4083), - [anon_sym_assert] = ACTIONS(4083), - [anon_sym_defer] = ACTIONS(4083), - [anon_sym_goto] = ACTIONS(4083), - [anon_sym_break] = ACTIONS(4083), - [anon_sym_continue] = ACTIONS(4083), - [anon_sym_return] = ACTIONS(4083), - [anon_sym_DOLLARfor] = ACTIONS(4083), - [anon_sym_for] = ACTIONS(4083), - [anon_sym_POUND] = ACTIONS(4083), - [anon_sym_asm] = ACTIONS(4083), - [anon_sym_AT_LBRACK] = ACTIONS(4083), - [sym___double_quote] = ACTIONS(4083), - [sym___single_quote] = ACTIONS(4083), - [sym___c_double_quote] = ACTIONS(4083), - [sym___c_single_quote] = ACTIONS(4083), - [sym___r_double_quote] = ACTIONS(4083), - [sym___r_single_quote] = ACTIONS(4083), + [ts_builtin_sym_end] = ACTIONS(4074), + [sym_identifier] = ACTIONS(4076), + [anon_sym_LF] = ACTIONS(4076), + [anon_sym_CR] = ACTIONS(4076), + [anon_sym_CR_LF] = ACTIONS(4076), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4076), + [anon_sym_LBRACE] = ACTIONS(4076), + [anon_sym_const] = ACTIONS(4076), + [anon_sym_LPAREN] = ACTIONS(4076), + [anon_sym___global] = ACTIONS(4076), + [anon_sym_type] = ACTIONS(4076), + [anon_sym_fn] = ACTIONS(4076), + [anon_sym_PLUS] = ACTIONS(4076), + [anon_sym_DASH] = ACTIONS(4076), + [anon_sym_STAR] = ACTIONS(4076), + [anon_sym_struct] = ACTIONS(4076), + [anon_sym_union] = ACTIONS(4076), + [anon_sym_pub] = ACTIONS(4076), + [anon_sym_mut] = ACTIONS(4076), + [anon_sym_enum] = ACTIONS(4076), + [anon_sym_interface] = ACTIONS(4076), + [anon_sym_QMARK] = ACTIONS(4076), + [anon_sym_BANG] = ACTIONS(4076), + [anon_sym_go] = ACTIONS(4076), + [anon_sym_spawn] = ACTIONS(4076), + [anon_sym_json_DOTdecode] = ACTIONS(4076), + [anon_sym_LBRACK2] = ACTIONS(4076), + [anon_sym_TILDE] = ACTIONS(4076), + [anon_sym_CARET] = ACTIONS(4076), + [anon_sym_AMP] = ACTIONS(4076), + [anon_sym_LT_DASH] = ACTIONS(4076), + [sym_none] = ACTIONS(4076), + [sym_true] = ACTIONS(4076), + [sym_false] = ACTIONS(4076), + [sym_nil] = ACTIONS(4076), + [anon_sym_if] = ACTIONS(4076), + [anon_sym_DOLLARif] = ACTIONS(4076), + [anon_sym_match] = ACTIONS(4076), + [anon_sym_select] = ACTIONS(4076), + [anon_sym_lock] = ACTIONS(4076), + [anon_sym_rlock] = ACTIONS(4076), + [anon_sym_unsafe] = ACTIONS(4076), + [anon_sym_sql] = ACTIONS(4076), + [sym_int_literal] = ACTIONS(4076), + [sym_float_literal] = ACTIONS(4076), + [sym_rune_literal] = ACTIONS(4076), + [anon_sym_AT] = ACTIONS(4076), + [anon_sym_shared] = ACTIONS(4076), + [anon_sym_map_LBRACK] = ACTIONS(4076), + [anon_sym_chan] = ACTIONS(4076), + [anon_sym_thread] = ACTIONS(4076), + [anon_sym_atomic] = ACTIONS(4076), + [anon_sym_assert] = ACTIONS(4076), + [anon_sym_defer] = ACTIONS(4076), + [anon_sym_goto] = ACTIONS(4076), + [anon_sym_break] = ACTIONS(4076), + [anon_sym_continue] = ACTIONS(4076), + [anon_sym_return] = ACTIONS(4076), + [anon_sym_DOLLARfor] = ACTIONS(4076), + [anon_sym_for] = ACTIONS(4076), + [anon_sym_POUND] = ACTIONS(4076), + [anon_sym_asm] = ACTIONS(4076), + [anon_sym_AT_LBRACK] = ACTIONS(4076), + [sym___double_quote] = ACTIONS(4076), + [sym___single_quote] = ACTIONS(4076), + [sym___c_double_quote] = ACTIONS(4076), + [sym___c_single_quote] = ACTIONS(4076), + [sym___r_double_quote] = ACTIONS(4076), + [sym___r_single_quote] = ACTIONS(4076), }, [1533] = { - [ts_builtin_sym_end] = ACTIONS(4085), - [sym_identifier] = ACTIONS(4087), - [anon_sym_LF] = ACTIONS(4087), - [anon_sym_CR] = ACTIONS(4087), - [anon_sym_CR_LF] = ACTIONS(4087), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4087), - [anon_sym_LBRACE] = ACTIONS(4087), - [anon_sym_const] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym___global] = ACTIONS(4087), - [anon_sym_type] = ACTIONS(4087), - [anon_sym_fn] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4087), - [anon_sym_DASH] = ACTIONS(4087), - [anon_sym_STAR] = ACTIONS(4087), - [anon_sym_struct] = ACTIONS(4087), - [anon_sym_union] = ACTIONS(4087), - [anon_sym_pub] = ACTIONS(4087), - [anon_sym_mut] = ACTIONS(4087), - [anon_sym_enum] = ACTIONS(4087), - [anon_sym_interface] = ACTIONS(4087), - [anon_sym_QMARK] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4087), - [anon_sym_go] = ACTIONS(4087), - [anon_sym_spawn] = ACTIONS(4087), - [anon_sym_json_DOTdecode] = ACTIONS(4087), - [anon_sym_LBRACK2] = ACTIONS(4087), - [anon_sym_TILDE] = ACTIONS(4087), - [anon_sym_CARET] = ACTIONS(4087), - [anon_sym_AMP] = ACTIONS(4087), - [anon_sym_LT_DASH] = ACTIONS(4087), - [sym_none] = ACTIONS(4087), - [sym_true] = ACTIONS(4087), - [sym_false] = ACTIONS(4087), - [sym_nil] = ACTIONS(4087), - [anon_sym_if] = ACTIONS(4087), - [anon_sym_DOLLARif] = ACTIONS(4087), - [anon_sym_match] = ACTIONS(4087), - [anon_sym_select] = ACTIONS(4087), - [anon_sym_lock] = ACTIONS(4087), - [anon_sym_rlock] = ACTIONS(4087), - [anon_sym_unsafe] = ACTIONS(4087), - [anon_sym_sql] = ACTIONS(4087), - [sym_int_literal] = ACTIONS(4087), - [sym_float_literal] = ACTIONS(4087), - [sym_rune_literal] = ACTIONS(4087), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_shared] = ACTIONS(4087), - [anon_sym_map_LBRACK] = ACTIONS(4087), - [anon_sym_chan] = ACTIONS(4087), - [anon_sym_thread] = ACTIONS(4087), - [anon_sym_atomic] = ACTIONS(4087), - [anon_sym_assert] = ACTIONS(4087), - [anon_sym_defer] = ACTIONS(4087), - [anon_sym_goto] = ACTIONS(4087), - [anon_sym_break] = ACTIONS(4087), - [anon_sym_continue] = ACTIONS(4087), - [anon_sym_return] = ACTIONS(4087), - [anon_sym_DOLLARfor] = ACTIONS(4087), - [anon_sym_for] = ACTIONS(4087), - [anon_sym_POUND] = ACTIONS(4087), - [anon_sym_asm] = ACTIONS(4087), - [anon_sym_AT_LBRACK] = ACTIONS(4087), - [sym___double_quote] = ACTIONS(4087), - [sym___single_quote] = ACTIONS(4087), - [sym___c_double_quote] = ACTIONS(4087), - [sym___c_single_quote] = ACTIONS(4087), - [sym___r_double_quote] = ACTIONS(4087), - [sym___r_single_quote] = ACTIONS(4087), + [ts_builtin_sym_end] = ACTIONS(4078), + [sym_identifier] = ACTIONS(4080), + [anon_sym_LF] = ACTIONS(4080), + [anon_sym_CR] = ACTIONS(4080), + [anon_sym_CR_LF] = ACTIONS(4080), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4080), + [anon_sym_LBRACE] = ACTIONS(4080), + [anon_sym_const] = ACTIONS(4080), + [anon_sym_LPAREN] = ACTIONS(4080), + [anon_sym___global] = ACTIONS(4080), + [anon_sym_type] = ACTIONS(4080), + [anon_sym_fn] = ACTIONS(4080), + [anon_sym_PLUS] = ACTIONS(4080), + [anon_sym_DASH] = ACTIONS(4080), + [anon_sym_STAR] = ACTIONS(4080), + [anon_sym_struct] = ACTIONS(4080), + [anon_sym_union] = ACTIONS(4080), + [anon_sym_pub] = ACTIONS(4080), + [anon_sym_mut] = ACTIONS(4080), + [anon_sym_enum] = ACTIONS(4080), + [anon_sym_interface] = ACTIONS(4080), + [anon_sym_QMARK] = ACTIONS(4080), + [anon_sym_BANG] = ACTIONS(4080), + [anon_sym_go] = ACTIONS(4080), + [anon_sym_spawn] = ACTIONS(4080), + [anon_sym_json_DOTdecode] = ACTIONS(4080), + [anon_sym_LBRACK2] = ACTIONS(4080), + [anon_sym_TILDE] = ACTIONS(4080), + [anon_sym_CARET] = ACTIONS(4080), + [anon_sym_AMP] = ACTIONS(4080), + [anon_sym_LT_DASH] = ACTIONS(4080), + [sym_none] = ACTIONS(4080), + [sym_true] = ACTIONS(4080), + [sym_false] = ACTIONS(4080), + [sym_nil] = ACTIONS(4080), + [anon_sym_if] = ACTIONS(4080), + [anon_sym_DOLLARif] = ACTIONS(4080), + [anon_sym_match] = ACTIONS(4080), + [anon_sym_select] = ACTIONS(4080), + [anon_sym_lock] = ACTIONS(4080), + [anon_sym_rlock] = ACTIONS(4080), + [anon_sym_unsafe] = ACTIONS(4080), + [anon_sym_sql] = ACTIONS(4080), + [sym_int_literal] = ACTIONS(4080), + [sym_float_literal] = ACTIONS(4080), + [sym_rune_literal] = ACTIONS(4080), + [anon_sym_AT] = ACTIONS(4080), + [anon_sym_shared] = ACTIONS(4080), + [anon_sym_map_LBRACK] = ACTIONS(4080), + [anon_sym_chan] = ACTIONS(4080), + [anon_sym_thread] = ACTIONS(4080), + [anon_sym_atomic] = ACTIONS(4080), + [anon_sym_assert] = ACTIONS(4080), + [anon_sym_defer] = ACTIONS(4080), + [anon_sym_goto] = ACTIONS(4080), + [anon_sym_break] = ACTIONS(4080), + [anon_sym_continue] = ACTIONS(4080), + [anon_sym_return] = ACTIONS(4080), + [anon_sym_DOLLARfor] = ACTIONS(4080), + [anon_sym_for] = ACTIONS(4080), + [anon_sym_POUND] = ACTIONS(4080), + [anon_sym_asm] = ACTIONS(4080), + [anon_sym_AT_LBRACK] = ACTIONS(4080), + [sym___double_quote] = ACTIONS(4080), + [sym___single_quote] = ACTIONS(4080), + [sym___c_double_quote] = ACTIONS(4080), + [sym___c_single_quote] = ACTIONS(4080), + [sym___r_double_quote] = ACTIONS(4080), + [sym___r_single_quote] = ACTIONS(4080), }, [1534] = { - [ts_builtin_sym_end] = ACTIONS(4089), - [sym_identifier] = ACTIONS(4091), - [anon_sym_LF] = ACTIONS(4091), - [anon_sym_CR] = ACTIONS(4091), - [anon_sym_CR_LF] = ACTIONS(4091), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4091), - [anon_sym_LBRACE] = ACTIONS(4091), - [anon_sym_const] = ACTIONS(4091), - [anon_sym_LPAREN] = ACTIONS(4091), - [anon_sym___global] = ACTIONS(4091), - [anon_sym_type] = ACTIONS(4091), - [anon_sym_fn] = ACTIONS(4091), - [anon_sym_PLUS] = ACTIONS(4091), - [anon_sym_DASH] = ACTIONS(4091), - [anon_sym_STAR] = ACTIONS(4091), - [anon_sym_struct] = ACTIONS(4091), - [anon_sym_union] = ACTIONS(4091), - [anon_sym_pub] = ACTIONS(4091), - [anon_sym_mut] = ACTIONS(4091), - [anon_sym_enum] = ACTIONS(4091), - [anon_sym_interface] = ACTIONS(4091), - [anon_sym_QMARK] = ACTIONS(4091), - [anon_sym_BANG] = ACTIONS(4091), - [anon_sym_go] = ACTIONS(4091), - [anon_sym_spawn] = ACTIONS(4091), - [anon_sym_json_DOTdecode] = ACTIONS(4091), - [anon_sym_LBRACK2] = ACTIONS(4091), - [anon_sym_TILDE] = ACTIONS(4091), - [anon_sym_CARET] = ACTIONS(4091), - [anon_sym_AMP] = ACTIONS(4091), - [anon_sym_LT_DASH] = ACTIONS(4091), - [sym_none] = ACTIONS(4091), - [sym_true] = ACTIONS(4091), - [sym_false] = ACTIONS(4091), - [sym_nil] = ACTIONS(4091), - [anon_sym_if] = ACTIONS(4091), - [anon_sym_DOLLARif] = ACTIONS(4091), - [anon_sym_match] = ACTIONS(4091), - [anon_sym_select] = ACTIONS(4091), - [anon_sym_lock] = ACTIONS(4091), - [anon_sym_rlock] = ACTIONS(4091), - [anon_sym_unsafe] = ACTIONS(4091), - [anon_sym_sql] = ACTIONS(4091), - [sym_int_literal] = ACTIONS(4091), - [sym_float_literal] = ACTIONS(4091), - [sym_rune_literal] = ACTIONS(4091), - [anon_sym_AT] = ACTIONS(4091), - [anon_sym_shared] = ACTIONS(4091), - [anon_sym_map_LBRACK] = ACTIONS(4091), - [anon_sym_chan] = ACTIONS(4091), - [anon_sym_thread] = ACTIONS(4091), - [anon_sym_atomic] = ACTIONS(4091), - [anon_sym_assert] = ACTIONS(4091), - [anon_sym_defer] = ACTIONS(4091), - [anon_sym_goto] = ACTIONS(4091), - [anon_sym_break] = ACTIONS(4091), - [anon_sym_continue] = ACTIONS(4091), - [anon_sym_return] = ACTIONS(4091), - [anon_sym_DOLLARfor] = ACTIONS(4091), - [anon_sym_for] = ACTIONS(4091), - [anon_sym_POUND] = ACTIONS(4091), - [anon_sym_asm] = ACTIONS(4091), - [anon_sym_AT_LBRACK] = ACTIONS(4091), - [sym___double_quote] = ACTIONS(4091), - [sym___single_quote] = ACTIONS(4091), - [sym___c_double_quote] = ACTIONS(4091), - [sym___c_single_quote] = ACTIONS(4091), - [sym___r_double_quote] = ACTIONS(4091), - [sym___r_single_quote] = ACTIONS(4091), + [ts_builtin_sym_end] = ACTIONS(4082), + [sym_identifier] = ACTIONS(4084), + [anon_sym_LF] = ACTIONS(4084), + [anon_sym_CR] = ACTIONS(4084), + [anon_sym_CR_LF] = ACTIONS(4084), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4084), + [anon_sym_LBRACE] = ACTIONS(4084), + [anon_sym_const] = ACTIONS(4084), + [anon_sym_LPAREN] = ACTIONS(4084), + [anon_sym___global] = ACTIONS(4084), + [anon_sym_type] = ACTIONS(4084), + [anon_sym_fn] = ACTIONS(4084), + [anon_sym_PLUS] = ACTIONS(4084), + [anon_sym_DASH] = ACTIONS(4084), + [anon_sym_STAR] = ACTIONS(4084), + [anon_sym_struct] = ACTIONS(4084), + [anon_sym_union] = ACTIONS(4084), + [anon_sym_pub] = ACTIONS(4084), + [anon_sym_mut] = ACTIONS(4084), + [anon_sym_enum] = ACTIONS(4084), + [anon_sym_interface] = ACTIONS(4084), + [anon_sym_QMARK] = ACTIONS(4084), + [anon_sym_BANG] = ACTIONS(4084), + [anon_sym_go] = ACTIONS(4084), + [anon_sym_spawn] = ACTIONS(4084), + [anon_sym_json_DOTdecode] = ACTIONS(4084), + [anon_sym_LBRACK2] = ACTIONS(4084), + [anon_sym_TILDE] = ACTIONS(4084), + [anon_sym_CARET] = ACTIONS(4084), + [anon_sym_AMP] = ACTIONS(4084), + [anon_sym_LT_DASH] = ACTIONS(4084), + [sym_none] = ACTIONS(4084), + [sym_true] = ACTIONS(4084), + [sym_false] = ACTIONS(4084), + [sym_nil] = ACTIONS(4084), + [anon_sym_if] = ACTIONS(4084), + [anon_sym_DOLLARif] = ACTIONS(4084), + [anon_sym_match] = ACTIONS(4084), + [anon_sym_select] = ACTIONS(4084), + [anon_sym_lock] = ACTIONS(4084), + [anon_sym_rlock] = ACTIONS(4084), + [anon_sym_unsafe] = ACTIONS(4084), + [anon_sym_sql] = ACTIONS(4084), + [sym_int_literal] = ACTIONS(4084), + [sym_float_literal] = ACTIONS(4084), + [sym_rune_literal] = ACTIONS(4084), + [anon_sym_AT] = ACTIONS(4084), + [anon_sym_shared] = ACTIONS(4084), + [anon_sym_map_LBRACK] = ACTIONS(4084), + [anon_sym_chan] = ACTIONS(4084), + [anon_sym_thread] = ACTIONS(4084), + [anon_sym_atomic] = ACTIONS(4084), + [anon_sym_assert] = ACTIONS(4084), + [anon_sym_defer] = ACTIONS(4084), + [anon_sym_goto] = ACTIONS(4084), + [anon_sym_break] = ACTIONS(4084), + [anon_sym_continue] = ACTIONS(4084), + [anon_sym_return] = ACTIONS(4084), + [anon_sym_DOLLARfor] = ACTIONS(4084), + [anon_sym_for] = ACTIONS(4084), + [anon_sym_POUND] = ACTIONS(4084), + [anon_sym_asm] = ACTIONS(4084), + [anon_sym_AT_LBRACK] = ACTIONS(4084), + [sym___double_quote] = ACTIONS(4084), + [sym___single_quote] = ACTIONS(4084), + [sym___c_double_quote] = ACTIONS(4084), + [sym___c_single_quote] = ACTIONS(4084), + [sym___r_double_quote] = ACTIONS(4084), + [sym___r_single_quote] = ACTIONS(4084), }, [1535] = { - [ts_builtin_sym_end] = ACTIONS(4093), - [sym_identifier] = ACTIONS(4095), - [anon_sym_LF] = ACTIONS(4095), - [anon_sym_CR] = ACTIONS(4095), - [anon_sym_CR_LF] = ACTIONS(4095), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4095), - [anon_sym_LBRACE] = ACTIONS(4095), - [anon_sym_const] = ACTIONS(4095), - [anon_sym_LPAREN] = ACTIONS(4095), - [anon_sym___global] = ACTIONS(4095), - [anon_sym_type] = ACTIONS(4095), - [anon_sym_fn] = ACTIONS(4095), - [anon_sym_PLUS] = ACTIONS(4095), - [anon_sym_DASH] = ACTIONS(4095), - [anon_sym_STAR] = ACTIONS(4095), - [anon_sym_struct] = ACTIONS(4095), - [anon_sym_union] = ACTIONS(4095), - [anon_sym_pub] = ACTIONS(4095), - [anon_sym_mut] = ACTIONS(4095), - [anon_sym_enum] = ACTIONS(4095), - [anon_sym_interface] = ACTIONS(4095), - [anon_sym_QMARK] = ACTIONS(4095), - [anon_sym_BANG] = ACTIONS(4095), - [anon_sym_go] = ACTIONS(4095), - [anon_sym_spawn] = ACTIONS(4095), - [anon_sym_json_DOTdecode] = ACTIONS(4095), - [anon_sym_LBRACK2] = ACTIONS(4095), - [anon_sym_TILDE] = ACTIONS(4095), - [anon_sym_CARET] = ACTIONS(4095), - [anon_sym_AMP] = ACTIONS(4095), - [anon_sym_LT_DASH] = ACTIONS(4095), - [sym_none] = ACTIONS(4095), - [sym_true] = ACTIONS(4095), - [sym_false] = ACTIONS(4095), - [sym_nil] = ACTIONS(4095), - [anon_sym_if] = ACTIONS(4095), - [anon_sym_DOLLARif] = ACTIONS(4095), - [anon_sym_match] = ACTIONS(4095), - [anon_sym_select] = ACTIONS(4095), - [anon_sym_lock] = ACTIONS(4095), - [anon_sym_rlock] = ACTIONS(4095), - [anon_sym_unsafe] = ACTIONS(4095), - [anon_sym_sql] = ACTIONS(4095), - [sym_int_literal] = ACTIONS(4095), - [sym_float_literal] = ACTIONS(4095), - [sym_rune_literal] = ACTIONS(4095), - [anon_sym_AT] = ACTIONS(4095), - [anon_sym_shared] = ACTIONS(4095), - [anon_sym_map_LBRACK] = ACTIONS(4095), - [anon_sym_chan] = ACTIONS(4095), - [anon_sym_thread] = ACTIONS(4095), - [anon_sym_atomic] = ACTIONS(4095), - [anon_sym_assert] = ACTIONS(4095), - [anon_sym_defer] = ACTIONS(4095), - [anon_sym_goto] = ACTIONS(4095), - [anon_sym_break] = ACTIONS(4095), - [anon_sym_continue] = ACTIONS(4095), - [anon_sym_return] = ACTIONS(4095), - [anon_sym_DOLLARfor] = ACTIONS(4095), - [anon_sym_for] = ACTIONS(4095), - [anon_sym_POUND] = ACTIONS(4095), - [anon_sym_asm] = ACTIONS(4095), - [anon_sym_AT_LBRACK] = ACTIONS(4095), - [sym___double_quote] = ACTIONS(4095), - [sym___single_quote] = ACTIONS(4095), - [sym___c_double_quote] = ACTIONS(4095), - [sym___c_single_quote] = ACTIONS(4095), - [sym___r_double_quote] = ACTIONS(4095), - [sym___r_single_quote] = ACTIONS(4095), + [ts_builtin_sym_end] = ACTIONS(4086), + [sym_identifier] = ACTIONS(4088), + [anon_sym_LF] = ACTIONS(4088), + [anon_sym_CR] = ACTIONS(4088), + [anon_sym_CR_LF] = ACTIONS(4088), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4088), + [anon_sym_const] = ACTIONS(4088), + [anon_sym_LPAREN] = ACTIONS(4088), + [anon_sym___global] = ACTIONS(4088), + [anon_sym_type] = ACTIONS(4088), + [anon_sym_fn] = ACTIONS(4088), + [anon_sym_PLUS] = ACTIONS(4088), + [anon_sym_DASH] = ACTIONS(4088), + [anon_sym_STAR] = ACTIONS(4088), + [anon_sym_struct] = ACTIONS(4088), + [anon_sym_union] = ACTIONS(4088), + [anon_sym_pub] = ACTIONS(4088), + [anon_sym_mut] = ACTIONS(4088), + [anon_sym_enum] = ACTIONS(4088), + [anon_sym_interface] = ACTIONS(4088), + [anon_sym_QMARK] = ACTIONS(4088), + [anon_sym_BANG] = ACTIONS(4088), + [anon_sym_go] = ACTIONS(4088), + [anon_sym_spawn] = ACTIONS(4088), + [anon_sym_json_DOTdecode] = ACTIONS(4088), + [anon_sym_LBRACK2] = ACTIONS(4088), + [anon_sym_TILDE] = ACTIONS(4088), + [anon_sym_CARET] = ACTIONS(4088), + [anon_sym_AMP] = ACTIONS(4088), + [anon_sym_LT_DASH] = ACTIONS(4088), + [sym_none] = ACTIONS(4088), + [sym_true] = ACTIONS(4088), + [sym_false] = ACTIONS(4088), + [sym_nil] = ACTIONS(4088), + [anon_sym_if] = ACTIONS(4088), + [anon_sym_DOLLARif] = ACTIONS(4088), + [anon_sym_match] = ACTIONS(4088), + [anon_sym_select] = ACTIONS(4088), + [anon_sym_lock] = ACTIONS(4088), + [anon_sym_rlock] = ACTIONS(4088), + [anon_sym_unsafe] = ACTIONS(4088), + [anon_sym_sql] = ACTIONS(4088), + [sym_int_literal] = ACTIONS(4088), + [sym_float_literal] = ACTIONS(4088), + [sym_rune_literal] = ACTIONS(4088), + [anon_sym_AT] = ACTIONS(4088), + [anon_sym_shared] = ACTIONS(4088), + [anon_sym_map_LBRACK] = ACTIONS(4088), + [anon_sym_chan] = ACTIONS(4088), + [anon_sym_thread] = ACTIONS(4088), + [anon_sym_atomic] = ACTIONS(4088), + [anon_sym_assert] = ACTIONS(4088), + [anon_sym_defer] = ACTIONS(4088), + [anon_sym_goto] = ACTIONS(4088), + [anon_sym_break] = ACTIONS(4088), + [anon_sym_continue] = ACTIONS(4088), + [anon_sym_return] = ACTIONS(4088), + [anon_sym_DOLLARfor] = ACTIONS(4088), + [anon_sym_for] = ACTIONS(4088), + [anon_sym_POUND] = ACTIONS(4088), + [anon_sym_asm] = ACTIONS(4088), + [anon_sym_AT_LBRACK] = ACTIONS(4088), + [sym___double_quote] = ACTIONS(4088), + [sym___single_quote] = ACTIONS(4088), + [sym___c_double_quote] = ACTIONS(4088), + [sym___c_single_quote] = ACTIONS(4088), + [sym___r_double_quote] = ACTIONS(4088), + [sym___r_single_quote] = ACTIONS(4088), }, [1536] = { - [ts_builtin_sym_end] = ACTIONS(4097), - [sym_identifier] = ACTIONS(4099), - [anon_sym_LF] = ACTIONS(4099), - [anon_sym_CR] = ACTIONS(4099), - [anon_sym_CR_LF] = ACTIONS(4099), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_const] = ACTIONS(4099), - [anon_sym_LPAREN] = ACTIONS(4099), - [anon_sym___global] = ACTIONS(4099), - [anon_sym_type] = ACTIONS(4099), - [anon_sym_fn] = ACTIONS(4099), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [anon_sym_struct] = ACTIONS(4099), - [anon_sym_union] = ACTIONS(4099), - [anon_sym_pub] = ACTIONS(4099), - [anon_sym_mut] = ACTIONS(4099), - [anon_sym_enum] = ACTIONS(4099), - [anon_sym_interface] = ACTIONS(4099), - [anon_sym_QMARK] = ACTIONS(4099), - [anon_sym_BANG] = ACTIONS(4099), - [anon_sym_go] = ACTIONS(4099), - [anon_sym_spawn] = ACTIONS(4099), - [anon_sym_json_DOTdecode] = ACTIONS(4099), - [anon_sym_LBRACK2] = ACTIONS(4099), - [anon_sym_TILDE] = ACTIONS(4099), - [anon_sym_CARET] = ACTIONS(4099), - [anon_sym_AMP] = ACTIONS(4099), - [anon_sym_LT_DASH] = ACTIONS(4099), - [sym_none] = ACTIONS(4099), - [sym_true] = ACTIONS(4099), - [sym_false] = ACTIONS(4099), - [sym_nil] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_DOLLARif] = ACTIONS(4099), - [anon_sym_match] = ACTIONS(4099), - [anon_sym_select] = ACTIONS(4099), - [anon_sym_lock] = ACTIONS(4099), - [anon_sym_rlock] = ACTIONS(4099), - [anon_sym_unsafe] = ACTIONS(4099), - [anon_sym_sql] = ACTIONS(4099), - [sym_int_literal] = ACTIONS(4099), - [sym_float_literal] = ACTIONS(4099), - [sym_rune_literal] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4099), - [anon_sym_shared] = ACTIONS(4099), - [anon_sym_map_LBRACK] = ACTIONS(4099), - [anon_sym_chan] = ACTIONS(4099), - [anon_sym_thread] = ACTIONS(4099), - [anon_sym_atomic] = ACTIONS(4099), - [anon_sym_assert] = ACTIONS(4099), - [anon_sym_defer] = ACTIONS(4099), - [anon_sym_goto] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_DOLLARfor] = ACTIONS(4099), - [anon_sym_for] = ACTIONS(4099), - [anon_sym_POUND] = ACTIONS(4099), - [anon_sym_asm] = ACTIONS(4099), - [anon_sym_AT_LBRACK] = ACTIONS(4099), - [sym___double_quote] = ACTIONS(4099), - [sym___single_quote] = ACTIONS(4099), - [sym___c_double_quote] = ACTIONS(4099), - [sym___c_single_quote] = ACTIONS(4099), - [sym___r_double_quote] = ACTIONS(4099), - [sym___r_single_quote] = ACTIONS(4099), + [ts_builtin_sym_end] = ACTIONS(4090), + [sym_identifier] = ACTIONS(4092), + [anon_sym_LF] = ACTIONS(4092), + [anon_sym_CR] = ACTIONS(4092), + [anon_sym_CR_LF] = ACTIONS(4092), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4092), + [anon_sym_LBRACE] = ACTIONS(4092), + [anon_sym_const] = ACTIONS(4092), + [anon_sym_LPAREN] = ACTIONS(4092), + [anon_sym___global] = ACTIONS(4092), + [anon_sym_type] = ACTIONS(4092), + [anon_sym_fn] = ACTIONS(4092), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4092), + [anon_sym_struct] = ACTIONS(4092), + [anon_sym_union] = ACTIONS(4092), + [anon_sym_pub] = ACTIONS(4092), + [anon_sym_mut] = ACTIONS(4092), + [anon_sym_enum] = ACTIONS(4092), + [anon_sym_interface] = ACTIONS(4092), + [anon_sym_QMARK] = ACTIONS(4092), + [anon_sym_BANG] = ACTIONS(4092), + [anon_sym_go] = ACTIONS(4092), + [anon_sym_spawn] = ACTIONS(4092), + [anon_sym_json_DOTdecode] = ACTIONS(4092), + [anon_sym_LBRACK2] = ACTIONS(4092), + [anon_sym_TILDE] = ACTIONS(4092), + [anon_sym_CARET] = ACTIONS(4092), + [anon_sym_AMP] = ACTIONS(4092), + [anon_sym_LT_DASH] = ACTIONS(4092), + [sym_none] = ACTIONS(4092), + [sym_true] = ACTIONS(4092), + [sym_false] = ACTIONS(4092), + [sym_nil] = ACTIONS(4092), + [anon_sym_if] = ACTIONS(4092), + [anon_sym_DOLLARif] = ACTIONS(4092), + [anon_sym_match] = ACTIONS(4092), + [anon_sym_select] = ACTIONS(4092), + [anon_sym_lock] = ACTIONS(4092), + [anon_sym_rlock] = ACTIONS(4092), + [anon_sym_unsafe] = ACTIONS(4092), + [anon_sym_sql] = ACTIONS(4092), + [sym_int_literal] = ACTIONS(4092), + [sym_float_literal] = ACTIONS(4092), + [sym_rune_literal] = ACTIONS(4092), + [anon_sym_AT] = ACTIONS(4092), + [anon_sym_shared] = ACTIONS(4092), + [anon_sym_map_LBRACK] = ACTIONS(4092), + [anon_sym_chan] = ACTIONS(4092), + [anon_sym_thread] = ACTIONS(4092), + [anon_sym_atomic] = ACTIONS(4092), + [anon_sym_assert] = ACTIONS(4092), + [anon_sym_defer] = ACTIONS(4092), + [anon_sym_goto] = ACTIONS(4092), + [anon_sym_break] = ACTIONS(4092), + [anon_sym_continue] = ACTIONS(4092), + [anon_sym_return] = ACTIONS(4092), + [anon_sym_DOLLARfor] = ACTIONS(4092), + [anon_sym_for] = ACTIONS(4092), + [anon_sym_POUND] = ACTIONS(4092), + [anon_sym_asm] = ACTIONS(4092), + [anon_sym_AT_LBRACK] = ACTIONS(4092), + [sym___double_quote] = ACTIONS(4092), + [sym___single_quote] = ACTIONS(4092), + [sym___c_double_quote] = ACTIONS(4092), + [sym___c_single_quote] = ACTIONS(4092), + [sym___r_double_quote] = ACTIONS(4092), + [sym___r_single_quote] = ACTIONS(4092), }, [1537] = { - [ts_builtin_sym_end] = ACTIONS(4101), - [sym_identifier] = ACTIONS(4103), - [anon_sym_LF] = ACTIONS(4103), - [anon_sym_CR] = ACTIONS(4103), - [anon_sym_CR_LF] = ACTIONS(4103), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4103), - [anon_sym_LBRACE] = ACTIONS(4103), - [anon_sym_const] = ACTIONS(4103), - [anon_sym_LPAREN] = ACTIONS(4103), - [anon_sym___global] = ACTIONS(4103), - [anon_sym_type] = ACTIONS(4103), - [anon_sym_fn] = ACTIONS(4103), - [anon_sym_PLUS] = ACTIONS(4103), - [anon_sym_DASH] = ACTIONS(4103), - [anon_sym_STAR] = ACTIONS(4103), - [anon_sym_struct] = ACTIONS(4103), - [anon_sym_union] = ACTIONS(4103), - [anon_sym_pub] = ACTIONS(4103), - [anon_sym_mut] = ACTIONS(4103), - [anon_sym_enum] = ACTIONS(4103), - [anon_sym_interface] = ACTIONS(4103), - [anon_sym_QMARK] = ACTIONS(4103), - [anon_sym_BANG] = ACTIONS(4103), - [anon_sym_go] = ACTIONS(4103), - [anon_sym_spawn] = ACTIONS(4103), - [anon_sym_json_DOTdecode] = ACTIONS(4103), - [anon_sym_LBRACK2] = ACTIONS(4103), - [anon_sym_TILDE] = ACTIONS(4103), - [anon_sym_CARET] = ACTIONS(4103), - [anon_sym_AMP] = ACTIONS(4103), - [anon_sym_LT_DASH] = ACTIONS(4103), - [sym_none] = ACTIONS(4103), - [sym_true] = ACTIONS(4103), - [sym_false] = ACTIONS(4103), - [sym_nil] = ACTIONS(4103), - [anon_sym_if] = ACTIONS(4103), - [anon_sym_DOLLARif] = ACTIONS(4103), - [anon_sym_match] = ACTIONS(4103), - [anon_sym_select] = ACTIONS(4103), - [anon_sym_lock] = ACTIONS(4103), - [anon_sym_rlock] = ACTIONS(4103), - [anon_sym_unsafe] = ACTIONS(4103), - [anon_sym_sql] = ACTIONS(4103), - [sym_int_literal] = ACTIONS(4103), - [sym_float_literal] = ACTIONS(4103), - [sym_rune_literal] = ACTIONS(4103), - [anon_sym_AT] = ACTIONS(4103), - [anon_sym_shared] = ACTIONS(4103), - [anon_sym_map_LBRACK] = ACTIONS(4103), - [anon_sym_chan] = ACTIONS(4103), - [anon_sym_thread] = ACTIONS(4103), - [anon_sym_atomic] = ACTIONS(4103), - [anon_sym_assert] = ACTIONS(4103), - [anon_sym_defer] = ACTIONS(4103), - [anon_sym_goto] = ACTIONS(4103), - [anon_sym_break] = ACTIONS(4103), - [anon_sym_continue] = ACTIONS(4103), - [anon_sym_return] = ACTIONS(4103), - [anon_sym_DOLLARfor] = ACTIONS(4103), - [anon_sym_for] = ACTIONS(4103), - [anon_sym_POUND] = ACTIONS(4103), - [anon_sym_asm] = ACTIONS(4103), - [anon_sym_AT_LBRACK] = ACTIONS(4103), - [sym___double_quote] = ACTIONS(4103), - [sym___single_quote] = ACTIONS(4103), - [sym___c_double_quote] = ACTIONS(4103), - [sym___c_single_quote] = ACTIONS(4103), - [sym___r_double_quote] = ACTIONS(4103), - [sym___r_single_quote] = ACTIONS(4103), + [ts_builtin_sym_end] = ACTIONS(4094), + [sym_identifier] = ACTIONS(4096), + [anon_sym_LF] = ACTIONS(4096), + [anon_sym_CR] = ACTIONS(4096), + [anon_sym_CR_LF] = ACTIONS(4096), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4096), + [anon_sym_LBRACE] = ACTIONS(4096), + [anon_sym_const] = ACTIONS(4096), + [anon_sym_LPAREN] = ACTIONS(4096), + [anon_sym___global] = ACTIONS(4096), + [anon_sym_type] = ACTIONS(4096), + [anon_sym_fn] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4096), + [anon_sym_DASH] = ACTIONS(4096), + [anon_sym_STAR] = ACTIONS(4096), + [anon_sym_struct] = ACTIONS(4096), + [anon_sym_union] = ACTIONS(4096), + [anon_sym_pub] = ACTIONS(4096), + [anon_sym_mut] = ACTIONS(4096), + [anon_sym_enum] = ACTIONS(4096), + [anon_sym_interface] = ACTIONS(4096), + [anon_sym_QMARK] = ACTIONS(4096), + [anon_sym_BANG] = ACTIONS(4096), + [anon_sym_go] = ACTIONS(4096), + [anon_sym_spawn] = ACTIONS(4096), + [anon_sym_json_DOTdecode] = ACTIONS(4096), + [anon_sym_LBRACK2] = ACTIONS(4096), + [anon_sym_TILDE] = ACTIONS(4096), + [anon_sym_CARET] = ACTIONS(4096), + [anon_sym_AMP] = ACTIONS(4096), + [anon_sym_LT_DASH] = ACTIONS(4096), + [sym_none] = ACTIONS(4096), + [sym_true] = ACTIONS(4096), + [sym_false] = ACTIONS(4096), + [sym_nil] = ACTIONS(4096), + [anon_sym_if] = ACTIONS(4096), + [anon_sym_DOLLARif] = ACTIONS(4096), + [anon_sym_match] = ACTIONS(4096), + [anon_sym_select] = ACTIONS(4096), + [anon_sym_lock] = ACTIONS(4096), + [anon_sym_rlock] = ACTIONS(4096), + [anon_sym_unsafe] = ACTIONS(4096), + [anon_sym_sql] = ACTIONS(4096), + [sym_int_literal] = ACTIONS(4096), + [sym_float_literal] = ACTIONS(4096), + [sym_rune_literal] = ACTIONS(4096), + [anon_sym_AT] = ACTIONS(4096), + [anon_sym_shared] = ACTIONS(4096), + [anon_sym_map_LBRACK] = ACTIONS(4096), + [anon_sym_chan] = ACTIONS(4096), + [anon_sym_thread] = ACTIONS(4096), + [anon_sym_atomic] = ACTIONS(4096), + [anon_sym_assert] = ACTIONS(4096), + [anon_sym_defer] = ACTIONS(4096), + [anon_sym_goto] = ACTIONS(4096), + [anon_sym_break] = ACTIONS(4096), + [anon_sym_continue] = ACTIONS(4096), + [anon_sym_return] = ACTIONS(4096), + [anon_sym_DOLLARfor] = ACTIONS(4096), + [anon_sym_for] = ACTIONS(4096), + [anon_sym_POUND] = ACTIONS(4096), + [anon_sym_asm] = ACTIONS(4096), + [anon_sym_AT_LBRACK] = ACTIONS(4096), + [sym___double_quote] = ACTIONS(4096), + [sym___single_quote] = ACTIONS(4096), + [sym___c_double_quote] = ACTIONS(4096), + [sym___c_single_quote] = ACTIONS(4096), + [sym___r_double_quote] = ACTIONS(4096), + [sym___r_single_quote] = ACTIONS(4096), }, [1538] = { - [ts_builtin_sym_end] = ACTIONS(4105), - [sym_identifier] = ACTIONS(4107), - [anon_sym_LF] = ACTIONS(4107), - [anon_sym_CR] = ACTIONS(4107), - [anon_sym_CR_LF] = ACTIONS(4107), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4107), - [anon_sym_LBRACE] = ACTIONS(4107), - [anon_sym_const] = ACTIONS(4107), - [anon_sym_LPAREN] = ACTIONS(4107), - [anon_sym___global] = ACTIONS(4107), - [anon_sym_type] = ACTIONS(4107), - [anon_sym_fn] = ACTIONS(4107), - [anon_sym_PLUS] = ACTIONS(4107), - [anon_sym_DASH] = ACTIONS(4107), - [anon_sym_STAR] = ACTIONS(4107), - [anon_sym_struct] = ACTIONS(4107), - [anon_sym_union] = ACTIONS(4107), - [anon_sym_pub] = ACTIONS(4107), - [anon_sym_mut] = ACTIONS(4107), - [anon_sym_enum] = ACTIONS(4107), - [anon_sym_interface] = ACTIONS(4107), - [anon_sym_QMARK] = ACTIONS(4107), - [anon_sym_BANG] = ACTIONS(4107), - [anon_sym_go] = ACTIONS(4107), - [anon_sym_spawn] = ACTIONS(4107), - [anon_sym_json_DOTdecode] = ACTIONS(4107), - [anon_sym_LBRACK2] = ACTIONS(4107), - [anon_sym_TILDE] = ACTIONS(4107), - [anon_sym_CARET] = ACTIONS(4107), - [anon_sym_AMP] = ACTIONS(4107), - [anon_sym_LT_DASH] = ACTIONS(4107), - [sym_none] = ACTIONS(4107), - [sym_true] = ACTIONS(4107), - [sym_false] = ACTIONS(4107), - [sym_nil] = ACTIONS(4107), - [anon_sym_if] = ACTIONS(4107), - [anon_sym_DOLLARif] = ACTIONS(4107), - [anon_sym_match] = ACTIONS(4107), - [anon_sym_select] = ACTIONS(4107), - [anon_sym_lock] = ACTIONS(4107), - [anon_sym_rlock] = ACTIONS(4107), - [anon_sym_unsafe] = ACTIONS(4107), - [anon_sym_sql] = ACTIONS(4107), - [sym_int_literal] = ACTIONS(4107), - [sym_float_literal] = ACTIONS(4107), - [sym_rune_literal] = ACTIONS(4107), - [anon_sym_AT] = ACTIONS(4107), - [anon_sym_shared] = ACTIONS(4107), - [anon_sym_map_LBRACK] = ACTIONS(4107), - [anon_sym_chan] = ACTIONS(4107), - [anon_sym_thread] = ACTIONS(4107), - [anon_sym_atomic] = ACTIONS(4107), - [anon_sym_assert] = ACTIONS(4107), - [anon_sym_defer] = ACTIONS(4107), - [anon_sym_goto] = ACTIONS(4107), - [anon_sym_break] = ACTIONS(4107), - [anon_sym_continue] = ACTIONS(4107), - [anon_sym_return] = ACTIONS(4107), - [anon_sym_DOLLARfor] = ACTIONS(4107), - [anon_sym_for] = ACTIONS(4107), - [anon_sym_POUND] = ACTIONS(4107), - [anon_sym_asm] = ACTIONS(4107), - [anon_sym_AT_LBRACK] = ACTIONS(4107), - [sym___double_quote] = ACTIONS(4107), - [sym___single_quote] = ACTIONS(4107), - [sym___c_double_quote] = ACTIONS(4107), - [sym___c_single_quote] = ACTIONS(4107), - [sym___r_double_quote] = ACTIONS(4107), - [sym___r_single_quote] = ACTIONS(4107), + [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), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4100), + [anon_sym_LBRACE] = ACTIONS(4100), + [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_AT] = 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), + [sym___double_quote] = ACTIONS(4100), + [sym___single_quote] = ACTIONS(4100), + [sym___c_double_quote] = ACTIONS(4100), + [sym___c_single_quote] = ACTIONS(4100), + [sym___r_double_quote] = ACTIONS(4100), + [sym___r_single_quote] = ACTIONS(4100), }, [1539] = { - [ts_builtin_sym_end] = ACTIONS(4109), - [sym_identifier] = ACTIONS(4111), - [anon_sym_LF] = ACTIONS(4111), - [anon_sym_CR] = ACTIONS(4111), - [anon_sym_CR_LF] = ACTIONS(4111), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4111), - [anon_sym_LBRACE] = ACTIONS(4111), - [anon_sym_const] = ACTIONS(4111), - [anon_sym_LPAREN] = ACTIONS(4111), - [anon_sym___global] = ACTIONS(4111), - [anon_sym_type] = ACTIONS(4111), - [anon_sym_fn] = ACTIONS(4111), - [anon_sym_PLUS] = ACTIONS(4111), - [anon_sym_DASH] = ACTIONS(4111), - [anon_sym_STAR] = ACTIONS(4111), - [anon_sym_struct] = ACTIONS(4111), - [anon_sym_union] = ACTIONS(4111), - [anon_sym_pub] = ACTIONS(4111), - [anon_sym_mut] = ACTIONS(4111), - [anon_sym_enum] = ACTIONS(4111), - [anon_sym_interface] = ACTIONS(4111), - [anon_sym_QMARK] = ACTIONS(4111), - [anon_sym_BANG] = ACTIONS(4111), - [anon_sym_go] = ACTIONS(4111), - [anon_sym_spawn] = ACTIONS(4111), - [anon_sym_json_DOTdecode] = ACTIONS(4111), - [anon_sym_LBRACK2] = ACTIONS(4111), - [anon_sym_TILDE] = ACTIONS(4111), - [anon_sym_CARET] = ACTIONS(4111), - [anon_sym_AMP] = ACTIONS(4111), - [anon_sym_LT_DASH] = ACTIONS(4111), - [sym_none] = ACTIONS(4111), - [sym_true] = ACTIONS(4111), - [sym_false] = ACTIONS(4111), - [sym_nil] = ACTIONS(4111), - [anon_sym_if] = ACTIONS(4111), - [anon_sym_DOLLARif] = ACTIONS(4111), - [anon_sym_match] = ACTIONS(4111), - [anon_sym_select] = ACTIONS(4111), - [anon_sym_lock] = ACTIONS(4111), - [anon_sym_rlock] = ACTIONS(4111), - [anon_sym_unsafe] = ACTIONS(4111), - [anon_sym_sql] = ACTIONS(4111), - [sym_int_literal] = ACTIONS(4111), - [sym_float_literal] = ACTIONS(4111), - [sym_rune_literal] = ACTIONS(4111), - [anon_sym_AT] = ACTIONS(4111), - [anon_sym_shared] = ACTIONS(4111), - [anon_sym_map_LBRACK] = ACTIONS(4111), - [anon_sym_chan] = ACTIONS(4111), - [anon_sym_thread] = ACTIONS(4111), - [anon_sym_atomic] = ACTIONS(4111), - [anon_sym_assert] = ACTIONS(4111), - [anon_sym_defer] = ACTIONS(4111), - [anon_sym_goto] = ACTIONS(4111), - [anon_sym_break] = ACTIONS(4111), - [anon_sym_continue] = ACTIONS(4111), - [anon_sym_return] = ACTIONS(4111), - [anon_sym_DOLLARfor] = ACTIONS(4111), - [anon_sym_for] = ACTIONS(4111), - [anon_sym_POUND] = ACTIONS(4111), - [anon_sym_asm] = ACTIONS(4111), - [anon_sym_AT_LBRACK] = ACTIONS(4111), - [sym___double_quote] = ACTIONS(4111), - [sym___single_quote] = ACTIONS(4111), - [sym___c_double_quote] = ACTIONS(4111), - [sym___c_single_quote] = ACTIONS(4111), - [sym___r_double_quote] = ACTIONS(4111), - [sym___r_single_quote] = ACTIONS(4111), + [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), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4104), + [anon_sym_LBRACE] = ACTIONS(4104), + [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_AT] = 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), + [sym___double_quote] = ACTIONS(4104), + [sym___single_quote] = ACTIONS(4104), + [sym___c_double_quote] = ACTIONS(4104), + [sym___c_single_quote] = ACTIONS(4104), + [sym___r_double_quote] = ACTIONS(4104), + [sym___r_single_quote] = ACTIONS(4104), }, [1540] = { - [ts_builtin_sym_end] = ACTIONS(4113), - [sym_identifier] = ACTIONS(4115), - [anon_sym_LF] = ACTIONS(4115), - [anon_sym_CR] = ACTIONS(4115), - [anon_sym_CR_LF] = ACTIONS(4115), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4115), - [anon_sym_LBRACE] = ACTIONS(4115), - [anon_sym_const] = ACTIONS(4115), - [anon_sym_LPAREN] = ACTIONS(4115), - [anon_sym___global] = ACTIONS(4115), - [anon_sym_type] = ACTIONS(4115), - [anon_sym_fn] = ACTIONS(4115), - [anon_sym_PLUS] = ACTIONS(4115), - [anon_sym_DASH] = ACTIONS(4115), - [anon_sym_STAR] = ACTIONS(4115), - [anon_sym_struct] = ACTIONS(4115), - [anon_sym_union] = ACTIONS(4115), - [anon_sym_pub] = ACTIONS(4115), - [anon_sym_mut] = ACTIONS(4115), - [anon_sym_enum] = ACTIONS(4115), - [anon_sym_interface] = ACTIONS(4115), - [anon_sym_QMARK] = ACTIONS(4115), - [anon_sym_BANG] = ACTIONS(4115), - [anon_sym_go] = ACTIONS(4115), - [anon_sym_spawn] = ACTIONS(4115), - [anon_sym_json_DOTdecode] = ACTIONS(4115), - [anon_sym_LBRACK2] = ACTIONS(4115), - [anon_sym_TILDE] = ACTIONS(4115), - [anon_sym_CARET] = ACTIONS(4115), - [anon_sym_AMP] = ACTIONS(4115), - [anon_sym_LT_DASH] = ACTIONS(4115), - [sym_none] = ACTIONS(4115), - [sym_true] = ACTIONS(4115), - [sym_false] = ACTIONS(4115), - [sym_nil] = ACTIONS(4115), - [anon_sym_if] = ACTIONS(4115), - [anon_sym_DOLLARif] = ACTIONS(4115), - [anon_sym_match] = ACTIONS(4115), - [anon_sym_select] = ACTIONS(4115), - [anon_sym_lock] = ACTIONS(4115), - [anon_sym_rlock] = ACTIONS(4115), - [anon_sym_unsafe] = ACTIONS(4115), - [anon_sym_sql] = ACTIONS(4115), - [sym_int_literal] = ACTIONS(4115), - [sym_float_literal] = ACTIONS(4115), - [sym_rune_literal] = ACTIONS(4115), - [anon_sym_AT] = ACTIONS(4115), - [anon_sym_shared] = ACTIONS(4115), - [anon_sym_map_LBRACK] = ACTIONS(4115), - [anon_sym_chan] = ACTIONS(4115), - [anon_sym_thread] = ACTIONS(4115), - [anon_sym_atomic] = ACTIONS(4115), - [anon_sym_assert] = ACTIONS(4115), - [anon_sym_defer] = ACTIONS(4115), - [anon_sym_goto] = ACTIONS(4115), - [anon_sym_break] = ACTIONS(4115), - [anon_sym_continue] = ACTIONS(4115), - [anon_sym_return] = ACTIONS(4115), - [anon_sym_DOLLARfor] = ACTIONS(4115), - [anon_sym_for] = ACTIONS(4115), - [anon_sym_POUND] = ACTIONS(4115), - [anon_sym_asm] = ACTIONS(4115), - [anon_sym_AT_LBRACK] = ACTIONS(4115), - [sym___double_quote] = ACTIONS(4115), - [sym___single_quote] = ACTIONS(4115), - [sym___c_double_quote] = ACTIONS(4115), - [sym___c_single_quote] = ACTIONS(4115), - [sym___r_double_quote] = ACTIONS(4115), - [sym___r_single_quote] = ACTIONS(4115), + [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), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4108), + [anon_sym_LBRACE] = ACTIONS(4108), + [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_AT] = 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), + [sym___double_quote] = ACTIONS(4108), + [sym___single_quote] = ACTIONS(4108), + [sym___c_double_quote] = ACTIONS(4108), + [sym___c_single_quote] = ACTIONS(4108), + [sym___r_double_quote] = ACTIONS(4108), + [sym___r_single_quote] = ACTIONS(4108), }, [1541] = { - [ts_builtin_sym_end] = ACTIONS(4117), - [sym_identifier] = ACTIONS(4119), - [anon_sym_LF] = ACTIONS(4119), - [anon_sym_CR] = ACTIONS(4119), - [anon_sym_CR_LF] = ACTIONS(4119), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4119), - [anon_sym_LBRACE] = ACTIONS(4119), - [anon_sym_const] = ACTIONS(4119), - [anon_sym_LPAREN] = ACTIONS(4119), - [anon_sym___global] = ACTIONS(4119), - [anon_sym_type] = ACTIONS(4119), - [anon_sym_fn] = ACTIONS(4119), - [anon_sym_PLUS] = ACTIONS(4119), - [anon_sym_DASH] = ACTIONS(4119), - [anon_sym_STAR] = ACTIONS(4119), - [anon_sym_struct] = ACTIONS(4119), - [anon_sym_union] = ACTIONS(4119), - [anon_sym_pub] = ACTIONS(4119), - [anon_sym_mut] = ACTIONS(4119), - [anon_sym_enum] = ACTIONS(4119), - [anon_sym_interface] = ACTIONS(4119), - [anon_sym_QMARK] = ACTIONS(4119), - [anon_sym_BANG] = ACTIONS(4119), - [anon_sym_go] = ACTIONS(4119), - [anon_sym_spawn] = ACTIONS(4119), - [anon_sym_json_DOTdecode] = ACTIONS(4119), - [anon_sym_LBRACK2] = ACTIONS(4119), - [anon_sym_TILDE] = ACTIONS(4119), - [anon_sym_CARET] = ACTIONS(4119), - [anon_sym_AMP] = ACTIONS(4119), - [anon_sym_LT_DASH] = ACTIONS(4119), - [sym_none] = ACTIONS(4119), - [sym_true] = ACTIONS(4119), - [sym_false] = ACTIONS(4119), - [sym_nil] = ACTIONS(4119), - [anon_sym_if] = ACTIONS(4119), - [anon_sym_DOLLARif] = ACTIONS(4119), - [anon_sym_match] = ACTIONS(4119), - [anon_sym_select] = ACTIONS(4119), - [anon_sym_lock] = ACTIONS(4119), - [anon_sym_rlock] = ACTIONS(4119), - [anon_sym_unsafe] = ACTIONS(4119), - [anon_sym_sql] = ACTIONS(4119), - [sym_int_literal] = ACTIONS(4119), - [sym_float_literal] = ACTIONS(4119), - [sym_rune_literal] = ACTIONS(4119), - [anon_sym_AT] = ACTIONS(4119), - [anon_sym_shared] = ACTIONS(4119), - [anon_sym_map_LBRACK] = ACTIONS(4119), - [anon_sym_chan] = ACTIONS(4119), - [anon_sym_thread] = ACTIONS(4119), - [anon_sym_atomic] = ACTIONS(4119), - [anon_sym_assert] = ACTIONS(4119), - [anon_sym_defer] = ACTIONS(4119), - [anon_sym_goto] = ACTIONS(4119), - [anon_sym_break] = ACTIONS(4119), - [anon_sym_continue] = ACTIONS(4119), - [anon_sym_return] = ACTIONS(4119), - [anon_sym_DOLLARfor] = ACTIONS(4119), - [anon_sym_for] = ACTIONS(4119), - [anon_sym_POUND] = ACTIONS(4119), - [anon_sym_asm] = ACTIONS(4119), - [anon_sym_AT_LBRACK] = ACTIONS(4119), - [sym___double_quote] = ACTIONS(4119), - [sym___single_quote] = ACTIONS(4119), - [sym___c_double_quote] = ACTIONS(4119), - [sym___c_single_quote] = ACTIONS(4119), - [sym___r_double_quote] = ACTIONS(4119), - [sym___r_single_quote] = ACTIONS(4119), + [ts_builtin_sym_end] = ACTIONS(4110), + [sym_identifier] = ACTIONS(4112), + [anon_sym_LF] = ACTIONS(4112), + [anon_sym_CR] = ACTIONS(4112), + [anon_sym_CR_LF] = ACTIONS(4112), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4112), + [anon_sym_LBRACE] = ACTIONS(4112), + [anon_sym_const] = ACTIONS(4112), + [anon_sym_LPAREN] = ACTIONS(4112), + [anon_sym___global] = ACTIONS(4112), + [anon_sym_type] = ACTIONS(4112), + [anon_sym_fn] = ACTIONS(4112), + [anon_sym_PLUS] = ACTIONS(4112), + [anon_sym_DASH] = ACTIONS(4112), + [anon_sym_STAR] = ACTIONS(4112), + [anon_sym_struct] = ACTIONS(4112), + [anon_sym_union] = ACTIONS(4112), + [anon_sym_pub] = ACTIONS(4112), + [anon_sym_mut] = ACTIONS(4112), + [anon_sym_enum] = ACTIONS(4112), + [anon_sym_interface] = ACTIONS(4112), + [anon_sym_QMARK] = ACTIONS(4112), + [anon_sym_BANG] = ACTIONS(4112), + [anon_sym_go] = ACTIONS(4112), + [anon_sym_spawn] = ACTIONS(4112), + [anon_sym_json_DOTdecode] = ACTIONS(4112), + [anon_sym_LBRACK2] = ACTIONS(4112), + [anon_sym_TILDE] = ACTIONS(4112), + [anon_sym_CARET] = ACTIONS(4112), + [anon_sym_AMP] = ACTIONS(4112), + [anon_sym_LT_DASH] = ACTIONS(4112), + [sym_none] = ACTIONS(4112), + [sym_true] = ACTIONS(4112), + [sym_false] = ACTIONS(4112), + [sym_nil] = ACTIONS(4112), + [anon_sym_if] = ACTIONS(4112), + [anon_sym_DOLLARif] = ACTIONS(4112), + [anon_sym_match] = ACTIONS(4112), + [anon_sym_select] = ACTIONS(4112), + [anon_sym_lock] = ACTIONS(4112), + [anon_sym_rlock] = ACTIONS(4112), + [anon_sym_unsafe] = ACTIONS(4112), + [anon_sym_sql] = ACTIONS(4112), + [sym_int_literal] = ACTIONS(4112), + [sym_float_literal] = ACTIONS(4112), + [sym_rune_literal] = ACTIONS(4112), + [anon_sym_AT] = ACTIONS(4112), + [anon_sym_shared] = ACTIONS(4112), + [anon_sym_map_LBRACK] = ACTIONS(4112), + [anon_sym_chan] = ACTIONS(4112), + [anon_sym_thread] = ACTIONS(4112), + [anon_sym_atomic] = ACTIONS(4112), + [anon_sym_assert] = ACTIONS(4112), + [anon_sym_defer] = ACTIONS(4112), + [anon_sym_goto] = ACTIONS(4112), + [anon_sym_break] = ACTIONS(4112), + [anon_sym_continue] = ACTIONS(4112), + [anon_sym_return] = ACTIONS(4112), + [anon_sym_DOLLARfor] = ACTIONS(4112), + [anon_sym_for] = ACTIONS(4112), + [anon_sym_POUND] = ACTIONS(4112), + [anon_sym_asm] = ACTIONS(4112), + [anon_sym_AT_LBRACK] = ACTIONS(4112), + [sym___double_quote] = ACTIONS(4112), + [sym___single_quote] = ACTIONS(4112), + [sym___c_double_quote] = ACTIONS(4112), + [sym___c_single_quote] = ACTIONS(4112), + [sym___r_double_quote] = ACTIONS(4112), + [sym___r_single_quote] = ACTIONS(4112), }, [1542] = { - [ts_builtin_sym_end] = ACTIONS(4121), - [sym_identifier] = ACTIONS(4123), - [anon_sym_LF] = ACTIONS(4123), - [anon_sym_CR] = ACTIONS(4123), - [anon_sym_CR_LF] = ACTIONS(4123), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4123), - [anon_sym_LBRACE] = ACTIONS(4123), - [anon_sym_const] = ACTIONS(4123), - [anon_sym_LPAREN] = ACTIONS(4123), - [anon_sym___global] = ACTIONS(4123), - [anon_sym_type] = ACTIONS(4123), - [anon_sym_fn] = ACTIONS(4123), - [anon_sym_PLUS] = ACTIONS(4123), - [anon_sym_DASH] = ACTIONS(4123), - [anon_sym_STAR] = ACTIONS(4123), - [anon_sym_struct] = ACTIONS(4123), - [anon_sym_union] = ACTIONS(4123), - [anon_sym_pub] = ACTIONS(4123), - [anon_sym_mut] = ACTIONS(4123), - [anon_sym_enum] = ACTIONS(4123), - [anon_sym_interface] = ACTIONS(4123), - [anon_sym_QMARK] = ACTIONS(4123), - [anon_sym_BANG] = ACTIONS(4123), - [anon_sym_go] = ACTIONS(4123), - [anon_sym_spawn] = ACTIONS(4123), - [anon_sym_json_DOTdecode] = ACTIONS(4123), - [anon_sym_LBRACK2] = ACTIONS(4123), - [anon_sym_TILDE] = ACTIONS(4123), - [anon_sym_CARET] = ACTIONS(4123), - [anon_sym_AMP] = ACTIONS(4123), - [anon_sym_LT_DASH] = ACTIONS(4123), - [sym_none] = ACTIONS(4123), - [sym_true] = ACTIONS(4123), - [sym_false] = ACTIONS(4123), - [sym_nil] = ACTIONS(4123), - [anon_sym_if] = ACTIONS(4123), - [anon_sym_DOLLARif] = ACTIONS(4123), - [anon_sym_match] = ACTIONS(4123), - [anon_sym_select] = ACTIONS(4123), - [anon_sym_lock] = ACTIONS(4123), - [anon_sym_rlock] = ACTIONS(4123), - [anon_sym_unsafe] = ACTIONS(4123), - [anon_sym_sql] = ACTIONS(4123), - [sym_int_literal] = ACTIONS(4123), - [sym_float_literal] = ACTIONS(4123), - [sym_rune_literal] = ACTIONS(4123), - [anon_sym_AT] = ACTIONS(4123), - [anon_sym_shared] = ACTIONS(4123), - [anon_sym_map_LBRACK] = ACTIONS(4123), - [anon_sym_chan] = ACTIONS(4123), - [anon_sym_thread] = ACTIONS(4123), - [anon_sym_atomic] = ACTIONS(4123), - [anon_sym_assert] = ACTIONS(4123), - [anon_sym_defer] = ACTIONS(4123), - [anon_sym_goto] = ACTIONS(4123), - [anon_sym_break] = ACTIONS(4123), - [anon_sym_continue] = ACTIONS(4123), - [anon_sym_return] = ACTIONS(4123), - [anon_sym_DOLLARfor] = ACTIONS(4123), - [anon_sym_for] = ACTIONS(4123), - [anon_sym_POUND] = ACTIONS(4123), - [anon_sym_asm] = ACTIONS(4123), - [anon_sym_AT_LBRACK] = ACTIONS(4123), - [sym___double_quote] = ACTIONS(4123), - [sym___single_quote] = ACTIONS(4123), - [sym___c_double_quote] = ACTIONS(4123), - [sym___c_single_quote] = ACTIONS(4123), - [sym___r_double_quote] = ACTIONS(4123), - [sym___r_single_quote] = ACTIONS(4123), + [ts_builtin_sym_end] = ACTIONS(4114), + [sym_identifier] = ACTIONS(4116), + [anon_sym_LF] = ACTIONS(4116), + [anon_sym_CR] = ACTIONS(4116), + [anon_sym_CR_LF] = ACTIONS(4116), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4116), + [anon_sym_LBRACE] = ACTIONS(4116), + [anon_sym_const] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym___global] = ACTIONS(4116), + [anon_sym_type] = ACTIONS(4116), + [anon_sym_fn] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4116), + [anon_sym_DASH] = ACTIONS(4116), + [anon_sym_STAR] = ACTIONS(4116), + [anon_sym_struct] = ACTIONS(4116), + [anon_sym_union] = ACTIONS(4116), + [anon_sym_pub] = ACTIONS(4116), + [anon_sym_mut] = ACTIONS(4116), + [anon_sym_enum] = ACTIONS(4116), + [anon_sym_interface] = ACTIONS(4116), + [anon_sym_QMARK] = ACTIONS(4116), + [anon_sym_BANG] = ACTIONS(4116), + [anon_sym_go] = ACTIONS(4116), + [anon_sym_spawn] = ACTIONS(4116), + [anon_sym_json_DOTdecode] = ACTIONS(4116), + [anon_sym_LBRACK2] = ACTIONS(4116), + [anon_sym_TILDE] = ACTIONS(4116), + [anon_sym_CARET] = ACTIONS(4116), + [anon_sym_AMP] = ACTIONS(4116), + [anon_sym_LT_DASH] = ACTIONS(4116), + [sym_none] = ACTIONS(4116), + [sym_true] = ACTIONS(4116), + [sym_false] = ACTIONS(4116), + [sym_nil] = ACTIONS(4116), + [anon_sym_if] = ACTIONS(4116), + [anon_sym_DOLLARif] = ACTIONS(4116), + [anon_sym_match] = ACTIONS(4116), + [anon_sym_select] = ACTIONS(4116), + [anon_sym_lock] = ACTIONS(4116), + [anon_sym_rlock] = ACTIONS(4116), + [anon_sym_unsafe] = ACTIONS(4116), + [anon_sym_sql] = ACTIONS(4116), + [sym_int_literal] = ACTIONS(4116), + [sym_float_literal] = ACTIONS(4116), + [sym_rune_literal] = ACTIONS(4116), + [anon_sym_AT] = ACTIONS(4116), + [anon_sym_shared] = ACTIONS(4116), + [anon_sym_map_LBRACK] = ACTIONS(4116), + [anon_sym_chan] = ACTIONS(4116), + [anon_sym_thread] = ACTIONS(4116), + [anon_sym_atomic] = ACTIONS(4116), + [anon_sym_assert] = ACTIONS(4116), + [anon_sym_defer] = ACTIONS(4116), + [anon_sym_goto] = ACTIONS(4116), + [anon_sym_break] = ACTIONS(4116), + [anon_sym_continue] = ACTIONS(4116), + [anon_sym_return] = ACTIONS(4116), + [anon_sym_DOLLARfor] = ACTIONS(4116), + [anon_sym_for] = ACTIONS(4116), + [anon_sym_POUND] = ACTIONS(4116), + [anon_sym_asm] = ACTIONS(4116), + [anon_sym_AT_LBRACK] = ACTIONS(4116), + [sym___double_quote] = ACTIONS(4116), + [sym___single_quote] = ACTIONS(4116), + [sym___c_double_quote] = ACTIONS(4116), + [sym___c_single_quote] = ACTIONS(4116), + [sym___r_double_quote] = ACTIONS(4116), + [sym___r_single_quote] = ACTIONS(4116), }, [1543] = { - [ts_builtin_sym_end] = ACTIONS(4125), - [sym_identifier] = ACTIONS(4127), - [anon_sym_LF] = ACTIONS(4127), - [anon_sym_CR] = ACTIONS(4127), - [anon_sym_CR_LF] = ACTIONS(4127), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4127), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_const] = ACTIONS(4127), - [anon_sym_LPAREN] = ACTIONS(4127), - [anon_sym___global] = ACTIONS(4127), - [anon_sym_type] = ACTIONS(4127), - [anon_sym_fn] = ACTIONS(4127), - [anon_sym_PLUS] = ACTIONS(4127), - [anon_sym_DASH] = ACTIONS(4127), - [anon_sym_STAR] = ACTIONS(4127), - [anon_sym_struct] = ACTIONS(4127), - [anon_sym_union] = ACTIONS(4127), - [anon_sym_pub] = ACTIONS(4127), - [anon_sym_mut] = ACTIONS(4127), - [anon_sym_enum] = ACTIONS(4127), - [anon_sym_interface] = ACTIONS(4127), - [anon_sym_QMARK] = ACTIONS(4127), - [anon_sym_BANG] = ACTIONS(4127), - [anon_sym_go] = ACTIONS(4127), - [anon_sym_spawn] = ACTIONS(4127), - [anon_sym_json_DOTdecode] = ACTIONS(4127), - [anon_sym_LBRACK2] = ACTIONS(4127), - [anon_sym_TILDE] = ACTIONS(4127), - [anon_sym_CARET] = ACTIONS(4127), - [anon_sym_AMP] = ACTIONS(4127), - [anon_sym_LT_DASH] = ACTIONS(4127), - [sym_none] = ACTIONS(4127), - [sym_true] = ACTIONS(4127), - [sym_false] = ACTIONS(4127), - [sym_nil] = ACTIONS(4127), - [anon_sym_if] = ACTIONS(4127), - [anon_sym_DOLLARif] = ACTIONS(4127), - [anon_sym_match] = ACTIONS(4127), - [anon_sym_select] = ACTIONS(4127), - [anon_sym_lock] = ACTIONS(4127), - [anon_sym_rlock] = ACTIONS(4127), - [anon_sym_unsafe] = ACTIONS(4127), - [anon_sym_sql] = ACTIONS(4127), - [sym_int_literal] = ACTIONS(4127), - [sym_float_literal] = ACTIONS(4127), - [sym_rune_literal] = ACTIONS(4127), - [anon_sym_AT] = ACTIONS(4127), - [anon_sym_shared] = ACTIONS(4127), - [anon_sym_map_LBRACK] = ACTIONS(4127), - [anon_sym_chan] = ACTIONS(4127), - [anon_sym_thread] = ACTIONS(4127), - [anon_sym_atomic] = ACTIONS(4127), - [anon_sym_assert] = ACTIONS(4127), - [anon_sym_defer] = ACTIONS(4127), - [anon_sym_goto] = ACTIONS(4127), - [anon_sym_break] = ACTIONS(4127), - [anon_sym_continue] = ACTIONS(4127), - [anon_sym_return] = ACTIONS(4127), - [anon_sym_DOLLARfor] = ACTIONS(4127), - [anon_sym_for] = ACTIONS(4127), - [anon_sym_POUND] = ACTIONS(4127), - [anon_sym_asm] = ACTIONS(4127), - [anon_sym_AT_LBRACK] = ACTIONS(4127), - [sym___double_quote] = ACTIONS(4127), - [sym___single_quote] = ACTIONS(4127), - [sym___c_double_quote] = ACTIONS(4127), - [sym___c_single_quote] = ACTIONS(4127), - [sym___r_double_quote] = ACTIONS(4127), - [sym___r_single_quote] = ACTIONS(4127), + [ts_builtin_sym_end] = ACTIONS(4118), + [sym_identifier] = ACTIONS(4120), + [anon_sym_LF] = ACTIONS(4120), + [anon_sym_CR] = ACTIONS(4120), + [anon_sym_CR_LF] = ACTIONS(4120), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4120), + [anon_sym_LBRACE] = ACTIONS(4120), + [anon_sym_const] = ACTIONS(4120), + [anon_sym_LPAREN] = ACTIONS(4120), + [anon_sym___global] = ACTIONS(4120), + [anon_sym_type] = ACTIONS(4120), + [anon_sym_fn] = ACTIONS(4120), + [anon_sym_PLUS] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4120), + [anon_sym_STAR] = ACTIONS(4120), + [anon_sym_struct] = ACTIONS(4120), + [anon_sym_union] = ACTIONS(4120), + [anon_sym_pub] = ACTIONS(4120), + [anon_sym_mut] = ACTIONS(4120), + [anon_sym_enum] = ACTIONS(4120), + [anon_sym_interface] = ACTIONS(4120), + [anon_sym_QMARK] = ACTIONS(4120), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_go] = ACTIONS(4120), + [anon_sym_spawn] = ACTIONS(4120), + [anon_sym_json_DOTdecode] = ACTIONS(4120), + [anon_sym_LBRACK2] = ACTIONS(4120), + [anon_sym_TILDE] = ACTIONS(4120), + [anon_sym_CARET] = ACTIONS(4120), + [anon_sym_AMP] = ACTIONS(4120), + [anon_sym_LT_DASH] = ACTIONS(4120), + [sym_none] = ACTIONS(4120), + [sym_true] = ACTIONS(4120), + [sym_false] = ACTIONS(4120), + [sym_nil] = ACTIONS(4120), + [anon_sym_if] = ACTIONS(4120), + [anon_sym_DOLLARif] = ACTIONS(4120), + [anon_sym_match] = ACTIONS(4120), + [anon_sym_select] = ACTIONS(4120), + [anon_sym_lock] = ACTIONS(4120), + [anon_sym_rlock] = ACTIONS(4120), + [anon_sym_unsafe] = ACTIONS(4120), + [anon_sym_sql] = ACTIONS(4120), + [sym_int_literal] = ACTIONS(4120), + [sym_float_literal] = ACTIONS(4120), + [sym_rune_literal] = ACTIONS(4120), + [anon_sym_AT] = ACTIONS(4120), + [anon_sym_shared] = ACTIONS(4120), + [anon_sym_map_LBRACK] = ACTIONS(4120), + [anon_sym_chan] = ACTIONS(4120), + [anon_sym_thread] = ACTIONS(4120), + [anon_sym_atomic] = ACTIONS(4120), + [anon_sym_assert] = ACTIONS(4120), + [anon_sym_defer] = ACTIONS(4120), + [anon_sym_goto] = ACTIONS(4120), + [anon_sym_break] = ACTIONS(4120), + [anon_sym_continue] = ACTIONS(4120), + [anon_sym_return] = ACTIONS(4120), + [anon_sym_DOLLARfor] = ACTIONS(4120), + [anon_sym_for] = ACTIONS(4120), + [anon_sym_POUND] = ACTIONS(4120), + [anon_sym_asm] = ACTIONS(4120), + [anon_sym_AT_LBRACK] = ACTIONS(4120), + [sym___double_quote] = ACTIONS(4120), + [sym___single_quote] = ACTIONS(4120), + [sym___c_double_quote] = ACTIONS(4120), + [sym___c_single_quote] = ACTIONS(4120), + [sym___r_double_quote] = ACTIONS(4120), + [sym___r_single_quote] = ACTIONS(4120), }, [1544] = { - [ts_builtin_sym_end] = ACTIONS(4129), - [sym_identifier] = ACTIONS(4131), - [anon_sym_LF] = ACTIONS(4131), - [anon_sym_CR] = ACTIONS(4131), - [anon_sym_CR_LF] = ACTIONS(4131), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4131), - [anon_sym_LBRACE] = ACTIONS(4131), - [anon_sym_const] = ACTIONS(4131), - [anon_sym_LPAREN] = ACTIONS(4131), - [anon_sym___global] = ACTIONS(4131), - [anon_sym_type] = ACTIONS(4131), - [anon_sym_fn] = ACTIONS(4131), - [anon_sym_PLUS] = ACTIONS(4131), - [anon_sym_DASH] = ACTIONS(4131), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_struct] = ACTIONS(4131), - [anon_sym_union] = ACTIONS(4131), - [anon_sym_pub] = ACTIONS(4131), - [anon_sym_mut] = ACTIONS(4131), - [anon_sym_enum] = ACTIONS(4131), - [anon_sym_interface] = ACTIONS(4131), - [anon_sym_QMARK] = ACTIONS(4131), - [anon_sym_BANG] = ACTIONS(4131), - [anon_sym_go] = ACTIONS(4131), - [anon_sym_spawn] = ACTIONS(4131), - [anon_sym_json_DOTdecode] = ACTIONS(4131), - [anon_sym_LBRACK2] = ACTIONS(4131), - [anon_sym_TILDE] = ACTIONS(4131), - [anon_sym_CARET] = ACTIONS(4131), - [anon_sym_AMP] = ACTIONS(4131), - [anon_sym_LT_DASH] = ACTIONS(4131), - [sym_none] = ACTIONS(4131), - [sym_true] = ACTIONS(4131), - [sym_false] = ACTIONS(4131), - [sym_nil] = ACTIONS(4131), - [anon_sym_if] = ACTIONS(4131), - [anon_sym_DOLLARif] = ACTIONS(4131), - [anon_sym_match] = ACTIONS(4131), - [anon_sym_select] = ACTIONS(4131), - [anon_sym_lock] = ACTIONS(4131), - [anon_sym_rlock] = ACTIONS(4131), - [anon_sym_unsafe] = ACTIONS(4131), - [anon_sym_sql] = ACTIONS(4131), - [sym_int_literal] = ACTIONS(4131), - [sym_float_literal] = ACTIONS(4131), - [sym_rune_literal] = ACTIONS(4131), - [anon_sym_AT] = ACTIONS(4131), - [anon_sym_shared] = ACTIONS(4131), - [anon_sym_map_LBRACK] = ACTIONS(4131), - [anon_sym_chan] = ACTIONS(4131), - [anon_sym_thread] = ACTIONS(4131), - [anon_sym_atomic] = ACTIONS(4131), - [anon_sym_assert] = ACTIONS(4131), - [anon_sym_defer] = ACTIONS(4131), - [anon_sym_goto] = ACTIONS(4131), - [anon_sym_break] = ACTIONS(4131), - [anon_sym_continue] = ACTIONS(4131), - [anon_sym_return] = ACTIONS(4131), - [anon_sym_DOLLARfor] = ACTIONS(4131), - [anon_sym_for] = ACTIONS(4131), - [anon_sym_POUND] = ACTIONS(4131), - [anon_sym_asm] = ACTIONS(4131), - [anon_sym_AT_LBRACK] = ACTIONS(4131), - [sym___double_quote] = ACTIONS(4131), - [sym___single_quote] = ACTIONS(4131), - [sym___c_double_quote] = ACTIONS(4131), - [sym___c_single_quote] = ACTIONS(4131), - [sym___r_double_quote] = ACTIONS(4131), - [sym___r_single_quote] = ACTIONS(4131), + [ts_builtin_sym_end] = ACTIONS(1774), + [sym_identifier] = ACTIONS(1776), + [anon_sym_LF] = ACTIONS(1776), + [anon_sym_CR] = ACTIONS(1776), + [anon_sym_CR_LF] = ACTIONS(1776), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(1776), + [anon_sym_LBRACE] = ACTIONS(1776), + [anon_sym_const] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1776), + [anon_sym___global] = ACTIONS(1776), + [anon_sym_type] = ACTIONS(1776), + [anon_sym_fn] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1776), + [anon_sym_DASH] = ACTIONS(1776), + [anon_sym_STAR] = ACTIONS(1776), + [anon_sym_struct] = ACTIONS(1776), + [anon_sym_union] = ACTIONS(1776), + [anon_sym_pub] = ACTIONS(1776), + [anon_sym_mut] = ACTIONS(1776), + [anon_sym_enum] = ACTIONS(1776), + [anon_sym_interface] = ACTIONS(1776), + [anon_sym_QMARK] = ACTIONS(1776), + [anon_sym_BANG] = ACTIONS(1776), + [anon_sym_go] = ACTIONS(1776), + [anon_sym_spawn] = ACTIONS(1776), + [anon_sym_json_DOTdecode] = ACTIONS(1776), + [anon_sym_LBRACK2] = ACTIONS(1776), + [anon_sym_TILDE] = ACTIONS(1776), + [anon_sym_CARET] = ACTIONS(1776), + [anon_sym_AMP] = ACTIONS(1776), + [anon_sym_LT_DASH] = ACTIONS(1776), + [sym_none] = ACTIONS(1776), + [sym_true] = ACTIONS(1776), + [sym_false] = ACTIONS(1776), + [sym_nil] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1776), + [anon_sym_DOLLARif] = ACTIONS(1776), + [anon_sym_match] = ACTIONS(1776), + [anon_sym_select] = ACTIONS(1776), + [anon_sym_lock] = ACTIONS(1776), + [anon_sym_rlock] = ACTIONS(1776), + [anon_sym_unsafe] = ACTIONS(1776), + [anon_sym_sql] = ACTIONS(1776), + [sym_int_literal] = ACTIONS(1776), + [sym_float_literal] = ACTIONS(1776), + [sym_rune_literal] = ACTIONS(1776), + [anon_sym_AT] = ACTIONS(1776), + [anon_sym_shared] = ACTIONS(1776), + [anon_sym_map_LBRACK] = ACTIONS(1776), + [anon_sym_chan] = ACTIONS(1776), + [anon_sym_thread] = ACTIONS(1776), + [anon_sym_atomic] = ACTIONS(1776), + [anon_sym_assert] = ACTIONS(1776), + [anon_sym_defer] = ACTIONS(1776), + [anon_sym_goto] = ACTIONS(1776), + [anon_sym_break] = ACTIONS(1776), + [anon_sym_continue] = ACTIONS(1776), + [anon_sym_return] = ACTIONS(1776), + [anon_sym_DOLLARfor] = ACTIONS(1776), + [anon_sym_for] = ACTIONS(1776), + [anon_sym_POUND] = ACTIONS(1776), + [anon_sym_asm] = ACTIONS(1776), + [anon_sym_AT_LBRACK] = ACTIONS(1776), + [sym___double_quote] = ACTIONS(1776), + [sym___single_quote] = ACTIONS(1776), + [sym___c_double_quote] = ACTIONS(1776), + [sym___c_single_quote] = ACTIONS(1776), + [sym___r_double_quote] = ACTIONS(1776), + [sym___r_single_quote] = ACTIONS(1776), }, [1545] = { - [ts_builtin_sym_end] = ACTIONS(4133), - [sym_identifier] = ACTIONS(4135), - [anon_sym_LF] = ACTIONS(4135), - [anon_sym_CR] = ACTIONS(4135), - [anon_sym_CR_LF] = ACTIONS(4135), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4135), - [anon_sym_LBRACE] = ACTIONS(4135), - [anon_sym_const] = ACTIONS(4135), - [anon_sym_LPAREN] = ACTIONS(4135), - [anon_sym___global] = ACTIONS(4135), - [anon_sym_type] = ACTIONS(4135), - [anon_sym_fn] = ACTIONS(4135), - [anon_sym_PLUS] = ACTIONS(4135), - [anon_sym_DASH] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(4135), - [anon_sym_struct] = ACTIONS(4135), - [anon_sym_union] = ACTIONS(4135), - [anon_sym_pub] = ACTIONS(4135), - [anon_sym_mut] = ACTIONS(4135), - [anon_sym_enum] = ACTIONS(4135), - [anon_sym_interface] = ACTIONS(4135), - [anon_sym_QMARK] = ACTIONS(4135), - [anon_sym_BANG] = ACTIONS(4135), - [anon_sym_go] = ACTIONS(4135), - [anon_sym_spawn] = ACTIONS(4135), - [anon_sym_json_DOTdecode] = ACTIONS(4135), - [anon_sym_LBRACK2] = ACTIONS(4135), - [anon_sym_TILDE] = ACTIONS(4135), - [anon_sym_CARET] = ACTIONS(4135), - [anon_sym_AMP] = ACTIONS(4135), - [anon_sym_LT_DASH] = ACTIONS(4135), - [sym_none] = ACTIONS(4135), - [sym_true] = ACTIONS(4135), - [sym_false] = ACTIONS(4135), - [sym_nil] = ACTIONS(4135), - [anon_sym_if] = ACTIONS(4135), - [anon_sym_DOLLARif] = ACTIONS(4135), - [anon_sym_match] = ACTIONS(4135), - [anon_sym_select] = ACTIONS(4135), - [anon_sym_lock] = ACTIONS(4135), - [anon_sym_rlock] = ACTIONS(4135), - [anon_sym_unsafe] = ACTIONS(4135), - [anon_sym_sql] = ACTIONS(4135), - [sym_int_literal] = ACTIONS(4135), - [sym_float_literal] = ACTIONS(4135), - [sym_rune_literal] = ACTIONS(4135), - [anon_sym_AT] = ACTIONS(4135), - [anon_sym_shared] = ACTIONS(4135), - [anon_sym_map_LBRACK] = ACTIONS(4135), - [anon_sym_chan] = ACTIONS(4135), - [anon_sym_thread] = ACTIONS(4135), - [anon_sym_atomic] = ACTIONS(4135), - [anon_sym_assert] = ACTIONS(4135), - [anon_sym_defer] = ACTIONS(4135), - [anon_sym_goto] = ACTIONS(4135), - [anon_sym_break] = ACTIONS(4135), - [anon_sym_continue] = ACTIONS(4135), - [anon_sym_return] = ACTIONS(4135), - [anon_sym_DOLLARfor] = ACTIONS(4135), - [anon_sym_for] = ACTIONS(4135), - [anon_sym_POUND] = ACTIONS(4135), - [anon_sym_asm] = ACTIONS(4135), - [anon_sym_AT_LBRACK] = ACTIONS(4135), - [sym___double_quote] = ACTIONS(4135), - [sym___single_quote] = ACTIONS(4135), - [sym___c_double_quote] = ACTIONS(4135), - [sym___c_single_quote] = ACTIONS(4135), - [sym___r_double_quote] = ACTIONS(4135), - [sym___r_single_quote] = ACTIONS(4135), + [ts_builtin_sym_end] = ACTIONS(4122), + [sym_identifier] = ACTIONS(4124), + [anon_sym_LF] = ACTIONS(4124), + [anon_sym_CR] = ACTIONS(4124), + [anon_sym_CR_LF] = ACTIONS(4124), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_const] = ACTIONS(4124), + [anon_sym_LPAREN] = ACTIONS(4124), + [anon_sym___global] = ACTIONS(4124), + [anon_sym_type] = ACTIONS(4124), + [anon_sym_fn] = ACTIONS(4124), + [anon_sym_PLUS] = ACTIONS(4124), + [anon_sym_DASH] = ACTIONS(4124), + [anon_sym_STAR] = ACTIONS(4124), + [anon_sym_struct] = ACTIONS(4124), + [anon_sym_union] = ACTIONS(4124), + [anon_sym_pub] = ACTIONS(4124), + [anon_sym_mut] = ACTIONS(4124), + [anon_sym_enum] = ACTIONS(4124), + [anon_sym_interface] = ACTIONS(4124), + [anon_sym_QMARK] = ACTIONS(4124), + [anon_sym_BANG] = ACTIONS(4124), + [anon_sym_go] = ACTIONS(4124), + [anon_sym_spawn] = ACTIONS(4124), + [anon_sym_json_DOTdecode] = ACTIONS(4124), + [anon_sym_LBRACK2] = ACTIONS(4124), + [anon_sym_TILDE] = ACTIONS(4124), + [anon_sym_CARET] = ACTIONS(4124), + [anon_sym_AMP] = ACTIONS(4124), + [anon_sym_LT_DASH] = ACTIONS(4124), + [sym_none] = ACTIONS(4124), + [sym_true] = ACTIONS(4124), + [sym_false] = ACTIONS(4124), + [sym_nil] = ACTIONS(4124), + [anon_sym_if] = ACTIONS(4124), + [anon_sym_DOLLARif] = ACTIONS(4124), + [anon_sym_match] = ACTIONS(4124), + [anon_sym_select] = ACTIONS(4124), + [anon_sym_lock] = ACTIONS(4124), + [anon_sym_rlock] = ACTIONS(4124), + [anon_sym_unsafe] = ACTIONS(4124), + [anon_sym_sql] = ACTIONS(4124), + [sym_int_literal] = ACTIONS(4124), + [sym_float_literal] = ACTIONS(4124), + [sym_rune_literal] = ACTIONS(4124), + [anon_sym_AT] = ACTIONS(4124), + [anon_sym_shared] = ACTIONS(4124), + [anon_sym_map_LBRACK] = ACTIONS(4124), + [anon_sym_chan] = ACTIONS(4124), + [anon_sym_thread] = ACTIONS(4124), + [anon_sym_atomic] = ACTIONS(4124), + [anon_sym_assert] = ACTIONS(4124), + [anon_sym_defer] = ACTIONS(4124), + [anon_sym_goto] = ACTIONS(4124), + [anon_sym_break] = ACTIONS(4124), + [anon_sym_continue] = ACTIONS(4124), + [anon_sym_return] = ACTIONS(4124), + [anon_sym_DOLLARfor] = ACTIONS(4124), + [anon_sym_for] = ACTIONS(4124), + [anon_sym_POUND] = ACTIONS(4124), + [anon_sym_asm] = ACTIONS(4124), + [anon_sym_AT_LBRACK] = ACTIONS(4124), + [sym___double_quote] = ACTIONS(4124), + [sym___single_quote] = ACTIONS(4124), + [sym___c_double_quote] = ACTIONS(4124), + [sym___c_single_quote] = ACTIONS(4124), + [sym___r_double_quote] = ACTIONS(4124), + [sym___r_single_quote] = ACTIONS(4124), }, [1546] = { - [ts_builtin_sym_end] = ACTIONS(4137), - [sym_identifier] = ACTIONS(4139), - [anon_sym_LF] = ACTIONS(4139), - [anon_sym_CR] = ACTIONS(4139), - [anon_sym_CR_LF] = ACTIONS(4139), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4139), - [anon_sym_const] = ACTIONS(4139), - [anon_sym_LPAREN] = ACTIONS(4139), - [anon_sym___global] = ACTIONS(4139), - [anon_sym_type] = ACTIONS(4139), - [anon_sym_fn] = ACTIONS(4139), - [anon_sym_PLUS] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(4139), - [anon_sym_struct] = ACTIONS(4139), - [anon_sym_union] = ACTIONS(4139), - [anon_sym_pub] = ACTIONS(4139), - [anon_sym_mut] = ACTIONS(4139), - [anon_sym_enum] = ACTIONS(4139), - [anon_sym_interface] = ACTIONS(4139), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_BANG] = ACTIONS(4139), - [anon_sym_go] = ACTIONS(4139), - [anon_sym_spawn] = ACTIONS(4139), - [anon_sym_json_DOTdecode] = ACTIONS(4139), - [anon_sym_LBRACK2] = ACTIONS(4139), - [anon_sym_TILDE] = ACTIONS(4139), - [anon_sym_CARET] = ACTIONS(4139), - [anon_sym_AMP] = ACTIONS(4139), - [anon_sym_LT_DASH] = ACTIONS(4139), - [sym_none] = ACTIONS(4139), - [sym_true] = ACTIONS(4139), - [sym_false] = ACTIONS(4139), - [sym_nil] = ACTIONS(4139), - [anon_sym_if] = ACTIONS(4139), - [anon_sym_DOLLARif] = ACTIONS(4139), - [anon_sym_match] = ACTIONS(4139), - [anon_sym_select] = ACTIONS(4139), - [anon_sym_lock] = ACTIONS(4139), - [anon_sym_rlock] = ACTIONS(4139), - [anon_sym_unsafe] = ACTIONS(4139), - [anon_sym_sql] = ACTIONS(4139), - [sym_int_literal] = ACTIONS(4139), - [sym_float_literal] = ACTIONS(4139), - [sym_rune_literal] = ACTIONS(4139), - [anon_sym_AT] = ACTIONS(4139), - [anon_sym_shared] = ACTIONS(4139), - [anon_sym_map_LBRACK] = ACTIONS(4139), - [anon_sym_chan] = ACTIONS(4139), - [anon_sym_thread] = ACTIONS(4139), - [anon_sym_atomic] = ACTIONS(4139), - [anon_sym_assert] = ACTIONS(4139), - [anon_sym_defer] = ACTIONS(4139), - [anon_sym_goto] = ACTIONS(4139), - [anon_sym_break] = ACTIONS(4139), - [anon_sym_continue] = ACTIONS(4139), - [anon_sym_return] = ACTIONS(4139), - [anon_sym_DOLLARfor] = ACTIONS(4139), - [anon_sym_for] = ACTIONS(4139), - [anon_sym_POUND] = ACTIONS(4139), - [anon_sym_asm] = ACTIONS(4139), - [anon_sym_AT_LBRACK] = ACTIONS(4139), - [sym___double_quote] = ACTIONS(4139), - [sym___single_quote] = ACTIONS(4139), - [sym___c_double_quote] = ACTIONS(4139), - [sym___c_single_quote] = ACTIONS(4139), - [sym___r_double_quote] = ACTIONS(4139), - [sym___r_single_quote] = ACTIONS(4139), + [ts_builtin_sym_end] = ACTIONS(4126), + [sym_identifier] = ACTIONS(4128), + [anon_sym_LF] = ACTIONS(4128), + [anon_sym_CR] = ACTIONS(4128), + [anon_sym_CR_LF] = ACTIONS(4128), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4128), + [anon_sym_LBRACE] = ACTIONS(4128), + [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_AT] = 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), + [sym___double_quote] = ACTIONS(4128), + [sym___single_quote] = ACTIONS(4128), + [sym___c_double_quote] = ACTIONS(4128), + [sym___c_single_quote] = ACTIONS(4128), + [sym___r_double_quote] = ACTIONS(4128), + [sym___r_single_quote] = ACTIONS(4128), }, [1547] = { - [ts_builtin_sym_end] = ACTIONS(4141), - [sym_identifier] = ACTIONS(4143), - [anon_sym_LF] = ACTIONS(4143), - [anon_sym_CR] = ACTIONS(4143), - [anon_sym_CR_LF] = ACTIONS(4143), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4143), - [anon_sym_LBRACE] = ACTIONS(4143), - [anon_sym_const] = ACTIONS(4143), - [anon_sym_LPAREN] = ACTIONS(4143), - [anon_sym___global] = ACTIONS(4143), - [anon_sym_type] = ACTIONS(4143), - [anon_sym_fn] = ACTIONS(4143), - [anon_sym_PLUS] = ACTIONS(4143), - [anon_sym_DASH] = ACTIONS(4143), - [anon_sym_STAR] = ACTIONS(4143), - [anon_sym_struct] = ACTIONS(4143), - [anon_sym_union] = ACTIONS(4143), - [anon_sym_pub] = ACTIONS(4143), - [anon_sym_mut] = ACTIONS(4143), - [anon_sym_enum] = ACTIONS(4143), - [anon_sym_interface] = ACTIONS(4143), - [anon_sym_QMARK] = ACTIONS(4143), - [anon_sym_BANG] = ACTIONS(4143), - [anon_sym_go] = ACTIONS(4143), - [anon_sym_spawn] = ACTIONS(4143), - [anon_sym_json_DOTdecode] = ACTIONS(4143), - [anon_sym_LBRACK2] = ACTIONS(4143), - [anon_sym_TILDE] = ACTIONS(4143), - [anon_sym_CARET] = ACTIONS(4143), - [anon_sym_AMP] = ACTIONS(4143), - [anon_sym_LT_DASH] = ACTIONS(4143), - [sym_none] = ACTIONS(4143), - [sym_true] = ACTIONS(4143), - [sym_false] = ACTIONS(4143), - [sym_nil] = ACTIONS(4143), - [anon_sym_if] = ACTIONS(4143), - [anon_sym_DOLLARif] = ACTIONS(4143), - [anon_sym_match] = ACTIONS(4143), - [anon_sym_select] = ACTIONS(4143), - [anon_sym_lock] = ACTIONS(4143), - [anon_sym_rlock] = ACTIONS(4143), - [anon_sym_unsafe] = ACTIONS(4143), - [anon_sym_sql] = ACTIONS(4143), - [sym_int_literal] = ACTIONS(4143), - [sym_float_literal] = ACTIONS(4143), - [sym_rune_literal] = ACTIONS(4143), - [anon_sym_AT] = ACTIONS(4143), - [anon_sym_shared] = ACTIONS(4143), - [anon_sym_map_LBRACK] = ACTIONS(4143), - [anon_sym_chan] = ACTIONS(4143), - [anon_sym_thread] = ACTIONS(4143), - [anon_sym_atomic] = ACTIONS(4143), - [anon_sym_assert] = ACTIONS(4143), - [anon_sym_defer] = ACTIONS(4143), - [anon_sym_goto] = ACTIONS(4143), - [anon_sym_break] = ACTIONS(4143), - [anon_sym_continue] = ACTIONS(4143), - [anon_sym_return] = ACTIONS(4143), - [anon_sym_DOLLARfor] = ACTIONS(4143), - [anon_sym_for] = ACTIONS(4143), - [anon_sym_POUND] = ACTIONS(4143), - [anon_sym_asm] = ACTIONS(4143), - [anon_sym_AT_LBRACK] = ACTIONS(4143), - [sym___double_quote] = ACTIONS(4143), - [sym___single_quote] = ACTIONS(4143), - [sym___c_double_quote] = ACTIONS(4143), - [sym___c_single_quote] = ACTIONS(4143), - [sym___r_double_quote] = ACTIONS(4143), - [sym___r_single_quote] = ACTIONS(4143), + [ts_builtin_sym_end] = ACTIONS(4130), + [sym_identifier] = ACTIONS(4132), + [anon_sym_LF] = ACTIONS(4132), + [anon_sym_CR] = ACTIONS(4132), + [anon_sym_CR_LF] = ACTIONS(4132), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4132), + [anon_sym_LBRACE] = ACTIONS(4132), + [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_AT] = 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), + [sym___double_quote] = ACTIONS(4132), + [sym___single_quote] = ACTIONS(4132), + [sym___c_double_quote] = ACTIONS(4132), + [sym___c_single_quote] = ACTIONS(4132), + [sym___r_double_quote] = ACTIONS(4132), + [sym___r_single_quote] = ACTIONS(4132), }, [1548] = { - [ts_builtin_sym_end] = ACTIONS(4145), - [sym_identifier] = ACTIONS(4147), - [anon_sym_LF] = ACTIONS(4147), - [anon_sym_CR] = ACTIONS(4147), - [anon_sym_CR_LF] = ACTIONS(4147), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_LBRACE] = ACTIONS(4147), - [anon_sym_const] = ACTIONS(4147), - [anon_sym_LPAREN] = ACTIONS(4147), - [anon_sym___global] = ACTIONS(4147), - [anon_sym_type] = ACTIONS(4147), - [anon_sym_fn] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_struct] = ACTIONS(4147), - [anon_sym_union] = ACTIONS(4147), - [anon_sym_pub] = ACTIONS(4147), - [anon_sym_mut] = ACTIONS(4147), - [anon_sym_enum] = ACTIONS(4147), - [anon_sym_interface] = ACTIONS(4147), - [anon_sym_QMARK] = ACTIONS(4147), - [anon_sym_BANG] = ACTIONS(4147), - [anon_sym_go] = ACTIONS(4147), - [anon_sym_spawn] = ACTIONS(4147), - [anon_sym_json_DOTdecode] = ACTIONS(4147), - [anon_sym_LBRACK2] = ACTIONS(4147), - [anon_sym_TILDE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_LT_DASH] = ACTIONS(4147), - [sym_none] = ACTIONS(4147), - [sym_true] = ACTIONS(4147), - [sym_false] = ACTIONS(4147), - [sym_nil] = ACTIONS(4147), - [anon_sym_if] = ACTIONS(4147), - [anon_sym_DOLLARif] = ACTIONS(4147), - [anon_sym_match] = ACTIONS(4147), - [anon_sym_select] = ACTIONS(4147), - [anon_sym_lock] = ACTIONS(4147), - [anon_sym_rlock] = ACTIONS(4147), - [anon_sym_unsafe] = ACTIONS(4147), - [anon_sym_sql] = ACTIONS(4147), - [sym_int_literal] = ACTIONS(4147), - [sym_float_literal] = ACTIONS(4147), - [sym_rune_literal] = ACTIONS(4147), - [anon_sym_AT] = ACTIONS(4147), - [anon_sym_shared] = ACTIONS(4147), - [anon_sym_map_LBRACK] = ACTIONS(4147), - [anon_sym_chan] = ACTIONS(4147), - [anon_sym_thread] = ACTIONS(4147), - [anon_sym_atomic] = ACTIONS(4147), - [anon_sym_assert] = ACTIONS(4147), - [anon_sym_defer] = ACTIONS(4147), - [anon_sym_goto] = ACTIONS(4147), - [anon_sym_break] = ACTIONS(4147), - [anon_sym_continue] = ACTIONS(4147), - [anon_sym_return] = ACTIONS(4147), - [anon_sym_DOLLARfor] = ACTIONS(4147), - [anon_sym_for] = ACTIONS(4147), - [anon_sym_POUND] = ACTIONS(4147), - [anon_sym_asm] = ACTIONS(4147), - [anon_sym_AT_LBRACK] = ACTIONS(4147), - [sym___double_quote] = ACTIONS(4147), - [sym___single_quote] = ACTIONS(4147), - [sym___c_double_quote] = ACTIONS(4147), - [sym___c_single_quote] = ACTIONS(4147), - [sym___r_double_quote] = ACTIONS(4147), - [sym___r_single_quote] = ACTIONS(4147), + [ts_builtin_sym_end] = ACTIONS(4134), + [sym_identifier] = ACTIONS(4136), + [anon_sym_LF] = ACTIONS(4136), + [anon_sym_CR] = ACTIONS(4136), + [anon_sym_CR_LF] = ACTIONS(4136), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(4136), + [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_AT] = 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), + [sym___double_quote] = ACTIONS(4136), + [sym___single_quote] = ACTIONS(4136), + [sym___c_double_quote] = ACTIONS(4136), + [sym___c_single_quote] = ACTIONS(4136), + [sym___r_double_quote] = ACTIONS(4136), + [sym___r_single_quote] = ACTIONS(4136), }, [1549] = { - [ts_builtin_sym_end] = ACTIONS(4149), - [sym_identifier] = ACTIONS(4151), - [anon_sym_LF] = ACTIONS(4151), - [anon_sym_CR] = ACTIONS(4151), - [anon_sym_CR_LF] = ACTIONS(4151), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(4151), - [anon_sym_const] = ACTIONS(4151), - [anon_sym_LPAREN] = ACTIONS(4151), - [anon_sym___global] = ACTIONS(4151), - [anon_sym_type] = ACTIONS(4151), - [anon_sym_fn] = ACTIONS(4151), - [anon_sym_PLUS] = ACTIONS(4151), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_STAR] = ACTIONS(4151), - [anon_sym_struct] = ACTIONS(4151), - [anon_sym_union] = ACTIONS(4151), - [anon_sym_pub] = ACTIONS(4151), - [anon_sym_mut] = ACTIONS(4151), - [anon_sym_enum] = ACTIONS(4151), - [anon_sym_interface] = ACTIONS(4151), - [anon_sym_QMARK] = ACTIONS(4151), - [anon_sym_BANG] = ACTIONS(4151), - [anon_sym_go] = ACTIONS(4151), - [anon_sym_spawn] = ACTIONS(4151), - [anon_sym_json_DOTdecode] = ACTIONS(4151), - [anon_sym_LBRACK2] = ACTIONS(4151), - [anon_sym_TILDE] = ACTIONS(4151), - [anon_sym_CARET] = ACTIONS(4151), - [anon_sym_AMP] = ACTIONS(4151), - [anon_sym_LT_DASH] = ACTIONS(4151), - [sym_none] = ACTIONS(4151), - [sym_true] = ACTIONS(4151), - [sym_false] = ACTIONS(4151), - [sym_nil] = ACTIONS(4151), - [anon_sym_if] = ACTIONS(4151), - [anon_sym_DOLLARif] = ACTIONS(4151), - [anon_sym_match] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4151), - [anon_sym_lock] = ACTIONS(4151), - [anon_sym_rlock] = ACTIONS(4151), - [anon_sym_unsafe] = ACTIONS(4151), - [anon_sym_sql] = ACTIONS(4151), - [sym_int_literal] = ACTIONS(4151), - [sym_float_literal] = ACTIONS(4151), - [sym_rune_literal] = ACTIONS(4151), - [anon_sym_AT] = ACTIONS(4151), - [anon_sym_shared] = ACTIONS(4151), - [anon_sym_map_LBRACK] = ACTIONS(4151), - [anon_sym_chan] = ACTIONS(4151), - [anon_sym_thread] = ACTIONS(4151), - [anon_sym_atomic] = ACTIONS(4151), - [anon_sym_assert] = ACTIONS(4151), - [anon_sym_defer] = ACTIONS(4151), - [anon_sym_goto] = ACTIONS(4151), - [anon_sym_break] = ACTIONS(4151), - [anon_sym_continue] = ACTIONS(4151), - [anon_sym_return] = ACTIONS(4151), - [anon_sym_DOLLARfor] = ACTIONS(4151), - [anon_sym_for] = ACTIONS(4151), - [anon_sym_POUND] = ACTIONS(4151), - [anon_sym_asm] = ACTIONS(4151), - [anon_sym_AT_LBRACK] = ACTIONS(4151), - [sym___double_quote] = ACTIONS(4151), - [sym___single_quote] = ACTIONS(4151), - [sym___c_double_quote] = ACTIONS(4151), - [sym___c_single_quote] = ACTIONS(4151), - [sym___r_double_quote] = ACTIONS(4151), - [sym___r_single_quote] = ACTIONS(4151), + [ts_builtin_sym_end] = ACTIONS(4138), + [sym_identifier] = ACTIONS(4140), + [anon_sym_LF] = ACTIONS(4140), + [anon_sym_CR] = ACTIONS(4140), + [anon_sym_CR_LF] = ACTIONS(4140), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4140), + [anon_sym_LBRACE] = ACTIONS(4140), + [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_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_AT] = 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), + [sym___double_quote] = ACTIONS(4140), + [sym___single_quote] = ACTIONS(4140), + [sym___c_double_quote] = ACTIONS(4140), + [sym___c_single_quote] = ACTIONS(4140), + [sym___r_double_quote] = ACTIONS(4140), + [sym___r_single_quote] = ACTIONS(4140), }, [1550] = { - [ts_builtin_sym_end] = ACTIONS(4153), - [sym_identifier] = ACTIONS(4155), - [anon_sym_LF] = ACTIONS(4155), - [anon_sym_CR] = ACTIONS(4155), - [anon_sym_CR_LF] = ACTIONS(4155), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4155), - [anon_sym_LBRACE] = ACTIONS(4155), - [anon_sym_const] = ACTIONS(4155), - [anon_sym_LPAREN] = ACTIONS(4155), - [anon_sym___global] = ACTIONS(4155), - [anon_sym_type] = ACTIONS(4155), - [anon_sym_fn] = ACTIONS(4155), - [anon_sym_PLUS] = ACTIONS(4155), - [anon_sym_DASH] = ACTIONS(4155), - [anon_sym_STAR] = ACTIONS(4155), - [anon_sym_struct] = ACTIONS(4155), - [anon_sym_union] = ACTIONS(4155), - [anon_sym_pub] = ACTIONS(4155), - [anon_sym_mut] = ACTIONS(4155), - [anon_sym_enum] = ACTIONS(4155), - [anon_sym_interface] = ACTIONS(4155), - [anon_sym_QMARK] = ACTIONS(4155), - [anon_sym_BANG] = ACTIONS(4155), - [anon_sym_go] = ACTIONS(4155), - [anon_sym_spawn] = ACTIONS(4155), - [anon_sym_json_DOTdecode] = ACTIONS(4155), - [anon_sym_LBRACK2] = ACTIONS(4155), - [anon_sym_TILDE] = ACTIONS(4155), - [anon_sym_CARET] = ACTIONS(4155), - [anon_sym_AMP] = ACTIONS(4155), - [anon_sym_LT_DASH] = ACTIONS(4155), - [sym_none] = ACTIONS(4155), - [sym_true] = ACTIONS(4155), - [sym_false] = ACTIONS(4155), - [sym_nil] = ACTIONS(4155), - [anon_sym_if] = ACTIONS(4155), - [anon_sym_DOLLARif] = ACTIONS(4155), - [anon_sym_match] = ACTIONS(4155), - [anon_sym_select] = ACTIONS(4155), - [anon_sym_lock] = ACTIONS(4155), - [anon_sym_rlock] = ACTIONS(4155), - [anon_sym_unsafe] = ACTIONS(4155), - [anon_sym_sql] = ACTIONS(4155), - [sym_int_literal] = ACTIONS(4155), - [sym_float_literal] = ACTIONS(4155), - [sym_rune_literal] = ACTIONS(4155), - [anon_sym_AT] = ACTIONS(4155), - [anon_sym_shared] = ACTIONS(4155), - [anon_sym_map_LBRACK] = ACTIONS(4155), - [anon_sym_chan] = ACTIONS(4155), - [anon_sym_thread] = ACTIONS(4155), - [anon_sym_atomic] = ACTIONS(4155), - [anon_sym_assert] = ACTIONS(4155), - [anon_sym_defer] = ACTIONS(4155), - [anon_sym_goto] = ACTIONS(4155), - [anon_sym_break] = ACTIONS(4155), - [anon_sym_continue] = ACTIONS(4155), - [anon_sym_return] = ACTIONS(4155), - [anon_sym_DOLLARfor] = ACTIONS(4155), - [anon_sym_for] = ACTIONS(4155), - [anon_sym_POUND] = ACTIONS(4155), - [anon_sym_asm] = ACTIONS(4155), - [anon_sym_AT_LBRACK] = ACTIONS(4155), - [sym___double_quote] = ACTIONS(4155), - [sym___single_quote] = ACTIONS(4155), - [sym___c_double_quote] = ACTIONS(4155), - [sym___c_single_quote] = ACTIONS(4155), - [sym___r_double_quote] = ACTIONS(4155), - [sym___r_single_quote] = ACTIONS(4155), + [ts_builtin_sym_end] = ACTIONS(2734), + [sym_identifier] = ACTIONS(2736), + [anon_sym_LF] = ACTIONS(2736), + [anon_sym_CR] = ACTIONS(2736), + [anon_sym_CR_LF] = ACTIONS(2736), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2736), + [anon_sym_const] = ACTIONS(2736), + [anon_sym_LPAREN] = ACTIONS(2736), + [anon_sym___global] = ACTIONS(2736), + [anon_sym_type] = ACTIONS(2736), + [anon_sym_fn] = ACTIONS(2736), + [anon_sym_PLUS] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2736), + [anon_sym_STAR] = ACTIONS(2736), + [anon_sym_struct] = ACTIONS(2736), + [anon_sym_union] = ACTIONS(2736), + [anon_sym_pub] = ACTIONS(2736), + [anon_sym_mut] = ACTIONS(2736), + [anon_sym_enum] = ACTIONS(2736), + [anon_sym_interface] = ACTIONS(2736), + [anon_sym_QMARK] = ACTIONS(2736), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_go] = ACTIONS(2736), + [anon_sym_spawn] = ACTIONS(2736), + [anon_sym_json_DOTdecode] = ACTIONS(2736), + [anon_sym_LBRACK2] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_CARET] = ACTIONS(2736), + [anon_sym_AMP] = ACTIONS(2736), + [anon_sym_LT_DASH] = ACTIONS(2736), + [sym_none] = ACTIONS(2736), + [sym_true] = ACTIONS(2736), + [sym_false] = ACTIONS(2736), + [sym_nil] = ACTIONS(2736), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_DOLLARif] = ACTIONS(2736), + [anon_sym_match] = ACTIONS(2736), + [anon_sym_select] = ACTIONS(2736), + [anon_sym_lock] = ACTIONS(2736), + [anon_sym_rlock] = ACTIONS(2736), + [anon_sym_unsafe] = ACTIONS(2736), + [anon_sym_sql] = ACTIONS(2736), + [sym_int_literal] = ACTIONS(2736), + [sym_float_literal] = ACTIONS(2736), + [sym_rune_literal] = ACTIONS(2736), + [anon_sym_AT] = ACTIONS(2736), + [anon_sym_shared] = ACTIONS(2736), + [anon_sym_map_LBRACK] = ACTIONS(2736), + [anon_sym_chan] = ACTIONS(2736), + [anon_sym_thread] = ACTIONS(2736), + [anon_sym_atomic] = ACTIONS(2736), + [anon_sym_assert] = ACTIONS(2736), + [anon_sym_defer] = ACTIONS(2736), + [anon_sym_goto] = ACTIONS(2736), + [anon_sym_break] = ACTIONS(2736), + [anon_sym_continue] = ACTIONS(2736), + [anon_sym_return] = ACTIONS(2736), + [anon_sym_DOLLARfor] = ACTIONS(2736), + [anon_sym_for] = ACTIONS(2736), + [anon_sym_POUND] = ACTIONS(2736), + [anon_sym_asm] = ACTIONS(2736), + [anon_sym_AT_LBRACK] = ACTIONS(2736), + [sym___double_quote] = ACTIONS(2736), + [sym___single_quote] = ACTIONS(2736), + [sym___c_double_quote] = ACTIONS(2736), + [sym___c_single_quote] = ACTIONS(2736), + [sym___r_double_quote] = ACTIONS(2736), + [sym___r_single_quote] = ACTIONS(2736), }, [1551] = { - [ts_builtin_sym_end] = ACTIONS(4157), - [sym_identifier] = ACTIONS(4159), - [anon_sym_LF] = ACTIONS(4159), - [anon_sym_CR] = ACTIONS(4159), - [anon_sym_CR_LF] = ACTIONS(4159), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_LBRACE] = ACTIONS(4159), - [anon_sym_const] = ACTIONS(4159), - [anon_sym_LPAREN] = ACTIONS(4159), - [anon_sym___global] = ACTIONS(4159), - [anon_sym_type] = ACTIONS(4159), - [anon_sym_fn] = ACTIONS(4159), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [anon_sym_struct] = ACTIONS(4159), - [anon_sym_union] = ACTIONS(4159), - [anon_sym_pub] = ACTIONS(4159), - [anon_sym_mut] = ACTIONS(4159), - [anon_sym_enum] = ACTIONS(4159), - [anon_sym_interface] = ACTIONS(4159), - [anon_sym_QMARK] = ACTIONS(4159), - [anon_sym_BANG] = ACTIONS(4159), - [anon_sym_go] = ACTIONS(4159), - [anon_sym_spawn] = ACTIONS(4159), - [anon_sym_json_DOTdecode] = ACTIONS(4159), - [anon_sym_LBRACK2] = ACTIONS(4159), - [anon_sym_TILDE] = ACTIONS(4159), - [anon_sym_CARET] = ACTIONS(4159), - [anon_sym_AMP] = ACTIONS(4159), - [anon_sym_LT_DASH] = ACTIONS(4159), - [sym_none] = ACTIONS(4159), - [sym_true] = ACTIONS(4159), - [sym_false] = ACTIONS(4159), - [sym_nil] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [anon_sym_DOLLARif] = ACTIONS(4159), - [anon_sym_match] = ACTIONS(4159), - [anon_sym_select] = ACTIONS(4159), - [anon_sym_lock] = ACTIONS(4159), - [anon_sym_rlock] = ACTIONS(4159), - [anon_sym_unsafe] = ACTIONS(4159), - [anon_sym_sql] = ACTIONS(4159), - [sym_int_literal] = ACTIONS(4159), - [sym_float_literal] = ACTIONS(4159), - [sym_rune_literal] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4159), - [anon_sym_shared] = ACTIONS(4159), - [anon_sym_map_LBRACK] = ACTIONS(4159), - [anon_sym_chan] = ACTIONS(4159), - [anon_sym_thread] = ACTIONS(4159), - [anon_sym_atomic] = ACTIONS(4159), - [anon_sym_assert] = ACTIONS(4159), - [anon_sym_defer] = ACTIONS(4159), - [anon_sym_goto] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_DOLLARfor] = ACTIONS(4159), - [anon_sym_for] = ACTIONS(4159), - [anon_sym_POUND] = ACTIONS(4159), - [anon_sym_asm] = ACTIONS(4159), - [anon_sym_AT_LBRACK] = ACTIONS(4159), - [sym___double_quote] = ACTIONS(4159), - [sym___single_quote] = ACTIONS(4159), - [sym___c_double_quote] = ACTIONS(4159), - [sym___c_single_quote] = ACTIONS(4159), - [sym___r_double_quote] = ACTIONS(4159), - [sym___r_single_quote] = ACTIONS(4159), + [ts_builtin_sym_end] = ACTIONS(4142), + [sym_identifier] = ACTIONS(4144), + [anon_sym_LF] = ACTIONS(4144), + [anon_sym_CR] = ACTIONS(4144), + [anon_sym_CR_LF] = ACTIONS(4144), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4144), + [anon_sym_LBRACE] = ACTIONS(4144), + [anon_sym_const] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym___global] = ACTIONS(4144), + [anon_sym_type] = ACTIONS(4144), + [anon_sym_fn] = ACTIONS(4144), + [anon_sym_PLUS] = ACTIONS(4144), + [anon_sym_DASH] = ACTIONS(4144), + [anon_sym_STAR] = ACTIONS(4144), + [anon_sym_struct] = ACTIONS(4144), + [anon_sym_union] = ACTIONS(4144), + [anon_sym_pub] = ACTIONS(4144), + [anon_sym_mut] = ACTIONS(4144), + [anon_sym_enum] = ACTIONS(4144), + [anon_sym_interface] = ACTIONS(4144), + [anon_sym_QMARK] = ACTIONS(4144), + [anon_sym_BANG] = ACTIONS(4144), + [anon_sym_go] = ACTIONS(4144), + [anon_sym_spawn] = ACTIONS(4144), + [anon_sym_json_DOTdecode] = ACTIONS(4144), + [anon_sym_LBRACK2] = ACTIONS(4144), + [anon_sym_TILDE] = ACTIONS(4144), + [anon_sym_CARET] = ACTIONS(4144), + [anon_sym_AMP] = ACTIONS(4144), + [anon_sym_LT_DASH] = ACTIONS(4144), + [sym_none] = ACTIONS(4144), + [sym_true] = ACTIONS(4144), + [sym_false] = ACTIONS(4144), + [sym_nil] = ACTIONS(4144), + [anon_sym_if] = ACTIONS(4144), + [anon_sym_DOLLARif] = ACTIONS(4144), + [anon_sym_match] = ACTIONS(4144), + [anon_sym_select] = ACTIONS(4144), + [anon_sym_lock] = ACTIONS(4144), + [anon_sym_rlock] = ACTIONS(4144), + [anon_sym_unsafe] = ACTIONS(4144), + [anon_sym_sql] = ACTIONS(4144), + [sym_int_literal] = ACTIONS(4144), + [sym_float_literal] = ACTIONS(4144), + [sym_rune_literal] = ACTIONS(4144), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_shared] = ACTIONS(4144), + [anon_sym_map_LBRACK] = ACTIONS(4144), + [anon_sym_chan] = ACTIONS(4144), + [anon_sym_thread] = ACTIONS(4144), + [anon_sym_atomic] = ACTIONS(4144), + [anon_sym_assert] = ACTIONS(4144), + [anon_sym_defer] = ACTIONS(4144), + [anon_sym_goto] = ACTIONS(4144), + [anon_sym_break] = ACTIONS(4144), + [anon_sym_continue] = ACTIONS(4144), + [anon_sym_return] = ACTIONS(4144), + [anon_sym_DOLLARfor] = ACTIONS(4144), + [anon_sym_for] = ACTIONS(4144), + [anon_sym_POUND] = ACTIONS(4144), + [anon_sym_asm] = ACTIONS(4144), + [anon_sym_AT_LBRACK] = ACTIONS(4144), + [sym___double_quote] = ACTIONS(4144), + [sym___single_quote] = ACTIONS(4144), + [sym___c_double_quote] = ACTIONS(4144), + [sym___c_single_quote] = ACTIONS(4144), + [sym___r_double_quote] = ACTIONS(4144), + [sym___r_single_quote] = ACTIONS(4144), }, [1552] = { - [ts_builtin_sym_end] = ACTIONS(4161), - [sym_identifier] = ACTIONS(4163), - [anon_sym_LF] = ACTIONS(4163), - [anon_sym_CR] = ACTIONS(4163), - [anon_sym_CR_LF] = ACTIONS(4163), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4163), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_const] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(4163), - [anon_sym___global] = ACTIONS(4163), - [anon_sym_type] = ACTIONS(4163), - [anon_sym_fn] = ACTIONS(4163), - [anon_sym_PLUS] = ACTIONS(4163), - [anon_sym_DASH] = ACTIONS(4163), - [anon_sym_STAR] = ACTIONS(4163), - [anon_sym_struct] = ACTIONS(4163), - [anon_sym_union] = ACTIONS(4163), - [anon_sym_pub] = ACTIONS(4163), - [anon_sym_mut] = ACTIONS(4163), - [anon_sym_enum] = ACTIONS(4163), - [anon_sym_interface] = ACTIONS(4163), - [anon_sym_QMARK] = ACTIONS(4163), - [anon_sym_BANG] = ACTIONS(4163), - [anon_sym_go] = ACTIONS(4163), - [anon_sym_spawn] = ACTIONS(4163), - [anon_sym_json_DOTdecode] = ACTIONS(4163), - [anon_sym_LBRACK2] = ACTIONS(4163), - [anon_sym_TILDE] = ACTIONS(4163), - [anon_sym_CARET] = ACTIONS(4163), - [anon_sym_AMP] = ACTIONS(4163), - [anon_sym_LT_DASH] = ACTIONS(4163), - [sym_none] = ACTIONS(4163), - [sym_true] = ACTIONS(4163), - [sym_false] = ACTIONS(4163), - [sym_nil] = ACTIONS(4163), - [anon_sym_if] = ACTIONS(4163), - [anon_sym_DOLLARif] = ACTIONS(4163), - [anon_sym_match] = ACTIONS(4163), - [anon_sym_select] = ACTIONS(4163), - [anon_sym_lock] = ACTIONS(4163), - [anon_sym_rlock] = ACTIONS(4163), - [anon_sym_unsafe] = ACTIONS(4163), - [anon_sym_sql] = ACTIONS(4163), - [sym_int_literal] = ACTIONS(4163), - [sym_float_literal] = ACTIONS(4163), - [sym_rune_literal] = ACTIONS(4163), - [anon_sym_AT] = ACTIONS(4163), - [anon_sym_shared] = ACTIONS(4163), - [anon_sym_map_LBRACK] = ACTIONS(4163), - [anon_sym_chan] = ACTIONS(4163), - [anon_sym_thread] = ACTIONS(4163), - [anon_sym_atomic] = ACTIONS(4163), - [anon_sym_assert] = ACTIONS(4163), - [anon_sym_defer] = ACTIONS(4163), - [anon_sym_goto] = ACTIONS(4163), - [anon_sym_break] = ACTIONS(4163), - [anon_sym_continue] = ACTIONS(4163), - [anon_sym_return] = ACTIONS(4163), - [anon_sym_DOLLARfor] = ACTIONS(4163), - [anon_sym_for] = ACTIONS(4163), - [anon_sym_POUND] = ACTIONS(4163), - [anon_sym_asm] = ACTIONS(4163), - [anon_sym_AT_LBRACK] = ACTIONS(4163), - [sym___double_quote] = ACTIONS(4163), - [sym___single_quote] = ACTIONS(4163), - [sym___c_double_quote] = ACTIONS(4163), - [sym___c_single_quote] = ACTIONS(4163), - [sym___r_double_quote] = ACTIONS(4163), - [sym___r_single_quote] = ACTIONS(4163), + [ts_builtin_sym_end] = ACTIONS(4146), + [sym_identifier] = ACTIONS(4148), + [anon_sym_LF] = ACTIONS(4148), + [anon_sym_CR] = ACTIONS(4148), + [anon_sym_CR_LF] = ACTIONS(4148), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4148), + [anon_sym_LBRACE] = ACTIONS(4148), + [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_AT] = ACTIONS(4148), + [anon_sym_shared] = ACTIONS(4148), + [anon_sym_map_LBRACK] = ACTIONS(4148), + [anon_sym_chan] = ACTIONS(4148), + [anon_sym_thread] = ACTIONS(4148), + [anon_sym_atomic] = ACTIONS(4148), + [anon_sym_assert] = ACTIONS(4148), + [anon_sym_defer] = ACTIONS(4148), + [anon_sym_goto] = ACTIONS(4148), + [anon_sym_break] = ACTIONS(4148), + [anon_sym_continue] = ACTIONS(4148), + [anon_sym_return] = ACTIONS(4148), + [anon_sym_DOLLARfor] = ACTIONS(4148), + [anon_sym_for] = ACTIONS(4148), + [anon_sym_POUND] = ACTIONS(4148), + [anon_sym_asm] = ACTIONS(4148), + [anon_sym_AT_LBRACK] = ACTIONS(4148), + [sym___double_quote] = ACTIONS(4148), + [sym___single_quote] = ACTIONS(4148), + [sym___c_double_quote] = ACTIONS(4148), + [sym___c_single_quote] = ACTIONS(4148), + [sym___r_double_quote] = ACTIONS(4148), + [sym___r_single_quote] = ACTIONS(4148), }, [1553] = { - [ts_builtin_sym_end] = ACTIONS(4165), - [sym_identifier] = ACTIONS(4167), - [anon_sym_LF] = ACTIONS(4169), - [anon_sym_CR] = ACTIONS(4169), - [anon_sym_CR_LF] = ACTIONS(4169), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4167), - [anon_sym_const] = ACTIONS(4167), - [anon_sym_LPAREN] = ACTIONS(4167), - [anon_sym___global] = ACTIONS(4167), - [anon_sym_type] = ACTIONS(4167), - [anon_sym_fn] = ACTIONS(4167), - [anon_sym_PLUS] = ACTIONS(4167), - [anon_sym_DASH] = ACTIONS(4167), - [anon_sym_STAR] = ACTIONS(4167), - [anon_sym_struct] = ACTIONS(4167), - [anon_sym_union] = ACTIONS(4167), - [anon_sym_pub] = ACTIONS(4167), - [anon_sym_mut] = ACTIONS(4167), - [anon_sym_enum] = ACTIONS(4167), - [anon_sym_interface] = ACTIONS(4167), - [anon_sym_QMARK] = ACTIONS(4167), - [anon_sym_BANG] = ACTIONS(4167), - [anon_sym_go] = ACTIONS(4167), - [anon_sym_spawn] = ACTIONS(4167), - [anon_sym_json_DOTdecode] = ACTIONS(4167), - [anon_sym_LBRACK2] = ACTIONS(4167), - [anon_sym_TILDE] = ACTIONS(4167), - [anon_sym_CARET] = ACTIONS(4167), - [anon_sym_AMP] = ACTIONS(4167), - [anon_sym_LT_DASH] = ACTIONS(4167), - [sym_none] = ACTIONS(4167), - [sym_true] = ACTIONS(4167), - [sym_false] = ACTIONS(4167), - [sym_nil] = ACTIONS(4167), - [anon_sym_if] = ACTIONS(4167), - [anon_sym_DOLLARif] = ACTIONS(4167), - [anon_sym_match] = ACTIONS(4167), - [anon_sym_select] = ACTIONS(4167), - [anon_sym_lock] = ACTIONS(4167), - [anon_sym_rlock] = ACTIONS(4167), - [anon_sym_unsafe] = ACTIONS(4167), - [anon_sym_sql] = ACTIONS(4167), - [sym_int_literal] = ACTIONS(4167), - [sym_float_literal] = ACTIONS(4167), - [sym_rune_literal] = ACTIONS(4167), - [anon_sym_AT] = ACTIONS(4167), - [anon_sym_shared] = ACTIONS(4167), - [anon_sym_map_LBRACK] = ACTIONS(4167), - [anon_sym_chan] = ACTIONS(4167), - [anon_sym_thread] = ACTIONS(4167), - [anon_sym_atomic] = ACTIONS(4167), - [anon_sym_assert] = ACTIONS(4167), - [anon_sym_defer] = ACTIONS(4167), - [anon_sym_goto] = ACTIONS(4167), - [anon_sym_break] = ACTIONS(4167), - [anon_sym_continue] = ACTIONS(4167), - [anon_sym_return] = ACTIONS(4167), - [anon_sym_DOLLARfor] = ACTIONS(4167), - [anon_sym_for] = ACTIONS(4167), - [anon_sym_POUND] = ACTIONS(4167), - [anon_sym_asm] = ACTIONS(4167), - [anon_sym_AT_LBRACK] = ACTIONS(4167), - [sym___double_quote] = ACTIONS(4167), - [sym___single_quote] = ACTIONS(4167), - [sym___c_double_quote] = ACTIONS(4167), - [sym___c_single_quote] = ACTIONS(4167), - [sym___r_double_quote] = ACTIONS(4167), - [sym___r_single_quote] = ACTIONS(4167), + [ts_builtin_sym_end] = ACTIONS(4150), + [sym_identifier] = ACTIONS(4152), + [anon_sym_LF] = ACTIONS(4152), + [anon_sym_CR] = ACTIONS(4152), + [anon_sym_CR_LF] = ACTIONS(4152), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(4152), + [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_AT] = ACTIONS(4152), + [anon_sym_shared] = ACTIONS(4152), + [anon_sym_map_LBRACK] = ACTIONS(4152), + [anon_sym_chan] = ACTIONS(4152), + [anon_sym_thread] = ACTIONS(4152), + [anon_sym_atomic] = ACTIONS(4152), + [anon_sym_assert] = ACTIONS(4152), + [anon_sym_defer] = ACTIONS(4152), + [anon_sym_goto] = ACTIONS(4152), + [anon_sym_break] = ACTIONS(4152), + [anon_sym_continue] = ACTIONS(4152), + [anon_sym_return] = ACTIONS(4152), + [anon_sym_DOLLARfor] = ACTIONS(4152), + [anon_sym_for] = ACTIONS(4152), + [anon_sym_POUND] = ACTIONS(4152), + [anon_sym_asm] = ACTIONS(4152), + [anon_sym_AT_LBRACK] = ACTIONS(4152), + [sym___double_quote] = ACTIONS(4152), + [sym___single_quote] = ACTIONS(4152), + [sym___c_double_quote] = ACTIONS(4152), + [sym___c_single_quote] = ACTIONS(4152), + [sym___r_double_quote] = ACTIONS(4152), + [sym___r_single_quote] = ACTIONS(4152), }, [1554] = { - [ts_builtin_sym_end] = ACTIONS(4171), - [sym_identifier] = ACTIONS(4173), - [anon_sym_LF] = ACTIONS(4173), - [anon_sym_CR] = ACTIONS(4173), - [anon_sym_CR_LF] = ACTIONS(4173), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4173), - [anon_sym_LBRACE] = ACTIONS(4173), - [anon_sym_const] = ACTIONS(4173), - [anon_sym_LPAREN] = ACTIONS(4173), - [anon_sym___global] = ACTIONS(4173), - [anon_sym_type] = ACTIONS(4173), - [anon_sym_fn] = ACTIONS(4173), - [anon_sym_PLUS] = ACTIONS(4173), - [anon_sym_DASH] = ACTIONS(4173), - [anon_sym_STAR] = ACTIONS(4173), - [anon_sym_struct] = ACTIONS(4173), - [anon_sym_union] = ACTIONS(4173), - [anon_sym_pub] = ACTIONS(4173), - [anon_sym_mut] = ACTIONS(4173), - [anon_sym_enum] = ACTIONS(4173), - [anon_sym_interface] = ACTIONS(4173), - [anon_sym_QMARK] = ACTIONS(4173), - [anon_sym_BANG] = ACTIONS(4173), - [anon_sym_go] = ACTIONS(4173), - [anon_sym_spawn] = ACTIONS(4173), - [anon_sym_json_DOTdecode] = ACTIONS(4173), - [anon_sym_LBRACK2] = ACTIONS(4173), - [anon_sym_TILDE] = ACTIONS(4173), - [anon_sym_CARET] = ACTIONS(4173), - [anon_sym_AMP] = ACTIONS(4173), - [anon_sym_LT_DASH] = ACTIONS(4173), - [sym_none] = ACTIONS(4173), - [sym_true] = ACTIONS(4173), - [sym_false] = ACTIONS(4173), - [sym_nil] = ACTIONS(4173), - [anon_sym_if] = ACTIONS(4173), - [anon_sym_DOLLARif] = ACTIONS(4173), - [anon_sym_match] = ACTIONS(4173), - [anon_sym_select] = ACTIONS(4173), - [anon_sym_lock] = ACTIONS(4173), - [anon_sym_rlock] = ACTIONS(4173), - [anon_sym_unsafe] = ACTIONS(4173), - [anon_sym_sql] = ACTIONS(4173), - [sym_int_literal] = ACTIONS(4173), - [sym_float_literal] = ACTIONS(4173), - [sym_rune_literal] = ACTIONS(4173), - [anon_sym_AT] = ACTIONS(4173), - [anon_sym_shared] = ACTIONS(4173), - [anon_sym_map_LBRACK] = ACTIONS(4173), - [anon_sym_chan] = ACTIONS(4173), - [anon_sym_thread] = ACTIONS(4173), - [anon_sym_atomic] = ACTIONS(4173), - [anon_sym_assert] = ACTIONS(4173), - [anon_sym_defer] = ACTIONS(4173), - [anon_sym_goto] = ACTIONS(4173), - [anon_sym_break] = ACTIONS(4173), - [anon_sym_continue] = ACTIONS(4173), - [anon_sym_return] = ACTIONS(4173), - [anon_sym_DOLLARfor] = ACTIONS(4173), - [anon_sym_for] = ACTIONS(4173), - [anon_sym_POUND] = ACTIONS(4173), - [anon_sym_asm] = ACTIONS(4173), - [anon_sym_AT_LBRACK] = ACTIONS(4173), - [sym___double_quote] = ACTIONS(4173), - [sym___single_quote] = ACTIONS(4173), - [sym___c_double_quote] = ACTIONS(4173), - [sym___c_single_quote] = ACTIONS(4173), - [sym___r_double_quote] = ACTIONS(4173), - [sym___r_single_quote] = ACTIONS(4173), + [ts_builtin_sym_end] = ACTIONS(4154), + [sym_identifier] = ACTIONS(4156), + [anon_sym_LF] = ACTIONS(4156), + [anon_sym_CR] = ACTIONS(4156), + [anon_sym_CR_LF] = ACTIONS(4156), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4156), + [anon_sym_LBRACE] = ACTIONS(4156), + [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_AT] = ACTIONS(4156), + [anon_sym_shared] = ACTIONS(4156), + [anon_sym_map_LBRACK] = ACTIONS(4156), + [anon_sym_chan] = ACTIONS(4156), + [anon_sym_thread] = ACTIONS(4156), + [anon_sym_atomic] = ACTIONS(4156), + [anon_sym_assert] = ACTIONS(4156), + [anon_sym_defer] = ACTIONS(4156), + [anon_sym_goto] = ACTIONS(4156), + [anon_sym_break] = ACTIONS(4156), + [anon_sym_continue] = ACTIONS(4156), + [anon_sym_return] = ACTIONS(4156), + [anon_sym_DOLLARfor] = ACTIONS(4156), + [anon_sym_for] = ACTIONS(4156), + [anon_sym_POUND] = ACTIONS(4156), + [anon_sym_asm] = ACTIONS(4156), + [anon_sym_AT_LBRACK] = ACTIONS(4156), + [sym___double_quote] = ACTIONS(4156), + [sym___single_quote] = ACTIONS(4156), + [sym___c_double_quote] = ACTIONS(4156), + [sym___c_single_quote] = ACTIONS(4156), + [sym___r_double_quote] = ACTIONS(4156), + [sym___r_single_quote] = ACTIONS(4156), }, [1555] = { - [ts_builtin_sym_end] = ACTIONS(4175), - [sym_identifier] = ACTIONS(4177), - [anon_sym_LF] = ACTIONS(4177), - [anon_sym_CR] = ACTIONS(4177), - [anon_sym_CR_LF] = ACTIONS(4177), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4177), - [anon_sym_const] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym___global] = ACTIONS(4177), - [anon_sym_type] = ACTIONS(4177), - [anon_sym_fn] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4177), - [anon_sym_DASH] = ACTIONS(4177), - [anon_sym_STAR] = ACTIONS(4177), - [anon_sym_struct] = ACTIONS(4177), - [anon_sym_union] = ACTIONS(4177), - [anon_sym_pub] = ACTIONS(4177), - [anon_sym_mut] = ACTIONS(4177), - [anon_sym_enum] = ACTIONS(4177), - [anon_sym_interface] = ACTIONS(4177), - [anon_sym_QMARK] = ACTIONS(4177), - [anon_sym_BANG] = ACTIONS(4177), - [anon_sym_go] = ACTIONS(4177), - [anon_sym_spawn] = ACTIONS(4177), - [anon_sym_json_DOTdecode] = ACTIONS(4177), - [anon_sym_LBRACK2] = ACTIONS(4177), - [anon_sym_TILDE] = ACTIONS(4177), - [anon_sym_CARET] = ACTIONS(4177), - [anon_sym_AMP] = ACTIONS(4177), - [anon_sym_LT_DASH] = ACTIONS(4177), - [sym_none] = ACTIONS(4177), - [sym_true] = ACTIONS(4177), - [sym_false] = ACTIONS(4177), - [sym_nil] = ACTIONS(4177), - [anon_sym_if] = ACTIONS(4177), - [anon_sym_DOLLARif] = ACTIONS(4177), - [anon_sym_match] = ACTIONS(4177), - [anon_sym_select] = ACTIONS(4177), - [anon_sym_lock] = ACTIONS(4177), - [anon_sym_rlock] = ACTIONS(4177), - [anon_sym_unsafe] = ACTIONS(4177), - [anon_sym_sql] = ACTIONS(4177), - [sym_int_literal] = ACTIONS(4177), - [sym_float_literal] = ACTIONS(4177), - [sym_rune_literal] = ACTIONS(4177), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_shared] = ACTIONS(4177), - [anon_sym_map_LBRACK] = ACTIONS(4177), - [anon_sym_chan] = ACTIONS(4177), - [anon_sym_thread] = ACTIONS(4177), - [anon_sym_atomic] = ACTIONS(4177), - [anon_sym_assert] = ACTIONS(4177), - [anon_sym_defer] = ACTIONS(4177), - [anon_sym_goto] = ACTIONS(4177), - [anon_sym_break] = ACTIONS(4177), - [anon_sym_continue] = ACTIONS(4177), - [anon_sym_return] = ACTIONS(4177), - [anon_sym_DOLLARfor] = ACTIONS(4177), - [anon_sym_for] = ACTIONS(4177), - [anon_sym_POUND] = ACTIONS(4177), - [anon_sym_asm] = ACTIONS(4177), - [anon_sym_AT_LBRACK] = ACTIONS(4177), - [sym___double_quote] = ACTIONS(4177), - [sym___single_quote] = ACTIONS(4177), - [sym___c_double_quote] = ACTIONS(4177), - [sym___c_single_quote] = ACTIONS(4177), - [sym___r_double_quote] = ACTIONS(4177), - [sym___r_single_quote] = ACTIONS(4177), + [ts_builtin_sym_end] = ACTIONS(4158), + [sym_identifier] = ACTIONS(4160), + [anon_sym_LF] = ACTIONS(4160), + [anon_sym_CR] = ACTIONS(4160), + [anon_sym_CR_LF] = ACTIONS(4160), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(4160), + [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_AT] = ACTIONS(4160), + [anon_sym_shared] = ACTIONS(4160), + [anon_sym_map_LBRACK] = ACTIONS(4160), + [anon_sym_chan] = ACTIONS(4160), + [anon_sym_thread] = ACTIONS(4160), + [anon_sym_atomic] = ACTIONS(4160), + [anon_sym_assert] = ACTIONS(4160), + [anon_sym_defer] = ACTIONS(4160), + [anon_sym_goto] = ACTIONS(4160), + [anon_sym_break] = ACTIONS(4160), + [anon_sym_continue] = ACTIONS(4160), + [anon_sym_return] = ACTIONS(4160), + [anon_sym_DOLLARfor] = ACTIONS(4160), + [anon_sym_for] = ACTIONS(4160), + [anon_sym_POUND] = ACTIONS(4160), + [anon_sym_asm] = ACTIONS(4160), + [anon_sym_AT_LBRACK] = ACTIONS(4160), + [sym___double_quote] = ACTIONS(4160), + [sym___single_quote] = ACTIONS(4160), + [sym___c_double_quote] = ACTIONS(4160), + [sym___c_single_quote] = ACTIONS(4160), + [sym___r_double_quote] = ACTIONS(4160), + [sym___r_single_quote] = ACTIONS(4160), }, [1556] = { - [ts_builtin_sym_end] = ACTIONS(4179), - [sym_identifier] = ACTIONS(4181), - [anon_sym_LF] = ACTIONS(4181), - [anon_sym_CR] = ACTIONS(4181), - [anon_sym_CR_LF] = ACTIONS(4181), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4181), - [anon_sym_const] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym___global] = ACTIONS(4181), - [anon_sym_type] = ACTIONS(4181), - [anon_sym_fn] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4181), - [anon_sym_DASH] = ACTIONS(4181), - [anon_sym_STAR] = ACTIONS(4181), - [anon_sym_struct] = ACTIONS(4181), - [anon_sym_union] = ACTIONS(4181), - [anon_sym_pub] = ACTIONS(4181), - [anon_sym_mut] = ACTIONS(4181), - [anon_sym_enum] = ACTIONS(4181), - [anon_sym_interface] = ACTIONS(4181), - [anon_sym_QMARK] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4181), - [anon_sym_go] = ACTIONS(4181), - [anon_sym_spawn] = ACTIONS(4181), - [anon_sym_json_DOTdecode] = ACTIONS(4181), - [anon_sym_LBRACK2] = ACTIONS(4181), - [anon_sym_TILDE] = ACTIONS(4181), - [anon_sym_CARET] = ACTIONS(4181), - [anon_sym_AMP] = ACTIONS(4181), - [anon_sym_LT_DASH] = ACTIONS(4181), - [sym_none] = ACTIONS(4181), - [sym_true] = ACTIONS(4181), - [sym_false] = ACTIONS(4181), - [sym_nil] = ACTIONS(4181), - [anon_sym_if] = ACTIONS(4181), - [anon_sym_DOLLARif] = ACTIONS(4181), - [anon_sym_match] = ACTIONS(4181), - [anon_sym_select] = ACTIONS(4181), - [anon_sym_lock] = ACTIONS(4181), - [anon_sym_rlock] = ACTIONS(4181), - [anon_sym_unsafe] = ACTIONS(4181), - [anon_sym_sql] = ACTIONS(4181), - [sym_int_literal] = ACTIONS(4181), - [sym_float_literal] = ACTIONS(4181), - [sym_rune_literal] = ACTIONS(4181), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_shared] = ACTIONS(4181), - [anon_sym_map_LBRACK] = ACTIONS(4181), - [anon_sym_chan] = ACTIONS(4181), - [anon_sym_thread] = ACTIONS(4181), - [anon_sym_atomic] = ACTIONS(4181), - [anon_sym_assert] = ACTIONS(4181), - [anon_sym_defer] = ACTIONS(4181), - [anon_sym_goto] = ACTIONS(4181), - [anon_sym_break] = ACTIONS(4181), - [anon_sym_continue] = ACTIONS(4181), - [anon_sym_return] = ACTIONS(4181), - [anon_sym_DOLLARfor] = ACTIONS(4181), - [anon_sym_for] = ACTIONS(4181), - [anon_sym_POUND] = ACTIONS(4181), - [anon_sym_asm] = ACTIONS(4181), - [anon_sym_AT_LBRACK] = ACTIONS(4181), - [sym___double_quote] = ACTIONS(4181), - [sym___single_quote] = ACTIONS(4181), - [sym___c_double_quote] = ACTIONS(4181), - [sym___c_single_quote] = ACTIONS(4181), - [sym___r_double_quote] = ACTIONS(4181), - [sym___r_single_quote] = ACTIONS(4181), + [ts_builtin_sym_end] = ACTIONS(4162), + [sym_identifier] = ACTIONS(4164), + [anon_sym_LF] = ACTIONS(4164), + [anon_sym_CR] = ACTIONS(4164), + [anon_sym_CR_LF] = ACTIONS(4164), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4164), + [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_AT] = ACTIONS(4164), + [anon_sym_shared] = ACTIONS(4164), + [anon_sym_map_LBRACK] = ACTIONS(4164), + [anon_sym_chan] = ACTIONS(4164), + [anon_sym_thread] = ACTIONS(4164), + [anon_sym_atomic] = ACTIONS(4164), + [anon_sym_assert] = ACTIONS(4164), + [anon_sym_defer] = ACTIONS(4164), + [anon_sym_goto] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_DOLLARfor] = ACTIONS(4164), + [anon_sym_for] = ACTIONS(4164), + [anon_sym_POUND] = ACTIONS(4164), + [anon_sym_asm] = ACTIONS(4164), + [anon_sym_AT_LBRACK] = ACTIONS(4164), + [sym___double_quote] = ACTIONS(4164), + [sym___single_quote] = ACTIONS(4164), + [sym___c_double_quote] = ACTIONS(4164), + [sym___c_single_quote] = ACTIONS(4164), + [sym___r_double_quote] = ACTIONS(4164), + [sym___r_single_quote] = ACTIONS(4164), }, [1557] = { - [ts_builtin_sym_end] = ACTIONS(1764), - [sym_identifier] = ACTIONS(1766), - [anon_sym_LF] = ACTIONS(1766), - [anon_sym_CR] = ACTIONS(1766), - [anon_sym_CR_LF] = ACTIONS(1766), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1766), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_const] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym___global] = ACTIONS(1766), - [anon_sym_type] = ACTIONS(1766), - [anon_sym_fn] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1766), - [anon_sym_DASH] = ACTIONS(1766), - [anon_sym_STAR] = ACTIONS(1766), - [anon_sym_struct] = ACTIONS(1766), - [anon_sym_union] = ACTIONS(1766), - [anon_sym_pub] = ACTIONS(1766), - [anon_sym_mut] = ACTIONS(1766), - [anon_sym_enum] = ACTIONS(1766), - [anon_sym_interface] = ACTIONS(1766), - [anon_sym_QMARK] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1766), - [anon_sym_go] = ACTIONS(1766), - [anon_sym_spawn] = ACTIONS(1766), - [anon_sym_json_DOTdecode] = ACTIONS(1766), - [anon_sym_LBRACK2] = ACTIONS(1766), - [anon_sym_TILDE] = ACTIONS(1766), - [anon_sym_CARET] = ACTIONS(1766), - [anon_sym_AMP] = ACTIONS(1766), - [anon_sym_LT_DASH] = ACTIONS(1766), - [sym_none] = ACTIONS(1766), - [sym_true] = ACTIONS(1766), - [sym_false] = ACTIONS(1766), - [sym_nil] = ACTIONS(1766), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_DOLLARif] = ACTIONS(1766), - [anon_sym_match] = ACTIONS(1766), - [anon_sym_select] = ACTIONS(1766), - [anon_sym_lock] = ACTIONS(1766), - [anon_sym_rlock] = ACTIONS(1766), - [anon_sym_unsafe] = ACTIONS(1766), - [anon_sym_sql] = ACTIONS(1766), - [sym_int_literal] = ACTIONS(1766), - [sym_float_literal] = ACTIONS(1766), - [sym_rune_literal] = ACTIONS(1766), - [anon_sym_AT] = ACTIONS(1766), - [anon_sym_shared] = ACTIONS(1766), - [anon_sym_map_LBRACK] = ACTIONS(1766), - [anon_sym_chan] = ACTIONS(1766), - [anon_sym_thread] = ACTIONS(1766), - [anon_sym_atomic] = ACTIONS(1766), - [anon_sym_assert] = ACTIONS(1766), - [anon_sym_defer] = ACTIONS(1766), - [anon_sym_goto] = ACTIONS(1766), - [anon_sym_break] = ACTIONS(1766), - [anon_sym_continue] = ACTIONS(1766), - [anon_sym_return] = ACTIONS(1766), - [anon_sym_DOLLARfor] = ACTIONS(1766), - [anon_sym_for] = ACTIONS(1766), - [anon_sym_POUND] = ACTIONS(1766), - [anon_sym_asm] = ACTIONS(1766), - [anon_sym_AT_LBRACK] = ACTIONS(1766), - [sym___double_quote] = ACTIONS(1766), - [sym___single_quote] = ACTIONS(1766), - [sym___c_double_quote] = ACTIONS(1766), - [sym___c_single_quote] = ACTIONS(1766), - [sym___r_double_quote] = ACTIONS(1766), - [sym___r_single_quote] = ACTIONS(1766), + [ts_builtin_sym_end] = ACTIONS(4166), + [sym_identifier] = ACTIONS(4168), + [anon_sym_LF] = ACTIONS(4168), + [anon_sym_CR] = ACTIONS(4168), + [anon_sym_CR_LF] = ACTIONS(4168), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_LBRACE] = ACTIONS(4168), + [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_AT] = ACTIONS(4168), + [anon_sym_shared] = ACTIONS(4168), + [anon_sym_map_LBRACK] = ACTIONS(4168), + [anon_sym_chan] = ACTIONS(4168), + [anon_sym_thread] = ACTIONS(4168), + [anon_sym_atomic] = ACTIONS(4168), + [anon_sym_assert] = ACTIONS(4168), + [anon_sym_defer] = ACTIONS(4168), + [anon_sym_goto] = ACTIONS(4168), + [anon_sym_break] = ACTIONS(4168), + [anon_sym_continue] = ACTIONS(4168), + [anon_sym_return] = ACTIONS(4168), + [anon_sym_DOLLARfor] = ACTIONS(4168), + [anon_sym_for] = ACTIONS(4168), + [anon_sym_POUND] = ACTIONS(4168), + [anon_sym_asm] = ACTIONS(4168), + [anon_sym_AT_LBRACK] = ACTIONS(4168), + [sym___double_quote] = ACTIONS(4168), + [sym___single_quote] = ACTIONS(4168), + [sym___c_double_quote] = ACTIONS(4168), + [sym___c_single_quote] = ACTIONS(4168), + [sym___r_double_quote] = ACTIONS(4168), + [sym___r_single_quote] = ACTIONS(4168), }, [1558] = { - [ts_builtin_sym_end] = ACTIONS(4183), - [sym_identifier] = ACTIONS(4185), - [anon_sym_LF] = ACTIONS(4185), - [anon_sym_CR] = ACTIONS(4185), - [anon_sym_CR_LF] = ACTIONS(4185), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4185), - [anon_sym_LBRACE] = ACTIONS(4185), - [anon_sym_const] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym___global] = ACTIONS(4185), - [anon_sym_type] = ACTIONS(4185), - [anon_sym_fn] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4185), - [anon_sym_DASH] = ACTIONS(4185), - [anon_sym_STAR] = ACTIONS(4185), - [anon_sym_struct] = ACTIONS(4185), - [anon_sym_union] = ACTIONS(4185), - [anon_sym_pub] = ACTIONS(4185), - [anon_sym_mut] = ACTIONS(4185), - [anon_sym_enum] = ACTIONS(4185), - [anon_sym_interface] = ACTIONS(4185), - [anon_sym_QMARK] = ACTIONS(4185), - [anon_sym_BANG] = ACTIONS(4185), - [anon_sym_go] = ACTIONS(4185), - [anon_sym_spawn] = ACTIONS(4185), - [anon_sym_json_DOTdecode] = ACTIONS(4185), - [anon_sym_LBRACK2] = ACTIONS(4185), - [anon_sym_TILDE] = ACTIONS(4185), - [anon_sym_CARET] = ACTIONS(4185), - [anon_sym_AMP] = ACTIONS(4185), - [anon_sym_LT_DASH] = ACTIONS(4185), - [sym_none] = ACTIONS(4185), - [sym_true] = ACTIONS(4185), - [sym_false] = ACTIONS(4185), - [sym_nil] = ACTIONS(4185), - [anon_sym_if] = ACTIONS(4185), - [anon_sym_DOLLARif] = ACTIONS(4185), - [anon_sym_match] = ACTIONS(4185), - [anon_sym_select] = ACTIONS(4185), - [anon_sym_lock] = ACTIONS(4185), - [anon_sym_rlock] = ACTIONS(4185), - [anon_sym_unsafe] = ACTIONS(4185), - [anon_sym_sql] = ACTIONS(4185), - [sym_int_literal] = ACTIONS(4185), - [sym_float_literal] = ACTIONS(4185), - [sym_rune_literal] = ACTIONS(4185), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_shared] = ACTIONS(4185), - [anon_sym_map_LBRACK] = ACTIONS(4185), - [anon_sym_chan] = ACTIONS(4185), - [anon_sym_thread] = ACTIONS(4185), - [anon_sym_atomic] = ACTIONS(4185), - [anon_sym_assert] = ACTIONS(4185), - [anon_sym_defer] = ACTIONS(4185), - [anon_sym_goto] = ACTIONS(4185), - [anon_sym_break] = ACTIONS(4185), - [anon_sym_continue] = ACTIONS(4185), - [anon_sym_return] = ACTIONS(4185), - [anon_sym_DOLLARfor] = ACTIONS(4185), - [anon_sym_for] = ACTIONS(4185), - [anon_sym_POUND] = ACTIONS(4185), - [anon_sym_asm] = ACTIONS(4185), - [anon_sym_AT_LBRACK] = ACTIONS(4185), - [sym___double_quote] = ACTIONS(4185), - [sym___single_quote] = ACTIONS(4185), - [sym___c_double_quote] = ACTIONS(4185), - [sym___c_single_quote] = ACTIONS(4185), - [sym___r_double_quote] = ACTIONS(4185), - [sym___r_single_quote] = ACTIONS(4185), + [ts_builtin_sym_end] = ACTIONS(4170), + [sym_identifier] = ACTIONS(4172), + [anon_sym_LF] = ACTIONS(4172), + [anon_sym_CR] = ACTIONS(4172), + [anon_sym_CR_LF] = ACTIONS(4172), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4172), + [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_AT] = ACTIONS(4172), + [anon_sym_shared] = ACTIONS(4172), + [anon_sym_map_LBRACK] = ACTIONS(4172), + [anon_sym_chan] = ACTIONS(4172), + [anon_sym_thread] = ACTIONS(4172), + [anon_sym_atomic] = ACTIONS(4172), + [anon_sym_assert] = ACTIONS(4172), + [anon_sym_defer] = ACTIONS(4172), + [anon_sym_goto] = ACTIONS(4172), + [anon_sym_break] = ACTIONS(4172), + [anon_sym_continue] = ACTIONS(4172), + [anon_sym_return] = ACTIONS(4172), + [anon_sym_DOLLARfor] = ACTIONS(4172), + [anon_sym_for] = ACTIONS(4172), + [anon_sym_POUND] = ACTIONS(4172), + [anon_sym_asm] = ACTIONS(4172), + [anon_sym_AT_LBRACK] = ACTIONS(4172), + [sym___double_quote] = ACTIONS(4172), + [sym___single_quote] = ACTIONS(4172), + [sym___c_double_quote] = ACTIONS(4172), + [sym___c_single_quote] = ACTIONS(4172), + [sym___r_double_quote] = ACTIONS(4172), + [sym___r_single_quote] = ACTIONS(4172), }, [1559] = { - [ts_builtin_sym_end] = ACTIONS(4187), - [sym_identifier] = ACTIONS(4189), - [anon_sym_LF] = ACTIONS(4189), - [anon_sym_CR] = ACTIONS(4189), - [anon_sym_CR_LF] = ACTIONS(4189), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4189), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_const] = ACTIONS(4189), - [anon_sym_LPAREN] = ACTIONS(4189), - [anon_sym___global] = ACTIONS(4189), - [anon_sym_type] = ACTIONS(4189), - [anon_sym_fn] = ACTIONS(4189), - [anon_sym_PLUS] = ACTIONS(4189), - [anon_sym_DASH] = ACTIONS(4189), - [anon_sym_STAR] = ACTIONS(4189), - [anon_sym_struct] = ACTIONS(4189), - [anon_sym_union] = ACTIONS(4189), - [anon_sym_pub] = ACTIONS(4189), - [anon_sym_mut] = ACTIONS(4189), - [anon_sym_enum] = ACTIONS(4189), - [anon_sym_interface] = ACTIONS(4189), - [anon_sym_QMARK] = ACTIONS(4189), - [anon_sym_BANG] = ACTIONS(4189), - [anon_sym_go] = ACTIONS(4189), - [anon_sym_spawn] = ACTIONS(4189), - [anon_sym_json_DOTdecode] = ACTIONS(4189), - [anon_sym_LBRACK2] = ACTIONS(4189), - [anon_sym_TILDE] = ACTIONS(4189), - [anon_sym_CARET] = ACTIONS(4189), - [anon_sym_AMP] = ACTIONS(4189), - [anon_sym_LT_DASH] = ACTIONS(4189), - [sym_none] = ACTIONS(4189), - [sym_true] = ACTIONS(4189), - [sym_false] = ACTIONS(4189), - [sym_nil] = ACTIONS(4189), - [anon_sym_if] = ACTIONS(4189), - [anon_sym_DOLLARif] = ACTIONS(4189), - [anon_sym_match] = ACTIONS(4189), - [anon_sym_select] = ACTIONS(4189), - [anon_sym_lock] = ACTIONS(4189), - [anon_sym_rlock] = ACTIONS(4189), - [anon_sym_unsafe] = ACTIONS(4189), - [anon_sym_sql] = ACTIONS(4189), - [sym_int_literal] = ACTIONS(4189), - [sym_float_literal] = ACTIONS(4189), - [sym_rune_literal] = ACTIONS(4189), - [anon_sym_AT] = ACTIONS(4189), - [anon_sym_shared] = ACTIONS(4189), - [anon_sym_map_LBRACK] = ACTIONS(4189), - [anon_sym_chan] = ACTIONS(4189), - [anon_sym_thread] = ACTIONS(4189), - [anon_sym_atomic] = ACTIONS(4189), - [anon_sym_assert] = ACTIONS(4189), - [anon_sym_defer] = ACTIONS(4189), - [anon_sym_goto] = ACTIONS(4189), - [anon_sym_break] = ACTIONS(4189), - [anon_sym_continue] = ACTIONS(4189), - [anon_sym_return] = ACTIONS(4189), - [anon_sym_DOLLARfor] = ACTIONS(4189), - [anon_sym_for] = ACTIONS(4189), - [anon_sym_POUND] = ACTIONS(4189), - [anon_sym_asm] = ACTIONS(4189), - [anon_sym_AT_LBRACK] = ACTIONS(4189), - [sym___double_quote] = ACTIONS(4189), - [sym___single_quote] = ACTIONS(4189), - [sym___c_double_quote] = ACTIONS(4189), - [sym___c_single_quote] = ACTIONS(4189), - [sym___r_double_quote] = ACTIONS(4189), - [sym___r_single_quote] = ACTIONS(4189), + [sym_import_declaration] = STATE(1499), + [aux_sym_import_list_repeat1] = STATE(1499), + [ts_builtin_sym_end] = ACTIONS(4174), + [sym_identifier] = ACTIONS(4176), + [sym_comment] = ACTIONS(3), + [anon_sym_import] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(4176), + [anon_sym_LBRACE] = ACTIONS(4174), + [anon_sym_const] = ACTIONS(4176), + [anon_sym_LPAREN] = ACTIONS(4174), + [anon_sym___global] = ACTIONS(4176), + [anon_sym_type] = ACTIONS(4176), + [anon_sym_fn] = ACTIONS(4176), + [anon_sym_PLUS] = ACTIONS(4174), + [anon_sym_DASH] = ACTIONS(4174), + [anon_sym_STAR] = ACTIONS(4174), + [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(4174), + [anon_sym_BANG] = ACTIONS(4174), + [anon_sym_go] = ACTIONS(4176), + [anon_sym_spawn] = ACTIONS(4176), + [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(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(4174), + [sym_rune_literal] = ACTIONS(4174), + [anon_sym_AT] = ACTIONS(4176), + [anon_sym_shared] = ACTIONS(4176), + [anon_sym_map_LBRACK] = ACTIONS(4174), + [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(4174), + [anon_sym_asm] = ACTIONS(4176), + [anon_sym_AT_LBRACK] = ACTIONS(4174), + [sym___double_quote] = ACTIONS(4174), + [sym___single_quote] = ACTIONS(4174), + [sym___c_double_quote] = ACTIONS(4174), + [sym___c_single_quote] = ACTIONS(4174), + [sym___r_double_quote] = ACTIONS(4174), + [sym___r_single_quote] = ACTIONS(4174), }, [1560] = { - [ts_builtin_sym_end] = ACTIONS(4191), - [sym_identifier] = ACTIONS(4193), - [anon_sym_LF] = ACTIONS(4193), - [anon_sym_CR] = ACTIONS(4193), - [anon_sym_CR_LF] = ACTIONS(4193), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4193), - [anon_sym_LBRACE] = ACTIONS(4193), - [anon_sym_const] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(4193), - [anon_sym___global] = ACTIONS(4193), - [anon_sym_type] = ACTIONS(4193), - [anon_sym_fn] = ACTIONS(4193), - [anon_sym_PLUS] = ACTIONS(4193), - [anon_sym_DASH] = ACTIONS(4193), - [anon_sym_STAR] = ACTIONS(4193), - [anon_sym_struct] = ACTIONS(4193), - [anon_sym_union] = ACTIONS(4193), - [anon_sym_pub] = ACTIONS(4193), - [anon_sym_mut] = ACTIONS(4193), - [anon_sym_enum] = ACTIONS(4193), - [anon_sym_interface] = ACTIONS(4193), - [anon_sym_QMARK] = ACTIONS(4193), - [anon_sym_BANG] = ACTIONS(4193), - [anon_sym_go] = ACTIONS(4193), - [anon_sym_spawn] = ACTIONS(4193), - [anon_sym_json_DOTdecode] = ACTIONS(4193), - [anon_sym_LBRACK2] = ACTIONS(4193), - [anon_sym_TILDE] = ACTIONS(4193), - [anon_sym_CARET] = ACTIONS(4193), - [anon_sym_AMP] = ACTIONS(4193), - [anon_sym_LT_DASH] = ACTIONS(4193), - [sym_none] = ACTIONS(4193), - [sym_true] = ACTIONS(4193), - [sym_false] = ACTIONS(4193), - [sym_nil] = ACTIONS(4193), - [anon_sym_if] = ACTIONS(4193), - [anon_sym_DOLLARif] = ACTIONS(4193), - [anon_sym_match] = ACTIONS(4193), - [anon_sym_select] = ACTIONS(4193), - [anon_sym_lock] = ACTIONS(4193), - [anon_sym_rlock] = ACTIONS(4193), - [anon_sym_unsafe] = ACTIONS(4193), - [anon_sym_sql] = ACTIONS(4193), - [sym_int_literal] = ACTIONS(4193), - [sym_float_literal] = ACTIONS(4193), - [sym_rune_literal] = ACTIONS(4193), - [anon_sym_AT] = ACTIONS(4193), - [anon_sym_shared] = ACTIONS(4193), - [anon_sym_map_LBRACK] = ACTIONS(4193), - [anon_sym_chan] = ACTIONS(4193), - [anon_sym_thread] = ACTIONS(4193), - [anon_sym_atomic] = ACTIONS(4193), - [anon_sym_assert] = ACTIONS(4193), - [anon_sym_defer] = ACTIONS(4193), - [anon_sym_goto] = ACTIONS(4193), - [anon_sym_break] = ACTIONS(4193), - [anon_sym_continue] = ACTIONS(4193), - [anon_sym_return] = ACTIONS(4193), - [anon_sym_DOLLARfor] = ACTIONS(4193), - [anon_sym_for] = ACTIONS(4193), - [anon_sym_POUND] = ACTIONS(4193), - [anon_sym_asm] = ACTIONS(4193), - [anon_sym_AT_LBRACK] = ACTIONS(4193), - [sym___double_quote] = ACTIONS(4193), - [sym___single_quote] = ACTIONS(4193), - [sym___c_double_quote] = ACTIONS(4193), - [sym___c_single_quote] = ACTIONS(4193), - [sym___r_double_quote] = ACTIONS(4193), - [sym___r_single_quote] = ACTIONS(4193), + [ts_builtin_sym_end] = ACTIONS(4178), + [sym_identifier] = ACTIONS(4180), + [anon_sym_LF] = ACTIONS(4180), + [anon_sym_CR] = ACTIONS(4180), + [anon_sym_CR_LF] = ACTIONS(4180), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4180), + [anon_sym_LBRACE] = ACTIONS(4180), + [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_AT] = ACTIONS(4180), + [anon_sym_shared] = ACTIONS(4180), + [anon_sym_map_LBRACK] = ACTIONS(4180), + [anon_sym_chan] = ACTIONS(4180), + [anon_sym_thread] = ACTIONS(4180), + [anon_sym_atomic] = ACTIONS(4180), + [anon_sym_assert] = ACTIONS(4180), + [anon_sym_defer] = ACTIONS(4180), + [anon_sym_goto] = ACTIONS(4180), + [anon_sym_break] = ACTIONS(4180), + [anon_sym_continue] = ACTIONS(4180), + [anon_sym_return] = ACTIONS(4180), + [anon_sym_DOLLARfor] = ACTIONS(4180), + [anon_sym_for] = ACTIONS(4180), + [anon_sym_POUND] = ACTIONS(4180), + [anon_sym_asm] = ACTIONS(4180), + [anon_sym_AT_LBRACK] = ACTIONS(4180), + [sym___double_quote] = ACTIONS(4180), + [sym___single_quote] = ACTIONS(4180), + [sym___c_double_quote] = ACTIONS(4180), + [sym___c_single_quote] = ACTIONS(4180), + [sym___r_double_quote] = ACTIONS(4180), + [sym___r_single_quote] = ACTIONS(4180), }, [1561] = { - [ts_builtin_sym_end] = ACTIONS(4195), - [sym_identifier] = ACTIONS(4197), - [anon_sym_LF] = ACTIONS(4197), - [anon_sym_CR] = ACTIONS(4197), - [anon_sym_CR_LF] = ACTIONS(4197), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4197), - [anon_sym_LBRACE] = ACTIONS(4197), - [anon_sym_const] = ACTIONS(4197), - [anon_sym_LPAREN] = ACTIONS(4197), - [anon_sym___global] = ACTIONS(4197), - [anon_sym_type] = ACTIONS(4197), - [anon_sym_fn] = ACTIONS(4197), - [anon_sym_PLUS] = ACTIONS(4197), - [anon_sym_DASH] = ACTIONS(4197), - [anon_sym_STAR] = ACTIONS(4197), - [anon_sym_struct] = ACTIONS(4197), - [anon_sym_union] = ACTIONS(4197), - [anon_sym_pub] = ACTIONS(4197), - [anon_sym_mut] = ACTIONS(4197), - [anon_sym_enum] = ACTIONS(4197), - [anon_sym_interface] = ACTIONS(4197), - [anon_sym_QMARK] = ACTIONS(4197), - [anon_sym_BANG] = ACTIONS(4197), - [anon_sym_go] = ACTIONS(4197), - [anon_sym_spawn] = ACTIONS(4197), - [anon_sym_json_DOTdecode] = ACTIONS(4197), - [anon_sym_LBRACK2] = ACTIONS(4197), - [anon_sym_TILDE] = ACTIONS(4197), - [anon_sym_CARET] = ACTIONS(4197), - [anon_sym_AMP] = ACTIONS(4197), - [anon_sym_LT_DASH] = ACTIONS(4197), - [sym_none] = ACTIONS(4197), - [sym_true] = ACTIONS(4197), - [sym_false] = ACTIONS(4197), - [sym_nil] = ACTIONS(4197), - [anon_sym_if] = ACTIONS(4197), - [anon_sym_DOLLARif] = ACTIONS(4197), - [anon_sym_match] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4197), - [anon_sym_lock] = ACTIONS(4197), - [anon_sym_rlock] = ACTIONS(4197), - [anon_sym_unsafe] = ACTIONS(4197), - [anon_sym_sql] = ACTIONS(4197), - [sym_int_literal] = ACTIONS(4197), - [sym_float_literal] = ACTIONS(4197), - [sym_rune_literal] = ACTIONS(4197), - [anon_sym_AT] = ACTIONS(4197), - [anon_sym_shared] = ACTIONS(4197), - [anon_sym_map_LBRACK] = ACTIONS(4197), - [anon_sym_chan] = ACTIONS(4197), - [anon_sym_thread] = ACTIONS(4197), - [anon_sym_atomic] = ACTIONS(4197), - [anon_sym_assert] = ACTIONS(4197), - [anon_sym_defer] = ACTIONS(4197), - [anon_sym_goto] = ACTIONS(4197), - [anon_sym_break] = ACTIONS(4197), - [anon_sym_continue] = ACTIONS(4197), - [anon_sym_return] = ACTIONS(4197), - [anon_sym_DOLLARfor] = ACTIONS(4197), - [anon_sym_for] = ACTIONS(4197), - [anon_sym_POUND] = ACTIONS(4197), - [anon_sym_asm] = ACTIONS(4197), - [anon_sym_AT_LBRACK] = ACTIONS(4197), - [sym___double_quote] = ACTIONS(4197), - [sym___single_quote] = ACTIONS(4197), - [sym___c_double_quote] = ACTIONS(4197), - [sym___c_single_quote] = ACTIONS(4197), - [sym___r_double_quote] = ACTIONS(4197), - [sym___r_single_quote] = ACTIONS(4197), + [ts_builtin_sym_end] = ACTIONS(4182), + [sym_identifier] = ACTIONS(4184), + [anon_sym_LF] = ACTIONS(4184), + [anon_sym_CR] = ACTIONS(4184), + [anon_sym_CR_LF] = ACTIONS(4184), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4184), + [anon_sym_LBRACE] = ACTIONS(4184), + [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_AT] = ACTIONS(4184), + [anon_sym_shared] = ACTIONS(4184), + [anon_sym_map_LBRACK] = ACTIONS(4184), + [anon_sym_chan] = ACTIONS(4184), + [anon_sym_thread] = ACTIONS(4184), + [anon_sym_atomic] = ACTIONS(4184), + [anon_sym_assert] = ACTIONS(4184), + [anon_sym_defer] = ACTIONS(4184), + [anon_sym_goto] = ACTIONS(4184), + [anon_sym_break] = ACTIONS(4184), + [anon_sym_continue] = ACTIONS(4184), + [anon_sym_return] = ACTIONS(4184), + [anon_sym_DOLLARfor] = ACTIONS(4184), + [anon_sym_for] = ACTIONS(4184), + [anon_sym_POUND] = ACTIONS(4184), + [anon_sym_asm] = ACTIONS(4184), + [anon_sym_AT_LBRACK] = ACTIONS(4184), + [sym___double_quote] = ACTIONS(4184), + [sym___single_quote] = ACTIONS(4184), + [sym___c_double_quote] = ACTIONS(4184), + [sym___c_single_quote] = ACTIONS(4184), + [sym___r_double_quote] = ACTIONS(4184), + [sym___r_single_quote] = ACTIONS(4184), }, [1562] = { - [ts_builtin_sym_end] = ACTIONS(4199), - [sym_identifier] = ACTIONS(4201), - [anon_sym_LF] = ACTIONS(4201), - [anon_sym_CR] = ACTIONS(4201), - [anon_sym_CR_LF] = ACTIONS(4201), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4201), - [anon_sym_LBRACE] = ACTIONS(4201), - [anon_sym_const] = ACTIONS(4201), - [anon_sym_LPAREN] = ACTIONS(4201), - [anon_sym___global] = ACTIONS(4201), - [anon_sym_type] = ACTIONS(4201), - [anon_sym_fn] = ACTIONS(4201), - [anon_sym_PLUS] = ACTIONS(4201), - [anon_sym_DASH] = ACTIONS(4201), - [anon_sym_STAR] = ACTIONS(4201), - [anon_sym_struct] = ACTIONS(4201), - [anon_sym_union] = ACTIONS(4201), - [anon_sym_pub] = ACTIONS(4201), - [anon_sym_mut] = ACTIONS(4201), - [anon_sym_enum] = ACTIONS(4201), - [anon_sym_interface] = ACTIONS(4201), - [anon_sym_QMARK] = ACTIONS(4201), - [anon_sym_BANG] = ACTIONS(4201), - [anon_sym_go] = ACTIONS(4201), - [anon_sym_spawn] = ACTIONS(4201), - [anon_sym_json_DOTdecode] = ACTIONS(4201), - [anon_sym_LBRACK2] = ACTIONS(4201), - [anon_sym_TILDE] = ACTIONS(4201), - [anon_sym_CARET] = ACTIONS(4201), - [anon_sym_AMP] = ACTIONS(4201), - [anon_sym_LT_DASH] = ACTIONS(4201), - [sym_none] = ACTIONS(4201), - [sym_true] = ACTIONS(4201), - [sym_false] = ACTIONS(4201), - [sym_nil] = ACTIONS(4201), - [anon_sym_if] = ACTIONS(4201), - [anon_sym_DOLLARif] = ACTIONS(4201), - [anon_sym_match] = ACTIONS(4201), - [anon_sym_select] = ACTIONS(4201), - [anon_sym_lock] = ACTIONS(4201), - [anon_sym_rlock] = ACTIONS(4201), - [anon_sym_unsafe] = ACTIONS(4201), - [anon_sym_sql] = ACTIONS(4201), - [sym_int_literal] = ACTIONS(4201), - [sym_float_literal] = ACTIONS(4201), - [sym_rune_literal] = ACTIONS(4201), - [anon_sym_AT] = ACTIONS(4201), - [anon_sym_shared] = ACTIONS(4201), - [anon_sym_map_LBRACK] = ACTIONS(4201), - [anon_sym_chan] = ACTIONS(4201), - [anon_sym_thread] = ACTIONS(4201), - [anon_sym_atomic] = ACTIONS(4201), - [anon_sym_assert] = ACTIONS(4201), - [anon_sym_defer] = ACTIONS(4201), - [anon_sym_goto] = ACTIONS(4201), - [anon_sym_break] = ACTIONS(4201), - [anon_sym_continue] = ACTIONS(4201), - [anon_sym_return] = ACTIONS(4201), - [anon_sym_DOLLARfor] = ACTIONS(4201), - [anon_sym_for] = ACTIONS(4201), - [anon_sym_POUND] = ACTIONS(4201), - [anon_sym_asm] = ACTIONS(4201), - [anon_sym_AT_LBRACK] = ACTIONS(4201), - [sym___double_quote] = ACTIONS(4201), - [sym___single_quote] = ACTIONS(4201), - [sym___c_double_quote] = ACTIONS(4201), - [sym___c_single_quote] = ACTIONS(4201), - [sym___r_double_quote] = ACTIONS(4201), - [sym___r_single_quote] = ACTIONS(4201), + [ts_builtin_sym_end] = ACTIONS(4186), + [sym_identifier] = ACTIONS(4188), + [anon_sym_LF] = ACTIONS(4188), + [anon_sym_CR] = ACTIONS(4188), + [anon_sym_CR_LF] = ACTIONS(4188), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4188), + [anon_sym_LBRACE] = ACTIONS(4188), + [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_AT] = ACTIONS(4188), + [anon_sym_shared] = ACTIONS(4188), + [anon_sym_map_LBRACK] = ACTIONS(4188), + [anon_sym_chan] = ACTIONS(4188), + [anon_sym_thread] = ACTIONS(4188), + [anon_sym_atomic] = ACTIONS(4188), + [anon_sym_assert] = ACTIONS(4188), + [anon_sym_defer] = ACTIONS(4188), + [anon_sym_goto] = ACTIONS(4188), + [anon_sym_break] = ACTIONS(4188), + [anon_sym_continue] = ACTIONS(4188), + [anon_sym_return] = ACTIONS(4188), + [anon_sym_DOLLARfor] = ACTIONS(4188), + [anon_sym_for] = ACTIONS(4188), + [anon_sym_POUND] = ACTIONS(4188), + [anon_sym_asm] = ACTIONS(4188), + [anon_sym_AT_LBRACK] = ACTIONS(4188), + [sym___double_quote] = ACTIONS(4188), + [sym___single_quote] = ACTIONS(4188), + [sym___c_double_quote] = ACTIONS(4188), + [sym___c_single_quote] = ACTIONS(4188), + [sym___r_double_quote] = ACTIONS(4188), + [sym___r_single_quote] = ACTIONS(4188), }, [1563] = { - [ts_builtin_sym_end] = ACTIONS(4203), - [sym_identifier] = ACTIONS(4205), - [anon_sym_LF] = ACTIONS(4205), - [anon_sym_CR] = ACTIONS(4205), - [anon_sym_CR_LF] = ACTIONS(4205), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4205), - [anon_sym_LBRACE] = ACTIONS(4205), - [anon_sym_const] = ACTIONS(4205), - [anon_sym_LPAREN] = ACTIONS(4205), - [anon_sym___global] = ACTIONS(4205), - [anon_sym_type] = ACTIONS(4205), - [anon_sym_fn] = ACTIONS(4205), - [anon_sym_PLUS] = ACTIONS(4205), - [anon_sym_DASH] = ACTIONS(4205), - [anon_sym_STAR] = ACTIONS(4205), - [anon_sym_struct] = ACTIONS(4205), - [anon_sym_union] = ACTIONS(4205), - [anon_sym_pub] = ACTIONS(4205), - [anon_sym_mut] = ACTIONS(4205), - [anon_sym_enum] = ACTIONS(4205), - [anon_sym_interface] = ACTIONS(4205), - [anon_sym_QMARK] = ACTIONS(4205), - [anon_sym_BANG] = ACTIONS(4205), - [anon_sym_go] = ACTIONS(4205), - [anon_sym_spawn] = ACTIONS(4205), - [anon_sym_json_DOTdecode] = ACTIONS(4205), - [anon_sym_LBRACK2] = ACTIONS(4205), - [anon_sym_TILDE] = ACTIONS(4205), - [anon_sym_CARET] = ACTIONS(4205), - [anon_sym_AMP] = ACTIONS(4205), - [anon_sym_LT_DASH] = ACTIONS(4205), - [sym_none] = ACTIONS(4205), - [sym_true] = ACTIONS(4205), - [sym_false] = ACTIONS(4205), - [sym_nil] = ACTIONS(4205), - [anon_sym_if] = ACTIONS(4205), - [anon_sym_DOLLARif] = ACTIONS(4205), - [anon_sym_match] = ACTIONS(4205), - [anon_sym_select] = ACTIONS(4205), - [anon_sym_lock] = ACTIONS(4205), - [anon_sym_rlock] = ACTIONS(4205), - [anon_sym_unsafe] = ACTIONS(4205), - [anon_sym_sql] = ACTIONS(4205), - [sym_int_literal] = ACTIONS(4205), - [sym_float_literal] = ACTIONS(4205), - [sym_rune_literal] = ACTIONS(4205), - [anon_sym_AT] = ACTIONS(4205), - [anon_sym_shared] = ACTIONS(4205), - [anon_sym_map_LBRACK] = ACTIONS(4205), - [anon_sym_chan] = ACTIONS(4205), - [anon_sym_thread] = ACTIONS(4205), - [anon_sym_atomic] = ACTIONS(4205), - [anon_sym_assert] = ACTIONS(4205), - [anon_sym_defer] = ACTIONS(4205), - [anon_sym_goto] = ACTIONS(4205), - [anon_sym_break] = ACTIONS(4205), - [anon_sym_continue] = ACTIONS(4205), - [anon_sym_return] = ACTIONS(4205), - [anon_sym_DOLLARfor] = ACTIONS(4205), - [anon_sym_for] = ACTIONS(4205), - [anon_sym_POUND] = ACTIONS(4205), - [anon_sym_asm] = ACTIONS(4205), - [anon_sym_AT_LBRACK] = ACTIONS(4205), - [sym___double_quote] = ACTIONS(4205), - [sym___single_quote] = ACTIONS(4205), - [sym___c_double_quote] = ACTIONS(4205), - [sym___c_single_quote] = ACTIONS(4205), - [sym___r_double_quote] = ACTIONS(4205), - [sym___r_single_quote] = ACTIONS(4205), + [ts_builtin_sym_end] = ACTIONS(4190), + [sym_identifier] = ACTIONS(4192), + [anon_sym_LF] = ACTIONS(4192), + [anon_sym_CR] = ACTIONS(4192), + [anon_sym_CR_LF] = ACTIONS(4192), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4192), + [anon_sym_LBRACE] = ACTIONS(4192), + [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_AT] = ACTIONS(4192), + [anon_sym_shared] = ACTIONS(4192), + [anon_sym_map_LBRACK] = ACTIONS(4192), + [anon_sym_chan] = ACTIONS(4192), + [anon_sym_thread] = ACTIONS(4192), + [anon_sym_atomic] = ACTIONS(4192), + [anon_sym_assert] = ACTIONS(4192), + [anon_sym_defer] = ACTIONS(4192), + [anon_sym_goto] = ACTIONS(4192), + [anon_sym_break] = ACTIONS(4192), + [anon_sym_continue] = ACTIONS(4192), + [anon_sym_return] = ACTIONS(4192), + [anon_sym_DOLLARfor] = ACTIONS(4192), + [anon_sym_for] = ACTIONS(4192), + [anon_sym_POUND] = ACTIONS(4192), + [anon_sym_asm] = ACTIONS(4192), + [anon_sym_AT_LBRACK] = ACTIONS(4192), + [sym___double_quote] = ACTIONS(4192), + [sym___single_quote] = ACTIONS(4192), + [sym___c_double_quote] = ACTIONS(4192), + [sym___c_single_quote] = ACTIONS(4192), + [sym___r_double_quote] = ACTIONS(4192), + [sym___r_single_quote] = ACTIONS(4192), }, [1564] = { - [sym_import_declaration] = STATE(1564), - [aux_sym_import_list_repeat1] = STATE(1564), - [ts_builtin_sym_end] = ACTIONS(4207), - [sym_identifier] = ACTIONS(4209), - [sym_comment] = ACTIONS(3), - [anon_sym_import] = ACTIONS(4211), - [anon_sym_DOT] = ACTIONS(4209), - [anon_sym_LBRACE] = ACTIONS(4207), - [anon_sym_const] = ACTIONS(4209), - [anon_sym_LPAREN] = ACTIONS(4207), - [anon_sym___global] = ACTIONS(4209), - [anon_sym_type] = ACTIONS(4209), - [anon_sym_fn] = ACTIONS(4209), - [anon_sym_PLUS] = ACTIONS(4207), - [anon_sym_DASH] = ACTIONS(4207), - [anon_sym_STAR] = ACTIONS(4207), - [anon_sym_struct] = ACTIONS(4209), - [anon_sym_union] = ACTIONS(4209), - [anon_sym_pub] = ACTIONS(4209), - [anon_sym_mut] = ACTIONS(4209), - [anon_sym_enum] = ACTIONS(4209), - [anon_sym_interface] = ACTIONS(4209), - [anon_sym_QMARK] = ACTIONS(4207), - [anon_sym_BANG] = ACTIONS(4207), - [anon_sym_go] = ACTIONS(4209), - [anon_sym_spawn] = ACTIONS(4209), - [anon_sym_json_DOTdecode] = ACTIONS(4207), - [anon_sym_LBRACK2] = ACTIONS(4207), - [anon_sym_TILDE] = ACTIONS(4207), - [anon_sym_CARET] = ACTIONS(4207), - [anon_sym_AMP] = ACTIONS(4207), - [anon_sym_LT_DASH] = ACTIONS(4207), - [sym_none] = ACTIONS(4209), - [sym_true] = ACTIONS(4209), - [sym_false] = ACTIONS(4209), - [sym_nil] = ACTIONS(4209), - [anon_sym_if] = ACTIONS(4209), - [anon_sym_DOLLARif] = ACTIONS(4209), - [anon_sym_match] = ACTIONS(4209), - [anon_sym_select] = ACTIONS(4209), - [anon_sym_lock] = ACTIONS(4209), - [anon_sym_rlock] = ACTIONS(4209), - [anon_sym_unsafe] = ACTIONS(4209), - [anon_sym_sql] = ACTIONS(4209), - [sym_int_literal] = ACTIONS(4209), - [sym_float_literal] = ACTIONS(4207), - [sym_rune_literal] = ACTIONS(4207), - [anon_sym_AT] = ACTIONS(4209), - [anon_sym_shared] = ACTIONS(4209), - [anon_sym_map_LBRACK] = ACTIONS(4207), - [anon_sym_chan] = ACTIONS(4209), - [anon_sym_thread] = ACTIONS(4209), - [anon_sym_atomic] = ACTIONS(4209), - [anon_sym_assert] = ACTIONS(4209), - [anon_sym_defer] = ACTIONS(4209), - [anon_sym_goto] = ACTIONS(4209), - [anon_sym_break] = ACTIONS(4209), - [anon_sym_continue] = ACTIONS(4209), - [anon_sym_return] = ACTIONS(4209), - [anon_sym_DOLLARfor] = ACTIONS(4209), - [anon_sym_for] = ACTIONS(4209), - [anon_sym_POUND] = ACTIONS(4209), - [anon_sym_asm] = ACTIONS(4209), - [anon_sym_AT_LBRACK] = ACTIONS(4207), - [sym___double_quote] = ACTIONS(4207), - [sym___single_quote] = ACTIONS(4207), - [sym___c_double_quote] = ACTIONS(4207), - [sym___c_single_quote] = ACTIONS(4207), - [sym___r_double_quote] = ACTIONS(4207), - [sym___r_single_quote] = ACTIONS(4207), + [ts_builtin_sym_end] = ACTIONS(4194), + [sym_identifier] = ACTIONS(4196), + [anon_sym_LF] = ACTIONS(4196), + [anon_sym_CR] = ACTIONS(4196), + [anon_sym_CR_LF] = ACTIONS(4196), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_LBRACE] = ACTIONS(4196), + [anon_sym_const] = ACTIONS(4196), + [anon_sym_LPAREN] = ACTIONS(4196), + [anon_sym___global] = ACTIONS(4196), + [anon_sym_type] = ACTIONS(4196), + [anon_sym_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_AT] = ACTIONS(4196), + [anon_sym_shared] = ACTIONS(4196), + [anon_sym_map_LBRACK] = ACTIONS(4196), + [anon_sym_chan] = ACTIONS(4196), + [anon_sym_thread] = ACTIONS(4196), + [anon_sym_atomic] = ACTIONS(4196), + [anon_sym_assert] = ACTIONS(4196), + [anon_sym_defer] = ACTIONS(4196), + [anon_sym_goto] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_DOLLARfor] = ACTIONS(4196), + [anon_sym_for] = ACTIONS(4196), + [anon_sym_POUND] = ACTIONS(4196), + [anon_sym_asm] = ACTIONS(4196), + [anon_sym_AT_LBRACK] = ACTIONS(4196), + [sym___double_quote] = ACTIONS(4196), + [sym___single_quote] = ACTIONS(4196), + [sym___c_double_quote] = ACTIONS(4196), + [sym___c_single_quote] = ACTIONS(4196), + [sym___r_double_quote] = ACTIONS(4196), + [sym___r_single_quote] = ACTIONS(4196), }, [1565] = { - [ts_builtin_sym_end] = ACTIONS(4214), - [sym_identifier] = ACTIONS(4216), - [anon_sym_LF] = ACTIONS(4216), - [anon_sym_CR] = ACTIONS(4216), - [anon_sym_CR_LF] = ACTIONS(4216), - [sym_comment] = ACTIONS(487), - [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_AT] = ACTIONS(4216), - [anon_sym_shared] = ACTIONS(4216), - [anon_sym_map_LBRACK] = ACTIONS(4216), - [anon_sym_chan] = ACTIONS(4216), - [anon_sym_thread] = ACTIONS(4216), - [anon_sym_atomic] = ACTIONS(4216), - [anon_sym_assert] = ACTIONS(4216), - [anon_sym_defer] = ACTIONS(4216), - [anon_sym_goto] = ACTIONS(4216), - [anon_sym_break] = ACTIONS(4216), - [anon_sym_continue] = ACTIONS(4216), - [anon_sym_return] = ACTIONS(4216), - [anon_sym_DOLLARfor] = ACTIONS(4216), - [anon_sym_for] = ACTIONS(4216), - [anon_sym_POUND] = ACTIONS(4216), - [anon_sym_asm] = ACTIONS(4216), - [anon_sym_AT_LBRACK] = ACTIONS(4216), - [sym___double_quote] = ACTIONS(4216), - [sym___single_quote] = ACTIONS(4216), - [sym___c_double_quote] = ACTIONS(4216), - [sym___c_single_quote] = ACTIONS(4216), - [sym___r_double_quote] = ACTIONS(4216), - [sym___r_single_quote] = ACTIONS(4216), + [ts_builtin_sym_end] = ACTIONS(4198), + [sym_identifier] = ACTIONS(4200), + [anon_sym_LF] = ACTIONS(4200), + [anon_sym_CR] = ACTIONS(4200), + [anon_sym_CR_LF] = ACTIONS(4200), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4200), + [anon_sym_LBRACE] = ACTIONS(4200), + [anon_sym_const] = ACTIONS(4200), + [anon_sym_LPAREN] = ACTIONS(4200), + [anon_sym___global] = ACTIONS(4200), + [anon_sym_type] = ACTIONS(4200), + [anon_sym_fn] = ACTIONS(4200), + [anon_sym_PLUS] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4200), + [anon_sym_STAR] = ACTIONS(4200), + [anon_sym_struct] = ACTIONS(4200), + [anon_sym_union] = ACTIONS(4200), + [anon_sym_pub] = ACTIONS(4200), + [anon_sym_mut] = ACTIONS(4200), + [anon_sym_enum] = ACTIONS(4200), + [anon_sym_interface] = ACTIONS(4200), + [anon_sym_QMARK] = ACTIONS(4200), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_go] = ACTIONS(4200), + [anon_sym_spawn] = ACTIONS(4200), + [anon_sym_json_DOTdecode] = ACTIONS(4200), + [anon_sym_LBRACK2] = ACTIONS(4200), + [anon_sym_TILDE] = ACTIONS(4200), + [anon_sym_CARET] = ACTIONS(4200), + [anon_sym_AMP] = ACTIONS(4200), + [anon_sym_LT_DASH] = ACTIONS(4200), + [sym_none] = ACTIONS(4200), + [sym_true] = ACTIONS(4200), + [sym_false] = ACTIONS(4200), + [sym_nil] = ACTIONS(4200), + [anon_sym_if] = ACTIONS(4200), + [anon_sym_DOLLARif] = ACTIONS(4200), + [anon_sym_match] = ACTIONS(4200), + [anon_sym_select] = ACTIONS(4200), + [anon_sym_lock] = ACTIONS(4200), + [anon_sym_rlock] = ACTIONS(4200), + [anon_sym_unsafe] = ACTIONS(4200), + [anon_sym_sql] = ACTIONS(4200), + [sym_int_literal] = ACTIONS(4200), + [sym_float_literal] = ACTIONS(4200), + [sym_rune_literal] = ACTIONS(4200), + [anon_sym_AT] = ACTIONS(4200), + [anon_sym_shared] = ACTIONS(4200), + [anon_sym_map_LBRACK] = ACTIONS(4200), + [anon_sym_chan] = ACTIONS(4200), + [anon_sym_thread] = ACTIONS(4200), + [anon_sym_atomic] = ACTIONS(4200), + [anon_sym_assert] = ACTIONS(4200), + [anon_sym_defer] = ACTIONS(4200), + [anon_sym_goto] = ACTIONS(4200), + [anon_sym_break] = ACTIONS(4200), + [anon_sym_continue] = ACTIONS(4200), + [anon_sym_return] = ACTIONS(4200), + [anon_sym_DOLLARfor] = ACTIONS(4200), + [anon_sym_for] = ACTIONS(4200), + [anon_sym_POUND] = ACTIONS(4200), + [anon_sym_asm] = ACTIONS(4200), + [anon_sym_AT_LBRACK] = ACTIONS(4200), + [sym___double_quote] = ACTIONS(4200), + [sym___single_quote] = ACTIONS(4200), + [sym___c_double_quote] = ACTIONS(4200), + [sym___c_single_quote] = ACTIONS(4200), + [sym___r_double_quote] = ACTIONS(4200), + [sym___r_single_quote] = ACTIONS(4200), }, [1566] = { - [ts_builtin_sym_end] = ACTIONS(4218), - [sym_identifier] = ACTIONS(4220), - [anon_sym_LF] = ACTIONS(4220), - [anon_sym_CR] = ACTIONS(4220), - [anon_sym_CR_LF] = ACTIONS(4220), - [sym_comment] = ACTIONS(487), - [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_AT] = ACTIONS(4220), - [anon_sym_shared] = ACTIONS(4220), - [anon_sym_map_LBRACK] = ACTIONS(4220), - [anon_sym_chan] = ACTIONS(4220), - [anon_sym_thread] = ACTIONS(4220), - [anon_sym_atomic] = ACTIONS(4220), - [anon_sym_assert] = ACTIONS(4220), - [anon_sym_defer] = ACTIONS(4220), - [anon_sym_goto] = ACTIONS(4220), - [anon_sym_break] = ACTIONS(4220), - [anon_sym_continue] = ACTIONS(4220), - [anon_sym_return] = ACTIONS(4220), - [anon_sym_DOLLARfor] = ACTIONS(4220), - [anon_sym_for] = ACTIONS(4220), - [anon_sym_POUND] = ACTIONS(4220), - [anon_sym_asm] = ACTIONS(4220), - [anon_sym_AT_LBRACK] = ACTIONS(4220), - [sym___double_quote] = ACTIONS(4220), - [sym___single_quote] = ACTIONS(4220), - [sym___c_double_quote] = ACTIONS(4220), - [sym___c_single_quote] = ACTIONS(4220), - [sym___r_double_quote] = ACTIONS(4220), - [sym___r_single_quote] = ACTIONS(4220), + [ts_builtin_sym_end] = ACTIONS(4202), + [sym_identifier] = ACTIONS(4204), + [anon_sym_LF] = ACTIONS(4206), + [anon_sym_CR] = ACTIONS(4206), + [anon_sym_CR_LF] = ACTIONS(4206), + [sym_comment] = ACTIONS(493), + [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_AT] = ACTIONS(4204), + [anon_sym_shared] = ACTIONS(4204), + [anon_sym_map_LBRACK] = ACTIONS(4204), + [anon_sym_chan] = ACTIONS(4204), + [anon_sym_thread] = ACTIONS(4204), + [anon_sym_atomic] = ACTIONS(4204), + [anon_sym_assert] = ACTIONS(4204), + [anon_sym_defer] = ACTIONS(4204), + [anon_sym_goto] = ACTIONS(4204), + [anon_sym_break] = ACTIONS(4204), + [anon_sym_continue] = ACTIONS(4204), + [anon_sym_return] = ACTIONS(4204), + [anon_sym_DOLLARfor] = ACTIONS(4204), + [anon_sym_for] = ACTIONS(4204), + [anon_sym_POUND] = ACTIONS(4204), + [anon_sym_asm] = ACTIONS(4204), + [anon_sym_AT_LBRACK] = ACTIONS(4204), + [sym___double_quote] = ACTIONS(4204), + [sym___single_quote] = ACTIONS(4204), + [sym___c_double_quote] = ACTIONS(4204), + [sym___c_single_quote] = ACTIONS(4204), + [sym___r_double_quote] = ACTIONS(4204), + [sym___r_single_quote] = ACTIONS(4204), }, [1567] = { - [ts_builtin_sym_end] = ACTIONS(4222), - [sym_identifier] = ACTIONS(4224), - [anon_sym_LF] = ACTIONS(4224), - [anon_sym_CR] = ACTIONS(4224), - [anon_sym_CR_LF] = ACTIONS(4224), - [sym_comment] = ACTIONS(487), - [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_AT] = ACTIONS(4224), - [anon_sym_shared] = ACTIONS(4224), - [anon_sym_map_LBRACK] = ACTIONS(4224), - [anon_sym_chan] = ACTIONS(4224), - [anon_sym_thread] = ACTIONS(4224), - [anon_sym_atomic] = ACTIONS(4224), - [anon_sym_assert] = ACTIONS(4224), - [anon_sym_defer] = ACTIONS(4224), - [anon_sym_goto] = ACTIONS(4224), - [anon_sym_break] = ACTIONS(4224), - [anon_sym_continue] = ACTIONS(4224), - [anon_sym_return] = ACTIONS(4224), - [anon_sym_DOLLARfor] = ACTIONS(4224), - [anon_sym_for] = ACTIONS(4224), - [anon_sym_POUND] = ACTIONS(4224), - [anon_sym_asm] = ACTIONS(4224), - [anon_sym_AT_LBRACK] = ACTIONS(4224), - [sym___double_quote] = ACTIONS(4224), - [sym___single_quote] = ACTIONS(4224), - [sym___c_double_quote] = ACTIONS(4224), - [sym___c_single_quote] = ACTIONS(4224), - [sym___r_double_quote] = ACTIONS(4224), - [sym___r_single_quote] = ACTIONS(4224), + [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), + [sym_comment] = ACTIONS(493), + [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_AT] = ACTIONS(4210), + [anon_sym_shared] = ACTIONS(4210), + [anon_sym_map_LBRACK] = ACTIONS(4210), + [anon_sym_chan] = ACTIONS(4210), + [anon_sym_thread] = ACTIONS(4210), + [anon_sym_atomic] = ACTIONS(4210), + [anon_sym_assert] = ACTIONS(4210), + [anon_sym_defer] = ACTIONS(4210), + [anon_sym_goto] = ACTIONS(4210), + [anon_sym_break] = ACTIONS(4210), + [anon_sym_continue] = ACTIONS(4210), + [anon_sym_return] = ACTIONS(4210), + [anon_sym_DOLLARfor] = ACTIONS(4210), + [anon_sym_for] = ACTIONS(4210), + [anon_sym_POUND] = ACTIONS(4210), + [anon_sym_asm] = ACTIONS(4210), + [anon_sym_AT_LBRACK] = ACTIONS(4210), + [sym___double_quote] = ACTIONS(4210), + [sym___single_quote] = ACTIONS(4210), + [sym___c_double_quote] = ACTIONS(4210), + [sym___c_single_quote] = ACTIONS(4210), + [sym___r_double_quote] = ACTIONS(4210), + [sym___r_single_quote] = ACTIONS(4210), }, [1568] = { - [ts_builtin_sym_end] = ACTIONS(2728), - [sym_identifier] = ACTIONS(2730), - [anon_sym_LF] = ACTIONS(2730), - [anon_sym_CR] = ACTIONS(2730), - [anon_sym_CR_LF] = ACTIONS(2730), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_const] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym___global] = ACTIONS(2730), - [anon_sym_type] = ACTIONS(2730), - [anon_sym_fn] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2730), - [anon_sym_struct] = ACTIONS(2730), - [anon_sym_union] = ACTIONS(2730), - [anon_sym_pub] = ACTIONS(2730), - [anon_sym_mut] = ACTIONS(2730), - [anon_sym_enum] = ACTIONS(2730), - [anon_sym_interface] = ACTIONS(2730), - [anon_sym_QMARK] = ACTIONS(2730), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_go] = ACTIONS(2730), - [anon_sym_spawn] = ACTIONS(2730), - [anon_sym_json_DOTdecode] = ACTIONS(2730), - [anon_sym_LBRACK2] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2730), - [anon_sym_CARET] = ACTIONS(2730), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_LT_DASH] = ACTIONS(2730), - [sym_none] = ACTIONS(2730), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_nil] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_DOLLARif] = ACTIONS(2730), - [anon_sym_match] = ACTIONS(2730), - [anon_sym_select] = ACTIONS(2730), - [anon_sym_lock] = ACTIONS(2730), - [anon_sym_rlock] = ACTIONS(2730), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2730), - [sym_int_literal] = ACTIONS(2730), - [sym_float_literal] = ACTIONS(2730), - [sym_rune_literal] = ACTIONS(2730), - [anon_sym_AT] = ACTIONS(2730), - [anon_sym_shared] = ACTIONS(2730), - [anon_sym_map_LBRACK] = ACTIONS(2730), - [anon_sym_chan] = ACTIONS(2730), - [anon_sym_thread] = ACTIONS(2730), - [anon_sym_atomic] = ACTIONS(2730), - [anon_sym_assert] = ACTIONS(2730), - [anon_sym_defer] = ACTIONS(2730), - [anon_sym_goto] = ACTIONS(2730), - [anon_sym_break] = ACTIONS(2730), - [anon_sym_continue] = ACTIONS(2730), - [anon_sym_return] = ACTIONS(2730), - [anon_sym_DOLLARfor] = ACTIONS(2730), - [anon_sym_for] = ACTIONS(2730), - [anon_sym_POUND] = ACTIONS(2730), - [anon_sym_asm] = ACTIONS(2730), - [anon_sym_AT_LBRACK] = ACTIONS(2730), - [sym___double_quote] = ACTIONS(2730), - [sym___single_quote] = ACTIONS(2730), - [sym___c_double_quote] = ACTIONS(2730), - [sym___c_single_quote] = ACTIONS(2730), - [sym___r_double_quote] = ACTIONS(2730), - [sym___r_single_quote] = ACTIONS(2730), + [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), + [sym_comment] = ACTIONS(493), + [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_AT] = ACTIONS(4214), + [anon_sym_shared] = ACTIONS(4214), + [anon_sym_map_LBRACK] = ACTIONS(4214), + [anon_sym_chan] = ACTIONS(4214), + [anon_sym_thread] = ACTIONS(4214), + [anon_sym_atomic] = ACTIONS(4214), + [anon_sym_assert] = ACTIONS(4214), + [anon_sym_defer] = ACTIONS(4214), + [anon_sym_goto] = ACTIONS(4214), + [anon_sym_break] = ACTIONS(4214), + [anon_sym_continue] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(4214), + [anon_sym_DOLLARfor] = ACTIONS(4214), + [anon_sym_for] = ACTIONS(4214), + [anon_sym_POUND] = ACTIONS(4214), + [anon_sym_asm] = ACTIONS(4214), + [anon_sym_AT_LBRACK] = ACTIONS(4214), + [sym___double_quote] = ACTIONS(4214), + [sym___single_quote] = ACTIONS(4214), + [sym___c_double_quote] = ACTIONS(4214), + [sym___c_single_quote] = ACTIONS(4214), + [sym___r_double_quote] = ACTIONS(4214), + [sym___r_single_quote] = ACTIONS(4214), }, [1569] = { - [ts_builtin_sym_end] = ACTIONS(4226), - [sym_identifier] = ACTIONS(4228), - [anon_sym_LF] = ACTIONS(4228), - [anon_sym_CR] = ACTIONS(4228), - [anon_sym_CR_LF] = ACTIONS(4228), - [sym_comment] = ACTIONS(487), - [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_AT] = ACTIONS(4228), - [anon_sym_shared] = ACTIONS(4228), - [anon_sym_map_LBRACK] = ACTIONS(4228), - [anon_sym_chan] = ACTIONS(4228), - [anon_sym_thread] = ACTIONS(4228), - [anon_sym_atomic] = ACTIONS(4228), - [anon_sym_assert] = ACTIONS(4228), - [anon_sym_defer] = ACTIONS(4228), - [anon_sym_goto] = ACTIONS(4228), - [anon_sym_break] = ACTIONS(4228), - [anon_sym_continue] = ACTIONS(4228), - [anon_sym_return] = ACTIONS(4228), - [anon_sym_DOLLARfor] = ACTIONS(4228), - [anon_sym_for] = ACTIONS(4228), - [anon_sym_POUND] = ACTIONS(4228), - [anon_sym_asm] = ACTIONS(4228), - [anon_sym_AT_LBRACK] = ACTIONS(4228), - [sym___double_quote] = ACTIONS(4228), - [sym___single_quote] = ACTIONS(4228), - [sym___c_double_quote] = ACTIONS(4228), - [sym___c_single_quote] = ACTIONS(4228), - [sym___r_double_quote] = ACTIONS(4228), - [sym___r_single_quote] = ACTIONS(4228), + [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), + [sym_comment] = ACTIONS(493), + [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_AT] = ACTIONS(4218), + [anon_sym_shared] = ACTIONS(4218), + [anon_sym_map_LBRACK] = ACTIONS(4218), + [anon_sym_chan] = ACTIONS(4218), + [anon_sym_thread] = ACTIONS(4218), + [anon_sym_atomic] = ACTIONS(4218), + [anon_sym_assert] = ACTIONS(4218), + [anon_sym_defer] = ACTIONS(4218), + [anon_sym_goto] = ACTIONS(4218), + [anon_sym_break] = ACTIONS(4218), + [anon_sym_continue] = ACTIONS(4218), + [anon_sym_return] = ACTIONS(4218), + [anon_sym_DOLLARfor] = ACTIONS(4218), + [anon_sym_for] = ACTIONS(4218), + [anon_sym_POUND] = ACTIONS(4218), + [anon_sym_asm] = ACTIONS(4218), + [anon_sym_AT_LBRACK] = ACTIONS(4218), + [sym___double_quote] = ACTIONS(4218), + [sym___single_quote] = ACTIONS(4218), + [sym___c_double_quote] = ACTIONS(4218), + [sym___c_single_quote] = ACTIONS(4218), + [sym___r_double_quote] = ACTIONS(4218), + [sym___r_single_quote] = ACTIONS(4218), }, [1570] = { - [ts_builtin_sym_end] = ACTIONS(4230), - [sym_identifier] = ACTIONS(4232), - [anon_sym_LF] = ACTIONS(4232), - [anon_sym_CR] = ACTIONS(4232), - [anon_sym_CR_LF] = ACTIONS(4232), - [sym_comment] = ACTIONS(487), - [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_AT] = ACTIONS(4232), - [anon_sym_shared] = ACTIONS(4232), - [anon_sym_map_LBRACK] = ACTIONS(4232), - [anon_sym_chan] = ACTIONS(4232), - [anon_sym_thread] = ACTIONS(4232), - [anon_sym_atomic] = ACTIONS(4232), - [anon_sym_assert] = ACTIONS(4232), - [anon_sym_defer] = ACTIONS(4232), - [anon_sym_goto] = ACTIONS(4232), - [anon_sym_break] = ACTIONS(4232), - [anon_sym_continue] = ACTIONS(4232), - [anon_sym_return] = ACTIONS(4232), - [anon_sym_DOLLARfor] = ACTIONS(4232), - [anon_sym_for] = ACTIONS(4232), - [anon_sym_POUND] = ACTIONS(4232), - [anon_sym_asm] = ACTIONS(4232), - [anon_sym_AT_LBRACK] = ACTIONS(4232), - [sym___double_quote] = ACTIONS(4232), - [sym___single_quote] = ACTIONS(4232), - [sym___c_double_quote] = ACTIONS(4232), - [sym___c_single_quote] = ACTIONS(4232), - [sym___r_double_quote] = ACTIONS(4232), - [sym___r_single_quote] = ACTIONS(4232), + [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), + [sym_comment] = ACTIONS(493), + [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_AT] = ACTIONS(4222), + [anon_sym_shared] = ACTIONS(4222), + [anon_sym_map_LBRACK] = ACTIONS(4222), + [anon_sym_chan] = ACTIONS(4222), + [anon_sym_thread] = ACTIONS(4222), + [anon_sym_atomic] = ACTIONS(4222), + [anon_sym_assert] = ACTIONS(4222), + [anon_sym_defer] = ACTIONS(4222), + [anon_sym_goto] = ACTIONS(4222), + [anon_sym_break] = ACTIONS(4222), + [anon_sym_continue] = ACTIONS(4222), + [anon_sym_return] = ACTIONS(4222), + [anon_sym_DOLLARfor] = ACTIONS(4222), + [anon_sym_for] = ACTIONS(4222), + [anon_sym_POUND] = ACTIONS(4222), + [anon_sym_asm] = ACTIONS(4222), + [anon_sym_AT_LBRACK] = ACTIONS(4222), + [sym___double_quote] = ACTIONS(4222), + [sym___single_quote] = ACTIONS(4222), + [sym___c_double_quote] = ACTIONS(4222), + [sym___c_single_quote] = ACTIONS(4222), + [sym___r_double_quote] = ACTIONS(4222), + [sym___r_single_quote] = ACTIONS(4222), }, [1571] = { - [sym_import_declaration] = STATE(1564), - [aux_sym_import_list_repeat1] = STATE(1564), - [ts_builtin_sym_end] = ACTIONS(4234), - [sym_identifier] = ACTIONS(4236), - [sym_comment] = ACTIONS(3), - [anon_sym_import] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4236), + [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), + [sym_comment] = ACTIONS(493), + [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_AT] = ACTIONS(4226), + [anon_sym_shared] = ACTIONS(4226), + [anon_sym_map_LBRACK] = ACTIONS(4226), + [anon_sym_chan] = ACTIONS(4226), + [anon_sym_thread] = ACTIONS(4226), + [anon_sym_atomic] = ACTIONS(4226), + [anon_sym_assert] = ACTIONS(4226), + [anon_sym_defer] = ACTIONS(4226), + [anon_sym_goto] = ACTIONS(4226), + [anon_sym_break] = ACTIONS(4226), + [anon_sym_continue] = ACTIONS(4226), + [anon_sym_return] = ACTIONS(4226), + [anon_sym_DOLLARfor] = ACTIONS(4226), + [anon_sym_for] = ACTIONS(4226), + [anon_sym_POUND] = ACTIONS(4226), + [anon_sym_asm] = ACTIONS(4226), + [anon_sym_AT_LBRACK] = ACTIONS(4226), + [sym___double_quote] = ACTIONS(4226), + [sym___single_quote] = ACTIONS(4226), + [sym___c_double_quote] = ACTIONS(4226), + [sym___c_single_quote] = ACTIONS(4226), + [sym___r_double_quote] = ACTIONS(4226), + [sym___r_single_quote] = ACTIONS(4226), + }, + [1572] = { + [ts_builtin_sym_end] = ACTIONS(4228), + [sym_identifier] = ACTIONS(4230), + [anon_sym_LF] = ACTIONS(4230), + [anon_sym_CR] = ACTIONS(4230), + [anon_sym_CR_LF] = ACTIONS(4230), + [sym_comment] = ACTIONS(493), + [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_AT] = ACTIONS(4230), + [anon_sym_shared] = ACTIONS(4230), + [anon_sym_map_LBRACK] = ACTIONS(4230), + [anon_sym_chan] = ACTIONS(4230), + [anon_sym_thread] = ACTIONS(4230), + [anon_sym_atomic] = ACTIONS(4230), + [anon_sym_assert] = ACTIONS(4230), + [anon_sym_defer] = ACTIONS(4230), + [anon_sym_goto] = ACTIONS(4230), + [anon_sym_break] = ACTIONS(4230), + [anon_sym_continue] = ACTIONS(4230), + [anon_sym_return] = ACTIONS(4230), + [anon_sym_DOLLARfor] = ACTIONS(4230), + [anon_sym_for] = ACTIONS(4230), + [anon_sym_POUND] = ACTIONS(4230), + [anon_sym_asm] = ACTIONS(4230), + [anon_sym_AT_LBRACK] = ACTIONS(4230), + [sym___double_quote] = ACTIONS(4230), + [sym___single_quote] = ACTIONS(4230), + [sym___c_double_quote] = ACTIONS(4230), + [sym___c_single_quote] = ACTIONS(4230), + [sym___r_double_quote] = ACTIONS(4230), + [sym___r_single_quote] = ACTIONS(4230), + }, + [1573] = { + [ts_builtin_sym_end] = ACTIONS(4232), + [sym_identifier] = ACTIONS(4234), + [anon_sym_LF] = ACTIONS(4234), + [anon_sym_CR] = ACTIONS(4234), + [anon_sym_CR_LF] = ACTIONS(4234), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4234), [anon_sym_LBRACE] = ACTIONS(4234), - [anon_sym_const] = ACTIONS(4236), + [anon_sym_const] = ACTIONS(4234), [anon_sym_LPAREN] = ACTIONS(4234), - [anon_sym___global] = ACTIONS(4236), - [anon_sym_type] = ACTIONS(4236), - [anon_sym_fn] = ACTIONS(4236), + [anon_sym___global] = ACTIONS(4234), + [anon_sym_type] = ACTIONS(4234), + [anon_sym_fn] = ACTIONS(4234), [anon_sym_PLUS] = ACTIONS(4234), [anon_sym_DASH] = ACTIONS(4234), [anon_sym_STAR] = ACTIONS(4234), - [anon_sym_struct] = ACTIONS(4236), - [anon_sym_union] = ACTIONS(4236), - [anon_sym_pub] = ACTIONS(4236), - [anon_sym_mut] = ACTIONS(4236), - [anon_sym_enum] = ACTIONS(4236), - [anon_sym_interface] = ACTIONS(4236), + [anon_sym_struct] = ACTIONS(4234), + [anon_sym_union] = ACTIONS(4234), + [anon_sym_pub] = ACTIONS(4234), + [anon_sym_mut] = ACTIONS(4234), + [anon_sym_enum] = ACTIONS(4234), + [anon_sym_interface] = ACTIONS(4234), [anon_sym_QMARK] = ACTIONS(4234), [anon_sym_BANG] = ACTIONS(4234), - [anon_sym_go] = ACTIONS(4236), - [anon_sym_spawn] = ACTIONS(4236), + [anon_sym_go] = ACTIONS(4234), + [anon_sym_spawn] = ACTIONS(4234), [anon_sym_json_DOTdecode] = ACTIONS(4234), [anon_sym_LBRACK2] = ACTIONS(4234), [anon_sym_TILDE] = ACTIONS(4234), [anon_sym_CARET] = ACTIONS(4234), [anon_sym_AMP] = ACTIONS(4234), [anon_sym_LT_DASH] = ACTIONS(4234), - [sym_none] = ACTIONS(4236), - [sym_true] = ACTIONS(4236), - [sym_false] = ACTIONS(4236), - [sym_nil] = ACTIONS(4236), - [anon_sym_if] = ACTIONS(4236), - [anon_sym_DOLLARif] = ACTIONS(4236), - [anon_sym_match] = ACTIONS(4236), - [anon_sym_select] = ACTIONS(4236), - [anon_sym_lock] = ACTIONS(4236), - [anon_sym_rlock] = ACTIONS(4236), - [anon_sym_unsafe] = ACTIONS(4236), - [anon_sym_sql] = ACTIONS(4236), - [sym_int_literal] = ACTIONS(4236), + [sym_none] = ACTIONS(4234), + [sym_true] = ACTIONS(4234), + [sym_false] = ACTIONS(4234), + [sym_nil] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4234), + [anon_sym_DOLLARif] = ACTIONS(4234), + [anon_sym_match] = ACTIONS(4234), + [anon_sym_select] = ACTIONS(4234), + [anon_sym_lock] = ACTIONS(4234), + [anon_sym_rlock] = ACTIONS(4234), + [anon_sym_unsafe] = ACTIONS(4234), + [anon_sym_sql] = ACTIONS(4234), + [sym_int_literal] = ACTIONS(4234), [sym_float_literal] = ACTIONS(4234), [sym_rune_literal] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4236), - [anon_sym_shared] = ACTIONS(4236), + [anon_sym_AT] = ACTIONS(4234), + [anon_sym_shared] = ACTIONS(4234), [anon_sym_map_LBRACK] = ACTIONS(4234), - [anon_sym_chan] = ACTIONS(4236), - [anon_sym_thread] = ACTIONS(4236), - [anon_sym_atomic] = ACTIONS(4236), - [anon_sym_assert] = ACTIONS(4236), - [anon_sym_defer] = ACTIONS(4236), - [anon_sym_goto] = ACTIONS(4236), - [anon_sym_break] = ACTIONS(4236), - [anon_sym_continue] = ACTIONS(4236), - [anon_sym_return] = ACTIONS(4236), - [anon_sym_DOLLARfor] = ACTIONS(4236), - [anon_sym_for] = ACTIONS(4236), - [anon_sym_POUND] = ACTIONS(4236), - [anon_sym_asm] = ACTIONS(4236), + [anon_sym_chan] = ACTIONS(4234), + [anon_sym_thread] = ACTIONS(4234), + [anon_sym_atomic] = ACTIONS(4234), + [anon_sym_assert] = ACTIONS(4234), + [anon_sym_defer] = ACTIONS(4234), + [anon_sym_goto] = ACTIONS(4234), + [anon_sym_break] = ACTIONS(4234), + [anon_sym_continue] = ACTIONS(4234), + [anon_sym_return] = ACTIONS(4234), + [anon_sym_DOLLARfor] = ACTIONS(4234), + [anon_sym_for] = ACTIONS(4234), + [anon_sym_POUND] = ACTIONS(4234), + [anon_sym_asm] = ACTIONS(4234), [anon_sym_AT_LBRACK] = ACTIONS(4234), [sym___double_quote] = ACTIONS(4234), [sym___single_quote] = ACTIONS(4234), @@ -187428,1459 +187910,1464 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4234), [sym___r_single_quote] = ACTIONS(4234), }, - [1572] = { - [ts_builtin_sym_end] = ACTIONS(4238), - [sym_identifier] = ACTIONS(4240), - [anon_sym_LF] = ACTIONS(4240), - [anon_sym_CR] = ACTIONS(4240), - [anon_sym_CR_LF] = ACTIONS(4240), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4240), - [anon_sym_LBRACE] = ACTIONS(4240), - [anon_sym_const] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(4240), - [anon_sym___global] = ACTIONS(4240), - [anon_sym_type] = ACTIONS(4240), - [anon_sym_fn] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4240), - [anon_sym_DASH] = ACTIONS(4240), - [anon_sym_STAR] = ACTIONS(4240), - [anon_sym_struct] = ACTIONS(4240), - [anon_sym_union] = ACTIONS(4240), - [anon_sym_pub] = ACTIONS(4240), - [anon_sym_mut] = ACTIONS(4240), - [anon_sym_enum] = ACTIONS(4240), - [anon_sym_interface] = ACTIONS(4240), - [anon_sym_QMARK] = ACTIONS(4240), - [anon_sym_BANG] = ACTIONS(4240), - [anon_sym_go] = ACTIONS(4240), - [anon_sym_spawn] = ACTIONS(4240), - [anon_sym_json_DOTdecode] = ACTIONS(4240), - [anon_sym_LBRACK2] = ACTIONS(4240), - [anon_sym_TILDE] = ACTIONS(4240), - [anon_sym_CARET] = ACTIONS(4240), - [anon_sym_AMP] = ACTIONS(4240), - [anon_sym_LT_DASH] = ACTIONS(4240), - [sym_none] = ACTIONS(4240), - [sym_true] = ACTIONS(4240), - [sym_false] = ACTIONS(4240), - [sym_nil] = ACTIONS(4240), - [anon_sym_if] = ACTIONS(4240), - [anon_sym_DOLLARif] = ACTIONS(4240), - [anon_sym_match] = ACTIONS(4240), - [anon_sym_select] = ACTIONS(4240), - [anon_sym_lock] = ACTIONS(4240), - [anon_sym_rlock] = ACTIONS(4240), - [anon_sym_unsafe] = ACTIONS(4240), - [anon_sym_sql] = ACTIONS(4240), - [sym_int_literal] = ACTIONS(4240), - [sym_float_literal] = ACTIONS(4240), - [sym_rune_literal] = ACTIONS(4240), - [anon_sym_AT] = ACTIONS(4240), - [anon_sym_shared] = ACTIONS(4240), - [anon_sym_map_LBRACK] = ACTIONS(4240), - [anon_sym_chan] = ACTIONS(4240), - [anon_sym_thread] = ACTIONS(4240), - [anon_sym_atomic] = ACTIONS(4240), - [anon_sym_assert] = ACTIONS(4240), - [anon_sym_defer] = ACTIONS(4240), - [anon_sym_goto] = ACTIONS(4240), - [anon_sym_break] = ACTIONS(4240), - [anon_sym_continue] = ACTIONS(4240), - [anon_sym_return] = ACTIONS(4240), - [anon_sym_DOLLARfor] = ACTIONS(4240), - [anon_sym_for] = ACTIONS(4240), - [anon_sym_POUND] = ACTIONS(4240), - [anon_sym_asm] = ACTIONS(4240), - [anon_sym_AT_LBRACK] = ACTIONS(4240), - [sym___double_quote] = ACTIONS(4240), - [sym___single_quote] = ACTIONS(4240), - [sym___c_double_quote] = ACTIONS(4240), - [sym___c_single_quote] = ACTIONS(4240), - [sym___r_double_quote] = ACTIONS(4240), - [sym___r_single_quote] = ACTIONS(4240), - }, - [1573] = { - [ts_builtin_sym_end] = ACTIONS(4242), - [sym_identifier] = ACTIONS(4244), - [anon_sym_LF] = ACTIONS(4244), - [anon_sym_CR] = ACTIONS(4244), - [anon_sym_CR_LF] = ACTIONS(4244), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_LBRACE] = ACTIONS(4244), - [anon_sym_const] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym___global] = ACTIONS(4244), - [anon_sym_type] = ACTIONS(4244), - [anon_sym_fn] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4244), - [anon_sym_struct] = ACTIONS(4244), - [anon_sym_union] = ACTIONS(4244), - [anon_sym_pub] = ACTIONS(4244), - [anon_sym_mut] = ACTIONS(4244), - [anon_sym_enum] = ACTIONS(4244), - [anon_sym_interface] = ACTIONS(4244), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_go] = ACTIONS(4244), - [anon_sym_spawn] = ACTIONS(4244), - [anon_sym_json_DOTdecode] = ACTIONS(4244), - [anon_sym_LBRACK2] = ACTIONS(4244), - [anon_sym_TILDE] = ACTIONS(4244), - [anon_sym_CARET] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_DASH] = ACTIONS(4244), - [sym_none] = ACTIONS(4244), - [sym_true] = ACTIONS(4244), - [sym_false] = ACTIONS(4244), - [sym_nil] = ACTIONS(4244), - [anon_sym_if] = ACTIONS(4244), - [anon_sym_DOLLARif] = ACTIONS(4244), - [anon_sym_match] = ACTIONS(4244), - [anon_sym_select] = ACTIONS(4244), - [anon_sym_lock] = ACTIONS(4244), - [anon_sym_rlock] = ACTIONS(4244), - [anon_sym_unsafe] = ACTIONS(4244), - [anon_sym_sql] = ACTIONS(4244), - [sym_int_literal] = ACTIONS(4244), - [sym_float_literal] = ACTIONS(4244), - [sym_rune_literal] = ACTIONS(4244), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_shared] = ACTIONS(4244), - [anon_sym_map_LBRACK] = ACTIONS(4244), - [anon_sym_chan] = ACTIONS(4244), - [anon_sym_thread] = ACTIONS(4244), - [anon_sym_atomic] = ACTIONS(4244), - [anon_sym_assert] = ACTIONS(4244), - [anon_sym_defer] = ACTIONS(4244), - [anon_sym_goto] = ACTIONS(4244), - [anon_sym_break] = ACTIONS(4244), - [anon_sym_continue] = ACTIONS(4244), - [anon_sym_return] = ACTIONS(4244), - [anon_sym_DOLLARfor] = ACTIONS(4244), - [anon_sym_for] = ACTIONS(4244), - [anon_sym_POUND] = ACTIONS(4244), - [anon_sym_asm] = ACTIONS(4244), - [anon_sym_AT_LBRACK] = ACTIONS(4244), - [sym___double_quote] = ACTIONS(4244), - [sym___single_quote] = ACTIONS(4244), - [sym___c_double_quote] = ACTIONS(4244), - [sym___c_single_quote] = ACTIONS(4244), - [sym___r_double_quote] = ACTIONS(4244), - [sym___r_single_quote] = ACTIONS(4244), - }, [1574] = { - [ts_builtin_sym_end] = ACTIONS(4246), - [sym_identifier] = ACTIONS(4248), - [anon_sym_LF] = ACTIONS(4248), - [anon_sym_CR] = ACTIONS(4248), - [anon_sym_CR_LF] = ACTIONS(4248), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(4248), - [anon_sym_const] = ACTIONS(4248), - [anon_sym_LPAREN] = ACTIONS(4248), - [anon_sym___global] = ACTIONS(4248), - [anon_sym_type] = ACTIONS(4248), - [anon_sym_fn] = ACTIONS(4248), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4248), - [anon_sym_struct] = ACTIONS(4248), - [anon_sym_union] = ACTIONS(4248), - [anon_sym_pub] = ACTIONS(4248), - [anon_sym_mut] = ACTIONS(4248), - [anon_sym_enum] = ACTIONS(4248), - [anon_sym_interface] = ACTIONS(4248), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_go] = ACTIONS(4248), - [anon_sym_spawn] = ACTIONS(4248), - [anon_sym_json_DOTdecode] = ACTIONS(4248), - [anon_sym_LBRACK2] = ACTIONS(4248), - [anon_sym_TILDE] = ACTIONS(4248), - [anon_sym_CARET] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_DASH] = ACTIONS(4248), - [sym_none] = ACTIONS(4248), - [sym_true] = ACTIONS(4248), - [sym_false] = ACTIONS(4248), - [sym_nil] = ACTIONS(4248), - [anon_sym_if] = ACTIONS(4248), - [anon_sym_DOLLARif] = ACTIONS(4248), - [anon_sym_match] = ACTIONS(4248), - [anon_sym_select] = ACTIONS(4248), - [anon_sym_lock] = ACTIONS(4248), - [anon_sym_rlock] = ACTIONS(4248), - [anon_sym_unsafe] = ACTIONS(4248), - [anon_sym_sql] = ACTIONS(4248), - [sym_int_literal] = ACTIONS(4248), - [sym_float_literal] = ACTIONS(4248), - [sym_rune_literal] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4248), - [anon_sym_shared] = ACTIONS(4248), - [anon_sym_map_LBRACK] = ACTIONS(4248), - [anon_sym_chan] = ACTIONS(4248), - [anon_sym_thread] = ACTIONS(4248), - [anon_sym_atomic] = ACTIONS(4248), - [anon_sym_assert] = ACTIONS(4248), - [anon_sym_defer] = ACTIONS(4248), - [anon_sym_goto] = ACTIONS(4248), - [anon_sym_break] = ACTIONS(4248), - [anon_sym_continue] = ACTIONS(4248), - [anon_sym_return] = ACTIONS(4248), - [anon_sym_DOLLARfor] = ACTIONS(4248), - [anon_sym_for] = ACTIONS(4248), - [anon_sym_POUND] = ACTIONS(4248), - [anon_sym_asm] = ACTIONS(4248), - [anon_sym_AT_LBRACK] = ACTIONS(4248), - [sym___double_quote] = ACTIONS(4248), - [sym___single_quote] = ACTIONS(4248), - [sym___c_double_quote] = ACTIONS(4248), - [sym___c_single_quote] = ACTIONS(4248), - [sym___r_double_quote] = ACTIONS(4248), - [sym___r_single_quote] = ACTIONS(4248), + [ts_builtin_sym_end] = ACTIONS(4236), + [sym_identifier] = ACTIONS(4238), + [anon_sym_LF] = ACTIONS(4238), + [anon_sym_CR] = ACTIONS(4238), + [anon_sym_CR_LF] = ACTIONS(4238), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4238), + [anon_sym_LBRACE] = ACTIONS(4238), + [anon_sym_const] = ACTIONS(4238), + [anon_sym_LPAREN] = ACTIONS(4238), + [anon_sym___global] = ACTIONS(4238), + [anon_sym_type] = ACTIONS(4238), + [anon_sym_fn] = ACTIONS(4238), + [anon_sym_PLUS] = ACTIONS(4238), + [anon_sym_DASH] = ACTIONS(4238), + [anon_sym_STAR] = ACTIONS(4238), + [anon_sym_struct] = ACTIONS(4238), + [anon_sym_union] = ACTIONS(4238), + [anon_sym_pub] = ACTIONS(4238), + [anon_sym_mut] = ACTIONS(4238), + [anon_sym_enum] = ACTIONS(4238), + [anon_sym_interface] = ACTIONS(4238), + [anon_sym_QMARK] = ACTIONS(4238), + [anon_sym_BANG] = ACTIONS(4238), + [anon_sym_go] = ACTIONS(4238), + [anon_sym_spawn] = ACTIONS(4238), + [anon_sym_json_DOTdecode] = ACTIONS(4238), + [anon_sym_LBRACK2] = ACTIONS(4238), + [anon_sym_TILDE] = ACTIONS(4238), + [anon_sym_CARET] = ACTIONS(4238), + [anon_sym_AMP] = ACTIONS(4238), + [anon_sym_LT_DASH] = ACTIONS(4238), + [sym_none] = ACTIONS(4238), + [sym_true] = ACTIONS(4238), + [sym_false] = ACTIONS(4238), + [sym_nil] = ACTIONS(4238), + [anon_sym_if] = ACTIONS(4238), + [anon_sym_DOLLARif] = ACTIONS(4238), + [anon_sym_match] = ACTIONS(4238), + [anon_sym_select] = ACTIONS(4238), + [anon_sym_lock] = ACTIONS(4238), + [anon_sym_rlock] = ACTIONS(4238), + [anon_sym_unsafe] = ACTIONS(4238), + [anon_sym_sql] = ACTIONS(4238), + [sym_int_literal] = ACTIONS(4238), + [sym_float_literal] = ACTIONS(4238), + [sym_rune_literal] = ACTIONS(4238), + [anon_sym_AT] = ACTIONS(4238), + [anon_sym_shared] = ACTIONS(4238), + [anon_sym_map_LBRACK] = ACTIONS(4238), + [anon_sym_chan] = ACTIONS(4238), + [anon_sym_thread] = ACTIONS(4238), + [anon_sym_atomic] = ACTIONS(4238), + [anon_sym_assert] = ACTIONS(4238), + [anon_sym_defer] = ACTIONS(4238), + [anon_sym_goto] = ACTIONS(4238), + [anon_sym_break] = ACTIONS(4238), + [anon_sym_continue] = ACTIONS(4238), + [anon_sym_return] = ACTIONS(4238), + [anon_sym_DOLLARfor] = ACTIONS(4238), + [anon_sym_for] = ACTIONS(4238), + [anon_sym_POUND] = ACTIONS(4238), + [anon_sym_asm] = ACTIONS(4238), + [anon_sym_AT_LBRACK] = ACTIONS(4238), + [sym___double_quote] = ACTIONS(4238), + [sym___single_quote] = ACTIONS(4238), + [sym___c_double_quote] = ACTIONS(4238), + [sym___c_single_quote] = ACTIONS(4238), + [sym___r_double_quote] = ACTIONS(4238), + [sym___r_single_quote] = ACTIONS(4238), }, [1575] = { - [ts_builtin_sym_end] = ACTIONS(4250), - [sym_identifier] = ACTIONS(4252), - [anon_sym_LF] = ACTIONS(4252), - [anon_sym_CR] = ACTIONS(4252), - [anon_sym_CR_LF] = ACTIONS(4252), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_LBRACE] = ACTIONS(4252), - [anon_sym_const] = ACTIONS(4252), - [anon_sym_LPAREN] = ACTIONS(4252), - [anon_sym___global] = ACTIONS(4252), - [anon_sym_type] = ACTIONS(4252), - [anon_sym_fn] = ACTIONS(4252), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4252), - [anon_sym_struct] = ACTIONS(4252), - [anon_sym_union] = ACTIONS(4252), - [anon_sym_pub] = ACTIONS(4252), - [anon_sym_mut] = ACTIONS(4252), - [anon_sym_enum] = ACTIONS(4252), - [anon_sym_interface] = ACTIONS(4252), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_go] = ACTIONS(4252), - [anon_sym_spawn] = ACTIONS(4252), - [anon_sym_json_DOTdecode] = ACTIONS(4252), - [anon_sym_LBRACK2] = ACTIONS(4252), - [anon_sym_TILDE] = ACTIONS(4252), - [anon_sym_CARET] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_DASH] = ACTIONS(4252), - [sym_none] = ACTIONS(4252), - [sym_true] = ACTIONS(4252), - [sym_false] = ACTIONS(4252), - [sym_nil] = ACTIONS(4252), - [anon_sym_if] = ACTIONS(4252), - [anon_sym_DOLLARif] = ACTIONS(4252), - [anon_sym_match] = ACTIONS(4252), - [anon_sym_select] = ACTIONS(4252), - [anon_sym_lock] = ACTIONS(4252), - [anon_sym_rlock] = ACTIONS(4252), - [anon_sym_unsafe] = ACTIONS(4252), - [anon_sym_sql] = ACTIONS(4252), - [sym_int_literal] = ACTIONS(4252), - [sym_float_literal] = ACTIONS(4252), - [sym_rune_literal] = ACTIONS(4252), - [anon_sym_AT] = ACTIONS(4252), - [anon_sym_shared] = ACTIONS(4252), - [anon_sym_map_LBRACK] = ACTIONS(4252), - [anon_sym_chan] = ACTIONS(4252), - [anon_sym_thread] = ACTIONS(4252), - [anon_sym_atomic] = ACTIONS(4252), - [anon_sym_assert] = ACTIONS(4252), - [anon_sym_defer] = ACTIONS(4252), - [anon_sym_goto] = ACTIONS(4252), - [anon_sym_break] = ACTIONS(4252), - [anon_sym_continue] = ACTIONS(4252), - [anon_sym_return] = ACTIONS(4252), - [anon_sym_DOLLARfor] = ACTIONS(4252), - [anon_sym_for] = ACTIONS(4252), - [anon_sym_POUND] = ACTIONS(4252), - [anon_sym_asm] = ACTIONS(4252), - [anon_sym_AT_LBRACK] = ACTIONS(4252), - [sym___double_quote] = ACTIONS(4252), - [sym___single_quote] = ACTIONS(4252), - [sym___c_double_quote] = ACTIONS(4252), - [sym___c_single_quote] = ACTIONS(4252), - [sym___r_double_quote] = ACTIONS(4252), - [sym___r_single_quote] = ACTIONS(4252), + [ts_builtin_sym_end] = ACTIONS(4240), + [sym_identifier] = ACTIONS(4242), + [anon_sym_LF] = ACTIONS(4242), + [anon_sym_CR] = ACTIONS(4242), + [anon_sym_CR_LF] = ACTIONS(4242), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4242), + [anon_sym_LBRACE] = ACTIONS(4242), + [anon_sym_const] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4242), + [anon_sym___global] = ACTIONS(4242), + [anon_sym_type] = ACTIONS(4242), + [anon_sym_fn] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4242), + [anon_sym_STAR] = ACTIONS(4242), + [anon_sym_struct] = ACTIONS(4242), + [anon_sym_union] = ACTIONS(4242), + [anon_sym_pub] = ACTIONS(4242), + [anon_sym_mut] = ACTIONS(4242), + [anon_sym_enum] = ACTIONS(4242), + [anon_sym_interface] = ACTIONS(4242), + [anon_sym_QMARK] = ACTIONS(4242), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_go] = ACTIONS(4242), + [anon_sym_spawn] = ACTIONS(4242), + [anon_sym_json_DOTdecode] = ACTIONS(4242), + [anon_sym_LBRACK2] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_CARET] = ACTIONS(4242), + [anon_sym_AMP] = ACTIONS(4242), + [anon_sym_LT_DASH] = ACTIONS(4242), + [sym_none] = ACTIONS(4242), + [sym_true] = ACTIONS(4242), + [sym_false] = ACTIONS(4242), + [sym_nil] = ACTIONS(4242), + [anon_sym_if] = ACTIONS(4242), + [anon_sym_DOLLARif] = ACTIONS(4242), + [anon_sym_match] = ACTIONS(4242), + [anon_sym_select] = ACTIONS(4242), + [anon_sym_lock] = ACTIONS(4242), + [anon_sym_rlock] = ACTIONS(4242), + [anon_sym_unsafe] = ACTIONS(4242), + [anon_sym_sql] = ACTIONS(4242), + [sym_int_literal] = ACTIONS(4242), + [sym_float_literal] = ACTIONS(4242), + [sym_rune_literal] = ACTIONS(4242), + [anon_sym_AT] = ACTIONS(4242), + [anon_sym_shared] = ACTIONS(4242), + [anon_sym_map_LBRACK] = ACTIONS(4242), + [anon_sym_chan] = ACTIONS(4242), + [anon_sym_thread] = ACTIONS(4242), + [anon_sym_atomic] = ACTIONS(4242), + [anon_sym_assert] = ACTIONS(4242), + [anon_sym_defer] = ACTIONS(4242), + [anon_sym_goto] = ACTIONS(4242), + [anon_sym_break] = ACTIONS(4242), + [anon_sym_continue] = ACTIONS(4242), + [anon_sym_return] = ACTIONS(4242), + [anon_sym_DOLLARfor] = ACTIONS(4242), + [anon_sym_for] = ACTIONS(4242), + [anon_sym_POUND] = ACTIONS(4242), + [anon_sym_asm] = ACTIONS(4242), + [anon_sym_AT_LBRACK] = ACTIONS(4242), + [sym___double_quote] = ACTIONS(4242), + [sym___single_quote] = ACTIONS(4242), + [sym___c_double_quote] = ACTIONS(4242), + [sym___c_single_quote] = ACTIONS(4242), + [sym___r_double_quote] = ACTIONS(4242), + [sym___r_single_quote] = ACTIONS(4242), }, [1576] = { - [ts_builtin_sym_end] = ACTIONS(4254), - [sym_identifier] = ACTIONS(4256), - [anon_sym_LF] = ACTIONS(4256), - [anon_sym_CR] = ACTIONS(4256), - [anon_sym_CR_LF] = ACTIONS(4256), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(4256), - [anon_sym_const] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym___global] = ACTIONS(4256), - [anon_sym_type] = ACTIONS(4256), - [anon_sym_fn] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [anon_sym_struct] = ACTIONS(4256), - [anon_sym_union] = ACTIONS(4256), - [anon_sym_pub] = ACTIONS(4256), - [anon_sym_mut] = ACTIONS(4256), - [anon_sym_enum] = ACTIONS(4256), - [anon_sym_interface] = ACTIONS(4256), - [anon_sym_QMARK] = ACTIONS(4256), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_go] = ACTIONS(4256), - [anon_sym_spawn] = ACTIONS(4256), - [anon_sym_json_DOTdecode] = ACTIONS(4256), - [anon_sym_LBRACK2] = ACTIONS(4256), - [anon_sym_TILDE] = ACTIONS(4256), - [anon_sym_CARET] = ACTIONS(4256), - [anon_sym_AMP] = ACTIONS(4256), - [anon_sym_LT_DASH] = ACTIONS(4256), - [sym_none] = ACTIONS(4256), - [sym_true] = ACTIONS(4256), - [sym_false] = ACTIONS(4256), - [sym_nil] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_DOLLARif] = ACTIONS(4256), - [anon_sym_match] = ACTIONS(4256), - [anon_sym_select] = ACTIONS(4256), - [anon_sym_lock] = ACTIONS(4256), - [anon_sym_rlock] = ACTIONS(4256), - [anon_sym_unsafe] = ACTIONS(4256), - [anon_sym_sql] = ACTIONS(4256), - [sym_int_literal] = ACTIONS(4256), - [sym_float_literal] = ACTIONS(4256), - [sym_rune_literal] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_shared] = ACTIONS(4256), - [anon_sym_map_LBRACK] = ACTIONS(4256), - [anon_sym_chan] = ACTIONS(4256), - [anon_sym_thread] = ACTIONS(4256), - [anon_sym_atomic] = ACTIONS(4256), - [anon_sym_assert] = ACTIONS(4256), - [anon_sym_defer] = ACTIONS(4256), - [anon_sym_goto] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_DOLLARfor] = ACTIONS(4256), - [anon_sym_for] = ACTIONS(4256), - [anon_sym_POUND] = ACTIONS(4256), - [anon_sym_asm] = ACTIONS(4256), - [anon_sym_AT_LBRACK] = ACTIONS(4256), - [sym___double_quote] = ACTIONS(4256), - [sym___single_quote] = ACTIONS(4256), - [sym___c_double_quote] = ACTIONS(4256), - [sym___c_single_quote] = ACTIONS(4256), - [sym___r_double_quote] = ACTIONS(4256), - [sym___r_single_quote] = ACTIONS(4256), + [ts_builtin_sym_end] = ACTIONS(4244), + [sym_identifier] = ACTIONS(4246), + [anon_sym_LF] = ACTIONS(4246), + [anon_sym_CR] = ACTIONS(4246), + [anon_sym_CR_LF] = ACTIONS(4246), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(4246), + [anon_sym_LBRACE] = ACTIONS(4246), + [anon_sym_const] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym___global] = ACTIONS(4246), + [anon_sym_type] = ACTIONS(4246), + [anon_sym_fn] = ACTIONS(4246), + [anon_sym_PLUS] = ACTIONS(4246), + [anon_sym_DASH] = ACTIONS(4246), + [anon_sym_STAR] = ACTIONS(4246), + [anon_sym_struct] = ACTIONS(4246), + [anon_sym_union] = ACTIONS(4246), + [anon_sym_pub] = ACTIONS(4246), + [anon_sym_mut] = ACTIONS(4246), + [anon_sym_enum] = ACTIONS(4246), + [anon_sym_interface] = ACTIONS(4246), + [anon_sym_QMARK] = ACTIONS(4246), + [anon_sym_BANG] = ACTIONS(4246), + [anon_sym_go] = ACTIONS(4246), + [anon_sym_spawn] = ACTIONS(4246), + [anon_sym_json_DOTdecode] = ACTIONS(4246), + [anon_sym_LBRACK2] = ACTIONS(4246), + [anon_sym_TILDE] = ACTIONS(4246), + [anon_sym_CARET] = ACTIONS(4246), + [anon_sym_AMP] = ACTIONS(4246), + [anon_sym_LT_DASH] = ACTIONS(4246), + [sym_none] = ACTIONS(4246), + [sym_true] = ACTIONS(4246), + [sym_false] = ACTIONS(4246), + [sym_nil] = ACTIONS(4246), + [anon_sym_if] = ACTIONS(4246), + [anon_sym_DOLLARif] = ACTIONS(4246), + [anon_sym_match] = ACTIONS(4246), + [anon_sym_select] = ACTIONS(4246), + [anon_sym_lock] = ACTIONS(4246), + [anon_sym_rlock] = ACTIONS(4246), + [anon_sym_unsafe] = ACTIONS(4246), + [anon_sym_sql] = ACTIONS(4246), + [sym_int_literal] = ACTIONS(4246), + [sym_float_literal] = ACTIONS(4246), + [sym_rune_literal] = ACTIONS(4246), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_shared] = ACTIONS(4246), + [anon_sym_map_LBRACK] = ACTIONS(4246), + [anon_sym_chan] = ACTIONS(4246), + [anon_sym_thread] = ACTIONS(4246), + [anon_sym_atomic] = ACTIONS(4246), + [anon_sym_assert] = ACTIONS(4246), + [anon_sym_defer] = ACTIONS(4246), + [anon_sym_goto] = ACTIONS(4246), + [anon_sym_break] = ACTIONS(4246), + [anon_sym_continue] = ACTIONS(4246), + [anon_sym_return] = ACTIONS(4246), + [anon_sym_DOLLARfor] = ACTIONS(4246), + [anon_sym_for] = ACTIONS(4246), + [anon_sym_POUND] = ACTIONS(4246), + [anon_sym_asm] = ACTIONS(4246), + [anon_sym_AT_LBRACK] = ACTIONS(4246), + [sym___double_quote] = ACTIONS(4246), + [sym___single_quote] = ACTIONS(4246), + [sym___c_double_quote] = ACTIONS(4246), + [sym___c_single_quote] = ACTIONS(4246), + [sym___r_double_quote] = ACTIONS(4246), + [sym___r_single_quote] = ACTIONS(4246), }, [1577] = { - [ts_builtin_sym_end] = ACTIONS(4258), - [sym_identifier] = ACTIONS(4260), - [anon_sym_LF] = ACTIONS(4260), - [anon_sym_CR] = ACTIONS(4260), - [anon_sym_CR_LF] = ACTIONS(4260), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4260), - [anon_sym_LBRACE] = ACTIONS(4260), - [anon_sym_const] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym___global] = ACTIONS(4260), - [anon_sym_type] = ACTIONS(4260), - [anon_sym_fn] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4260), - [anon_sym_DASH] = ACTIONS(4260), - [anon_sym_STAR] = ACTIONS(4260), - [anon_sym_struct] = ACTIONS(4260), - [anon_sym_union] = ACTIONS(4260), - [anon_sym_pub] = ACTIONS(4260), - [anon_sym_mut] = ACTIONS(4260), - [anon_sym_enum] = ACTIONS(4260), - [anon_sym_interface] = ACTIONS(4260), - [anon_sym_QMARK] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4260), - [anon_sym_go] = ACTIONS(4260), - [anon_sym_spawn] = ACTIONS(4260), - [anon_sym_json_DOTdecode] = ACTIONS(4260), - [anon_sym_LBRACK2] = ACTIONS(4260), - [anon_sym_TILDE] = ACTIONS(4260), - [anon_sym_CARET] = ACTIONS(4260), - [anon_sym_AMP] = ACTIONS(4260), - [anon_sym_LT_DASH] = ACTIONS(4260), - [sym_none] = ACTIONS(4260), - [sym_true] = ACTIONS(4260), - [sym_false] = ACTIONS(4260), - [sym_nil] = ACTIONS(4260), - [anon_sym_if] = ACTIONS(4260), - [anon_sym_DOLLARif] = ACTIONS(4260), - [anon_sym_match] = ACTIONS(4260), - [anon_sym_select] = ACTIONS(4260), - [anon_sym_lock] = ACTIONS(4260), - [anon_sym_rlock] = ACTIONS(4260), - [anon_sym_unsafe] = ACTIONS(4260), - [anon_sym_sql] = ACTIONS(4260), - [sym_int_literal] = ACTIONS(4260), - [sym_float_literal] = ACTIONS(4260), - [sym_rune_literal] = ACTIONS(4260), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_shared] = ACTIONS(4260), - [anon_sym_map_LBRACK] = ACTIONS(4260), - [anon_sym_chan] = ACTIONS(4260), - [anon_sym_thread] = ACTIONS(4260), - [anon_sym_atomic] = ACTIONS(4260), - [anon_sym_assert] = ACTIONS(4260), - [anon_sym_defer] = ACTIONS(4260), - [anon_sym_goto] = ACTIONS(4260), - [anon_sym_break] = ACTIONS(4260), - [anon_sym_continue] = ACTIONS(4260), - [anon_sym_return] = ACTIONS(4260), - [anon_sym_DOLLARfor] = ACTIONS(4260), - [anon_sym_for] = ACTIONS(4260), - [anon_sym_POUND] = ACTIONS(4260), - [anon_sym_asm] = ACTIONS(4260), - [anon_sym_AT_LBRACK] = ACTIONS(4260), - [sym___double_quote] = ACTIONS(4260), - [sym___single_quote] = ACTIONS(4260), - [sym___c_double_quote] = ACTIONS(4260), - [sym___c_single_quote] = ACTIONS(4260), - [sym___r_double_quote] = ACTIONS(4260), - [sym___r_single_quote] = ACTIONS(4260), + [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), + [sym_comment] = ACTIONS(493), + [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_AT] = 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), + [sym___double_quote] = ACTIONS(4250), + [sym___single_quote] = ACTIONS(4250), + [sym___c_double_quote] = ACTIONS(4250), + [sym___c_single_quote] = ACTIONS(4250), + [sym___r_double_quote] = ACTIONS(4250), + [sym___r_single_quote] = ACTIONS(4250), }, [1578] = { - [ts_builtin_sym_end] = ACTIONS(4262), - [sym_identifier] = ACTIONS(4264), - [anon_sym_LF] = ACTIONS(4264), - [anon_sym_CR] = ACTIONS(4264), - [anon_sym_CR_LF] = ACTIONS(4264), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_LBRACE] = ACTIONS(4264), - [anon_sym_const] = ACTIONS(4264), - [anon_sym_LPAREN] = ACTIONS(4264), - [anon_sym___global] = ACTIONS(4264), - [anon_sym_type] = ACTIONS(4264), - [anon_sym_fn] = ACTIONS(4264), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4264), - [anon_sym_struct] = ACTIONS(4264), - [anon_sym_union] = ACTIONS(4264), - [anon_sym_pub] = ACTIONS(4264), - [anon_sym_mut] = ACTIONS(4264), - [anon_sym_enum] = ACTIONS(4264), - [anon_sym_interface] = ACTIONS(4264), - [anon_sym_QMARK] = ACTIONS(4264), - [anon_sym_BANG] = ACTIONS(4264), - [anon_sym_go] = ACTIONS(4264), - [anon_sym_spawn] = ACTIONS(4264), - [anon_sym_json_DOTdecode] = ACTIONS(4264), - [anon_sym_LBRACK2] = ACTIONS(4264), - [anon_sym_TILDE] = ACTIONS(4264), - [anon_sym_CARET] = ACTIONS(4264), - [anon_sym_AMP] = ACTIONS(4264), - [anon_sym_LT_DASH] = ACTIONS(4264), - [sym_none] = ACTIONS(4264), - [sym_true] = ACTIONS(4264), - [sym_false] = ACTIONS(4264), - [sym_nil] = ACTIONS(4264), - [anon_sym_if] = ACTIONS(4264), - [anon_sym_DOLLARif] = ACTIONS(4264), - [anon_sym_match] = ACTIONS(4264), - [anon_sym_select] = ACTIONS(4264), - [anon_sym_lock] = ACTIONS(4264), - [anon_sym_rlock] = ACTIONS(4264), - [anon_sym_unsafe] = ACTIONS(4264), - [anon_sym_sql] = ACTIONS(4264), - [sym_int_literal] = ACTIONS(4264), - [sym_float_literal] = ACTIONS(4264), - [sym_rune_literal] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4264), - [anon_sym_shared] = ACTIONS(4264), - [anon_sym_map_LBRACK] = ACTIONS(4264), - [anon_sym_chan] = ACTIONS(4264), - [anon_sym_thread] = ACTIONS(4264), - [anon_sym_atomic] = ACTIONS(4264), - [anon_sym_assert] = ACTIONS(4264), - [anon_sym_defer] = ACTIONS(4264), - [anon_sym_goto] = ACTIONS(4264), - [anon_sym_break] = ACTIONS(4264), - [anon_sym_continue] = ACTIONS(4264), - [anon_sym_return] = ACTIONS(4264), - [anon_sym_DOLLARfor] = ACTIONS(4264), - [anon_sym_for] = ACTIONS(4264), - [anon_sym_POUND] = ACTIONS(4264), - [anon_sym_asm] = ACTIONS(4264), - [anon_sym_AT_LBRACK] = ACTIONS(4264), - [sym___double_quote] = ACTIONS(4264), - [sym___single_quote] = ACTIONS(4264), - [sym___c_double_quote] = ACTIONS(4264), - [sym___c_single_quote] = ACTIONS(4264), - [sym___r_double_quote] = ACTIONS(4264), - [sym___r_single_quote] = ACTIONS(4264), + [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), + [sym_comment] = ACTIONS(493), + [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_AT] = 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), + [sym___double_quote] = ACTIONS(4254), + [sym___single_quote] = ACTIONS(4254), + [sym___c_double_quote] = ACTIONS(4254), + [sym___c_single_quote] = ACTIONS(4254), + [sym___r_double_quote] = ACTIONS(4254), + [sym___r_single_quote] = ACTIONS(4254), }, [1579] = { - [ts_builtin_sym_end] = ACTIONS(4266), - [sym_identifier] = ACTIONS(4268), - [anon_sym_LF] = ACTIONS(4268), - [anon_sym_CR] = ACTIONS(4268), - [anon_sym_CR_LF] = ACTIONS(4268), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(4268), - [anon_sym_const] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym___global] = ACTIONS(4268), - [anon_sym_type] = ACTIONS(4268), - [anon_sym_fn] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [anon_sym_struct] = ACTIONS(4268), - [anon_sym_union] = ACTIONS(4268), - [anon_sym_pub] = ACTIONS(4268), - [anon_sym_mut] = ACTIONS(4268), - [anon_sym_enum] = ACTIONS(4268), - [anon_sym_interface] = ACTIONS(4268), - [anon_sym_QMARK] = ACTIONS(4268), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_go] = ACTIONS(4268), - [anon_sym_spawn] = ACTIONS(4268), - [anon_sym_json_DOTdecode] = ACTIONS(4268), - [anon_sym_LBRACK2] = ACTIONS(4268), - [anon_sym_TILDE] = ACTIONS(4268), - [anon_sym_CARET] = ACTIONS(4268), - [anon_sym_AMP] = ACTIONS(4268), - [anon_sym_LT_DASH] = ACTIONS(4268), - [sym_none] = ACTIONS(4268), - [sym_true] = ACTIONS(4268), - [sym_false] = ACTIONS(4268), - [sym_nil] = ACTIONS(4268), - [anon_sym_if] = ACTIONS(4268), - [anon_sym_DOLLARif] = ACTIONS(4268), - [anon_sym_match] = ACTIONS(4268), - [anon_sym_select] = ACTIONS(4268), - [anon_sym_lock] = ACTIONS(4268), - [anon_sym_rlock] = ACTIONS(4268), - [anon_sym_unsafe] = ACTIONS(4268), - [anon_sym_sql] = ACTIONS(4268), - [sym_int_literal] = ACTIONS(4268), - [sym_float_literal] = ACTIONS(4268), - [sym_rune_literal] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_shared] = ACTIONS(4268), - [anon_sym_map_LBRACK] = ACTIONS(4268), - [anon_sym_chan] = ACTIONS(4268), - [anon_sym_thread] = ACTIONS(4268), - [anon_sym_atomic] = ACTIONS(4268), - [anon_sym_assert] = ACTIONS(4268), - [anon_sym_defer] = ACTIONS(4268), - [anon_sym_goto] = ACTIONS(4268), - [anon_sym_break] = ACTIONS(4268), - [anon_sym_continue] = ACTIONS(4268), - [anon_sym_return] = ACTIONS(4268), - [anon_sym_DOLLARfor] = ACTIONS(4268), - [anon_sym_for] = ACTIONS(4268), - [anon_sym_POUND] = ACTIONS(4268), - [anon_sym_asm] = ACTIONS(4268), - [anon_sym_AT_LBRACK] = ACTIONS(4268), - [sym___double_quote] = ACTIONS(4268), - [sym___single_quote] = ACTIONS(4268), - [sym___c_double_quote] = ACTIONS(4268), - [sym___c_single_quote] = ACTIONS(4268), - [sym___r_double_quote] = ACTIONS(4268), - [sym___r_single_quote] = ACTIONS(4268), + [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), + [sym_comment] = ACTIONS(493), + [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_AT] = 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), + [sym___double_quote] = ACTIONS(4258), + [sym___single_quote] = ACTIONS(4258), + [sym___c_double_quote] = ACTIONS(4258), + [sym___c_single_quote] = ACTIONS(4258), + [sym___r_double_quote] = ACTIONS(4258), + [sym___r_single_quote] = ACTIONS(4258), }, [1580] = { - [ts_builtin_sym_end] = ACTIONS(4270), - [sym_identifier] = ACTIONS(4272), - [anon_sym_LF] = ACTIONS(4272), - [anon_sym_CR] = ACTIONS(4272), - [anon_sym_CR_LF] = ACTIONS(4272), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(4272), - [anon_sym_const] = ACTIONS(4272), - [anon_sym_LPAREN] = ACTIONS(4272), - [anon_sym___global] = ACTIONS(4272), - [anon_sym_type] = ACTIONS(4272), - [anon_sym_fn] = ACTIONS(4272), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [anon_sym_struct] = ACTIONS(4272), - [anon_sym_union] = ACTIONS(4272), - [anon_sym_pub] = ACTIONS(4272), - [anon_sym_mut] = ACTIONS(4272), - [anon_sym_enum] = ACTIONS(4272), - [anon_sym_interface] = ACTIONS(4272), - [anon_sym_QMARK] = ACTIONS(4272), - [anon_sym_BANG] = ACTIONS(4272), - [anon_sym_go] = ACTIONS(4272), - [anon_sym_spawn] = ACTIONS(4272), - [anon_sym_json_DOTdecode] = ACTIONS(4272), - [anon_sym_LBRACK2] = ACTIONS(4272), - [anon_sym_TILDE] = ACTIONS(4272), - [anon_sym_CARET] = ACTIONS(4272), - [anon_sym_AMP] = ACTIONS(4272), - [anon_sym_LT_DASH] = ACTIONS(4272), - [sym_none] = ACTIONS(4272), - [sym_true] = ACTIONS(4272), - [sym_false] = ACTIONS(4272), - [sym_nil] = ACTIONS(4272), - [anon_sym_if] = ACTIONS(4272), - [anon_sym_DOLLARif] = ACTIONS(4272), - [anon_sym_match] = ACTIONS(4272), - [anon_sym_select] = ACTIONS(4272), - [anon_sym_lock] = ACTIONS(4272), - [anon_sym_rlock] = ACTIONS(4272), - [anon_sym_unsafe] = ACTIONS(4272), - [anon_sym_sql] = ACTIONS(4272), - [sym_int_literal] = ACTIONS(4272), - [sym_float_literal] = ACTIONS(4272), - [sym_rune_literal] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4272), - [anon_sym_shared] = ACTIONS(4272), - [anon_sym_map_LBRACK] = ACTIONS(4272), - [anon_sym_chan] = ACTIONS(4272), - [anon_sym_thread] = ACTIONS(4272), - [anon_sym_atomic] = ACTIONS(4272), - [anon_sym_assert] = ACTIONS(4272), - [anon_sym_defer] = ACTIONS(4272), - [anon_sym_goto] = ACTIONS(4272), - [anon_sym_break] = ACTIONS(4272), - [anon_sym_continue] = ACTIONS(4272), - [anon_sym_return] = ACTIONS(4272), - [anon_sym_DOLLARfor] = ACTIONS(4272), - [anon_sym_for] = ACTIONS(4272), - [anon_sym_POUND] = ACTIONS(4272), - [anon_sym_asm] = ACTIONS(4272), - [anon_sym_AT_LBRACK] = ACTIONS(4272), - [sym___double_quote] = ACTIONS(4272), - [sym___single_quote] = ACTIONS(4272), - [sym___c_double_quote] = ACTIONS(4272), - [sym___c_single_quote] = ACTIONS(4272), - [sym___r_double_quote] = ACTIONS(4272), - [sym___r_single_quote] = ACTIONS(4272), + [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), + [sym_comment] = ACTIONS(493), + [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_AT] = 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), + [sym___double_quote] = ACTIONS(4262), + [sym___single_quote] = ACTIONS(4262), + [sym___c_double_quote] = ACTIONS(4262), + [sym___c_single_quote] = ACTIONS(4262), + [sym___r_double_quote] = ACTIONS(4262), + [sym___r_single_quote] = ACTIONS(4262), }, [1581] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(613), - [anon_sym_COMMA] = ACTIONS(583), - [anon_sym_LPAREN] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(583), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(583), - [anon_sym_BANG_EQ] = ACTIONS(583), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LBRACK] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(583), - [anon_sym_AMP_CARET] = ACTIONS(583), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE_PIPE] = ACTIONS(583), - [anon_sym_or] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(583), - [anon_sym_POUND_LBRACK] = ACTIONS(583), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(583), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(583), - [anon_sym_COLON_EQ] = ACTIONS(583), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), + [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), + [sym_comment] = ACTIONS(493), + [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_AT] = 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), + [sym___double_quote] = ACTIONS(4266), + [sym___single_quote] = ACTIONS(4266), + [sym___c_double_quote] = ACTIONS(4266), + [sym___c_single_quote] = ACTIONS(4266), + [sym___r_double_quote] = ACTIONS(4266), + [sym___r_single_quote] = ACTIONS(4266), }, [1582] = { - [sym_reference_expression] = STATE(4574), - [sym_type_reference_expression] = STATE(2635), - [sym_plain_type] = STATE(2746), - [sym__plain_type_without_special] = STATE(2723), - [sym_anon_struct_type] = STATE(2724), - [sym_multi_return_type] = STATE(2723), - [sym_result_type] = STATE(2723), - [sym_option_type] = STATE(2723), - [sym_qualified_type] = STATE(2635), - [sym_fixed_array_type] = STATE(2724), - [sym_array_type] = STATE(2724), - [sym_pointer_type] = STATE(2724), - [sym_wrong_pointer_type] = STATE(2724), - [sym_map_type] = STATE(2724), - [sym_channel_type] = STATE(2724), - [sym_shared_type] = STATE(2724), - [sym_thread_type] = STATE(2724), - [sym_atomic_type] = STATE(2724), - [sym_generic_type] = STATE(2724), - [sym_function_type] = STATE(2724), - [sym_identifier] = ACTIONS(4274), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(587), - [anon_sym_LPAREN] = ACTIONS(4276), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(4278), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(4280), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(587), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(587), - [anon_sym_BANG_EQ] = ACTIONS(587), - [anon_sym_LT_EQ] = ACTIONS(587), - [anon_sym_GT_EQ] = ACTIONS(587), - [anon_sym_DOT_DOT_DOT] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_struct] = ACTIONS(4282), - [anon_sym_PLUS_PLUS] = ACTIONS(587), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(4284), - [anon_sym_BANG] = ACTIONS(4286), - [anon_sym_LBRACK2] = ACTIONS(4288), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_AMP] = ACTIONS(4290), - [anon_sym_LT_LT] = ACTIONS(587), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(587), - [anon_sym_AMP_CARET] = ACTIONS(587), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(587), - [anon_sym_POUND_LBRACK] = ACTIONS(587), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(587), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(587), - [anon_sym_shared] = ACTIONS(4292), - [anon_sym_map_LBRACK] = ACTIONS(4294), - [anon_sym_chan] = ACTIONS(4296), - [anon_sym_thread] = ACTIONS(4298), - [anon_sym_atomic] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(589), + [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), + [sym_comment] = ACTIONS(493), + [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_AT] = 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), + [sym___double_quote] = ACTIONS(4270), + [sym___single_quote] = ACTIONS(4270), + [sym___c_double_quote] = ACTIONS(4270), + [sym___c_single_quote] = ACTIONS(4270), + [sym___r_double_quote] = ACTIONS(4270), + [sym___r_single_quote] = ACTIONS(4270), }, [1583] = { - [sym_reference_expression] = STATE(4574), - [sym_type_reference_expression] = STATE(2635), - [sym_plain_type] = STATE(2734), - [sym__plain_type_without_special] = STATE(2723), - [sym_anon_struct_type] = STATE(2724), - [sym_multi_return_type] = STATE(2723), - [sym_result_type] = STATE(2723), - [sym_option_type] = STATE(2723), - [sym_qualified_type] = STATE(2635), - [sym_fixed_array_type] = STATE(2724), - [sym_array_type] = STATE(2724), - [sym_pointer_type] = STATE(2724), - [sym_wrong_pointer_type] = STATE(2724), - [sym_map_type] = STATE(2724), - [sym_channel_type] = STATE(2724), - [sym_shared_type] = STATE(2724), - [sym_thread_type] = STATE(2724), - [sym_atomic_type] = STATE(2724), - [sym_generic_type] = STATE(2724), - [sym_function_type] = STATE(2724), + [ts_builtin_sym_end] = ACTIONS(4272), [sym_identifier] = ACTIONS(4274), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_as] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_COMMA] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(4276), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_fn] = ACTIONS(4278), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(4280), - [anon_sym_SLASH] = ACTIONS(555), - [anon_sym_PERCENT] = ACTIONS(551), - [anon_sym_LT] = ACTIONS(555), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_EQ_EQ] = ACTIONS(551), - [anon_sym_BANG_EQ] = ACTIONS(551), - [anon_sym_LT_EQ] = ACTIONS(551), - [anon_sym_GT_EQ] = ACTIONS(551), - [anon_sym_DOT_DOT_DOT] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(4282), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_QMARK] = ACTIONS(4284), - [anon_sym_BANG] = ACTIONS(4286), - [anon_sym_LBRACK2] = ACTIONS(4288), - [anon_sym_CARET] = ACTIONS(551), - [anon_sym_AMP] = ACTIONS(4290), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_GT_GT_GT] = ACTIONS(551), - [anon_sym_AMP_CARET] = ACTIONS(551), - [anon_sym_AMP_AMP] = ACTIONS(551), - [anon_sym_PIPE_PIPE] = ACTIONS(551), - [anon_sym_or] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(551), - [anon_sym_POUND_LBRACK] = ACTIONS(551), - [anon_sym_is] = ACTIONS(555), - [anon_sym_BANGis] = ACTIONS(551), - [anon_sym_in] = ACTIONS(555), - [anon_sym_BANGin] = ACTIONS(551), - [anon_sym_shared] = ACTIONS(4292), - [anon_sym_map_LBRACK] = ACTIONS(4294), - [anon_sym_chan] = ACTIONS(4296), - [anon_sym_thread] = ACTIONS(4298), - [anon_sym_atomic] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(555), + [anon_sym_LF] = ACTIONS(4274), + [anon_sym_CR] = ACTIONS(4274), + [anon_sym_CR_LF] = ACTIONS(4274), + [sym_comment] = ACTIONS(493), + [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_AT] = ACTIONS(4274), + [anon_sym_shared] = ACTIONS(4274), + [anon_sym_map_LBRACK] = ACTIONS(4274), + [anon_sym_chan] = ACTIONS(4274), + [anon_sym_thread] = ACTIONS(4274), + [anon_sym_atomic] = ACTIONS(4274), + [anon_sym_assert] = ACTIONS(4274), + [anon_sym_defer] = ACTIONS(4274), + [anon_sym_goto] = ACTIONS(4274), + [anon_sym_break] = ACTIONS(4274), + [anon_sym_continue] = ACTIONS(4274), + [anon_sym_return] = ACTIONS(4274), + [anon_sym_DOLLARfor] = ACTIONS(4274), + [anon_sym_for] = ACTIONS(4274), + [anon_sym_POUND] = ACTIONS(4274), + [anon_sym_asm] = ACTIONS(4274), + [anon_sym_AT_LBRACK] = ACTIONS(4274), + [sym___double_quote] = ACTIONS(4274), + [sym___single_quote] = ACTIONS(4274), + [sym___c_double_quote] = ACTIONS(4274), + [sym___c_single_quote] = ACTIONS(4274), + [sym___r_double_quote] = ACTIONS(4274), + [sym___r_single_quote] = ACTIONS(4274), }, [1584] = { - [sym_reference_expression] = STATE(4574), - [sym_type_reference_expression] = STATE(2635), - [sym_plain_type] = STATE(2750), - [sym__plain_type_without_special] = STATE(2723), - [sym_anon_struct_type] = STATE(2724), - [sym_multi_return_type] = STATE(2723), - [sym_result_type] = STATE(2723), - [sym_option_type] = STATE(2723), - [sym_qualified_type] = STATE(2635), - [sym_fixed_array_type] = STATE(2724), - [sym_array_type] = STATE(2724), - [sym_pointer_type] = STATE(2724), - [sym_wrong_pointer_type] = STATE(2724), - [sym_map_type] = STATE(2724), - [sym_channel_type] = STATE(2724), - [sym_shared_type] = STATE(2724), - [sym_thread_type] = STATE(2724), - [sym_atomic_type] = STATE(2724), - [sym_generic_type] = STATE(2724), - [sym_function_type] = STATE(2724), - [sym_identifier] = ACTIONS(4274), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(613), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(4276), - [anon_sym_PIPE] = ACTIONS(615), + [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), + [sym_comment] = ACTIONS(493), + [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(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(4280), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(4282), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(4284), - [anon_sym_BANG] = ACTIONS(4286), - [anon_sym_LBRACK2] = ACTIONS(4288), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(4290), - [anon_sym_LT_LT] = ACTIONS(613), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(613), - [anon_sym_AMP_CARET] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_or] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(613), - [anon_sym_POUND_LBRACK] = ACTIONS(613), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(613), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(613), - [anon_sym_shared] = ACTIONS(4292), - [anon_sym_map_LBRACK] = ACTIONS(4294), - [anon_sym_chan] = ACTIONS(4296), - [anon_sym_thread] = ACTIONS(4298), - [anon_sym_atomic] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(615), + [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_AT] = ACTIONS(4278), + [anon_sym_shared] = ACTIONS(4278), + [anon_sym_map_LBRACK] = ACTIONS(4278), + [anon_sym_chan] = ACTIONS(4278), + [anon_sym_thread] = ACTIONS(4278), + [anon_sym_atomic] = ACTIONS(4278), + [anon_sym_assert] = ACTIONS(4278), + [anon_sym_defer] = ACTIONS(4278), + [anon_sym_goto] = ACTIONS(4278), + [anon_sym_break] = ACTIONS(4278), + [anon_sym_continue] = ACTIONS(4278), + [anon_sym_return] = ACTIONS(4278), + [anon_sym_DOLLARfor] = ACTIONS(4278), + [anon_sym_for] = ACTIONS(4278), + [anon_sym_POUND] = ACTIONS(4278), + [anon_sym_asm] = ACTIONS(4278), + [anon_sym_AT_LBRACK] = ACTIONS(4278), + [sym___double_quote] = ACTIONS(4278), + [sym___single_quote] = ACTIONS(4278), + [sym___c_double_quote] = ACTIONS(4278), + [sym___c_single_quote] = ACTIONS(4278), + [sym___r_double_quote] = ACTIONS(4278), + [sym___r_single_quote] = ACTIONS(4278), }, [1585] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), + [sym_reference_expression] = STATE(4578), + [sym_type_reference_expression] = STATE(2667), + [sym_plain_type] = STATE(2738), + [sym__plain_type_without_special] = STATE(2727), + [sym_anon_struct_type] = STATE(2728), + [sym_multi_return_type] = STATE(2727), + [sym_result_type] = STATE(2727), + [sym_option_type] = STATE(2727), + [sym_qualified_type] = STATE(2667), + [sym_fixed_array_type] = STATE(2728), + [sym_array_type] = STATE(2728), + [sym_pointer_type] = STATE(2728), + [sym_wrong_pointer_type] = STATE(2728), + [sym_map_type] = STATE(2728), + [sym_channel_type] = STATE(2728), + [sym_shared_type] = STATE(2728), + [sym_thread_type] = STATE(2728), + [sym_atomic_type] = STATE(2728), + [sym_generic_type] = STATE(2728), + [sym_function_type] = STATE(2728), + [sym_identifier] = ACTIONS(4280), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_as] = ACTIONS(595), - [anon_sym_LBRACE] = ACTIONS(591), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(591), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(591), - [anon_sym_BANG_EQ] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(591), - [anon_sym_GT_EQ] = ACTIONS(591), - [anon_sym_DOT_DOT_DOT] = ACTIONS(591), - [anon_sym_LBRACK] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(591), - [anon_sym_DASH_DASH] = ACTIONS(591), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(591), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(591), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_GT_GT_GT] = ACTIONS(591), - [anon_sym_AMP_CARET] = ACTIONS(591), - [anon_sym_AMP_AMP] = ACTIONS(591), - [anon_sym_PIPE_PIPE] = ACTIONS(591), - [anon_sym_or] = ACTIONS(595), - [anon_sym_QMARK_DOT] = ACTIONS(591), - [anon_sym_POUND_LBRACK] = ACTIONS(591), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(591), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(591), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(561), + [anon_sym_as] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(557), + [anon_sym_COMMA] = ACTIONS(557), + [anon_sym_LPAREN] = ACTIONS(4282), + [anon_sym_PIPE] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(561), + [anon_sym_PERCENT] = ACTIONS(557), + [anon_sym_LT] = ACTIONS(561), + [anon_sym_GT] = ACTIONS(561), + [anon_sym_EQ_EQ] = ACTIONS(557), + [anon_sym_BANG_EQ] = ACTIONS(557), + [anon_sym_LT_EQ] = ACTIONS(557), + [anon_sym_GT_EQ] = ACTIONS(557), + [anon_sym_DOT_DOT_DOT] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_struct] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [anon_sym_QMARK] = ACTIONS(4290), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_LBRACK2] = ACTIONS(4294), + [anon_sym_CARET] = ACTIONS(557), + [anon_sym_AMP] = ACTIONS(4296), + [anon_sym_LT_LT] = ACTIONS(557), + [anon_sym_GT_GT] = ACTIONS(561), + [anon_sym_GT_GT_GT] = ACTIONS(557), + [anon_sym_AMP_CARET] = ACTIONS(557), + [anon_sym_AMP_AMP] = ACTIONS(557), + [anon_sym_PIPE_PIPE] = ACTIONS(557), + [anon_sym_or] = ACTIONS(561), + [anon_sym_QMARK_DOT] = ACTIONS(557), + [anon_sym_POUND_LBRACK] = ACTIONS(557), + [anon_sym_is] = ACTIONS(561), + [anon_sym_BANGis] = ACTIONS(557), + [anon_sym_in] = ACTIONS(561), + [anon_sym_BANGin] = ACTIONS(557), + [anon_sym_shared] = ACTIONS(4298), + [anon_sym_map_LBRACK] = ACTIONS(4300), + [anon_sym_chan] = ACTIONS(4302), + [anon_sym_thread] = ACTIONS(4304), + [anon_sym_atomic] = ACTIONS(4306), + [anon_sym_DOT_DOT] = ACTIONS(561), }, [1586] = { - [ts_builtin_sym_end] = ACTIONS(4304), - [sym_identifier] = ACTIONS(4306), + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2359), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(591), [sym_comment] = ACTIONS(3), - [anon_sym_import] = ACTIONS(4306), - [anon_sym_DOT] = ACTIONS(4306), - [anon_sym_LBRACE] = ACTIONS(4304), - [anon_sym_const] = ACTIONS(4306), - [anon_sym_LPAREN] = ACTIONS(4304), - [anon_sym___global] = ACTIONS(4306), - [anon_sym_type] = ACTIONS(4306), - [anon_sym_fn] = ACTIONS(4306), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(4304), - [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(4304), - [anon_sym_BANG] = ACTIONS(4304), - [anon_sym_go] = ACTIONS(4306), - [anon_sym_spawn] = ACTIONS(4306), - [anon_sym_json_DOTdecode] = ACTIONS(4304), - [anon_sym_LBRACK2] = ACTIONS(4304), - [anon_sym_TILDE] = ACTIONS(4304), - [anon_sym_CARET] = ACTIONS(4304), - [anon_sym_AMP] = ACTIONS(4304), - [anon_sym_LT_DASH] = ACTIONS(4304), - [sym_none] = ACTIONS(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(4304), - [sym_rune_literal] = ACTIONS(4304), - [anon_sym_AT] = ACTIONS(4306), - [anon_sym_shared] = ACTIONS(4306), - [anon_sym_map_LBRACK] = ACTIONS(4304), - [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(4304), - [sym___double_quote] = ACTIONS(4304), - [sym___single_quote] = ACTIONS(4304), - [sym___c_double_quote] = ACTIONS(4304), - [sym___c_single_quote] = ACTIONS(4304), - [sym___r_double_quote] = ACTIONS(4304), - [sym___r_single_quote] = ACTIONS(4304), + [anon_sym_SEMI] = ACTIONS(615), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_as] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [anon_sym_COMMA] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_STAR] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(617), + [anon_sym_PERCENT] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(617), + [anon_sym_GT] = ACTIONS(617), + [anon_sym_EQ_EQ] = ACTIONS(615), + [anon_sym_BANG_EQ] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(615), + [anon_sym_struct] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(615), + [anon_sym_DASH_DASH] = ACTIONS(615), + [anon_sym_QMARK] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_LBRACK2] = ACTIONS(617), + [anon_sym_CARET] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_LT_LT] = ACTIONS(615), + [anon_sym_GT_GT] = ACTIONS(617), + [anon_sym_GT_GT_GT] = ACTIONS(615), + [anon_sym_AMP_CARET] = ACTIONS(615), + [anon_sym_AMP_AMP] = ACTIONS(615), + [anon_sym_PIPE_PIPE] = ACTIONS(615), + [anon_sym_or] = ACTIONS(617), + [anon_sym_QMARK_DOT] = ACTIONS(615), + [anon_sym_POUND_LBRACK] = ACTIONS(615), + [anon_sym_is] = ACTIONS(617), + [anon_sym_BANGis] = ACTIONS(615), + [anon_sym_in] = ACTIONS(617), + [anon_sym_BANGin] = ACTIONS(615), + [anon_sym_COLON_EQ] = ACTIONS(615), + [anon_sym_shared] = ACTIONS(609), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), }, [1587] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2393), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(591), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(591), - [anon_sym_DOT] = ACTIONS(591), - [anon_sym_as] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(591), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(591), - [anon_sym_BANG_EQ] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(591), - [anon_sym_GT_EQ] = ACTIONS(591), - [anon_sym_LBRACK] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(591), - [anon_sym_DASH_DASH] = ACTIONS(591), - [anon_sym_QMARK] = ACTIONS(503), + [anon_sym_DOT] = ACTIONS(593), + [anon_sym_as] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_COMMA] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_STAR] = ACTIONS(3357), + [anon_sym_SLASH] = ACTIONS(593), + [anon_sym_PERCENT] = ACTIONS(589), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_EQ_EQ] = ACTIONS(589), + [anon_sym_BANG_EQ] = ACTIONS(589), + [anon_sym_LT_EQ] = ACTIONS(589), + [anon_sym_GT_EQ] = ACTIONS(589), + [anon_sym_DOT_DOT_DOT] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(589), + [anon_sym_struct] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(589), + [anon_sym_DASH_DASH] = ACTIONS(589), + [anon_sym_QMARK] = ACTIONS(509), [anon_sym_BANG] = ACTIONS(4308), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(591), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(591), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_GT_GT_GT] = ACTIONS(591), - [anon_sym_AMP_CARET] = ACTIONS(591), - [anon_sym_AMP_AMP] = ACTIONS(591), - [anon_sym_PIPE_PIPE] = ACTIONS(591), - [anon_sym_or] = ACTIONS(595), - [anon_sym_QMARK_DOT] = ACTIONS(591), - [anon_sym_POUND_LBRACK] = ACTIONS(591), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(591), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(591), - [anon_sym_COLON_EQ] = ACTIONS(591), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), + [anon_sym_LBRACK2] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(607), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_GT_GT_GT] = ACTIONS(589), + [anon_sym_AMP_CARET] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_or] = ACTIONS(593), + [anon_sym_QMARK_DOT] = ACTIONS(589), + [anon_sym_POUND_LBRACK] = ACTIONS(589), + [anon_sym_is] = ACTIONS(593), + [anon_sym_BANGis] = ACTIONS(589), + [anon_sym_in] = ACTIONS(593), + [anon_sym_BANGin] = ACTIONS(589), + [anon_sym_shared] = ACTIONS(609), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(593), }, [1588] = { - [ts_builtin_sym_end] = ACTIONS(4310), - [sym_identifier] = ACTIONS(4312), + [sym_reference_expression] = STATE(4578), + [sym_type_reference_expression] = STATE(2667), + [sym_plain_type] = STATE(2754), + [sym__plain_type_without_special] = STATE(2727), + [sym_anon_struct_type] = STATE(2728), + [sym_multi_return_type] = STATE(2727), + [sym_result_type] = STATE(2727), + [sym_option_type] = STATE(2727), + [sym_qualified_type] = STATE(2667), + [sym_fixed_array_type] = STATE(2728), + [sym_array_type] = STATE(2728), + [sym_pointer_type] = STATE(2728), + [sym_wrong_pointer_type] = STATE(2728), + [sym_map_type] = STATE(2728), + [sym_channel_type] = STATE(2728), + [sym_shared_type] = STATE(2728), + [sym_thread_type] = STATE(2728), + [sym_atomic_type] = STATE(2728), + [sym_generic_type] = STATE(2728), + [sym_function_type] = STATE(2728), + [sym_identifier] = ACTIONS(4280), [sym_comment] = ACTIONS(3), - [anon_sym_import] = ACTIONS(4312), - [anon_sym_DOT] = ACTIONS(4312), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_const] = ACTIONS(4312), - [anon_sym_LPAREN] = ACTIONS(4310), - [anon_sym___global] = ACTIONS(4312), - [anon_sym_type] = ACTIONS(4312), - [anon_sym_fn] = ACTIONS(4312), - [anon_sym_PLUS] = ACTIONS(4310), - [anon_sym_DASH] = ACTIONS(4310), - [anon_sym_STAR] = ACTIONS(4310), - [anon_sym_struct] = ACTIONS(4312), - [anon_sym_union] = ACTIONS(4312), - [anon_sym_pub] = ACTIONS(4312), - [anon_sym_mut] = ACTIONS(4312), - [anon_sym_enum] = ACTIONS(4312), - [anon_sym_interface] = ACTIONS(4312), - [anon_sym_QMARK] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(4310), - [anon_sym_go] = ACTIONS(4312), - [anon_sym_spawn] = ACTIONS(4312), - [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(4312), - [sym_true] = ACTIONS(4312), - [sym_false] = ACTIONS(4312), - [sym_nil] = ACTIONS(4312), - [anon_sym_if] = ACTIONS(4312), - [anon_sym_DOLLARif] = ACTIONS(4312), - [anon_sym_match] = ACTIONS(4312), - [anon_sym_select] = ACTIONS(4312), - [anon_sym_lock] = ACTIONS(4312), - [anon_sym_rlock] = ACTIONS(4312), - [anon_sym_unsafe] = ACTIONS(4312), - [anon_sym_sql] = ACTIONS(4312), - [sym_int_literal] = ACTIONS(4312), - [sym_float_literal] = ACTIONS(4310), - [sym_rune_literal] = ACTIONS(4310), - [anon_sym_AT] = ACTIONS(4312), - [anon_sym_shared] = ACTIONS(4312), - [anon_sym_map_LBRACK] = ACTIONS(4310), - [anon_sym_chan] = ACTIONS(4312), - [anon_sym_thread] = ACTIONS(4312), - [anon_sym_atomic] = ACTIONS(4312), - [anon_sym_assert] = ACTIONS(4312), - [anon_sym_defer] = ACTIONS(4312), - [anon_sym_goto] = ACTIONS(4312), - [anon_sym_break] = ACTIONS(4312), - [anon_sym_continue] = ACTIONS(4312), - [anon_sym_return] = ACTIONS(4312), - [anon_sym_DOLLARfor] = ACTIONS(4312), - [anon_sym_for] = ACTIONS(4312), - [anon_sym_POUND] = ACTIONS(4312), - [anon_sym_asm] = ACTIONS(4312), - [anon_sym_AT_LBRACK] = ACTIONS(4310), - [sym___double_quote] = ACTIONS(4310), - [sym___single_quote] = ACTIONS(4310), - [sym___c_double_quote] = ACTIONS(4310), - [sym___c_single_quote] = ACTIONS(4310), - [sym___r_double_quote] = ACTIONS(4310), - [sym___r_single_quote] = ACTIONS(4310), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_as] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(619), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(4282), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_fn] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(621), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_EQ_EQ] = ACTIONS(619), + [anon_sym_BANG_EQ] = ACTIONS(619), + [anon_sym_LT_EQ] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(619), + [anon_sym_struct] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(4290), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_LBRACK2] = ACTIONS(4294), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(4296), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(621), + [anon_sym_GT_GT_GT] = ACTIONS(619), + [anon_sym_AMP_CARET] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(619), + [anon_sym_PIPE_PIPE] = ACTIONS(619), + [anon_sym_or] = ACTIONS(621), + [anon_sym_QMARK_DOT] = ACTIONS(619), + [anon_sym_POUND_LBRACK] = ACTIONS(619), + [anon_sym_is] = ACTIONS(621), + [anon_sym_BANGis] = ACTIONS(619), + [anon_sym_in] = ACTIONS(621), + [anon_sym_BANGin] = ACTIONS(619), + [anon_sym_shared] = ACTIONS(4298), + [anon_sym_map_LBRACK] = ACTIONS(4300), + [anon_sym_chan] = ACTIONS(4302), + [anon_sym_thread] = ACTIONS(4304), + [anon_sym_atomic] = ACTIONS(4306), + [anon_sym_DOT_DOT] = ACTIONS(621), }, [1589] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2411), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(4314), + [sym_reference_expression] = STATE(4578), + [sym_type_reference_expression] = STATE(2667), + [sym_plain_type] = STATE(2750), + [sym__plain_type_without_special] = STATE(2727), + [sym_anon_struct_type] = STATE(2728), + [sym_multi_return_type] = STATE(2727), + [sym_result_type] = STATE(2727), + [sym_option_type] = STATE(2727), + [sym_qualified_type] = STATE(2667), + [sym_fixed_array_type] = STATE(2728), + [sym_array_type] = STATE(2728), + [sym_pointer_type] = STATE(2728), + [sym_wrong_pointer_type] = STATE(2728), + [sym_map_type] = STATE(2728), + [sym_channel_type] = STATE(2728), + [sym_shared_type] = STATE(2728), + [sym_thread_type] = STATE(2728), + [sym_atomic_type] = STATE(2728), + [sym_generic_type] = STATE(2728), + [sym_function_type] = STATE(2728), + [sym_identifier] = ACTIONS(4280), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4314), - [anon_sym_LBRACE] = ACTIONS(4316), - [anon_sym_LPAREN] = ACTIONS(4316), - [anon_sym_fn] = ACTIONS(4314), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4316), - [anon_sym_struct] = ACTIONS(4314), - [anon_sym_mut] = ACTIONS(4314), - [anon_sym_QMARK] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_go] = ACTIONS(4314), - [anon_sym_spawn] = ACTIONS(4314), - [anon_sym_json_DOTdecode] = ACTIONS(4316), - [anon_sym_LBRACK2] = ACTIONS(4316), - [anon_sym_TILDE] = ACTIONS(4316), - [anon_sym_CARET] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_DASH] = ACTIONS(4316), - [sym_none] = ACTIONS(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(4316), - [sym_rune_literal] = ACTIONS(4316), - [anon_sym_AT] = ACTIONS(4314), - [anon_sym_shared] = ACTIONS(4314), - [anon_sym_map_LBRACK] = ACTIONS(4316), - [anon_sym_chan] = ACTIONS(4314), - [anon_sym_thread] = ACTIONS(4314), - [anon_sym_atomic] = ACTIONS(4314), - [sym___double_quote] = ACTIONS(4316), - [sym___single_quote] = ACTIONS(4316), - [sym___c_double_quote] = ACTIONS(4316), - [sym___c_single_quote] = ACTIONS(4316), - [sym___r_double_quote] = ACTIONS(4316), - [sym___r_single_quote] = ACTIONS(4316), + [anon_sym_DOT] = ACTIONS(613), + [anon_sym_as] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(4282), + [anon_sym_PIPE] = ACTIONS(613), + [anon_sym_fn] = ACTIONS(4284), + [anon_sym_PLUS] = ACTIONS(613), + [anon_sym_DASH] = ACTIONS(613), + [anon_sym_STAR] = ACTIONS(4286), + [anon_sym_SLASH] = ACTIONS(613), + [anon_sym_PERCENT] = ACTIONS(611), + [anon_sym_LT] = ACTIONS(613), + [anon_sym_GT] = ACTIONS(613), + [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(611), + [anon_sym_struct] = ACTIONS(4288), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_QMARK] = ACTIONS(4290), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_LBRACK2] = ACTIONS(4294), + [anon_sym_CARET] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(4296), + [anon_sym_LT_LT] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(613), + [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(613), + [anon_sym_QMARK_DOT] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(611), + [anon_sym_is] = ACTIONS(613), + [anon_sym_BANGis] = ACTIONS(611), + [anon_sym_in] = ACTIONS(613), + [anon_sym_BANGin] = ACTIONS(611), + [anon_sym_shared] = ACTIONS(4298), + [anon_sym_map_LBRACK] = ACTIONS(4300), + [anon_sym_chan] = ACTIONS(4302), + [anon_sym_thread] = ACTIONS(4304), + [anon_sym_atomic] = ACTIONS(4306), + [anon_sym_DOT_DOT] = ACTIONS(613), }, [1590] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2348), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(4310), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(591), - [anon_sym_as] = ACTIONS(595), - [anon_sym_LBRACE] = ACTIONS(591), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(591), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(591), - [anon_sym_BANG_EQ] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(591), - [anon_sym_GT_EQ] = ACTIONS(591), - [anon_sym_LBRACK] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(591), - [anon_sym_DASH_DASH] = ACTIONS(591), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(591), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(591), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_GT_GT_GT] = ACTIONS(591), - [anon_sym_AMP_CARET] = ACTIONS(591), - [anon_sym_AMP_AMP] = ACTIONS(591), - [anon_sym_PIPE_PIPE] = ACTIONS(591), - [anon_sym_or] = ACTIONS(595), - [anon_sym_QMARK_DOT] = ACTIONS(591), - [anon_sym_POUND_LBRACK] = ACTIONS(591), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(591), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(591), - [anon_sym_COLON_EQ] = ACTIONS(591), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(4310), + [anon_sym_LBRACE] = ACTIONS(4312), + [anon_sym_LPAREN] = ACTIONS(4312), + [anon_sym_fn] = ACTIONS(4310), + [anon_sym_PLUS] = ACTIONS(4312), + [anon_sym_DASH] = ACTIONS(4312), + [anon_sym_STAR] = ACTIONS(4312), + [anon_sym_struct] = ACTIONS(4310), + [anon_sym_mut] = ACTIONS(4310), + [anon_sym_QMARK] = ACTIONS(4312), + [anon_sym_BANG] = ACTIONS(4312), + [anon_sym_go] = ACTIONS(4310), + [anon_sym_spawn] = ACTIONS(4310), + [anon_sym_json_DOTdecode] = ACTIONS(4312), + [anon_sym_LBRACK2] = ACTIONS(4312), + [anon_sym_TILDE] = ACTIONS(4312), + [anon_sym_CARET] = ACTIONS(4312), + [anon_sym_AMP] = ACTIONS(4312), + [anon_sym_LT_DASH] = ACTIONS(4312), + [sym_none] = ACTIONS(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(4312), + [sym_rune_literal] = ACTIONS(4312), + [anon_sym_AT] = ACTIONS(4310), + [anon_sym_shared] = ACTIONS(4310), + [anon_sym_map_LBRACK] = ACTIONS(4312), + [anon_sym_chan] = ACTIONS(4310), + [anon_sym_thread] = ACTIONS(4310), + [anon_sym_atomic] = ACTIONS(4310), + [sym___double_quote] = ACTIONS(4312), + [sym___single_quote] = ACTIONS(4312), + [sym___c_double_quote] = ACTIONS(4312), + [sym___c_single_quote] = ACTIONS(4312), + [sym___r_double_quote] = ACTIONS(4312), + [sym___r_single_quote] = ACTIONS(4312), }, [1591] = { - [ts_builtin_sym_end] = ACTIONS(4318), - [sym_identifier] = ACTIONS(4320), + [ts_builtin_sym_end] = ACTIONS(4314), + [sym_identifier] = ACTIONS(4316), [sym_comment] = ACTIONS(3), - [anon_sym_import] = ACTIONS(4320), - [anon_sym_DOT] = ACTIONS(4320), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_const] = ACTIONS(4320), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym___global] = ACTIONS(4320), - [anon_sym_type] = ACTIONS(4320), - [anon_sym_fn] = ACTIONS(4320), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_STAR] = ACTIONS(4318), - [anon_sym_struct] = ACTIONS(4320), - [anon_sym_union] = ACTIONS(4320), - [anon_sym_pub] = ACTIONS(4320), - [anon_sym_mut] = ACTIONS(4320), - [anon_sym_enum] = ACTIONS(4320), - [anon_sym_interface] = ACTIONS(4320), - [anon_sym_QMARK] = ACTIONS(4318), - [anon_sym_BANG] = ACTIONS(4318), - [anon_sym_go] = ACTIONS(4320), - [anon_sym_spawn] = ACTIONS(4320), - [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(4320), - [sym_true] = ACTIONS(4320), - [sym_false] = ACTIONS(4320), - [sym_nil] = ACTIONS(4320), - [anon_sym_if] = ACTIONS(4320), - [anon_sym_DOLLARif] = ACTIONS(4320), - [anon_sym_match] = ACTIONS(4320), - [anon_sym_select] = ACTIONS(4320), - [anon_sym_lock] = ACTIONS(4320), - [anon_sym_rlock] = ACTIONS(4320), - [anon_sym_unsafe] = ACTIONS(4320), - [anon_sym_sql] = ACTIONS(4320), - [sym_int_literal] = ACTIONS(4320), - [sym_float_literal] = ACTIONS(4318), - [sym_rune_literal] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4320), - [anon_sym_shared] = ACTIONS(4320), - [anon_sym_map_LBRACK] = ACTIONS(4318), - [anon_sym_chan] = ACTIONS(4320), - [anon_sym_thread] = ACTIONS(4320), - [anon_sym_atomic] = ACTIONS(4320), - [anon_sym_assert] = ACTIONS(4320), - [anon_sym_defer] = ACTIONS(4320), - [anon_sym_goto] = ACTIONS(4320), - [anon_sym_break] = ACTIONS(4320), - [anon_sym_continue] = ACTIONS(4320), - [anon_sym_return] = ACTIONS(4320), - [anon_sym_DOLLARfor] = ACTIONS(4320), - [anon_sym_for] = ACTIONS(4320), - [anon_sym_POUND] = ACTIONS(4320), - [anon_sym_asm] = ACTIONS(4320), - [anon_sym_AT_LBRACK] = ACTIONS(4318), - [sym___double_quote] = ACTIONS(4318), - [sym___single_quote] = ACTIONS(4318), - [sym___c_double_quote] = ACTIONS(4318), - [sym___c_single_quote] = ACTIONS(4318), - [sym___r_double_quote] = ACTIONS(4318), - [sym___r_single_quote] = ACTIONS(4318), + [anon_sym_import] = ACTIONS(4316), + [anon_sym_DOT] = ACTIONS(4316), + [anon_sym_LBRACE] = ACTIONS(4314), + [anon_sym_const] = ACTIONS(4316), + [anon_sym_LPAREN] = ACTIONS(4314), + [anon_sym___global] = ACTIONS(4316), + [anon_sym_type] = ACTIONS(4316), + [anon_sym_fn] = ACTIONS(4316), + [anon_sym_PLUS] = ACTIONS(4314), + [anon_sym_DASH] = ACTIONS(4314), + [anon_sym_STAR] = ACTIONS(4314), + [anon_sym_struct] = ACTIONS(4316), + [anon_sym_union] = ACTIONS(4316), + [anon_sym_pub] = ACTIONS(4316), + [anon_sym_mut] = ACTIONS(4316), + [anon_sym_enum] = ACTIONS(4316), + [anon_sym_interface] = ACTIONS(4316), + [anon_sym_QMARK] = ACTIONS(4314), + [anon_sym_BANG] = ACTIONS(4314), + [anon_sym_go] = ACTIONS(4316), + [anon_sym_spawn] = ACTIONS(4316), + [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(4316), + [sym_true] = ACTIONS(4316), + [sym_false] = ACTIONS(4316), + [sym_nil] = ACTIONS(4316), + [anon_sym_if] = ACTIONS(4316), + [anon_sym_DOLLARif] = ACTIONS(4316), + [anon_sym_match] = ACTIONS(4316), + [anon_sym_select] = ACTIONS(4316), + [anon_sym_lock] = ACTIONS(4316), + [anon_sym_rlock] = ACTIONS(4316), + [anon_sym_unsafe] = ACTIONS(4316), + [anon_sym_sql] = ACTIONS(4316), + [sym_int_literal] = ACTIONS(4316), + [sym_float_literal] = ACTIONS(4314), + [sym_rune_literal] = ACTIONS(4314), + [anon_sym_AT] = ACTIONS(4316), + [anon_sym_shared] = ACTIONS(4316), + [anon_sym_map_LBRACK] = ACTIONS(4314), + [anon_sym_chan] = ACTIONS(4316), + [anon_sym_thread] = ACTIONS(4316), + [anon_sym_atomic] = ACTIONS(4316), + [anon_sym_assert] = ACTIONS(4316), + [anon_sym_defer] = ACTIONS(4316), + [anon_sym_goto] = ACTIONS(4316), + [anon_sym_break] = ACTIONS(4316), + [anon_sym_continue] = ACTIONS(4316), + [anon_sym_return] = ACTIONS(4316), + [anon_sym_DOLLARfor] = ACTIONS(4316), + [anon_sym_for] = ACTIONS(4316), + [anon_sym_POUND] = ACTIONS(4314), + [anon_sym_asm] = ACTIONS(4316), + [anon_sym_AT_LBRACK] = ACTIONS(4314), + [sym___double_quote] = ACTIONS(4314), + [sym___single_quote] = ACTIONS(4314), + [sym___c_double_quote] = ACTIONS(4314), + [sym___c_single_quote] = ACTIONS(4314), + [sym___r_double_quote] = ACTIONS(4314), + [sym___r_single_quote] = ACTIONS(4314), }, [1592] = { - [ts_builtin_sym_end] = ACTIONS(125), + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2393), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(591), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(589), + [anon_sym_DOT] = ACTIONS(589), + [anon_sym_as] = ACTIONS(593), + [anon_sym_COMMA] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_STAR] = ACTIONS(3357), + [anon_sym_SLASH] = ACTIONS(593), + [anon_sym_PERCENT] = ACTIONS(589), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_EQ_EQ] = ACTIONS(589), + [anon_sym_BANG_EQ] = ACTIONS(589), + [anon_sym_LT_EQ] = ACTIONS(589), + [anon_sym_GT_EQ] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(589), + [anon_sym_struct] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(589), + [anon_sym_DASH_DASH] = ACTIONS(589), + [anon_sym_QMARK] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(4318), + [anon_sym_LBRACK2] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(607), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_GT_GT_GT] = ACTIONS(589), + [anon_sym_AMP_CARET] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_or] = ACTIONS(593), + [anon_sym_QMARK_DOT] = ACTIONS(589), + [anon_sym_POUND_LBRACK] = ACTIONS(589), + [anon_sym_is] = ACTIONS(593), + [anon_sym_BANGis] = ACTIONS(589), + [anon_sym_in] = ACTIONS(593), + [anon_sym_BANGin] = ACTIONS(589), + [anon_sym_COLON_EQ] = ACTIONS(589), + [anon_sym_shared] = ACTIONS(609), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + }, + [1593] = { + [sym_reference_expression] = STATE(4655), + [sym_type_reference_expression] = STATE(3547), + [sym_plain_type] = STATE(2393), + [sym__plain_type_without_special] = STATE(2415), + [sym_anon_struct_type] = STATE(2417), + [sym_multi_return_type] = STATE(2415), + [sym_result_type] = STATE(2415), + [sym_option_type] = STATE(2415), + [sym_qualified_type] = STATE(3547), + [sym_fixed_array_type] = STATE(2417), + [sym_array_type] = STATE(2417), + [sym_pointer_type] = STATE(2417), + [sym_wrong_pointer_type] = STATE(2417), + [sym_map_type] = STATE(2417), + [sym_channel_type] = STATE(2417), + [sym_shared_type] = STATE(2417), + [sym_thread_type] = STATE(2417), + [sym_atomic_type] = STATE(2417), + [sym_generic_type] = STATE(2417), + [sym_function_type] = STATE(2417), + [sym_identifier] = ACTIONS(591), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(589), + [anon_sym_as] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_COMMA] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_STAR] = ACTIONS(3357), + [anon_sym_SLASH] = ACTIONS(593), + [anon_sym_PERCENT] = ACTIONS(589), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_EQ_EQ] = ACTIONS(589), + [anon_sym_BANG_EQ] = ACTIONS(589), + [anon_sym_LT_EQ] = ACTIONS(589), + [anon_sym_GT_EQ] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(589), + [anon_sym_struct] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(589), + [anon_sym_DASH_DASH] = ACTIONS(589), + [anon_sym_QMARK] = ACTIONS(509), + [anon_sym_BANG] = ACTIONS(4308), + [anon_sym_LBRACK2] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(607), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(593), + [anon_sym_GT_GT_GT] = ACTIONS(589), + [anon_sym_AMP_CARET] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_or] = ACTIONS(593), + [anon_sym_QMARK_DOT] = ACTIONS(589), + [anon_sym_POUND_LBRACK] = ACTIONS(589), + [anon_sym_is] = ACTIONS(593), + [anon_sym_BANGis] = ACTIONS(589), + [anon_sym_in] = ACTIONS(593), + [anon_sym_BANGin] = ACTIONS(589), + [anon_sym_COLON_EQ] = ACTIONS(589), + [anon_sym_shared] = ACTIONS(609), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + }, + [1594] = { + [ts_builtin_sym_end] = ACTIONS(4320), [sym_identifier] = ACTIONS(4322), [sym_comment] = ACTIONS(3), + [anon_sym_import] = ACTIONS(4322), [anon_sym_DOT] = ACTIONS(4322), - [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(4320), [anon_sym_const] = ACTIONS(4322), - [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(4320), [anon_sym___global] = ACTIONS(4322), [anon_sym_type] = ACTIONS(4322), [anon_sym_fn] = ACTIONS(4322), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(125), + [anon_sym_PLUS] = ACTIONS(4320), + [anon_sym_DASH] = ACTIONS(4320), + [anon_sym_STAR] = ACTIONS(4320), [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(125), - [anon_sym_BANG] = ACTIONS(125), + [anon_sym_QMARK] = ACTIONS(4320), + [anon_sym_BANG] = ACTIONS(4320), [anon_sym_go] = ACTIONS(4322), [anon_sym_spawn] = ACTIONS(4322), - [anon_sym_json_DOTdecode] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(125), - [anon_sym_TILDE] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_LT_DASH] = ACTIONS(125), + [anon_sym_json_DOTdecode] = ACTIONS(4320), + [anon_sym_LBRACK2] = ACTIONS(4320), + [anon_sym_TILDE] = ACTIONS(4320), + [anon_sym_CARET] = ACTIONS(4320), + [anon_sym_AMP] = ACTIONS(4320), + [anon_sym_LT_DASH] = ACTIONS(4320), [sym_none] = ACTIONS(4322), [sym_true] = ACTIONS(4322), [sym_false] = ACTIONS(4322), @@ -188894,11 +189381,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(4322), [anon_sym_sql] = ACTIONS(4322), [sym_int_literal] = ACTIONS(4322), - [sym_float_literal] = ACTIONS(125), - [sym_rune_literal] = ACTIONS(125), + [sym_float_literal] = ACTIONS(4320), + [sym_rune_literal] = ACTIONS(4320), [anon_sym_AT] = ACTIONS(4322), [anon_sym_shared] = ACTIONS(4322), - [anon_sym_map_LBRACK] = ACTIONS(125), + [anon_sym_map_LBRACK] = ACTIONS(4320), [anon_sym_chan] = ACTIONS(4322), [anon_sym_thread] = ACTIONS(4322), [anon_sym_atomic] = ACTIONS(4322), @@ -188910,365 +189397,504 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(4322), [anon_sym_DOLLARfor] = ACTIONS(4322), [anon_sym_for] = ACTIONS(4322), - [anon_sym_POUND] = ACTIONS(4322), + [anon_sym_POUND] = ACTIONS(4320), [anon_sym_asm] = ACTIONS(4322), - [anon_sym_AT_LBRACK] = ACTIONS(125), - [sym___double_quote] = ACTIONS(125), - [sym___single_quote] = ACTIONS(125), - [sym___c_double_quote] = ACTIONS(125), - [sym___c_single_quote] = ACTIONS(125), - [sym___r_double_quote] = ACTIONS(125), - [sym___r_single_quote] = ACTIONS(125), - }, - [1593] = { - [sym_identifier] = ACTIONS(3101), - [anon_sym_LF] = ACTIONS(3101), - [anon_sym_CR] = ACTIONS(3101), - [anon_sym_CR_LF] = ACTIONS(3101), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_as] = ACTIONS(3101), - [anon_sym_COMMA] = ACTIONS(3101), - [anon_sym_RBRACE] = ACTIONS(3101), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym_EQ] = ACTIONS(3101), - [anon_sym_PIPE] = ACTIONS(3101), - [anon_sym_fn] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_SLASH] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3101), - [anon_sym_LT] = ACTIONS(3101), - [anon_sym_GT] = ACTIONS(3101), - [anon_sym_EQ_EQ] = ACTIONS(3101), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_LT_EQ] = ACTIONS(3101), - [anon_sym_GT_EQ] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3101), - [anon_sym_COLON] = ACTIONS(3101), - [anon_sym_PLUS_PLUS] = ACTIONS(3101), - [anon_sym_DASH_DASH] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_BANG] = ACTIONS(3101), - [anon_sym_LBRACK2] = ACTIONS(3101), - [anon_sym_CARET] = ACTIONS(3101), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_LT_DASH] = ACTIONS(3101), - [anon_sym_LT_LT] = ACTIONS(3101), - [anon_sym_GT_GT] = ACTIONS(3101), - [anon_sym_GT_GT_GT] = ACTIONS(3101), - [anon_sym_AMP_CARET] = ACTIONS(3101), - [anon_sym_AMP_AMP] = ACTIONS(3101), - [anon_sym_PIPE_PIPE] = ACTIONS(3101), - [anon_sym_or] = ACTIONS(3101), - [anon_sym_QMARK_DOT] = ACTIONS(3101), - [anon_sym_POUND_LBRACK] = ACTIONS(3101), - [anon_sym_is] = ACTIONS(3101), - [anon_sym_BANGis] = ACTIONS(3101), - [anon_sym_in] = ACTIONS(3101), - [anon_sym_BANGin] = ACTIONS(3101), - [anon_sym_STAR_EQ] = ACTIONS(3101), - [anon_sym_SLASH_EQ] = ACTIONS(3101), - [anon_sym_PERCENT_EQ] = ACTIONS(3101), - [anon_sym_LT_LT_EQ] = ACTIONS(3101), - [anon_sym_GT_GT_EQ] = ACTIONS(3101), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3101), - [anon_sym_AMP_EQ] = ACTIONS(3101), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3101), - [anon_sym_PLUS_EQ] = ACTIONS(3101), - [anon_sym_DASH_EQ] = ACTIONS(3101), - [anon_sym_PIPE_EQ] = ACTIONS(3101), - [anon_sym_CARET_EQ] = ACTIONS(3101), - [anon_sym_COLON_EQ] = ACTIONS(3101), - [anon_sym_shared] = ACTIONS(3101), - [anon_sym_map_LBRACK] = ACTIONS(3101), - [anon_sym_chan] = ACTIONS(3101), - [anon_sym_thread] = ACTIONS(3101), - [anon_sym_atomic] = ACTIONS(3101), - }, - [1594] = { - [sym_identifier] = ACTIONS(3041), - [anon_sym_LF] = ACTIONS(3041), - [anon_sym_CR] = ACTIONS(3041), - [anon_sym_CR_LF] = ACTIONS(3041), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3041), - [anon_sym_as] = ACTIONS(3041), - [anon_sym_COMMA] = ACTIONS(3041), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(3041), - [anon_sym_EQ] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3041), - [anon_sym_fn] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3041), - [anon_sym_SLASH] = ACTIONS(3041), - [anon_sym_PERCENT] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(3041), - [anon_sym_GT] = ACTIONS(3041), - [anon_sym_EQ_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ] = ACTIONS(3041), - [anon_sym_LT_EQ] = ACTIONS(3041), - [anon_sym_GT_EQ] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3039), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_COLON] = ACTIONS(3041), - [anon_sym_PLUS_PLUS] = ACTIONS(3041), - [anon_sym_DASH_DASH] = ACTIONS(3041), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3041), - [anon_sym_LBRACK2] = ACTIONS(3041), - [anon_sym_CARET] = ACTIONS(3041), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_LT_DASH] = ACTIONS(3041), - [anon_sym_LT_LT] = ACTIONS(3041), - [anon_sym_GT_GT] = ACTIONS(3041), - [anon_sym_GT_GT_GT] = ACTIONS(3041), - [anon_sym_AMP_CARET] = ACTIONS(3041), - [anon_sym_AMP_AMP] = ACTIONS(3041), - [anon_sym_PIPE_PIPE] = ACTIONS(3041), - [anon_sym_or] = ACTIONS(3041), - [anon_sym_QMARK_DOT] = ACTIONS(3041), - [anon_sym_POUND_LBRACK] = ACTIONS(3041), - [anon_sym_is] = ACTIONS(3041), - [anon_sym_BANGis] = ACTIONS(3041), - [anon_sym_in] = ACTIONS(3041), - [anon_sym_BANGin] = ACTIONS(3041), - [anon_sym_STAR_EQ] = ACTIONS(3041), - [anon_sym_SLASH_EQ] = ACTIONS(3041), - [anon_sym_PERCENT_EQ] = ACTIONS(3041), - [anon_sym_LT_LT_EQ] = ACTIONS(3041), - [anon_sym_GT_GT_EQ] = ACTIONS(3041), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3041), - [anon_sym_AMP_EQ] = ACTIONS(3041), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3041), - [anon_sym_PLUS_EQ] = ACTIONS(3041), - [anon_sym_DASH_EQ] = ACTIONS(3041), - [anon_sym_PIPE_EQ] = ACTIONS(3041), - [anon_sym_CARET_EQ] = ACTIONS(3041), - [anon_sym_COLON_EQ] = ACTIONS(3041), - [anon_sym_shared] = ACTIONS(3041), - [anon_sym_map_LBRACK] = ACTIONS(3041), - [anon_sym_chan] = ACTIONS(3041), - [anon_sym_thread] = ACTIONS(3041), - [anon_sym_atomic] = ACTIONS(3041), + [anon_sym_AT_LBRACK] = ACTIONS(4320), + [sym___double_quote] = ACTIONS(4320), + [sym___single_quote] = ACTIONS(4320), + [sym___c_double_quote] = ACTIONS(4320), + [sym___c_single_quote] = ACTIONS(4320), + [sym___r_double_quote] = ACTIONS(4320), + [sym___r_single_quote] = ACTIONS(4320), }, [1595] = { - [sym_identifier] = ACTIONS(3137), - [anon_sym_LF] = ACTIONS(3137), - [anon_sym_CR] = ACTIONS(3137), - [anon_sym_CR_LF] = ACTIONS(3137), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3137), - [anon_sym_as] = ACTIONS(3137), - [anon_sym_COMMA] = ACTIONS(3137), - [anon_sym_RBRACE] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3137), - [anon_sym_EQ] = ACTIONS(3137), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_fn] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_SLASH] = ACTIONS(3137), - [anon_sym_PERCENT] = ACTIONS(3137), - [anon_sym_LT] = ACTIONS(3137), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_LT_EQ] = ACTIONS(3137), - [anon_sym_GT_EQ] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3137), - [anon_sym_COLON] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_LBRACK2] = ACTIONS(3137), - [anon_sym_CARET] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_LT_DASH] = ACTIONS(3137), - [anon_sym_LT_LT] = ACTIONS(3137), - [anon_sym_GT_GT] = ACTIONS(3137), - [anon_sym_GT_GT_GT] = ACTIONS(3137), - [anon_sym_AMP_CARET] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_PIPE_PIPE] = ACTIONS(3137), - [anon_sym_or] = ACTIONS(3137), - [anon_sym_QMARK_DOT] = ACTIONS(3137), - [anon_sym_POUND_LBRACK] = ACTIONS(3137), - [anon_sym_is] = ACTIONS(3137), - [anon_sym_BANGis] = ACTIONS(3137), - [anon_sym_in] = ACTIONS(3137), - [anon_sym_BANGin] = ACTIONS(3137), - [anon_sym_STAR_EQ] = ACTIONS(3137), - [anon_sym_SLASH_EQ] = ACTIONS(3137), - [anon_sym_PERCENT_EQ] = ACTIONS(3137), - [anon_sym_LT_LT_EQ] = ACTIONS(3137), - [anon_sym_GT_GT_EQ] = ACTIONS(3137), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3137), - [anon_sym_AMP_EQ] = ACTIONS(3137), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3137), - [anon_sym_PLUS_EQ] = ACTIONS(3137), - [anon_sym_DASH_EQ] = ACTIONS(3137), - [anon_sym_PIPE_EQ] = ACTIONS(3137), - [anon_sym_CARET_EQ] = ACTIONS(3137), - [anon_sym_COLON_EQ] = ACTIONS(3137), - [anon_sym_shared] = ACTIONS(3137), - [anon_sym_map_LBRACK] = ACTIONS(3137), - [anon_sym_chan] = ACTIONS(3137), - [anon_sym_thread] = ACTIONS(3137), - [anon_sym_atomic] = ACTIONS(3137), + [ts_builtin_sym_end] = ACTIONS(4324), + [sym_identifier] = ACTIONS(4326), + [sym_comment] = ACTIONS(3), + [anon_sym_import] = ACTIONS(4326), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_LBRACE] = ACTIONS(4324), + [anon_sym_const] = ACTIONS(4326), + [anon_sym_LPAREN] = ACTIONS(4324), + [anon_sym___global] = ACTIONS(4326), + [anon_sym_type] = ACTIONS(4326), + [anon_sym_fn] = ACTIONS(4326), + [anon_sym_PLUS] = ACTIONS(4324), + [anon_sym_DASH] = ACTIONS(4324), + [anon_sym_STAR] = ACTIONS(4324), + [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(4324), + [anon_sym_BANG] = ACTIONS(4324), + [anon_sym_go] = ACTIONS(4326), + [anon_sym_spawn] = ACTIONS(4326), + [anon_sym_json_DOTdecode] = ACTIONS(4324), + [anon_sym_LBRACK2] = ACTIONS(4324), + [anon_sym_TILDE] = ACTIONS(4324), + [anon_sym_CARET] = ACTIONS(4324), + [anon_sym_AMP] = ACTIONS(4324), + [anon_sym_LT_DASH] = ACTIONS(4324), + [sym_none] = ACTIONS(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(4324), + [sym_rune_literal] = ACTIONS(4324), + [anon_sym_AT] = ACTIONS(4326), + [anon_sym_shared] = ACTIONS(4326), + [anon_sym_map_LBRACK] = ACTIONS(4324), + [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(4324), + [anon_sym_asm] = ACTIONS(4326), + [anon_sym_AT_LBRACK] = ACTIONS(4324), + [sym___double_quote] = ACTIONS(4324), + [sym___single_quote] = ACTIONS(4324), + [sym___c_double_quote] = ACTIONS(4324), + [sym___c_single_quote] = ACTIONS(4324), + [sym___r_double_quote] = ACTIONS(4324), + [sym___r_single_quote] = ACTIONS(4324), }, [1596] = { - [sym_identifier] = ACTIONS(3133), - [anon_sym_LF] = ACTIONS(3133), - [anon_sym_CR] = ACTIONS(3133), - [anon_sym_CR_LF] = ACTIONS(3133), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3133), - [anon_sym_as] = ACTIONS(3133), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_RBRACE] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3133), - [anon_sym_fn] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_SLASH] = ACTIONS(3133), - [anon_sym_PERCENT] = ACTIONS(3133), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_GT] = ACTIONS(3133), - [anon_sym_EQ_EQ] = ACTIONS(3133), - [anon_sym_BANG_EQ] = ACTIONS(3133), - [anon_sym_LT_EQ] = ACTIONS(3133), - [anon_sym_GT_EQ] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_struct] = ACTIONS(3133), - [anon_sym_COLON] = ACTIONS(3133), - [anon_sym_PLUS_PLUS] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3133), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_LBRACK2] = ACTIONS(3133), - [anon_sym_CARET] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_LT_DASH] = ACTIONS(3133), - [anon_sym_LT_LT] = ACTIONS(3133), - [anon_sym_GT_GT] = ACTIONS(3133), - [anon_sym_GT_GT_GT] = ACTIONS(3133), - [anon_sym_AMP_CARET] = ACTIONS(3133), - [anon_sym_AMP_AMP] = ACTIONS(3133), - [anon_sym_PIPE_PIPE] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3133), - [anon_sym_QMARK_DOT] = ACTIONS(3133), - [anon_sym_POUND_LBRACK] = ACTIONS(3133), - [anon_sym_is] = ACTIONS(3133), - [anon_sym_BANGis] = ACTIONS(3133), - [anon_sym_in] = ACTIONS(3133), - [anon_sym_BANGin] = ACTIONS(3133), - [anon_sym_STAR_EQ] = ACTIONS(3133), - [anon_sym_SLASH_EQ] = ACTIONS(3133), - [anon_sym_PERCENT_EQ] = ACTIONS(3133), - [anon_sym_LT_LT_EQ] = ACTIONS(3133), - [anon_sym_GT_GT_EQ] = ACTIONS(3133), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3133), - [anon_sym_AMP_EQ] = ACTIONS(3133), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3133), - [anon_sym_PLUS_EQ] = ACTIONS(3133), - [anon_sym_DASH_EQ] = ACTIONS(3133), - [anon_sym_PIPE_EQ] = ACTIONS(3133), - [anon_sym_CARET_EQ] = ACTIONS(3133), - [anon_sym_COLON_EQ] = ACTIONS(3133), - [anon_sym_shared] = ACTIONS(3133), - [anon_sym_map_LBRACK] = ACTIONS(3133), - [anon_sym_chan] = ACTIONS(3133), - [anon_sym_thread] = ACTIONS(3133), - [anon_sym_atomic] = ACTIONS(3133), + [ts_builtin_sym_end] = ACTIONS(135), + [sym_identifier] = ACTIONS(4328), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4328), + [anon_sym_LBRACE] = ACTIONS(135), + [anon_sym_const] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym___global] = ACTIONS(4328), + [anon_sym_type] = ACTIONS(4328), + [anon_sym_fn] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_struct] = ACTIONS(4328), + [anon_sym_union] = ACTIONS(4328), + [anon_sym_pub] = ACTIONS(4328), + [anon_sym_mut] = ACTIONS(4328), + [anon_sym_enum] = ACTIONS(4328), + [anon_sym_interface] = ACTIONS(4328), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_go] = ACTIONS(4328), + [anon_sym_spawn] = ACTIONS(4328), + [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(4328), + [sym_true] = ACTIONS(4328), + [sym_false] = ACTIONS(4328), + [sym_nil] = ACTIONS(4328), + [anon_sym_if] = ACTIONS(4328), + [anon_sym_DOLLARif] = ACTIONS(4328), + [anon_sym_match] = ACTIONS(4328), + [anon_sym_select] = ACTIONS(4328), + [anon_sym_lock] = ACTIONS(4328), + [anon_sym_rlock] = ACTIONS(4328), + [anon_sym_unsafe] = ACTIONS(4328), + [anon_sym_sql] = ACTIONS(4328), + [sym_int_literal] = ACTIONS(4328), + [sym_float_literal] = ACTIONS(135), + [sym_rune_literal] = ACTIONS(135), + [anon_sym_AT] = ACTIONS(4328), + [anon_sym_shared] = ACTIONS(4328), + [anon_sym_map_LBRACK] = ACTIONS(135), + [anon_sym_chan] = ACTIONS(4328), + [anon_sym_thread] = ACTIONS(4328), + [anon_sym_atomic] = ACTIONS(4328), + [anon_sym_assert] = ACTIONS(4328), + [anon_sym_defer] = ACTIONS(4328), + [anon_sym_goto] = ACTIONS(4328), + [anon_sym_break] = ACTIONS(4328), + [anon_sym_continue] = ACTIONS(4328), + [anon_sym_return] = ACTIONS(4328), + [anon_sym_DOLLARfor] = ACTIONS(4328), + [anon_sym_for] = ACTIONS(4328), + [anon_sym_POUND] = ACTIONS(135), + [anon_sym_asm] = ACTIONS(4328), + [anon_sym_AT_LBRACK] = ACTIONS(135), + [sym___double_quote] = ACTIONS(135), + [sym___single_quote] = ACTIONS(135), + [sym___c_double_quote] = ACTIONS(135), + [sym___c_single_quote] = ACTIONS(135), + [sym___r_double_quote] = ACTIONS(135), + [sym___r_single_quote] = ACTIONS(135), }, [1597] = { - [sym_identifier] = ACTIONS(3105), - [anon_sym_LF] = ACTIONS(3105), - [anon_sym_CR] = ACTIONS(3105), - [anon_sym_CR_LF] = ACTIONS(3105), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3105), - [anon_sym_as] = ACTIONS(3105), - [anon_sym_COMMA] = ACTIONS(3105), - [anon_sym_RBRACE] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3105), - [anon_sym_EQ] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3105), - [anon_sym_fn] = ACTIONS(3105), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_SLASH] = ACTIONS(3105), - [anon_sym_PERCENT] = ACTIONS(3105), - [anon_sym_LT] = ACTIONS(3105), - [anon_sym_GT] = ACTIONS(3105), - [anon_sym_EQ_EQ] = ACTIONS(3105), - [anon_sym_BANG_EQ] = ACTIONS(3105), - [anon_sym_LT_EQ] = ACTIONS(3105), - [anon_sym_GT_EQ] = ACTIONS(3105), - [anon_sym_LBRACK] = ACTIONS(3103), - [anon_sym_struct] = ACTIONS(3105), - [anon_sym_COLON] = ACTIONS(3105), - [anon_sym_PLUS_PLUS] = ACTIONS(3105), - [anon_sym_DASH_DASH] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3105), - [anon_sym_LBRACK2] = ACTIONS(3105), - [anon_sym_CARET] = ACTIONS(3105), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_LT_DASH] = ACTIONS(3105), - [anon_sym_LT_LT] = ACTIONS(3105), - [anon_sym_GT_GT] = ACTIONS(3105), - [anon_sym_GT_GT_GT] = ACTIONS(3105), - [anon_sym_AMP_CARET] = ACTIONS(3105), - [anon_sym_AMP_AMP] = ACTIONS(3105), - [anon_sym_PIPE_PIPE] = ACTIONS(3105), - [anon_sym_or] = ACTIONS(3105), - [anon_sym_QMARK_DOT] = ACTIONS(3105), - [anon_sym_POUND_LBRACK] = ACTIONS(3105), - [anon_sym_is] = ACTIONS(3105), - [anon_sym_BANGis] = ACTIONS(3105), - [anon_sym_in] = ACTIONS(3105), - [anon_sym_BANGin] = ACTIONS(3105), - [anon_sym_STAR_EQ] = ACTIONS(3105), - [anon_sym_SLASH_EQ] = ACTIONS(3105), - [anon_sym_PERCENT_EQ] = ACTIONS(3105), - [anon_sym_LT_LT_EQ] = ACTIONS(3105), - [anon_sym_GT_GT_EQ] = ACTIONS(3105), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3105), - [anon_sym_AMP_EQ] = ACTIONS(3105), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3105), - [anon_sym_PLUS_EQ] = ACTIONS(3105), - [anon_sym_DASH_EQ] = ACTIONS(3105), - [anon_sym_PIPE_EQ] = ACTIONS(3105), - [anon_sym_CARET_EQ] = ACTIONS(3105), - [anon_sym_COLON_EQ] = ACTIONS(3105), - [anon_sym_shared] = ACTIONS(3105), - [anon_sym_map_LBRACK] = ACTIONS(3105), - [anon_sym_chan] = ACTIONS(3105), - [anon_sym_thread] = ACTIONS(3105), - [anon_sym_atomic] = ACTIONS(3105), + [sym_identifier] = ACTIONS(2922), + [anon_sym_LF] = ACTIONS(2922), + [anon_sym_CR] = ACTIONS(2922), + [anon_sym_CR_LF] = ACTIONS(2922), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2922), + [anon_sym_as] = ACTIONS(2922), + [anon_sym_COMMA] = ACTIONS(2922), + [anon_sym_RBRACE] = ACTIONS(2922), + [anon_sym_LPAREN] = ACTIONS(2922), + [anon_sym_EQ] = ACTIONS(2922), + [anon_sym_PIPE] = ACTIONS(2922), + [anon_sym_fn] = ACTIONS(2922), + [anon_sym_PLUS] = ACTIONS(2922), + [anon_sym_DASH] = ACTIONS(2922), + [anon_sym_STAR] = ACTIONS(2922), + [anon_sym_SLASH] = ACTIONS(2922), + [anon_sym_PERCENT] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2922), + [anon_sym_GT] = ACTIONS(2922), + [anon_sym_EQ_EQ] = ACTIONS(2922), + [anon_sym_BANG_EQ] = ACTIONS(2922), + [anon_sym_LT_EQ] = ACTIONS(2922), + [anon_sym_GT_EQ] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2920), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_COLON] = ACTIONS(2922), + [anon_sym_PLUS_PLUS] = ACTIONS(2922), + [anon_sym_DASH_DASH] = ACTIONS(2922), + [anon_sym_QMARK] = ACTIONS(2922), + [anon_sym_BANG] = ACTIONS(2922), + [anon_sym_LBRACK2] = ACTIONS(2922), + [anon_sym_CARET] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2922), + [anon_sym_LT_DASH] = ACTIONS(2922), + [anon_sym_LT_LT] = ACTIONS(2922), + [anon_sym_GT_GT] = ACTIONS(2922), + [anon_sym_GT_GT_GT] = ACTIONS(2922), + [anon_sym_AMP_CARET] = ACTIONS(2922), + [anon_sym_AMP_AMP] = ACTIONS(2922), + [anon_sym_PIPE_PIPE] = ACTIONS(2922), + [anon_sym_or] = ACTIONS(2922), + [anon_sym_QMARK_DOT] = ACTIONS(2922), + [anon_sym_POUND_LBRACK] = ACTIONS(2922), + [anon_sym_is] = ACTIONS(2922), + [anon_sym_BANGis] = ACTIONS(2922), + [anon_sym_in] = ACTIONS(2922), + [anon_sym_BANGin] = ACTIONS(2922), + [anon_sym_STAR_EQ] = ACTIONS(2922), + [anon_sym_SLASH_EQ] = ACTIONS(2922), + [anon_sym_PERCENT_EQ] = ACTIONS(2922), + [anon_sym_LT_LT_EQ] = ACTIONS(2922), + [anon_sym_GT_GT_EQ] = ACTIONS(2922), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2922), + [anon_sym_AMP_EQ] = ACTIONS(2922), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2922), + [anon_sym_PLUS_EQ] = ACTIONS(2922), + [anon_sym_DASH_EQ] = ACTIONS(2922), + [anon_sym_PIPE_EQ] = ACTIONS(2922), + [anon_sym_CARET_EQ] = ACTIONS(2922), + [anon_sym_COLON_EQ] = ACTIONS(2922), + [anon_sym_shared] = ACTIONS(2922), + [anon_sym_map_LBRACK] = ACTIONS(2922), + [anon_sym_chan] = ACTIONS(2922), + [anon_sym_thread] = ACTIONS(2922), + [anon_sym_atomic] = ACTIONS(2922), + }, + [1598] = { + [sym_identifier] = ACTIONS(2858), + [anon_sym_LF] = ACTIONS(2858), + [anon_sym_CR] = ACTIONS(2858), + [anon_sym_CR_LF] = ACTIONS(2858), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2858), + [anon_sym_as] = ACTIONS(2858), + [anon_sym_COMMA] = ACTIONS(2858), + [anon_sym_RBRACE] = ACTIONS(2858), + [anon_sym_LPAREN] = ACTIONS(2858), + [anon_sym_EQ] = ACTIONS(2858), + [anon_sym_PIPE] = ACTIONS(2858), + [anon_sym_fn] = ACTIONS(2858), + [anon_sym_PLUS] = ACTIONS(2858), + [anon_sym_DASH] = ACTIONS(2858), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_SLASH] = ACTIONS(2858), + [anon_sym_PERCENT] = ACTIONS(2858), + [anon_sym_LT] = ACTIONS(2858), + [anon_sym_GT] = ACTIONS(2858), + [anon_sym_EQ_EQ] = ACTIONS(2858), + [anon_sym_BANG_EQ] = ACTIONS(2858), + [anon_sym_LT_EQ] = ACTIONS(2858), + [anon_sym_GT_EQ] = ACTIONS(2858), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2858), + [anon_sym_COLON] = ACTIONS(2858), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [anon_sym_QMARK] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_LBRACK2] = ACTIONS(2858), + [anon_sym_CARET] = ACTIONS(2858), + [anon_sym_AMP] = ACTIONS(2858), + [anon_sym_LT_DASH] = ACTIONS(2858), + [anon_sym_LT_LT] = ACTIONS(2858), + [anon_sym_GT_GT] = ACTIONS(2858), + [anon_sym_GT_GT_GT] = ACTIONS(2858), + [anon_sym_AMP_CARET] = ACTIONS(2858), + [anon_sym_AMP_AMP] = ACTIONS(2858), + [anon_sym_PIPE_PIPE] = ACTIONS(2858), + [anon_sym_or] = ACTIONS(2858), + [anon_sym_QMARK_DOT] = ACTIONS(2858), + [anon_sym_POUND_LBRACK] = ACTIONS(2858), + [anon_sym_is] = ACTIONS(2858), + [anon_sym_BANGis] = ACTIONS(2858), + [anon_sym_in] = ACTIONS(2858), + [anon_sym_BANGin] = ACTIONS(2858), + [anon_sym_STAR_EQ] = ACTIONS(2858), + [anon_sym_SLASH_EQ] = ACTIONS(2858), + [anon_sym_PERCENT_EQ] = ACTIONS(2858), + [anon_sym_LT_LT_EQ] = ACTIONS(2858), + [anon_sym_GT_GT_EQ] = ACTIONS(2858), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2858), + [anon_sym_AMP_EQ] = ACTIONS(2858), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2858), + [anon_sym_PLUS_EQ] = ACTIONS(2858), + [anon_sym_DASH_EQ] = ACTIONS(2858), + [anon_sym_PIPE_EQ] = ACTIONS(2858), + [anon_sym_CARET_EQ] = ACTIONS(2858), + [anon_sym_COLON_EQ] = ACTIONS(2858), + [anon_sym_shared] = ACTIONS(2858), + [anon_sym_map_LBRACK] = ACTIONS(2858), + [anon_sym_chan] = ACTIONS(2858), + [anon_sym_thread] = ACTIONS(2858), + [anon_sym_atomic] = ACTIONS(2858), + }, + [1599] = { + [sym_identifier] = ACTIONS(2854), + [anon_sym_LF] = ACTIONS(2854), + [anon_sym_CR] = ACTIONS(2854), + [anon_sym_CR_LF] = ACTIONS(2854), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2854), + [anon_sym_as] = ACTIONS(2854), + [anon_sym_COMMA] = ACTIONS(2854), + [anon_sym_RBRACE] = ACTIONS(2854), + [anon_sym_LPAREN] = ACTIONS(2854), + [anon_sym_EQ] = ACTIONS(2854), + [anon_sym_PIPE] = ACTIONS(2854), + [anon_sym_fn] = ACTIONS(2854), + [anon_sym_PLUS] = ACTIONS(2854), + [anon_sym_DASH] = ACTIONS(2854), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_SLASH] = ACTIONS(2854), + [anon_sym_PERCENT] = ACTIONS(2854), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_GT] = ACTIONS(2854), + [anon_sym_EQ_EQ] = ACTIONS(2854), + [anon_sym_BANG_EQ] = ACTIONS(2854), + [anon_sym_LT_EQ] = ACTIONS(2854), + [anon_sym_GT_EQ] = ACTIONS(2854), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2854), + [anon_sym_COLON] = ACTIONS(2854), + [anon_sym_PLUS_PLUS] = ACTIONS(2854), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [anon_sym_QMARK] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_LBRACK2] = ACTIONS(2854), + [anon_sym_CARET] = ACTIONS(2854), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_LT_DASH] = ACTIONS(2854), + [anon_sym_LT_LT] = ACTIONS(2854), + [anon_sym_GT_GT] = ACTIONS(2854), + [anon_sym_GT_GT_GT] = ACTIONS(2854), + [anon_sym_AMP_CARET] = ACTIONS(2854), + [anon_sym_AMP_AMP] = ACTIONS(2854), + [anon_sym_PIPE_PIPE] = ACTIONS(2854), + [anon_sym_or] = ACTIONS(2854), + [anon_sym_QMARK_DOT] = ACTIONS(2854), + [anon_sym_POUND_LBRACK] = ACTIONS(2854), + [anon_sym_is] = ACTIONS(2854), + [anon_sym_BANGis] = ACTIONS(2854), + [anon_sym_in] = ACTIONS(2854), + [anon_sym_BANGin] = ACTIONS(2854), + [anon_sym_STAR_EQ] = ACTIONS(2854), + [anon_sym_SLASH_EQ] = ACTIONS(2854), + [anon_sym_PERCENT_EQ] = ACTIONS(2854), + [anon_sym_LT_LT_EQ] = ACTIONS(2854), + [anon_sym_GT_GT_EQ] = ACTIONS(2854), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2854), + [anon_sym_AMP_EQ] = ACTIONS(2854), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2854), + [anon_sym_PLUS_EQ] = ACTIONS(2854), + [anon_sym_DASH_EQ] = ACTIONS(2854), + [anon_sym_PIPE_EQ] = ACTIONS(2854), + [anon_sym_CARET_EQ] = ACTIONS(2854), + [anon_sym_COLON_EQ] = ACTIONS(2854), + [anon_sym_shared] = ACTIONS(2854), + [anon_sym_map_LBRACK] = ACTIONS(2854), + [anon_sym_chan] = ACTIONS(2854), + [anon_sym_thread] = ACTIONS(2854), + [anon_sym_atomic] = ACTIONS(2854), + }, + [1600] = { + [sym_identifier] = ACTIONS(2810), + [anon_sym_LF] = ACTIONS(2810), + [anon_sym_CR] = ACTIONS(2810), + [anon_sym_CR_LF] = ACTIONS(2810), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2810), + [anon_sym_as] = ACTIONS(2810), + [anon_sym_COMMA] = ACTIONS(2810), + [anon_sym_RBRACE] = ACTIONS(2810), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_EQ] = ACTIONS(2810), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_fn] = ACTIONS(2810), + [anon_sym_PLUS] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_STAR] = ACTIONS(2810), + [anon_sym_SLASH] = ACTIONS(2810), + [anon_sym_PERCENT] = ACTIONS(2810), + [anon_sym_LT] = ACTIONS(2810), + [anon_sym_GT] = ACTIONS(2810), + [anon_sym_EQ_EQ] = ACTIONS(2810), + [anon_sym_BANG_EQ] = ACTIONS(2810), + [anon_sym_LT_EQ] = ACTIONS(2810), + [anon_sym_GT_EQ] = ACTIONS(2810), + [anon_sym_LBRACK] = ACTIONS(2808), + [anon_sym_struct] = ACTIONS(2810), + [anon_sym_COLON] = ACTIONS(2810), + [anon_sym_PLUS_PLUS] = ACTIONS(2810), + [anon_sym_DASH_DASH] = ACTIONS(2810), + [anon_sym_QMARK] = ACTIONS(2810), + [anon_sym_BANG] = ACTIONS(2810), + [anon_sym_LBRACK2] = ACTIONS(2810), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2810), + [anon_sym_LT_DASH] = ACTIONS(2810), + [anon_sym_LT_LT] = ACTIONS(2810), + [anon_sym_GT_GT] = ACTIONS(2810), + [anon_sym_GT_GT_GT] = ACTIONS(2810), + [anon_sym_AMP_CARET] = ACTIONS(2810), + [anon_sym_AMP_AMP] = ACTIONS(2810), + [anon_sym_PIPE_PIPE] = ACTIONS(2810), + [anon_sym_or] = ACTIONS(2810), + [anon_sym_QMARK_DOT] = ACTIONS(2810), + [anon_sym_POUND_LBRACK] = ACTIONS(2810), + [anon_sym_is] = ACTIONS(2810), + [anon_sym_BANGis] = ACTIONS(2810), + [anon_sym_in] = ACTIONS(2810), + [anon_sym_BANGin] = ACTIONS(2810), + [anon_sym_STAR_EQ] = ACTIONS(2810), + [anon_sym_SLASH_EQ] = ACTIONS(2810), + [anon_sym_PERCENT_EQ] = ACTIONS(2810), + [anon_sym_LT_LT_EQ] = ACTIONS(2810), + [anon_sym_GT_GT_EQ] = ACTIONS(2810), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2810), + [anon_sym_AMP_EQ] = ACTIONS(2810), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2810), + [anon_sym_PLUS_EQ] = ACTIONS(2810), + [anon_sym_DASH_EQ] = ACTIONS(2810), + [anon_sym_PIPE_EQ] = ACTIONS(2810), + [anon_sym_CARET_EQ] = ACTIONS(2810), + [anon_sym_COLON_EQ] = ACTIONS(2810), + [anon_sym_shared] = ACTIONS(2810), + [anon_sym_map_LBRACK] = ACTIONS(2810), + [anon_sym_chan] = ACTIONS(2810), + [anon_sym_thread] = ACTIONS(2810), + [anon_sym_atomic] = ACTIONS(2810), + }, + [1601] = { + [sym_identifier] = ACTIONS(2814), + [anon_sym_LF] = ACTIONS(2814), + [anon_sym_CR] = ACTIONS(2814), + [anon_sym_CR_LF] = ACTIONS(2814), + [sym_comment] = ACTIONS(493), + [anon_sym_DOT] = ACTIONS(2814), + [anon_sym_as] = ACTIONS(2814), + [anon_sym_COMMA] = ACTIONS(2814), + [anon_sym_RBRACE] = ACTIONS(2814), + [anon_sym_LPAREN] = ACTIONS(2814), + [anon_sym_EQ] = ACTIONS(2814), + [anon_sym_PIPE] = ACTIONS(2814), + [anon_sym_fn] = ACTIONS(2814), + [anon_sym_PLUS] = ACTIONS(2814), + [anon_sym_DASH] = ACTIONS(2814), + [anon_sym_STAR] = ACTIONS(2814), + [anon_sym_SLASH] = ACTIONS(2814), + [anon_sym_PERCENT] = ACTIONS(2814), + [anon_sym_LT] = ACTIONS(2814), + [anon_sym_GT] = ACTIONS(2814), + [anon_sym_EQ_EQ] = ACTIONS(2814), + [anon_sym_BANG_EQ] = ACTIONS(2814), + [anon_sym_LT_EQ] = ACTIONS(2814), + [anon_sym_GT_EQ] = ACTIONS(2814), + [anon_sym_LBRACK] = ACTIONS(2812), + [anon_sym_struct] = ACTIONS(2814), + [anon_sym_COLON] = ACTIONS(2814), + [anon_sym_PLUS_PLUS] = ACTIONS(2814), + [anon_sym_DASH_DASH] = ACTIONS(2814), + [anon_sym_QMARK] = ACTIONS(2814), + [anon_sym_BANG] = ACTIONS(2814), + [anon_sym_LBRACK2] = ACTIONS(2814), + [anon_sym_CARET] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2814), + [anon_sym_LT_DASH] = ACTIONS(2814), + [anon_sym_LT_LT] = ACTIONS(2814), + [anon_sym_GT_GT] = ACTIONS(2814), + [anon_sym_GT_GT_GT] = ACTIONS(2814), + [anon_sym_AMP_CARET] = ACTIONS(2814), + [anon_sym_AMP_AMP] = ACTIONS(2814), + [anon_sym_PIPE_PIPE] = ACTIONS(2814), + [anon_sym_or] = ACTIONS(2814), + [anon_sym_QMARK_DOT] = ACTIONS(2814), + [anon_sym_POUND_LBRACK] = ACTIONS(2814), + [anon_sym_is] = ACTIONS(2814), + [anon_sym_BANGis] = ACTIONS(2814), + [anon_sym_in] = ACTIONS(2814), + [anon_sym_BANGin] = ACTIONS(2814), + [anon_sym_STAR_EQ] = ACTIONS(2814), + [anon_sym_SLASH_EQ] = ACTIONS(2814), + [anon_sym_PERCENT_EQ] = ACTIONS(2814), + [anon_sym_LT_LT_EQ] = ACTIONS(2814), + [anon_sym_GT_GT_EQ] = ACTIONS(2814), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2814), + [anon_sym_AMP_EQ] = ACTIONS(2814), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2814), + [anon_sym_PLUS_EQ] = ACTIONS(2814), + [anon_sym_DASH_EQ] = ACTIONS(2814), + [anon_sym_PIPE_EQ] = ACTIONS(2814), + [anon_sym_CARET_EQ] = ACTIONS(2814), + [anon_sym_COLON_EQ] = ACTIONS(2814), + [anon_sym_shared] = ACTIONS(2814), + [anon_sym_map_LBRACK] = ACTIONS(2814), + [anon_sym_chan] = ACTIONS(2814), + [anon_sym_thread] = ACTIONS(2814), + [anon_sym_atomic] = ACTIONS(2814), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 3, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(3039), 1, + ACTIONS(2812), 1, anon_sym_LBRACK, - ACTIONS(3041), 62, + ACTIONS(2814), 62, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -189332,11 +189958,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, [71] = 3, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(3131), 1, + ACTIONS(2856), 1, anon_sym_LBRACK, - ACTIONS(3133), 62, + ACTIONS(2858), 62, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -189400,11 +190026,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, [142] = 3, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(3135), 1, + ACTIONS(2852), 1, anon_sym_LBRACK, - ACTIONS(3137), 62, + ACTIONS(2854), 62, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -189468,11 +190094,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, [213] = 3, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(3103), 1, + ACTIONS(2808), 1, anon_sym_LBRACK, - ACTIONS(3105), 62, + ACTIONS(2810), 62, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -189536,11 +190162,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, [284] = 3, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(3099), 1, + ACTIONS(2920), 1, anon_sym_LBRACK, - ACTIONS(3101), 62, + ACTIONS(2922), 62, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -189606,7 +190232,7 @@ static const uint16_t ts_small_parse_table[] = { [355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3137), 29, + ACTIONS(2858), 29, anon_sym_as, anon_sym_EQ, anon_sym_PIPE, @@ -189636,7 +190262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3135), 32, + ACTIONS(2856), 32, anon_sym_DOT, anon_sym_LBRACE, anon_sym_COMMA, @@ -189672,7 +190298,7 @@ static const uint16_t ts_small_parse_table[] = { [424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3041), 29, + ACTIONS(2854), 29, anon_sym_as, anon_sym_EQ, anon_sym_PIPE, @@ -189702,7 +190328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3039), 32, + ACTIONS(2852), 32, anon_sym_SEMI, anon_sym_DOT, anon_sym_LBRACE, @@ -189735,77 +190361,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_COLON_EQ, anon_sym_map_LBRACK, - [493] = 30, - ACTIONS(487), 1, + [493] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4326), 1, + ACTIONS(2810), 29, anon_sym_as, - ACTIONS(4328), 1, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_struct, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_or, + anon_sym_is, + anon_sym_in, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(2808), 32, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(4330), 1, anon_sym_LPAREN, - ACTIONS(4338), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - ACTIONS(4340), 1, - anon_sym_COLON, - ACTIONS(4342), 1, anon_sym_PLUS_PLUS, - ACTIONS(4344), 1, anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_BANGis, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + anon_sym_map_LBRACK, + [562] = 30, + ACTIONS(493), 1, + sym_comment, + ACTIONS(4332), 1, + anon_sym_as, + ACTIONS(4334), 1, + anon_sym_COMMA, + ACTIONS(4336), 1, + anon_sym_LPAREN, + ACTIONS(4344), 1, + anon_sym_LBRACK, ACTIONS(4346), 1, - anon_sym_QMARK, + anon_sym_COLON, ACTIONS(4348), 1, - anon_sym_BANG, + anon_sym_PLUS_PLUS, + ACTIONS(4350), 1, + anon_sym_DASH_DASH, ACTIONS(4352), 1, - anon_sym_LT_DASH, + anon_sym_QMARK, ACTIONS(4354), 1, + anon_sym_BANG, + ACTIONS(4358), 1, + anon_sym_LT_DASH, + ACTIONS(4360), 1, anon_sym_LT_LT, - ACTIONS(4356), 1, + ACTIONS(4362), 1, anon_sym_AMP_AMP, - ACTIONS(4358), 1, + ACTIONS(4364), 1, anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, + ACTIONS(4366), 1, anon_sym_or, - ACTIONS(4362), 1, + ACTIONS(4368), 1, anon_sym_is, - ACTIONS(4364), 1, + ACTIONS(4370), 1, anon_sym_BANGis, - ACTIONS(4366), 1, + ACTIONS(4372), 1, anon_sym_in, - ACTIONS(4368), 1, + ACTIONS(4374), 1, anon_sym_BANGin, - STATE(1715), 1, + STATE(1733), 1, sym_argument_list, - STATE(1716), 1, + STATE(1748), 1, sym_or_block, - STATE(3349), 1, + STATE(3357), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4166), 1, + STATE(4097), 1, sym_type_parameters, - ACTIONS(4324), 2, + ACTIONS(4330), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4350), 2, + ACTIONS(4356), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(1766), 4, + ACTIONS(1776), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - ACTIONS(4332), 4, + ACTIONS(4338), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4336), 6, + ACTIONS(4342), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4334), 7, + ACTIONS(4340), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -189813,7 +190505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1770), 14, + ACTIONS(1780), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -189828,10 +190520,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [616] = 3, + [685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3133), 29, + ACTIONS(2814), 29, anon_sym_as, anon_sym_EQ, anon_sym_PIPE, @@ -189861,7 +190553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3131), 32, + ACTIONS(2812), 32, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LBRACE, anon_sym_COMMA, @@ -189871,10 +190564,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_QMARK_DOT, @@ -189893,11 +190584,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_COLON_EQ, anon_sym_map_LBRACK, - [685] = 3, + [754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3105), 29, + ACTIONS(2858), 29, anon_sym_as, anon_sym_EQ, anon_sym_PIPE, @@ -189927,7 +190619,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3103), 32, + ACTIONS(2856), 32, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LBRACE, anon_sym_COMMA, @@ -189937,10 +190630,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_QMARK_DOT, @@ -189959,11 +190650,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_COLON_EQ, anon_sym_map_LBRACK, - [754] = 3, + [823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3101), 29, + ACTIONS(2922), 29, anon_sym_as, anon_sym_EQ, anon_sym_PIPE, @@ -189993,7 +190685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3099), 32, + ACTIONS(2920), 32, anon_sym_SEMI, anon_sym_DOT, anon_sym_LBRACE, @@ -190026,10 +190718,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_COLON_EQ, anon_sym_map_LBRACK, - [823] = 3, + [892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3101), 29, + ACTIONS(2922), 29, anon_sym_as, anon_sym_EQ, anon_sym_PIPE, @@ -190059,7 +190751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3099), 32, + ACTIONS(2920), 32, anon_sym_DOT, anon_sym_LBRACE, anon_sym_COMMA, @@ -190092,10 +190784,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_map_LBRACK, - [892] = 3, + [961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3041), 29, + ACTIONS(2854), 29, anon_sym_as, anon_sym_EQ, anon_sym_PIPE, @@ -190125,7 +190817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3039), 32, + ACTIONS(2852), 32, anon_sym_DOT, anon_sym_LBRACE, anon_sym_COMMA, @@ -190158,10 +190850,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_map_LBRACK, - [961] = 3, + [1030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3105), 29, + ACTIONS(2814), 29, anon_sym_as, anon_sym_EQ, anon_sym_PIPE, @@ -190191,8 +190883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3103), 32, - anon_sym_SEMI, + ACTIONS(2812), 32, anon_sym_DOT, anon_sym_LBRACE, anon_sym_COMMA, @@ -190202,8 +190893,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_QMARK_DOT, @@ -190222,12 +190915,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, anon_sym_map_LBRACK, - [1030] = 3, + [1099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3137), 29, + ACTIONS(2810), 29, anon_sym_as, anon_sym_EQ, anon_sym_PIPE, @@ -190257,8 +190949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3135), 32, - anon_sym_SEMI, + ACTIONS(2808), 32, anon_sym_DOT, anon_sym_LBRACE, anon_sym_COMMA, @@ -190268,8 +190959,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_QMARK_DOT, @@ -190288,59 +190981,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, anon_sym_map_LBRACK, - [1099] = 3, - ACTIONS(3), 1, + [1168] = 13, + ACTIONS(493), 1, sym_comment, - ACTIONS(3133), 29, - anon_sym_as, - anon_sym_EQ, + ACTIONS(4336), 1, + anon_sym_LPAREN, + ACTIONS(4344), 1, + anon_sym_LBRACK, + ACTIONS(4352), 1, + anon_sym_QMARK, + ACTIONS(4354), 1, + anon_sym_BANG, + STATE(1733), 1, + sym_argument_list, + STATE(1748), 1, + sym_or_block, + STATE(4097), 1, + sym_type_parameters, + ACTIONS(4330), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4356), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4338), 4, anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4340), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3131), 32, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LBRACE, + ACTIONS(2144), 37, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, + 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_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + anon_sym_or, + anon_sym_is, anon_sym_BANGis, + anon_sym_in, anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -190355,63 +191057,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - [1168] = 24, - ACTIONS(487), 1, + [1256] = 29, + ACTIONS(493), 1, sym_comment, - ACTIONS(4326), 1, + ACTIONS(4332), 1, anon_sym_as, - ACTIONS(4330), 1, + ACTIONS(4334), 1, + anon_sym_COMMA, + ACTIONS(4336), 1, anon_sym_LPAREN, - ACTIONS(4338), 1, + ACTIONS(4344), 1, anon_sym_LBRACK, - ACTIONS(4342), 1, + ACTIONS(4348), 1, anon_sym_PLUS_PLUS, - ACTIONS(4344), 1, + ACTIONS(4350), 1, anon_sym_DASH_DASH, - ACTIONS(4346), 1, + ACTIONS(4352), 1, anon_sym_QMARK, - ACTIONS(4348), 1, + ACTIONS(4354), 1, anon_sym_BANG, - ACTIONS(4356), 1, - anon_sym_AMP_AMP, ACTIONS(4358), 1, - anon_sym_PIPE_PIPE, + anon_sym_LT_DASH, ACTIONS(4360), 1, - anon_sym_or, + anon_sym_LT_LT, ACTIONS(4362), 1, - anon_sym_is, + anon_sym_AMP_AMP, ACTIONS(4364), 1, - anon_sym_BANGis, + anon_sym_PIPE_PIPE, ACTIONS(4366), 1, - anon_sym_in, + anon_sym_or, ACTIONS(4368), 1, + anon_sym_is, + ACTIONS(4370), 1, + anon_sym_BANGis, + ACTIONS(4372), 1, + anon_sym_in, + ACTIONS(4374), 1, anon_sym_BANGin, - STATE(1715), 1, + STATE(1733), 1, sym_argument_list, - STATE(1716), 1, + STATE(1748), 1, sym_or_block, - STATE(4166), 1, + STATE(3357), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4097), 1, sym_type_parameters, - ACTIONS(4324), 2, + ACTIONS(4330), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4350), 2, + ACTIONS(4356), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4332), 4, + ACTIONS(1776), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(4338), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4336), 6, + ACTIONS(4342), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4334), 8, + ACTIONS(4340), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1780), 14, + anon_sym_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [1376] = 13, + ACTIONS(493), 1, + sym_comment, + ACTIONS(4336), 1, + anon_sym_LPAREN, + ACTIONS(4344), 1, + anon_sym_LBRACK, + ACTIONS(4352), 1, + anon_sym_QMARK, + ACTIONS(4354), 1, + anon_sym_BANG, + STATE(1733), 1, + sym_argument_list, + STATE(1748), 1, + sym_or_block, + STATE(4097), 1, + sym_type_parameters, + ACTIONS(4330), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4356), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4338), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4340), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -190420,15 +191185,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2220), 21, + ACTIONS(2156), 37, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_LT_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -190442,46 +191223,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1278] = 16, - ACTIONS(487), 1, + [1464] = 11, + ACTIONS(493), 1, sym_comment, - ACTIONS(4330), 1, + ACTIONS(4336), 1, anon_sym_LPAREN, - ACTIONS(4338), 1, + ACTIONS(4344), 1, anon_sym_LBRACK, - ACTIONS(4346), 1, + ACTIONS(4352), 1, anon_sym_QMARK, + ACTIONS(4354), 1, + anon_sym_BANG, + STATE(1733), 1, + sym_argument_list, + STATE(1748), 1, + sym_or_block, + STATE(4097), 1, + sym_type_parameters, + ACTIONS(4330), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4356), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(2224), 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, + 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_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, + [1548] = 24, + ACTIONS(493), 1, + sym_comment, + ACTIONS(4332), 1, + anon_sym_as, + ACTIONS(4336), 1, + anon_sym_LPAREN, + ACTIONS(4344), 1, + anon_sym_LBRACK, ACTIONS(4348), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4350), 1, + anon_sym_DASH_DASH, + ACTIONS(4352), 1, + anon_sym_QMARK, + ACTIONS(4354), 1, anon_sym_BANG, + ACTIONS(4362), 1, + anon_sym_AMP_AMP, + ACTIONS(4364), 1, + anon_sym_PIPE_PIPE, ACTIONS(4366), 1, - anon_sym_in, + anon_sym_or, ACTIONS(4368), 1, + anon_sym_is, + ACTIONS(4370), 1, + anon_sym_BANGis, + ACTIONS(4372), 1, + anon_sym_in, + ACTIONS(4374), 1, anon_sym_BANGin, - STATE(1715), 1, + STATE(1733), 1, sym_argument_list, - STATE(1716), 1, + STATE(1748), 1, sym_or_block, - STATE(4166), 1, + STATE(4097), 1, sym_type_parameters, - ACTIONS(4324), 2, + ACTIONS(4330), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4350), 2, + ACTIONS(4356), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4332), 4, + ACTIONS(4338), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4336), 6, + ACTIONS(4342), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4334), 8, + ACTIONS(4340), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -190490,7 +191360,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2076), 29, + ACTIONS(2234), 21, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LT_DASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [1658] = 11, + ACTIONS(493), 1, + sym_comment, + ACTIONS(4336), 1, + anon_sym_LPAREN, + ACTIONS(4344), 1, + anon_sym_LBRACK, + ACTIONS(4352), 1, + anon_sym_QMARK, + ACTIONS(4354), 1, + anon_sym_BANG, + STATE(1733), 1, + sym_argument_list, + STATE(1748), 1, + sym_or_block, + STATE(4097), 1, + sym_type_parameters, + ACTIONS(4330), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4356), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(2162), 49, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -190498,15 +191413,35 @@ 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, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -190520,48 +191455,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1372] = 17, - ACTIONS(487), 1, + [1742] = 24, + ACTIONS(493), 1, sym_comment, - ACTIONS(4330), 1, + ACTIONS(4332), 1, + anon_sym_as, + ACTIONS(4336), 1, anon_sym_LPAREN, - ACTIONS(4338), 1, + ACTIONS(4344), 1, anon_sym_LBRACK, - ACTIONS(4346), 1, - anon_sym_QMARK, ACTIONS(4348), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4350), 1, + anon_sym_DASH_DASH, + ACTIONS(4352), 1, + anon_sym_QMARK, + ACTIONS(4354), 1, anon_sym_BANG, - ACTIONS(4356), 1, + ACTIONS(4362), 1, anon_sym_AMP_AMP, + ACTIONS(4364), 1, + anon_sym_PIPE_PIPE, ACTIONS(4366), 1, - anon_sym_in, + anon_sym_or, ACTIONS(4368), 1, + anon_sym_is, + ACTIONS(4370), 1, + anon_sym_BANGis, + ACTIONS(4372), 1, + anon_sym_in, + ACTIONS(4374), 1, anon_sym_BANGin, - STATE(1715), 1, + STATE(1733), 1, sym_argument_list, - STATE(1716), 1, + STATE(1748), 1, sym_or_block, - STATE(4166), 1, + STATE(4097), 1, sym_type_parameters, - ACTIONS(4324), 2, + ACTIONS(4330), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4350), 2, + ACTIONS(4356), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4332), 4, + ACTIONS(4338), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4336), 6, + ACTIONS(4342), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4334), 8, + ACTIONS(4340), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -190570,22 +191519,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2076), 28, + ACTIONS(2052), 21, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_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, + [1852] = 12, + ACTIONS(493), 1, + sym_comment, + ACTIONS(4336), 1, + anon_sym_LPAREN, + ACTIONS(4344), 1, + anon_sym_LBRACK, + ACTIONS(4352), 1, + anon_sym_QMARK, + ACTIONS(4354), 1, + anon_sym_BANG, + STATE(1733), 1, + sym_argument_list, + STATE(1748), 1, + sym_or_block, + STATE(4097), 1, + sym_type_parameters, + ACTIONS(4330), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4356), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(2184), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(2162), 45, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_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_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, @@ -190599,62 +191615,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1468] = 24, - ACTIONS(487), 1, + [1938] = 16, + ACTIONS(493), 1, sym_comment, - ACTIONS(4326), 1, - anon_sym_as, - ACTIONS(4330), 1, + ACTIONS(4336), 1, anon_sym_LPAREN, - ACTIONS(4338), 1, - anon_sym_LBRACK, - ACTIONS(4342), 1, - anon_sym_PLUS_PLUS, ACTIONS(4344), 1, - anon_sym_DASH_DASH, - ACTIONS(4346), 1, + anon_sym_LBRACK, + ACTIONS(4352), 1, anon_sym_QMARK, - ACTIONS(4348), 1, + ACTIONS(4354), 1, anon_sym_BANG, - ACTIONS(4356), 1, - anon_sym_AMP_AMP, - ACTIONS(4358), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, - anon_sym_or, - ACTIONS(4362), 1, - anon_sym_is, - ACTIONS(4364), 1, - anon_sym_BANGis, - ACTIONS(4366), 1, + ACTIONS(4372), 1, anon_sym_in, - ACTIONS(4368), 1, + ACTIONS(4374), 1, anon_sym_BANGin, - STATE(1715), 1, + STATE(1733), 1, sym_argument_list, - STATE(1716), 1, + STATE(1748), 1, sym_or_block, - STATE(4166), 1, + STATE(4097), 1, sym_type_parameters, - ACTIONS(4324), 2, + ACTIONS(4330), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4350), 2, + ACTIONS(4356), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4332), 4, + ACTIONS(4338), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4336), 6, + ACTIONS(4342), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4334), 8, + ACTIONS(4340), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -190663,15 +191663,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2210), 21, + ACTIONS(2162), 29, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_LT_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -190685,35 +191693,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1578] = 13, - ACTIONS(487), 1, + [2032] = 12, + ACTIONS(493), 1, sym_comment, - ACTIONS(4330), 1, + ACTIONS(4336), 1, anon_sym_LPAREN, - ACTIONS(4338), 1, + ACTIONS(4344), 1, anon_sym_LBRACK, - ACTIONS(4346), 1, + ACTIONS(4352), 1, anon_sym_QMARK, - ACTIONS(4348), 1, + ACTIONS(4354), 1, + anon_sym_BANG, + STATE(1733), 1, + sym_argument_list, + STATE(1748), 1, + sym_or_block, + STATE(4097), 1, + sym_type_parameters, + ACTIONS(4330), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4356), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4340), 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(2162), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [2118] = 13, + ACTIONS(493), 1, + sym_comment, + ACTIONS(4336), 1, + anon_sym_LPAREN, + ACTIONS(4344), 1, + anon_sym_LBRACK, + ACTIONS(4352), 1, + anon_sym_QMARK, + ACTIONS(4354), 1, anon_sym_BANG, - STATE(1715), 1, + STATE(1733), 1, sym_argument_list, - STATE(1716), 1, + STATE(1748), 1, sym_or_block, - STATE(4166), 1, + STATE(4097), 1, sym_type_parameters, - ACTIONS(4324), 2, + ACTIONS(4330), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4350), 2, + ACTIONS(4356), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4332), 4, + ACTIONS(4338), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4334), 8, + ACTIONS(4340), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -190722,7 +191804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2108), 37, + ACTIONS(2162), 37, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -190760,35 +191842,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1666] = 13, - ACTIONS(487), 1, + [2206] = 17, + ACTIONS(493), 1, sym_comment, - ACTIONS(4330), 1, + ACTIONS(4336), 1, anon_sym_LPAREN, - ACTIONS(4338), 1, + ACTIONS(4344), 1, anon_sym_LBRACK, - ACTIONS(4346), 1, + ACTIONS(4352), 1, anon_sym_QMARK, - ACTIONS(4348), 1, + ACTIONS(4354), 1, anon_sym_BANG, - STATE(1715), 1, + ACTIONS(4362), 1, + anon_sym_AMP_AMP, + ACTIONS(4372), 1, + anon_sym_in, + ACTIONS(4374), 1, + anon_sym_BANGin, + STATE(1733), 1, sym_argument_list, - STATE(1716), 1, + STATE(1748), 1, sym_or_block, - STATE(4166), 1, + STATE(4097), 1, sym_type_parameters, - ACTIONS(4324), 2, + ACTIONS(4330), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4350), 2, + ACTIONS(4356), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4332), 4, + ACTIONS(4338), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4334), 8, + ACTIONS(4342), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4340), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -190797,7 +191892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2112), 37, + ACTIONS(2162), 28, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -190805,23 +191900,14 @@ 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, 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, @@ -190835,39 +191921,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1754] = 12, - ACTIONS(487), 1, + [2302] = 11, + ACTIONS(493), 1, sym_comment, - ACTIONS(4330), 1, + ACTIONS(4336), 1, anon_sym_LPAREN, - ACTIONS(4338), 1, + ACTIONS(4344), 1, anon_sym_LBRACK, - ACTIONS(4346), 1, + ACTIONS(4352), 1, anon_sym_QMARK, - ACTIONS(4348), 1, + ACTIONS(4354), 1, anon_sym_BANG, - STATE(1715), 1, + STATE(1733), 1, sym_argument_list, - STATE(1716), 1, + STATE(1748), 1, sym_or_block, - STATE(4166), 1, + STATE(4097), 1, sym_type_parameters, - ACTIONS(4324), 2, + ACTIONS(4330), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4350), 2, + ACTIONS(4356), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4334), 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(2076), 41, + ACTIONS(2246), 49, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -190878,6 +191955,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_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, @@ -190888,7 +191968,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -190909,37 +191994,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1840] = 12, - ACTIONS(487), 1, + [2386] = 5, + ACTIONS(493), 1, sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN, - ACTIONS(4338), 1, + ACTIONS(2396), 1, anon_sym_LBRACK, - ACTIONS(4346), 1, - anon_sym_QMARK, - ACTIONS(4348), 1, - anon_sym_BANG, - STATE(1715), 1, - sym_argument_list, - STATE(1716), 1, - sym_or_block, - STATE(4166), 1, - sym_type_parameters, - ACTIONS(4324), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4350), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(2092), 4, + ACTIONS(4376), 1, + anon_sym_else, + STATE(1702), 1, + sym_else_branch, + ACTIONS(2398), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(2076), 45, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -190956,6 +192028,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_DASH, @@ -190966,6 +192041,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, @@ -190983,36 +192060,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1926] = 11, - ACTIONS(487), 1, + [2457] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN, - ACTIONS(4338), 1, + ACTIONS(2692), 1, anon_sym_LBRACK, - ACTIONS(4346), 1, - anon_sym_QMARK, - ACTIONS(4348), 1, - anon_sym_BANG, - STATE(1715), 1, - sym_argument_list, - STATE(1716), 1, - sym_or_block, - STATE(4166), 1, - sym_type_parameters, - ACTIONS(4324), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4350), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(2230), 49, + ACTIONS(2694), 58, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -191029,6 +192090,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_DASH, @@ -191039,6 +192103,10 @@ 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, @@ -191056,83 +192124,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2010] = 29, - ACTIONS(487), 1, + [2524] = 26, + ACTIONS(493), 1, sym_comment, - ACTIONS(4326), 1, + ACTIONS(4380), 1, anon_sym_as, - ACTIONS(4328), 1, - anon_sym_COMMA, - ACTIONS(4330), 1, + ACTIONS(4382), 1, anon_sym_LPAREN, - ACTIONS(4338), 1, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(4342), 1, + ACTIONS(4392), 1, anon_sym_PLUS_PLUS, - ACTIONS(4344), 1, + ACTIONS(4394), 1, anon_sym_DASH_DASH, - ACTIONS(4346), 1, + ACTIONS(4396), 1, anon_sym_QMARK, - ACTIONS(4348), 1, + ACTIONS(4398), 1, anon_sym_BANG, - ACTIONS(4352), 1, - anon_sym_LT_DASH, - ACTIONS(4354), 1, - anon_sym_LT_LT, - ACTIONS(4356), 1, + ACTIONS(4402), 1, anon_sym_AMP_AMP, - ACTIONS(4358), 1, + ACTIONS(4404), 1, anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, + ACTIONS(4406), 1, anon_sym_or, - ACTIONS(4362), 1, + ACTIONS(4408), 1, anon_sym_is, - ACTIONS(4364), 1, + ACTIONS(4410), 1, anon_sym_BANGis, - ACTIONS(4366), 1, + ACTIONS(4412), 1, anon_sym_in, - ACTIONS(4368), 1, + ACTIONS(4414), 1, anon_sym_BANGin, - STATE(1715), 1, + STATE(1839), 1, sym_argument_list, - STATE(1716), 1, + STATE(1840), 1, sym_or_block, - STATE(3349), 1, + STATE(3561), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4166), 1, + STATE(4269), 1, sym_type_parameters, - ACTIONS(4324), 2, + ACTIONS(4378), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4350), 2, + ACTIONS(4400), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(1766), 4, + ACTIONS(1710), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - ACTIONS(4332), 4, + ACTIONS(4384), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4336), 6, + ACTIONS(4388), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4334), 7, + ACTIONS(4386), 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(1770), 14, + ACTIONS(1716), 15, + anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -191147,36 +192211,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2130] = 11, - ACTIONS(487), 1, + [2637] = 5, + ACTIONS(493), 1, sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN, - ACTIONS(4338), 1, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(4346), 1, - anon_sym_QMARK, - ACTIONS(4348), 1, - anon_sym_BANG, - STATE(1715), 1, - sym_argument_list, - STATE(1716), 1, - sym_or_block, - STATE(4166), 1, - sym_type_parameters, - ACTIONS(4324), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4350), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(2164), 49, + ACTIONS(4376), 1, + anon_sym_else, + STATE(1704), 1, + sym_else_branch, + ACTIONS(2392), 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, @@ -191193,6 +192245,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_DASH, @@ -191203,6 +192258,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, @@ -191220,51 +192277,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2214] = 13, - ACTIONS(487), 1, + [2708] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN, - ACTIONS(4338), 1, + ACTIONS(2734), 1, anon_sym_LBRACK, - ACTIONS(4346), 1, - anon_sym_QMARK, - ACTIONS(4348), 1, - anon_sym_BANG, - STATE(1715), 1, - sym_argument_list, - STATE(1716), 1, - sym_or_block, - STATE(4166), 1, - sym_type_parameters, - ACTIONS(4324), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4350), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4332), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4334), 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(2076), 37, + ACTIONS(2736), 58, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -191274,10 +192307,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -191295,36 +192341,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2302] = 11, - ACTIONS(487), 1, + [2775] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN, - ACTIONS(4338), 1, + ACTIONS(3127), 1, anon_sym_LBRACK, - ACTIONS(4346), 1, - anon_sym_QMARK, - ACTIONS(4348), 1, - anon_sym_BANG, - STATE(1715), 1, - sym_argument_list, - STATE(1716), 1, - sym_or_block, - STATE(4166), 1, - sym_type_parameters, - ACTIONS(4324), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4350), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(2076), 49, + ACTIONS(3129), 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, @@ -191341,6 +192372,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_DASH, @@ -191351,6 +192385,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, @@ -191368,53 +192404,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2386] = 3, - ACTIONS(487), 1, + [2841] = 13, + ACTIONS(493), 1, sym_comment, - ACTIONS(2698), 1, + ACTIONS(4382), 1, + anon_sym_LPAREN, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(2700), 58, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4396), 1, + anon_sym_QMARK, + ACTIONS(4398), 1, + anon_sym_BANG, + STATE(1839), 1, + sym_argument_list, + STATE(1840), 1, + sym_or_block, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4378), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_QMARK_DOT, + ACTIONS(4400), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4384), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4386), 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(2156), 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_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, @@ -191432,69 +192477,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2453] = 26, - ACTIONS(487), 1, + [2927] = 16, + ACTIONS(493), 1, sym_comment, - ACTIONS(4372), 1, - anon_sym_as, - ACTIONS(4374), 1, - anon_sym_LPAREN, ACTIONS(4382), 1, - anon_sym_LBRACK, - ACTIONS(4384), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4386), 1, - anon_sym_DASH_DASH, - ACTIONS(4388), 1, - anon_sym_QMARK, - ACTIONS(4390), 1, - anon_sym_BANG, - ACTIONS(4394), 1, - anon_sym_AMP_AMP, + anon_sym_LPAREN, + ACTIONS(4390), 1, + anon_sym_LBRACK, ACTIONS(4396), 1, - anon_sym_PIPE_PIPE, + anon_sym_QMARK, ACTIONS(4398), 1, - anon_sym_or, - ACTIONS(4400), 1, - anon_sym_is, - ACTIONS(4402), 1, - anon_sym_BANGis, - ACTIONS(4404), 1, + anon_sym_BANG, + ACTIONS(4412), 1, anon_sym_in, - ACTIONS(4406), 1, + ACTIONS(4414), 1, anon_sym_BANGin, - STATE(1854), 1, - sym_or_block, - STATE(1861), 1, + STATE(1839), 1, sym_argument_list, - STATE(3569), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4399), 1, + STATE(1840), 1, + sym_or_block, + STATE(4269), 1, sym_type_parameters, - ACTIONS(4370), 2, + ACTIONS(4378), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4392), 2, + ACTIONS(4400), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(1684), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(4376), 4, + ACTIONS(4384), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4380), 6, + ACTIONS(4388), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4378), 8, + ACTIONS(4386), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -191503,9 +192525,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1690), 15, + ACTIONS(2162), 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, @@ -191519,15 +192553,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2566] = 3, - ACTIONS(487), 1, + [3019] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2728), 1, + ACTIONS(3104), 1, anon_sym_LBRACK, - ACTIONS(2730), 58, + ACTIONS(3106), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -191564,8 +192599,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, @@ -191583,16 +192616,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2633] = 5, - ACTIONS(487), 1, + [3085] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(2404), 1, + ACTIONS(2745), 1, anon_sym_LBRACK, - ACTIONS(4408), 1, - anon_sym_else, - STATE(1724), 1, - sym_else_branch, - ACTIONS(2406), 56, + ACTIONS(2846), 1, + anon_sym_LBRACE, + ACTIONS(2740), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191649,16 +192680,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2704] = 5, - ACTIONS(487), 1, + [3153] = 5, + ACTIONS(493), 1, sym_comment, - ACTIONS(2398), 1, + ACTIONS(2745), 1, anon_sym_LBRACK, - ACTIONS(4408), 1, - anon_sym_else, - STATE(1729), 1, - sym_else_branch, - ACTIONS(2400), 56, + ACTIONS(2748), 1, + anon_sym_COLON, + ACTIONS(2846), 1, + anon_sym_LBRACE, + ACTIONS(2740), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191680,7 +192711,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -191715,56 +192745,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2775] = 3, - ACTIONS(487), 1, + [3223] = 32, + ACTIONS(3), 1, sym_comment, - ACTIONS(2913), 1, - anon_sym_LBRACK, - ACTIONS(2915), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(1774), 1, anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(1780), 1, + anon_sym_EQ, + ACTIONS(4418), 1, anon_sym_as, + ACTIONS(4420), 1, + anon_sym_LBRACE, + ACTIONS(4422), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4424), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(4434), 1, + anon_sym_LBRACK, + ACTIONS(4436), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4438), 1, + anon_sym_DASH_DASH, + ACTIONS(4440), 1, + anon_sym_QMARK, + ACTIONS(4442), 1, + anon_sym_BANG, + ACTIONS(4444), 1, + anon_sym_LBRACK2, + ACTIONS(4446), 1, + anon_sym_AMP_AMP, + ACTIONS(4448), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4450), 1, + anon_sym_or, + ACTIONS(4452), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4454), 1, + anon_sym_is, + ACTIONS(4456), 1, + anon_sym_BANGis, + ACTIONS(4458), 1, + anon_sym_in, + ACTIONS(4460), 1, + anon_sym_BANGin, + STATE(1561), 1, + sym_block, + STATE(1979), 1, + sym_argument_list, + STATE(1980), 1, + sym_or_block, + STATE(3357), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4384), 1, + sym_type_parameters, + ACTIONS(4416), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4430), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4426), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_CARET, + ACTIONS(4432), 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(4428), 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(3233), 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, + [3347] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1774), 1, + anon_sym_SEMI, + ACTIONS(1780), 1, + anon_sym_EQ, + ACTIONS(4418), 1, + anon_sym_as, + ACTIONS(4422), 1, + anon_sym_COMMA, + ACTIONS(4424), 1, + anon_sym_LPAREN, + ACTIONS(4434), 1, + anon_sym_LBRACK, + ACTIONS(4436), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4438), 1, + anon_sym_DASH_DASH, + ACTIONS(4440), 1, + anon_sym_QMARK, + ACTIONS(4442), 1, + anon_sym_BANG, + ACTIONS(4444), 1, + anon_sym_LBRACK2, + ACTIONS(4446), 1, anon_sym_AMP_AMP, + ACTIONS(4448), 1, anon_sym_PIPE_PIPE, + ACTIONS(4450), 1, anon_sym_or, - anon_sym_QMARK_DOT, + ACTIONS(4452), 1, anon_sym_POUND_LBRACK, + ACTIONS(4454), 1, anon_sym_is, + ACTIONS(4456), 1, anon_sym_BANGis, + ACTIONS(4458), 1, anon_sym_in, + ACTIONS(4460), 1, anon_sym_BANGin, + ACTIONS(4462), 1, + anon_sym_LBRACE, + STATE(1979), 1, + sym_argument_list, + STATE(1980), 1, + sym_or_block, + STATE(3357), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3780), 1, + sym_block, + STATE(4384), 1, + sym_type_parameters, + ACTIONS(4416), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4430), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4426), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4432), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4428), 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(3233), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -191778,56 +192929,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2841] = 3, - ACTIONS(487), 1, + [3471] = 24, + ACTIONS(493), 1, sym_comment, - ACTIONS(3095), 1, - anon_sym_LBRACK, - ACTIONS(3097), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(4380), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4382), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(4390), 1, + anon_sym_LBRACK, + ACTIONS(4392), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4394), 1, + anon_sym_DASH_DASH, + ACTIONS(4396), 1, + anon_sym_QMARK, + ACTIONS(4398), 1, + anon_sym_BANG, + ACTIONS(4402), 1, + anon_sym_AMP_AMP, + ACTIONS(4404), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4406), 1, + anon_sym_or, + ACTIONS(4412), 1, + anon_sym_in, + ACTIONS(4414), 1, + anon_sym_BANGin, + ACTIONS(4464), 1, + anon_sym_is, + ACTIONS(4466), 1, + anon_sym_BANGis, + STATE(1839), 1, + sym_argument_list, + STATE(1840), 1, + sym_or_block, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4378), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4400), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4384), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4388), 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(4386), 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(2172), 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, @@ -191841,52 +193013,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2907] = 3, - ACTIONS(487), 1, + [3579] = 12, + ACTIONS(493), 1, sym_comment, - ACTIONS(3107), 1, + ACTIONS(4382), 1, + anon_sym_LPAREN, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(3109), 57, + ACTIONS(4396), 1, + anon_sym_QMARK, + ACTIONS(4398), 1, + anon_sym_BANG, + STATE(1839), 1, + sym_argument_list, + STATE(1840), 1, + sym_or_block, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4378), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4400), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4386), 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(2162), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -191904,12 +193085,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2973] = 3, - ACTIONS(487), 1, + [3663] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3111), 1, + ACTIONS(2864), 1, anon_sym_LBRACK, - ACTIONS(3113), 57, + ACTIONS(2866), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191967,56 +193148,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3039] = 3, - ACTIONS(487), 1, + [3729] = 17, + ACTIONS(493), 1, sym_comment, - ACTIONS(3119), 1, + ACTIONS(4382), 1, + anon_sym_LPAREN, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(3121), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4396), 1, + anon_sym_QMARK, + ACTIONS(4398), 1, + anon_sym_BANG, + ACTIONS(4402), 1, + anon_sym_AMP_AMP, + ACTIONS(4412), 1, + anon_sym_in, + ACTIONS(4414), 1, + anon_sym_BANGin, + STATE(1839), 1, + sym_argument_list, + STATE(1840), 1, + sym_or_block, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4378), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_QMARK_DOT, + ACTIONS(4400), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4384), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4388), 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(4386), 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(2162), 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, @@ -192030,52 +193225,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3105] = 3, - ACTIONS(487), 1, + [3823] = 13, + ACTIONS(493), 1, sym_comment, - ACTIONS(3127), 1, + ACTIONS(4382), 1, + anon_sym_LPAREN, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(3129), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4396), 1, + anon_sym_QMARK, + ACTIONS(4398), 1, + anon_sym_BANG, + STATE(1839), 1, + sym_argument_list, + STATE(1840), 1, + sym_or_block, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4378), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_QMARK_DOT, + ACTIONS(4400), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4384), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4386), 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(2144), 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_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, @@ -192093,30 +193298,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3171] = 11, - ACTIONS(487), 1, + [3909] = 13, + ACTIONS(493), 1, sym_comment, - ACTIONS(4374), 1, - anon_sym_LPAREN, ACTIONS(4382), 1, + anon_sym_LPAREN, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(4388), 1, + ACTIONS(4396), 1, anon_sym_QMARK, - ACTIONS(4390), 1, + ACTIONS(4398), 1, anon_sym_BANG, - STATE(1854), 1, - sym_or_block, - STATE(1861), 1, + STATE(1839), 1, sym_argument_list, - STATE(4399), 1, + STATE(1840), 1, + sym_or_block, + STATE(4269), 1, sym_type_parameters, - ACTIONS(4370), 2, + ACTIONS(4378), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4392), 2, + ACTIONS(4400), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(2076), 47, + ACTIONS(4384), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4386), 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(2162), 35, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -192124,12 +193343,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -192138,12 +193351,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -192164,12 +193371,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3253] = 3, - ACTIONS(487), 1, + [3995] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2901), 1, + ACTIONS(2872), 1, anon_sym_LBRACK, - ACTIONS(2903), 57, + ACTIONS(2874), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -192227,96 +193434,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3319] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4372), 1, - anon_sym_as, - ACTIONS(4374), 1, - anon_sym_LPAREN, - ACTIONS(4382), 1, - anon_sym_LBRACK, - ACTIONS(4384), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4386), 1, - anon_sym_DASH_DASH, - ACTIONS(4388), 1, - anon_sym_QMARK, - ACTIONS(4390), 1, - anon_sym_BANG, - ACTIONS(4394), 1, - anon_sym_AMP_AMP, - ACTIONS(4396), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, - anon_sym_or, - ACTIONS(4404), 1, - anon_sym_in, - ACTIONS(4406), 1, - anon_sym_BANGin, - ACTIONS(4410), 1, - anon_sym_is, - ACTIONS(4412), 1, - anon_sym_BANGis, - STATE(1854), 1, - sym_or_block, - STATE(1861), 1, - sym_argument_list, - STATE(4399), 1, - sym_type_parameters, - ACTIONS(4370), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4392), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4376), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4380), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4378), 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(2124), 19, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [3427] = 3, - ACTIONS(487), 1, + [4061] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(2762), 1, anon_sym_LBRACK, - ACTIONS(2704), 57, + ACTIONS(2764), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -192374,17 +193497,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3493] = 4, - ACTIONS(487), 1, + [4127] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2738), 1, + ACTIONS(3084), 1, anon_sym_LBRACK, - ACTIONS(4414), 1, - anon_sym_DOLLARelse, - ACTIONS(2740), 56, + ACTIONS(3086), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -192438,12 +193560,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3561] = 3, - ACTIONS(487), 1, + [4193] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2917), 1, + ACTIONS(3044), 1, anon_sym_LBRACK, - ACTIONS(2919), 57, + ACTIONS(3046), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -192501,16 +193623,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3627] = 3, - ACTIONS(487), 1, + [4259] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(2933), 1, + ACTIONS(2784), 1, + anon_sym_LBRACE, + ACTIONS(2836), 1, anon_sym_LBRACK, - ACTIONS(2935), 57, + ACTIONS(2838), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -192564,61 +193687,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3693] = 12, - ACTIONS(487), 1, + [4327] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(4374), 1, - anon_sym_LPAREN, - ACTIONS(4382), 1, + ACTIONS(3040), 1, anon_sym_LBRACK, - ACTIONS(4388), 1, - anon_sym_QMARK, - ACTIONS(4390), 1, - anon_sym_BANG, - STATE(1854), 1, - sym_or_block, - STATE(1861), 1, - sym_argument_list, - STATE(4399), 1, - sym_type_parameters, - ACTIONS(4370), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4392), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4378), 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(2076), 39, + 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_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, @@ -192636,17 +193750,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3777] = 4, - ACTIONS(487), 1, + [4393] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2777), 1, + ACTIONS(3036), 1, anon_sym_LBRACK, - ACTIONS(3029), 1, - anon_sym_LBRACE, - ACTIONS(2772), 56, + ACTIONS(3038), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -192700,16 +193813,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3845] = 3, - ACTIONS(487), 1, + [4459] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(2937), 1, + ACTIONS(2692), 1, anon_sym_LBRACK, - ACTIONS(2939), 57, + ACTIONS(2784), 1, + anon_sym_LBRACE, + ACTIONS(2694), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -192763,44 +193877,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3911] = 13, - ACTIONS(487), 1, + [4527] = 11, + ACTIONS(493), 1, sym_comment, - ACTIONS(4374), 1, - anon_sym_LPAREN, ACTIONS(4382), 1, + anon_sym_LPAREN, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(4388), 1, + ACTIONS(4396), 1, anon_sym_QMARK, - ACTIONS(4390), 1, + ACTIONS(4398), 1, anon_sym_BANG, - STATE(1854), 1, - sym_or_block, - STATE(1861), 1, + STATE(1839), 1, sym_argument_list, - STATE(4399), 1, + STATE(1840), 1, + sym_or_block, + STATE(4269), 1, sym_type_parameters, - ACTIONS(4370), 2, + ACTIONS(4378), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4392), 2, + ACTIONS(4400), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4376), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4378), 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(2076), 35, + ACTIONS(2246), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -192808,6 +193908,12 @@ 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, @@ -192816,6 +193922,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -192836,69 +193948,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3997] = 16, - ACTIONS(487), 1, + [4609] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(4374), 1, - anon_sym_LPAREN, - ACTIONS(4382), 1, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(4388), 1, - anon_sym_QMARK, - ACTIONS(4390), 1, - anon_sym_BANG, - ACTIONS(4404), 1, - anon_sym_in, - ACTIONS(4406), 1, - anon_sym_BANGin, - STATE(1854), 1, - sym_or_block, - STATE(1861), 1, - sym_argument_list, - STATE(4399), 1, - sym_type_parameters, - ACTIONS(4370), 2, + ACTIONS(3030), 57, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4392), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4376), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4380), 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(4378), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2076), 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, @@ -192912,139 +194011,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4089] = 17, - ACTIONS(487), 1, + [4675] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(4374), 1, - anon_sym_LPAREN, - ACTIONS(4382), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(4388), 1, - anon_sym_QMARK, - ACTIONS(4390), 1, - anon_sym_BANG, - ACTIONS(4394), 1, - anon_sym_AMP_AMP, - ACTIONS(4404), 1, - anon_sym_in, - ACTIONS(4406), 1, - anon_sym_BANGin, - STATE(1854), 1, - sym_or_block, - STATE(1861), 1, - sym_argument_list, - STATE(4399), 1, - sym_type_parameters, - ACTIONS(4370), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4392), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4376), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4380), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4378), 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(2076), 26, + ACTIONS(2882), 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_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [4183] = 13, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4374), 1, anon_sym_LPAREN, - ACTIONS(4382), 1, - anon_sym_LBRACK, - ACTIONS(4388), 1, - anon_sym_QMARK, - ACTIONS(4390), 1, - anon_sym_BANG, - STATE(1854), 1, - sym_or_block, - STATE(1861), 1, - sym_argument_list, - STATE(4399), 1, - sym_type_parameters, - ACTIONS(4370), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4392), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4376), 4, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4378), 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(2108), 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_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, @@ -193062,62 +194074,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4269] = 13, - ACTIONS(487), 1, + [4741] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(4374), 1, - anon_sym_LPAREN, - ACTIONS(4382), 1, + ACTIONS(2804), 1, anon_sym_LBRACK, - ACTIONS(4388), 1, - anon_sym_QMARK, - ACTIONS(4390), 1, - anon_sym_BANG, - STATE(1854), 1, - sym_or_block, - STATE(1861), 1, - sym_argument_list, - STATE(4399), 1, - sym_type_parameters, - ACTIONS(4370), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4392), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4376), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4378), 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(2112), 35, + ACTIONS(2806), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -193135,12 +194137,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4355] = 3, - ACTIONS(487), 1, + [4807] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2991), 1, + ACTIONS(2908), 1, anon_sym_LBRACK, - ACTIONS(2993), 57, + ACTIONS(2910), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193198,56 +194200,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4421] = 3, - ACTIONS(487), 1, + [4873] = 24, + ACTIONS(493), 1, sym_comment, - ACTIONS(3007), 1, - anon_sym_LBRACK, - ACTIONS(3009), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(4380), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4382), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(4390), 1, + anon_sym_LBRACK, + ACTIONS(4392), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4394), 1, + anon_sym_DASH_DASH, + ACTIONS(4396), 1, + anon_sym_QMARK, + ACTIONS(4398), 1, + anon_sym_BANG, + ACTIONS(4402), 1, + anon_sym_AMP_AMP, + ACTIONS(4404), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4406), 1, + anon_sym_or, + ACTIONS(4408), 1, + anon_sym_is, + ACTIONS(4410), 1, + anon_sym_BANGis, + ACTIONS(4412), 1, + anon_sym_in, + ACTIONS(4414), 1, + anon_sym_BANGin, + STATE(1839), 1, + sym_argument_list, + STATE(1840), 1, + sym_or_block, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4378), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4400), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4384), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4388), 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(4386), 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(2052), 19, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [4981] = 24, + ACTIONS(493), 1, + sym_comment, + ACTIONS(4380), 1, + anon_sym_as, + ACTIONS(4382), 1, + anon_sym_LPAREN, + ACTIONS(4390), 1, + anon_sym_LBRACK, + ACTIONS(4392), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4394), 1, + anon_sym_DASH_DASH, + ACTIONS(4396), 1, + anon_sym_QMARK, + ACTIONS(4398), 1, + anon_sym_BANG, + ACTIONS(4402), 1, anon_sym_AMP_AMP, + ACTIONS(4404), 1, anon_sym_PIPE_PIPE, + ACTIONS(4406), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4408), 1, anon_sym_is, + ACTIONS(4410), 1, anon_sym_BANGis, + ACTIONS(4412), 1, anon_sym_in, + ACTIONS(4414), 1, anon_sym_BANGin, + STATE(1839), 1, + sym_argument_list, + STATE(1840), 1, + sym_or_block, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4378), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4400), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4384), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4388), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4386), 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(2234), 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, @@ -193261,12 +194368,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4487] = 3, - ACTIONS(487), 1, + [5089] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3079), 1, + ACTIONS(3080), 1, anon_sym_LBRACK, - ACTIONS(3081), 57, + ACTIONS(3082), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193324,16 +194431,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4553] = 3, - ACTIONS(487), 1, + [5155] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(2838), 1, + ACTIONS(2756), 1, anon_sym_LBRACK, - ACTIONS(2840), 57, + ACTIONS(4468), 1, + anon_sym_DOLLARelse, + ACTIONS(2758), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -193387,21 +194495,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4619] = 3, - ACTIONS(487), 1, + [5223] = 11, + ACTIONS(493), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(4382), 1, + anon_sym_LPAREN, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(2844), 57, + ACTIONS(4396), 1, + anon_sym_QMARK, + ACTIONS(4398), 1, + anon_sym_BANG, + STATE(1839), 1, + sym_argument_list, + STATE(1840), 1, + sym_or_block, + STATE(4269), 1, + sym_type_parameters, + ACTIONS(4378), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4400), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(2224), 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, @@ -193415,15 +194538,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -193431,8 +194549,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, @@ -193450,75 +194566,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4685] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4418), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4416), 35, - 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, - anon_sym_AT, - 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_POUND, - anon_sym_asm, - [4751] = 3, - ACTIONS(487), 1, + [5305] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2782), 1, + ACTIONS(2820), 1, anon_sym_LBRACK, - ACTIONS(2784), 57, + ACTIONS(2822), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193576,16 +194629,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4817] = 3, - ACTIONS(487), 1, + [5371] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(2854), 1, + ACTIONS(2762), 1, anon_sym_LBRACK, - ACTIONS(2856), 57, + STATE(1764), 1, + sym_type_parameters, + ACTIONS(2764), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -193639,12 +194693,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4883] = 3, - ACTIONS(487), 1, + [5439] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2925), 1, + ACTIONS(2884), 1, anon_sym_LBRACK, - ACTIONS(2927), 57, + ACTIONS(2886), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193702,85 +194756,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4949] = 32, - ACTIONS(3), 1, + [5505] = 11, + ACTIONS(493), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym_SEMI, - ACTIONS(1770), 1, - anon_sym_EQ, - ACTIONS(4422), 1, - anon_sym_as, - ACTIONS(4424), 1, - anon_sym_LBRACE, - ACTIONS(4426), 1, - anon_sym_COMMA, - ACTIONS(4428), 1, + ACTIONS(4382), 1, anon_sym_LPAREN, - ACTIONS(4438), 1, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, - anon_sym_DASH_DASH, - ACTIONS(4444), 1, + ACTIONS(4396), 1, anon_sym_QMARK, - ACTIONS(4446), 1, + ACTIONS(4398), 1, anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4450), 1, - anon_sym_AMP_AMP, - ACTIONS(4452), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4454), 1, - anon_sym_or, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4458), 1, - anon_sym_is, - ACTIONS(4460), 1, - anon_sym_BANGis, - ACTIONS(4462), 1, - anon_sym_in, - ACTIONS(4464), 1, - anon_sym_BANGin, - STATE(1529), 1, - sym_block, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, + STATE(1839), 1, sym_argument_list, - STATE(3349), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4313), 1, + STATE(1840), 1, + sym_or_block, + STATE(4269), 1, sym_type_parameters, - ACTIONS(4420), 2, + ACTIONS(4378), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4434), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4430), 4, + ACTIONS(4400), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(2162), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4436), 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(4432), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3227), 13, + 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, @@ -193794,12 +194827,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5073] = 3, - ACTIONS(487), 1, + [5587] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2957), 1, + ACTIONS(2832), 1, anon_sym_LBRACK, - ACTIONS(2959), 57, + ACTIONS(2834), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193857,17 +194890,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5139] = 4, - ACTIONS(487), 1, + [5653] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2698), 1, + ACTIONS(2840), 1, anon_sym_LBRACK, - ACTIONS(2766), 1, - anon_sym_LBRACE, - ACTIONS(2700), 56, + ACTIONS(2842), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -193921,12 +194953,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5207] = 3, - ACTIONS(487), 1, + [5719] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2987), 1, + ACTIONS(2924), 1, anon_sym_LBRACK, - ACTIONS(2989), 57, + ACTIONS(2926), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193984,14 +195016,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5273] = 4, - ACTIONS(487), 1, + [5785] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(2614), 1, anon_sym_LBRACK, - STATE(1744), 1, - sym_type_parameters, - ACTIONS(2704), 56, + ACTIONS(4470), 1, + anon_sym_DOLLARelse, + ACTIONS(2616), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194048,17 +195080,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5341] = 4, - ACTIONS(487), 1, + [5853] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2777), 1, + ACTIONS(2892), 1, anon_sym_LBRACK, - ACTIONS(3029), 1, - anon_sym_LBRACE, - ACTIONS(2772), 56, + ACTIONS(2894), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -194112,14 +195143,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5409] = 4, - ACTIONS(487), 1, + [5919] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(2766), 1, - anon_sym_LBRACE, - ACTIONS(2965), 1, + ACTIONS(2745), 1, anon_sym_LBRACK, - ACTIONS(2967), 56, + ACTIONS(2846), 1, + anon_sym_LBRACE, + ACTIONS(2740), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194176,17 +195207,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5477] = 4, - ACTIONS(487), 1, + [5987] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2732), 1, + ACTIONS(2912), 1, anon_sym_LBRACK, - ACTIONS(4466), 1, - anon_sym_DOLLARelse, - ACTIONS(2734), 56, + ACTIONS(2914), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -194240,85 +195270,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5545] = 32, + [6053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym_SEMI, - ACTIONS(1770), 1, - anon_sym_EQ, - ACTIONS(4422), 1, - anon_sym_as, - ACTIONS(4426), 1, - anon_sym_COMMA, - ACTIONS(4428), 1, + ACTIONS(4474), 24, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, - anon_sym_DASH_DASH, - ACTIONS(4444), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, - ACTIONS(4446), 1, anon_sym_BANG, - ACTIONS(4448), 1, + anon_sym_json_DOTdecode, anon_sym_LBRACK2, - ACTIONS(4450), 1, - anon_sym_AMP_AMP, - ACTIONS(4452), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4454), 1, - anon_sym_or, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4458), 1, - anon_sym_is, - ACTIONS(4460), 1, - anon_sym_BANGis, - ACTIONS(4462), 1, - anon_sym_in, - ACTIONS(4464), 1, - anon_sym_BANGin, - ACTIONS(4468), 1, - anon_sym_LBRACE, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(3349), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3751), 1, - sym_block, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + anon_sym_POUND, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4472), 34, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4434), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4430), 4, + 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, + anon_sym_AT, + 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, + [6119] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(3008), 1, + anon_sym_LBRACK, + ACTIONS(3010), 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_CARET, - ACTIONS(4436), 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(4432), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3227), 13, + anon_sym_AMP_AMP, + anon_sym_PIPE_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, @@ -194332,36 +195395,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5669] = 11, - ACTIONS(487), 1, + [6184] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(4374), 1, - anon_sym_LPAREN, - ACTIONS(4382), 1, + ACTIONS(3165), 1, anon_sym_LBRACK, - ACTIONS(4388), 1, - anon_sym_QMARK, - ACTIONS(4390), 1, - anon_sym_BANG, - STATE(1854), 1, - sym_or_block, - STATE(1861), 1, - sym_argument_list, - STATE(4399), 1, - sym_type_parameters, - ACTIONS(4370), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4392), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(2164), 47, + ACTIONS(3167), 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, @@ -194375,10 +195422,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -194386,6 +195438,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, @@ -194403,161 +195457,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5751] = 24, - ACTIONS(487), 1, + [6249] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(4372), 1, - anon_sym_as, - ACTIONS(4374), 1, - anon_sym_LPAREN, - ACTIONS(4382), 1, + ACTIONS(2888), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4386), 1, - anon_sym_DASH_DASH, - ACTIONS(4388), 1, - anon_sym_QMARK, - ACTIONS(4390), 1, - anon_sym_BANG, - ACTIONS(4394), 1, - anon_sym_AMP_AMP, - ACTIONS(4396), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, - anon_sym_or, - ACTIONS(4400), 1, - anon_sym_is, - ACTIONS(4402), 1, - anon_sym_BANGis, - ACTIONS(4404), 1, - anon_sym_in, - ACTIONS(4406), 1, - anon_sym_BANGin, - STATE(1854), 1, - sym_or_block, - STATE(1861), 1, - sym_argument_list, - STATE(4399), 1, - sym_type_parameters, - ACTIONS(4370), 2, + ACTIONS(2890), 56, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4392), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4376), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4380), 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(4378), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2210), 19, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [5859] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4372), 1, - anon_sym_as, - ACTIONS(4374), 1, - anon_sym_LPAREN, - ACTIONS(4382), 1, - anon_sym_LBRACK, - ACTIONS(4384), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4386), 1, - anon_sym_DASH_DASH, - ACTIONS(4388), 1, - anon_sym_QMARK, - ACTIONS(4390), 1, - anon_sym_BANG, - ACTIONS(4394), 1, anon_sym_AMP_AMP, - ACTIONS(4396), 1, anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, anon_sym_or, - ACTIONS(4400), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(4402), 1, anon_sym_BANGis, - ACTIONS(4404), 1, anon_sym_in, - ACTIONS(4406), 1, anon_sym_BANGin, - STATE(1854), 1, - sym_or_block, - STATE(1861), 1, - sym_argument_list, - STATE(4399), 1, - sym_type_parameters, - ACTIONS(4370), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4392), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4376), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4380), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4378), 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(2220), 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, @@ -194571,36 +195519,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5967] = 11, - ACTIONS(487), 1, + [6314] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(4374), 1, - anon_sym_LPAREN, - ACTIONS(4382), 1, + ACTIONS(3048), 1, anon_sym_LBRACK, - ACTIONS(4388), 1, - anon_sym_QMARK, - ACTIONS(4390), 1, - anon_sym_BANG, - STATE(1854), 1, - sym_or_block, - STATE(1861), 1, - sym_argument_list, - STATE(4399), 1, - sym_type_parameters, - ACTIONS(4370), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4392), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(2230), 47, + ACTIONS(3050), 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, @@ -194614,10 +195546,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -194625,6 +195562,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, @@ -194642,16 +195581,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6049] = 5, - ACTIONS(487), 1, + [6379] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2777), 1, + ACTIONS(2848), 1, anon_sym_LBRACK, - ACTIONS(2780), 1, - anon_sym_COLON, - ACTIONS(3029), 1, - anon_sym_LBRACE, - ACTIONS(2772), 55, + ACTIONS(2850), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194673,6 +195608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -194707,12 +195643,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6119] = 3, - ACTIONS(487), 1, + [6444] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2850), 1, + ACTIONS(3068), 1, anon_sym_LBRACK, - ACTIONS(2852), 56, + ACTIONS(3070), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194769,12 +195705,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6184] = 3, - ACTIONS(487), 1, + [6509] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2810), 1, + ACTIONS(3060), 1, anon_sym_LBRACK, - ACTIONS(2812), 56, + ACTIONS(3062), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194831,12 +195767,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6249] = 3, - ACTIONS(487), 1, + [6574] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3052), 1, anon_sym_LBRACK, - ACTIONS(3125), 56, + ACTIONS(3054), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194893,12 +195829,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6314] = 3, - ACTIONS(487), 1, + [6639] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(2987), 1, + anon_sym_LBRACK, + ACTIONS(2982), 6, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_LT_DASH, + ACTIONS(2984), 50, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [6706] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(2997), 1, + anon_sym_LBRACK, + ACTIONS(2992), 6, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_LT_DASH, + ACTIONS(2994), 50, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [6773] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2822), 1, + ACTIONS(3032), 1, anon_sym_LBRACK, - ACTIONS(2824), 56, + ACTIONS(3034), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194955,12 +196017,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6379] = 3, - ACTIONS(487), 1, + [6838] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3175), 1, + ACTIONS(2860), 1, anon_sym_LBRACK, - ACTIONS(3177), 56, + ACTIONS(2862), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195017,12 +196079,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6444] = 3, - ACTIONS(487), 1, + [6903] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2818), 1, + ACTIONS(3004), 1, anon_sym_LBRACK, - ACTIONS(2820), 56, + ACTIONS(3006), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195079,12 +196141,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6509] = 3, - ACTIONS(487), 1, + [6968] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2794), 1, + ACTIONS(3024), 1, anon_sym_LBRACK, - ACTIONS(2796), 56, + ACTIONS(3026), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195141,12 +196203,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6574] = 3, - ACTIONS(487), 1, + [7033] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3031), 1, + ACTIONS(3112), 1, anon_sym_LBRACK, - ACTIONS(3033), 56, + ACTIONS(3114), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195203,12 +196265,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6639] = 3, - ACTIONS(487), 1, + [7098] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2806), 1, + ACTIONS(2968), 1, anon_sym_LBRACK, - ACTIONS(2808), 56, + ACTIONS(2970), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195265,12 +196327,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6704] = 3, - ACTIONS(487), 1, + [7163] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2858), 1, + ACTIONS(3064), 1, anon_sym_LBRACK, - ACTIONS(2860), 56, + ACTIONS(3066), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195327,12 +196389,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6769] = 3, - ACTIONS(487), 1, + [7228] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2728), 1, + ACTIONS(3092), 1, anon_sym_LBRACK, - ACTIONS(2730), 56, + ACTIONS(3094), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195354,6 +196416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -195361,6 +196424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -195370,8 +196434,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, @@ -195389,12 +196451,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6834] = 3, - ACTIONS(487), 1, + [7293] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3071), 1, + ACTIONS(3131), 1, anon_sym_LBRACK, - ACTIONS(3073), 56, + ACTIONS(3133), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195451,16 +196513,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6899] = 3, - ACTIONS(487), 1, + [7358] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(3075), 1, + ACTIONS(2742), 1, + anon_sym_DOT, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(3077), 56, + ACTIONS(2846), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -195513,12 +196576,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6964] = 3, - ACTIONS(487), 1, + [7425] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2909), 1, + ACTIONS(2952), 1, anon_sym_LBRACK, - ACTIONS(2911), 56, + ACTIONS(2954), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195575,12 +196638,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7029] = 3, - ACTIONS(487), 1, + [7490] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2698), 1, + ACTIONS(3149), 1, anon_sym_LBRACK, - ACTIONS(2700), 56, + ACTIONS(3151), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195602,6 +196665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -195609,6 +196673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -195618,8 +196683,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, @@ -195637,17 +196700,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7094] = 4, - ACTIONS(487), 1, + [7555] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2774), 1, - anon_sym_DOT, - ACTIONS(3027), 1, + ACTIONS(3153), 1, anon_sym_LBRACK, - ACTIONS(3029), 55, + ACTIONS(3155), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -195700,12 +196762,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7161] = 3, - ACTIONS(487), 1, + [7620] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3115), 1, + ACTIONS(2972), 1, anon_sym_LBRACK, - ACTIONS(3117), 56, + ACTIONS(2974), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195762,12 +196824,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7226] = 3, - ACTIONS(487), 1, + [7685] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3139), 1, + ACTIONS(3157), 1, anon_sym_LBRACK, - ACTIONS(3141), 56, + ACTIONS(3159), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195824,12 +196886,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7291] = 3, - ACTIONS(487), 1, + [7750] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3143), 1, + ACTIONS(3169), 1, anon_sym_LBRACK, - ACTIONS(3145), 56, + ACTIONS(3171), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195886,12 +196948,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7356] = 3, - ACTIONS(487), 1, + [7815] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3035), 1, + ACTIONS(3088), 1, anon_sym_LBRACK, - ACTIONS(3037), 56, + ACTIONS(3090), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195948,12 +197010,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7421] = 3, - ACTIONS(487), 1, + [7880] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3067), 1, + ACTIONS(2948), 1, anon_sym_LBRACK, - ACTIONS(3069), 56, + ACTIONS(2950), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196010,12 +197072,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7486] = 3, - ACTIONS(487), 1, + [7945] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2983), 1, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2985), 56, + ACTIONS(2978), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196072,12 +197134,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7551] = 3, - ACTIONS(487), 1, + [8010] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2979), 1, + ACTIONS(2692), 1, anon_sym_LBRACK, - ACTIONS(2981), 56, + ACTIONS(2694), 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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, + [8075] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(2944), 1, + anon_sym_LBRACK, + ACTIONS(2946), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196134,20 +197258,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7616] = 4, - ACTIONS(487), 1, + [8140] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2768), 1, + ACTIONS(3056), 1, anon_sym_LBRACK, - ACTIONS(2700), 4, + ACTIONS(3058), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2766), 52, + 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, + [8205] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(2792), 1, + anon_sym_LBRACK, + ACTIONS(2794), 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, @@ -196197,22 +197382,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7683] = 4, - ACTIONS(487), 1, + [8270] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2976), 1, + ACTIONS(3123), 1, anon_sym_LBRACK, - ACTIONS(2971), 6, + ACTIONS(3125), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_DASH, - ACTIONS(2973), 50, + anon_sym_LT_LT, + anon_sym_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, + [8335] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(2940), 1, + anon_sym_LBRACK, + ACTIONS(2942), 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, @@ -196227,6 +197471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -196234,6 +197479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -196260,16 +197506,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7750] = 3, - ACTIONS(487), 1, + [8400] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(3043), 1, + ACTIONS(3116), 1, anon_sym_LBRACK, - ACTIONS(3045), 56, + ACTIONS(3120), 1, + anon_sym_DOT, + ACTIONS(3118), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -196322,12 +197569,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7815] = 3, - ACTIONS(487), 1, + [8467] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2893), 1, + ACTIONS(2936), 1, anon_sym_LBRACK, - ACTIONS(2895), 56, + ACTIONS(2938), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196384,22 +197631,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7880] = 4, - ACTIONS(487), 1, + [8532] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2954), 1, + ACTIONS(2816), 1, anon_sym_LBRACK, - ACTIONS(2949), 6, + ACTIONS(2818), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_DASH, - ACTIONS(2951), 50, + anon_sym_LT_LT, + anon_sym_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, + [8597] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(2734), 1, + anon_sym_LBRACK, + ACTIONS(2736), 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, @@ -196430,6 +197736,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, @@ -196447,12 +197755,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7947] = 3, - ACTIONS(487), 1, + [8662] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3051), 1, + ACTIONS(2916), 1, anon_sym_LBRACK, - ACTIONS(3053), 56, + ACTIONS(2918), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196509,12 +197817,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8012] = 3, - ACTIONS(487), 1, + [8727] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2929), 1, + ACTIONS(3173), 1, anon_sym_LBRACK, - ACTIONS(2931), 56, + ACTIONS(3175), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196571,12 +197879,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8077] = 3, - ACTIONS(487), 1, + [8792] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2961), 1, + ACTIONS(2896), 1, anon_sym_LBRACK, - ACTIONS(2963), 56, + ACTIONS(2898), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196633,12 +197941,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8142] = 3, - ACTIONS(487), 1, + [8857] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2866), 1, + ACTIONS(2904), 1, anon_sym_LBRACK, - ACTIONS(2868), 56, + ACTIONS(2906), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196695,12 +198003,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8207] = 3, - ACTIONS(487), 1, + [8922] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2889), 1, + ACTIONS(3100), 1, anon_sym_LBRACK, - ACTIONS(2891), 56, + ACTIONS(3102), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196757,12 +198065,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8272] = 3, - ACTIONS(487), 1, + [8987] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(3155), 1, + ACTIONS(2786), 1, anon_sym_LBRACK, - ACTIONS(3157), 56, + ACTIONS(2694), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(2784), 52, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [9054] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(2844), 1, + anon_sym_LBRACK, + ACTIONS(2846), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196819,12 +198190,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8337] = 3, - ACTIONS(487), 1, + [9119] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3096), 1, anon_sym_LBRACK, - ACTIONS(3197), 56, + ACTIONS(3098), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196881,12 +198252,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8402] = 3, - ACTIONS(487), 1, + [9184] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3059), 1, + ACTIONS(2786), 1, anon_sym_LBRACK, - ACTIONS(3061), 56, + ACTIONS(2784), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196943,12 +198314,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8467] = 3, - ACTIONS(487), 1, + [9249] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3072), 1, anon_sym_LBRACK, - ACTIONS(3181), 56, + ACTIONS(3074), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197005,12 +198376,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8532] = 3, - ACTIONS(487), 1, + [9314] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2897), 1, + ACTIONS(2788), 1, anon_sym_LBRACK, - ACTIONS(2899), 56, + ACTIONS(2790), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197067,12 +198438,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8597] = 3, - ACTIONS(487), 1, + [9379] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3171), 1, + ACTIONS(3177), 1, anon_sym_LBRACK, - ACTIONS(3173), 56, + ACTIONS(3179), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197129,12 +198500,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8662] = 3, - ACTIONS(487), 1, + [9444] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3183), 1, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(3185), 56, + ACTIONS(3002), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197191,12 +198562,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8727] = 3, - ACTIONS(487), 1, + [9509] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3187), 1, + ACTIONS(3181), 1, anon_sym_LBRACK, - ACTIONS(3189), 56, + ACTIONS(3183), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197253,12 +198624,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8792] = 3, - ACTIONS(487), 1, + [9574] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3159), 1, + ACTIONS(3135), 1, anon_sym_LBRACK, - ACTIONS(3161), 56, + ACTIONS(3137), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197315,12 +198686,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8857] = 3, - ACTIONS(487), 1, + [9639] = 5, + ACTIONS(493), 1, sym_comment, - ACTIONS(3055), 1, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(3057), 56, + ACTIONS(4476), 1, + anon_sym_else, + STATE(1881), 1, + sym_else_branch, + ACTIONS(2392), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [9708] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(3012), 1, + anon_sym_LBRACK, + ACTIONS(3014), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197377,12 +198812,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8922] = 3, - ACTIONS(487), 1, + [9773] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2814), 1, + ACTIONS(3193), 1, anon_sym_LBRACK, - ACTIONS(2816), 56, + ACTIONS(3195), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197439,12 +198874,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8987] = 3, - ACTIONS(487), 1, + [9838] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2802), 1, + ACTIONS(2964), 1, anon_sym_LBRACK, - ACTIONS(2804), 56, + ACTIONS(2966), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197501,12 +198936,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9052] = 3, - ACTIONS(487), 1, + [9903] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2770), 1, + ACTIONS(3201), 1, anon_sym_LBRACK, - ACTIONS(2772), 56, + ACTIONS(3203), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197563,12 +198998,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9117] = 3, - ACTIONS(487), 1, + [9968] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2798), 1, + ACTIONS(3108), 1, anon_sym_LBRACK, - ACTIONS(2800), 56, + ACTIONS(3110), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197625,75 +199060,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9182] = 4, - ACTIONS(487), 1, + [10033] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2768), 1, + ACTIONS(3016), 1, anon_sym_LBRACK, - ACTIONS(2700), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(2766), 52, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [9249] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3083), 1, - anon_sym_LBRACK, - ACTIONS(3085), 56, + ACTIONS(3018), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197750,83 +199122,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9314] = 5, - ACTIONS(487), 1, + [10098] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(2398), 1, + ACTIONS(2786), 1, anon_sym_LBRACK, - ACTIONS(4470), 1, - anon_sym_else, - STATE(1842), 1, - sym_else_branch, - ACTIONS(2400), 54, + ACTIONS(2694), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [9383] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2768), 1, - anon_sym_LBRACK, - ACTIONS(2766), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2784), 52, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -197876,76 +199185,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9448] = 5, - ACTIONS(487), 1, + [10165] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2404), 1, - anon_sym_LBRACK, - ACTIONS(4470), 1, - anon_sym_else, - STATE(1841), 1, - sym_else_branch, - ACTIONS(2406), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [9517] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3167), 1, + ACTIONS(2738), 1, anon_sym_LBRACK, - ACTIONS(3169), 56, + ACTIONS(2740), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198002,12 +199247,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9582] = 3, - ACTIONS(487), 1, + [10230] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2999), 1, + ACTIONS(3076), 1, anon_sym_LBRACK, - ACTIONS(3001), 56, + ACTIONS(3078), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198064,12 +199309,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9647] = 3, - ACTIONS(487), 1, + [10295] = 5, + ACTIONS(493), 1, sym_comment, - ACTIONS(3019), 1, + ACTIONS(2396), 1, anon_sym_LBRACK, - ACTIONS(3021), 56, + ACTIONS(4476), 1, + anon_sym_else, + STATE(1888), 1, + sym_else_branch, + ACTIONS(2398), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198091,7 +199340,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -198099,7 +199347,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -198126,12 +199373,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9712] = 3, - ACTIONS(487), 1, + [10364] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3063), 1, + ACTIONS(3197), 1, anon_sym_LBRACK, - ACTIONS(3065), 56, + ACTIONS(3199), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198188,12 +199435,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9777] = 3, - ACTIONS(487), 1, + [10429] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3023), 1, + ACTIONS(2876), 1, anon_sym_LBRACK, - ACTIONS(3025), 56, + ACTIONS(2878), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198250,12 +199497,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9842] = 3, - ACTIONS(487), 1, + [10494] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3191), 1, + ACTIONS(2900), 1, anon_sym_LBRACK, - ACTIONS(3193), 56, + ACTIONS(2902), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198312,17 +199559,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9907] = 4, - ACTIONS(487), 1, + [10559] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2882), 1, + ACTIONS(3145), 1, anon_sym_LBRACK, - ACTIONS(2886), 1, - anon_sym_DOT, - ACTIONS(2884), 55, + ACTIONS(3147), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -198375,12 +199621,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9974] = 3, - ACTIONS(487), 1, + [10624] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2846), 1, + ACTIONS(3189), 1, anon_sym_LBRACK, - ACTIONS(2848), 56, + ACTIONS(3191), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198437,12 +199683,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10039] = 3, - ACTIONS(487), 1, + [10689] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3151), 1, + ACTIONS(2796), 1, anon_sym_LBRACK, - ACTIONS(3153), 56, + ACTIONS(2798), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198499,12 +199745,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10104] = 3, - ACTIONS(487), 1, + [10754] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3015), 1, + ACTIONS(3185), 1, anon_sym_LBRACK, - ACTIONS(3017), 56, + ACTIONS(3187), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198561,12 +199807,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10169] = 3, - ACTIONS(487), 1, + [10819] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2826), 1, + ACTIONS(2928), 1, anon_sym_LBRACK, - ACTIONS(2828), 56, + ACTIONS(2930), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198623,12 +199869,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10234] = 3, - ACTIONS(487), 1, + [10884] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(3020), 1, anon_sym_LBRACK, - ACTIONS(2923), 56, + ACTIONS(3022), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198685,55 +199931,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10299] = 3, - ACTIONS(487), 1, + [10949] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(3047), 1, + ACTIONS(2987), 1, anon_sym_LBRACK, - ACTIONS(3049), 56, + ACTIONS(2982), 21, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ, - anon_sym_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, @@ -198747,21 +199958,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10364] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3027), 1, - anon_sym_LBRACK, - ACTIONS(3029), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2984), 35, anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -198774,7 +199974,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -198782,7 +199981,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -198796,25 +199994,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [10429] = 3, - ACTIONS(487), 1, + [11016] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2905), 1, + ACTIONS(3161), 1, anon_sym_LBRACK, - ACTIONS(2907), 56, + ACTIONS(3163), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198871,21 +200056,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10494] = 3, - ACTIONS(487), 1, + [11081] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(3147), 1, + ACTIONS(2997), 1, anon_sym_LBRACK, - ACTIONS(3149), 56, + ACTIONS(2992), 21, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ, + anon_sym_COLON, + anon_sym_LT_DASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + ACTIONS(2994), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -198898,7 +200099,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -198906,7 +200106,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -198920,25 +200119,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [10559] = 3, - ACTIONS(487), 1, + [11148] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(2828), 1, anon_sym_LBRACK, - ACTIONS(3165), 56, + ACTIONS(2830), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198995,12 +200181,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10624] = 3, - ACTIONS(487), 1, + [11213] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2874), 1, + ACTIONS(2960), 1, anon_sym_LBRACK, - ACTIONS(2876), 56, + ACTIONS(2962), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199057,12 +200243,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10689] = 3, - ACTIONS(487), 1, + [11278] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2870), 1, + ACTIONS(2932), 1, anon_sym_LBRACK, - ACTIONS(2872), 56, + ACTIONS(2934), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199119,12 +200305,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10754] = 3, - ACTIONS(487), 1, + [11343] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3011), 1, + ACTIONS(2824), 1, anon_sym_LBRACK, - ACTIONS(3013), 56, + ACTIONS(2826), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199181,20 +200367,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10819] = 4, - ACTIONS(487), 1, + [11408] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2954), 1, + ACTIONS(2800), 1, anon_sym_LBRACK, - ACTIONS(2949), 21, + ACTIONS(2802), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -199208,10 +200429,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - ACTIONS(2951), 35, + [11473] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(2868), 1, + anon_sym_LBRACK, + ACTIONS(2870), 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, @@ -199224,6 +200456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -199231,6 +200464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -199244,20 +200478,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [10886] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2971), 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, @@ -199271,10 +200491,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - ACTIONS(2973), 35, + [11538] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(3139), 1, + anon_sym_LBRACK, + ACTIONS(4478), 1, + anon_sym_BANG, + ACTIONS(3141), 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, @@ -199287,13 +200520,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_LBRACK2, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -199307,12 +200541,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [10953] = 3, - ACTIONS(487), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [11605] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2862), 1, + ACTIONS(2956), 1, anon_sym_LBRACK, - ACTIONS(2864), 56, + ACTIONS(2958), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199369,20 +200616,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11018] = 3, - ACTIONS(487), 1, + [11670] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(2834), 1, + ACTIONS(4424), 1, + anon_sym_LPAREN, + ACTIONS(4434), 1, anon_sym_LBRACK, - ACTIONS(2836), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4440), 1, + anon_sym_QMARK, + ACTIONS(4442), 1, + anon_sym_BANG, + ACTIONS(4444), 1, + anon_sym_LBRACK2, + ACTIONS(4452), 1, + anon_sym_POUND_LBRACK, + STATE(1979), 1, + sym_argument_list, + STATE(1980), 1, + sym_or_block, + STATE(4384), 1, + sym_type_parameters, + ACTIONS(4416), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(2224), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -199392,28 +200650,99 @@ 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(2222), 30, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_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, + [11754] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4424), 1, + anon_sym_LPAREN, + ACTIONS(4434), 1, + anon_sym_LBRACK, + ACTIONS(4440), 1, anon_sym_QMARK, + ACTIONS(4442), 1, anon_sym_BANG, + ACTIONS(4444), 1, anon_sym_LBRACK2, + ACTIONS(4452), 1, + anon_sym_POUND_LBRACK, + STATE(1979), 1, + sym_argument_list, + STATE(1980), 1, + sym_or_block, + STATE(4384), 1, + sym_type_parameters, + ACTIONS(4416), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2156), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4426), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, + ACTIONS(4428), 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(2154), 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, @@ -199431,55 +200760,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11083] = 3, - ACTIONS(487), 1, + [11842] = 29, + ACTIONS(3), 1, sym_comment, - ACTIONS(2830), 1, + ACTIONS(1708), 1, + anon_sym_LBRACE, + ACTIONS(1716), 1, + anon_sym_EQ, + ACTIONS(4418), 1, + anon_sym_as, + ACTIONS(4424), 1, + anon_sym_LPAREN, + ACTIONS(4434), 1, anon_sym_LBRACK, - ACTIONS(2832), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4436), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4438), 1, + anon_sym_DASH_DASH, + ACTIONS(4440), 1, + anon_sym_QMARK, + ACTIONS(4442), 1, + anon_sym_BANG, + ACTIONS(4444), 1, + anon_sym_LBRACK2, + ACTIONS(4446), 1, + anon_sym_AMP_AMP, + ACTIONS(4448), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4450), 1, + anon_sym_or, + ACTIONS(4452), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4454), 1, + anon_sym_is, + ACTIONS(4456), 1, + anon_sym_BANGis, + ACTIONS(4458), 1, + anon_sym_in, + ACTIONS(4460), 1, + anon_sym_BANGin, + STATE(1979), 1, + sym_argument_list, + STATE(1980), 1, + sym_or_block, + STATE(3927), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4384), 1, + sym_type_parameters, + ACTIONS(4416), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_QMARK_DOT, + ACTIONS(4430), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4426), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_CARET, + ACTIONS(4432), 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(4428), 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(3309), 14, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -199493,22 +200847,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11148] = 3, - ACTIONS(487), 1, + [11958] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2790), 1, + ACTIONS(2856), 1, anon_sym_LBRACK, - ACTIONS(2792), 56, + ACTIONS(2858), 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_RPAREN, + anon_sym___global, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -199520,7 +200877,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_DOT_DOT_DOT, + anon_sym_struct, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -199528,7 +200888,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -199542,68 +200901,88 @@ 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, - [11213] = 3, - ACTIONS(487), 1, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [12022] = 30, + ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, - anon_sym_LBRACK, - ACTIONS(3093), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + ACTIONS(1774), 1, + anon_sym_LBRACE, + ACTIONS(1780), 1, + anon_sym_EQ, + ACTIONS(4418), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4424), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, + ACTIONS(4434), 1, + anon_sym_LBRACK, + ACTIONS(4436), 1, anon_sym_PLUS_PLUS, + ACTIONS(4438), 1, anon_sym_DASH_DASH, + ACTIONS(4440), 1, anon_sym_QMARK, + ACTIONS(4442), 1, anon_sym_BANG, + ACTIONS(4444), 1, anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(4446), 1, anon_sym_AMP_AMP, + ACTIONS(4448), 1, anon_sym_PIPE_PIPE, + ACTIONS(4450), 1, anon_sym_or, - anon_sym_QMARK_DOT, + ACTIONS(4452), 1, anon_sym_POUND_LBRACK, + ACTIONS(4454), 1, anon_sym_is, + ACTIONS(4456), 1, anon_sym_BANGis, + ACTIONS(4458), 1, anon_sym_in, + ACTIONS(4460), 1, anon_sym_BANGin, + ACTIONS(4480), 1, + anon_sym_COMMA, + STATE(1979), 1, + sym_argument_list, + STATE(1980), 1, + sym_or_block, + STATE(3357), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4384), 1, + sym_type_parameters, + ACTIONS(4416), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4430), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4426), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4432), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4428), 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(3233), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -199617,22 +200996,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11278] = 3, - ACTIONS(487), 1, + [12140] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3087), 1, + ACTIONS(2852), 1, anon_sym_LBRACK, - ACTIONS(3089), 56, + ACTIONS(2854), 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_RPAREN, + anon_sym___global, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -199644,7 +201026,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_DOT_DOT_DOT, + anon_sym_struct, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -199652,7 +201037,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -199666,25 +201050,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [11343] = 3, - ACTIONS(487), 1, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [12204] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(2786), 1, + ACTIONS(2756), 1, anon_sym_LBRACK, - ACTIONS(2788), 56, + ACTIONS(4482), 1, + anon_sym_DOLLARelse, + ACTIONS(2758), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199706,7 +201086,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -199714,7 +201093,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -199741,55 +201119,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11408] = 3, - ACTIONS(487), 1, + [12270] = 29, + ACTIONS(3), 1, sym_comment, - ACTIONS(3003), 1, - anon_sym_LBRACK, - ACTIONS(3005), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + ACTIONS(1708), 1, + anon_sym_SEMI, + ACTIONS(1716), 1, + anon_sym_EQ, + ACTIONS(4418), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4424), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(4434), 1, + anon_sym_LBRACK, + ACTIONS(4436), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4438), 1, + anon_sym_DASH_DASH, + ACTIONS(4440), 1, + anon_sym_QMARK, + ACTIONS(4442), 1, + anon_sym_BANG, + ACTIONS(4444), 1, + anon_sym_LBRACK2, + ACTIONS(4450), 1, + anon_sym_or, + ACTIONS(4452), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4454), 1, + anon_sym_is, + ACTIONS(4456), 1, + anon_sym_BANGis, + ACTIONS(4492), 1, + anon_sym_AMP_AMP, + ACTIONS(4494), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4496), 1, + anon_sym_in, + ACTIONS(4498), 1, + anon_sym_BANGin, + STATE(1979), 1, + sym_argument_list, + STATE(1980), 1, + sym_or_block, + STATE(4045), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4384), 1, + sym_type_parameters, + ACTIONS(4416), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4488), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4484), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_CARET, + ACTIONS(4490), 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(4486), 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(3309), 14, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -199803,12 +201206,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11473] = 3, - ACTIONS(487), 1, + [12386] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(2995), 1, + ACTIONS(2762), 1, anon_sym_LBRACK, - ACTIONS(2997), 56, + STATE(1858), 1, + sym_type_parameters, + ACTIONS(2764), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199830,7 +201235,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -199838,7 +201242,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -199865,20 +201268,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11538] = 3, - ACTIONS(487), 1, + [12452] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(2878), 1, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(2880), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4506), 1, + anon_sym_QMARK, + ACTIONS(4508), 1, + anon_sym_BANG, + ACTIONS(4510), 1, + anon_sym_LBRACK2, + ACTIONS(4512), 1, + anon_sym_POUND_LBRACK, + STATE(2085), 1, + sym_argument_list, + STATE(2086), 1, + sym_or_block, + STATE(4280), 1, + sym_type_parameters, + ACTIONS(4500), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(2162), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -199888,6 +201302,16 @@ 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(2160), 30, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -199895,21 +201319,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -199926,25 +201339,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [11603] = 4, - ACTIONS(487), 1, + [12536] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2941), 1, + ACTIONS(2812), 1, anon_sym_LBRACK, - ACTIONS(4472), 1, - anon_sym_BANG, - ACTIONS(2943), 55, + ACTIONS(2814), 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_RPAREN, + anon_sym___global, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -199956,14 +201369,17 @@ 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_DOT_DOT_DOT, + anon_sym_struct, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -199977,25 +201393,19 @@ 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, - [11670] = 3, - ACTIONS(487), 1, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [12600] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3103), 1, + ACTIONS(2808), 1, anon_sym_LBRACK, - ACTIONS(3105), 55, + ACTIONS(2810), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200051,47 +201461,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [11734] = 13, + [12664] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4476), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4478), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4480), 1, + ACTIONS(4506), 1, anon_sym_QMARK, - ACTIONS(4482), 1, + ACTIONS(4508), 1, anon_sym_BANG, - ACTIONS(4484), 1, + ACTIONS(4510), 1, anon_sym_LBRACK2, - ACTIONS(4486), 1, + ACTIONS(4512), 1, anon_sym_POUND_LBRACK, - STATE(2081), 1, + STATE(2085), 1, sym_argument_list, - STATE(2082), 1, + STATE(2086), 1, sym_or_block, - STATE(4192), 1, + STATE(4280), 1, sym_type_parameters, - ACTIONS(4474), 2, + ACTIONS(4500), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2076), 15, + ACTIONS(2144), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4514), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4516), 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(2074), 30, + ACTIONS(2142), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -200122,220 +201534,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11818] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1682), 1, - anon_sym_LBRACE, - ACTIONS(1690), 1, - anon_sym_EQ, - ACTIONS(4422), 1, - anon_sym_as, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, - anon_sym_DASH_DASH, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4450), 1, - anon_sym_AMP_AMP, - ACTIONS(4452), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4454), 1, - anon_sym_or, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4458), 1, - anon_sym_is, - ACTIONS(4460), 1, - anon_sym_BANGis, - ACTIONS(4462), 1, - anon_sym_in, - ACTIONS(4464), 1, - anon_sym_BANGin, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4091), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4434), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4430), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4436), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4432), 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(3305), 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, - [11934] = 13, - ACTIONS(3), 1, + [12752] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, + ACTIONS(2692), 1, anon_sym_LBRACK, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, + ACTIONS(2784), 1, + anon_sym_LBRACE, + ACTIONS(2694), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2076), 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(2074), 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, - [12018] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4428), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2076), 3, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4430), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4432), 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(2074), 30, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -200353,50 +201596,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12106] = 19, + [12818] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, - anon_sym_EQ, - ACTIONS(4428), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4438), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4444), 1, + ACTIONS(4506), 1, anon_sym_QMARK, - ACTIONS(4446), 1, + ACTIONS(4508), 1, anon_sym_BANG, - ACTIONS(4448), 1, + ACTIONS(4510), 1, anon_sym_LBRACK2, - ACTIONS(4456), 1, + ACTIONS(4512), 1, anon_sym_POUND_LBRACK, - ACTIONS(4462), 1, - anon_sym_in, - ACTIONS(4464), 1, - anon_sym_BANGin, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, + STATE(2085), 1, sym_argument_list, - STATE(4313), 1, + STATE(2086), 1, + sym_or_block, + STATE(4280), 1, sym_type_parameters, - ACTIONS(4420), 2, + ACTIONS(4500), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4434), 2, + ACTIONS(2156), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4430), 4, + ACTIONS(4514), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4436), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4432), 8, + ACTIONS(4516), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -200405,18 +201638,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2074), 24, - anon_sym_SEMI, + ACTIONS(2154), 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, @@ -200429,32 +201669,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [12202] = 13, + [12906] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4476), 1, + ACTIONS(4424), 1, anon_sym_LPAREN, - ACTIONS(4478), 1, + ACTIONS(4434), 1, anon_sym_LBRACK, - ACTIONS(4480), 1, + ACTIONS(4440), 1, anon_sym_QMARK, - ACTIONS(4482), 1, + ACTIONS(4442), 1, anon_sym_BANG, - ACTIONS(4484), 1, + ACTIONS(4444), 1, anon_sym_LBRACK2, - ACTIONS(4486), 1, + ACTIONS(4452), 1, anon_sym_POUND_LBRACK, - STATE(2081), 1, + STATE(1979), 1, sym_argument_list, - STATE(2082), 1, + STATE(1980), 1, sym_or_block, - STATE(4192), 1, + STATE(4384), 1, sym_type_parameters, - ACTIONS(4474), 2, + ACTIONS(4416), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2230), 15, + ACTIONS(2246), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -200470,7 +201709,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2228), 30, + ACTIONS(2244), 30, + anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -200478,10 +201718,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, @@ -200501,52 +201739,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12286] = 20, + anon_sym_COLON_EQ, + [12990] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, + ACTIONS(2162), 1, anon_sym_EQ, - ACTIONS(4428), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4438), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4444), 1, + ACTIONS(4506), 1, anon_sym_QMARK, - ACTIONS(4446), 1, + ACTIONS(4508), 1, anon_sym_BANG, - ACTIONS(4448), 1, + ACTIONS(4510), 1, anon_sym_LBRACK2, - ACTIONS(4450), 1, - anon_sym_AMP_AMP, - ACTIONS(4456), 1, + ACTIONS(4512), 1, anon_sym_POUND_LBRACK, - ACTIONS(4462), 1, + ACTIONS(4522), 1, + anon_sym_AMP_AMP, + ACTIONS(4524), 1, anon_sym_in, - ACTIONS(4464), 1, + ACTIONS(4526), 1, anon_sym_BANGin, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, + STATE(2085), 1, sym_argument_list, - STATE(4313), 1, + STATE(2086), 1, + sym_or_block, + STATE(4280), 1, sym_type_parameters, - ACTIONS(4420), 2, + ACTIONS(4500), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4434), 2, + ACTIONS(4518), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4430), 4, + ACTIONS(4514), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4436), 4, + ACTIONS(4520), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4432), 8, + ACTIONS(4516), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -200555,13 +201794,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2074), 23, - anon_sym_SEMI, + ACTIONS(2160), 23, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, @@ -200578,67 +201818,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [12384] = 27, + [13088] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, + ACTIONS(2162), 1, anon_sym_EQ, - ACTIONS(4476), 1, - anon_sym_LPAREN, - ACTIONS(4478), 1, - anon_sym_LBRACK, - ACTIONS(4480), 1, - anon_sym_QMARK, - ACTIONS(4482), 1, - anon_sym_BANG, - ACTIONS(4484), 1, - anon_sym_LBRACK2, - ACTIONS(4486), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4488), 1, - anon_sym_as, - ACTIONS(4498), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4500), 1, - anon_sym_DASH_DASH, ACTIONS(4502), 1, - anon_sym_AMP_AMP, + anon_sym_LPAREN, ACTIONS(4504), 1, - anon_sym_PIPE_PIPE, + anon_sym_LBRACK, ACTIONS(4506), 1, - anon_sym_or, + anon_sym_QMARK, ACTIONS(4508), 1, - anon_sym_is, + anon_sym_BANG, ACTIONS(4510), 1, - anon_sym_BANGis, + anon_sym_LBRACK2, ACTIONS(4512), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4524), 1, anon_sym_in, - ACTIONS(4514), 1, + ACTIONS(4526), 1, anon_sym_BANGin, - STATE(2081), 1, + STATE(2085), 1, sym_argument_list, - STATE(2082), 1, + STATE(2086), 1, sym_or_block, - STATE(4192), 1, + STATE(4280), 1, sym_type_parameters, - ACTIONS(4474), 2, + ACTIONS(4500), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4494), 2, + ACTIONS(4518), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4490), 4, + ACTIONS(4514), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4496), 4, + ACTIONS(4520), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4492), 8, + ACTIONS(4516), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -200647,11 +201870,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2218), 16, + ACTIONS(2160), 24, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_LT_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -200664,66 +201895,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12496] = 27, + [13184] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2210), 1, + ACTIONS(2052), 1, anon_sym_EQ, - ACTIONS(4476), 1, + ACTIONS(4418), 1, + anon_sym_as, + ACTIONS(4424), 1, anon_sym_LPAREN, - ACTIONS(4478), 1, + ACTIONS(4434), 1, anon_sym_LBRACK, - ACTIONS(4480), 1, + ACTIONS(4436), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4438), 1, + anon_sym_DASH_DASH, + ACTIONS(4440), 1, anon_sym_QMARK, - ACTIONS(4482), 1, + ACTIONS(4442), 1, anon_sym_BANG, - ACTIONS(4484), 1, + ACTIONS(4444), 1, anon_sym_LBRACK2, - ACTIONS(4486), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4488), 1, - anon_sym_as, - ACTIONS(4498), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4500), 1, - anon_sym_DASH_DASH, - ACTIONS(4502), 1, + ACTIONS(4446), 1, anon_sym_AMP_AMP, - ACTIONS(4504), 1, + ACTIONS(4448), 1, anon_sym_PIPE_PIPE, - ACTIONS(4506), 1, + ACTIONS(4450), 1, anon_sym_or, - ACTIONS(4508), 1, + ACTIONS(4452), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4454), 1, anon_sym_is, - ACTIONS(4510), 1, + ACTIONS(4456), 1, anon_sym_BANGis, - ACTIONS(4512), 1, + ACTIONS(4458), 1, anon_sym_in, - ACTIONS(4514), 1, + ACTIONS(4460), 1, anon_sym_BANGin, - STATE(2081), 1, + STATE(1979), 1, sym_argument_list, - STATE(2082), 1, + STATE(1980), 1, sym_or_block, - STATE(4192), 1, + STATE(4384), 1, sym_type_parameters, - ACTIONS(4474), 2, + ACTIONS(4416), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4494), 2, + ACTIONS(4430), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4490), 4, + ACTIONS(4426), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4496), 4, + ACTIONS(4432), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4492), 8, + ACTIONS(4428), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -200732,11 +201963,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2208), 16, + ACTIONS(2050), 16, + anon_sym_SEMI, 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, @@ -200749,126 +201979,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12608] = 13, + anon_sym_COLON_EQ, + [13296] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4476), 1, + ACTIONS(2234), 1, + anon_sym_EQ, + ACTIONS(4418), 1, + anon_sym_as, + ACTIONS(4424), 1, anon_sym_LPAREN, - ACTIONS(4478), 1, + ACTIONS(4434), 1, anon_sym_LBRACK, - ACTIONS(4480), 1, + ACTIONS(4436), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4438), 1, + anon_sym_DASH_DASH, + ACTIONS(4440), 1, anon_sym_QMARK, - ACTIONS(4482), 1, + ACTIONS(4442), 1, anon_sym_BANG, - ACTIONS(4484), 1, + ACTIONS(4444), 1, anon_sym_LBRACK2, - ACTIONS(4486), 1, + ACTIONS(4446), 1, + anon_sym_AMP_AMP, + ACTIONS(4448), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4450), 1, + anon_sym_or, + ACTIONS(4452), 1, anon_sym_POUND_LBRACK, - STATE(2081), 1, + ACTIONS(4454), 1, + anon_sym_is, + ACTIONS(4456), 1, + anon_sym_BANGis, + ACTIONS(4458), 1, + anon_sym_in, + ACTIONS(4460), 1, + anon_sym_BANGin, + STATE(1979), 1, sym_argument_list, - STATE(2082), 1, + STATE(1980), 1, sym_or_block, - STATE(4192), 1, + STATE(4384), 1, sym_type_parameters, - ACTIONS(4474), 2, + ACTIONS(4416), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2164), 15, - anon_sym_EQ, + ACTIONS(4430), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4426), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2162), 30, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(4432), 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_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, - [12692] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2698), 1, - anon_sym_LBRACK, - ACTIONS(2766), 1, - anon_sym_LBRACE, - ACTIONS(2700), 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, + ACTIONS(4428), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(2232), 16, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -200882,40 +202065,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12758] = 15, + [13408] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4428), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4438), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4444), 1, + ACTIONS(4506), 1, anon_sym_QMARK, - ACTIONS(4446), 1, + ACTIONS(4508), 1, anon_sym_BANG, - ACTIONS(4448), 1, + ACTIONS(4510), 1, anon_sym_LBRACK2, - ACTIONS(4456), 1, + ACTIONS(4512), 1, anon_sym_POUND_LBRACK, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, + STATE(2085), 1, sym_argument_list, - STATE(4313), 1, + STATE(2086), 1, + sym_or_block, + STATE(4280), 1, sym_type_parameters, - ACTIONS(4420), 2, + ACTIONS(4500), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2108), 3, + ACTIONS(2162), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4430), 4, + ACTIONS(4514), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4432), 8, + ACTIONS(4516), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -200924,8 +202107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2106), 30, - anon_sym_SEMI, + ACTIONS(2160), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -200933,8 +202115,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, @@ -200954,41 +202138,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [12846] = 15, + [13496] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4428), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4438), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4444), 1, + ACTIONS(4506), 1, anon_sym_QMARK, - ACTIONS(4446), 1, + ACTIONS(4508), 1, anon_sym_BANG, - ACTIONS(4448), 1, + ACTIONS(4510), 1, anon_sym_LBRACK2, - ACTIONS(4456), 1, + ACTIONS(4512), 1, anon_sym_POUND_LBRACK, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, + STATE(2085), 1, sym_argument_list, - STATE(4313), 1, + STATE(2086), 1, + sym_or_block, + STATE(4280), 1, sym_type_parameters, - ACTIONS(4420), 2, + ACTIONS(4500), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2112), 3, + ACTIONS(2162), 7, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4430), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_CARET, - ACTIONS(4432), 8, + ACTIONS(4516), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -200997,8 +202179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2110), 30, - anon_sym_SEMI, + ACTIONS(2160), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -201006,8 +202187,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, @@ -201027,15 +202210,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [12934] = 4, - ACTIONS(487), 1, + [13582] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(2777), 1, + ACTIONS(2614), 1, anon_sym_LBRACK, - ACTIONS(3029), 1, - anon_sym_LBRACE, - ACTIONS(2772), 54, + ACTIONS(4528), 1, + anon_sym_DOLLARelse, + ACTIONS(2616), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201090,14 +202272,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13000] = 4, - ACTIONS(487), 1, + [13648] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(2766), 1, + ACTIONS(2784), 1, anon_sym_LBRACE, - ACTIONS(2965), 1, + ACTIONS(2836), 1, anon_sym_LBRACK, - ACTIONS(2967), 54, + ACTIONS(2838), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201152,224 +202334,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13066] = 29, - ACTIONS(3), 1, + [13714] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(1682), 1, + ACTIONS(2920), 1, + anon_sym_LBRACK, + ACTIONS(2922), 55, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, - ACTIONS(1690), 1, - anon_sym_EQ, - ACTIONS(4422), 1, + anon_sym_DOT, anon_sym_as, - ACTIONS(4428), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, - anon_sym_DASH_DASH, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4454), 1, - anon_sym_or, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4458), 1, - anon_sym_is, - ACTIONS(4460), 1, - anon_sym_BANGis, - ACTIONS(4524), 1, - anon_sym_AMP_AMP, - ACTIONS(4526), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4528), 1, - anon_sym_in, - ACTIONS(4530), 1, - anon_sym_BANGin, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(3969), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4520), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4516), 4, + anon_sym_RPAREN, + anon_sym___global, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4522), 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(4518), 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(3305), 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, - [13182] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4444), 1, + 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(4446), 1, anon_sym_BANG, - ACTIONS(4448), 1, anon_sym_LBRACK2, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2164), 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(2162), 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, 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, - [13266] = 27, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [13778] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2210), 1, + ACTIONS(2162), 1, anon_sym_EQ, - ACTIONS(4422), 1, - anon_sym_as, - ACTIONS(4428), 1, + ACTIONS(4424), 1, anon_sym_LPAREN, - ACTIONS(4438), 1, + ACTIONS(4434), 1, anon_sym_LBRACK, ACTIONS(4440), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, - anon_sym_DASH_DASH, - ACTIONS(4444), 1, anon_sym_QMARK, - ACTIONS(4446), 1, + ACTIONS(4442), 1, anon_sym_BANG, - ACTIONS(4448), 1, + ACTIONS(4444), 1, anon_sym_LBRACK2, - ACTIONS(4450), 1, + ACTIONS(4446), 1, anon_sym_AMP_AMP, ACTIONS(4452), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4454), 1, - anon_sym_or, - ACTIONS(4456), 1, anon_sym_POUND_LBRACK, ACTIONS(4458), 1, - anon_sym_is, - ACTIONS(4460), 1, - anon_sym_BANGis, - ACTIONS(4462), 1, anon_sym_in, - ACTIONS(4464), 1, + ACTIONS(4460), 1, anon_sym_BANGin, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, + STATE(1979), 1, sym_argument_list, - STATE(4313), 1, + STATE(1980), 1, + sym_or_block, + STATE(4384), 1, sym_type_parameters, - ACTIONS(4420), 2, + ACTIONS(4416), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4434), 2, + ACTIONS(4430), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4430), 4, + ACTIONS(4426), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4436), 4, + ACTIONS(4432), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4432), 8, + ACTIONS(4428), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -201378,10 +202449,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2208), 16, + ACTIONS(2160), 23, anon_sym_SEMI, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -201395,66 +202473,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13378] = 27, + [13876] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, + ACTIONS(2162), 1, anon_sym_EQ, - ACTIONS(4422), 1, - anon_sym_as, - ACTIONS(4428), 1, + ACTIONS(4424), 1, anon_sym_LPAREN, - ACTIONS(4438), 1, + ACTIONS(4434), 1, anon_sym_LBRACK, ACTIONS(4440), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, - anon_sym_DASH_DASH, - ACTIONS(4444), 1, anon_sym_QMARK, - ACTIONS(4446), 1, + ACTIONS(4442), 1, anon_sym_BANG, - ACTIONS(4448), 1, + ACTIONS(4444), 1, anon_sym_LBRACK2, - ACTIONS(4450), 1, - anon_sym_AMP_AMP, ACTIONS(4452), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4454), 1, - anon_sym_or, - ACTIONS(4456), 1, anon_sym_POUND_LBRACK, ACTIONS(4458), 1, - anon_sym_is, - ACTIONS(4460), 1, - anon_sym_BANGis, - ACTIONS(4462), 1, anon_sym_in, - ACTIONS(4464), 1, + ACTIONS(4460), 1, anon_sym_BANGin, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, + STATE(1979), 1, sym_argument_list, - STATE(4313), 1, + STATE(1980), 1, + sym_or_block, + STATE(4384), 1, sym_type_parameters, - ACTIONS(4420), 2, + ACTIONS(4416), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4434), 2, + ACTIONS(4430), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4430), 4, + ACTIONS(4426), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4436), 4, + ACTIONS(4432), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4432), 8, + ACTIONS(4428), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -201463,10 +202525,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2218), 16, + ACTIONS(2160), 24, anon_sym_SEMI, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -201480,31 +202550,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13490] = 13, + [13972] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4428), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4438), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4444), 1, + ACTIONS(4506), 1, anon_sym_QMARK, - ACTIONS(4446), 1, + ACTIONS(4508), 1, anon_sym_BANG, - ACTIONS(4448), 1, + ACTIONS(4510), 1, anon_sym_LBRACK2, - ACTIONS(4456), 1, + ACTIONS(4512), 1, anon_sym_POUND_LBRACK, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, + STATE(2085), 1, sym_argument_list, - STATE(4313), 1, + STATE(2086), 1, + sym_or_block, + STATE(4280), 1, sym_type_parameters, - ACTIONS(4420), 2, + ACTIONS(4500), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2230), 15, + ACTIONS(2224), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -201520,8 +202590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2228), 30, - anon_sym_SEMI, + ACTIONS(2222), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -201529,8 +202598,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, @@ -201550,113 +202621,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [13574] = 3, - ACTIONS(487), 1, + [14056] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(3039), 1, + ACTIONS(4424), 1, + anon_sym_LPAREN, + ACTIONS(4434), 1, anon_sym_LBRACK, - ACTIONS(3041), 55, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4440), 1, + anon_sym_QMARK, + ACTIONS(4442), 1, + anon_sym_BANG, + ACTIONS(4444), 1, + anon_sym_LBRACK2, + ACTIONS(4452), 1, + anon_sym_POUND_LBRACK, + STATE(1979), 1, + sym_argument_list, + STATE(1980), 1, + sym_or_block, + STATE(4384), 1, + sym_type_parameters, + ACTIONS(4416), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym___global, + anon_sym_QMARK_DOT, + ACTIONS(2162), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4426), 4, anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4428), 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_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_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [13638] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2732), 1, - anon_sym_LBRACK, - ACTIONS(4532), 1, - anon_sym_DOLLARelse, - ACTIONS(2734), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + ACTIONS(2160), 30, + anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -201674,111 +202694,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13704] = 3, - ACTIONS(487), 1, + [14144] = 27, + ACTIONS(3), 1, sym_comment, - ACTIONS(3099), 1, + ACTIONS(2234), 1, + anon_sym_EQ, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(3101), 55, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(4506), 1, + anon_sym_QMARK, + ACTIONS(4508), 1, + anon_sym_BANG, + ACTIONS(4510), 1, + anon_sym_LBRACK2, + ACTIONS(4512), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4522), 1, + anon_sym_AMP_AMP, + ACTIONS(4524), 1, + anon_sym_in, + ACTIONS(4526), 1, + anon_sym_BANGin, + ACTIONS(4530), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym___global, + ACTIONS(4532), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4534), 1, + anon_sym_DASH_DASH, + ACTIONS(4536), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4538), 1, + anon_sym_or, + ACTIONS(4540), 1, + anon_sym_is, + ACTIONS(4542), 1, + anon_sym_BANGis, + STATE(2085), 1, + sym_argument_list, + STATE(2086), 1, + sym_or_block, + STATE(4280), 1, + sym_type_parameters, + ACTIONS(4500), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4518), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4514), 4, anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_CARET, + ACTIONS(4520), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4516), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [13768] = 19, + ACTIONS(2232), 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, + [14256] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, + ACTIONS(2052), 1, anon_sym_EQ, - ACTIONS(4476), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4478), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4480), 1, + ACTIONS(4506), 1, anon_sym_QMARK, - ACTIONS(4482), 1, + ACTIONS(4508), 1, anon_sym_BANG, - ACTIONS(4484), 1, + ACTIONS(4510), 1, anon_sym_LBRACK2, - ACTIONS(4486), 1, - anon_sym_POUND_LBRACK, ACTIONS(4512), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4522), 1, + anon_sym_AMP_AMP, + ACTIONS(4524), 1, anon_sym_in, - ACTIONS(4514), 1, + ACTIONS(4526), 1, anon_sym_BANGin, - STATE(2081), 1, + ACTIONS(4530), 1, + anon_sym_as, + ACTIONS(4532), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4534), 1, + anon_sym_DASH_DASH, + ACTIONS(4536), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4538), 1, + anon_sym_or, + ACTIONS(4540), 1, + anon_sym_is, + ACTIONS(4542), 1, + anon_sym_BANGis, + STATE(2085), 1, sym_argument_list, - STATE(2082), 1, + STATE(2086), 1, sym_or_block, - STATE(4192), 1, + STATE(4280), 1, sym_type_parameters, - ACTIONS(4474), 2, + ACTIONS(4500), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4494), 2, + ACTIONS(4518), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4490), 4, + ACTIONS(4514), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4496), 4, + ACTIONS(4520), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4492), 8, + ACTIONS(4516), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -201787,19 +202847,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2074), 24, - anon_sym_as, + ACTIONS(2050), 16, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -201812,48 +202864,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13864] = 14, + [14368] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4428), 1, + ACTIONS(4424), 1, anon_sym_LPAREN, - ACTIONS(4438), 1, + ACTIONS(4434), 1, anon_sym_LBRACK, - ACTIONS(4444), 1, + ACTIONS(4440), 1, anon_sym_QMARK, - ACTIONS(4446), 1, + ACTIONS(4442), 1, anon_sym_BANG, - ACTIONS(4448), 1, + ACTIONS(4444), 1, anon_sym_LBRACK2, - ACTIONS(4456), 1, + ACTIONS(4452), 1, anon_sym_POUND_LBRACK, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, + STATE(1979), 1, sym_argument_list, - STATE(4313), 1, + STATE(1980), 1, + sym_or_block, + STATE(4384), 1, sym_type_parameters, - ACTIONS(4420), 2, + ACTIONS(4416), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2076), 7, + ACTIONS(2162), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, - ACTIONS(4432), 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(2074), 30, + ACTIONS(2160), 30, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -201884,14 +202935,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13950] = 4, - ACTIONS(487), 1, + [14452] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(2745), 1, anon_sym_LBRACK, - STATE(1860), 1, - sym_type_parameters, - ACTIONS(2704), 54, + ACTIONS(2846), 1, + anon_sym_LBRACE, + ACTIONS(2740), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201946,48 +202997,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14016] = 14, + [14518] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4476), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4478), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4480), 1, + ACTIONS(4506), 1, anon_sym_QMARK, - ACTIONS(4482), 1, + ACTIONS(4508), 1, anon_sym_BANG, - ACTIONS(4484), 1, + ACTIONS(4510), 1, anon_sym_LBRACK2, - ACTIONS(4486), 1, + ACTIONS(4512), 1, anon_sym_POUND_LBRACK, - STATE(2081), 1, + STATE(2085), 1, sym_argument_list, - STATE(2082), 1, + STATE(2086), 1, sym_or_block, - STATE(4192), 1, + STATE(4280), 1, sym_type_parameters, - ACTIONS(4474), 2, + ACTIONS(4500), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2076), 7, + ACTIONS(2246), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, - ACTIONS(4492), 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(2074), 30, + ACTIONS(2244), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -202018,72 +203068,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [14102] = 30, + [14602] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 1, - anon_sym_LBRACE, - ACTIONS(1770), 1, - anon_sym_EQ, - ACTIONS(4422), 1, - anon_sym_as, - ACTIONS(4428), 1, + ACTIONS(4424), 1, anon_sym_LPAREN, - ACTIONS(4438), 1, + ACTIONS(4434), 1, anon_sym_LBRACK, ACTIONS(4440), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, - anon_sym_DASH_DASH, - ACTIONS(4444), 1, anon_sym_QMARK, - ACTIONS(4446), 1, + ACTIONS(4442), 1, anon_sym_BANG, - ACTIONS(4448), 1, + ACTIONS(4444), 1, anon_sym_LBRACK2, - ACTIONS(4450), 1, - anon_sym_AMP_AMP, ACTIONS(4452), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4454), 1, - anon_sym_or, - ACTIONS(4456), 1, anon_sym_POUND_LBRACK, - ACTIONS(4458), 1, - anon_sym_is, - ACTIONS(4460), 1, - anon_sym_BANGis, - ACTIONS(4462), 1, - anon_sym_in, - ACTIONS(4464), 1, - anon_sym_BANGin, - ACTIONS(4534), 1, - anon_sym_COMMA, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, + STATE(1979), 1, sym_argument_list, - STATE(3349), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4313), 1, + STATE(1980), 1, + sym_or_block, + STATE(4384), 1, sym_type_parameters, - ACTIONS(4420), 2, + ACTIONS(4416), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4434), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4430), 4, + ACTIONS(2162), 7, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_CARET, - ACTIONS(4436), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4432), 8, + ACTIONS(4428), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -202092,7 +203109,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3227), 13, + ACTIONS(2160), 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, @@ -202106,52 +203140,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14220] = 20, + [14688] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, - anon_sym_EQ, - ACTIONS(4476), 1, + ACTIONS(4424), 1, anon_sym_LPAREN, - ACTIONS(4478), 1, + ACTIONS(4434), 1, anon_sym_LBRACK, - ACTIONS(4480), 1, + ACTIONS(4440), 1, anon_sym_QMARK, - ACTIONS(4482), 1, + ACTIONS(4442), 1, anon_sym_BANG, - ACTIONS(4484), 1, + ACTIONS(4444), 1, anon_sym_LBRACK2, - ACTIONS(4486), 1, + ACTIONS(4452), 1, anon_sym_POUND_LBRACK, - ACTIONS(4502), 1, - anon_sym_AMP_AMP, - ACTIONS(4512), 1, - anon_sym_in, - ACTIONS(4514), 1, - anon_sym_BANGin, - STATE(2081), 1, + STATE(1979), 1, sym_argument_list, - STATE(2082), 1, + STATE(1980), 1, sym_or_block, - STATE(4192), 1, + STATE(4384), 1, sym_type_parameters, - ACTIONS(4474), 2, + ACTIONS(4416), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4494), 2, + ACTIONS(2144), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4490), 4, + ACTIONS(4426), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4496), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4492), 8, + ACTIONS(4428), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -202160,18 +203182,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2074), 23, + ACTIONS(2142), 30, + anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_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, @@ -202184,86 +203212,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [14318] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3135), 1, - anon_sym_LBRACK, - ACTIONS(3137), 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_RPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_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, - [14382] = 3, - ACTIONS(487), 1, + anon_sym_COLON_EQ, + [14776] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3131), 1, + ACTIONS(2964), 1, anon_sym_LBRACK, - ACTIONS(3133), 55, + ACTIONS(2966), 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_RPAREN, - anon_sym___global, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -202275,10 +203240,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_pub, - anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -202299,21 +203260,25 @@ 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, - [14446] = 4, - ACTIONS(487), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [14839] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2738), 1, + ACTIONS(2908), 1, anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOLLARelse, - ACTIONS(2740), 54, + ACTIONS(2910), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202368,63 +203333,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14512] = 15, - ACTIONS(3), 1, + [14902] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(4476), 1, - anon_sym_LPAREN, - ACTIONS(4478), 1, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(4480), 1, - anon_sym_QMARK, - ACTIONS(4482), 1, - anon_sym_BANG, - ACTIONS(4484), 1, - anon_sym_LBRACK2, - ACTIONS(4486), 1, - anon_sym_POUND_LBRACK, - STATE(2081), 1, - sym_argument_list, - STATE(2082), 1, - sym_or_block, - STATE(4192), 1, - sym_type_parameters, - ACTIONS(4474), 2, + ACTIONS(3030), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2112), 3, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4490), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4492), 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(2110), 30, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -202441,63 +203392,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [14600] = 15, - ACTIONS(3), 1, + anon_sym_COLON_EQ, + [14965] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(4476), 1, - anon_sym_LPAREN, - ACTIONS(4478), 1, + ACTIONS(3036), 1, anon_sym_LBRACK, - ACTIONS(4480), 1, - anon_sym_QMARK, - ACTIONS(4482), 1, - anon_sym_BANG, - ACTIONS(4484), 1, - anon_sym_LBRACK2, - ACTIONS(4486), 1, - anon_sym_POUND_LBRACK, - STATE(2081), 1, - sym_argument_list, - STATE(2082), 1, - sym_or_block, - STATE(4192), 1, - sym_type_parameters, - ACTIONS(4474), 2, + ACTIONS(3038), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2108), 3, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4490), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4492), 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(2106), 30, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -202514,63 +203452,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [14688] = 15, - ACTIONS(3), 1, + anon_sym_COLON_EQ, + [15028] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(4476), 1, - anon_sym_LPAREN, - ACTIONS(4478), 1, + ACTIONS(3040), 1, anon_sym_LBRACK, - ACTIONS(4480), 1, - anon_sym_QMARK, - ACTIONS(4482), 1, - anon_sym_BANG, - ACTIONS(4484), 1, - anon_sym_LBRACK2, - ACTIONS(4486), 1, - anon_sym_POUND_LBRACK, - STATE(2081), 1, - sym_argument_list, - STATE(2082), 1, - sym_or_block, - STATE(4192), 1, - sym_type_parameters, - ACTIONS(4474), 2, + ACTIONS(3042), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2076), 3, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4490), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4492), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2074), 30, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [15091] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3046), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -202587,12 +203572,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [14776] = 3, - ACTIONS(487), 1, + anon_sym_COLON_EQ, + [15154] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(2782), 1, + ACTIONS(2997), 1, anon_sym_LBRACK, - ACTIONS(2784), 54, + ACTIONS(2992), 19, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + ACTIONS(2994), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [15219] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(3084), 1, + anon_sym_LBRACK, + ACTIONS(3086), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202647,12 +203694,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14839] = 3, - ACTIONS(487), 1, + [15282] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2870), 1, + ACTIONS(3104), 1, anon_sym_LBRACK, - ACTIONS(2872), 54, + ACTIONS(3106), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202707,12 +203754,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14902] = 3, - ACTIONS(487), 1, + [15345] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(2762), 1, anon_sym_LBRACK, - ACTIONS(3125), 54, + ACTIONS(2764), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202767,12 +203814,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14965] = 3, - ACTIONS(487), 1, + [15408] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2878), 1, + ACTIONS(3127), 1, anon_sym_LBRACK, - ACTIONS(2880), 54, + ACTIONS(3129), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202827,12 +203874,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15028] = 3, - ACTIONS(487), 1, + [15471] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2830), 1, + ACTIONS(2820), 1, anon_sym_LBRACK, - ACTIONS(2832), 54, + ACTIONS(2822), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202887,16 +203934,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15091] = 3, - ACTIONS(487), 1, + [15534] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(3175), 1, + ACTIONS(3116), 1, anon_sym_LBRACK, - ACTIONS(3177), 54, + ACTIONS(3120), 1, + anon_sym_DOT, + ACTIONS(3118), 53, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -202947,12 +203995,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15154] = 3, - ACTIONS(487), 1, + [15599] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3115), 1, + ACTIONS(3123), 1, anon_sym_LBRACK, - ACTIONS(3117), 54, + ACTIONS(3125), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203007,12 +204055,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15217] = 3, - ACTIONS(487), 1, + [15662] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3075), 1, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(3077), 54, + ACTIONS(2978), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203067,16 +204115,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15280] = 3, - ACTIONS(487), 1, + [15725] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(3071), 1, + ACTIONS(2742), 1, + anon_sym_DOT, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(3073), 54, + ACTIONS(2846), 53, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -203127,12 +204176,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15343] = 3, - ACTIONS(487), 1, + [15790] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3127), 1, + ACTIONS(2840), 1, anon_sym_LBRACK, - ACTIONS(3129), 54, + ACTIONS(2842), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203187,12 +204236,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15406] = 3, - ACTIONS(487), 1, + [15853] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3171), 1, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(3173), 54, + ACTIONS(3002), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203247,12 +204296,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15469] = 3, - ACTIONS(487), 1, + [15916] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3119), 1, + ACTIONS(3169), 1, anon_sym_LBRACK, - ACTIONS(3121), 54, + ACTIONS(3171), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203307,12 +204356,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15532] = 3, - ACTIONS(487), 1, + [15979] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3151), 1, + ACTIONS(2792), 1, anon_sym_LBRACK, - ACTIONS(3153), 54, + ACTIONS(2794), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203367,77 +204416,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15595] = 27, - ACTIONS(3), 1, + [16042] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2124), 1, - anon_sym_EQ, - ACTIONS(4422), 1, + ACTIONS(3177), 1, + anon_sym_LBRACK, + ACTIONS(3179), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, - ACTIONS(4428), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4440), 1, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, anon_sym_DASH_DASH, - ACTIONS(4444), 1, anon_sym_QMARK, - ACTIONS(4446), 1, anon_sym_BANG, - ACTIONS(4448), 1, anon_sym_LBRACK2, - ACTIONS(4454), 1, - anon_sym_or, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4524), 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(4526), 1, anon_sym_PIPE_PIPE, - ACTIONS(4528), 1, - anon_sym_in, - ACTIONS(4530), 1, - anon_sym_BANGin, - ACTIONS(4538), 1, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(4540), 1, anon_sym_BANGis, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 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, + [16105] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(3016), 1, + anon_sym_LBRACK, + ACTIONS(3018), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4520), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4516), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4522), 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(4518), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2122), 15, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -203451,66 +204536,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15706] = 27, + [16168] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2124), 1, + ACTIONS(2052), 1, anon_sym_EQ, - ACTIONS(4422), 1, + ACTIONS(4418), 1, anon_sym_as, - ACTIONS(4428), 1, + ACTIONS(4424), 1, anon_sym_LPAREN, - ACTIONS(4438), 1, + ACTIONS(4434), 1, anon_sym_LBRACK, - ACTIONS(4440), 1, + ACTIONS(4436), 1, anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, + ACTIONS(4438), 1, anon_sym_DASH_DASH, - ACTIONS(4444), 1, + ACTIONS(4440), 1, anon_sym_QMARK, - ACTIONS(4446), 1, + ACTIONS(4442), 1, anon_sym_BANG, - ACTIONS(4448), 1, + ACTIONS(4444), 1, anon_sym_LBRACK2, ACTIONS(4450), 1, - anon_sym_AMP_AMP, + anon_sym_or, ACTIONS(4452), 1, - anon_sym_PIPE_PIPE, + anon_sym_POUND_LBRACK, ACTIONS(4454), 1, - anon_sym_or, + anon_sym_is, ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4462), 1, + anon_sym_BANGis, + ACTIONS(4492), 1, + anon_sym_AMP_AMP, + ACTIONS(4494), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4496), 1, anon_sym_in, - ACTIONS(4464), 1, + ACTIONS(4498), 1, anon_sym_BANGin, - ACTIONS(4538), 1, - anon_sym_is, - ACTIONS(4540), 1, - anon_sym_BANGis, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, + STATE(1979), 1, sym_argument_list, - STATE(4313), 1, + STATE(1980), 1, + sym_or_block, + STATE(4384), 1, sym_type_parameters, - ACTIONS(4420), 2, + ACTIONS(4416), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4434), 2, + ACTIONS(4488), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4430), 4, + ACTIONS(4484), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4436), 4, + ACTIONS(4490), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4432), 8, + ACTIONS(4486), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -203519,8 +204604,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2122), 15, - anon_sym_LBRACE, + ACTIONS(2050), 15, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -203535,12 +204620,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15817] = 3, - ACTIONS(487), 1, + [16279] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3111), 1, + ACTIONS(2848), 1, anon_sym_LBRACK, - ACTIONS(3113), 54, + ACTIONS(2850), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203595,12 +204680,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15880] = 3, - ACTIONS(487), 1, + [16342] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3107), 1, + ACTIONS(2888), 1, anon_sym_LBRACK, - ACTIONS(3109), 54, + ACTIONS(2890), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203655,12 +204740,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15943] = 3, - ACTIONS(487), 1, + [16405] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3095), 1, + ACTIONS(2896), 1, anon_sym_LBRACK, - ACTIONS(3097), 54, + ACTIONS(2898), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203715,12 +204800,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16006] = 3, - ACTIONS(487), 1, + [16468] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2961), 1, + ACTIONS(2900), 1, anon_sym_LBRACK, - ACTIONS(2963), 54, + ACTIONS(2902), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203775,60 +204860,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16069] = 14, - ACTIONS(3), 1, + [16531] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, + ACTIONS(2928), 1, anon_sym_LBRACK, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, + ACTIONS(2930), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2076), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, - ACTIONS(4518), 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(2074), 29, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -203846,12 +204920,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16154] = 3, - ACTIONS(487), 1, + [16594] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3159), 1, + ACTIONS(3056), 1, anon_sym_LBRACK, - ACTIONS(3161), 54, + ACTIONS(3058), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203906,12 +204980,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16217] = 3, - ACTIONS(487), 1, + [16657] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3167), 1, + ACTIONS(3064), 1, anon_sym_LBRACK, - ACTIONS(3169), 54, + ACTIONS(3066), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203966,12 +205040,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16280] = 3, - ACTIONS(487), 1, + [16720] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3027), 1, + ACTIONS(3072), 1, anon_sym_LBRACK, - ACTIONS(3029), 54, + ACTIONS(3074), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204026,77 +205100,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16343] = 27, - ACTIONS(3), 1, + [16783] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2220), 1, - anon_sym_EQ, - ACTIONS(4422), 1, - anon_sym_as, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, + ACTIONS(2788), 1, anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, - anon_sym_DASH_DASH, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4454), 1, - anon_sym_or, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4458), 1, - anon_sym_is, - ACTIONS(4460), 1, - anon_sym_BANGis, - ACTIONS(4524), 1, - anon_sym_AMP_AMP, - ACTIONS(4526), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4528), 1, - anon_sym_in, - ACTIONS(4530), 1, - anon_sym_BANGin, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, + ACTIONS(2790), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4520), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4516), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4522), 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(4518), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2218), 15, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -204110,17 +205160,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16454] = 4, - ACTIONS(487), 1, + [16846] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2774), 1, - anon_sym_DOT, - ACTIONS(3027), 1, + ACTIONS(3088), 1, anon_sym_LBRACK, - ACTIONS(3029), 53, + ACTIONS(3090), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -204171,12 +205220,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16519] = 3, - ACTIONS(487), 1, + [16909] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3067), 1, + ACTIONS(3096), 1, anon_sym_LBRACK, - ACTIONS(3069), 54, + ACTIONS(3098), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204231,12 +205280,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16582] = 3, - ACTIONS(487), 1, + [16972] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2909), 1, + ACTIONS(3108), 1, anon_sym_LBRACK, - ACTIONS(2911), 54, + ACTIONS(3110), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204291,174 +205340,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16645] = 3, - ACTIONS(487), 1, + [17035] = 27, + ACTIONS(3), 1, sym_comment, - ACTIONS(2889), 1, - anon_sym_LBRACK, - ACTIONS(2891), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + ACTIONS(2234), 1, + anon_sym_EQ, + ACTIONS(4418), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4424), 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(4434), 1, + anon_sym_LBRACK, + ACTIONS(4436), 1, anon_sym_PLUS_PLUS, + ACTIONS(4438), 1, anon_sym_DASH_DASH, + ACTIONS(4440), 1, anon_sym_QMARK, + ACTIONS(4442), 1, anon_sym_BANG, + ACTIONS(4444), 1, anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4450), 1, anon_sym_or, - anon_sym_QMARK_DOT, + ACTIONS(4452), 1, anon_sym_POUND_LBRACK, + ACTIONS(4454), 1, anon_sym_is, + ACTIONS(4456), 1, anon_sym_BANGis, + ACTIONS(4492), 1, + anon_sym_AMP_AMP, + ACTIONS(4494), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4496), 1, anon_sym_in, + ACTIONS(4498), 1, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [16708] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2971), 19, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - ACTIONS(2973), 35, + STATE(1979), 1, + sym_argument_list, + STATE(1980), 1, + sym_or_block, + STATE(4384), 1, + sym_type_parameters, + ACTIONS(4416), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(4488), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4484), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_CARET, + ACTIONS(4490), 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, - anon_sym_LT_LT, - anon_sym_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, - [16773] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2901), 1, - anon_sym_LBRACK, - ACTIONS(2903), 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, + ACTIONS(4486), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(2232), 15, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -204472,35 +205424,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16836] = 4, - ACTIONS(487), 1, + [17146] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2954), 1, - anon_sym_LBRACK, - ACTIONS(2949), 19, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4544), 1, + anon_sym_else, + STATE(2022), 1, + sym_else_branch, + ACTIONS(2398), 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(2951), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -204509,12 +205441,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -204524,53 +205450,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [16901] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_LBRACK, - ACTIONS(2915), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2396), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -204593,20 +205486,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16964] = 3, - ACTIONS(487), 1, + [17213] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 1, - anon_sym_LBRACK, - 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, + ACTIONS(4544), 1, + anon_sym_else, + STATE(1931), 1, + sym_else_branch, + ACTIONS(2392), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -204616,12 +205503,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -204631,6 +205512,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2390), 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, @@ -204653,12 +205548,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17027] = 3, - ACTIONS(487), 1, + [17280] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2979), 1, + ACTIONS(3135), 1, anon_sym_LBRACK, - ACTIONS(2981), 54, + ACTIONS(3137), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204713,12 +205608,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17090] = 3, - ACTIONS(487), 1, + [17343] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2917), 1, + ACTIONS(3145), 1, anon_sym_LBRACK, - ACTIONS(2919), 54, + ACTIONS(3147), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204773,12 +205668,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17153] = 3, - ACTIONS(487), 1, + [17406] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2933), 1, + ACTIONS(3161), 1, anon_sym_LBRACK, - ACTIONS(2935), 54, + ACTIONS(3163), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204833,12 +205728,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17216] = 3, - ACTIONS(487), 1, + [17469] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2929), 1, + ACTIONS(3193), 1, anon_sym_LBRACK, - ACTIONS(2931), 54, + ACTIONS(3195), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204893,12 +205788,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17279] = 3, - ACTIONS(487), 1, + [17532] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2937), 1, + ACTIONS(2786), 1, anon_sym_LBRACK, - ACTIONS(2939), 54, + ACTIONS(2784), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204953,12 +205848,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17342] = 3, - ACTIONS(487), 1, + [17595] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2866), 1, + ACTIONS(3181), 1, anon_sym_LBRACK, - ACTIONS(2868), 54, + ACTIONS(3183), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205013,12 +205908,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17405] = 3, - ACTIONS(487), 1, + [17658] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2850), 1, + ACTIONS(3173), 1, anon_sym_LBRACK, - ACTIONS(2852), 54, + ACTIONS(3175), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205073,12 +205968,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17468] = 3, - ACTIONS(487), 1, + [17721] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(2818), 1, + ACTIONS(3139), 1, anon_sym_LBRACK, - ACTIONS(2820), 54, + ACTIONS(4546), 1, + anon_sym_BANG, + ACTIONS(3141), 53, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205103,7 +206000,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -205133,20 +206029,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17531] = 3, - ACTIONS(487), 1, + [17786] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(2814), 1, - anon_sym_LBRACK, - ACTIONS(2816), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, + ACTIONS(4548), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(4550), 1, + anon_sym_COLON_EQ, + STATE(3900), 1, + aux_sym_identifier_list_repeat1, + ACTIONS(2745), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + ACTIONS(2740), 19, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -205156,12 +206051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -205171,6 +206061,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2738), 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, @@ -205192,50 +206093,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [17594] = 3, - ACTIONS(487), 1, + [17857] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(2802), 1, + ACTIONS(4424), 1, + anon_sym_LPAREN, + ACTIONS(4434), 1, anon_sym_LBRACK, - ACTIONS(2804), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4440), 1, + anon_sym_QMARK, + ACTIONS(4442), 1, + anon_sym_BANG, + ACTIONS(4444), 1, + anon_sym_LBRACK2, + ACTIONS(4452), 1, + anon_sym_POUND_LBRACK, + STATE(1979), 1, + sym_argument_list, + STATE(1980), 1, + sym_or_block, + STATE(4384), 1, + sym_type_parameters, + ACTIONS(4416), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(2162), 7, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_CARET, + ACTIONS(4486), 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(2160), 29, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -205253,12 +206164,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17657] = 3, - ACTIONS(487), 1, + [17942] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2798), 1, + ACTIONS(2832), 1, anon_sym_LBRACK, - ACTIONS(2800), 54, + ACTIONS(2834), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205313,12 +206224,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17720] = 3, - ACTIONS(487), 1, + [18005] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3083), 1, + ACTIONS(3012), 1, anon_sym_LBRACK, - ACTIONS(3085), 54, + ACTIONS(3014), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205373,12 +206284,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17783] = 3, - ACTIONS(487), 1, + [18068] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2999), 1, + ACTIONS(2968), 1, anon_sym_LBRACK, - ACTIONS(3001), 54, + ACTIONS(2970), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205433,12 +206344,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17846] = 3, - ACTIONS(487), 1, + [18131] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3019), 1, + ACTIONS(3004), 1, anon_sym_LBRACK, - ACTIONS(3021), 54, + ACTIONS(3006), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205493,12 +206404,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17909] = 3, - ACTIONS(487), 1, + [18194] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3023), 1, + ACTIONS(3008), 1, anon_sym_LBRACK, - ACTIONS(3025), 54, + ACTIONS(3010), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205553,12 +206464,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17972] = 3, - ACTIONS(487), 1, + [18257] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3191), 1, + ACTIONS(3048), 1, anon_sym_LBRACK, - ACTIONS(3193), 54, + ACTIONS(3050), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205613,12 +206524,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18035] = 3, - ACTIONS(487), 1, + [18320] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2846), 1, + ACTIONS(3092), 1, anon_sym_LBRACK, - ACTIONS(2848), 54, + ACTIONS(3094), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205673,12 +206584,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18098] = 3, - ACTIONS(487), 1, + [18383] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3015), 1, + ACTIONS(2816), 1, anon_sym_LBRACK, - ACTIONS(3017), 54, + ACTIONS(2818), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205733,12 +206644,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18161] = 3, - ACTIONS(487), 1, + [18446] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2991), 1, + ACTIONS(2987), 1, anon_sym_LBRACK, - ACTIONS(2993), 54, + ACTIONS(2984), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205793,12 +206704,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18224] = 3, - ACTIONS(487), 1, + [18509] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3007), 1, + ACTIONS(2956), 1, anon_sym_LBRACK, - ACTIONS(3009), 54, + ACTIONS(2958), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205853,15 +206764,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18287] = 5, - ACTIONS(3), 1, + [18572] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(4542), 1, - anon_sym_else, - STATE(1976), 1, - sym_else_branch, - ACTIONS(2406), 18, + ACTIONS(2987), 1, + anon_sym_LBRACK, + ACTIONS(2982), 19, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + ACTIONS(2984), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -205870,6 +206801,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -205879,20 +206816,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2404), 35, - 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, + [18637] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(2924), 1, + anon_sym_LBRACK, + ACTIONS(2926), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -205915,14 +206885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18354] = 5, + [18700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4542), 1, - anon_sym_else, - STATE(1980), 1, - sym_else_branch, - ACTIONS(2400), 18, + ACTIONS(2694), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -205941,7 +206907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2398), 35, + ACTIONS(2692), 37, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -205960,6 +206926,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, @@ -205977,12 +206945,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18421] = 3, - ACTIONS(487), 1, + [18763] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3079), 1, + ACTIONS(2912), 1, anon_sym_LBRACK, - ACTIONS(3081), 54, + ACTIONS(2914), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206037,20 +207005,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18484] = 3, - ACTIONS(487), 1, + [18826] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3011), 1, - anon_sym_LBRACK, - ACTIONS(3013), 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(2694), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -206060,12 +207018,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -206075,11 +207027,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2692), 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, @@ -206096,13 +207065,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [18547] = 3, - ACTIONS(487), 1, + [18889] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3187), 1, + ACTIONS(2860), 1, anon_sym_LBRACK, - ACTIONS(3189), 54, + ACTIONS(2862), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206157,12 +207125,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18610] = 3, - ACTIONS(487), 1, + [18952] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(2868), 1, anon_sym_LBRACK, - ACTIONS(2923), 54, + ACTIONS(2870), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206217,12 +207185,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18673] = 3, - ACTIONS(487), 1, + [19015] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4424), 1, + anon_sym_LPAREN, + ACTIONS(4434), 1, + anon_sym_LBRACK, + ACTIONS(4440), 1, + anon_sym_QMARK, + ACTIONS(4442), 1, + anon_sym_BANG, + ACTIONS(4444), 1, + anon_sym_LBRACK2, + ACTIONS(4452), 1, + anon_sym_POUND_LBRACK, + STATE(1979), 1, + sym_argument_list, + STATE(1980), 1, + sym_or_block, + STATE(4384), 1, + sym_type_parameters, + ACTIONS(4416), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2162), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4484), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4486), 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(2160), 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, + [19102] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2905), 1, + ACTIONS(2932), 1, anon_sym_LBRACK, - ACTIONS(2907), 54, + ACTIONS(2934), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206277,10 +207317,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18736] = 3, + [19165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2730), 18, + ACTIONS(2736), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -206299,8 +207339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2728), 37, - anon_sym_SEMI, + ACTIONS(2734), 37, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -206311,8 +207350,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, @@ -206336,13 +207377,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [18799] = 3, - ACTIONS(487), 1, + [19228] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2826), 1, + ACTIONS(2892), 1, anon_sym_LBRACK, - ACTIONS(2828), 54, + ACTIONS(2894), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206397,12 +207437,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18862] = 3, - ACTIONS(487), 1, + [19291] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2897), 1, + ACTIONS(2884), 1, anon_sym_LBRACK, - ACTIONS(2899), 54, + ACTIONS(2886), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206457,12 +207497,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18925] = 3, - ACTIONS(487), 1, + [19354] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(2960), 1, anon_sym_LBRACK, - ACTIONS(3165), 54, + ACTIONS(2962), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206517,12 +207557,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18988] = 3, - ACTIONS(487), 1, + [19417] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3183), 1, + ACTIONS(3020), 1, anon_sym_LBRACK, - ACTIONS(3185), 54, + ACTIONS(3022), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206577,12 +207617,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19051] = 3, - ACTIONS(487), 1, + [19480] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2874), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2876), 54, + ACTIONS(2882), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206637,12 +207677,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19114] = 3, - ACTIONS(487), 1, + [19543] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2768), 1, + ACTIONS(2872), 1, anon_sym_LBRACK, - ACTIONS(2766), 54, + ACTIONS(2874), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206697,12 +207737,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19177] = 3, - ACTIONS(487), 1, + [19606] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2858), 1, + ACTIONS(3185), 1, anon_sym_LBRACK, - ACTIONS(2860), 54, + ACTIONS(3187), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206757,12 +207797,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19240] = 3, - ACTIONS(487), 1, + [19669] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2806), 1, + ACTIONS(3189), 1, anon_sym_LBRACK, - ACTIONS(2808), 54, + ACTIONS(3191), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206817,12 +207857,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19303] = 3, - ACTIONS(487), 1, + [19732] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2810), 1, + ACTIONS(3197), 1, anon_sym_LBRACK, - ACTIONS(2812), 54, + ACTIONS(3199), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206877,12 +207917,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19366] = 3, - ACTIONS(487), 1, + [19795] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2838), 1, + ACTIONS(3201), 1, anon_sym_LBRACK, - ACTIONS(2840), 54, + ACTIONS(3203), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206937,12 +207977,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19429] = 3, - ACTIONS(487), 1, + [19858] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(2876), 1, anon_sym_LBRACK, - ACTIONS(2844), 54, + ACTIONS(2878), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206997,74 +208037,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19492] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4544), 1, - anon_sym_else, - STATE(2018), 1, - sym_else_branch, - ACTIONS(2406), 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(2404), 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, - [19559] = 3, - ACTIONS(487), 1, + [19921] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2862), 1, + ACTIONS(3165), 1, anon_sym_LBRACK, - ACTIONS(2864), 54, + ACTIONS(3167), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207119,12 +208097,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19622] = 3, - ACTIONS(487), 1, + [19984] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3047), 1, + ACTIONS(3157), 1, anon_sym_LBRACK, - ACTIONS(3049), 54, + ACTIONS(3159), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207179,12 +208157,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19685] = 3, - ACTIONS(487), 1, + [20047] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2925), 1, + ACTIONS(2864), 1, anon_sym_LBRACK, - ACTIONS(2927), 54, + ACTIONS(2866), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207239,53 +208217,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19748] = 3, - ACTIONS(487), 1, + [20110] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(2834), 1, + ACTIONS(2162), 1, + anon_sym_EQ, + ACTIONS(4424), 1, + anon_sym_LPAREN, + ACTIONS(4434), 1, anon_sym_LBRACK, - ACTIONS(2836), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4440), 1, + anon_sym_QMARK, + ACTIONS(4442), 1, + anon_sym_BANG, + ACTIONS(4444), 1, + anon_sym_LBRACK2, + ACTIONS(4452), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4496), 1, + anon_sym_in, + ACTIONS(4498), 1, + anon_sym_BANGin, + STATE(1979), 1, + sym_argument_list, + STATE(1980), 1, + sym_or_block, + STATE(4384), 1, + sym_type_parameters, + ACTIONS(4416), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_QMARK_DOT, + ACTIONS(4488), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4484), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_CARET, + ACTIONS(4490), 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(4486), 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(2160), 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_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, @@ -207299,53 +208293,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19811] = 3, - ACTIONS(487), 1, + [20205] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(2790), 1, + ACTIONS(2162), 1, + anon_sym_EQ, + ACTIONS(4424), 1, + anon_sym_LPAREN, + ACTIONS(4434), 1, anon_sym_LBRACK, - ACTIONS(2792), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4440), 1, + anon_sym_QMARK, + ACTIONS(4442), 1, + anon_sym_BANG, + ACTIONS(4444), 1, + anon_sym_LBRACK2, + ACTIONS(4452), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4492), 1, + anon_sym_AMP_AMP, + ACTIONS(4496), 1, + anon_sym_in, + ACTIONS(4498), 1, + anon_sym_BANGin, + STATE(1979), 1, + sym_argument_list, + STATE(1980), 1, + sym_or_block, + STATE(4384), 1, + sym_type_parameters, + ACTIONS(4416), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_QMARK_DOT, + ACTIONS(4488), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4484), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_CARET, + ACTIONS(4490), 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(4486), 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(2160), 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, @@ -207359,10 +208370,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19874] = 3, + [20302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2700), 18, + ACTIONS(2736), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -207381,7 +208392,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2698), 37, + ACTIONS(2734), 37, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -207392,10 +208404,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, @@ -207419,12 +208429,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [19937] = 3, - ACTIONS(487), 1, + anon_sym_COLON_EQ, + [20365] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2794), 1, + ACTIONS(2997), 1, anon_sym_LBRACK, - ACTIONS(2796), 54, + ACTIONS(2994), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207479,20 +208490,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20000] = 3, - ACTIONS(487), 1, + [20428] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, - anon_sym_LBRACK, - ACTIONS(3093), 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(4552), 1, + anon_sym_else, + STATE(2135), 1, + sym_else_branch, + ACTIONS(2398), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -207502,12 +208507,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -207517,6 +208516,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2396), 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, @@ -207538,13 +208552,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [20063] = 3, - ACTIONS(487), 1, + [20495] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2957), 1, + ACTIONS(3153), 1, anon_sym_LBRACK, - ACTIONS(2959), 54, + ACTIONS(3155), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207599,12 +208612,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20126] = 3, - ACTIONS(487), 1, + [20558] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3087), 1, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(3089), 54, + ACTIONS(2846), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207659,49 +208672,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20189] = 3, - ACTIONS(487), 1, + [20621] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(2786), 1, + ACTIONS(4424), 1, + anon_sym_LPAREN, + ACTIONS(4434), 1, anon_sym_LBRACK, - ACTIONS(2788), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4440), 1, + anon_sym_QMARK, + ACTIONS(4442), 1, + anon_sym_BANG, + ACTIONS(4444), 1, + anon_sym_LBRACK2, + ACTIONS(4452), 1, + anon_sym_POUND_LBRACK, + STATE(1979), 1, + sym_argument_list, + STATE(1980), 1, + sym_or_block, + STATE(4384), 1, + sym_type_parameters, + ACTIONS(4416), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(2156), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4484), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4486), 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(2154), 29, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -207719,12 +208744,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20252] = 3, - ACTIONS(487), 1, + [20708] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2822), 1, + ACTIONS(3149), 1, anon_sym_LBRACK, - ACTIONS(2824), 54, + ACTIONS(3151), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207779,12 +208804,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20315] = 3, - ACTIONS(487), 1, + [20771] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3003), 1, + ACTIONS(3131), 1, anon_sym_LBRACK, - ACTIONS(3005), 54, + ACTIONS(3133), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207839,113 +208864,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20378] = 3, - ACTIONS(487), 1, + [20834] = 27, + ACTIONS(3), 1, sym_comment, - ACTIONS(2893), 1, - anon_sym_LBRACK, - ACTIONS(2895), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + ACTIONS(2172), 1, + anon_sym_EQ, + ACTIONS(4418), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4424), 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(4434), 1, + anon_sym_LBRACK, + ACTIONS(4436), 1, anon_sym_PLUS_PLUS, + ACTIONS(4438), 1, anon_sym_DASH_DASH, + ACTIONS(4440), 1, anon_sym_QMARK, + ACTIONS(4442), 1, anon_sym_BANG, + ACTIONS(4444), 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(4446), 1, anon_sym_AMP_AMP, + ACTIONS(4448), 1, anon_sym_PIPE_PIPE, + ACTIONS(4450), 1, anon_sym_or, - anon_sym_QMARK_DOT, + ACTIONS(4452), 1, anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(4458), 1, anon_sym_in, + ACTIONS(4460), 1, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [20441] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3057), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4554), 1, + anon_sym_is, + ACTIONS(4556), 1, + anon_sym_BANGis, + STATE(1979), 1, + sym_argument_list, + STATE(1980), 1, + sym_or_block, + STATE(4384), 1, + sym_type_parameters, + ACTIONS(4416), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_QMARK_DOT, + ACTIONS(4430), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4426), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_CARET, + ACTIONS(4432), 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(4428), 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(2170), 15, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -207959,12 +208948,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20504] = 3, - ACTIONS(487), 1, + [20945] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(3112), 1, anon_sym_LBRACK, - ACTIONS(2704), 54, + ACTIONS(3114), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208019,12 +209008,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20567] = 3, - ACTIONS(487), 1, + [21008] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2987), 1, + ACTIONS(3068), 1, anon_sym_LBRACK, - ACTIONS(2989), 54, + ACTIONS(3070), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208079,101 +209068,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20630] = 27, - ACTIONS(3), 1, + [21071] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2210), 1, - anon_sym_EQ, - ACTIONS(4422), 1, - anon_sym_as, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, + ACTIONS(3060), 1, anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, - anon_sym_DASH_DASH, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4454), 1, - anon_sym_or, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4458), 1, - anon_sym_is, - ACTIONS(4460), 1, - anon_sym_BANGis, - ACTIONS(4524), 1, - anon_sym_AMP_AMP, - ACTIONS(4526), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4528), 1, - anon_sym_in, - ACTIONS(4530), 1, - anon_sym_BANGin, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4520), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4516), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4522), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4518), 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(2208), 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, - [20741] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2882), 1, - anon_sym_LBRACK, - ACTIONS(2886), 1, - anon_sym_DOT, - ACTIONS(2884), 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, @@ -208224,12 +209128,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20806] = 3, - ACTIONS(487), 1, + [21134] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3059), 1, + ACTIONS(2738), 1, anon_sym_LBRACK, - ACTIONS(3061), 54, + ACTIONS(2740), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208284,12 +209188,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20869] = 3, - ACTIONS(487), 1, + [21197] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3052), 1, anon_sym_LBRACK, - ACTIONS(3181), 54, + ACTIONS(3054), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208344,40 +209248,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20932] = 15, + [21260] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4428), 1, + ACTIONS(2172), 1, + anon_sym_EQ, + ACTIONS(4418), 1, + anon_sym_as, + ACTIONS(4424), 1, anon_sym_LPAREN, - ACTIONS(4438), 1, + ACTIONS(4434), 1, anon_sym_LBRACK, - ACTIONS(4444), 1, + ACTIONS(4436), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4438), 1, + anon_sym_DASH_DASH, + ACTIONS(4440), 1, anon_sym_QMARK, - ACTIONS(4446), 1, + ACTIONS(4442), 1, anon_sym_BANG, - ACTIONS(4448), 1, + ACTIONS(4444), 1, anon_sym_LBRACK2, - ACTIONS(4456), 1, + ACTIONS(4450), 1, + anon_sym_or, + ACTIONS(4452), 1, anon_sym_POUND_LBRACK, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, + ACTIONS(4492), 1, + anon_sym_AMP_AMP, + ACTIONS(4494), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4496), 1, + anon_sym_in, + ACTIONS(4498), 1, + anon_sym_BANGin, + ACTIONS(4554), 1, + anon_sym_is, + ACTIONS(4556), 1, + anon_sym_BANGis, + STATE(1979), 1, sym_argument_list, - STATE(4313), 1, + STATE(1980), 1, + sym_or_block, + STATE(4384), 1, sym_type_parameters, - ACTIONS(4420), 2, + ACTIONS(4416), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2076), 3, - anon_sym_EQ, + ACTIONS(4488), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4516), 4, + ACTIONS(4484), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4518), 8, + ACTIONS(4490), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4486), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -208386,23 +209316,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2074), 29, + ACTIONS(2170), 15, 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, @@ -208416,50 +209332,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21019] = 3, + [21371] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2730), 18, + ACTIONS(4424), 1, + anon_sym_LPAREN, + ACTIONS(4434), 1, + anon_sym_LBRACK, + ACTIONS(4440), 1, + anon_sym_QMARK, + ACTIONS(4442), 1, + anon_sym_BANG, + ACTIONS(4444), 1, + anon_sym_LBRACK2, + ACTIONS(4452), 1, + anon_sym_POUND_LBRACK, + STATE(1979), 1, + sym_argument_list, + STATE(1980), 1, + sym_or_block, + STATE(4384), 1, + sym_type_parameters, + ACTIONS(4416), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(2144), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4484), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4486), 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(2728), 37, - anon_sym_DOT, + ACTIONS(2142), 29, + anon_sym_SEMI, 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, @@ -208476,12 +209403,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [21082] = 3, - ACTIONS(487), 1, + anon_sym_COLON_EQ, + [21458] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2770), 1, + ACTIONS(3032), 1, anon_sym_LBRACK, - ACTIONS(2772), 54, + ACTIONS(3034), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208536,12 +209464,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21145] = 3, - ACTIONS(487), 1, + [21521] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3024), 1, anon_sym_LBRACK, - ACTIONS(3197), 54, + ACTIONS(3026), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208596,12 +209524,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21208] = 3, - ACTIONS(487), 1, + [21584] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2976), 1, + ACTIONS(2972), 1, anon_sym_LBRACK, - ACTIONS(2973), 54, + ACTIONS(2974), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208656,12 +209584,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21271] = 3, - ACTIONS(487), 1, + [21647] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2954), 1, + ACTIONS(2804), 1, anon_sym_LBRACK, - ACTIONS(2951), 54, + ACTIONS(2806), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208716,12 +209644,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21334] = 3, - ACTIONS(487), 1, + [21710] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2995), 1, + ACTIONS(2828), 1, anon_sym_LBRACK, - ACTIONS(2997), 54, + ACTIONS(2830), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208776,10 +209704,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21397] = 3, - ACTIONS(3), 1, + [21773] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2700), 18, + ACTIONS(3100), 1, + anon_sym_LBRACK, + ACTIONS(3102), 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, @@ -208789,6 +209727,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -208798,27 +209742,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2698), 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, @@ -208836,69 +209764,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21460] = 19, + [21836] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, + ACTIONS(4552), 1, + anon_sym_else, + STATE(2141), 1, + sym_else_branch, + ACTIONS(2392), 18, anon_sym_EQ, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4528), 1, - anon_sym_in, - ACTIONS(4530), 1, - anon_sym_BANGin, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4520), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4516), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4522), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4518), 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(2074), 23, - anon_sym_SEMI, + ACTIONS(2390), 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, @@ -208911,71 +209826,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, - [21555] = 20, - ACTIONS(3), 1, + [21903] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2076), 1, - anon_sym_EQ, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, + ACTIONS(3080), 1, anon_sym_LBRACK, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4524), 1, - anon_sym_AMP_AMP, - ACTIONS(4528), 1, - anon_sym_in, - ACTIONS(4530), 1, - anon_sym_BANGin, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, + ACTIONS(3082), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4520), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4516), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4522), 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(4518), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2074), 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, @@ -208989,12 +209886,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21652] = 3, - ACTIONS(487), 1, + [21966] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3155), 1, + ACTIONS(2952), 1, anon_sym_LBRACK, - ACTIONS(3157), 54, + ACTIONS(2954), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209049,12 +209946,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21715] = 3, - ACTIONS(487), 1, + [22029] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3031), 1, + ACTIONS(2948), 1, anon_sym_LBRACK, - ACTIONS(3033), 54, + ACTIONS(2950), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209109,61 +210006,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21778] = 15, - ACTIONS(3), 1, + [22092] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, + ACTIONS(2944), 1, anon_sym_LBRACK, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, + ACTIONS(2946), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2112), 3, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4516), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4518), 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(2110), 29, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -209181,12 +210066,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21865] = 3, - ACTIONS(487), 1, + [22155] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3035), 1, + ACTIONS(2940), 1, anon_sym_LBRACK, - ACTIONS(3037), 54, + ACTIONS(2942), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209241,12 +210126,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21928] = 3, - ACTIONS(487), 1, + [22218] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3043), 1, + ACTIONS(2936), 1, anon_sym_LBRACK, - ACTIONS(3045), 54, + ACTIONS(2938), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209301,61 +210186,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21991] = 15, - ACTIONS(3), 1, + [22281] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, + ACTIONS(2916), 1, anon_sym_LBRACK, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, + ACTIONS(2918), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2108), 3, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4516), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4518), 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(2106), 29, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -209373,12 +210246,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22078] = 3, - ACTIONS(487), 1, + [22344] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3143), 1, + ACTIONS(2904), 1, anon_sym_LBRACK, - ACTIONS(3145), 54, + ACTIONS(2906), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209433,14 +210306,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22141] = 5, - ACTIONS(3), 1, + [22407] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(4544), 1, - anon_sym_else, - STATE(2013), 1, - sym_else_branch, - ACTIONS(2400), 18, + ACTIONS(2824), 1, + anon_sym_LBRACK, + ACTIONS(2826), 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, @@ -209450,6 +210329,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -209459,21 +210344,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2398), 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, @@ -209495,12 +210365,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [22208] = 3, - ACTIONS(487), 1, + anon_sym_COLON_EQ, + [22470] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3139), 1, + ACTIONS(2796), 1, anon_sym_LBRACK, - ACTIONS(3141), 54, + ACTIONS(2798), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209555,14 +210426,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22271] = 4, - ACTIONS(487), 1, + [22533] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2941), 1, + ACTIONS(3076), 1, anon_sym_LBRACK, - ACTIONS(4546), 1, - anon_sym_BANG, - ACTIONS(2943), 53, + ACTIONS(3078), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209587,6 +210456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -209616,12 +210486,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22336] = 3, - ACTIONS(487), 1, + [22596] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2854), 1, + ACTIONS(2800), 1, anon_sym_LBRACK, - ACTIONS(2856), 54, + ACTIONS(2802), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209676,58 +210546,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22399] = 7, + [22659] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4548), 1, - anon_sym_COMMA, - ACTIONS(4550), 1, - anon_sym_COLON_EQ, - STATE(3919), 1, - aux_sym_identifier_list_repeat1, - ACTIONS(2777), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(2772), 19, + ACTIONS(2172), 1, anon_sym_EQ, + ACTIONS(4418), 1, + anon_sym_as, + ACTIONS(4424), 1, + anon_sym_LPAREN, + ACTIONS(4434), 1, + anon_sym_LBRACK, + ACTIONS(4436), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4438), 1, + anon_sym_DASH_DASH, + ACTIONS(4440), 1, + anon_sym_QMARK, + ACTIONS(4442), 1, + anon_sym_BANG, + ACTIONS(4444), 1, + anon_sym_LBRACK2, + ACTIONS(4450), 1, + anon_sym_or, + ACTIONS(4452), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4492), 1, + anon_sym_AMP_AMP, + ACTIONS(4494), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4496), 1, + anon_sym_in, + ACTIONS(4498), 1, + anon_sym_BANGin, + ACTIONS(4558), 1, + anon_sym_is, + ACTIONS(4560), 1, + anon_sym_BANGis, + STATE(1979), 1, + sym_argument_list, + STATE(1980), 1, + sym_or_block, + STATE(4384), 1, + sym_type_parameters, + ACTIONS(4416), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4488), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4484), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4490), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4486), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2770), 31, - anon_sym_DOT, + ACTIONS(2170), 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, + [22769] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1716), 1, + anon_sym_EQ, + ACTIONS(4418), 1, anon_sym_as, + ACTIONS(4424), 1, anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4434), 1, + anon_sym_LBRACK, + ACTIONS(4436), 1, anon_sym_PLUS_PLUS, + ACTIONS(4438), 1, anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4440), 1, + anon_sym_QMARK, + ACTIONS(4442), 1, + anon_sym_BANG, + ACTIONS(4444), 1, + anon_sym_LBRACK2, + ACTIONS(4450), 1, anon_sym_or, - anon_sym_QMARK_DOT, + ACTIONS(4452), 1, anon_sym_POUND_LBRACK, + ACTIONS(4454), 1, anon_sym_is, + ACTIONS(4456), 1, anon_sym_BANGis, + ACTIONS(4492), 1, + anon_sym_AMP_AMP, + ACTIONS(4494), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4496), 1, anon_sym_in, + ACTIONS(4498), 1, anon_sym_BANGin, + STATE(1979), 1, + sym_argument_list, + STATE(1980), 1, + sym_or_block, + STATE(4384), 1, + sym_type_parameters, + ACTIONS(4416), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4488), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4484), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4490), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4486), 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(3309), 14, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -209740,53 +210711,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [22470] = 3, - ACTIONS(487), 1, + anon_sym_COLON_EQ, + [22879] = 27, + ACTIONS(3), 1, sym_comment, - ACTIONS(3147), 1, - anon_sym_LBRACK, - ACTIONS(3149), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + ACTIONS(2172), 1, + anon_sym_EQ, + ACTIONS(4418), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4424), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(4434), 1, + anon_sym_LBRACK, + ACTIONS(4436), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4438), 1, + anon_sym_DASH_DASH, + ACTIONS(4440), 1, + anon_sym_QMARK, + ACTIONS(4442), 1, + anon_sym_BANG, + ACTIONS(4444), 1, + anon_sym_LBRACK2, + ACTIONS(4450), 1, + anon_sym_or, + ACTIONS(4452), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4492), 1, + anon_sym_AMP_AMP, + ACTIONS(4494), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4496), 1, + anon_sym_in, + ACTIONS(4498), 1, + anon_sym_BANGin, + ACTIONS(4562), 1, + anon_sym_is, + ACTIONS(4564), 1, + anon_sym_BANGis, + STATE(1979), 1, + sym_argument_list, + STATE(1980), 1, + sym_or_block, + STATE(4384), 1, + sym_type_parameters, + ACTIONS(4416), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4488), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4484), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_CARET, + ACTIONS(4490), 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(4486), 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(2170), 14, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -209800,20 +210795,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22533] = 3, - ACTIONS(487), 1, + [22989] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3051), 1, - anon_sym_LBRACK, - ACTIONS(3053), 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, + STATE(2059), 1, + sym_type_parameters, + ACTIONS(2764), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -209823,12 +210810,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -209838,6 +210819,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2762), 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, @@ -209859,21 +210855,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [22596] = 3, - ACTIONS(487), 1, + [23053] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3063), 1, - anon_sym_LBRACK, - ACTIONS(3065), 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(4566), 1, + anon_sym_DOLLARelse, + ACTIONS(2616), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -209883,12 +210870,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -209898,6 +210879,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2614), 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, @@ -209919,13 +210915,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [22659] = 4, + [23117] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4552), 1, + ACTIONS(4568), 1, anon_sym_DOLLARelse, - ACTIONS(2740), 18, + ACTIONS(2758), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -209944,8 +210939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2738), 35, - anon_sym_SEMI, + ACTIONS(2756), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -209956,8 +210950,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, @@ -209979,67 +210975,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [22723] = 27, + [23181] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2124), 1, + ACTIONS(2172), 1, anon_sym_EQ, - ACTIONS(4422), 1, + ACTIONS(4418), 1, anon_sym_as, - ACTIONS(4428), 1, + ACTIONS(4424), 1, anon_sym_LPAREN, - ACTIONS(4438), 1, + ACTIONS(4434), 1, anon_sym_LBRACK, - ACTIONS(4440), 1, + ACTIONS(4436), 1, anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, + ACTIONS(4438), 1, anon_sym_DASH_DASH, - ACTIONS(4444), 1, + ACTIONS(4440), 1, anon_sym_QMARK, - ACTIONS(4446), 1, + ACTIONS(4442), 1, anon_sym_BANG, - ACTIONS(4448), 1, + ACTIONS(4444), 1, anon_sym_LBRACK2, - ACTIONS(4454), 1, + ACTIONS(4450), 1, anon_sym_or, - ACTIONS(4456), 1, + ACTIONS(4452), 1, anon_sym_POUND_LBRACK, - ACTIONS(4524), 1, + ACTIONS(4492), 1, anon_sym_AMP_AMP, - ACTIONS(4526), 1, + ACTIONS(4494), 1, anon_sym_PIPE_PIPE, - ACTIONS(4528), 1, + ACTIONS(4496), 1, anon_sym_in, - ACTIONS(4530), 1, + ACTIONS(4498), 1, anon_sym_BANGin, - ACTIONS(4554), 1, + ACTIONS(4570), 1, anon_sym_is, - ACTIONS(4556), 1, + ACTIONS(4572), 1, anon_sym_BANGis, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, + STATE(1979), 1, sym_argument_list, - STATE(4313), 1, + STATE(1980), 1, + sym_or_block, + STATE(4384), 1, sym_type_parameters, - ACTIONS(4420), 2, + ACTIONS(4416), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4520), 2, + ACTIONS(4488), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4516), 4, + ACTIONS(4484), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4522), 4, + ACTIONS(4490), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4518), 8, + ACTIONS(4486), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -210048,7 +211043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2122), 14, + ACTIONS(2170), 14, anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -210063,76 +211058,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22833] = 27, + [23291] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(4576), 1, + anon_sym_COMMA, + ACTIONS(4578), 1, anon_sym_EQ, - ACTIONS(4422), 1, + STATE(3356), 1, + aux_sym_expression_without_blocks_list_repeat1, + ACTIONS(4574), 13, + anon_sym_LBRACE, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + ACTIONS(2794), 17, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2792), 21, + anon_sym_DOT, anon_sym_as, - ACTIONS(4428), 1, anon_sym_LPAREN, - ACTIONS(4438), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - ACTIONS(4440), 1, + anon_sym_COLON, anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, anon_sym_DASH_DASH, - ACTIONS(4444), 1, + 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, + [23361] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4580), 1, + anon_sym_DOLLARelse, + ACTIONS(2616), 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, - ACTIONS(4446), 1, anon_sym_BANG, - ACTIONS(4448), 1, anon_sym_LBRACK2, - ACTIONS(4454), 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(2614), 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, - ACTIONS(4456), 1, + anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - ACTIONS(4458), 1, anon_sym_is, - ACTIONS(4460), 1, anon_sym_BANGis, - ACTIONS(4524), 1, - anon_sym_AMP_AMP, - ACTIONS(4526), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4528), 1, anon_sym_in, - ACTIONS(4530), 1, anon_sym_BANGin, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4520), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4516), 4, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [23425] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4582), 1, + anon_sym_DOLLARelse, + ACTIONS(2758), 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, - ACTIONS(4522), 4, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2756), 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(4518), 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, + [23489] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1989), 1, + sym_type_parameters, + ACTIONS(2764), 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(3305), 14, + ACTIONS(2762), 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, @@ -210146,12 +211301,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22943] = 4, + [23553] = 3, ACTIONS(3), 1, sym_comment, - STATE(2015), 1, - sym_type_parameters, - ACTIONS(2704), 18, + ACTIONS(3159), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210170,7 +211323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2702), 35, + ACTIONS(3157), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -210206,12 +211359,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23007] = 4, + [23614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4558), 1, - anon_sym_DOLLARelse, - ACTIONS(2734), 18, + ACTIONS(2866), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210230,7 +211381,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2732), 35, + ACTIONS(2864), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210241,10 +211393,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, @@ -210266,76 +211416,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23071] = 27, + anon_sym_COLON_EQ, + [23675] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2124), 1, - anon_sym_EQ, - ACTIONS(4422), 1, - anon_sym_as, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, + ACTIONS(2745), 2, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, - anon_sym_DASH_DASH, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4454), 1, - anon_sym_or, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4524), 1, - anon_sym_AMP_AMP, - ACTIONS(4526), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4528), 1, + ACTIONS(4584), 2, + anon_sym_COMMA, anon_sym_in, - ACTIONS(4530), 1, - anon_sym_BANGin, - ACTIONS(4560), 1, - anon_sym_is, - ACTIONS(4562), 1, - anon_sym_BANGis, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4520), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4516), 4, + ACTIONS(2740), 18, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4522), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4518), 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(2122), 14, - anon_sym_COMMA, + ACTIONS(2738), 31, + anon_sym_SEMI, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -210349,30 +211477,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23181] = 7, + [23740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4566), 1, - anon_sym_COMMA, - ACTIONS(4568), 1, + ACTIONS(2694), 18, anon_sym_EQ, - STATE(3351), 1, - aux_sym_expression_without_blocks_list_repeat1, - ACTIONS(4564), 13, - anon_sym_LBRACE, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - ACTIONS(2880), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -210390,19 +211499,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2878), 21, + ACTIONS(2692), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -210412,12 +211522,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [23251] = 4, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [23801] = 3, ACTIONS(3), 1, sym_comment, - STATE(2038), 1, - sym_type_parameters, - ACTIONS(2704), 18, + ACTIONS(2740), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210436,7 +211557,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2702), 35, + ACTIONS(2738), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210447,10 +211569,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, @@ -210472,12 +211592,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23315] = 4, + anon_sym_COLON_EQ, + [23862] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4570), 1, - anon_sym_DOLLARelse, - ACTIONS(2734), 18, + ACTIONS(4586), 1, + anon_sym_DOT, + ACTIONS(3118), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210496,9 +211617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2732), 35, + ACTIONS(3116), 34, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -210532,12 +211652,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23379] = 4, + [23925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4572), 1, - anon_sym_DOLLARelse, - ACTIONS(2740), 18, + ACTIONS(2784), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210556,7 +211674,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2738), 35, + ACTIONS(2786), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210567,10 +211686,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, @@ -210592,151 +211709,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23443] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2124), 1, - anon_sym_EQ, - ACTIONS(4422), 1, - anon_sym_as, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, - anon_sym_DASH_DASH, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4454), 1, - anon_sym_or, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4524), 1, - anon_sym_AMP_AMP, - ACTIONS(4526), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4528), 1, - anon_sym_in, - ACTIONS(4530), 1, - anon_sym_BANGin, - ACTIONS(4574), 1, - anon_sym_is, - ACTIONS(4576), 1, - anon_sym_BANGis, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4520), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4516), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4522), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4518), 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(2122), 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, - [23553] = 3, + [23986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2824), 18, - anon_sym_EQ, + ACTIONS(2922), 24, + anon_sym_DOT, + anon_sym_as, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_struct, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2822), 35, + anon_sym_or, + anon_sym_is, + anon_sym_in, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(2920), 29, 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_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23614] = 3, + anon_sym_map_LBRACK, + anon_sym_DOT_DOT, + [24047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2816), 18, + ACTIONS(4586), 1, + anon_sym_DOT, + ACTIONS(3118), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210755,8 +211792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2814), 35, - anon_sym_DOT, + ACTIONS(3116), 34, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -210791,10 +211827,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23675] = 3, + [24110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3161), 18, + ACTIONS(2794), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210813,8 +211849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3159), 35, - anon_sym_SEMI, + ACTIONS(2792), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -210825,8 +211860,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, @@ -210848,243 +211885,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [23736] = 3, + [24171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2911), 18, - anon_sym_EQ, + ACTIONS(2814), 24, + anon_sym_DOT, + anon_sym_as, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_struct, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2909), 35, + anon_sym_or, + anon_sym_is, + anon_sym_in, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(2812), 29, 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_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23797] = 3, + anon_sym_map_LBRACK, + anon_sym_DOT_DOT, + [24232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3109), 18, - anon_sym_EQ, + ACTIONS(2854), 24, + anon_sym_DOT, + anon_sym_as, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_struct, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3107), 35, + anon_sym_or, + anon_sym_is, + anon_sym_in, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(2852), 29, 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_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23858] = 3, + anon_sym_map_LBRACK, + anon_sym_DOT_DOT, + [24293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3169), 18, - anon_sym_EQ, + ACTIONS(2858), 24, + anon_sym_DOT, + anon_sym_as, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_struct, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3167), 35, - anon_sym_DOT, - anon_sym_as, + anon_sym_or, + anon_sym_is, + anon_sym_in, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(2856), 29, + anon_sym_SEMI, 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_COLON, + anon_sym_RBRACK, 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, - [23919] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3029), 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(3027), 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, - [23980] = 3, + anon_sym_COLON_EQ, + anon_sym_map_LBRACK, + anon_sym_DOT_DOT, + [24354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3189), 18, + ACTIONS(3125), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211103,8 +212081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3187), 35, - anon_sym_SEMI, + ACTIONS(3123), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211115,8 +212092,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, @@ -211138,11 +212117,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [24041] = 3, + [24415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3185), 18, + ACTIONS(3171), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211161,7 +212139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3183), 35, + ACTIONS(3169), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -211197,10 +212175,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24102] = 3, + [24476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3097), 18, + ACTIONS(3129), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211219,7 +212197,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3095), 35, + ACTIONS(3127), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211230,10 +212209,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, @@ -211255,10 +212232,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24163] = 3, + anon_sym_COLON_EQ, + [24537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3005), 18, + ACTIONS(2764), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211277,7 +212255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3003), 35, + ACTIONS(2762), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -211313,10 +212291,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24224] = 3, + [24598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2997), 18, + ACTIONS(2794), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211335,7 +212313,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2995), 35, + ACTIONS(2792), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211346,10 +212325,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, @@ -211371,68 +212348,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24285] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4580), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(4578), 48, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_struct, - anon_sym_mut, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_go, - anon_sym_spawn, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_float_literal, - sym_rune_literal, - anon_sym_AT, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - [24346] = 3, + anon_sym_COLON_EQ, + [24659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 18, + ACTIONS(3125), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211451,7 +212371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2983), 35, + ACTIONS(3123), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -211487,10 +212407,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24407] = 3, + [24720] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2981), 18, + ACTIONS(2786), 1, + anon_sym_LBRACE, + ACTIONS(2694), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211509,11 +212431,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2979), 35, + ACTIONS(2692), 34, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -211545,10 +212466,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24468] = 3, + [24783] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 18, + ACTIONS(2745), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + ACTIONS(2740), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211567,21 +212491,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2702), 35, + ACTIONS(2738), 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, @@ -211603,10 +212524,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24529] = 3, + anon_sym_COLON_EQ, + [24846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3181), 18, + ACTIONS(3018), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211625,7 +212547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3179), 35, + ACTIONS(3016), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -211661,68 +212583,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24590] = 3, + [24907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3101), 24, - anon_sym_DOT, - anon_sym_as, + ACTIONS(3106), 18, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_struct, - anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3099), 29, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(3104), 35, 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_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_is, anon_sym_BANGis, + anon_sym_in, anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - anon_sym_DOT_DOT, - [24651] = 3, + [24968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3149), 18, + ACTIONS(3086), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211741,7 +212663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3147), 35, + ACTIONS(3084), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -211777,10 +212699,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24712] = 3, + [25029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3193), 18, + ACTIONS(2890), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211799,7 +212721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3191), 35, + ACTIONS(2888), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211835,10 +212757,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24773] = 3, + [25090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3065), 18, + ACTIONS(2898), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211857,8 +212779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3063), 35, - anon_sym_SEMI, + ACTIONS(2896), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211869,8 +212790,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, @@ -211892,11 +212815,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [24834] = 3, + [25151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 18, + ACTIONS(2850), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211915,7 +212837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3051), 35, + ACTIONS(2848), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -211951,68 +212873,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24895] = 3, + [25212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3133), 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_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3131), 29, - anon_sym_SEMI, - 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_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - anon_sym_DOT_DOT, - [24956] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2931), 18, + ACTIONS(2902), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212031,8 +212895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2929), 35, - anon_sym_SEMI, + ACTIONS(2900), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212043,8 +212906,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, @@ -212066,11 +212931,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [25017] = 3, + [25273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3069), 18, + ACTIONS(3046), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212089,7 +212953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3067), 35, + ACTIONS(3044), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212125,10 +212989,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25078] = 3, + [25334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2824), 18, + ACTIONS(2890), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212147,7 +213011,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2822), 35, + ACTIONS(2888), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212158,10 +213023,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, @@ -212183,10 +213046,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25139] = 3, + anon_sym_COLON_EQ, + [25395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3109), 18, + ACTIONS(2898), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212205,7 +213069,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3107), 35, + ACTIONS(2896), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212216,10 +213081,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, @@ -212241,10 +213104,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25200] = 3, + anon_sym_COLON_EQ, + [25456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2796), 18, + ACTIONS(2902), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212263,7 +213127,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2794), 35, + ACTIONS(2900), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212274,10 +213139,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, @@ -212299,12 +213162,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25261] = 4, + anon_sym_COLON_EQ, + [25517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(2884), 18, + ACTIONS(2930), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212323,8 +213185,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2882), 34, + ACTIONS(2928), 35, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212358,10 +213221,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25324] = 3, + [25578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2820), 18, + ACTIONS(2838), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212380,7 +213243,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2818), 35, + ACTIONS(2836), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212391,10 +213255,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, @@ -212416,10 +213278,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25385] = 3, + anon_sym_COLON_EQ, + [25639] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(4591), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(4589), 48, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_struct, + anon_sym_mut, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_go, + anon_sym_spawn, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_float_literal, + sym_rune_literal, + anon_sym_AT, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + [25700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3045), 18, + ACTIONS(3058), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212438,7 +213359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3043), 35, + ACTIONS(3056), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212474,10 +213395,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25446] = 3, + [25761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3113), 18, + ACTIONS(3066), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212496,7 +213417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3111), 35, + ACTIONS(3064), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212507,10 +213429,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, @@ -212532,10 +213452,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25507] = 3, + anon_sym_COLON_EQ, + [25822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 18, + ACTIONS(3074), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212554,7 +213475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3035), 35, + ACTIONS(3072), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212590,10 +213511,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25568] = 3, + [25883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2967), 18, + ACTIONS(3042), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212612,7 +213533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2965), 35, + ACTIONS(3040), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212648,10 +213569,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25629] = 3, + [25944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3033), 18, + ACTIONS(2790), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212670,7 +213591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3031), 35, + ACTIONS(2788), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212706,10 +213627,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25690] = 3, + [26005] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3145), 18, + ACTIONS(2745), 1, + anon_sym_DOT, + ACTIONS(2846), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212728,9 +213651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3143), 35, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(2844), 34, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212740,8 +213661,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, @@ -212763,11 +213686,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [25751] = 3, + [26068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2868), 18, + ACTIONS(3090), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212786,7 +213708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2866), 35, + ACTIONS(3088), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212822,10 +213744,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25812] = 3, + [26129] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2852), 18, + ACTIONS(2745), 1, + anon_sym_DOT, + ACTIONS(2846), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212844,9 +213768,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2850), 35, + ACTIONS(2844), 34, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212880,68 +213803,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25873] = 3, + [26192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 18, - anon_sym_EQ, + ACTIONS(2810), 24, + anon_sym_DOT, + anon_sym_as, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_struct, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2826), 35, + anon_sym_or, + anon_sym_is, + anon_sym_in, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(2808), 29, 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_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25934] = 3, + anon_sym_map_LBRACK, + anon_sym_DOT_DOT, + [26253] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2903), 18, + ACTIONS(2745), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + ACTIONS(2740), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212960,17 +213886,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2901), 35, + ACTIONS(2738), 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, @@ -212996,10 +213920,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25995] = 3, + [26316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 18, + ACTIONS(3038), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213018,7 +213942,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2826), 35, + ACTIONS(3036), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213029,10 +213954,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -213054,10 +213977,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26056] = 3, + anon_sym_COLON_EQ, + [26377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3141), 18, + ACTIONS(2694), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213076,8 +214000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3139), 35, - anon_sym_SEMI, + ACTIONS(2692), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213088,8 +214011,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, @@ -213111,11 +214036,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26117] = 3, + [26438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2816), 18, + ACTIONS(3110), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213134,7 +214058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2814), 35, + ACTIONS(3108), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213170,10 +214094,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26178] = 3, + [26499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 18, + ACTIONS(3137), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213192,7 +214116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2802), 35, + ACTIONS(3135), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213228,10 +214152,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26239] = 3, + [26560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2915), 18, + ACTIONS(3147), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213250,7 +214174,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2913), 35, + ACTIONS(3145), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213261,10 +214186,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, @@ -213286,10 +214209,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26300] = 3, + anon_sym_COLON_EQ, + [26621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2800), 18, + ACTIONS(3163), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213308,7 +214232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2798), 35, + ACTIONS(3161), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213344,10 +214268,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26361] = 3, + [26682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3153), 18, + ACTIONS(3030), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213366,7 +214290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3151), 35, + ACTIONS(3028), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213402,10 +214326,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26422] = 3, + [26743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2808), 18, + ACTIONS(3195), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213424,7 +214348,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2806), 35, + ACTIONS(3193), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213435,10 +214360,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, @@ -213460,10 +214383,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26483] = 3, + anon_sym_COLON_EQ, + [26804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 18, + ACTIONS(2994), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213482,7 +214406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2838), 35, + ACTIONS(2997), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213518,10 +214442,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26544] = 3, + [26865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3085), 18, + ACTIONS(2984), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213540,7 +214464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3083), 35, + ACTIONS(2987), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213576,10 +214500,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26605] = 3, + [26926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3157), 18, + ACTIONS(2838), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213598,8 +214522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3155), 35, - anon_sym_SEMI, + ACTIONS(2836), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213610,8 +214533,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, @@ -213633,11 +214558,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26666] = 3, + [26987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 18, + ACTIONS(3183), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213656,7 +214580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3195), 35, + ACTIONS(3181), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213692,10 +214616,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26727] = 3, + [27048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2860), 18, + ACTIONS(3175), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213714,7 +214638,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2858), 35, + ACTIONS(3173), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213725,10 +214650,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, @@ -213750,10 +214673,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26788] = 3, + anon_sym_COLON_EQ, + [27109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 18, + ACTIONS(2958), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213772,7 +214696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2999), 35, + ACTIONS(2956), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213808,10 +214732,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26849] = 3, + [27170] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3125), 18, + ACTIONS(4593), 1, + anon_sym_BANG, + ACTIONS(3141), 17, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213822,7 +214748,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -213830,7 +214755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3123), 35, + ACTIONS(3139), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213866,10 +214791,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26910] = 3, + [27233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 18, + ACTIONS(3098), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213888,7 +214813,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2917), 35, + ACTIONS(3096), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213899,10 +214825,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, @@ -213924,10 +214848,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26971] = 3, + anon_sym_COLON_EQ, + [27294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3153), 18, + ACTIONS(2966), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213946,7 +214871,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3151), 35, + ACTIONS(2964), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213957,10 +214883,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, @@ -213982,10 +214906,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27032] = 3, + anon_sym_COLON_EQ, + [27355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 18, + ACTIONS(3014), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214004,7 +214929,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(3012), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214040,10 +214965,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27093] = 3, + [27416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 18, + ACTIONS(2970), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214062,7 +214987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3055), 35, + ACTIONS(2968), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214098,10 +215023,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27154] = 3, + [27477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3025), 18, + ACTIONS(3006), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214120,7 +215045,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(3004), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214156,10 +215081,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27215] = 3, + [27538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3129), 18, + ACTIONS(3010), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214178,7 +215103,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3127), 35, + ACTIONS(3008), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214189,10 +215115,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, @@ -214214,10 +215138,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27276] = 3, + anon_sym_COLON_EQ, + [27599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 18, + ACTIONS(3050), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214236,7 +215161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3115), 35, + ACTIONS(3048), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214272,10 +215197,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27337] = 3, + [27660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3193), 18, + ACTIONS(3094), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214294,7 +215219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3191), 35, + ACTIONS(3092), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214330,10 +215255,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27398] = 3, + [27721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3173), 18, + ACTIONS(2818), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214352,7 +215277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3171), 35, + ACTIONS(2816), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214388,10 +215313,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27459] = 3, + [27782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2981), 18, + ACTIONS(2862), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214410,7 +215335,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2979), 35, + ACTIONS(2860), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214421,10 +215347,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, @@ -214446,10 +215370,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27520] = 3, + anon_sym_COLON_EQ, + [27843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3049), 18, + ACTIONS(2870), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214468,7 +215393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3047), 35, + ACTIONS(2868), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214504,10 +215429,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27581] = 3, + [27904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3077), 18, + ACTIONS(2934), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214526,7 +215451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3075), 35, + ACTIONS(2932), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214562,10 +215487,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27642] = 3, + [27965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3161), 18, + ACTIONS(2962), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214584,7 +215509,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3159), 35, + ACTIONS(2960), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214595,10 +215521,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, @@ -214620,10 +215544,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27703] = 3, + anon_sym_COLON_EQ, + [28026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 18, + ACTIONS(3022), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214642,7 +215567,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2983), 35, + ACTIONS(3020), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214653,10 +215579,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, @@ -214678,10 +215602,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27764] = 3, + anon_sym_COLON_EQ, + [28087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 18, + ACTIONS(3163), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214700,7 +215625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3175), 35, + ACTIONS(3161), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214736,10 +215661,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27825] = 3, + [28148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3129), 18, + ACTIONS(3195), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214758,8 +215683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3127), 35, - anon_sym_SEMI, + ACTIONS(3193), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214770,8 +215694,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, @@ -214793,12 +215719,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [27886] = 3, + [28209] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3073), 18, + ACTIONS(2992), 1, anon_sym_EQ, + ACTIONS(2990), 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(2994), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -214816,21 +215759,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3071), 35, + ACTIONS(2997), 19, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -214840,6 +215779,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, + [28274] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2982), 1, + anon_sym_EQ, + ACTIONS(2980), 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, @@ -214852,11 +215801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27947] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2848), 18, - anon_sym_EQ, + ACTIONS(2984), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -214874,12 +215819,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2846), 35, - anon_sym_SEMI, + ACTIONS(2987), 19, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -214897,23 +215839,10 @@ 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, - [28008] = 3, + [28339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2935), 18, + ACTIONS(3187), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214932,7 +215861,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2933), 35, + ACTIONS(3185), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214943,10 +215873,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, @@ -214968,10 +215896,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28069] = 3, + anon_sym_COLON_EQ, + [28400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3173), 18, + ACTIONS(3191), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214990,7 +215919,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3171), 35, + ACTIONS(3189), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215001,10 +215931,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, @@ -215026,10 +215954,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28130] = 3, + anon_sym_COLON_EQ, + [28461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3017), 18, + ACTIONS(3199), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215048,7 +215977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3015), 35, + ACTIONS(3197), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215084,10 +216013,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28191] = 3, + [28522] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 18, + ACTIONS(2980), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(2984), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215106,10 +216038,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2937), 35, + ACTIONS(2987), 33, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -215117,10 +216048,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, @@ -215142,10 +216071,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28252] = 3, + anon_sym_COLON_EQ, + [28585] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 18, + ACTIONS(2990), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(2994), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215164,11 +216097,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3011), 35, - anon_sym_SEMI, + ACTIONS(2997), 33, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -215200,10 +216131,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28313] = 3, + [28648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2993), 18, + ACTIONS(2784), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215222,7 +216153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2991), 35, + ACTIONS(2786), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215258,10 +216189,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28374] = 3, + [28709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 18, + ACTIONS(2926), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215280,7 +216211,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3007), 35, + ACTIONS(2924), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215291,10 +216223,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, @@ -215316,29 +216246,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28435] = 5, + anon_sym_COLON_EQ, + [28770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2949), 1, + ACTIONS(3203), 18, anon_sym_EQ, - ACTIONS(2947), 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(2951), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -215356,9 +216269,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2954), 19, + ACTIONS(3201), 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, @@ -215376,13 +216292,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [28500] = 4, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [28831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2947), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(2951), 18, + ACTIONS(3179), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215401,9 +216327,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2954), 33, + ACTIONS(3177), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -215435,13 +216363,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28563] = 4, + [28892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2969), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(2973), 18, + ACTIONS(3167), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215460,9 +216385,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2976), 33, + ACTIONS(3165), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -215494,29 +216421,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28626] = 5, + [28953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2971), 1, + ACTIONS(2914), 18, anon_sym_EQ, - ACTIONS(2969), 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(2973), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -215534,9 +216443,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2976), 19, + ACTIONS(2912), 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, @@ -215554,10 +216466,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [28691] = 3, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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, + [29014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3113), 18, + ACTIONS(2910), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215576,7 +216501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3111), 35, + ACTIONS(2908), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215612,10 +216537,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28752] = 3, + [29075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3073), 18, + ACTIONS(2894), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215634,7 +216559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3071), 35, + ACTIONS(2892), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215670,10 +216595,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28813] = 3, + [29136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 18, + ACTIONS(3155), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215692,7 +216617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2999), 35, + ACTIONS(3153), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215703,10 +216629,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, @@ -215728,10 +216652,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28874] = 3, + anon_sym_COLON_EQ, + [29197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2860), 18, + ACTIONS(2886), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215750,7 +216675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2858), 35, + ACTIONS(2884), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215786,10 +216711,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28935] = 3, + [29258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3165), 18, + ACTIONS(3151), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215808,7 +216733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3163), 35, + ACTIONS(3149), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215844,68 +216769,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28996] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3105), 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_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3103), 29, - anon_sym_SEMI, - 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_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - anon_sym_DOT_DOT, - [29057] = 3, + [29319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2808), 18, + ACTIONS(3133), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215924,7 +216791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2806), 35, + ACTIONS(3131), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215960,10 +216827,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29118] = 3, + [29380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3085), 18, + ACTIONS(2882), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215982,7 +216849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3083), 35, + ACTIONS(2880), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215993,10 +216861,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, @@ -216018,10 +216884,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29179] = 3, + anon_sym_COLON_EQ, + [29441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 18, + ACTIONS(3002), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216040,8 +216907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2921), 35, - anon_sym_SEMI, + ACTIONS(3000), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216052,8 +216918,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, @@ -216075,11 +216943,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [29240] = 3, + [29502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2989), 18, + ACTIONS(3114), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216098,7 +216965,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2987), 35, + ACTIONS(3112), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216109,10 +216977,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, @@ -216134,10 +217000,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29301] = 3, + anon_sym_COLON_EQ, + [29563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2907), 18, + ACTIONS(3102), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216156,7 +217023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2905), 35, + ACTIONS(3100), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216192,10 +217059,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29362] = 3, + [29624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2788), 18, + ACTIONS(2842), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216214,8 +217081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2786), 35, - anon_sym_SEMI, + ACTIONS(2840), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216226,8 +217092,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, @@ -216249,11 +217117,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [29423] = 3, + [29685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2963), 18, + ACTIONS(3070), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216272,7 +217139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2961), 35, + ACTIONS(3068), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216308,10 +217175,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29484] = 3, + [29746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 18, + ACTIONS(2874), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216330,7 +217197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3087), 35, + ACTIONS(2872), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216366,10 +217233,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29545] = 3, + [29807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3069), 18, + ACTIONS(2978), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216388,7 +217255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3067), 35, + ACTIONS(2976), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216424,10 +217291,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29606] = 3, + [29868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2812), 18, + ACTIONS(3171), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216446,8 +217313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2810), 35, - anon_sym_SEMI, + ACTIONS(3169), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216458,8 +217324,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, @@ -216481,11 +217349,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [29667] = 3, + [29929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2796), 18, + ACTIONS(2834), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216504,8 +217371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2794), 35, - anon_sym_SEMI, + ACTIONS(2832), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216516,8 +217382,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, @@ -216539,11 +217407,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [29728] = 3, + [29990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3077), 18, + ACTIONS(3102), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216562,7 +217429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3075), 35, + ACTIONS(3100), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216598,10 +217465,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29789] = 3, + [30051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2766), 18, + ACTIONS(2822), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216620,7 +217487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2768), 35, + ACTIONS(2820), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216656,10 +217523,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29850] = 3, + [30112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 18, + ACTIONS(3082), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216678,7 +217545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2830), 35, + ACTIONS(3080), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216714,10 +217581,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29911] = 3, + [30173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 18, + ACTIONS(3062), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216736,7 +217603,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3079), 35, + ACTIONS(3060), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216747,10 +217615,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, @@ -216772,10 +217638,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29972] = 3, + anon_sym_COLON_EQ, + [30234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2880), 18, + ACTIONS(3054), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216794,7 +217661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2878), 35, + ACTIONS(3052), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216830,10 +217697,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30033] = 3, + [30295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2820), 18, + ACTIONS(2806), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216852,8 +217719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2818), 35, - anon_sym_SEMI, + ACTIONS(2804), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216864,8 +217730,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, @@ -216887,11 +217755,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [30094] = 3, + [30356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3005), 18, + ACTIONS(2974), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216910,7 +217777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3003), 35, + ACTIONS(2972), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216946,10 +217813,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30155] = 3, + [30417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2899), 18, + ACTIONS(2846), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216968,8 +217835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2897), 35, - anon_sym_SEMI, + ACTIONS(2844), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216980,8 +217846,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, @@ -217003,13 +217871,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [30216] = 4, + [30478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(2884), 18, + ACTIONS(3034), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217028,7 +217893,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2882), 34, + ACTIONS(3032), 35, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -217038,10 +217905,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, @@ -217063,10 +217928,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30279] = 3, + anon_sym_COLON_EQ, + [30539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2848), 18, + ACTIONS(3018), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217085,7 +217951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2846), 35, + ACTIONS(3016), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217121,10 +217987,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30340] = 3, + [30600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3165), 18, + ACTIONS(3026), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217143,7 +218009,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3163), 35, + ACTIONS(3024), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217154,10 +218021,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -217179,10 +218044,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30401] = 3, + anon_sym_COLON_EQ, + [30661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2772), 18, + ACTIONS(2830), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217201,7 +218067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2770), 35, + ACTIONS(2828), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217237,10 +218103,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30462] = 3, + [30722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2792), 18, + ACTIONS(2866), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217259,8 +218125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2790), 35, - anon_sym_SEMI, + ACTIONS(2864), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217271,8 +218136,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, @@ -217294,11 +218161,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [30523] = 3, + [30783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 18, + ACTIONS(2826), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217317,7 +218183,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(2824), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217353,10 +218219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30584] = 3, + [30844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2876), 18, + ACTIONS(2874), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217375,8 +218241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2874), 35, - anon_sym_SEMI, + ACTIONS(2872), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217387,8 +218252,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, @@ -217410,11 +218277,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [30645] = 3, + [30905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3145), 18, + ACTIONS(2882), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217433,7 +218299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3143), 35, + ACTIONS(2880), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217469,10 +218335,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30706] = 3, + [30966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 18, + ACTIONS(2886), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217491,8 +218357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3079), 35, - anon_sym_SEMI, + ACTIONS(2884), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217503,8 +218368,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -217526,11 +218393,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [30767] = 3, + [31027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3093), 18, + ACTIONS(2894), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217549,8 +218415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3091), 35, - anon_sym_SEMI, + ACTIONS(2892), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217561,8 +218426,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, @@ -217584,11 +218451,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [30828] = 3, + [31088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2844), 18, + ACTIONS(2910), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217607,8 +218473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2842), 35, - anon_sym_SEMI, + ACTIONS(2908), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217619,8 +218484,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, @@ -217642,11 +218509,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [30889] = 3, + [31149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3121), 18, + ACTIONS(2914), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217665,8 +218531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3119), 35, - anon_sym_SEMI, + ACTIONS(2912), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217677,8 +218542,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, @@ -217700,11 +218567,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [30950] = 3, + [31210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 18, + ACTIONS(2926), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217723,8 +218589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2870), 35, - anon_sym_SEMI, + ACTIONS(2924), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217735,8 +218600,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, @@ -217758,11 +218625,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [31011] = 3, + [31271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2967), 18, + ACTIONS(2966), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217781,7 +218647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2965), 35, + ACTIONS(2964), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217817,10 +218683,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31072] = 3, + [31332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2864), 18, + ACTIONS(2850), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217839,8 +218705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2862), 35, - anon_sym_SEMI, + ACTIONS(2848), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217851,8 +218716,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, @@ -217874,11 +218741,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [31133] = 3, + [31393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3097), 18, + ACTIONS(2958), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217897,8 +218763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3095), 35, - anon_sym_SEMI, + ACTIONS(2956), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217909,8 +218774,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -217932,11 +218799,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [31194] = 3, + [31454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 18, + ACTIONS(3014), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217955,8 +218821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3007), 35, - anon_sym_SEMI, + ACTIONS(3012), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217967,8 +218832,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, @@ -217990,11 +218857,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [31255] = 3, + [31515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2993), 18, + ACTIONS(2798), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218013,8 +218879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2991), 35, - anon_sym_SEMI, + ACTIONS(2796), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218025,8 +218890,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -218048,11 +218915,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [31316] = 3, + [31576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3049), 18, + ACTIONS(2878), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218071,7 +218937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3047), 35, + ACTIONS(2876), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218107,10 +218973,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31377] = 3, + [31637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 18, + ACTIONS(2846), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218129,7 +218995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2937), 35, + ACTIONS(2844), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -218165,29 +219031,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [31438] = 5, + [31698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2971), 1, + ACTIONS(2954), 18, anon_sym_EQ, - ACTIONS(2969), 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(2973), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -218205,17 +219053,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2976), 19, + ACTIONS(2952), 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, @@ -218225,10 +219077,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [31503] = 3, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [31759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 18, + ACTIONS(3030), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218247,7 +219111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2921), 35, + ACTIONS(3028), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218283,10 +219147,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31564] = 3, + [31820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2935), 18, + ACTIONS(2930), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218305,8 +219169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2933), 35, - anon_sym_SEMI, + ACTIONS(2928), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218317,8 +219180,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, @@ -218340,11 +219205,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [31625] = 3, + [31881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 18, + ACTIONS(3038), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218363,8 +219227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2917), 35, - anon_sym_SEMI, + ACTIONS(3036), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218375,8 +219238,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, @@ -218398,30 +219263,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [31686] = 5, + [31942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2949), 1, + ACTIONS(3042), 18, anon_sym_EQ, - ACTIONS(2947), 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(2951), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -218439,17 +219285,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2954), 19, + ACTIONS(3040), 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, @@ -218459,10 +219309,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [31751] = 3, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [32003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2812), 18, + ACTIONS(3046), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218481,7 +219343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2810), 35, + ACTIONS(3044), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218517,10 +219379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31812] = 3, + [32064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3157), 18, + ACTIONS(3086), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218539,7 +219401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3155), 35, + ACTIONS(3084), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218575,10 +219437,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31873] = 3, + [32125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3121), 18, + ACTIONS(3058), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218597,7 +219459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3119), 35, + ACTIONS(3056), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218633,10 +219495,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31934] = 3, + [32186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3169), 18, + ACTIONS(3066), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218655,8 +219517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3167), 35, - anon_sym_SEMI, + ACTIONS(3064), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218667,8 +219528,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, @@ -218690,11 +219553,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [31995] = 3, + [32247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2931), 18, + ACTIONS(3074), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218713,7 +219575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2929), 35, + ACTIONS(3072), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218749,10 +219611,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32056] = 3, + [32308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 18, + ACTIONS(2954), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218771,7 +219633,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2802), 35, + ACTIONS(2952), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218782,10 +219645,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, @@ -218807,10 +219668,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32117] = 3, + anon_sym_COLON_EQ, + [32369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3033), 18, + ACTIONS(2950), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218829,7 +219691,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3031), 35, + ACTIONS(2948), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218840,10 +219703,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, @@ -218865,10 +219726,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32178] = 3, + anon_sym_COLON_EQ, + [32430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 18, + ACTIONS(2946), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218887,7 +219749,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3035), 35, + ACTIONS(2944), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218898,10 +219761,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, @@ -218923,10 +219784,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32239] = 3, + anon_sym_COLON_EQ, + [32491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3045), 18, + ACTIONS(2790), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218945,7 +219807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3043), 35, + ACTIONS(2788), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218981,10 +219843,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32300] = 3, + [32552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2915), 18, + ACTIONS(3090), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219003,8 +219865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2913), 35, - anon_sym_SEMI, + ACTIONS(3088), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219015,8 +219876,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, @@ -219038,69 +219901,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [32361] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4587), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(4585), 48, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_struct, - anon_sym_mut, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_go, - anon_sym_spawn, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_float_literal, - sym_rune_literal, - anon_sym_AT, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - [32422] = 3, + [32613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2895), 18, + ACTIONS(3098), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219119,8 +219923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2893), 35, - anon_sym_SEMI, + ACTIONS(3096), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219131,8 +219934,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, @@ -219154,11 +219959,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [32483] = 3, + [32674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 18, + ACTIONS(3110), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219177,7 +219981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3051), 35, + ACTIONS(3108), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219213,10 +220017,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32544] = 3, + [32735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3065), 18, + ACTIONS(3106), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219235,7 +220039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3063), 35, + ACTIONS(3104), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219271,10 +220075,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32605] = 3, + [32796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3149), 18, + ACTIONS(2974), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219293,7 +220097,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3147), 35, + ACTIONS(2972), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219304,10 +220109,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, @@ -219329,10 +220132,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32666] = 3, + anon_sym_COLON_EQ, + [32857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3181), 18, + ACTIONS(3022), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219351,7 +220155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3179), 35, + ACTIONS(3020), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219387,10 +220191,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32727] = 3, + [32918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3029), 18, + ACTIONS(2740), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219409,8 +220213,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, - anon_sym_SEMI, + ACTIONS(2738), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219421,8 +220224,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, @@ -219444,11 +220249,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [32788] = 3, + [32979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 18, + ACTIONS(3137), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219467,8 +220271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2954), 35, - anon_sym_SEMI, + ACTIONS(3135), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219479,8 +220282,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, @@ -219502,11 +220307,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [32849] = 3, + [33040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3141), 18, + ACTIONS(3147), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219525,7 +220329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3139), 35, + ACTIONS(3145), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219561,10 +220365,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32910] = 3, + [33101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2973), 18, + ACTIONS(2764), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219583,8 +220387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2976), 35, - anon_sym_SEMI, + ACTIONS(2762), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219595,8 +220398,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, @@ -219618,11 +220423,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [32971] = 3, + [33162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3185), 18, + ACTIONS(3129), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219641,7 +220445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3183), 35, + ACTIONS(3127), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219677,52 +220481,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33032] = 3, + [33223] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3189), 18, + ACTIONS(2992), 1, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3187), 35, - anon_sym_DOT, - anon_sym_as, + ACTIONS(2990), 16, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -219735,11 +220502,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33093] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2800), 18, - anon_sym_EQ, + anon_sym_COLON_EQ, + ACTIONS(2994), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -219757,21 +220521,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2798), 35, + ACTIONS(2997), 19, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -219781,63 +220541,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [33154] = 3, + [33288] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2997), 18, + ACTIONS(2982), 1, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2995), 35, + ACTIONS(2980), 16, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -219851,11 +220563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [33215] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2868), 18, - anon_sym_EQ, + ACTIONS(2984), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -219873,21 +220581,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2866), 35, + ACTIONS(2987), 19, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -219897,22 +220601,10 @@ 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, - [33276] = 3, + [33353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2852), 18, + ACTIONS(2802), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219931,7 +220623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2850), 35, + ACTIONS(2800), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219967,10 +220659,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33337] = 3, + [33414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2772), 18, + ACTIONS(3078), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219989,8 +220681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2770), 35, - anon_sym_SEMI, + ACTIONS(3076), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220001,8 +220692,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, @@ -220024,11 +220717,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [33398] = 3, + [33475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2766), 18, + ACTIONS(3183), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220047,8 +220739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2768), 35, - anon_sym_SEMI, + ACTIONS(3181), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220059,8 +220750,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, @@ -220082,11 +220775,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [33459] = 3, + [33536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2963), 18, + ACTIONS(3054), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220105,7 +220797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2961), 35, + ACTIONS(3052), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220141,12 +220833,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33520] = 4, + [33597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4589), 1, - anon_sym_BANG, - ACTIONS(2943), 17, + ACTIONS(3002), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220157,6 +220847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -220164,7 +220855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2941), 35, + ACTIONS(3000), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -220200,10 +220891,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [33583] = 3, + [33658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 18, + ACTIONS(3175), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220222,8 +220913,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(3173), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220234,8 +220924,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, @@ -220257,11 +220949,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [33644] = 3, + [33719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2911), 18, + ACTIONS(2906), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220280,7 +220971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2909), 35, + ACTIONS(2904), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220316,74 +221007,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33705] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3041), 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_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3039), 29, - anon_sym_SEMI, - 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_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - anon_sym_DOT_DOT, - [33766] = 5, + [33780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(4591), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(2772), 18, + ACTIONS(2942), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220402,15 +221029,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2770), 31, + ACTIONS(2940), 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, @@ -220420,6 +221050,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, @@ -220434,10 +221065,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [33831] = 3, + [33841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 18, + ACTIONS(3062), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220456,7 +221087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2838), 35, + ACTIONS(3060), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220492,10 +221123,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33892] = 3, + [33902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2844), 18, + ACTIONS(2918), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220514,7 +221145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2842), 35, + ACTIONS(2916), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220550,70 +221181,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33953] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2777), 1, - anon_sym_LBRACK, - ACTIONS(3027), 1, - anon_sym_LBRACE, - ACTIONS(2772), 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(2770), 33, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [34018] = 3, + [33963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 18, + ACTIONS(3070), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220632,8 +221203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2782), 35, - anon_sym_SEMI, + ACTIONS(3068), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220644,8 +221214,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, @@ -220667,11 +221239,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [34079] = 3, + [34024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2836), 18, + ACTIONS(2938), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220690,8 +221261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2834), 35, - anon_sym_SEMI, + ACTIONS(2936), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220702,8 +221272,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, @@ -220725,11 +221297,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [34140] = 3, + [34085] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 18, + ACTIONS(2745), 1, + anon_sym_LBRACK, + ACTIONS(2844), 1, + anon_sym_LBRACE, + ACTIONS(2740), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220748,21 +221323,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2782), 35, + ACTIONS(2738), 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, @@ -220784,10 +221356,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34201] = 3, + anon_sym_COLON_EQ, + [34150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 18, + ACTIONS(2942), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220806,7 +221379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2854), 35, + ACTIONS(2940), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220842,10 +221415,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34262] = 3, + [34211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 18, + ACTIONS(2946), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220864,8 +221437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2830), 35, - anon_sym_SEMI, + ACTIONS(2944), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220876,8 +221448,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, @@ -220899,13 +221473,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [34323] = 4, + [34272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4593), 1, - anon_sym_BANG, - ACTIONS(2943), 17, + ACTIONS(2950), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220916,6 +221487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -220923,7 +221495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2941), 35, + ACTIONS(2948), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220959,10 +221531,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34386] = 3, + [34333] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2880), 18, + ACTIONS(4595), 1, + anon_sym_BANG, + ACTIONS(3141), 17, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220973,7 +221547,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -220981,7 +221554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2878), 35, + ACTIONS(3139), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221017,10 +221590,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34447] = 3, + [34396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3061), 18, + ACTIONS(2938), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221039,7 +221612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3059), 35, + ACTIONS(2936), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -221075,10 +221648,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [34508] = 3, + [34457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2700), 18, + ACTIONS(2918), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221097,7 +221670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2698), 35, + ACTIONS(2916), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -221133,12 +221706,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [34569] = 4, + [34518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2768), 1, - anon_sym_LBRACE, - ACTIONS(2967), 18, + ACTIONS(2842), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221157,10 +221728,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2965), 34, + ACTIONS(2840), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -221192,10 +221764,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [34632] = 3, + [34579] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2903), 18, + ACTIONS(2786), 1, + anon_sym_LBRACE, + ACTIONS(2838), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221214,11 +221788,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2901), 35, + ACTIONS(2836), 34, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -221250,10 +221823,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [34693] = 3, + [34642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2927), 18, + ACTIONS(3026), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221272,7 +221845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2925), 35, + ACTIONS(3024), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221308,10 +221881,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34754] = 3, + [34703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2700), 18, + ACTIONS(2806), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221330,7 +221903,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2698), 35, + ACTIONS(2804), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221341,10 +221915,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, @@ -221366,10 +221938,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34815] = 3, + anon_sym_COLON_EQ, + [34764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 18, + ACTIONS(3034), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221388,8 +221961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2854), 35, - anon_sym_SEMI, + ACTIONS(3032), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221400,8 +221972,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, @@ -221423,11 +221997,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [34876] = 3, + [34825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2788), 18, + ACTIONS(2978), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221446,7 +222019,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2786), 35, + ACTIONS(2976), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221457,10 +222031,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, @@ -221482,10 +222054,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34937] = 3, + anon_sym_COLON_EQ, + [34886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 18, + ACTIONS(2970), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221504,7 +222077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3087), 35, + ACTIONS(2968), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221540,10 +222113,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34998] = 3, + [34947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3093), 18, + ACTIONS(3006), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221562,7 +222135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3091), 35, + ACTIONS(3004), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221598,10 +222171,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35059] = 3, + [35008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2792), 18, + ACTIONS(3010), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221620,7 +222193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2790), 35, + ACTIONS(3008), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221656,10 +222229,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35120] = 3, + [35069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2836), 18, + ACTIONS(3050), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221678,7 +222251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2834), 35, + ACTIONS(3048), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221714,10 +222287,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35181] = 3, + [35130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2864), 18, + ACTIONS(3094), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221736,7 +222309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2862), 35, + ACTIONS(3092), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221772,13 +222345,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35242] = 4, + [35191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(2772), 18, + ACTIONS(2818), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221797,15 +222367,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2770), 33, + ACTIONS(2816), 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, @@ -221831,10 +222403,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35305] = 3, + [35252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2895), 18, + ACTIONS(2834), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221853,7 +222425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2893), 35, + ACTIONS(2832), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221864,10 +222437,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, @@ -221889,12 +222460,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35366] = 4, + anon_sym_COLON_EQ, + [35313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 1, - anon_sym_DOT, - ACTIONS(3029), 18, + ACTIONS(3199), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221913,8 +222483,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3027), 34, - anon_sym_SEMI, + ACTIONS(3197), 35, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -221924,8 +222494,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, @@ -221947,13 +222519,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [35429] = 4, + [35374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 1, - anon_sym_DOT, - ACTIONS(3029), 18, + ACTIONS(3114), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221972,7 +222541,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3027), 34, + ACTIONS(3112), 35, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -222007,10 +222577,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35492] = 3, + [35435] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(4599), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(4597), 48, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_struct, + anon_sym_mut, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_go, + anon_sym_spawn, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_float_literal, + sym_rune_literal, + anon_sym_AT, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + [35496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 18, + ACTIONS(3133), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222029,8 +222657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3175), 35, - anon_sym_SEMI, + ACTIONS(3131), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222041,8 +222668,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, @@ -222064,11 +222693,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [35553] = 3, + [35557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 18, + ACTIONS(2862), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222087,7 +222715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2870), 35, + ACTIONS(2860), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222123,10 +222751,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35614] = 3, + [35618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2876), 18, + ACTIONS(2870), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222145,7 +222773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2874), 35, + ACTIONS(2868), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222181,10 +222809,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35675] = 3, + [35679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2899), 18, + ACTIONS(2934), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222203,7 +222831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2897), 35, + ACTIONS(2932), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222239,10 +222867,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35736] = 3, + [35740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2989), 18, + ACTIONS(3151), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222261,8 +222889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2987), 35, - anon_sym_SEMI, + ACTIONS(3149), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222273,8 +222900,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, @@ -222296,11 +222925,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [35797] = 3, + [35801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 18, + ACTIONS(3203), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222319,8 +222947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2702), 35, - anon_sym_SEMI, + ACTIONS(3201), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222331,8 +222958,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, @@ -222354,11 +222983,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [35858] = 3, + [35862] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2907), 18, + ACTIONS(2962), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222377,7 +223005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2905), 35, + ACTIONS(2960), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222413,12 +223041,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35919] = 4, + [35923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2768), 1, - anon_sym_LBRACE, - ACTIONS(2700), 18, + ACTIONS(2830), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222437,10 +223063,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2698), 34, + ACTIONS(2828), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -222472,13 +223099,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [35982] = 4, + [35984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(2772), 18, + ACTIONS(2826), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222497,16 +223121,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2770), 33, + ACTIONS(2824), 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, @@ -222534,7 +223160,7 @@ static const uint16_t ts_small_parse_table[] = { [36045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 18, + ACTIONS(3155), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222553,7 +223179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2957), 35, + ACTIONS(3153), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222592,7 +223218,7 @@ static const uint16_t ts_small_parse_table[] = { [36106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 18, + ACTIONS(2802), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222611,7 +223237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2957), 35, + ACTIONS(2800), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -222650,7 +223276,7 @@ static const uint16_t ts_small_parse_table[] = { [36167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3125), 18, + ACTIONS(3078), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222669,7 +223295,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3123), 35, + ACTIONS(3076), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222680,10 +223307,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, @@ -222705,10 +223330,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_COLON_EQ, [36228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 18, + ACTIONS(2798), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222727,7 +223353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3115), 35, + ACTIONS(2796), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222738,10 +223365,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, @@ -222763,10 +223388,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_COLON_EQ, [36289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 18, + ACTIONS(3187), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222785,7 +223411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3011), 35, + ACTIONS(3185), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222824,7 +223450,7 @@ static const uint16_t ts_small_parse_table[] = { [36350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3017), 18, + ACTIONS(3191), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222843,7 +223469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3015), 35, + ACTIONS(3189), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222882,7 +223508,7 @@ static const uint16_t ts_small_parse_table[] = { [36411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2927), 18, + ACTIONS(3159), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222901,8 +223527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2925), 35, - anon_sym_SEMI, + ACTIONS(3157), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222913,8 +223538,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, @@ -222936,11 +223563,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, [36472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3025), 18, + ACTIONS(2822), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222959,7 +223585,8 @@ 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(2820), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222970,10 +223597,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, @@ -222995,10 +223620,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_COLON_EQ, [36533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 18, + ACTIONS(2878), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223017,7 +223643,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3055), 35, + ACTIONS(2876), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223028,10 +223655,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, @@ -223053,10 +223678,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_COLON_EQ, [36594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 18, + ACTIONS(3179), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223075,7 +223701,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(3177), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223114,7 +223740,7 @@ static const uint16_t ts_small_parse_table[] = { [36655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3061), 18, + ACTIONS(2906), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223133,7 +223759,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3059), 35, + ACTIONS(2904), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223144,10 +223771,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, @@ -223169,10 +223794,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_COLON_EQ, [36716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 18, + ACTIONS(3167), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223191,7 +223817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3195), 35, + ACTIONS(3165), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223230,85 +223856,149 @@ static const uint16_t ts_small_parse_table[] = { [36777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3137), 24, - anon_sym_DOT, - anon_sym_as, + ACTIONS(3082), 18, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_struct, - anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(3080), 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, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3135), 29, + 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, + [36838] = 11, + ACTIONS(493), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4605), 1, + anon_sym_LBRACK, + ACTIONS(4607), 1, + anon_sym_QMARK, + ACTIONS(4609), 1, + anon_sym_BANG, + STATE(2183), 1, + sym_or_block, + STATE(2184), 1, + sym_argument_list, + STATE(4302), 1, + sym_type_parameters, + ACTIONS(4601), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4611), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(2224), 40, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_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_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + anon_sym_or, + anon_sym_is, anon_sym_BANGis, + anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - anon_sym_DOT_DOT, - [36838] = 11, - ACTIONS(487), 1, + sym_identifier, + anon_sym_AT_LBRACK, + [36913] = 11, + ACTIONS(493), 1, sym_comment, - ACTIONS(4597), 1, + ACTIONS(4603), 1, anon_sym_LPAREN, - ACTIONS(4599), 1, + ACTIONS(4605), 1, anon_sym_LBRACK, - ACTIONS(4601), 1, + ACTIONS(4607), 1, anon_sym_QMARK, - ACTIONS(4603), 1, + ACTIONS(4609), 1, anon_sym_BANG, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, + STATE(2183), 1, sym_or_block, - STATE(4283), 1, + STATE(2184), 1, + sym_argument_list, + STATE(4302), 1, sym_type_parameters, - ACTIONS(4595), 2, + ACTIONS(4601), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4605), 2, + ACTIONS(4611), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(2076), 40, + ACTIONS(2246), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -223349,12 +224039,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [36913] = 5, + [36988] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4609), 1, + ACTIONS(4615), 1, anon_sym_EQ, - ACTIONS(4607), 14, + ACTIONS(4613), 14, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_STAR_EQ, @@ -223369,7 +224059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - ACTIONS(2880), 17, + ACTIONS(2794), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -223387,7 +224077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2878), 19, + ACTIONS(2792), 19, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -223407,94 +224097,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [36976] = 11, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(2164), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, [37051] = 11, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(4597), 1, + ACTIONS(4603), 1, anon_sym_LPAREN, - ACTIONS(4599), 1, + ACTIONS(4605), 1, anon_sym_LBRACK, - ACTIONS(4601), 1, + ACTIONS(4607), 1, anon_sym_QMARK, - ACTIONS(4603), 1, + ACTIONS(4609), 1, anon_sym_BANG, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, + STATE(2183), 1, sym_or_block, - STATE(4283), 1, + STATE(2184), 1, + sym_argument_list, + STATE(4302), 1, sym_type_parameters, - ACTIONS(4595), 2, + ACTIONS(4601), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4605), 2, + ACTIONS(4611), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(2230), 40, + ACTIONS(2162), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -223536,15 +224162,15 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_AT_LBRACK, [37126] = 5, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(2404), 1, + ACTIONS(2390), 1, anon_sym_LBRACK, - ACTIONS(4611), 1, + ACTIONS(4617), 1, anon_sym_else, - STATE(2272), 1, + STATE(2207), 1, sym_else_branch, - ACTIONS(2406), 47, + ACTIONS(2392), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -223593,15 +224219,15 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_AT_LBRACK, [37188] = 5, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(2398), 1, + ACTIONS(2396), 1, anon_sym_LBRACK, - ACTIONS(4611), 1, + ACTIONS(4617), 1, anon_sym_else, - STATE(2271), 1, + STATE(2222), 1, sym_else_branch, - ACTIONS(2400), 47, + ACTIONS(2398), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -223652,13 +224278,13 @@ static const uint16_t ts_small_parse_table[] = { [37250] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4613), 1, + ACTIONS(4619), 1, anon_sym_COLON, - ACTIONS(4615), 1, + ACTIONS(4621), 1, anon_sym_static, - ACTIONS(4617), 1, + ACTIONS(4623), 1, anon_sym_volatile, - ACTIONS(4316), 22, + ACTIONS(4312), 22, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_PLUS, @@ -223681,7 +224307,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4314), 25, + ACTIONS(4310), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -223707,14 +224333,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [37314] = 4, - ACTIONS(487), 1, + [37314] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2777), 1, + ACTIONS(2734), 1, anon_sym_LBRACK, - ACTIONS(3029), 1, - anon_sym_LBRACE, - ACTIONS(2772), 47, + ACTIONS(2736), 48, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -223756,70 +224380,126 @@ 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, - [37373] = 3, - ACTIONS(3), 1, + [37371] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(4621), 23, - anon_sym_LBRACE, + ACTIONS(2734), 1, + anon_sym_LBRACK, + ACTIONS(2736), 48, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym___global, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, - anon_sym_json_DOTdecode, anon_sym_LBRACK2, - anon_sym_TILDE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4619), 26, + anon_sym_LT_LT, + anon_sym_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, + [37428] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(2745), 1, + anon_sym_LBRACK, + ACTIONS(2846), 1, + anon_sym_LBRACE, + ACTIONS(2740), 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_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_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, - anon_sym_AT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [37430] = 3, + anon_sym_AT_LBRACK, + [37487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2728), 23, + ACTIONS(4627), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -223843,7 +224523,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(2730), 26, + ACTIONS(4625), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -223870,95 +224550,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [37487] = 27, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - ACTIONS(4605), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4625), 1, - anon_sym_as, - ACTIONS(4633), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4635), 1, - anon_sym_DASH_DASH, - ACTIONS(4637), 1, - anon_sym_LBRACK2, - ACTIONS(4639), 1, - anon_sym_AMP_AMP, - ACTIONS(4641), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4643), 1, - anon_sym_or, - ACTIONS(4645), 1, - anon_sym_is, - ACTIONS(4647), 1, - anon_sym_BANGis, - ACTIONS(4649), 1, - anon_sym_in, - ACTIONS(4651), 1, - anon_sym_BANGin, - ACTIONS(4653), 1, - anon_sym_AT_LBRACK, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(3475), 1, - sym_attribute, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4627), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4631), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4623), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - ACTIONS(4629), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [37592] = 6, + [37544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4615), 1, - anon_sym_static, - ACTIONS(4617), 1, - anon_sym_volatile, - ACTIONS(4655), 1, - sym_identifier, - ACTIONS(4316), 22, + ACTIONS(4631), 23, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, @@ -223980,7 +224577,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4314), 24, + ACTIONS(4629), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -223992,6 +224589,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, @@ -224001,70 +224599,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sql, sym_int_literal, anon_sym_AT, + sym_identifier, anon_sym_shared, anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [37655] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2728), 1, - anon_sym_LBRACK, - ACTIONS(2730), 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, - [37712] = 3, - ACTIONS(487), 1, + [37601] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2698), 1, + ACTIONS(2692), 1, anon_sym_LBRACK, - ACTIONS(2700), 48, + ACTIONS(2694), 48, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224113,123 +224658,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [37769] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2698), 1, - anon_sym_LBRACK, - ACTIONS(2700), 48, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [37826] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2702), 1, - anon_sym_LBRACK, - STATE(2230), 1, - sym_type_parameters, - ACTIONS(2704), 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, - [37885] = 4, - ACTIONS(487), 1, + [37658] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(2732), 1, + ACTIONS(2756), 1, anon_sym_LBRACK, - ACTIONS(4657), 1, + ACTIONS(4633), 1, anon_sym_DOLLARelse, - ACTIONS(2734), 47, + ACTIONS(2758), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224277,10 +224713,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [37944] = 3, + [37717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 23, + ACTIONS(4637), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -224304,7 +224740,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4659), 26, + ACTIONS(4635), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -224331,14 +224767,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [38001] = 5, + [37774] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4615), 1, + ACTIONS(4621), 1, anon_sym_static, - ACTIONS(4617), 1, + ACTIONS(4623), 1, anon_sym_volatile, - ACTIONS(4316), 22, + ACTIONS(4639), 1, + sym_identifier, + ACTIONS(4312), 22, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_PLUS, @@ -224361,7 +224799,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4314), 25, + ACTIONS(4310), 24, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -224382,69 +224820,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sql, sym_int_literal, anon_sym_AT, - sym_identifier, anon_sym_shared, anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [38062] = 3, - ACTIONS(3), 1, + [37837] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(2698), 23, - anon_sym_LBRACE, + ACTIONS(2762), 1, + anon_sym_LBRACK, + STATE(2234), 1, + sym_type_parameters, + ACTIONS(2764), 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_json_DOTdecode, anon_sym_LBRACK2, - anon_sym_TILDE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(2700), 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, - anon_sym_AT, + anon_sym_LT_LT, + anon_sym_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, - [38119] = 3, + anon_sym_AT_LBRACK, + [37896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 23, + ACTIONS(2692), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -224468,7 +224906,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4663), 26, + ACTIONS(2694), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -224495,14 +224933,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [38176] = 4, - ACTIONS(487), 1, + [37953] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(2738), 1, + ACTIONS(2614), 1, anon_sym_LBRACK, - ACTIONS(4667), 1, + ACTIONS(4641), 1, anon_sym_DOLLARelse, - ACTIONS(2740), 47, + ACTIONS(2616), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224550,12 +224988,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38235] = 3, - ACTIONS(487), 1, + [38012] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2728), 1, + ACTIONS(2692), 1, anon_sym_LBRACK, - ACTIONS(2730), 48, + ACTIONS(2694), 48, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224604,118 +225042,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38292] = 3, - ACTIONS(487), 1, + [38069] = 27, + ACTIONS(493), 1, sym_comment, - ACTIONS(3143), 1, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4605), 1, anon_sym_LBRACK, - ACTIONS(3145), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(4607), 1, + anon_sym_QMARK, + ACTIONS(4609), 1, + anon_sym_BANG, + ACTIONS(4611), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4645), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + ACTIONS(4653), 1, anon_sym_PLUS_PLUS, + ACTIONS(4655), 1, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, + ACTIONS(4657), 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(4659), 1, anon_sym_AMP_AMP, + ACTIONS(4661), 1, anon_sym_PIPE_PIPE, + ACTIONS(4663), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4665), 1, anon_sym_is, + ACTIONS(4667), 1, anon_sym_BANGis, + ACTIONS(4669), 1, anon_sym_in, + ACTIONS(4671), 1, anon_sym_BANGin, - sym_identifier, + ACTIONS(4673), 1, anon_sym_AT_LBRACK, - [38348] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2917), 1, - anon_sym_LBRACK, - ACTIONS(2919), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + STATE(2183), 1, + sym_or_block, + STATE(2184), 1, + sym_argument_list, + STATE(3472), 1, + sym_attribute, + STATE(4302), 1, + sym_type_parameters, + ACTIONS(4601), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, + anon_sym_QMARK_DOT, + ACTIONS(4647), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4651), 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(4643), 8, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym___global, 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, + sym_identifier, + ACTIONS(4649), 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, + [38174] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2734), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(2736), 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, + anon_sym_AT, sym_identifier, - anon_sym_AT_LBRACK, - [38404] = 3, - ACTIONS(487), 1, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [38231] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4621), 1, + anon_sym_static, + ACTIONS(4623), 1, + anon_sym_volatile, + ACTIONS(4312), 22, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4310), 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, + anon_sym_AT, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [38292] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3043), 1, + ACTIONS(2896), 1, anon_sym_LBRACK, - ACTIONS(3045), 47, + ACTIONS(2898), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224763,12 +225283,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38460] = 3, - ACTIONS(487), 1, + [38348] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3155), 1, + ACTIONS(3004), 1, anon_sym_LBRACK, - ACTIONS(3157), 47, + ACTIONS(3006), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224816,12 +225336,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38516] = 3, - ACTIONS(487), 1, + [38404] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3035), 1, + ACTIONS(2964), 1, anon_sym_LBRACK, - ACTIONS(3037), 47, + ACTIONS(2966), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224869,12 +225389,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38572] = 3, - ACTIONS(487), 1, + [38460] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(3055), 1, + ACTIONS(3139), 1, anon_sym_LBRACK, - ACTIONS(3057), 47, + ACTIONS(4675), 1, + anon_sym_BANG, + ACTIONS(3141), 46, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224903,7 +225425,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -224922,12 +225443,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38628] = 3, - ACTIONS(487), 1, + [38518] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3175), 1, + ACTIONS(3189), 1, anon_sym_LBRACK, - ACTIONS(3177), 47, + ACTIONS(3191), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224975,89 +225496,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38684] = 27, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2772), 1, - anon_sym_DOT, - ACTIONS(3027), 1, - anon_sym_LBRACK, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3203), 1, - anon_sym_fn, - ACTIONS(3205), 1, - anon_sym_STAR, - ACTIONS(3207), 1, - anon_sym_struct, - ACTIONS(3209), 1, - anon_sym_QMARK, - ACTIONS(3211), 1, - anon_sym_BANG, - ACTIONS(3213), 1, - anon_sym_LBRACK2, - ACTIONS(3215), 1, - anon_sym_AMP, - ACTIONS(3217), 1, - anon_sym_shared, - ACTIONS(3219), 1, - anon_sym_map_LBRACK, - ACTIONS(3221), 1, - anon_sym_chan, - ACTIONS(3223), 1, - anon_sym_thread, - ACTIONS(3225), 1, - anon_sym_atomic, - ACTIONS(4669), 1, - anon_sym_LPAREN, - ACTIONS(4671), 1, - anon_sym_LT2, - STATE(3415), 1, - sym_plain_type, - STATE(3432), 1, - sym_signature, - STATE(3787), 1, - sym_generic_parameters, - STATE(4416), 1, - sym_reference_expression, - STATE(2513), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3442), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(3029), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - STATE(3438), 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, - [38788] = 3, - ACTIONS(487), 1, + [38574] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2822), 1, + ACTIONS(3197), 1, anon_sym_LBRACK, - ACTIONS(2824), 47, + ACTIONS(3199), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225105,12 +225549,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38844] = 3, - ACTIONS(487), 1, + [38630] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3127), 1, + ACTIONS(3201), 1, anon_sym_LBRACK, - ACTIONS(3129), 47, + ACTIONS(3203), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225158,12 +225602,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38900] = 3, - ACTIONS(487), 1, + [38686] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3031), 1, + ACTIONS(3173), 1, anon_sym_LBRACK, - ACTIONS(3033), 47, + ACTIONS(3175), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225211,12 +225655,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38956] = 3, - ACTIONS(487), 1, + [38742] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2818), 1, + ACTIONS(3181), 1, anon_sym_LBRACK, - ACTIONS(2820), 47, + ACTIONS(3183), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225264,12 +225708,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39012] = 3, - ACTIONS(487), 1, + [38798] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(2786), 1, anon_sym_LBRACK, - ACTIONS(3197), 47, + ACTIONS(2784), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225317,65 +225761,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39068] = 3, - ACTIONS(3), 1, + [38854] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2255), 23, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4673), 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, - anon_sym_AT, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [39124] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3047), 1, + ACTIONS(3193), 1, anon_sym_LBRACK, - ACTIONS(3049), 47, + ACTIONS(3195), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225423,12 +225814,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39180] = 3, - ACTIONS(487), 1, + [38910] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2794), 1, + ACTIONS(3161), 1, anon_sym_LBRACK, - ACTIONS(2796), 47, + ACTIONS(3163), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225476,12 +225867,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39236] = 3, - ACTIONS(487), 1, + [38966] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3145), 1, anon_sym_LBRACK, - ACTIONS(3181), 47, + ACTIONS(3147), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225529,66 +225920,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39292] = 4, - ACTIONS(487), 1, + [39022] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2774), 1, - anon_sym_DOT, - ACTIONS(3027), 1, - anon_sym_LBRACK, - ACTIONS(3029), 46, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [39350] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2987), 1, + ACTIONS(3135), 1, anon_sym_LBRACK, - ACTIONS(2989), 47, + ACTIONS(3137), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225636,12 +225973,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39406] = 3, - ACTIONS(487), 1, + [39078] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(3185), 1, anon_sym_LBRACK, - ACTIONS(2704), 47, + ACTIONS(3187), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225689,32 +226026,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39462] = 14, + [39134] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, ACTIONS(4677), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(4687), 1, - anon_sym_QMARK_DOT, + anon_sym_LBRACK2, ACTIONS(4689), 1, + anon_sym_QMARK_DOT, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(2076), 9, + ACTIONS(2162), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -225724,7 +226061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2074), 28, + ACTIONS(2160), 28, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -225753,171 +226090,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [39540] = 3, - ACTIONS(487), 1, + [39212] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2810), 1, - anon_sym_LBRACK, - ACTIONS(2812), 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, - [39596] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3051), 1, - anon_sym_LBRACK, - ACTIONS(3053), 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, - [39652] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3063), 1, - anon_sym_LBRACK, - ACTIONS(3065), 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, - [39708] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3147), 1, + ACTIONS(2738), 1, anon_sym_LBRACK, - ACTIONS(3149), 47, + ACTIONS(2740), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225965,65 +226143,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39764] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3039), 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(3041), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [39820] = 3, - ACTIONS(487), 1, + [39268] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2957), 1, + ACTIONS(3177), 1, anon_sym_LBRACK, - ACTIONS(2959), 47, + ACTIONS(3179), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226071,115 +226196,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39876] = 3, - ACTIONS(487), 1, + [39324] = 13, + ACTIONS(493), 1, sym_comment, - ACTIONS(2889), 1, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4605), 1, anon_sym_LBRACK, - ACTIONS(2891), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4607), 1, + anon_sym_QMARK, + ACTIONS(4609), 1, + anon_sym_BANG, + STATE(2183), 1, + sym_or_block, + STATE(2184), 1, + sym_argument_list, + STATE(4302), 1, + sym_type_parameters, + ACTIONS(4601), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, + anon_sym_QMARK_DOT, + ACTIONS(4611), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4647), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4649), 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(2162), 25, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_RBRACE, + anon_sym___global, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39932] = 24, - ACTIONS(487), 1, + [39400] = 16, + ACTIONS(493), 1, sym_comment, - ACTIONS(4597), 1, + ACTIONS(4603), 1, anon_sym_LPAREN, - ACTIONS(4599), 1, + ACTIONS(4605), 1, anon_sym_LBRACK, - ACTIONS(4601), 1, + ACTIONS(4607), 1, anon_sym_QMARK, - ACTIONS(4603), 1, + ACTIONS(4609), 1, anon_sym_BANG, - ACTIONS(4625), 1, - anon_sym_as, - ACTIONS(4633), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4635), 1, - anon_sym_DASH_DASH, - ACTIONS(4639), 1, - anon_sym_AMP_AMP, - ACTIONS(4641), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4643), 1, - anon_sym_or, - ACTIONS(4645), 1, - anon_sym_is, - ACTIONS(4647), 1, - anon_sym_BANGis, - ACTIONS(4649), 1, + ACTIONS(4669), 1, anon_sym_in, - ACTIONS(4651), 1, + ACTIONS(4671), 1, anon_sym_BANGin, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, + STATE(2183), 1, sym_or_block, - STATE(4283), 1, + STATE(2184), 1, + sym_argument_list, + STATE(4302), 1, sym_type_parameters, - ACTIONS(4595), 2, + ACTIONS(4601), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4605), 2, + ACTIONS(4611), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4627), 4, + ACTIONS(4647), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4631), 6, + ACTIONS(4651), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4629), 8, + ACTIONS(4649), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -226188,22 +226307,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2220), 9, + ACTIONS(2162), 17, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_as, anon_sym_RBRACE, anon_sym___global, anon_sym_pub, anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, sym_identifier, anon_sym_AT_LBRACK, - [40030] = 3, - ACTIONS(487), 1, + [39482] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2806), 1, + ACTIONS(3127), 1, anon_sym_LBRACK, - ACTIONS(2808), 47, + ACTIONS(3129), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226251,12 +226378,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40086] = 3, - ACTIONS(487), 1, + [39538] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3183), 1, + ACTIONS(2762), 1, anon_sym_LBRACK, - ACTIONS(3185), 47, + ACTIONS(2764), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226304,12 +226431,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40142] = 3, - ACTIONS(487), 1, + [39594] = 17, + ACTIONS(493), 1, sym_comment, - ACTIONS(2925), 1, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4605), 1, anon_sym_LBRACK, - ACTIONS(2927), 47, + ACTIONS(4607), 1, + anon_sym_QMARK, + ACTIONS(4609), 1, + anon_sym_BANG, + ACTIONS(4659), 1, + anon_sym_AMP_AMP, + ACTIONS(4669), 1, + anon_sym_in, + ACTIONS(4671), 1, + anon_sym_BANGin, + STATE(2183), 1, + sym_or_block, + STATE(2184), 1, + sym_argument_list, + STATE(4302), 1, + sym_type_parameters, + ACTIONS(4601), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4611), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4647), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4651), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4649), 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(2162), 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, + [39678] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(3108), 1, + anon_sym_LBRACK, + ACTIONS(3110), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226357,12 +226551,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40198] = 3, - ACTIONS(487), 1, + [39734] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3187), 1, + ACTIONS(3096), 1, anon_sym_LBRACK, - ACTIONS(3189), 47, + ACTIONS(3098), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226410,12 +226604,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40254] = 3, - ACTIONS(487), 1, + [39790] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3159), 1, + ACTIONS(3088), 1, anon_sym_LBRACK, - ACTIONS(3161), 47, + ACTIONS(3090), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226463,12 +226657,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40310] = 3, - ACTIONS(487), 1, + [39846] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3151), 1, + ACTIONS(3104), 1, anon_sym_LBRACK, - ACTIONS(3153), 47, + ACTIONS(3106), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226516,12 +226710,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40366] = 3, - ACTIONS(487), 1, + [39902] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2768), 1, + ACTIONS(2788), 1, anon_sym_LBRACK, - ACTIONS(2766), 47, + ACTIONS(2790), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226569,114 +226763,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40422] = 3, - ACTIONS(487), 1, + [39958] = 13, + ACTIONS(493), 1, sym_comment, - ACTIONS(2961), 1, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4605), 1, anon_sym_LBRACK, - ACTIONS(2963), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4607), 1, + anon_sym_QMARK, + ACTIONS(4609), 1, + anon_sym_BANG, + STATE(2183), 1, + sym_or_block, + STATE(2184), 1, + sym_argument_list, + STATE(4302), 1, + sym_type_parameters, + ACTIONS(4601), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, + anon_sym_QMARK_DOT, + ACTIONS(4611), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4647), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4649), 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(2156), 25, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_RBRACE, + anon_sym___global, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40478] = 14, - ACTIONS(3), 1, + [40034] = 13, + ACTIONS(493), 1, sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, + ACTIONS(4603), 1, anon_sym_LPAREN, - ACTIONS(4679), 1, + ACTIONS(4605), 1, anon_sym_LBRACK, - ACTIONS(4681), 1, + ACTIONS(4607), 1, anon_sym_QMARK, - ACTIONS(4683), 1, + ACTIONS(4609), 1, anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2183), 1, sym_or_block, - STATE(4199), 1, + STATE(2184), 1, + sym_argument_list, + STATE(4302), 1, sym_type_parameters, - ACTIONS(2230), 9, + ACTIONS(4601), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4611), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4647), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4649), 8, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2228), 28, - anon_sym_SEMI, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2144), 25, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym___global, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_pub, + anon_sym_mut, 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, @@ -226684,14 +226887,14 @@ 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, - [40556] = 3, - ACTIONS(487), 1, + sym_identifier, + anon_sym_AT_LBRACK, + [40110] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2909), 1, + ACTIONS(3072), 1, anon_sym_LBRACK, - ACTIONS(2911), 47, + ACTIONS(3074), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226739,28 +226942,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40612] = 4, - ACTIONS(487), 1, + [40166] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2976), 1, + ACTIONS(3084), 1, anon_sym_LBRACK, - ACTIONS(2971), 12, + ACTIONS(3086), 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(2973), 35, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -226773,6 +226970,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -226793,12 +226993,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [40670] = 3, - ACTIONS(487), 1, + sym_identifier, + anon_sym_AT_LBRACK, + [40222] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2770), 1, + ACTIONS(3064), 1, anon_sym_LBRACK, - ACTIONS(2772), 47, + ACTIONS(3066), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226846,28 +227048,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40726] = 4, - ACTIONS(487), 1, + [40278] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2954), 1, + ACTIONS(3056), 1, anon_sym_LBRACK, - ACTIONS(2949), 12, + ACTIONS(3058), 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(2951), 35, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -226880,6 +227076,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -226900,12 +227099,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [40784] = 3, - ACTIONS(487), 1, + sym_identifier, + anon_sym_AT_LBRACK, + [40334] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2858), 1, + ACTIONS(3165), 1, anon_sym_LBRACK, - ACTIONS(2860), 47, + ACTIONS(3167), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226953,65 +227154,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40840] = 3, - ACTIONS(487), 1, + [40390] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2854), 1, - anon_sym_LBRACK, - ACTIONS(2856), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, + ACTIONS(2920), 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(2922), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_PIPE, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_struct, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_is, + anon_sym_in, sym_identifier, - anon_sym_AT_LBRACK, - [40896] = 3, - ACTIONS(487), 1, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_DOT_DOT, + [40446] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2782), 1, + ACTIONS(3157), 1, anon_sym_LBRACK, - ACTIONS(2784), 47, + ACTIONS(3159), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227059,12 +227260,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40952] = 3, - ACTIONS(487), 1, + [40502] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(2928), 1, anon_sym_LBRACK, - ACTIONS(2844), 47, + ACTIONS(2930), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227112,12 +227313,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41008] = 3, - ACTIONS(487), 1, + [40558] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2838), 1, + ACTIONS(2900), 1, anon_sym_LBRACK, - ACTIONS(2840), 47, + ACTIONS(2902), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227165,10 +227366,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41064] = 3, + [40614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3135), 24, + ACTIONS(2808), 24, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -227193,7 +227394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_BANGin, anon_sym_map_LBRACK, - ACTIONS(3137), 24, + ACTIONS(2810), 24, anon_sym_DOT, anon_sym_as, anon_sym_PIPE, @@ -227218,10 +227419,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_DOT_DOT, - [41120] = 3, + [40670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3131), 24, + ACTIONS(2812), 24, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -227246,7 +227447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_BANGin, anon_sym_map_LBRACK, - ACTIONS(3133), 24, + ACTIONS(2814), 24, anon_sym_DOT, anon_sym_as, anon_sym_PIPE, @@ -227271,10 +227472,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_DOT_DOT, - [41176] = 3, + [40726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3103), 24, + ACTIONS(2852), 24, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -227299,7 +227500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_BANGin, anon_sym_map_LBRACK, - ACTIONS(3105), 24, + ACTIONS(2854), 24, anon_sym_DOT, anon_sym_as, anon_sym_PIPE, @@ -227324,10 +227525,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_DOT_DOT, - [41232] = 3, + [40782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3099), 24, + ACTIONS(2856), 24, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -227352,7 +227553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_BANGin, anon_sym_map_LBRACK, - ACTIONS(3101), 24, + ACTIONS(2858), 24, anon_sym_DOT, anon_sym_as, anon_sym_PIPE, @@ -227377,67 +227578,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_DOT_DOT, - [41288] = 3, - ACTIONS(3), 1, + [40838] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(1789), 23, - anon_sym_LBRACE, + ACTIONS(3044), 1, + anon_sym_LBRACK, + ACTIONS(3046), 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_json_DOTdecode, anon_sym_LBRACK2, - anon_sym_TILDE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4691), 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_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [40894] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(3040), 1, + anon_sym_LBRACK, + ACTIONS(3042), 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_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_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, - anon_sym_AT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [41344] = 4, - ACTIONS(487), 1, + anon_sym_AT_LBRACK, + [40950] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2941), 1, + ACTIONS(3036), 1, anon_sym_LBRACK, - ACTIONS(4693), 1, + ACTIONS(3038), 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, - ACTIONS(2943), 46, + anon_sym_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, + [41006] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(3028), 1, + anon_sym_LBRACK, + ACTIONS(3030), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227466,6 +227771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -227484,65 +227790,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41402] = 3, - ACTIONS(3), 1, + [41062] = 12, + ACTIONS(493), 1, sym_comment, - ACTIONS(1927), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(4603), 1, anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(4605), 1, + anon_sym_LBRACK, + ACTIONS(4607), 1, anon_sym_QMARK, + ACTIONS(4609), 1, anon_sym_BANG, - anon_sym_json_DOTdecode, + STATE(2183), 1, + sym_or_block, + STATE(2184), 1, + sym_argument_list, + STATE(4302), 1, + sym_type_parameters, + ACTIONS(4601), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4611), 2, anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, + anon_sym_POUND_LBRACK, + ACTIONS(4649), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4695), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2162), 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_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, - anon_sym_AT, + 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_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [41458] = 3, - ACTIONS(487), 1, + anon_sym_AT_LBRACK, + [41136] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4689), 1, + anon_sym_QMARK_DOT, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(2224), 9, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2222), 28, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [41214] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2995), 1, + ACTIONS(2888), 1, anon_sym_LBRACK, - ACTIONS(2997), 47, + ACTIONS(2890), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227590,12 +227969,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41514] = 3, - ACTIONS(487), 1, + [41270] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3171), 1, + ACTIONS(3100), 1, anon_sym_LBRACK, - ACTIONS(3173), 47, + ACTIONS(3102), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227643,12 +228022,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41570] = 3, - ACTIONS(487), 1, + [41326] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3119), 1, + ACTIONS(3153), 1, anon_sym_LBRACK, - ACTIONS(3121), 47, + ACTIONS(3155), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227696,12 +228075,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41626] = 3, - ACTIONS(487), 1, + [41382] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3003), 1, + ACTIONS(1943), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4693), 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, + anon_sym_AT, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [41438] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(2968), 1, anon_sym_LBRACK, - ACTIONS(3005), 47, + ACTIONS(2970), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227749,32 +228181,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41682] = 14, + [41494] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, ACTIONS(4677), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(4687), 1, - anon_sym_QMARK_DOT, + anon_sym_LBRACK2, ACTIONS(4689), 1, + anon_sym_QMARK_DOT, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(2164), 9, + ACTIONS(2246), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -227784,7 +228216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2162), 28, + ACTIONS(2244), 28, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -227813,12 +228245,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [41760] = 3, - ACTIONS(487), 1, + [41572] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3071), 1, + ACTIONS(2848), 1, anon_sym_LBRACK, - ACTIONS(3073), 47, + ACTIONS(2850), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227866,86 +228298,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41816] = 24, - ACTIONS(487), 1, + [41628] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, + ACTIONS(3149), 1, anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - ACTIONS(4625), 1, - anon_sym_as, - ACTIONS(4633), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4635), 1, - anon_sym_DASH_DASH, - ACTIONS(4639), 1, - anon_sym_AMP_AMP, - ACTIONS(4641), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4643), 1, - anon_sym_or, - ACTIONS(4645), 1, - anon_sym_is, - ACTIONS(4647), 1, - anon_sym_BANGis, - ACTIONS(4649), 1, - anon_sym_in, - ACTIONS(4651), 1, - anon_sym_BANGin, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4627), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4631), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4629), 8, - anon_sym_STAR, - 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(2210), 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, - [41914] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2786), 1, - anon_sym_LBRACK, - ACTIONS(2788), 47, + ACTIONS(3151), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227993,12 +228351,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41970] = 3, - ACTIONS(487), 1, + [41684] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3075), 1, + ACTIONS(3131), 1, anon_sym_LBRACK, - ACTIONS(3077), 47, + ACTIONS(3133), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228046,12 +228404,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42026] = 3, - ACTIONS(487), 1, + [41740] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3112), 1, anon_sym_LBRACK, - ACTIONS(3165), 47, + ACTIONS(3114), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228099,12 +228457,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42082] = 3, - ACTIONS(487), 1, + [41796] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3087), 1, + ACTIONS(3012), 1, anon_sym_LBRACK, - ACTIONS(3089), 47, + ACTIONS(3014), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228152,18 +228510,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42138] = 4, - ACTIONS(487), 1, + [41852] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2882), 1, + ACTIONS(3008), 1, anon_sym_LBRACK, - ACTIONS(2886), 1, - anon_sym_DOT, - ACTIONS(2884), 46, + ACTIONS(3010), 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, @@ -228206,12 +228563,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42196] = 3, - ACTIONS(487), 1, + [41908] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2893), 1, + ACTIONS(3016), 1, anon_sym_LBRACK, - ACTIONS(2895), 47, + ACTIONS(3018), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228259,205 +228616,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42252] = 13, - ACTIONS(487), 1, + [41964] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, + ACTIONS(2987), 1, anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4627), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4629), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2112), 25, + ACTIONS(2982), 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_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42328] = 13, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, + ACTIONS(2984), 35, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4627), 4, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4629), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2108), 25, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_RBRACE, - anon_sym___global, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_pub, - anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [42404] = 17, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, anon_sym_QMARK, - ACTIONS(4603), 1, anon_sym_BANG, - ACTIONS(4639), 1, - anon_sym_AMP_AMP, - ACTIONS(4649), 1, - anon_sym_in, - ACTIONS(4651), 1, - anon_sym_BANGin, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4627), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, - ACTIONS(4631), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4629), 8, - anon_sym_STAR, - 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(2076), 16, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - sym_identifier, - anon_sym_AT_LBRACK, - [42488] = 3, - ACTIONS(487), 1, + anon_sym_in, + anon_sym_BANGin, + [42022] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3079), 1, + ACTIONS(2956), 1, anon_sym_LBRACK, - ACTIONS(3081), 47, + ACTIONS(2958), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228505,146 +228723,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42544] = 16, - ACTIONS(487), 1, + [42078] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, + ACTIONS(2997), 1, anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - ACTIONS(4649), 1, - anon_sym_in, - ACTIONS(4651), 1, - anon_sym_BANGin, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, + ACTIONS(2992), 12, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + anon_sym_AT_LBRACK, + ACTIONS(2994), 35, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4627), 4, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4631), 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(4629), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2076), 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, - sym_identifier, - anon_sym_AT_LBRACK, - [42626] = 13, - ACTIONS(487), 1, + anon_sym_in, + anon_sym_BANGin, + [42136] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, + ACTIONS(3068), 1, anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, + ACTIONS(3070), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4627), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4629), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 25, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_RBRACE, - anon_sym___global, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42702] = 3, - ACTIONS(487), 1, + [42192] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(3007), 1, + ACTIONS(3116), 1, anon_sym_LBRACK, - ACTIONS(3009), 47, + ACTIONS(3120), 1, + anon_sym_DOT, + ACTIONS(3118), 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, @@ -228687,12 +228884,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42758] = 3, - ACTIONS(487), 1, + [42250] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2991), 1, + ACTIONS(4699), 1, + anon_sym_volatile, + ACTIONS(4697), 22, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4695), 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, + anon_sym_AT, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [42308] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(3123), 1, anon_sym_LBRACK, - ACTIONS(2993), 47, + ACTIONS(3125), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228740,12 +228991,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42814] = 3, - ACTIONS(487), 1, + [42364] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2937), 1, + ACTIONS(2792), 1, anon_sym_LBRACK, - ACTIONS(2939), 47, + ACTIONS(2794), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228793,12 +229044,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42870] = 3, - ACTIONS(487), 1, + [42420] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2933), 1, + ACTIONS(2924), 1, anon_sym_LBRACK, - ACTIONS(2935), 47, + ACTIONS(2926), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228846,12 +229097,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42926] = 3, - ACTIONS(487), 1, + [42476] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3059), 1, + ACTIONS(3060), 1, anon_sym_LBRACK, - ACTIONS(3061), 47, + ACTIONS(3062), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228899,12 +229150,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42982] = 3, - ACTIONS(487), 1, + [42532] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2878), 1, + ACTIONS(3048), 1, anon_sym_LBRACK, - ACTIONS(2880), 47, + ACTIONS(3050), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228952,12 +229203,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43038] = 3, - ACTIONS(487), 1, + [42588] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2913), 1, + ACTIONS(2912), 1, anon_sym_LBRACK, - ACTIONS(2915), 47, + ACTIONS(2914), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229005,74 +229256,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43094] = 12, - ACTIONS(487), 1, + [42644] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, + ACTIONS(2908), 1, anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4629), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 29, + ACTIONS(2910), 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, - [43168] = 3, - ACTIONS(487), 1, + [42700] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2901), 1, + ACTIONS(2892), 1, anon_sym_LBRACK, - ACTIONS(2903), 47, + ACTIONS(2894), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229120,12 +229362,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43224] = 3, - ACTIONS(487), 1, + [42756] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2830), 1, + ACTIONS(2884), 1, anon_sym_LBRACK, - ACTIONS(2832), 47, + ACTIONS(2886), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229173,12 +229415,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43280] = 3, - ACTIONS(487), 1, + [42812] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3115), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(3117), 47, + ACTIONS(2882), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229226,12 +229468,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43336] = 3, - ACTIONS(487), 1, + [42868] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3091), 1, + ACTIONS(3052), 1, anon_sym_LBRACK, - ACTIONS(3093), 47, + ACTIONS(3054), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229279,12 +229521,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43392] = 3, - ACTIONS(487), 1, + [42924] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2790), 1, + ACTIONS(2872), 1, anon_sym_LBRACK, - ACTIONS(2792), 47, + ACTIONS(2874), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229332,12 +229574,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43448] = 3, - ACTIONS(487), 1, + [42980] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2834), 1, + ACTIONS(3169), 1, anon_sym_LBRACK, - ACTIONS(2836), 47, + ACTIONS(3171), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229385,12 +229627,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43504] = 3, - ACTIONS(487), 1, + [43036] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3111), 1, + ACTIONS(2864), 1, anon_sym_LBRACK, - ACTIONS(3113), 47, + ACTIONS(2866), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229438,12 +229680,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43560] = 3, - ACTIONS(487), 1, + [43092] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2862), 1, + ACTIONS(3092), 1, anon_sym_LBRACK, - ACTIONS(2864), 47, + ACTIONS(3094), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229491,12 +229733,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43616] = 3, - ACTIONS(487), 1, + [43148] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3032), 1, anon_sym_LBRACK, - ACTIONS(3125), 47, + ACTIONS(3034), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229544,12 +229786,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43672] = 3, - ACTIONS(487), 1, + [43204] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2826), 1, + ACTIONS(2816), 1, anon_sym_LBRACK, - ACTIONS(2828), 47, + ACTIONS(2818), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229597,66 +229839,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43728] = 4, - ACTIONS(3), 1, + [43260] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(4701), 1, - anon_sym_volatile, - ACTIONS(4699), 22, - anon_sym_LBRACE, + ACTIONS(3024), 1, + anon_sym_LBRACK, + ACTIONS(3026), 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_json_DOTdecode, anon_sym_LBRACK2, - anon_sym_TILDE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4697), 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, - anon_sym_AT, + anon_sym_LT_LT, + anon_sym_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, - [43786] = 3, - ACTIONS(487), 1, + anon_sym_AT_LBRACK, + [43316] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2870), 1, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2872), 47, + ACTIONS(3002), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229704,12 +229945,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43842] = 3, - ACTIONS(487), 1, + [43372] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2874), 1, + ACTIONS(2952), 1, anon_sym_LBRACK, - ACTIONS(2876), 47, + ACTIONS(2954), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229757,12 +229998,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43898] = 3, - ACTIONS(487), 1, + [43428] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2897), 1, + ACTIONS(2948), 1, anon_sym_LBRACK, - ACTIONS(2899), 47, + ACTIONS(2950), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229810,12 +230051,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43954] = 3, - ACTIONS(487), 1, + [43484] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2905), 1, + ACTIONS(2944), 1, anon_sym_LBRACK, - ACTIONS(2907), 47, + ACTIONS(2946), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229863,17 +230104,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44010] = 3, - ACTIONS(487), 1, + [43540] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(2742), 1, + anon_sym_DOT, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(2923), 47, + ACTIONS(2846), 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, @@ -229916,12 +230158,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44066] = 3, - ACTIONS(487), 1, + [43598] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3107), 1, + ACTIONS(2940), 1, anon_sym_LBRACK, - ACTIONS(3109), 47, + ACTIONS(2942), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229969,12 +230211,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44122] = 3, - ACTIONS(487), 1, + [43654] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3011), 1, + ACTIONS(2936), 1, anon_sym_LBRACK, - ACTIONS(3013), 47, + ACTIONS(2938), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230022,12 +230264,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44178] = 3, - ACTIONS(487), 1, + [43710] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3015), 1, + ACTIONS(2860), 1, anon_sym_LBRACK, - ACTIONS(3017), 47, + ACTIONS(2862), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230075,12 +230317,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44234] = 3, - ACTIONS(487), 1, + [43766] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2846), 1, + ACTIONS(2916), 1, anon_sym_LBRACK, - ACTIONS(2848), 47, + ACTIONS(2918), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230128,12 +230370,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44290] = 3, - ACTIONS(487), 1, + [43822] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3191), 1, + ACTIONS(2904), 1, anon_sym_LBRACK, - ACTIONS(3193), 47, + ACTIONS(2906), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230181,12 +230423,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44346] = 3, - ACTIONS(487), 1, + [43878] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3023), 1, + ACTIONS(2876), 1, anon_sym_LBRACK, - ACTIONS(3025), 47, + ACTIONS(2878), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230234,12 +230476,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44402] = 3, - ACTIONS(487), 1, + [43934] = 24, + ACTIONS(493), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4605), 1, + anon_sym_LBRACK, + ACTIONS(4607), 1, + anon_sym_QMARK, + ACTIONS(4609), 1, + anon_sym_BANG, + ACTIONS(4645), 1, + anon_sym_as, + ACTIONS(4653), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4655), 1, + anon_sym_DASH_DASH, + ACTIONS(4659), 1, + anon_sym_AMP_AMP, + ACTIONS(4661), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4663), 1, + anon_sym_or, + ACTIONS(4665), 1, + anon_sym_is, + ACTIONS(4667), 1, + anon_sym_BANGis, + ACTIONS(4669), 1, + anon_sym_in, + ACTIONS(4671), 1, + anon_sym_BANGin, + STATE(2183), 1, + sym_or_block, + STATE(2184), 1, + sym_argument_list, + STATE(4302), 1, + sym_type_parameters, + ACTIONS(4601), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4611), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4647), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4651), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4649), 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(2234), 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, + [44032] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3019), 1, + ACTIONS(2840), 1, anon_sym_LBRACK, - ACTIONS(3021), 47, + ACTIONS(2842), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230287,12 +230603,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44458] = 3, - ACTIONS(487), 1, + [44088] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2999), 1, + ACTIONS(2796), 1, anon_sym_LBRACK, - ACTIONS(3001), 47, + ACTIONS(2798), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230340,12 +230656,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44514] = 3, - ACTIONS(487), 1, + [44144] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3083), 1, + ACTIONS(3076), 1, anon_sym_LBRACK, - ACTIONS(3085), 47, + ACTIONS(3078), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230393,12 +230709,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44570] = 3, - ACTIONS(487), 1, + [44200] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2798), 1, + ACTIONS(2283), 23, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4701), 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, + anon_sym_AT, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [44256] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(2800), 1, anon_sym_LBRACK, - ACTIONS(2800), 47, + ACTIONS(2802), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230446,12 +230815,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44626] = 3, - ACTIONS(487), 1, + [44312] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2802), 1, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(2804), 47, + ACTIONS(2978), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230499,12 +230868,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44682] = 3, - ACTIONS(487), 1, + [44368] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2814), 1, + ACTIONS(2824), 1, anon_sym_LBRACK, - ACTIONS(2816), 47, + ACTIONS(2826), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230552,12 +230921,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44738] = 3, - ACTIONS(487), 1, + [44424] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3027), 1, + ACTIONS(2832), 1, anon_sym_LBRACK, - ACTIONS(3029), 47, + ACTIONS(2834), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230605,12 +230974,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44794] = 3, - ACTIONS(487), 1, + [44480] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3167), 1, + ACTIONS(2828), 1, anon_sym_LBRACK, - ACTIONS(3169), 47, + ACTIONS(2830), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230658,12 +231027,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44850] = 3, - ACTIONS(487), 1, + [44536] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2850), 1, + ACTIONS(2868), 1, anon_sym_LBRACK, - ACTIONS(2852), 47, + ACTIONS(2870), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230711,12 +231080,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44906] = 3, - ACTIONS(487), 1, + [44592] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3095), 1, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(3097), 47, + ACTIONS(2846), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230764,12 +231133,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44962] = 3, - ACTIONS(487), 1, + [44648] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2866), 1, + ACTIONS(2972), 1, anon_sym_LBRACK, - ACTIONS(2868), 47, + ACTIONS(2974), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230817,12 +231186,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45018] = 3, - ACTIONS(487), 1, + [44704] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2929), 1, + ACTIONS(2804), 1, anon_sym_LBRACK, - ACTIONS(2931), 47, + ACTIONS(2806), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230870,12 +231239,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45074] = 3, - ACTIONS(487), 1, + [44760] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2979), 1, + ACTIONS(2932), 1, anon_sym_LBRACK, - ACTIONS(2981), 47, + ACTIONS(2934), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230923,12 +231292,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45130] = 3, - ACTIONS(487), 1, + [44816] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2983), 1, + ACTIONS(2960), 1, anon_sym_LBRACK, - ACTIONS(2985), 47, + ACTIONS(2962), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230976,12 +231345,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45186] = 3, - ACTIONS(487), 1, + [44872] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3067), 1, + ACTIONS(3020), 1, anon_sym_LBRACK, - ACTIONS(3069), 47, + ACTIONS(3022), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231029,12 +231398,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45242] = 3, - ACTIONS(487), 1, + [44928] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3139), 1, + ACTIONS(3080), 1, anon_sym_LBRACK, - ACTIONS(3141), 47, + ACTIONS(3082), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231082,84 +231451,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45298] = 24, - ACTIONS(487), 1, + [44984] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, + ACTIONS(2820), 1, anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - ACTIONS(4625), 1, - anon_sym_as, - ACTIONS(4633), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4635), 1, - anon_sym_DASH_DASH, - ACTIONS(4643), 1, - anon_sym_or, - ACTIONS(4645), 1, - anon_sym_is, - ACTIONS(4647), 1, - anon_sym_BANGis, - ACTIONS(4709), 1, - anon_sym_AMP_AMP, - ACTIONS(4711), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, - anon_sym_in, - ACTIONS(4715), 1, - anon_sym_BANGin, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, + ACTIONS(2822), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4703), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4707), 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(2220), 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, + 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, - ACTIONS(4705), 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, - [45395] = 3, + anon_sym_AT_LBRACK, + [45040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 22, + ACTIONS(1803), 23, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, @@ -231181,7 +231531,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4697), 25, + ACTIONS(4703), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -231207,183 +231557,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [45450] = 24, - ACTIONS(487), 1, + [45096] = 27, + ACTIONS(493), 1, sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, + ACTIONS(2740), 1, + anon_sym_DOT, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(4601), 1, + ACTIONS(3205), 1, + sym_identifier, + ACTIONS(3209), 1, + anon_sym_fn, + ACTIONS(3211), 1, + anon_sym_STAR, + ACTIONS(3213), 1, + anon_sym_struct, + ACTIONS(3215), 1, anon_sym_QMARK, - ACTIONS(4603), 1, + ACTIONS(3217), 1, anon_sym_BANG, - ACTIONS(4625), 1, - anon_sym_as, - ACTIONS(4633), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4635), 1, - anon_sym_DASH_DASH, - ACTIONS(4643), 1, - anon_sym_or, - ACTIONS(4645), 1, - anon_sym_is, - ACTIONS(4647), 1, - anon_sym_BANGis, - ACTIONS(4709), 1, - anon_sym_AMP_AMP, - ACTIONS(4711), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, - anon_sym_in, - ACTIONS(4715), 1, - anon_sym_BANGin, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, + ACTIONS(3219), 1, anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4703), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4707), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4705), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3221), 1, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(4717), 8, + ACTIONS(3223), 1, + anon_sym_shared, + ACTIONS(3225), 1, + anon_sym_map_LBRACK, + ACTIONS(3227), 1, + anon_sym_chan, + ACTIONS(3229), 1, + anon_sym_thread, + ACTIONS(3231), 1, + anon_sym_atomic, + ACTIONS(4705), 1, + anon_sym_LPAREN, + ACTIONS(4707), 1, + anon_sym_LT2, + STATE(3421), 1, + sym_plain_type, + STATE(3423), 1, + sym_signature, + STATE(3726), 1, + sym_generic_parameters, + STATE(4425), 1, + sym_reference_expression, + STATE(2486), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3388), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3431), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(2846), 7, 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, - [45547] = 13, - ACTIONS(487), 1, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + STATE(3438), 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, + [45200] = 24, + ACTIONS(493), 1, sym_comment, - ACTIONS(4597), 1, + ACTIONS(4603), 1, anon_sym_LPAREN, - ACTIONS(4599), 1, + ACTIONS(4605), 1, anon_sym_LBRACK, - ACTIONS(4601), 1, + ACTIONS(4607), 1, anon_sym_QMARK, - ACTIONS(4603), 1, + ACTIONS(4609), 1, anon_sym_BANG, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4703), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4705), 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(2108), 24, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4645), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + ACTIONS(4653), 1, anon_sym_PLUS_PLUS, + ACTIONS(4655), 1, anon_sym_DASH_DASH, + ACTIONS(4659), 1, anon_sym_AMP_AMP, + ACTIONS(4661), 1, anon_sym_PIPE_PIPE, + ACTIONS(4663), 1, anon_sym_or, + ACTIONS(4665), 1, anon_sym_is, + ACTIONS(4667), 1, anon_sym_BANGis, + ACTIONS(4669), 1, anon_sym_in, + ACTIONS(4671), 1, anon_sym_BANGin, - sym_identifier, - [45622] = 17, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - ACTIONS(4709), 1, - anon_sym_AMP_AMP, - ACTIONS(4713), 1, - anon_sym_in, - ACTIONS(4715), 1, - anon_sym_BANGin, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, + STATE(2183), 1, sym_or_block, - STATE(4283), 1, + STATE(2184), 1, + sym_argument_list, + STATE(4302), 1, sym_type_parameters, - ACTIONS(4595), 2, + ACTIONS(4601), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4605), 2, + ACTIONS(4611), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4703), 4, + ACTIONS(4647), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4707), 6, + ACTIONS(4651), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4705), 8, + ACTIONS(4649), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -231392,78 +231698,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2076), 15, + ACTIONS(2052), 9, 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, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, sym_identifier, - [45705] = 24, - ACTIONS(487), 1, + anon_sym_AT_LBRACK, + [45298] = 24, + ACTIONS(493), 1, sym_comment, - ACTIONS(4597), 1, + ACTIONS(4603), 1, anon_sym_LPAREN, - ACTIONS(4599), 1, + ACTIONS(4605), 1, anon_sym_LBRACK, - ACTIONS(4601), 1, + ACTIONS(4607), 1, anon_sym_QMARK, - ACTIONS(4603), 1, + ACTIONS(4609), 1, anon_sym_BANG, - ACTIONS(4625), 1, + ACTIONS(4645), 1, anon_sym_as, - ACTIONS(4633), 1, + ACTIONS(4653), 1, anon_sym_PLUS_PLUS, - ACTIONS(4635), 1, + ACTIONS(4655), 1, anon_sym_DASH_DASH, - ACTIONS(4643), 1, + ACTIONS(4663), 1, anon_sym_or, - ACTIONS(4645), 1, + ACTIONS(4665), 1, anon_sym_is, - ACTIONS(4647), 1, + ACTIONS(4667), 1, anon_sym_BANGis, - ACTIONS(4709), 1, + ACTIONS(4717), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4719), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4721), 1, anon_sym_in, - ACTIONS(4715), 1, + ACTIONS(4723), 1, anon_sym_BANGin, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, + STATE(2183), 1, sym_or_block, - STATE(4283), 1, + STATE(2184), 1, + sym_argument_list, + STATE(4302), 1, sym_type_parameters, - ACTIONS(4595), 2, + ACTIONS(4601), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4605), 2, + ACTIONS(4611), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4703), 4, + ACTIONS(4711), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4707), 6, + ACTIONS(4715), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2210), 8, + ACTIONS(4709), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231472,7 +231772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, sym_identifier, - ACTIONS(4705), 8, + ACTIONS(4713), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -231481,10 +231781,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [45802] = 3, + [45395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2700), 13, + ACTIONS(2736), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -231498,7 +231798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2698), 34, + ACTIONS(2734), 34, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -231533,46 +231833,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [45857] = 16, - ACTIONS(487), 1, + [45450] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4597), 1, + ACTIONS(4697), 22, + anon_sym_LBRACE, anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4695), 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, + anon_sym_AT, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [45505] = 24, + ACTIONS(493), 1, + sym_comment, ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4605), 1, + anon_sym_LBRACK, + ACTIONS(4607), 1, + anon_sym_QMARK, + ACTIONS(4609), 1, anon_sym_BANG, - ACTIONS(4713), 1, + ACTIONS(4645), 1, + anon_sym_as, + ACTIONS(4653), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4655), 1, + anon_sym_DASH_DASH, + ACTIONS(4663), 1, + anon_sym_or, + ACTIONS(4665), 1, + anon_sym_is, + ACTIONS(4667), 1, + anon_sym_BANGis, + ACTIONS(4717), 1, + anon_sym_AMP_AMP, + ACTIONS(4719), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4721), 1, anon_sym_in, - ACTIONS(4715), 1, + ACTIONS(4723), 1, anon_sym_BANGin, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, + STATE(2183), 1, sym_or_block, - STATE(4283), 1, + STATE(2184), 1, + sym_argument_list, + STATE(4302), 1, sym_type_parameters, - ACTIONS(4595), 2, + ACTIONS(4601), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4605), 2, + ACTIONS(4611), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4703), 4, + ACTIONS(4711), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4707), 6, + ACTIONS(4715), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4705), 8, + ACTIONS(4713), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -231581,52 +231949,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2076), 16, + ACTIONS(4725), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, sym_identifier, - [45938] = 13, - ACTIONS(487), 1, + [45602] = 24, + ACTIONS(493), 1, sym_comment, - ACTIONS(4597), 1, + ACTIONS(4603), 1, anon_sym_LPAREN, - ACTIONS(4599), 1, + ACTIONS(4605), 1, anon_sym_LBRACK, - ACTIONS(4601), 1, + ACTIONS(4607), 1, anon_sym_QMARK, - ACTIONS(4603), 1, + ACTIONS(4609), 1, anon_sym_BANG, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, + ACTIONS(4645), 1, + anon_sym_as, + ACTIONS(4653), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4655), 1, + anon_sym_DASH_DASH, + ACTIONS(4663), 1, + anon_sym_or, + ACTIONS(4665), 1, + anon_sym_is, + ACTIONS(4667), 1, + anon_sym_BANGis, + ACTIONS(4717), 1, + anon_sym_AMP_AMP, + ACTIONS(4719), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4721), 1, + anon_sym_in, + ACTIONS(4723), 1, + anon_sym_BANGin, + STATE(2183), 1, sym_or_block, - STATE(4283), 1, + STATE(2184), 1, + sym_argument_list, + STATE(4302), 1, sym_type_parameters, - ACTIONS(4595), 2, + ACTIONS(4601), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4605), 2, + ACTIONS(4611), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4703), 4, + ACTIONS(4711), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4705), 8, + ACTIONS(4715), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2052), 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(4713), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -231635,158 +232031,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2112), 24, + [45699] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(2692), 1, + anon_sym_LBRACK, + ACTIONS(2784), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2694), 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_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, - [46013] = 13, - ACTIONS(487), 1, + anon_sym_AT_LBRACK, + [45756] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, + ACTIONS(2694), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4703), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4705), 8, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 24, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2692), 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, - [46088] = 12, - ACTIONS(487), 1, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [45811] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, + ACTIONS(4727), 1, + anon_sym_else, + STATE(2347), 1, + sym_else_branch, + ACTIONS(2398), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4603), 1, anon_sym_BANG, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4705), 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(2076), 28, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2396), 32, anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, + anon_sym_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_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - [46161] = 3, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [45870] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2730), 13, + ACTIONS(4727), 1, + anon_sym_else, + STATE(2342), 1, + sym_else_branch, + ACTIONS(2392), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -231800,7 +232211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2728), 34, + ACTIONS(2390), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -231827,70 +232238,41 @@ 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, - [46216] = 24, - ACTIONS(487), 1, + [45929] = 13, + ACTIONS(493), 1, sym_comment, - ACTIONS(4597), 1, + ACTIONS(4603), 1, anon_sym_LPAREN, - ACTIONS(4599), 1, + ACTIONS(4605), 1, anon_sym_LBRACK, - ACTIONS(4601), 1, + ACTIONS(4607), 1, anon_sym_QMARK, - ACTIONS(4603), 1, + ACTIONS(4609), 1, anon_sym_BANG, - ACTIONS(4625), 1, - anon_sym_as, - ACTIONS(4633), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4635), 1, - anon_sym_DASH_DASH, - ACTIONS(4643), 1, - anon_sym_or, - ACTIONS(4645), 1, - anon_sym_is, - ACTIONS(4647), 1, - anon_sym_BANGis, - ACTIONS(4709), 1, - anon_sym_AMP_AMP, - ACTIONS(4711), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, - anon_sym_in, - ACTIONS(4715), 1, - anon_sym_BANGin, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, + STATE(2183), 1, sym_or_block, - STATE(4283), 1, + STATE(2184), 1, + sym_argument_list, + STATE(4302), 1, sym_type_parameters, - ACTIONS(4595), 2, + ACTIONS(4601), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4605), 2, + ACTIONS(4611), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4703), 4, + ACTIONS(4711), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4707), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4705), 8, + ACTIONS(4713), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -231899,56 +232281,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(4719), 8, + ACTIONS(2144), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [46313] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4721), 1, - anon_sym_else, - STATE(2372), 1, - sym_else_branch, - ACTIONS(2406), 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(2404), 32, - anon_sym_SEMI, - anon_sym_as, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + [46004] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(2836), 1, + anon_sym_LBRACK, + ACTIONS(2784), 2, anon_sym_LBRACE, anon_sym_COMMA, + ACTIONS(2838), 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_RPAREN, + 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_LBRACK, - anon_sym_RBRACK, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -231960,66 +232357,74 @@ 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, - [46372] = 5, - ACTIONS(3), 1, + sym_identifier, + anon_sym_AT_LBRACK, + [46061] = 13, + ACTIONS(493), 1, sym_comment, - ACTIONS(4721), 1, - anon_sym_else, - STATE(2376), 1, - sym_else_branch, - ACTIONS(2400), 13, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4605), 1, + anon_sym_LBRACK, + ACTIONS(4607), 1, + anon_sym_QMARK, + ACTIONS(4609), 1, + anon_sym_BANG, + STATE(2183), 1, + sym_or_block, + STATE(2184), 1, + sym_argument_list, + STATE(4302), 1, + sym_type_parameters, + ACTIONS(4601), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4611), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4711), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4713), 8, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2398), 32, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2156), 24, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [46431] = 3, + sym_identifier, + [46136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4725), 22, + ACTIONS(4731), 22, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_PLUS, @@ -232042,7 +232447,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4723), 25, + ACTIONS(4729), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -232068,154 +232473,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [46486] = 4, - ACTIONS(487), 1, + [46191] = 17, + ACTIONS(493), 1, sym_comment, - ACTIONS(2965), 1, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4605), 1, anon_sym_LBRACK, - ACTIONS(2766), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2967), 44, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4607), 1, + anon_sym_QMARK, + ACTIONS(4609), 1, + anon_sym_BANG, + ACTIONS(4717), 1, + anon_sym_AMP_AMP, + ACTIONS(4721), 1, + anon_sym_in, + ACTIONS(4723), 1, + anon_sym_BANGin, + STATE(2183), 1, + sym_or_block, + STATE(2184), 1, + sym_argument_list, + STATE(4302), 1, + sym_type_parameters, + ACTIONS(4601), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, + anon_sym_QMARK_DOT, + ACTIONS(4611), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4711), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4715), 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_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4713), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [46543] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2698), 1, - anon_sym_LBRACK, - ACTIONS(2766), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2700), 44, + ACTIONS(2162), 15, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, + anon_sym_SEMI, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_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, - [46600] = 17, - ACTIONS(487), 1, + [46274] = 16, + ACTIONS(493), 1, sym_comment, - ACTIONS(4729), 1, + ACTIONS(4603), 1, anon_sym_LPAREN, - ACTIONS(4737), 1, + ACTIONS(4605), 1, anon_sym_LBRACK, - ACTIONS(4739), 1, + ACTIONS(4607), 1, anon_sym_QMARK, - ACTIONS(4741), 1, + ACTIONS(4609), 1, anon_sym_BANG, - ACTIONS(4745), 1, - anon_sym_AMP_AMP, - ACTIONS(4747), 1, + ACTIONS(4721), 1, anon_sym_in, - ACTIONS(4749), 1, + ACTIONS(4723), 1, anon_sym_BANGin, - STATE(2520), 1, + STATE(2183), 1, sym_or_block, - STATE(2523), 1, + STATE(2184), 1, sym_argument_list, - STATE(4222), 1, + STATE(4302), 1, sym_type_parameters, - ACTIONS(4727), 2, + ACTIONS(4601), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4743), 2, + ACTIONS(4611), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4731), 4, + ACTIONS(4711), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4735), 6, + ACTIONS(4715), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4733), 8, + ACTIONS(4713), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -232224,7 +232587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2076), 14, + ACTIONS(2162), 16, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -232232,42 +232595,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + 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, - [46682] = 13, - ACTIONS(487), 1, + sym_identifier, + [46355] = 13, + ACTIONS(493), 1, sym_comment, - ACTIONS(4729), 1, + ACTIONS(4603), 1, anon_sym_LPAREN, - ACTIONS(4737), 1, + ACTIONS(4605), 1, anon_sym_LBRACK, - ACTIONS(4739), 1, + ACTIONS(4607), 1, anon_sym_QMARK, - ACTIONS(4741), 1, + ACTIONS(4609), 1, anon_sym_BANG, - STATE(2520), 1, + STATE(2183), 1, sym_or_block, - STATE(2523), 1, + STATE(2184), 1, sym_argument_list, - STATE(4222), 1, + STATE(4302), 1, sym_type_parameters, - ACTIONS(4727), 2, + ACTIONS(4601), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4743), 2, + ACTIONS(4611), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4731), 4, + ACTIONS(4711), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4733), 8, + ACTIONS(4713), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -232276,7 +232641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2112), 23, + ACTIONS(2162), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -232284,13 +232649,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -232300,64 +232665,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [46756] = 4, - ACTIONS(3), 1, + sym_identifier, + [46430] = 12, + ACTIONS(493), 1, sym_comment, - ACTIONS(4751), 1, - anon_sym_DOLLARelse, - ACTIONS(2734), 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(4603), 1, + anon_sym_LPAREN, + ACTIONS(4605), 1, + anon_sym_LBRACK, + ACTIONS(4607), 1, anon_sym_QMARK, + ACTIONS(4609), 1, anon_sym_BANG, + STATE(2183), 1, + sym_or_block, + STATE(2184), 1, + sym_argument_list, + STATE(4302), 1, + sym_type_parameters, + ACTIONS(4601), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4611), 2, anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4713), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2732), 32, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2162), 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_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [46812] = 4, + sym_identifier, + [46503] = 24, + ACTIONS(493), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4605), 1, + anon_sym_LBRACK, + ACTIONS(4607), 1, + anon_sym_QMARK, + ACTIONS(4609), 1, + anon_sym_BANG, + ACTIONS(4645), 1, + anon_sym_as, + ACTIONS(4653), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4655), 1, + anon_sym_DASH_DASH, + ACTIONS(4663), 1, + anon_sym_or, + ACTIONS(4665), 1, + anon_sym_is, + ACTIONS(4667), 1, + anon_sym_BANGis, + ACTIONS(4717), 1, + anon_sym_AMP_AMP, + ACTIONS(4719), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4721), 1, + anon_sym_in, + ACTIONS(4723), 1, + anon_sym_BANGin, + STATE(2183), 1, + sym_or_block, + STATE(2184), 1, + sym_argument_list, + STATE(4302), 1, + sym_type_parameters, + ACTIONS(4601), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4611), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4711), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4715), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2234), 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(4713), 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, + [46600] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4753), 1, + ACTIONS(4733), 1, anon_sym_DOLLARelse, - ACTIONS(2740), 13, + ACTIONS(2758), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -232371,7 +232819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2738), 32, + ACTIONS(2756), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -232404,29 +232852,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [46868] = 24, - ACTIONS(487), 1, + [46656] = 24, + ACTIONS(493), 1, sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, ACTIONS(4737), 1, - anon_sym_LBRACK, + anon_sym_as, ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4745), 1, - anon_sym_AMP_AMP, + anon_sym_LPAREN, ACTIONS(4747), 1, - anon_sym_in, + anon_sym_LBRACK, ACTIONS(4749), 1, - anon_sym_BANGin, - ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, + ACTIONS(4751), 1, anon_sym_DASH_DASH, + ACTIONS(4753), 1, + anon_sym_QMARK, + ACTIONS(4755), 1, + anon_sym_BANG, + ACTIONS(4759), 1, + anon_sym_AMP_AMP, ACTIONS(4761), 1, anon_sym_PIPE_PIPE, ACTIONS(4763), 1, @@ -232435,31 +232879,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(4767), 1, anon_sym_BANGis, - STATE(2520), 1, + ACTIONS(4769), 1, + anon_sym_in, + ACTIONS(4771), 1, + anon_sym_BANGin, + STATE(2489), 1, sym_or_block, - STATE(2523), 1, + STATE(2553), 1, sym_argument_list, - STATE(4222), 1, + STATE(4146), 1, sym_type_parameters, - ACTIONS(4727), 2, + ACTIONS(4735), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4743), 2, + ACTIONS(4757), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4731), 4, + ACTIONS(4741), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4735), 6, + ACTIONS(4745), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2124), 7, + ACTIONS(2172), 7, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -232467,7 +232915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, - ACTIONS(4733), 8, + ACTIONS(4743), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -232476,30 +232924,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [46964] = 12, - ACTIONS(487), 1, + [46752] = 12, + ACTIONS(493), 1, sym_comment, - ACTIONS(4729), 1, + ACTIONS(4739), 1, anon_sym_LPAREN, - ACTIONS(4737), 1, + ACTIONS(4747), 1, anon_sym_LBRACK, - ACTIONS(4739), 1, + ACTIONS(4753), 1, anon_sym_QMARK, - ACTIONS(4741), 1, + ACTIONS(4755), 1, anon_sym_BANG, - STATE(2520), 1, + STATE(2489), 1, sym_or_block, - STATE(2523), 1, + STATE(2553), 1, sym_argument_list, - STATE(4222), 1, + STATE(4146), 1, sym_type_parameters, - ACTIONS(4727), 2, + ACTIONS(4735), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4743), 2, + ACTIONS(4757), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4733), 8, + ACTIONS(4743), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -232508,7 +232956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2076), 27, + ACTIONS(2162), 27, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -232536,30 +232984,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [47036] = 11, - ACTIONS(487), 1, + [46824] = 13, + ACTIONS(493), 1, sym_comment, - ACTIONS(4729), 1, + ACTIONS(4739), 1, anon_sym_LPAREN, - ACTIONS(4737), 1, + ACTIONS(4747), 1, anon_sym_LBRACK, - ACTIONS(4739), 1, + ACTIONS(4753), 1, anon_sym_QMARK, - ACTIONS(4741), 1, + ACTIONS(4755), 1, anon_sym_BANG, - STATE(2520), 1, + STATE(2489), 1, sym_or_block, - STATE(2523), 1, + STATE(2553), 1, sym_argument_list, - STATE(4222), 1, + STATE(4146), 1, sym_type_parameters, - ACTIONS(4727), 2, + ACTIONS(4735), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4743), 2, + ACTIONS(4757), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(2230), 35, + ACTIONS(4741), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4743), 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(2162), 23, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -232568,12 +233030,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_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, @@ -232582,12 +233038,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -232595,70 +233045,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [47106] = 24, - ACTIONS(487), 1, + [46898] = 16, + ACTIONS(493), 1, sym_comment, - ACTIONS(4729), 1, + ACTIONS(4739), 1, anon_sym_LPAREN, - ACTIONS(4737), 1, + ACTIONS(4747), 1, anon_sym_LBRACK, - ACTIONS(4739), 1, + ACTIONS(4753), 1, anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4745), 1, - anon_sym_AMP_AMP, - ACTIONS(4747), 1, - anon_sym_in, - ACTIONS(4749), 1, - anon_sym_BANGin, ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, - anon_sym_DASH_DASH, - ACTIONS(4761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, - anon_sym_or, + anon_sym_BANG, ACTIONS(4769), 1, - anon_sym_is, + anon_sym_in, ACTIONS(4771), 1, - anon_sym_BANGis, - STATE(2520), 1, + anon_sym_BANGin, + STATE(2489), 1, sym_or_block, - STATE(2523), 1, + STATE(2553), 1, sym_argument_list, - STATE(4222), 1, + STATE(4146), 1, sym_type_parameters, - ACTIONS(4727), 2, + ACTIONS(4735), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4743), 2, + ACTIONS(4757), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4731), 4, + ACTIONS(4741), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4735), 6, + ACTIONS(4745), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2220), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - ACTIONS(4733), 8, + ACTIONS(4743), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -232667,70 +233093,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [47202] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4745), 1, - anon_sym_AMP_AMP, - ACTIONS(4747), 1, - anon_sym_in, - ACTIONS(4749), 1, - anon_sym_BANGin, - ACTIONS(4755), 1, + ACTIONS(2162), 15, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_as, - ACTIONS(4757), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, anon_sym_DASH_DASH, - ACTIONS(4761), 1, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, anon_sym_or, - ACTIONS(4769), 1, anon_sym_is, - ACTIONS(4771), 1, anon_sym_BANGis, - STATE(2520), 1, + [46978] = 13, + ACTIONS(493), 1, + sym_comment, + ACTIONS(4739), 1, + anon_sym_LPAREN, + ACTIONS(4747), 1, + anon_sym_LBRACK, + ACTIONS(4753), 1, + anon_sym_QMARK, + ACTIONS(4755), 1, + anon_sym_BANG, + STATE(2489), 1, sym_or_block, - STATE(2523), 1, + STATE(2553), 1, sym_argument_list, - STATE(4222), 1, + STATE(4146), 1, sym_type_parameters, - ACTIONS(4727), 2, + ACTIONS(4735), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4743), 2, + ACTIONS(4757), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4731), 4, + ACTIONS(4741), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4735), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2210), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - ACTIONS(4733), 8, + ACTIONS(4743), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -232739,30 +233146,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [47298] = 11, - ACTIONS(487), 1, + ACTIONS(2144), 23, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + 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, + [47052] = 11, + ACTIONS(493), 1, sym_comment, - ACTIONS(4729), 1, + ACTIONS(4739), 1, anon_sym_LPAREN, - ACTIONS(4737), 1, + ACTIONS(4747), 1, anon_sym_LBRACK, - ACTIONS(4739), 1, + ACTIONS(4753), 1, anon_sym_QMARK, - ACTIONS(4741), 1, + ACTIONS(4755), 1, anon_sym_BANG, - STATE(2520), 1, + STATE(2489), 1, sym_or_block, - STATE(2523), 1, + STATE(2553), 1, sym_argument_list, - STATE(4222), 1, + STATE(4146), 1, sym_type_parameters, - ACTIONS(4727), 2, + ACTIONS(4735), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4743), 2, + ACTIONS(4757), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(2076), 35, + ACTIONS(2246), 35, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -232792,113 +233223,106 @@ static const uint16_t ts_small_parse_table[] = { 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, - [47368] = 13, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [47122] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2380), 1, sym_type_parameters, - ACTIONS(4727), 2, + ACTIONS(2764), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4731), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4733), 8, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 23, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2762), 32, anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + 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, - [47442] = 16, - ACTIONS(487), 1, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [47178] = 17, + ACTIONS(493), 1, sym_comment, - ACTIONS(4729), 1, + ACTIONS(4739), 1, anon_sym_LPAREN, - ACTIONS(4737), 1, + ACTIONS(4747), 1, anon_sym_LBRACK, - ACTIONS(4739), 1, + ACTIONS(4753), 1, anon_sym_QMARK, - ACTIONS(4741), 1, + ACTIONS(4755), 1, anon_sym_BANG, - ACTIONS(4747), 1, + ACTIONS(4759), 1, + anon_sym_AMP_AMP, + ACTIONS(4769), 1, anon_sym_in, - ACTIONS(4749), 1, + ACTIONS(4771), 1, anon_sym_BANGin, - STATE(2520), 1, + STATE(2489), 1, sym_or_block, - STATE(2523), 1, + STATE(2553), 1, sym_argument_list, - STATE(4222), 1, + STATE(4146), 1, sym_type_parameters, - ACTIONS(4727), 2, + ACTIONS(4735), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4743), 2, + ACTIONS(4757), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4731), 4, + ACTIONS(4741), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4735), 6, + ACTIONS(4745), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4733), 8, + ACTIONS(4743), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -232907,7 +233331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2076), 15, + ACTIONS(2162), 14, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -232918,35 +233342,34 @@ static const uint16_t ts_small_parse_table[] = { 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, - [47522] = 11, - ACTIONS(487), 1, + [47260] = 11, + ACTIONS(493), 1, sym_comment, - ACTIONS(4729), 1, + ACTIONS(4739), 1, anon_sym_LPAREN, - ACTIONS(4737), 1, + ACTIONS(4747), 1, anon_sym_LBRACK, - ACTIONS(4739), 1, + ACTIONS(4753), 1, anon_sym_QMARK, - ACTIONS(4741), 1, + ACTIONS(4755), 1, anon_sym_BANG, - STATE(2520), 1, + STATE(2489), 1, sym_or_block, - STATE(2523), 1, + STATE(2553), 1, sym_argument_list, - STATE(4222), 1, + STATE(4146), 1, sym_type_parameters, - ACTIONS(4727), 2, + ACTIONS(4735), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4743), 2, + ACTIONS(4757), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(2164), 35, + ACTIONS(2162), 35, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -232982,55 +233405,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [47592] = 27, - ACTIONS(487), 1, + [47330] = 27, + ACTIONS(493), 1, sym_comment, - ACTIONS(4597), 1, + ACTIONS(4603), 1, anon_sym_LPAREN, - ACTIONS(4599), 1, + ACTIONS(4605), 1, anon_sym_LBRACK, - ACTIONS(4601), 1, + ACTIONS(4607), 1, anon_sym_QMARK, - ACTIONS(4603), 1, + ACTIONS(4609), 1, anon_sym_BANG, - ACTIONS(4605), 1, + ACTIONS(4611), 1, anon_sym_POUND_LBRACK, - ACTIONS(4625), 1, + ACTIONS(4645), 1, anon_sym_as, - ACTIONS(4633), 1, + ACTIONS(4653), 1, anon_sym_PLUS_PLUS, - ACTIONS(4635), 1, + ACTIONS(4655), 1, anon_sym_DASH_DASH, - ACTIONS(4637), 1, + ACTIONS(4657), 1, anon_sym_LBRACK2, - ACTIONS(4639), 1, + ACTIONS(4659), 1, anon_sym_AMP_AMP, - ACTIONS(4641), 1, + ACTIONS(4661), 1, anon_sym_PIPE_PIPE, - ACTIONS(4643), 1, + ACTIONS(4663), 1, anon_sym_or, - ACTIONS(4645), 1, + ACTIONS(4665), 1, anon_sym_is, - ACTIONS(4647), 1, + ACTIONS(4667), 1, anon_sym_BANGis, - ACTIONS(4649), 1, + ACTIONS(4669), 1, anon_sym_in, - ACTIONS(4651), 1, + ACTIONS(4671), 1, anon_sym_BANGin, - ACTIONS(4653), 1, + ACTIONS(4673), 1, anon_sym_AT_LBRACK, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, + STATE(2183), 1, sym_or_block, - STATE(3655), 1, + STATE(2184), 1, + sym_argument_list, + STATE(3683), 1, sym_attribute, - STATE(4283), 1, + STATE(4302), 1, sym_type_parameters, - ACTIONS(4595), 2, + ACTIONS(4601), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4627), 4, + ACTIONS(4647), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -233041,14 +233464,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CR_LF, anon_sym_RBRACE, sym_identifier, - ACTIONS(4631), 6, + ACTIONS(4651), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4629), 8, + ACTIONS(4649), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -233057,87 +233480,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [47694] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2321), 1, - sym_type_parameters, - ACTIONS(2704), 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(2702), 32, - 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, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [47750] = 13, - ACTIONS(487), 1, + [47432] = 13, + ACTIONS(493), 1, sym_comment, - ACTIONS(4729), 1, + ACTIONS(4739), 1, anon_sym_LPAREN, - ACTIONS(4737), 1, + ACTIONS(4747), 1, anon_sym_LBRACK, - ACTIONS(4739), 1, + ACTIONS(4753), 1, anon_sym_QMARK, - ACTIONS(4741), 1, + ACTIONS(4755), 1, anon_sym_BANG, - STATE(2520), 1, + STATE(2489), 1, sym_or_block, - STATE(2523), 1, + STATE(2553), 1, sym_argument_list, - STATE(4222), 1, + STATE(4146), 1, sym_type_parameters, - ACTIONS(4727), 2, + ACTIONS(4735), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4743), 2, + ACTIONS(4757), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4731), 4, + ACTIONS(4741), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4733), 8, + ACTIONS(4743), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -233146,7 +233517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2108), 23, + ACTIONS(2156), 23, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -233170,10 +233541,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [47824] = 3, + [47506] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3161), 13, + ACTIONS(4775), 1, + anon_sym_DOLLARelse, + ACTIONS(2616), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233187,7 +233560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3159), 32, + ACTIONS(2614), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233220,160 +233593,286 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47877] = 3, - ACTIONS(3), 1, + [47562] = 11, + ACTIONS(493), 1, sym_comment, - ACTIONS(3165), 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(4739), 1, + anon_sym_LPAREN, + ACTIONS(4747), 1, + anon_sym_LBRACK, + ACTIONS(4753), 1, anon_sym_QMARK, + ACTIONS(4755), 1, anon_sym_BANG, + STATE(2489), 1, + sym_or_block, + STATE(2553), 1, + sym_argument_list, + STATE(4146), 1, + sym_type_parameters, + ACTIONS(4735), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4757), 2, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3163), 32, + anon_sym_POUND_LBRACK, + ACTIONS(2224), 35, + 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_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [47930] = 3, - ACTIONS(3), 1, + [47632] = 24, + ACTIONS(493), 1, sym_comment, - ACTIONS(3173), 13, + ACTIONS(4737), 1, + anon_sym_as, + ACTIONS(4739), 1, + anon_sym_LPAREN, + ACTIONS(4747), 1, + anon_sym_LBRACK, + ACTIONS(4749), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4751), 1, + anon_sym_DASH_DASH, + ACTIONS(4753), 1, + anon_sym_QMARK, + ACTIONS(4755), 1, + anon_sym_BANG, + ACTIONS(4759), 1, + anon_sym_AMP_AMP, + ACTIONS(4761), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4763), 1, + anon_sym_or, + ACTIONS(4769), 1, + anon_sym_in, + ACTIONS(4771), 1, + anon_sym_BANGin, + ACTIONS(4777), 1, + anon_sym_is, + ACTIONS(4779), 1, + anon_sym_BANGis, + STATE(2489), 1, + sym_or_block, + STATE(2553), 1, + sym_argument_list, + STATE(4146), 1, + sym_type_parameters, + ACTIONS(4735), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4757), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4741), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_CARET, + ACTIONS(4745), 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(3171), 32, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2234), 7, + 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, + ACTIONS(4743), 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, + [47728] = 24, + ACTIONS(493), 1, + sym_comment, + ACTIONS(4737), 1, + anon_sym_as, + ACTIONS(4739), 1, + anon_sym_LPAREN, + ACTIONS(4747), 1, + anon_sym_LBRACK, + ACTIONS(4749), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4751), 1, + anon_sym_DASH_DASH, + ACTIONS(4753), 1, + anon_sym_QMARK, + ACTIONS(4755), 1, + anon_sym_BANG, + ACTIONS(4759), 1, anon_sym_AMP_AMP, + ACTIONS(4761), 1, anon_sym_PIPE_PIPE, + ACTIONS(4763), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(4769), 1, anon_sym_in, + ACTIONS(4771), 1, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [47983] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3121), 13, + ACTIONS(4777), 1, + anon_sym_is, + ACTIONS(4779), 1, + anon_sym_BANGis, + STATE(2489), 1, + sym_or_block, + STATE(2553), 1, + sym_argument_list, + STATE(4146), 1, + sym_type_parameters, + ACTIONS(4735), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4757), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4741), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_CARET, + ACTIONS(4745), 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(3119), 32, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2052), 7, + 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, + ACTIONS(4743), 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, + [47824] = 26, + ACTIONS(493), 1, + sym_comment, + ACTIONS(4737), 1, + anon_sym_as, + ACTIONS(4739), 1, + anon_sym_LPAREN, + ACTIONS(4747), 1, + anon_sym_LBRACK, + ACTIONS(4749), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4751), 1, + anon_sym_DASH_DASH, + ACTIONS(4753), 1, + anon_sym_QMARK, + ACTIONS(4755), 1, + anon_sym_BANG, + ACTIONS(4759), 1, anon_sym_AMP_AMP, + ACTIONS(4761), 1, anon_sym_PIPE_PIPE, + ACTIONS(4763), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(4769), 1, anon_sym_in, + ACTIONS(4771), 1, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48036] = 3, + ACTIONS(4777), 1, + anon_sym_is, + ACTIONS(4779), 1, + anon_sym_BANGis, + ACTIONS(4781), 1, + anon_sym_COMMA, + STATE(2489), 1, + sym_or_block, + STATE(2553), 1, + sym_argument_list, + STATE(3554), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4146), 1, + sym_type_parameters, + ACTIONS(4735), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4757), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(1780), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(4741), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4745), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4743), 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, + [47923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2812), 13, + ACTIONS(3147), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233387,7 +233886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2810), 32, + ACTIONS(3145), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233420,60 +233919,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48089] = 3, - ACTIONS(3), 1, + [47976] = 24, + ACTIONS(493), 1, sym_comment, - ACTIONS(2824), 13, + ACTIONS(4737), 1, + anon_sym_as, + ACTIONS(4739), 1, + anon_sym_LPAREN, + ACTIONS(4747), 1, + anon_sym_LBRACK, + ACTIONS(4749), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4751), 1, + anon_sym_DASH_DASH, + ACTIONS(4753), 1, + anon_sym_QMARK, + ACTIONS(4755), 1, + anon_sym_BANG, + ACTIONS(4759), 1, + anon_sym_AMP_AMP, + ACTIONS(4761), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4763), 1, + anon_sym_or, + ACTIONS(4769), 1, + anon_sym_in, + ACTIONS(4771), 1, + anon_sym_BANGin, + ACTIONS(4777), 1, + anon_sym_is, + ACTIONS(4779), 1, + anon_sym_BANGis, + STATE(2489), 1, + sym_or_block, + STATE(2553), 1, + sym_argument_list, + STATE(4146), 1, + sym_type_parameters, + ACTIONS(4735), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4757), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4741), 4, 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(2822), 32, + anon_sym_CARET, + ACTIONS(4725), 6, + 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, + ACTIONS(4745), 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_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(4743), 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, + [48071] = 24, + ACTIONS(493), 1, + sym_comment, + ACTIONS(4737), 1, + anon_sym_as, + ACTIONS(4739), 1, + anon_sym_LPAREN, + ACTIONS(4747), 1, + anon_sym_LBRACK, + ACTIONS(4749), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4751), 1, + anon_sym_DASH_DASH, + ACTIONS(4753), 1, + anon_sym_QMARK, + ACTIONS(4755), 1, + anon_sym_BANG, + ACTIONS(4759), 1, anon_sym_AMP_AMP, + ACTIONS(4761), 1, anon_sym_PIPE_PIPE, + ACTIONS(4763), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(4769), 1, anon_sym_in, + ACTIONS(4771), 1, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48142] = 3, + ACTIONS(4777), 1, + anon_sym_is, + ACTIONS(4779), 1, + anon_sym_BANGis, + STATE(2489), 1, + sym_or_block, + STATE(2553), 1, + sym_argument_list, + STATE(4146), 1, + sym_type_parameters, + ACTIONS(4735), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4757), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4741), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4709), 6, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(4745), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4743), 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, + [48166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2820), 13, + ACTIONS(2910), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233487,7 +234078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2818), 32, + ACTIONS(2908), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233520,10 +234111,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48195] = 3, + [48219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2796), 13, + ACTIONS(3171), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233537,7 +234128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2794), 32, + ACTIONS(3169), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233570,152 +234161,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48248] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4745), 1, - anon_sym_AMP_AMP, - ACTIONS(4747), 1, - anon_sym_in, - ACTIONS(4749), 1, - anon_sym_BANGin, - ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, - anon_sym_DASH_DASH, - ACTIONS(4761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, - anon_sym_or, - ACTIONS(4769), 1, - anon_sym_is, - ACTIONS(4771), 1, - anon_sym_BANGis, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4731), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4717), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4735), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4733), 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, - [48343] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4745), 1, - anon_sym_AMP_AMP, - ACTIONS(4747), 1, - anon_sym_in, - ACTIONS(4749), 1, - anon_sym_BANGin, - ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, - anon_sym_DASH_DASH, - ACTIONS(4761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, - anon_sym_or, - ACTIONS(4769), 1, - anon_sym_is, - ACTIONS(4771), 1, - anon_sym_BANGis, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4731), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4719), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4735), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4733), 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, - [48438] = 3, + [48272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2927), 13, + ACTIONS(2914), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233729,7 +234178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2925), 32, + ACTIONS(2912), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233762,99 +234211,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48491] = 5, - ACTIONS(487), 1, + [48325] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2398), 1, - anon_sym_LBRACK, - ACTIONS(4775), 1, - anon_sym_else, - STATE(2549), 1, - sym_else_branch, - ACTIONS(2400), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(3199), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [48548] = 5, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2404), 1, - anon_sym_LBRACK, - ACTIONS(4775), 1, - anon_sym_else, - STATE(2553), 1, - sym_else_branch, - ACTIONS(2406), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(3197), 32, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_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, @@ -233866,10 +234259,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [48605] = 3, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [48378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2907), 13, + ACTIONS(3203), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233883,7 +234278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2905), 32, + ACTIONS(3201), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233916,10 +234311,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48658] = 3, + [48431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2808), 13, + ACTIONS(3179), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233933,7 +234328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2806), 32, + ACTIONS(3177), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233966,43 +234361,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48711] = 3, - ACTIONS(3), 1, + [48484] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(3113), 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(3111), 32, + ACTIONS(2692), 1, + anon_sym_LBRACK, + ACTIONS(2784), 1, + anon_sym_LBRACE, + ACTIONS(2694), 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_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_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, @@ -234014,12 +234411,11 @@ 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, - [48764] = 3, + sym_identifier, + [48539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 13, + ACTIONS(2794), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234033,7 +234429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2830), 32, + ACTIONS(2792), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234066,43 +234462,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48817] = 3, - ACTIONS(487), 1, + [48592] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2728), 1, - anon_sym_LBRACK, - ACTIONS(2730), 44, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(2822), 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(2820), 32, + anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_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, @@ -234110,16 +234506,16 @@ 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, - [48870] = 3, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [48645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2880), 13, + ACTIONS(3167), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234133,7 +234529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2878), 32, + ACTIONS(3165), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234166,10 +234562,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48923] = 3, + [48698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2860), 13, + ACTIONS(2934), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234183,7 +234579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2858), 32, + ACTIONS(2932), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234216,10 +234612,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48976] = 3, + [48751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2895), 13, + ACTIONS(3125), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234233,7 +234629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2893), 32, + ACTIONS(3123), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234266,12 +234662,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49029] = 4, + [48804] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2886), 1, + ACTIONS(3120), 1, anon_sym_DOT, - ACTIONS(2884), 12, + ACTIONS(3118), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -234284,7 +234680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 32, + ACTIONS(3116), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234317,10 +234713,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49084] = 3, + [48859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3129), 13, + ACTIONS(2870), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234334,7 +234730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3127), 32, + ACTIONS(2868), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234367,10 +234763,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49137] = 3, + [48912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3073), 13, + ACTIONS(3159), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234384,7 +234780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3071), 32, + ACTIONS(3157), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234417,10 +234813,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49190] = 3, + [48965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3109), 13, + ACTIONS(2826), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234434,7 +234830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3107), 32, + ACTIONS(2824), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234467,10 +234863,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49243] = 3, + [49018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3077), 13, + ACTIONS(2978), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234484,7 +234880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3075), 32, + ACTIONS(2976), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234517,10 +234913,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49296] = 3, + [49071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3097), 13, + ACTIONS(2862), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234534,7 +234930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3095), 32, + ACTIONS(2860), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234567,10 +234963,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49349] = 3, + [49124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 13, + ACTIONS(2834), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234584,7 +234980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2889), 32, + ACTIONS(2832), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234617,10 +235013,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49402] = 3, + [49177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 13, + ACTIONS(3155), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234634,7 +235030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3115), 32, + ACTIONS(3153), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234667,10 +235063,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49455] = 3, + [49230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3125), 13, + ACTIONS(3046), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234684,7 +235080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3123), 32, + ACTIONS(3044), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234717,10 +235113,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49508] = 3, + [49283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3049), 13, + ACTIONS(3018), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234734,7 +235130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3047), 32, + ACTIONS(3016), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234767,10 +235163,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49561] = 3, + [49336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3141), 13, + ACTIONS(3042), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234784,7 +235180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3139), 32, + ACTIONS(3040), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234817,10 +235213,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49614] = 3, + [49389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3145), 13, + ACTIONS(3038), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234834,7 +235230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3143), 32, + ACTIONS(3036), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234867,43 +235263,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49667] = 3, - ACTIONS(3), 1, + [49442] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(3057), 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(3055), 32, + ACTIONS(2784), 1, + anon_sym_LBRACE, + ACTIONS(2836), 1, + anon_sym_LBRACK, + ACTIONS(2838), 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_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_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, @@ -234915,12 +235313,11 @@ 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, - [49720] = 3, + sym_identifier, + [49497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3169), 13, + ACTIONS(3106), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234934,7 +235331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3167), 32, + ACTIONS(3104), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234967,11 +235364,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49773] = 3, + [49550] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3029), 13, + ACTIONS(2742), 1, anon_sym_DOT, + ACTIONS(2846), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -234984,7 +235382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3027), 32, + ACTIONS(2844), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235017,10 +235415,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49826] = 3, + [49605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3069), 13, + ACTIONS(3030), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235034,7 +235432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3067), 32, + ACTIONS(3028), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235067,10 +235465,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49879] = 3, + [49658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 13, + ACTIONS(2850), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235084,7 +235482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2983), 32, + ACTIONS(2848), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235117,81 +235515,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49932] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4745), 1, - anon_sym_AMP_AMP, - ACTIONS(4747), 1, - anon_sym_in, - ACTIONS(4749), 1, - anon_sym_BANGin, - ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, - anon_sym_DASH_DASH, - ACTIONS(4761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, - anon_sym_or, - ACTIONS(4769), 1, - anon_sym_is, - ACTIONS(4771), 1, - anon_sym_BANGis, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4731), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4735), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4777), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4733), 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, - [50027] = 3, + [49711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2981), 13, + ACTIONS(3002), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235205,7 +235532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2979), 32, + ACTIONS(3000), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235238,19 +235565,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50080] = 5, + [49764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2971), 1, - anon_sym_COLON, - ACTIONS(2969), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(2973), 12, + ACTIONS(2886), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235258,67 +235576,20 @@ static const uint16_t ts_small_parse_table[] = { 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(2976), 26, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - 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, - [50137] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2949), 1, anon_sym_COLON, - ACTIONS(2947), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(2951), 12, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2954), 26, + ACTIONS(2884), 32, + 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, @@ -235326,6 +235597,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, @@ -235342,10 +235614,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [50194] = 3, + anon_sym_DOT_DOT, + [49817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2931), 13, + ACTIONS(2882), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235359,7 +235632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2929), 32, + ACTIONS(2880), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235392,10 +235665,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50247] = 3, + [49870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2868), 13, + ACTIONS(3010), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235409,7 +235682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2866), 32, + ACTIONS(3008), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235442,10 +235715,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50300] = 3, + [49923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2852), 13, + ACTIONS(2874), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235459,7 +235732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2850), 32, + ACTIONS(2872), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235492,83 +235765,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50353] = 26, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4745), 1, - anon_sym_AMP_AMP, - ACTIONS(4747), 1, - anon_sym_in, - ACTIONS(4749), 1, - anon_sym_BANGin, - ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, - anon_sym_DASH_DASH, - ACTIONS(4761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, - anon_sym_or, - ACTIONS(4769), 1, - anon_sym_is, - ACTIONS(4771), 1, - anon_sym_BANGis, - ACTIONS(4779), 1, - anon_sym_COMMA, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(3550), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1770), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(4731), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4735), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4733), 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, - [50452] = 3, + [49976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 13, + ACTIONS(2890), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235582,7 +235782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2826), 32, + ACTIONS(2888), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235615,10 +235815,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50505] = 3, + [50029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2816), 13, + ACTIONS(3191), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235632,7 +235832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2814), 32, + ACTIONS(3189), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235665,60 +235865,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50558] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2698), 1, - anon_sym_LBRACK, - ACTIONS(2700), 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_RPAREN, - anon_sym_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_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [50611] = 3, + [50082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 13, + ACTIONS(2898), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235732,7 +235882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2802), 32, + ACTIONS(2896), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235765,43 +235915,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50664] = 3, - ACTIONS(3), 1, + [50135] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2800), 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(2798), 32, + ACTIONS(2734), 1, + anon_sym_LBRACK, + ACTIONS(2736), 44, + 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_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_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, @@ -235809,50 +235959,105 @@ 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, - [50717] = 4, - ACTIONS(3), 1, + [50188] = 5, + ACTIONS(493), 1, sym_comment, - ACTIONS(2774), 1, + ACTIONS(2396), 1, + anon_sym_LBRACK, + ACTIONS(4783), 1, + anon_sym_else, + STATE(2568), 1, + sym_else_branch, + ACTIONS(2398), 42, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(3029), 12, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3027), 32, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [50245] = 5, + ACTIONS(493), 1, + sym_comment, + ACTIONS(2390), 1, + anon_sym_LBRACK, + ACTIONS(4783), 1, + anon_sym_else, + STATE(2570), 1, + sym_else_branch, + ACTIONS(2392), 42, + 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_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_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, @@ -235864,12 +236069,10 @@ 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, - [50772] = 3, + [50302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3085), 13, + ACTIONS(2842), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235883,7 +236086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3083), 32, + ACTIONS(2840), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235916,45 +236119,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50825] = 4, - ACTIONS(487), 1, + [50355] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2766), 1, - anon_sym_LBRACE, - ACTIONS(2965), 1, - anon_sym_LBRACK, - ACTIONS(2967), 43, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(2902), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2900), 32, + 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_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -235966,11 +236167,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - [50880] = 3, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [50408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2903), 13, + ACTIONS(2930), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235984,7 +236186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2901), 32, + ACTIONS(2928), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236017,10 +236219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50933] = 3, + [50461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2915), 13, + ACTIONS(3058), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236034,7 +236236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2913), 32, + ACTIONS(3056), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236067,10 +236269,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50986] = 3, + [50514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 13, + ACTIONS(3066), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236084,7 +236286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2999), 32, + ACTIONS(3064), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236117,10 +236319,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51039] = 3, + [50567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 13, + ACTIONS(3074), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236134,7 +236336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3195), 32, + ACTIONS(3072), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236167,10 +236369,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51092] = 3, + [50620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 13, + ACTIONS(2790), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236184,7 +236386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2917), 32, + ACTIONS(2788), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236217,10 +236419,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51145] = 3, + [50673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2935), 13, + ACTIONS(3090), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236234,7 +236436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2933), 32, + ACTIONS(3088), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236267,10 +236469,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51198] = 3, + [50726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 13, + ACTIONS(3098), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236284,7 +236486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2937), 32, + ACTIONS(3096), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236317,10 +236519,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51251] = 3, + [50779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2993), 13, + ACTIONS(3110), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236334,7 +236536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2991), 32, + ACTIONS(3108), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236367,10 +236569,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51304] = 3, + [50832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 13, + ACTIONS(3137), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236384,7 +236586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3019), 32, + ACTIONS(3135), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236417,10 +236619,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51357] = 3, + [50885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 13, + ACTIONS(2894), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236434,7 +236636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3007), 32, + ACTIONS(2892), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236467,10 +236669,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51410] = 3, + [50938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3025), 13, + ACTIONS(2958), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236484,7 +236686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3023), 32, + ACTIONS(2956), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236517,10 +236719,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51463] = 3, + [50991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 13, + ACTIONS(2830), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236534,7 +236736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3175), 32, + ACTIONS(2828), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236567,10 +236769,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51516] = 3, + [51044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3193), 13, + ACTIONS(2818), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236584,7 +236786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3191), 32, + ACTIONS(2816), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236617,10 +236819,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51569] = 3, + [51097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3157), 13, + ACTIONS(3151), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236634,7 +236836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3155), 32, + ACTIONS(3149), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236667,14 +236869,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51622] = 4, - ACTIONS(487), 1, + [51150] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(2777), 1, + ACTIONS(2745), 1, anon_sym_LBRACK, - ACTIONS(3029), 1, + ACTIONS(2846), 1, anon_sym_LBRACE, - ACTIONS(2772), 43, + ACTIONS(2740), 43, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -236718,10 +236920,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [51677] = 3, + [51205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 13, + ACTIONS(3163), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236735,7 +236937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3079), 32, + ACTIONS(3161), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236768,10 +236970,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51730] = 3, + [51258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2766), 13, + ACTIONS(3195), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236785,7 +236987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2768), 32, + ACTIONS(3193), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236818,10 +237020,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51783] = 3, + [51311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2848), 13, + ACTIONS(3183), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236835,7 +237037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2846), 32, + ACTIONS(3181), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236868,10 +237070,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51836] = 3, + [51364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3017), 13, + ACTIONS(2878), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236885,7 +237087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3015), 32, + ACTIONS(2876), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236918,10 +237120,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51889] = 3, + [51417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 13, + ACTIONS(2802), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236935,7 +237137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2957), 32, + ACTIONS(2800), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236968,10 +237170,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51942] = 3, + [51470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 13, + ACTIONS(3175), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236985,7 +237187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3011), 32, + ACTIONS(3173), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237018,10 +237220,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51995] = 3, + [51523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3033), 13, + ACTIONS(3078), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237035,7 +237237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3031), 32, + ACTIONS(3076), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237068,10 +237270,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52048] = 3, + [51576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2772), 13, + ACTIONS(2798), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237085,7 +237287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2770), 32, + ACTIONS(2796), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237118,10 +237320,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52101] = 3, + [51629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 13, + ACTIONS(2866), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237135,7 +237337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2921), 32, + ACTIONS(2864), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237168,10 +237370,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52154] = 3, + [51682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 13, + ACTIONS(2926), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237185,7 +237387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3035), 32, + ACTIONS(2924), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237218,10 +237420,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52207] = 3, + [51735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3045), 13, + ACTIONS(2906), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237235,7 +237437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3043), 32, + ACTIONS(2904), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237268,10 +237470,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52260] = 3, + [51788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 13, + ACTIONS(2740), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237285,7 +237487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3051), 32, + ACTIONS(2738), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237318,10 +237520,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52313] = 3, + [51841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3065), 13, + ACTIONS(2918), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237335,7 +237537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3063), 32, + ACTIONS(2916), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237368,10 +237570,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52366] = 3, + [51894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3149), 13, + ACTIONS(2938), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237385,7 +237587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3147), 32, + ACTIONS(2936), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237418,10 +237620,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52419] = 3, + [51947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3181), 13, + ACTIONS(2942), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237435,7 +237637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3179), 32, + ACTIONS(2940), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237468,10 +237670,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52472] = 3, + [52000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3185), 13, + ACTIONS(3086), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237485,7 +237687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3183), 32, + ACTIONS(3084), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237518,10 +237720,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52525] = 3, + [52053] = 24, + ACTIONS(493), 1, + sym_comment, + ACTIONS(4737), 1, + anon_sym_as, + ACTIONS(4739), 1, + anon_sym_LPAREN, + ACTIONS(4747), 1, + anon_sym_LBRACK, + ACTIONS(4749), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4751), 1, + anon_sym_DASH_DASH, + ACTIONS(4753), 1, + anon_sym_QMARK, + ACTIONS(4755), 1, + anon_sym_BANG, + ACTIONS(4759), 1, + anon_sym_AMP_AMP, + ACTIONS(4761), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4763), 1, + anon_sym_or, + ACTIONS(4769), 1, + anon_sym_in, + ACTIONS(4771), 1, + anon_sym_BANGin, + ACTIONS(4777), 1, + anon_sym_is, + ACTIONS(4779), 1, + anon_sym_BANGis, + STATE(2489), 1, + sym_or_block, + STATE(2553), 1, + sym_argument_list, + STATE(4146), 1, + sym_type_parameters, + ACTIONS(4735), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4757), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4741), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4745), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4785), 6, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(4743), 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, + [52148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3061), 13, + ACTIONS(3050), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237535,7 +237808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3059), 32, + ACTIONS(3048), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237568,45 +237841,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52578] = 4, - ACTIONS(487), 1, + [52201] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2698), 1, - anon_sym_LBRACK, - ACTIONS(2766), 1, - anon_sym_LBRACE, - ACTIONS(2700), 43, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(2962), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2960), 32, + 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_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -237618,11 +237889,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - [52633] = 3, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [52254] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 13, + ACTIONS(4787), 1, + anon_sym_BANG, + ACTIONS(3141), 12, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237632,11 +237906,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2838), 32, + ACTIONS(3139), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237669,10 +237942,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52686] = 3, + [52309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3189), 13, + ACTIONS(2946), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237686,7 +237959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3187), 32, + ACTIONS(2944), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237719,10 +237992,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52739] = 3, + [52362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2844), 13, + ACTIONS(3187), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237736,7 +238009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2842), 32, + ACTIONS(3185), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237769,10 +238042,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52792] = 3, + [52415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 13, + ACTIONS(2950), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237786,7 +238059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2782), 32, + ACTIONS(2948), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237819,10 +238092,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52845] = 3, + [52468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 13, + ACTIONS(2784), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237836,7 +238109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2854), 32, + ACTIONS(2786), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237869,10 +238142,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52898] = 3, + [52521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2899), 13, + ACTIONS(2806), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237886,7 +238159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2897), 32, + ACTIONS(2804), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237919,10 +238192,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52951] = 3, + [52574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2876), 13, + ACTIONS(3022), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237936,7 +238209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2874), 32, + ACTIONS(3020), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237969,10 +238242,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53004] = 3, + [52627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 13, + ACTIONS(2966), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237986,7 +238259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2870), 32, + ACTIONS(2964), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238019,10 +238292,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53057] = 3, + [52680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2864), 13, + ACTIONS(3014), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238036,7 +238309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2862), 32, + ACTIONS(3012), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238069,10 +238342,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53110] = 3, + [52733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3153), 13, + ACTIONS(2846), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238086,7 +238359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3151), 32, + ACTIONS(2844), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238119,10 +238392,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53163] = 3, + [52786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2836), 13, + ACTIONS(3082), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238136,7 +238409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2834), 32, + ACTIONS(3080), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238169,10 +238442,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53216] = 3, + [52839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2792), 13, + ACTIONS(3129), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238186,7 +238459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2790), 32, + ACTIONS(3127), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238219,10 +238492,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53269] = 3, + [52892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3093), 13, + ACTIONS(2954), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238236,7 +238509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3091), 32, + ACTIONS(2952), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238269,10 +238542,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53322] = 3, + [52945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 13, + ACTIONS(2764), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238286,7 +238559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3087), 32, + ACTIONS(2762), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238319,10 +238592,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53375] = 3, + [52998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2788), 13, + ACTIONS(3026), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238336,7 +238609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2786), 32, + ACTIONS(3024), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238369,10 +238642,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53428] = 3, + [53051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3005), 13, + ACTIONS(3034), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238386,7 +238659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3003), 32, + ACTIONS(3032), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238419,10 +238692,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53481] = 3, + [53104] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2997), 13, + ACTIONS(2992), 1, + anon_sym_COLON, + ACTIONS(2990), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(2994), 12, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238430,20 +238712,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2995), 32, - anon_sym_SEMI, + ACTIONS(2997), 26, 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, @@ -238451,7 +238728,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -238468,11 +238744,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [53534] = 3, + [53161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 13, + ACTIONS(2974), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238486,7 +238761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2702), 32, + ACTIONS(2972), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238519,12 +238794,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53587] = 4, + [53214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4781), 1, - anon_sym_BANG, - ACTIONS(2943), 12, + ACTIONS(2970), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238534,10 +238807,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON, anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2941), 32, + ACTIONS(2968), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238570,10 +238844,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53642] = 3, + [53267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2911), 13, + ACTIONS(3006), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238587,7 +238861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2909), 32, + ACTIONS(3004), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238620,10 +238894,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53695] = 3, + [53320] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2963), 13, + ACTIONS(2982), 1, + anon_sym_COLON, + ACTIONS(2980), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(2984), 12, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238631,20 +238914,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2961), 32, - anon_sym_SEMI, + ACTIONS(2987), 26, 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, @@ -238652,7 +238930,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -238669,11 +238946,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [53748] = 3, + [53377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2989), 13, + ACTIONS(3054), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238687,7 +238963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2987), 32, + ACTIONS(3052), 32, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238720,91 +238996,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53801] = 32, - ACTIONS(3), 1, + [53430] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3227), 1, - anon_sym_COLON_EQ, - ACTIONS(4468), 1, - anon_sym_LBRACE, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, + ACTIONS(2692), 1, anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(2694), 44, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - ACTIONS(4785), 1, anon_sym_COMMA, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, - anon_sym_AMP_AMP, - ACTIONS(4805), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4813), 1, - anon_sym_in, - ACTIONS(4815), 1, - anon_sym_BANGin, - STATE(1631), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(3935), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4787), 3, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4791), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4795), 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(4789), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [53911] = 4, + 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, + [53483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2768), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2967), 12, + ACTIONS(3062), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238812,14 +239057,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2965), 30, + ACTIONS(3060), 32, anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -238831,7 +239079,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, @@ -238847,92 +239094,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_DOT_DOT, - [53965] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3227), 1, anon_sym_COLON_EQ, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4785), 1, - anon_sym_COMMA, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, - anon_sym_AMP_AMP, - ACTIONS(4805), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4813), 1, - anon_sym_in, - ACTIONS(4815), 1, - anon_sym_BANGin, - ACTIONS(4817), 1, - anon_sym_LBRACE, - STATE(390), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(3935), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4787), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4795), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4789), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [54075] = 4, + anon_sym_DOT_DOT, + [53536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2768), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2700), 12, + ACTIONS(3070), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238940,14 +239107,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2698), 30, + ACTIONS(3068), 32, anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -238959,7 +239129,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, @@ -238975,740 +239144,449 @@ 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, - [54129] = 25, - ACTIONS(487), 1, + [53589] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4745), 1, - anon_sym_AMP_AMP, - ACTIONS(4747), 1, - anon_sym_in, - ACTIONS(4749), 1, - anon_sym_BANGin, - ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, - anon_sym_DASH_DASH, - ACTIONS(4761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, - anon_sym_or, - ACTIONS(4769), 1, - anon_sym_is, - ACTIONS(4771), 1, - anon_sym_BANGis, - ACTIONS(4819), 1, - anon_sym_COMMA, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, + ACTIONS(3094), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(3271), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(4731), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4735), 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(4733), 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, - [54225] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4683), 1, anon_sym_BANG, - ACTIONS(4685), 1, anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4823), 3, - anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2076), 5, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 20, + ACTIONS(3092), 32, 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_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_DOT_DOT, - [54303] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4827), 1, - anon_sym_CARET, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(2076), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2074), 19, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_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, - [54385] = 21, + [53642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4675), 1, + ACTIONS(3102), 13, anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 13, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_DOT_DOT, - [54473] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, anon_sym_QMARK, - ACTIONS(4683), 1, anon_sym_BANG, - ACTIONS(4685), 1, anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 12, + ACTIONS(3100), 32, anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - 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, - [54563] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4827), 1, - anon_sym_CARET, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(2108), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4821), 5, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2106), 19, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, + anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54645] = 18, + [53695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4675), 1, + ACTIONS(3114), 13, anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4827), 1, - anon_sym_CARET, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(2112), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2110), 19, + 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(3112), 32, 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_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, + anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54727] = 32, + [53748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3227), 1, - anon_sym_COLON_EQ, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, + ACTIONS(3133), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4683), 1, anon_sym_BANG, - ACTIONS(4685), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3131), 32, + anon_sym_SEMI, anon_sym_as, - ACTIONS(4785), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(4797), 1, + 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, - ACTIONS(4799), 1, anon_sym_DASH_DASH, - ACTIONS(4801), 1, anon_sym_CARET, - ACTIONS(4803), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(4805), 1, anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, anon_sym_or, - ACTIONS(4809), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(4811), 1, anon_sym_BANGis, - ACTIONS(4813), 1, anon_sym_in, - ACTIONS(4815), 1, anon_sym_BANGin, - ACTIONS(4839), 1, - anon_sym_LBRACE, - STATE(1283), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [53801] = 16, + ACTIONS(493), 1, + sym_comment, + ACTIONS(4739), 1, + anon_sym_LPAREN, + ACTIONS(4747), 1, + anon_sym_LBRACK, + ACTIONS(4753), 1, + anon_sym_QMARK, + ACTIONS(4755), 1, + anon_sym_BANG, + ACTIONS(4795), 1, + anon_sym_in, + ACTIONS(4797), 1, + anon_sym_BANGin, + STATE(2489), 1, sym_or_block, - STATE(3935), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, + STATE(2553), 1, + sym_argument_list, + STATE(4146), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4735), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4787), 3, + ACTIONS(4757), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4789), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4795), 4, + anon_sym_CARET, + ACTIONS(4793), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4789), 5, + ACTIONS(4791), 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, - [54837] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3227), 1, - anon_sym_COLON_EQ, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(2162), 13, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_as, - ACTIONS(4785), 1, - anon_sym_COMMA, - ACTIONS(4797), 1, + anon_sym_RBRACE, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, anon_sym_DASH_DASH, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, anon_sym_AMP_AMP, - ACTIONS(4805), 1, anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, anon_sym_or, - ACTIONS(4809), 1, anon_sym_is, - ACTIONS(4811), 1, anon_sym_BANGis, - ACTIONS(4813), 1, + [53879] = 17, + ACTIONS(493), 1, + sym_comment, + ACTIONS(4739), 1, + anon_sym_LPAREN, + ACTIONS(4747), 1, + anon_sym_LBRACK, + ACTIONS(4753), 1, + anon_sym_QMARK, + ACTIONS(4755), 1, + anon_sym_BANG, + ACTIONS(4795), 1, anon_sym_in, - ACTIONS(4815), 1, + ACTIONS(4797), 1, anon_sym_BANGin, - ACTIONS(4841), 1, - anon_sym_LBRACE, - STATE(987), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(4799), 1, + anon_sym_AMP_AMP, + STATE(2489), 1, sym_or_block, - STATE(3935), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, + STATE(2553), 1, + sym_argument_list, + STATE(4146), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4735), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4787), 3, + ACTIONS(4757), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4789), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4795), 4, + anon_sym_CARET, + ACTIONS(4793), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4789), 5, + ACTIONS(4791), 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, - [54947] = 32, + ACTIONS(2162), 12, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + [53959] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3227), 1, + ACTIONS(3233), 1, anon_sym_COLON_EQ, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4785), 1, + ACTIONS(4803), 1, + anon_sym_LBRACE, + ACTIONS(4805), 1, anon_sym_COMMA, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4801), 1, + ACTIONS(4821), 1, anon_sym_CARET, - ACTIONS(4803), 1, + ACTIONS(4823), 1, anon_sym_AMP_AMP, - ACTIONS(4805), 1, + ACTIONS(4825), 1, anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4813), 1, + ACTIONS(4833), 1, anon_sym_in, - ACTIONS(4815), 1, + ACTIONS(4835), 1, anon_sym_BANGin, - ACTIONS(4843), 1, - anon_sym_LBRACE, - STATE(1851), 1, + STATE(992), 1, sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(3935), 1, + STATE(2378), 1, + sym_argument_list, + STATE(3952), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4793), 2, + ACTIONS(4813), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4787), 3, + ACTIONS(4807), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4791), 3, + ACTIONS(4811), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4795), 4, + ACTIONS(4815), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4789), 5, + ACTIONS(4809), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [55057] = 4, - ACTIONS(487), 1, + [54069] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2738), 1, - anon_sym_LBRACK, - ACTIONS(4845), 1, - anon_sym_DOLLARelse, - ACTIONS(2740), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, + ACTIONS(2786), 2, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2838), 12, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2836), 30, + anon_sym_SEMI, + anon_sym_as, + 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_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, @@ -239720,45 +239598,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55111] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + [54123] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(2777), 2, - anon_sym_RPAREN, + ACTIONS(2692), 1, anon_sym_LBRACK, - ACTIONS(3027), 2, + ACTIONS(2784), 1, anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2772), 12, + ACTIONS(2694), 42, + 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_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2770), 28, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -239770,15 +239649,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_DOT_DOT, - [55167] = 4, - ACTIONS(487), 1, + [54177] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(2698), 1, + ACTIONS(2614), 1, anon_sym_LBRACK, - ACTIONS(2766), 1, - anon_sym_LBRACE, - ACTIONS(2700), 42, + ACTIONS(4837), 1, + anon_sym_DOLLARelse, + ACTIONS(2616), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -239821,362 +239699,468 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55221] = 32, + [54231] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3227), 1, + ACTIONS(3233), 1, anon_sym_COLON_EQ, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4785), 1, + ACTIONS(4805), 1, anon_sym_COMMA, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4801), 1, + ACTIONS(4821), 1, anon_sym_CARET, - ACTIONS(4803), 1, + ACTIONS(4823), 1, anon_sym_AMP_AMP, - ACTIONS(4805), 1, + ACTIONS(4825), 1, anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4813), 1, + ACTIONS(4833), 1, anon_sym_in, - ACTIONS(4815), 1, + ACTIONS(4835), 1, anon_sym_BANGin, - ACTIONS(4847), 1, + ACTIONS(4839), 1, anon_sym_LBRACE, - STATE(2331), 1, + STATE(1838), 1, sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(3935), 1, + STATE(2378), 1, + sym_argument_list, + STATE(3952), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4793), 2, + ACTIONS(4813), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4787), 3, + ACTIONS(4807), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4791), 3, + ACTIONS(4811), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4795), 4, + ACTIONS(4815), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4789), 5, + ACTIONS(4809), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [55331] = 29, + [54341] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, + ACTIONS(2745), 2, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(4681), 1, + ACTIONS(2844), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2740), 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, - ACTIONS(4683), 1, anon_sym_BANG, - ACTIONS(4685), 1, anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2738), 28, + anon_sym_SEMI, anon_sym_as, - ACTIONS(4797), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(4809), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(4811), 1, anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, anon_sym_in, - ACTIONS(4835), 1, anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + anon_sym_DOT_DOT, + [54397] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4689), 1, + anon_sym_QMARK_DOT, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4847), 1, + anon_sym_CARET, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4829), 2, + ACTIONS(2144), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4831), 4, + ACTIONS(4845), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4843), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2142), 19, + anon_sym_SEMI, + anon_sym_as, + anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2208), 5, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_DOT_DOT, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [55435] = 29, + [54479] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, ACTIONS(4677), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(4687), 1, - anon_sym_QMARK_DOT, + anon_sym_LBRACK2, ACTIONS(4689), 1, + anon_sym_QMARK_DOT, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4847), 1, + anon_sym_CARET, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(2156), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4841), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4845), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4843), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2154), 19, + anon_sym_SEMI, anon_sym_as, - ACTIONS(4797), 1, + anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(4809), 1, anon_sym_is, - ACTIONS(4811), 1, anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, anon_sym_in, - ACTIONS(4835), 1, anon_sym_BANGin, - ACTIONS(4837), 1, + anon_sym_DOT_DOT, + [54561] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4689), 1, + anon_sym_QMARK_DOT, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4847), 1, + anon_sym_CARET, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(4855), 1, + anon_sym_in, + ACTIONS(4857), 1, + anon_sym_BANGin, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4829), 2, + ACTIONS(4849), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4831), 4, + ACTIONS(4845), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4851), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2218), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - ACTIONS(4821), 5, + ACTIONS(4843), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [55539] = 32, + ACTIONS(2160), 12, + anon_sym_SEMI, + anon_sym_as, + anon_sym_RBRACE, + 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, + [54651] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3227), 1, + ACTIONS(3233), 1, anon_sym_COLON_EQ, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4785), 1, + ACTIONS(4805), 1, anon_sym_COMMA, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4801), 1, + ACTIONS(4821), 1, anon_sym_CARET, - ACTIONS(4803), 1, + ACTIONS(4823), 1, anon_sym_AMP_AMP, - ACTIONS(4805), 1, + ACTIONS(4825), 1, anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4813), 1, + ACTIONS(4833), 1, anon_sym_in, - ACTIONS(4815), 1, + ACTIONS(4835), 1, anon_sym_BANGin, - ACTIONS(4851), 1, + ACTIONS(4859), 1, anon_sym_LBRACE, - STATE(1145), 1, + STATE(2298), 1, sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(3935), 1, + STATE(2378), 1, + sym_argument_list, + STATE(3952), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4793), 2, + ACTIONS(4813), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4787), 3, + ACTIONS(4807), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4791), 3, + ACTIONS(4811), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4795), 4, + ACTIONS(4815), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4789), 5, + ACTIONS(4809), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [55649] = 13, - ACTIONS(487), 1, + [54761] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(4729), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(4679), 1, anon_sym_LPAREN, - ACTIONS(4737), 1, + ACTIONS(4681), 1, anon_sym_LBRACK, - ACTIONS(4739), 1, + ACTIONS(4683), 1, anon_sym_QMARK, - ACTIONS(4741), 1, + ACTIONS(4685), 1, anon_sym_BANG, - STATE(2520), 1, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4689), 1, + anon_sym_QMARK_DOT, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4847), 1, + anon_sym_CARET, + ACTIONS(4855), 1, + anon_sym_in, + ACTIONS(4857), 1, + anon_sym_BANGin, + STATE(2325), 1, sym_or_block, - STATE(2523), 1, + STATE(2378), 1, sym_argument_list, - STATE(4222), 1, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4853), 4, + ACTIONS(4849), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4855), 8, - anon_sym_STAR, + ACTIONS(4845), 3, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(4851), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4843), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2112), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2160), 13, 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_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -240184,58 +240168,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [55721] = 13, - ACTIONS(487), 1, + anon_sym_DOT_DOT, + [54849] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(4729), 1, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(4679), 1, anon_sym_LPAREN, - ACTIONS(4737), 1, + ACTIONS(4681), 1, anon_sym_LBRACK, - ACTIONS(4739), 1, + ACTIONS(4683), 1, anon_sym_QMARK, - ACTIONS(4741), 1, + ACTIONS(4685), 1, anon_sym_BANG, - STATE(2520), 1, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4689), 1, + anon_sym_QMARK_DOT, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4847), 1, + anon_sym_CARET, + STATE(2325), 1, sym_or_block, - STATE(2523), 1, + STATE(2378), 1, sym_argument_list, - STATE(4222), 1, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4853), 4, + ACTIONS(2162), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4855), 8, - anon_sym_STAR, + ACTIONS(4845), 3, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(4843), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2108), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2160), 19, 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_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -240245,48 +240232,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55793] = 17, - ACTIONS(487), 1, + anon_sym_DOT_DOT, + [54931] = 24, + ACTIONS(493), 1, sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, ACTIONS(4737), 1, - anon_sym_LBRACK, + anon_sym_as, ACTIONS(4739), 1, + anon_sym_LPAREN, + ACTIONS(4747), 1, + anon_sym_LBRACK, + ACTIONS(4749), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4751), 1, + anon_sym_DASH_DASH, + ACTIONS(4753), 1, anon_sym_QMARK, - ACTIONS(4741), 1, + ACTIONS(4755), 1, anon_sym_BANG, - ACTIONS(4859), 1, - anon_sym_AMP_AMP, - ACTIONS(4861), 1, + ACTIONS(4763), 1, + anon_sym_or, + ACTIONS(4777), 1, + anon_sym_is, + ACTIONS(4779), 1, + anon_sym_BANGis, + ACTIONS(4795), 1, anon_sym_in, - ACTIONS(4863), 1, + ACTIONS(4797), 1, anon_sym_BANGin, - STATE(2520), 1, + ACTIONS(4799), 1, + anon_sym_AMP_AMP, + ACTIONS(4861), 1, + anon_sym_PIPE_PIPE, + STATE(2489), 1, sym_or_block, - STATE(2523), 1, + STATE(2553), 1, sym_argument_list, - STATE(4222), 1, + STATE(4146), 1, sym_type_parameters, - ACTIONS(4727), 2, + ACTIONS(4735), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4743), 2, + ACTIONS(4757), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4853), 4, + ACTIONS(4789), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4857), 6, + ACTIONS(2234), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_RBRACE, + ACTIONS(4793), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4855), 8, + ACTIONS(4791), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -240295,237 +240303,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2076), 12, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [55873] = 32, - ACTIONS(3), 1, + [55025] = 24, + ACTIONS(493), 1, sym_comment, - ACTIONS(3227), 1, - anon_sym_COLON_EQ, - ACTIONS(4677), 1, + ACTIONS(4737), 1, + anon_sym_as, + ACTIONS(4739), 1, anon_sym_LPAREN, - ACTIONS(4679), 1, + ACTIONS(4747), 1, anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4785), 1, - anon_sym_COMMA, - ACTIONS(4797), 1, + ACTIONS(4749), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4751), 1, anon_sym_DASH_DASH, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, + ACTIONS(4753), 1, + anon_sym_QMARK, + ACTIONS(4755), 1, + anon_sym_BANG, + ACTIONS(4759), 1, anon_sym_AMP_AMP, - ACTIONS(4805), 1, + ACTIONS(4761), 1, anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, + ACTIONS(4763), 1, anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4813), 1, + ACTIONS(4769), 1, anon_sym_in, - ACTIONS(4815), 1, + ACTIONS(4771), 1, anon_sym_BANGin, - ACTIONS(4865), 1, - anon_sym_LBRACE, - STATE(1908), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(4777), 1, + anon_sym_is, + ACTIONS(4779), 1, + anon_sym_BANGis, + STATE(2489), 1, sym_or_block, - STATE(3935), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, + STATE(2553), 1, + sym_argument_list, + STATE(4146), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4735), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4787), 3, + ACTIONS(4757), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4741), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4795), 4, + anon_sym_CARET, + ACTIONS(1716), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4745), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4789), 5, + ACTIONS(4743), 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, - [55983] = 32, + [55119] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3227), 1, - anon_sym_COLON_EQ, ACTIONS(4677), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, ACTIONS(4689), 1, + anon_sym_QMARK_DOT, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4845), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2162), 5, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4843), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2160), 20, + anon_sym_SEMI, anon_sym_as, - ACTIONS(4785), 1, - anon_sym_COMMA, - ACTIONS(4797), 1, + anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, anon_sym_DASH_DASH, - ACTIONS(4801), 1, anon_sym_CARET, - ACTIONS(4803), 1, anon_sym_AMP_AMP, - ACTIONS(4805), 1, anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, anon_sym_or, - ACTIONS(4809), 1, anon_sym_is, - ACTIONS(4811), 1, anon_sym_BANGis, - ACTIONS(4813), 1, anon_sym_in, - ACTIONS(4815), 1, anon_sym_BANGin, - ACTIONS(4867), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(2733), 1, - sym_block, - STATE(3935), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, + anon_sym_DOT_DOT, + [55197] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(2756), 1, + anon_sym_LBRACK, + ACTIONS(4863), 1, + anon_sym_DOLLARelse, + ACTIONS(2758), 42, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4787), 3, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4791), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4795), 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(4789), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [56093] = 24, - ACTIONS(487), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [55251] = 24, + ACTIONS(493), 1, sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4755), 1, anon_sym_as, - ACTIONS(4757), 1, + ACTIONS(4739), 1, + anon_sym_LPAREN, + ACTIONS(4747), 1, + anon_sym_LBRACK, + ACTIONS(4749), 1, anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, + ACTIONS(4751), 1, anon_sym_DASH_DASH, + ACTIONS(4753), 1, + anon_sym_QMARK, + ACTIONS(4755), 1, + anon_sym_BANG, ACTIONS(4763), 1, anon_sym_or, - ACTIONS(4769), 1, + ACTIONS(4777), 1, anon_sym_is, - ACTIONS(4771), 1, + ACTIONS(4779), 1, anon_sym_BANGis, - ACTIONS(4859), 1, - anon_sym_AMP_AMP, - ACTIONS(4861), 1, + ACTIONS(4795), 1, anon_sym_in, - ACTIONS(4863), 1, + ACTIONS(4797), 1, anon_sym_BANGin, - ACTIONS(4869), 1, + ACTIONS(4799), 1, + anon_sym_AMP_AMP, + ACTIONS(4861), 1, anon_sym_PIPE_PIPE, - STATE(2520), 1, + STATE(2489), 1, sym_or_block, - STATE(2523), 1, + STATE(2553), 1, sym_argument_list, - STATE(4222), 1, + STATE(4146), 1, sym_type_parameters, - ACTIONS(4727), 2, + ACTIONS(4735), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4743), 2, + ACTIONS(4757), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4853), 4, + ACTIONS(4789), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(2220), 5, + ACTIONS(2052), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4857), 6, + ACTIONS(4793), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4855), 8, + ACTIONS(4791), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -240534,76 +240555,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [56187] = 16, - ACTIONS(487), 1, + [55345] = 32, + ACTIONS(3), 1, sym_comment, - ACTIONS(4729), 1, + ACTIONS(3233), 1, + anon_sym_COLON_EQ, + ACTIONS(4679), 1, anon_sym_LPAREN, - ACTIONS(4737), 1, + ACTIONS(4681), 1, anon_sym_LBRACK, - ACTIONS(4739), 1, + ACTIONS(4683), 1, anon_sym_QMARK, - ACTIONS(4741), 1, + ACTIONS(4685), 1, anon_sym_BANG, - ACTIONS(4861), 1, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4805), 1, + anon_sym_COMMA, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4821), 1, + anon_sym_CARET, + ACTIONS(4823), 1, + anon_sym_AMP_AMP, + ACTIONS(4825), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(4833), 1, anon_sym_in, - ACTIONS(4863), 1, + ACTIONS(4835), 1, anon_sym_BANGin, - STATE(2520), 1, + ACTIONS(4865), 1, + anon_sym_LBRACE, + STATE(1146), 1, + sym_block, + STATE(2325), 1, sym_or_block, - STATE(2523), 1, + STATE(2378), 1, sym_argument_list, - STATE(4222), 1, + STATE(3952), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4727), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4853), 4, + ACTIONS(4813), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4807), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4857), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4811), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4815), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4855), 8, + ACTIONS(4809), 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(2076), 13, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [56265] = 4, - ACTIONS(487), 1, + [55455] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(2762), 1, anon_sym_LBRACK, - STATE(2519), 1, + STATE(2479), 1, sym_type_parameters, - ACTIONS(2704), 42, + ACTIONS(2764), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -240646,641 +240683,730 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [56319] = 13, - ACTIONS(487), 1, + [55509] = 25, + ACTIONS(493), 1, sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, ACTIONS(4737), 1, - anon_sym_LBRACK, + anon_sym_as, ACTIONS(4739), 1, + anon_sym_LPAREN, + ACTIONS(4747), 1, + anon_sym_LBRACK, + ACTIONS(4749), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4751), 1, + anon_sym_DASH_DASH, + ACTIONS(4753), 1, + anon_sym_QMARK, + ACTIONS(4755), 1, + anon_sym_BANG, + ACTIONS(4759), 1, + anon_sym_AMP_AMP, + ACTIONS(4761), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4763), 1, + anon_sym_or, + ACTIONS(4769), 1, + anon_sym_in, + ACTIONS(4771), 1, + anon_sym_BANGin, + ACTIONS(4777), 1, + anon_sym_is, + ACTIONS(4779), 1, + anon_sym_BANGis, + ACTIONS(4867), 1, + anon_sym_COMMA, + STATE(2489), 1, + sym_or_block, + STATE(2553), 1, + sym_argument_list, + STATE(4146), 1, + sym_type_parameters, + ACTIONS(4735), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4757), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(3313), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(4741), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4745), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4743), 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, + [55605] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3233), 1, + anon_sym_COLON_EQ, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, anon_sym_QMARK, - ACTIONS(4741), 1, + ACTIONS(4685), 1, anon_sym_BANG, - STATE(2520), 1, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4805), 1, + anon_sym_COMMA, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4821), 1, + anon_sym_CARET, + ACTIONS(4823), 1, + anon_sym_AMP_AMP, + ACTIONS(4825), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(4833), 1, + anon_sym_in, + ACTIONS(4835), 1, + anon_sym_BANGin, + ACTIONS(4869), 1, + anon_sym_LBRACE, + STATE(2325), 1, sym_or_block, - STATE(2523), 1, + STATE(2378), 1, sym_argument_list, - STATE(4222), 1, + STATE(2785), 1, + sym_block, + STATE(3952), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4727), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4853), 4, + ACTIONS(4813), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4807), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4855), 8, - anon_sym_STAR, + ACTIONS(4811), 3, 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(2076), 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, + ACTIONS(4815), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [56391] = 32, + ACTIONS(4809), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [55715] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3227), 1, + ACTIONS(3233), 1, anon_sym_COLON_EQ, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4785), 1, + ACTIONS(4805), 1, anon_sym_COMMA, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4801), 1, + ACTIONS(4821), 1, anon_sym_CARET, - ACTIONS(4803), 1, + ACTIONS(4823), 1, anon_sym_AMP_AMP, - ACTIONS(4805), 1, + ACTIONS(4825), 1, anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4813), 1, + ACTIONS(4833), 1, anon_sym_in, - ACTIONS(4815), 1, + ACTIONS(4835), 1, anon_sym_BANGin, ACTIONS(4871), 1, anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(2613), 1, + STATE(2152), 1, sym_block, - STATE(3935), 1, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(3952), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4793), 2, + ACTIONS(4813), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4787), 3, + ACTIONS(4807), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4791), 3, + ACTIONS(4811), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4795), 4, + ACTIONS(4815), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4789), 5, + ACTIONS(4809), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [56501] = 4, - ACTIONS(487), 1, + [55825] = 32, + ACTIONS(3), 1, sym_comment, - ACTIONS(2732), 1, + ACTIONS(3233), 1, + anon_sym_COLON_EQ, + ACTIONS(4462), 1, + anon_sym_LBRACE, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, anon_sym_LBRACK, - ACTIONS(4873), 1, - anon_sym_DOLLARelse, - ACTIONS(2734), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, anon_sym_as, + ACTIONS(4805), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4821), 1, + anon_sym_CARET, + ACTIONS(4823), 1, + anon_sym_AMP_AMP, + ACTIONS(4825), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(4833), 1, + anon_sym_in, + ACTIONS(4835), 1, + anon_sym_BANGin, + STATE(1634), 1, + sym_block, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(3952), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4813), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4807), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(4811), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4815), 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(4809), 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, - [56555] = 24, - ACTIONS(487), 1, + [55935] = 32, + ACTIONS(3), 1, sym_comment, - ACTIONS(4729), 1, + ACTIONS(3233), 1, + anon_sym_COLON_EQ, + ACTIONS(4679), 1, anon_sym_LPAREN, - ACTIONS(4737), 1, + ACTIONS(4681), 1, anon_sym_LBRACK, - ACTIONS(4739), 1, + ACTIONS(4683), 1, anon_sym_QMARK, - ACTIONS(4741), 1, + ACTIONS(4685), 1, anon_sym_BANG, - ACTIONS(4755), 1, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4757), 1, + ACTIONS(4805), 1, + anon_sym_COMMA, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4763), 1, + ACTIONS(4821), 1, + anon_sym_CARET, + ACTIONS(4823), 1, + anon_sym_AMP_AMP, + ACTIONS(4825), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4769), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4771), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4859), 1, - anon_sym_AMP_AMP, - ACTIONS(4861), 1, + ACTIONS(4833), 1, anon_sym_in, - ACTIONS(4863), 1, + ACTIONS(4835), 1, anon_sym_BANGin, - ACTIONS(4869), 1, - anon_sym_PIPE_PIPE, - STATE(2520), 1, + ACTIONS(4873), 1, + anon_sym_LBRACE, + STATE(1286), 1, + sym_block, + STATE(2325), 1, sym_or_block, - STATE(2523), 1, + STATE(2378), 1, sym_argument_list, - STATE(4222), 1, + STATE(3952), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4727), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4853), 4, + ACTIONS(4813), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4807), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(2210), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(4857), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4811), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4815), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4855), 8, + ACTIONS(4809), 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, - [56649] = 32, + [56045] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3227), 1, + ACTIONS(3233), 1, anon_sym_COLON_EQ, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4785), 1, + ACTIONS(4805), 1, anon_sym_COMMA, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4801), 1, + ACTIONS(4821), 1, anon_sym_CARET, - ACTIONS(4803), 1, + ACTIONS(4823), 1, anon_sym_AMP_AMP, - ACTIONS(4805), 1, + ACTIONS(4825), 1, anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4813), 1, + ACTIONS(4833), 1, anon_sym_in, - ACTIONS(4815), 1, + ACTIONS(4835), 1, anon_sym_BANGin, ACTIONS(4875), 1, anon_sym_LBRACE, - STATE(2149), 1, + STATE(394), 1, sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(3935), 1, + STATE(2378), 1, + sym_argument_list, + STATE(3952), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4793), 2, + ACTIONS(4813), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4787), 3, + ACTIONS(4807), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4791), 3, + ACTIONS(4811), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4795), 4, + ACTIONS(4815), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4789), 5, + ACTIONS(4809), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [56759] = 32, + [56155] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3227), 1, + ACTIONS(3233), 1, anon_sym_COLON_EQ, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4785), 1, + ACTIONS(4805), 1, anon_sym_COMMA, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4801), 1, + ACTIONS(4821), 1, anon_sym_CARET, - ACTIONS(4803), 1, + ACTIONS(4823), 1, anon_sym_AMP_AMP, - ACTIONS(4805), 1, + ACTIONS(4825), 1, anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4813), 1, + ACTIONS(4833), 1, anon_sym_in, - ACTIONS(4815), 1, + ACTIONS(4835), 1, anon_sym_BANGin, ACTIONS(4877), 1, anon_sym_LBRACE, - STATE(2300), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(3935), 1, + STATE(2378), 1, + sym_argument_list, + STATE(2619), 1, + sym_block, + STATE(3952), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4793), 2, + ACTIONS(4813), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4787), 3, + ACTIONS(4807), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4791), 3, + ACTIONS(4811), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4795), 4, + ACTIONS(4815), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4789), 5, + ACTIONS(4809), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [56869] = 32, + [56265] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3227), 1, + ACTIONS(3233), 1, anon_sym_COLON_EQ, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4785), 1, + ACTIONS(4805), 1, anon_sym_COMMA, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4801), 1, + ACTIONS(4821), 1, anon_sym_CARET, - ACTIONS(4803), 1, + ACTIONS(4823), 1, anon_sym_AMP_AMP, - ACTIONS(4805), 1, + ACTIONS(4825), 1, anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4813), 1, + ACTIONS(4833), 1, anon_sym_in, - ACTIONS(4815), 1, + ACTIONS(4835), 1, anon_sym_BANGin, ACTIONS(4879), 1, anon_sym_LBRACE, - STATE(1725), 1, + STATE(1734), 1, sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(3935), 1, + STATE(2378), 1, + sym_argument_list, + STATE(3952), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4793), 2, + ACTIONS(4813), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4787), 3, + ACTIONS(4807), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4791), 3, + ACTIONS(4811), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4795), 4, + ACTIONS(4815), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4789), 5, + ACTIONS(4809), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [56979] = 4, - ACTIONS(487), 1, + [56375] = 32, + ACTIONS(3), 1, sym_comment, - ACTIONS(2766), 1, - anon_sym_LBRACE, - ACTIONS(2965), 1, + ACTIONS(3233), 1, + anon_sym_COLON_EQ, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, anon_sym_LBRACK, - ACTIONS(2967), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, anon_sym_as, + ACTIONS(4805), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_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(4817), 1, anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + ACTIONS(4821), 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(4823), 1, anon_sym_AMP_AMP, + ACTIONS(4825), 1, anon_sym_PIPE_PIPE, + ACTIONS(4827), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4829), 1, anon_sym_is, + ACTIONS(4831), 1, anon_sym_BANGis, + ACTIONS(4833), 1, anon_sym_in, + ACTIONS(4835), 1, anon_sym_BANGin, - [57033] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4745), 1, - anon_sym_AMP_AMP, - ACTIONS(4747), 1, - anon_sym_in, - ACTIONS(4749), 1, - anon_sym_BANGin, - ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, - anon_sym_DASH_DASH, - ACTIONS(4761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, - anon_sym_or, - ACTIONS(4769), 1, - anon_sym_is, - ACTIONS(4771), 1, - anon_sym_BANGis, - STATE(2520), 1, + ACTIONS(4881), 1, + anon_sym_LBRACE, + STATE(2325), 1, sym_or_block, - STATE(2523), 1, + STATE(2367), 1, + sym_block, + STATE(2378), 1, sym_argument_list, - STATE(4222), 1, + STATE(3952), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4727), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4731), 4, + ACTIONS(4813), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4807), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1690), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4735), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4811), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4815), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4733), 8, + ACTIONS(4809), 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, - [57127] = 12, - ACTIONS(487), 1, + [56485] = 13, + ACTIONS(493), 1, sym_comment, - ACTIONS(4729), 1, + ACTIONS(4739), 1, anon_sym_LPAREN, - ACTIONS(4737), 1, + ACTIONS(4747), 1, anon_sym_LBRACK, - ACTIONS(4739), 1, + ACTIONS(4753), 1, anon_sym_QMARK, - ACTIONS(4741), 1, + ACTIONS(4755), 1, anon_sym_BANG, - STATE(2520), 1, + STATE(2489), 1, sym_or_block, - STATE(2523), 1, + STATE(2553), 1, sym_argument_list, - STATE(4222), 1, + STATE(4146), 1, sym_type_parameters, - ACTIONS(4727), 2, + ACTIONS(4735), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4743), 2, + ACTIONS(4757), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4855), 8, + ACTIONS(4789), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4791), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -241289,16 +241415,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2076), 25, + ACTIONS(2144), 21, 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, @@ -241307,7 +241430,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, @@ -241315,28 +241437,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57197] = 3, - ACTIONS(487), 1, + [56557] = 13, + ACTIONS(493), 1, sym_comment, - ACTIONS(3139), 1, + ACTIONS(4739), 1, + anon_sym_LPAREN, + ACTIONS(4747), 1, anon_sym_LBRACK, - ACTIONS(3141), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4753), 1, + anon_sym_QMARK, + ACTIONS(4755), 1, + anon_sym_BANG, + STATE(2489), 1, + sym_or_block, + STATE(2553), 1, + sym_argument_list, + STATE(4146), 1, + sym_type_parameters, + ACTIONS(4735), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_QMARK_DOT, + ACTIONS(4757), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4789), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4791), 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(2156), 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, @@ -241345,78 +241489,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57248] = 3, - ACTIONS(487), 1, + [56629] = 29, + ACTIONS(3), 1, sym_comment, - ACTIONS(2866), 1, - anon_sym_LBRACK, - ACTIONS(2868), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4677), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4679), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4689), 1, + anon_sym_QMARK_DOT, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(4847), 1, + anon_sym_CARET, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, + anon_sym_in, + ACTIONS(4857), 1, + anon_sym_BANGin, + ACTIONS(4883), 1, + anon_sym_PIPE_PIPE, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4849), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(4845), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4851), 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(2232), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(4843), 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, - [57299] = 3, - ACTIONS(487), 1, + [56733] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(2897), 1, + ACTIONS(2784), 1, + anon_sym_LBRACE, + ACTIONS(2836), 1, anon_sym_LBRACK, - ACTIONS(2899), 42, + ACTIONS(2838), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -241459,76 +241621,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57350] = 3, - ACTIONS(487), 1, + [56787] = 29, + ACTIONS(3), 1, sym_comment, - ACTIONS(2874), 1, - anon_sym_LBRACK, - ACTIONS(2876), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4677), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4679), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4689), 1, + anon_sym_QMARK_DOT, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(4847), 1, + anon_sym_CARET, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, + anon_sym_in, + ACTIONS(4857), 1, + anon_sym_BANGin, + ACTIONS(4883), 1, + anon_sym_PIPE_PIPE, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4849), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(4845), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4851), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(2050), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(4843), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [56891] = 13, + ACTIONS(493), 1, + sym_comment, + ACTIONS(4739), 1, + anon_sym_LPAREN, + ACTIONS(4747), 1, + anon_sym_LBRACK, + ACTIONS(4753), 1, anon_sym_QMARK, + ACTIONS(4755), 1, anon_sym_BANG, + STATE(2489), 1, + sym_or_block, + STATE(2553), 1, + sym_argument_list, + STATE(4146), 1, + sym_type_parameters, + ACTIONS(4735), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4757), 2, anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4789), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, + ACTIONS(4791), 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, - [57401] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2870), 1, - anon_sym_LBRACK, - ACTIONS(2872), 42, + ACTIONS(2162), 21, 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_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, @@ -241537,109 +241748,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57452] = 3, - ACTIONS(487), 1, + [56963] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2862), 1, - anon_sym_LBRACK, - ACTIONS(2864), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, + ACTIONS(2786), 2, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2694), 12, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_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, - [57503] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2834), 1, - anon_sym_LBRACK, - ACTIONS(2836), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2692), 30, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_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_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, @@ -241651,28 +241804,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57554] = 3, - ACTIONS(487), 1, + anon_sym_DOT_DOT, + [57017] = 12, + ACTIONS(493), 1, sym_comment, - ACTIONS(2790), 1, + ACTIONS(4739), 1, + anon_sym_LPAREN, + ACTIONS(4747), 1, anon_sym_LBRACK, - ACTIONS(2792), 42, + ACTIONS(4753), 1, + anon_sym_QMARK, + ACTIONS(4755), 1, + anon_sym_BANG, + STATE(2489), 1, + sym_or_block, + STATE(2553), 1, + sym_argument_list, + STATE(4146), 1, + sym_type_parameters, + ACTIONS(4735), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4757), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4791), 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(2162), 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_RPAREN, anon_sym_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, @@ -241681,78 +241855,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57605] = 3, - ACTIONS(487), 1, + [57087] = 32, + ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, + ACTIONS(3233), 1, + anon_sym_COLON_EQ, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, anon_sym_LBRACK, - ACTIONS(3093), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, anon_sym_as, + ACTIONS(4805), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4821), 1, + anon_sym_CARET, + ACTIONS(4823), 1, + anon_sym_AMP_AMP, + ACTIONS(4825), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(4833), 1, + anon_sym_in, + ACTIONS(4835), 1, + anon_sym_BANGin, + ACTIONS(4885), 1, + anon_sym_LBRACE, + STATE(1907), 1, + sym_block, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(3952), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4813), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4807), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(4811), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4815), 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(4809), 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, - [57656] = 3, - ACTIONS(487), 1, + [57197] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3087), 1, + ACTIONS(2976), 1, anon_sym_LBRACK, - ACTIONS(3089), 42, + ACTIONS(2978), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -241795,12 +241989,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57707] = 3, - ACTIONS(487), 1, + [57248] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(2786), 1, + ACTIONS(3139), 1, anon_sym_LBRACK, - ACTIONS(2788), 42, + ACTIONS(4887), 1, + anon_sym_BANG, + ACTIONS(3141), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -241826,7 +242022,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -241843,12 +242038,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57758] = 3, - ACTIONS(487), 1, + [57301] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2770), 1, + ACTIONS(3108), 1, anon_sym_LBRACK, - ACTIONS(2772), 42, + ACTIONS(3110), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -241891,178 +242086,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57809] = 4, + [57352] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(2772), 13, + ACTIONS(2162), 1, + anon_sym_DOT_DOT, + ACTIONS(4889), 1, anon_sym_DOT, + ACTIONS(4891), 1, + anon_sym_LPAREN, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(4905), 1, + anon_sym_QMARK, + ACTIONS(4907), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + anon_sym_LBRACK2, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_QMARK_DOT, + ACTIONS(4915), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4917), 1, + anon_sym_in, + ACTIONS(4919), 1, + anon_sym_BANGin, + STATE(2838), 1, + sym_argument_list, + STATE(2842), 1, + sym_or_block, + STATE(4162), 1, + sym_type_parameters, + ACTIONS(4899), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4893), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4897), 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(2770), 28, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(4901), 4, 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, + ACTIONS(4895), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2160), 11, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [57862] = 24, - ACTIONS(487), 1, + [57441] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(4729), 1, + ACTIONS(4889), 1, + anon_sym_DOT, + ACTIONS(4891), 1, anon_sym_LPAREN, - ACTIONS(4737), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(4739), 1, + ACTIONS(4905), 1, anon_sym_QMARK, - ACTIONS(4741), 1, + ACTIONS(4907), 1, anon_sym_BANG, - ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, - anon_sym_DASH_DASH, - ACTIONS(4763), 1, - anon_sym_or, - ACTIONS(4769), 1, - anon_sym_is, - ACTIONS(4771), 1, - anon_sym_BANGis, - ACTIONS(4859), 1, - anon_sym_AMP_AMP, - ACTIONS(4861), 1, - anon_sym_in, - ACTIONS(4863), 1, - anon_sym_BANGin, - ACTIONS(4869), 1, - anon_sym_PIPE_PIPE, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, + ACTIONS(4909), 1, anon_sym_LBRACK2, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_QMARK_DOT, + ACTIONS(4915), 1, anon_sym_POUND_LBRACK, - ACTIONS(3339), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(4853), 4, + STATE(2838), 1, + sym_argument_list, + STATE(2842), 1, + sym_or_block, + STATE(4162), 1, + sym_type_parameters, + ACTIONS(2162), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(4893), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4857), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4855), 8, - anon_sym_STAR, + ACTIONS(4897), 3, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(4895), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [57955] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3003), 1, - anon_sym_LBRACK, - ACTIONS(3005), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(2160), 17, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_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, - [58006] = 3, - ACTIONS(487), 1, + [57522] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2995), 1, + ACTIONS(3096), 1, anon_sym_LBRACK, - ACTIONS(2997), 42, + ACTIONS(3098), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242105,151 +242264,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58057] = 23, + [57573] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, - anon_sym_DOT_DOT, - ACTIONS(4881), 1, + ACTIONS(4889), 1, anon_sym_DOT, - ACTIONS(4883), 1, + ACTIONS(4891), 1, anon_sym_LPAREN, - ACTIONS(4895), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(4897), 1, + ACTIONS(4905), 1, anon_sym_QMARK, - ACTIONS(4899), 1, + ACTIONS(4907), 1, anon_sym_BANG, - ACTIONS(4901), 1, + ACTIONS(4909), 1, anon_sym_LBRACK2, - ACTIONS(4903), 1, - anon_sym_CARET, - ACTIONS(4905), 1, - anon_sym_AMP_AMP, - ACTIONS(4907), 1, + ACTIONS(4913), 1, anon_sym_QMARK_DOT, - ACTIONS(4909), 1, + ACTIONS(4915), 1, anon_sym_POUND_LBRACK, - ACTIONS(4911), 1, - anon_sym_in, - ACTIONS(4913), 1, - anon_sym_BANGin, - STATE(2721), 1, + STATE(2838), 1, sym_argument_list, - STATE(2722), 1, + STATE(2842), 1, sym_or_block, - STATE(4158), 1, + STATE(4162), 1, sym_type_parameters, - ACTIONS(4891), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4885), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4889), 3, + ACTIONS(4897), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4893), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4887), 5, + ACTIONS(4895), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2074), 10, + ACTIONS(2162), 6, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(2160), 18, 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, - [58148] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, anon_sym_DASH_DASH, - ACTIONS(4763), 1, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(4769), 1, anon_sym_is, - ACTIONS(4771), 1, anon_sym_BANGis, - ACTIONS(4859), 1, - anon_sym_AMP_AMP, - ACTIONS(4861), 1, anon_sym_in, - ACTIONS(4863), 1, anon_sym_BANGin, - ACTIONS(4869), 1, - anon_sym_PIPE_PIPE, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(3335), 4, + [57650] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(2956), 1, + anon_sym_LBRACK, + ACTIONS(2958), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - ACTIONS(4853), 4, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4857), 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(4855), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [58241] = 4, - ACTIONS(487), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [57701] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2941), 1, + ACTIONS(3088), 1, anon_sym_LBRACK, - ACTIONS(4915), 1, - anon_sym_BANG, - ACTIONS(2943), 41, + ACTIONS(3090), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242275,6 +242404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -242291,81 +242421,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58294] = 24, - ACTIONS(487), 1, + [57752] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, + ACTIONS(2788), 1, anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, - anon_sym_DASH_DASH, - ACTIONS(4763), 1, - anon_sym_or, - ACTIONS(4769), 1, - anon_sym_is, - ACTIONS(4771), 1, - anon_sym_BANGis, - ACTIONS(4859), 1, - anon_sym_AMP_AMP, - ACTIONS(4861), 1, - anon_sym_in, - ACTIONS(4863), 1, - anon_sym_BANGin, - ACTIONS(4869), 1, - anon_sym_PIPE_PIPE, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(3331), 4, + ACTIONS(2790), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - ACTIONS(4853), 4, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4857), 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(4855), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [58387] = 3, - ACTIONS(487), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [57803] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2901), 1, + ACTIONS(2824), 1, anon_sym_LBRACK, - ACTIONS(2903), 42, + ACTIONS(2826), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242408,71 +242517,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58438] = 14, - ACTIONS(3), 1, + [57854] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(4881), 1, + ACTIONS(2800), 1, + anon_sym_LBRACK, + ACTIONS(2802), 42, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4883), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(2164), 9, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2162), 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, - [58511] = 3, - ACTIONS(487), 1, + [57905] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2913), 1, + ACTIONS(3161), 1, anon_sym_LBRACK, - ACTIONS(2915), 42, + ACTIONS(3163), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242515,81 +242613,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58562] = 24, - ACTIONS(487), 1, + [57956] = 21, + ACTIONS(493), 1, sym_comment, - ACTIONS(4729), 1, + ACTIONS(3205), 1, + sym_identifier, + ACTIONS(3207), 1, anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, + ACTIONS(3209), 1, + anon_sym_fn, + ACTIONS(3211), 1, + anon_sym_STAR, + ACTIONS(3213), 1, + anon_sym_struct, + ACTIONS(3215), 1, anon_sym_QMARK, - ACTIONS(4741), 1, + ACTIONS(3217), 1, anon_sym_BANG, - ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, - anon_sym_DASH_DASH, - ACTIONS(4763), 1, - anon_sym_or, - ACTIONS(4769), 1, - anon_sym_is, - ACTIONS(4771), 1, - anon_sym_BANGis, - ACTIONS(4859), 1, - anon_sym_AMP_AMP, - ACTIONS(4861), 1, - anon_sym_in, - ACTIONS(4863), 1, - anon_sym_BANGin, - ACTIONS(4869), 1, - anon_sym_PIPE_PIPE, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, + ACTIONS(3219), 1, anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(3313), 4, + ACTIONS(3221), 1, + anon_sym_AMP, + ACTIONS(3223), 1, + anon_sym_shared, + ACTIONS(3225), 1, + anon_sym_map_LBRACK, + ACTIONS(3227), 1, + anon_sym_chan, + ACTIONS(3229), 1, + anon_sym_thread, + ACTIONS(3231), 1, + anon_sym_atomic, + STATE(3445), 1, + sym_plain_type, + STATE(4425), 1, + sym_reference_expression, + STATE(3388), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3431), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(621), 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(3438), 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, + [58043] = 21, + ACTIONS(493), 1, + sym_comment, + ACTIONS(3205), 1, + sym_identifier, + ACTIONS(3207), 1, + anon_sym_LPAREN, + ACTIONS(3209), 1, + anon_sym_fn, + ACTIONS(3211), 1, + anon_sym_STAR, + ACTIONS(3213), 1, + anon_sym_struct, + ACTIONS(3215), 1, + anon_sym_QMARK, + ACTIONS(3217), 1, + anon_sym_BANG, + ACTIONS(3219), 1, + anon_sym_LBRACK2, + ACTIONS(3221), 1, + anon_sym_AMP, + ACTIONS(3223), 1, + anon_sym_shared, + ACTIONS(3225), 1, + anon_sym_map_LBRACK, + ACTIONS(3227), 1, + anon_sym_chan, + ACTIONS(3229), 1, + anon_sym_thread, + ACTIONS(3231), 1, + anon_sym_atomic, + STATE(3439), 1, + sym_plain_type, + STATE(4425), 1, + sym_reference_expression, + STATE(3388), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3431), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(613), 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(3438), 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, + [58130] = 21, + ACTIONS(493), 1, + sym_comment, + ACTIONS(3205), 1, + sym_identifier, + ACTIONS(3207), 1, + anon_sym_LPAREN, + ACTIONS(3209), 1, + anon_sym_fn, + ACTIONS(3211), 1, + anon_sym_STAR, + ACTIONS(3213), 1, + anon_sym_struct, + ACTIONS(3215), 1, + anon_sym_QMARK, + ACTIONS(3217), 1, + anon_sym_BANG, + ACTIONS(3219), 1, + anon_sym_LBRACK2, + ACTIONS(3221), 1, + anon_sym_AMP, + ACTIONS(3223), 1, + anon_sym_shared, + ACTIONS(3225), 1, + anon_sym_map_LBRACK, + ACTIONS(3227), 1, + anon_sym_chan, + ACTIONS(3229), 1, + anon_sym_thread, + ACTIONS(3231), 1, + anon_sym_atomic, + STATE(3430), 1, + sym_plain_type, + STATE(4425), 1, + sym_reference_expression, + STATE(3388), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3431), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(561), 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(3438), 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, + [58217] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(2860), 1, + anon_sym_LBRACK, + ACTIONS(2862), 42, 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(4853), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4857), 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(4855), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [58655] = 3, - ACTIONS(487), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [58268] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2917), 1, + ACTIONS(3145), 1, anon_sym_LBRACK, - ACTIONS(2919), 42, + ACTIONS(3147), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242632,210 +242907,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58706] = 30, + [58319] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2210), 1, - anon_sym_DOT_DOT, - ACTIONS(4881), 1, + ACTIONS(4889), 1, anon_sym_DOT, - ACTIONS(4883), 1, + ACTIONS(4891), 1, anon_sym_LPAREN, - ACTIONS(4895), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(4897), 1, + ACTIONS(4905), 1, anon_sym_QMARK, - ACTIONS(4899), 1, + ACTIONS(4907), 1, anon_sym_BANG, - ACTIONS(4901), 1, + ACTIONS(4909), 1, anon_sym_LBRACK2, - ACTIONS(4903), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(4905), 1, - anon_sym_AMP_AMP, - ACTIONS(4907), 1, + ACTIONS(4913), 1, anon_sym_QMARK_DOT, - ACTIONS(4909), 1, + ACTIONS(4915), 1, anon_sym_POUND_LBRACK, - ACTIONS(4911), 1, - anon_sym_in, - ACTIONS(4913), 1, - anon_sym_BANGin, - ACTIONS(4917), 1, - anon_sym_as, - ACTIONS(4919), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4921), 1, - anon_sym_DASH_DASH, - ACTIONS(4923), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4925), 1, - anon_sym_or, - ACTIONS(4927), 1, - anon_sym_is, - ACTIONS(4929), 1, - anon_sym_BANGis, - STATE(2721), 1, + STATE(2838), 1, sym_argument_list, - STATE(2722), 1, + STATE(2842), 1, sym_or_block, - STATE(4158), 1, + STATE(4162), 1, sym_type_parameters, - ACTIONS(4891), 2, + ACTIONS(2144), 3, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(4885), 3, + anon_sym_DOT_DOT, + ACTIONS(4893), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4889), 3, + ACTIONS(4897), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4893), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4887), 5, + ACTIONS(4895), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [58811] = 30, - ACTIONS(3), 1, + ACTIONS(2142), 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, + [58400] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2220), 1, - anon_sym_DOT_DOT, - ACTIONS(4881), 1, + ACTIONS(3064), 1, + anon_sym_LBRACK, + ACTIONS(3066), 42, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4883), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, - ACTIONS(4899), 1, anon_sym_BANG, - ACTIONS(4901), 1, anon_sym_LBRACK2, - ACTIONS(4903), 1, anon_sym_CARET, - ACTIONS(4905), 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(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4911), 1, - anon_sym_in, - ACTIONS(4913), 1, - anon_sym_BANGin, - ACTIONS(4917), 1, - anon_sym_as, - ACTIONS(4919), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4921), 1, - anon_sym_DASH_DASH, - ACTIONS(4923), 1, anon_sym_PIPE_PIPE, - ACTIONS(4925), 1, anon_sym_or, - ACTIONS(4927), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(4929), 1, anon_sym_BANGis, - STATE(2721), 1, + anon_sym_in, + anon_sym_BANGin, + [58451] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4889), 1, + anon_sym_DOT, + ACTIONS(4891), 1, + anon_sym_LPAREN, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(4905), 1, + anon_sym_QMARK, + ACTIONS(4907), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + anon_sym_LBRACK2, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_QMARK_DOT, + ACTIONS(4915), 1, + anon_sym_POUND_LBRACK, + STATE(2838), 1, sym_argument_list, - STATE(2722), 1, + STATE(2842), 1, sym_or_block, - STATE(4158), 1, + STATE(4162), 1, sym_type_parameters, - ACTIONS(4891), 2, + ACTIONS(2156), 3, anon_sym_LT, anon_sym_GT, - ACTIONS(2218), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(4885), 3, + anon_sym_DOT_DOT, + ACTIONS(4893), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4889), 3, + ACTIONS(4897), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4893), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4887), 5, + ACTIONS(4895), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [58916] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3107), 1, - anon_sym_LBRACK, - ACTIONS(3109), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(2154), 17, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_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, - [58967] = 3, - ACTIONS(487), 1, + [58532] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3027), 1, + ACTIONS(3072), 1, anon_sym_LBRACK, - ACTIONS(3029), 42, + ACTIONS(3074), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242878,12 +243129,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59018] = 3, - ACTIONS(487), 1, + [58583] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3167), 1, + ACTIONS(3056), 1, anon_sym_LBRACK, - ACTIONS(3169), 42, + ACTIONS(3058), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242926,76 +243177,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59069] = 14, + [58634] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4881), 1, + ACTIONS(2162), 1, + anon_sym_DOT_DOT, + ACTIONS(4889), 1, anon_sym_DOT, - ACTIONS(4883), 1, + ACTIONS(4891), 1, anon_sym_LPAREN, - ACTIONS(4895), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(4897), 1, + ACTIONS(4905), 1, anon_sym_QMARK, - ACTIONS(4899), 1, + ACTIONS(4907), 1, anon_sym_BANG, - ACTIONS(4901), 1, + ACTIONS(4909), 1, anon_sym_LBRACK2, - ACTIONS(4907), 1, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, anon_sym_QMARK_DOT, - ACTIONS(4909), 1, + ACTIONS(4915), 1, anon_sym_POUND_LBRACK, - STATE(2721), 1, + ACTIONS(4917), 1, + anon_sym_in, + ACTIONS(4919), 1, + anon_sym_BANGin, + ACTIONS(4921), 1, + anon_sym_AMP_AMP, + STATE(2838), 1, sym_argument_list, - STATE(2722), 1, + STATE(2842), 1, sym_or_block, - STATE(4158), 1, + STATE(4162), 1, sym_type_parameters, - ACTIONS(2230), 9, + ACTIONS(4899), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4893), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4897), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2228), 23, + ACTIONS(4901), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4895), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2160), 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, + [58725] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(3169), 1, + anon_sym_LBRACK, + ACTIONS(3171), 42, + 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_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_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, - [59142] = 3, - ACTIONS(487), 1, + [58776] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(2933), 1, + ACTIONS(3116), 1, anon_sym_LBRACK, - ACTIONS(2935), 42, + ACTIONS(3120), 1, + anon_sym_DOT, + ACTIONS(3118), 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, @@ -243033,12 +243342,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59193] = 3, - ACTIONS(487), 1, + [58829] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2937), 1, + ACTIONS(2786), 1, anon_sym_LBRACK, - ACTIONS(2939), 42, + ACTIONS(2784), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243081,79 +243390,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59244] = 22, + [58880] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2076), 1, - anon_sym_DOT_DOT, - ACTIONS(4881), 1, + ACTIONS(4889), 1, anon_sym_DOT, - ACTIONS(4883), 1, + ACTIONS(4891), 1, anon_sym_LPAREN, - ACTIONS(4895), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(4897), 1, + ACTIONS(4905), 1, anon_sym_QMARK, - ACTIONS(4899), 1, + ACTIONS(4907), 1, anon_sym_BANG, - ACTIONS(4901), 1, + ACTIONS(4909), 1, anon_sym_LBRACK2, - ACTIONS(4903), 1, - anon_sym_CARET, - ACTIONS(4907), 1, + ACTIONS(4913), 1, anon_sym_QMARK_DOT, - ACTIONS(4909), 1, + ACTIONS(4915), 1, anon_sym_POUND_LBRACK, - ACTIONS(4911), 1, - anon_sym_in, - ACTIONS(4913), 1, - anon_sym_BANGin, - STATE(2721), 1, + STATE(2838), 1, sym_argument_list, - STATE(2722), 1, + STATE(2842), 1, sym_or_block, - STATE(4158), 1, + STATE(4162), 1, sym_type_parameters, - ACTIONS(4891), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4885), 3, + ACTIONS(2246), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4889), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4893), 4, + anon_sym_DOT_DOT, + ACTIONS(2244), 23, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4887), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 11, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - [59333] = 3, - ACTIONS(487), 1, + anon_sym_in, + anon_sym_BANGin, + [58953] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(3028), 1, anon_sym_LBRACK, - ACTIONS(2923), 42, + ACTIONS(3030), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243196,12 +243497,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59384] = 3, - ACTIONS(487), 1, + [59004] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2991), 1, + ACTIONS(3036), 1, anon_sym_LBRACK, - ACTIONS(2993), 42, + ACTIONS(3038), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243244,12 +243545,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59435] = 3, - ACTIONS(487), 1, + [59055] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3007), 1, + ACTIONS(3040), 1, anon_sym_LBRACK, - ACTIONS(3009), 42, + ACTIONS(3042), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243292,12 +243593,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59486] = 3, - ACTIONS(487), 1, + [59106] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2052), 1, + anon_sym_DOT_DOT, + ACTIONS(4889), 1, + anon_sym_DOT, + ACTIONS(4891), 1, + anon_sym_LPAREN, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(4905), 1, + anon_sym_QMARK, + ACTIONS(4907), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + anon_sym_LBRACK2, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_QMARK_DOT, + ACTIONS(4915), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4917), 1, + anon_sym_in, + ACTIONS(4919), 1, + anon_sym_BANGin, + ACTIONS(4921), 1, + anon_sym_AMP_AMP, + ACTIONS(4923), 1, + anon_sym_as, + ACTIONS(4925), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4927), 1, + anon_sym_DASH_DASH, + ACTIONS(4929), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4931), 1, + anon_sym_or, + ACTIONS(4933), 1, + anon_sym_is, + ACTIONS(4935), 1, + anon_sym_BANGis, + STATE(2838), 1, + sym_argument_list, + STATE(2842), 1, + sym_or_block, + STATE(4162), 1, + sym_type_parameters, + ACTIONS(4899), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2050), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + ACTIONS(4893), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4897), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4901), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4895), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [59211] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2234), 1, + anon_sym_DOT_DOT, + ACTIONS(4889), 1, + anon_sym_DOT, + ACTIONS(4891), 1, + anon_sym_LPAREN, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(4905), 1, + anon_sym_QMARK, + ACTIONS(4907), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + anon_sym_LBRACK2, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_QMARK_DOT, + ACTIONS(4915), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4917), 1, + anon_sym_in, + ACTIONS(4919), 1, + anon_sym_BANGin, + ACTIONS(4921), 1, + anon_sym_AMP_AMP, + ACTIONS(4923), 1, + anon_sym_as, + ACTIONS(4925), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4927), 1, + anon_sym_DASH_DASH, + ACTIONS(4929), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4931), 1, + anon_sym_or, + ACTIONS(4933), 1, + anon_sym_is, + ACTIONS(4935), 1, + anon_sym_BANGis, + STATE(2838), 1, + sym_argument_list, + STATE(2842), 1, + sym_or_block, + STATE(4162), 1, + sym_type_parameters, + ACTIONS(4899), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2232), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + ACTIONS(4893), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4897), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4901), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4895), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [59316] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2909), 1, + ACTIONS(3044), 1, anon_sym_LBRACK, - ACTIONS(2911), 42, + ACTIONS(3046), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243340,12 +243791,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59537] = 3, - ACTIONS(487), 1, + [59367] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3079), 1, + ACTIONS(3181), 1, anon_sym_LBRACK, - ACTIONS(3081), 42, + ACTIONS(3183), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243388,12 +243839,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59588] = 3, - ACTIONS(487), 1, + [59418] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3095), 1, + ACTIONS(3076), 1, anon_sym_LBRACK, - ACTIONS(3097), 42, + ACTIONS(3078), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243436,60 +243887,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59639] = 3, - ACTIONS(487), 1, + [59469] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(3011), 1, - anon_sym_LBRACK, - ACTIONS(3013), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4889), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4891), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(4905), 1, + anon_sym_QMARK, + ACTIONS(4907), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + anon_sym_LBRACK2, + ACTIONS(4913), 1, + anon_sym_QMARK_DOT, + ACTIONS(4915), 1, + anon_sym_POUND_LBRACK, + STATE(2838), 1, + sym_argument_list, + STATE(2842), 1, + sym_or_block, + STATE(4162), 1, + sym_type_parameters, + ACTIONS(2224), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2222), 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, - [59690] = 3, - ACTIONS(487), 1, + [59542] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3015), 1, + ACTIONS(2924), 1, anon_sym_LBRACK, - ACTIONS(3017), 42, + ACTIONS(2926), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243532,78 +243994,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59741] = 21, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3201), 1, - anon_sym_LPAREN, - ACTIONS(3203), 1, - anon_sym_fn, - ACTIONS(3205), 1, - anon_sym_STAR, - ACTIONS(3207), 1, - anon_sym_struct, - ACTIONS(3209), 1, - anon_sym_QMARK, - ACTIONS(3211), 1, - anon_sym_BANG, - ACTIONS(3213), 1, - anon_sym_LBRACK2, - ACTIONS(3215), 1, - anon_sym_AMP, - ACTIONS(3217), 1, - anon_sym_shared, - ACTIONS(3219), 1, - anon_sym_map_LBRACK, - ACTIONS(3221), 1, - anon_sym_chan, - ACTIONS(3223), 1, - anon_sym_thread, - ACTIONS(3225), 1, - anon_sym_atomic, - STATE(3436), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3442), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(615), 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(3438), 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, - [59828] = 3, - ACTIONS(487), 1, + [59593] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2768), 1, + ACTIONS(3173), 1, anon_sym_LBRACK, - ACTIONS(2766), 42, + ACTIONS(3175), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243646,12 +244042,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59879] = 3, - ACTIONS(487), 1, + [59644] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3151), 1, + ACTIONS(2796), 1, anon_sym_LBRACK, - ACTIONS(3153), 42, + ACTIONS(2798), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243694,144 +244090,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59930] = 21, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3201), 1, - anon_sym_LPAREN, - ACTIONS(3203), 1, - anon_sym_fn, - ACTIONS(3205), 1, - anon_sym_STAR, - ACTIONS(3207), 1, - anon_sym_struct, - ACTIONS(3209), 1, - anon_sym_QMARK, - ACTIONS(3211), 1, - anon_sym_BANG, - ACTIONS(3213), 1, - anon_sym_LBRACK2, - ACTIONS(3215), 1, - anon_sym_AMP, - ACTIONS(3217), 1, - anon_sym_shared, - ACTIONS(3219), 1, - anon_sym_map_LBRACK, - ACTIONS(3221), 1, - anon_sym_chan, - ACTIONS(3223), 1, - anon_sym_thread, - ACTIONS(3225), 1, - anon_sym_atomic, - STATE(3434), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3442), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(589), 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(3438), 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, - [60017] = 21, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3201), 1, - anon_sym_LPAREN, - ACTIONS(3203), 1, - anon_sym_fn, - ACTIONS(3205), 1, - anon_sym_STAR, - ACTIONS(3207), 1, - anon_sym_struct, - ACTIONS(3209), 1, - anon_sym_QMARK, - ACTIONS(3211), 1, - anon_sym_BANG, - ACTIONS(3213), 1, - anon_sym_LBRACK2, - ACTIONS(3215), 1, - anon_sym_AMP, - ACTIONS(3217), 1, - anon_sym_shared, - ACTIONS(3219), 1, - anon_sym_map_LBRACK, - ACTIONS(3221), 1, - anon_sym_chan, - ACTIONS(3223), 1, - anon_sym_thread, - ACTIONS(3225), 1, - anon_sym_atomic, - STATE(3420), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3442), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(555), 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(3438), 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, - [60104] = 3, - ACTIONS(487), 1, + [59695] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2846), 1, + ACTIONS(3000), 1, anon_sym_LBRACK, - ACTIONS(2848), 42, + ACTIONS(3002), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243874,136 +244138,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60155] = 18, - ACTIONS(3), 1, + [59746] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(4881), 1, + ACTIONS(2912), 1, + anon_sym_LBRACK, + ACTIONS(2914), 42, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4883), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4903), 1, - anon_sym_CARET, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(2076), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(4885), 3, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4889), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4887), 5, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 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_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, - [60236] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, anon_sym_QMARK, - ACTIONS(4899), 1, anon_sym_BANG, - ACTIONS(4901), 1, anon_sym_LBRACK2, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(4889), 3, - anon_sym_SLASH, + anon_sym_CARET, anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4887), 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(2076), 6, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(2074), 18, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60313] = 3, - ACTIONS(487), 1, + [59797] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3159), 1, + ACTIONS(2908), 1, anon_sym_LBRACK, - ACTIONS(3161), 42, + ACTIONS(2910), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244046,12 +244234,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60364] = 3, - ACTIONS(487), 1, + [59848] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(2928), 1, anon_sym_LBRACK, - ACTIONS(3165), 42, + ACTIONS(2930), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244094,12 +244282,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60415] = 3, - ACTIONS(487), 1, + [59899] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3187), 1, + ACTIONS(2876), 1, anon_sym_LBRACK, - ACTIONS(3189), 42, + ACTIONS(2878), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244142,85 +244330,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60466] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4903), 1, - anon_sym_CARET, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(2112), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(4885), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4889), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4887), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2110), 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, - [60547] = 5, - ACTIONS(487), 1, + [59950] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2882), 1, + ACTIONS(2904), 1, anon_sym_LBRACK, - ACTIONS(2886), 1, - anon_sym_DOT, - ACTIONS(3525), 1, - anon_sym_COLON, - ACTIONS(2884), 40, + ACTIONS(2906), 42, 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_PIPE, @@ -244255,12 +244378,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60602] = 3, - ACTIONS(487), 1, + [60001] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3183), 1, + ACTIONS(2916), 1, anon_sym_LBRACK, - ACTIONS(3185), 42, + ACTIONS(2918), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244303,12 +244426,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60653] = 3, - ACTIONS(487), 1, + [60052] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(2900), 1, anon_sym_LBRACK, - ACTIONS(3181), 42, + ACTIONS(2902), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244351,88 +244474,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60704] = 31, + [60103] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4827), 1, + ACTIONS(4847), 1, anon_sym_CARET, - ACTIONS(4833), 1, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(4857), 1, anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, + ACTIONS(4883), 1, anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, + ACTIONS(4937), 1, anon_sym_RBRACE, - ACTIONS(4933), 1, + ACTIONS(4939), 1, anon_sym_COLON, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(3828), 1, + STATE(2378), 1, + sym_argument_list, + STATE(3789), 1, sym___rcbr, - STATE(4199), 1, - sym_type_parameters, - STATE(4378), 1, + STATE(4183), 1, sym_format_specifier, - ACTIONS(4687), 2, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4829), 2, + ACTIONS(4849), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4831), 4, + ACTIONS(4845), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4851), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4821), 5, + ACTIONS(4843), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [60811] = 3, - ACTIONS(487), 1, + [60210] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3147), 1, + ACTIONS(2936), 1, anon_sym_LBRACK, - ACTIONS(3149), 42, + ACTIONS(2938), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244475,12 +244598,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60862] = 3, - ACTIONS(487), 1, + [60261] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3063), 1, + ACTIONS(2940), 1, anon_sym_LBRACK, - ACTIONS(3065), 42, + ACTIONS(2942), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244523,12 +244646,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60913] = 3, - ACTIONS(487), 1, + [60312] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3051), 1, + ACTIONS(2892), 1, anon_sym_LBRACK, - ACTIONS(3053), 42, + ACTIONS(2894), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244571,23 +244694,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60964] = 4, - ACTIONS(487), 1, + [60363] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2965), 1, + ACTIONS(2896), 1, anon_sym_LBRACK, - ACTIONS(2766), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2967), 40, + ACTIONS(2898), 42, 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_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -244620,20 +244742,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61017] = 3, - ACTIONS(487), 1, + [60414] = 5, + ACTIONS(493), 1, sym_comment, - ACTIONS(3043), 1, + ACTIONS(3116), 1, anon_sym_LBRACK, - ACTIONS(3045), 42, + ACTIONS(3120), 1, + anon_sym_DOT, + ACTIONS(3585), 1, + anon_sym_COLON, + ACTIONS(3118), 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_RPAREN, anon_sym_PIPE, @@ -244668,12 +244792,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61068] = 3, - ACTIONS(487), 1, + [60469] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3035), 1, + ACTIONS(2944), 1, anon_sym_LBRACK, - ACTIONS(3037), 42, + ACTIONS(2946), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244716,12 +244840,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61119] = 3, - ACTIONS(487), 1, + [60520] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3191), 1, + ACTIONS(2888), 1, anon_sym_LBRACK, - ACTIONS(3193), 42, + ACTIONS(2890), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244764,12 +244888,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61170] = 3, - ACTIONS(487), 1, + [60571] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3031), 1, + ACTIONS(2884), 1, anon_sym_LBRACK, - ACTIONS(3033), 42, + ACTIONS(2886), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244812,60 +244936,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61221] = 3, - ACTIONS(487), 1, + [60622] = 31, + ACTIONS(3), 1, sym_comment, - ACTIONS(2838), 1, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, anon_sym_LBRACK, - ACTIONS(2840), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, anon_sym_as, - anon_sym_COMMA, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(4847), 1, + anon_sym_CARET, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, + anon_sym_in, + ACTIONS(4857), 1, + anon_sym_BANGin, + ACTIONS(4883), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4939), 1, + anon_sym_COLON, + ACTIONS(4941), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(3709), 1, + sym___rcbr, + STATE(4355), 1, + sym_format_specifier, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4849), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(4845), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4851), 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(4843), 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, - [61272] = 3, - ACTIONS(487), 1, + [60729] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(2948), 1, anon_sym_LBRACK, - ACTIONS(2844), 42, + ACTIONS(2950), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244908,12 +245060,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61323] = 3, - ACTIONS(487), 1, + [60780] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2782), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(2784), 42, + ACTIONS(2882), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244956,12 +245108,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61374] = 3, - ACTIONS(487), 1, + [60831] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2854), 1, + ACTIONS(2848), 1, anon_sym_LBRACK, - ACTIONS(2856), 42, + ACTIONS(2850), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245004,12 +245156,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61425] = 3, - ACTIONS(487), 1, + [60882] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2826), 1, + ACTIONS(2872), 1, anon_sym_LBRACK, - ACTIONS(2828), 42, + ACTIONS(2874), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245052,12 +245204,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61476] = 3, - ACTIONS(487), 1, + [60933] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3155), 1, + ACTIONS(2864), 1, anon_sym_LBRACK, - ACTIONS(3157), 42, + ACTIONS(2866), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245100,12 +245252,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61527] = 3, - ACTIONS(487), 1, + [60984] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(2762), 1, anon_sym_LBRACK, - ACTIONS(3197), 42, + ACTIONS(2764), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245148,12 +245300,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61578] = 3, - ACTIONS(487), 1, + [61035] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3059), 1, + ACTIONS(2964), 1, anon_sym_LBRACK, - ACTIONS(3061), 42, + ACTIONS(2966), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245196,23 +245348,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61629] = 4, - ACTIONS(487), 1, + [61086] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2976), 1, + ACTIONS(2952), 1, anon_sym_LBRACK, - ACTIONS(2971), 7, + ACTIONS(2954), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - ACTIONS(2973), 35, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -245245,23 +245396,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61682] = 4, - ACTIONS(487), 1, + [61137] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2954), 1, + ACTIONS(3012), 1, anon_sym_LBRACK, - ACTIONS(2949), 7, + ACTIONS(3014), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - ACTIONS(2951), 35, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -245294,12 +245444,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61735] = 3, - ACTIONS(487), 1, + [61188] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3055), 1, + ACTIONS(2968), 1, anon_sym_LBRACK, - ACTIONS(3057), 42, + ACTIONS(2970), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245342,12 +245492,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61786] = 3, - ACTIONS(487), 1, + [61239] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3023), 1, + ACTIONS(2745), 2, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(3025), 42, + ACTIONS(2740), 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(2738), 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_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, + [61292] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(2738), 1, + anon_sym_LBRACK, + ACTIONS(2740), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245390,12 +245589,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61837] = 3, - ACTIONS(487), 1, + [61343] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3111), 1, + ACTIONS(3084), 1, anon_sym_LBRACK, - ACTIONS(3113), 42, + ACTIONS(3086), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245438,12 +245637,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61888] = 3, - ACTIONS(487), 1, + [61394] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3019), 1, + ACTIONS(3004), 1, anon_sym_LBRACK, - ACTIONS(3021), 42, + ACTIONS(3006), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245486,22 +245685,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61939] = 3, - ACTIONS(487), 1, + [61445] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(3047), 1, + ACTIONS(2997), 1, anon_sym_LBRACK, - ACTIONS(3049), 42, + ACTIONS(2992), 7, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, + ACTIONS(2994), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -245534,12 +245734,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61990] = 3, - ACTIONS(487), 1, + [61498] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2999), 1, + ACTIONS(3008), 1, anon_sym_LBRACK, - ACTIONS(3001), 42, + ACTIONS(3010), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245582,12 +245782,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62041] = 3, - ACTIONS(487), 1, + [61549] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2925), 1, + ACTIONS(2840), 1, anon_sym_LBRACK, - ACTIONS(2927), 42, + ACTIONS(2842), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245630,23 +245830,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62092] = 4, - ACTIONS(487), 1, + [61600] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2698), 1, + ACTIONS(3048), 1, anon_sym_LBRACK, - ACTIONS(2766), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2700), 40, + ACTIONS(3050), 42, 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_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -245679,88 +245878,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62145] = 31, - ACTIONS(3), 1, + [61651] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, + ACTIONS(3024), 1, anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(3026), 42, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4933), 1, - anon_sym_COLON, - ACTIONS(4935), 1, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(3774), 1, - sym___rcbr, - STATE(4105), 1, - sym_format_specifier, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4831), 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(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [62252] = 3, - ACTIONS(487), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [61702] = 23, + ACTIONS(493), 1, + sym_comment, + ACTIONS(2740), 1, + anon_sym_DOT, + ACTIONS(2844), 1, + anon_sym_LBRACK, + ACTIONS(3205), 1, + sym_identifier, + ACTIONS(3207), 1, + anon_sym_LPAREN, + ACTIONS(3209), 1, + anon_sym_fn, + ACTIONS(3211), 1, + anon_sym_STAR, + ACTIONS(3213), 1, + anon_sym_struct, + ACTIONS(3215), 1, + anon_sym_QMARK, + ACTIONS(3217), 1, + anon_sym_BANG, + ACTIONS(3219), 1, + anon_sym_LBRACK2, + ACTIONS(3221), 1, + anon_sym_AMP, + ACTIONS(3223), 1, + anon_sym_shared, + ACTIONS(3225), 1, + anon_sym_map_LBRACK, + ACTIONS(3227), 1, + anon_sym_chan, + ACTIONS(3229), 1, + anon_sym_thread, + ACTIONS(3231), 1, + anon_sym_atomic, + STATE(3421), 1, + sym_plain_type, + STATE(4425), 1, + sym_reference_expression, + STATE(3388), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3431), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(2846), 7, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + STATE(3438), 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, + [61793] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3083), 1, + ACTIONS(3032), 1, anon_sym_LBRACK, - ACTIONS(3085), 42, + ACTIONS(3034), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245803,75 +246042,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62303] = 18, - ACTIONS(3), 1, + [61844] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(4881), 1, + ACTIONS(3052), 1, + anon_sym_LBRACK, + ACTIONS(3054), 42, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4883), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4903), 1, - anon_sym_CARET, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(2108), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(4885), 3, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4889), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4887), 5, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2106), 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_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, - [62384] = 3, - ACTIONS(487), 1, + [61895] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2798), 1, + ACTIONS(3104), 1, anon_sym_LBRACK, - ACTIONS(2800), 42, + ACTIONS(3106), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245914,12 +246138,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62435] = 3, - ACTIONS(487), 1, + [61946] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2802), 1, + ACTIONS(3135), 1, anon_sym_LBRACK, - ACTIONS(2804), 42, + ACTIONS(3137), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245962,18 +246186,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62486] = 4, - ACTIONS(487), 1, + [61997] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2882), 1, + ACTIONS(3060), 1, anon_sym_LBRACK, - ACTIONS(2886), 1, - anon_sym_DOT, - ACTIONS(2884), 41, + ACTIONS(3062), 42, 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, @@ -246011,22 +246234,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62539] = 3, - ACTIONS(487), 1, + [62048] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(2814), 1, + ACTIONS(2987), 1, anon_sym_LBRACK, - ACTIONS(2816), 42, + ACTIONS(2982), 7, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, + ACTIONS(2984), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -246059,187 +246283,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62590] = 14, - ACTIONS(3), 1, + [62101] = 24, + ACTIONS(493), 1, sym_comment, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, + ACTIONS(4737), 1, + anon_sym_as, + ACTIONS(4739), 1, anon_sym_LPAREN, - ACTIONS(4895), 1, + ACTIONS(4747), 1, anon_sym_LBRACK, - ACTIONS(4897), 1, + ACTIONS(4749), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4751), 1, + anon_sym_DASH_DASH, + ACTIONS(4753), 1, anon_sym_QMARK, - ACTIONS(4899), 1, + ACTIONS(4755), 1, anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, + ACTIONS(4763), 1, + anon_sym_or, + ACTIONS(4777), 1, + anon_sym_is, + ACTIONS(4779), 1, + anon_sym_BANGis, + ACTIONS(4795), 1, + anon_sym_in, + ACTIONS(4797), 1, + anon_sym_BANGin, + ACTIONS(4799), 1, + anon_sym_AMP_AMP, + ACTIONS(4861), 1, + anon_sym_PIPE_PIPE, + STATE(2489), 1, sym_or_block, - STATE(4158), 1, + STATE(2553), 1, + sym_argument_list, + STATE(4146), 1, sym_type_parameters, - ACTIONS(2076), 9, + ACTIONS(4735), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4757), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(3347), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(4789), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_CARET, + ACTIONS(4793), 6, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2074), 23, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(4791), 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, + [62194] = 24, + ACTIONS(493), 1, + sym_comment, + ACTIONS(4737), 1, + anon_sym_as, + ACTIONS(4739), 1, + anon_sym_LPAREN, + ACTIONS(4747), 1, + anon_sym_LBRACK, + ACTIONS(4749), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4751), 1, + anon_sym_DASH_DASH, + ACTIONS(4753), 1, + anon_sym_QMARK, + ACTIONS(4755), 1, + anon_sym_BANG, + ACTIONS(4763), 1, anon_sym_or, + ACTIONS(4777), 1, anon_sym_is, + ACTIONS(4779), 1, anon_sym_BANGis, + ACTIONS(4795), 1, anon_sym_in, + ACTIONS(4797), 1, anon_sym_BANGin, - [62663] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3119), 1, - anon_sym_LBRACK, - ACTIONS(3121), 42, + ACTIONS(4799), 1, + anon_sym_AMP_AMP, + ACTIONS(4861), 1, + anon_sym_PIPE_PIPE, + STATE(2489), 1, + sym_or_block, + STATE(2553), 1, + sym_argument_list, + STATE(4146), 1, + sym_type_parameters, + ACTIONS(4735), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4757), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(3339), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4789), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4793), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4791), 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, + [62287] = 24, + ACTIONS(493), 1, + sym_comment, + ACTIONS(4737), 1, + anon_sym_as, + ACTIONS(4739), 1, + anon_sym_LPAREN, + ACTIONS(4747), 1, + anon_sym_LBRACK, + ACTIONS(4749), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4751), 1, + anon_sym_DASH_DASH, + ACTIONS(4753), 1, + anon_sym_QMARK, + ACTIONS(4755), 1, + anon_sym_BANG, + ACTIONS(4763), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4777), 1, anon_sym_is, + ACTIONS(4779), 1, anon_sym_BANGis, + ACTIONS(4795), 1, anon_sym_in, + ACTIONS(4797), 1, anon_sym_BANGin, - [62714] = 23, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2772), 1, + ACTIONS(4799), 1, + anon_sym_AMP_AMP, + ACTIONS(4861), 1, + anon_sym_PIPE_PIPE, + STATE(2489), 1, + sym_or_block, + STATE(2553), 1, + sym_argument_list, + STATE(4146), 1, + sym_type_parameters, + ACTIONS(4735), 2, anon_sym_DOT, - ACTIONS(3027), 1, - anon_sym_LBRACK, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3201), 1, - anon_sym_LPAREN, - ACTIONS(3203), 1, - anon_sym_fn, - ACTIONS(3205), 1, - anon_sym_STAR, - ACTIONS(3207), 1, - anon_sym_struct, - ACTIONS(3209), 1, - anon_sym_QMARK, - ACTIONS(3211), 1, - anon_sym_BANG, - ACTIONS(3213), 1, + anon_sym_QMARK_DOT, + ACTIONS(4757), 2, anon_sym_LBRACK2, - ACTIONS(3215), 1, - anon_sym_AMP, - ACTIONS(3217), 1, - anon_sym_shared, - ACTIONS(3219), 1, - anon_sym_map_LBRACK, - ACTIONS(3221), 1, - anon_sym_chan, - ACTIONS(3223), 1, - anon_sym_thread, - ACTIONS(3225), 1, - anon_sym_atomic, - STATE(3415), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3442), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(3029), 7, + anon_sym_POUND_LBRACK, + ACTIONS(3343), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - STATE(3438), 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, - [62805] = 3, - ACTIONS(487), 1, + anon_sym_SEMI, + ACTIONS(4789), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4793), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4791), 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, + [62380] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2957), 1, + ACTIONS(3068), 1, anon_sym_LBRACK, - ACTIONS(2959), 42, + ACTIONS(3070), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246282,18 +246538,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62856] = 4, - ACTIONS(487), 1, + [62431] = 24, + ACTIONS(493), 1, sym_comment, - ACTIONS(2774), 1, + ACTIONS(4737), 1, + anon_sym_as, + ACTIONS(4739), 1, + anon_sym_LPAREN, + ACTIONS(4747), 1, + anon_sym_LBRACK, + ACTIONS(4749), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4751), 1, + anon_sym_DASH_DASH, + ACTIONS(4753), 1, + anon_sym_QMARK, + ACTIONS(4755), 1, + anon_sym_BANG, + ACTIONS(4763), 1, + anon_sym_or, + ACTIONS(4777), 1, + anon_sym_is, + ACTIONS(4779), 1, + anon_sym_BANGis, + ACTIONS(4795), 1, + anon_sym_in, + ACTIONS(4797), 1, + anon_sym_BANGin, + ACTIONS(4799), 1, + anon_sym_AMP_AMP, + ACTIONS(4861), 1, + anon_sym_PIPE_PIPE, + STATE(2489), 1, + sym_or_block, + STATE(2553), 1, + sym_argument_list, + STATE(4146), 1, + sym_type_parameters, + ACTIONS(4735), 2, anon_sym_DOT, - ACTIONS(3027), 1, + anon_sym_QMARK_DOT, + ACTIONS(4757), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(3331), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(4789), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4793), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4791), 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, + [62524] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(2832), 1, anon_sym_LBRACK, - ACTIONS(3029), 41, + ACTIONS(2834), 42, 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, @@ -246331,12 +246655,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62909] = 3, - ACTIONS(487), 1, + [62575] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2976), 1, + ACTIONS(3112), 1, anon_sym_LBRACK, - ACTIONS(2973), 42, + ACTIONS(3114), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246379,60 +246703,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62960] = 3, - ACTIONS(487), 1, + [62626] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(2850), 1, - anon_sym_LBRACK, - ACTIONS(2852), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4889), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4891), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4903), 1, + anon_sym_LBRACK, + ACTIONS(4905), 1, + anon_sym_QMARK, + ACTIONS(4907), 1, + anon_sym_BANG, + ACTIONS(4909), 1, + anon_sym_LBRACK2, + ACTIONS(4913), 1, + anon_sym_QMARK_DOT, + ACTIONS(4915), 1, + anon_sym_POUND_LBRACK, + STATE(2838), 1, + sym_argument_list, + STATE(2842), 1, + sym_or_block, + STATE(4162), 1, + sym_type_parameters, + ACTIONS(2162), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2160), 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, - [63011] = 3, - ACTIONS(487), 1, + [62699] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2889), 1, + ACTIONS(3131), 1, anon_sym_LBRACK, - ACTIONS(2891), 42, + ACTIONS(3133), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246475,12 +246810,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63062] = 3, - ACTIONS(487), 1, + [62750] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2954), 1, + ACTIONS(3149), 1, anon_sym_LBRACK, - ACTIONS(2951), 42, + ACTIONS(3151), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246523,12 +246858,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63113] = 3, - ACTIONS(487), 1, + [62801] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2905), 1, + ACTIONS(2828), 1, anon_sym_LBRACK, - ACTIONS(2907), 42, + ACTIONS(2830), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246571,17 +246906,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63164] = 3, - ACTIONS(487), 1, + [62852] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(2702), 1, + ACTIONS(2742), 1, + anon_sym_DOT, + ACTIONS(2844), 1, anon_sym_LBRACK, - ACTIONS(2704), 42, + ACTIONS(2846), 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, @@ -246619,12 +246955,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63215] = 3, - ACTIONS(487), 1, + [62905] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2987), 1, + ACTIONS(3153), 1, anon_sym_LBRACK, - ACTIONS(2989), 42, + ACTIONS(3155), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246667,12 +247003,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63266] = 3, - ACTIONS(487), 1, + [62956] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2893), 1, + ACTIONS(3092), 1, anon_sym_LBRACK, - ACTIONS(2895), 42, + ACTIONS(3094), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246715,12 +247051,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63317] = 3, - ACTIONS(487), 1, + [63007] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2878), 1, + ACTIONS(3157), 1, anon_sym_LBRACK, - ACTIONS(2880), 42, + ACTIONS(3159), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246763,12 +247099,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63368] = 3, - ACTIONS(487), 1, + [63058] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3171), 1, + ACTIONS(3016), 1, anon_sym_LBRACK, - ACTIONS(3173), 42, + ACTIONS(3018), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246811,12 +247147,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63419] = 3, - ACTIONS(487), 1, + [63109] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2929), 1, + ACTIONS(3165), 1, anon_sym_LBRACK, - ACTIONS(2931), 42, + ACTIONS(3167), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246859,12 +247195,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63470] = 3, - ACTIONS(487), 1, + [63160] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2979), 1, + ACTIONS(2820), 1, anon_sym_LBRACK, - ACTIONS(2981), 42, + ACTIONS(2822), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246907,12 +247243,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63521] = 3, - ACTIONS(487), 1, + [63211] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2983), 1, + ACTIONS(3177), 1, anon_sym_LBRACK, - ACTIONS(2985), 42, + ACTIONS(3179), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246955,12 +247291,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63572] = 3, - ACTIONS(487), 1, + [63262] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(3127), 1, + ACTIONS(2692), 1, anon_sym_LBRACK, - ACTIONS(3129), 42, + ACTIONS(2784), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2694), 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, + 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, + [63315] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(3080), 1, + anon_sym_LBRACK, + ACTIONS(3082), 42, + 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_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, + [63366] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(3201), 1, + anon_sym_LBRACK, + ACTIONS(3203), 42, + 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_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, + [63417] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(3197), 1, + anon_sym_LBRACK, + ACTIONS(3199), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247003,12 +247484,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63623] = 3, - ACTIONS(487), 1, + [63468] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2830), 1, + ACTIONS(3189), 1, anon_sym_LBRACK, - ACTIONS(2832), 42, + ACTIONS(3191), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247051,12 +247532,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63674] = 3, - ACTIONS(487), 1, + [63519] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3067), 1, + ACTIONS(3185), 1, anon_sym_LBRACK, - ACTIONS(3069), 42, + ACTIONS(3187), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247099,12 +247580,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63725] = 3, - ACTIONS(487), 1, + [63570] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3143), 1, + ACTIONS(2804), 1, anon_sym_LBRACK, - ACTIONS(3145), 42, + ACTIONS(2806), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247147,12 +247628,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63776] = 3, - ACTIONS(487), 1, + [63621] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2822), 1, + ACTIONS(3020), 1, anon_sym_LBRACK, - ACTIONS(2824), 42, + ACTIONS(3022), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247195,12 +247676,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63827] = 3, - ACTIONS(487), 1, + [63672] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2961), 1, + ACTIONS(2792), 1, anon_sym_LBRACK, - ACTIONS(2963), 42, + ACTIONS(2794), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247243,8 +247724,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63878] = 3, - ACTIONS(487), 1, + [63723] = 3, + ACTIONS(493), 1, sym_comment, ACTIONS(3123), 1, anon_sym_LBRACK, @@ -247291,12 +247772,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63929] = 3, - ACTIONS(487), 1, + [63774] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(2972), 1, + anon_sym_LBRACK, + ACTIONS(2974), 42, + 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_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, + [63825] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(2844), 1, + anon_sym_LBRACK, + ACTIONS(2846), 42, + 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_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, + [63876] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(3127), 1, + anon_sym_LBRACK, + ACTIONS(3129), 42, + 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_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, + [63927] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3115), 1, + ACTIONS(2960), 1, anon_sym_LBRACK, - ACTIONS(3117), 42, + ACTIONS(2962), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247339,12 +247964,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63980] = 3, - ACTIONS(487), 1, + [63978] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2818), 1, + ACTIONS(2987), 1, anon_sym_LBRACK, - ACTIONS(2820), 42, + ACTIONS(2984), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247387,12 +248012,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64031] = 3, - ACTIONS(487), 1, + [64029] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3075), 1, + ACTIONS(2997), 1, anon_sym_LBRACK, - ACTIONS(3077), 42, + ACTIONS(2994), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247435,12 +248060,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64082] = 3, - ACTIONS(487), 1, + [64080] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3071), 1, + ACTIONS(2932), 1, anon_sym_LBRACK, - ACTIONS(3073), 42, + ACTIONS(2934), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247483,12 +248108,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64133] = 3, - ACTIONS(487), 1, + [64131] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(2858), 1, + ACTIONS(2868), 1, anon_sym_LBRACK, - ACTIONS(2860), 42, + ACTIONS(2870), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247531,22 +248156,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64184] = 3, - ACTIONS(487), 1, + [64182] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(3175), 1, + ACTIONS(2836), 1, anon_sym_LBRACK, - ACTIONS(3177), 42, + ACTIONS(2784), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2838), 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_RPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -247580,11 +248206,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, [64235] = 3, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(2806), 1, + ACTIONS(3193), 1, anon_sym_LBRACK, - ACTIONS(2808), 42, + ACTIONS(3195), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247628,11 +248254,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, [64286] = 3, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(2810), 1, + ACTIONS(2816), 1, anon_sym_LBRACK, - ACTIONS(2812), 42, + ACTIONS(2818), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247676,11 +248302,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, [64337] = 3, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(2794), 1, + ACTIONS(3100), 1, anon_sym_LBRACK, - ACTIONS(2796), 42, + ACTIONS(3102), 42, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247723,252 +248349,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64388] = 15, + [64388] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(2992), 1, + anon_sym_DOT_DOT, + ACTIONS(2990), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON_EQ, + ACTIONS(2994), 12, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2076), 5, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4789), 5, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2997), 24, + anon_sym_as, + anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 18, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_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, - [64462] = 28, + [64442] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4947), 1, + ACTIONS(4821), 1, anon_sym_CARET, - ACTIONS(4949), 1, + ACTIONS(4823), 1, anon_sym_AMP_AMP, - ACTIONS(4951), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4953), 1, + ACTIONS(4833), 1, anon_sym_in, - ACTIONS(4955), 1, + ACTIONS(4835), 1, anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4943), 2, + ACTIONS(4813), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2218), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(4937), 3, + ACTIONS(4807), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4941), 3, + ACTIONS(4811), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4945), 4, + ACTIONS(4815), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4939), 5, + ACTIONS(4809), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [64562] = 18, + ACTIONS(2160), 10, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_COLON_EQ, + [64528] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4963), 1, - anon_sym_CARET, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(2112), 3, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2982), 1, anon_sym_DOT_DOT, - ACTIONS(4957), 3, + ACTIONS(2980), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON_EQ, + ACTIONS(2984), 12, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 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(4959), 5, + ACTIONS(2987), 24, + anon_sym_as, + anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2110), 16, - anon_sym_as, - anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64642] = 18, + [64582] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, + ACTIONS(4679), 1, anon_sym_LPAREN, - ACTIONS(4895), 1, + ACTIONS(4681), 1, anon_sym_LBRACK, - ACTIONS(4897), 1, + ACTIONS(4683), 1, anon_sym_QMARK, - ACTIONS(4899), 1, + ACTIONS(4685), 1, anon_sym_BANG, - ACTIONS(4901), 1, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4963), 1, + ACTIONS(4949), 1, anon_sym_CARET, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, + STATE(2325), 1, sym_or_block, - STATE(4158), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(2108), 3, + ACTIONS(2144), 2, anon_sym_LT, anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(4957), 3, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4943), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 3, + ACTIONS(4947), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4959), 5, + ACTIONS(4945), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2106), 16, + ACTIONS(2142), 17, + 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_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -247978,582 +248572,286 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64722] = 28, + anon_sym_COLON_EQ, + [64660] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4947), 1, - anon_sym_CARET, ACTIONS(4949), 1, - anon_sym_AMP_AMP, - ACTIONS(4951), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4953), 1, - anon_sym_in, - ACTIONS(4955), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + anon_sym_CARET, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4943), 2, + ACTIONS(2156), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(4937), 3, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4943), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4941), 3, + ACTIONS(4947), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4945), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4939), 5, + ACTIONS(4945), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [64822] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2076), 1, - anon_sym_DOT_DOT, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4963), 1, - anon_sym_CARET, - ACTIONS(4969), 1, - anon_sym_AMP_AMP, - ACTIONS(4971), 1, - anon_sym_in, - ACTIONS(4973), 1, - anon_sym_BANGin, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(4965), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4957), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4961), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4967), 4, + ACTIONS(2154), 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, - ACTIONS(4959), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 9, - 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, - [64912] = 30, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + [64738] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2220), 1, + ACTIONS(2052), 1, anon_sym_DOT_DOT, - ACTIONS(4881), 1, + ACTIONS(4889), 1, anon_sym_DOT, - ACTIONS(4883), 1, + ACTIONS(4891), 1, anon_sym_LPAREN, - ACTIONS(4895), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(4897), 1, + ACTIONS(4905), 1, anon_sym_QMARK, - ACTIONS(4899), 1, + ACTIONS(4907), 1, anon_sym_BANG, - ACTIONS(4901), 1, + ACTIONS(4909), 1, anon_sym_LBRACK2, - ACTIONS(4907), 1, + ACTIONS(4913), 1, anon_sym_QMARK_DOT, - ACTIONS(4909), 1, + ACTIONS(4915), 1, anon_sym_POUND_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4923), 1, anon_sym_as, - ACTIONS(4919), 1, + ACTIONS(4925), 1, anon_sym_PLUS_PLUS, - ACTIONS(4921), 1, + ACTIONS(4927), 1, anon_sym_DASH_DASH, - ACTIONS(4925), 1, + ACTIONS(4931), 1, anon_sym_or, - ACTIONS(4927), 1, + ACTIONS(4933), 1, anon_sym_is, - ACTIONS(4929), 1, + ACTIONS(4935), 1, anon_sym_BANGis, - ACTIONS(4963), 1, + ACTIONS(4961), 1, anon_sym_CARET, - ACTIONS(4969), 1, + ACTIONS(4963), 1, anon_sym_AMP_AMP, - ACTIONS(4971), 1, + ACTIONS(4965), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4967), 1, anon_sym_in, - ACTIONS(4973), 1, + ACTIONS(4969), 1, anon_sym_BANGin, - ACTIONS(4975), 1, - anon_sym_PIPE_PIPE, - STATE(2721), 1, + STATE(2838), 1, sym_argument_list, - STATE(2722), 1, + STATE(2842), 1, sym_or_block, - STATE(4158), 1, + STATE(4162), 1, sym_type_parameters, - ACTIONS(2218), 2, + ACTIONS(2050), 2, anon_sym_LBRACE, anon_sym_DOT_DOT_DOT, - ACTIONS(4965), 2, + ACTIONS(4957), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4957), 3, + ACTIONS(4951), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 3, + ACTIONS(4955), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4967), 4, + ACTIONS(4959), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4959), 5, + ACTIONS(4953), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [65016] = 30, + [64842] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2210), 1, - anon_sym_DOT_DOT, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, + ACTIONS(4679), 1, anon_sym_LPAREN, - ACTIONS(4895), 1, + ACTIONS(4681), 1, anon_sym_LBRACK, - ACTIONS(4897), 1, + ACTIONS(4683), 1, anon_sym_QMARK, - ACTIONS(4899), 1, + ACTIONS(4685), 1, anon_sym_BANG, - ACTIONS(4901), 1, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4917), 1, - anon_sym_as, - ACTIONS(4919), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4921), 1, - anon_sym_DASH_DASH, - ACTIONS(4925), 1, - anon_sym_or, - ACTIONS(4927), 1, - anon_sym_is, - ACTIONS(4929), 1, - anon_sym_BANGis, - ACTIONS(4963), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4969), 1, + ACTIONS(4975), 1, anon_sym_AMP_AMP, - ACTIONS(4971), 1, + ACTIONS(4977), 1, anon_sym_in, - ACTIONS(4973), 1, + ACTIONS(4979), 1, anon_sym_BANGin, - ACTIONS(4975), 1, - anon_sym_PIPE_PIPE, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, + STATE(2325), 1, sym_or_block, - STATE(4158), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(2208), 2, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - ACTIONS(4965), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4957), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4961), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4967), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4959), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [65120] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2076), 1, - anon_sym_DOT_DOT, - ACTIONS(4881), 1, + ACTIONS(4689), 2, anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4907), 1, anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4963), 1, - anon_sym_CARET, - ACTIONS(4971), 1, - anon_sym_in, - ACTIONS(4973), 1, - anon_sym_BANGin, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(4965), 2, + ACTIONS(4971), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4957), 3, + ACTIONS(4943), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 3, + ACTIONS(4947), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4967), 4, + ACTIONS(4973), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4959), 5, + ACTIONS(4945), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2074), 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, - [65208] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2971), 1, - anon_sym_DOT_DOT, - ACTIONS(2969), 5, + ACTIONS(2160), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON_EQ, - ACTIONS(2973), 12, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2976), 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, - [65262] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2949), 1, - anon_sym_DOT_DOT, - ACTIONS(2947), 5, - anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON_EQ, - ACTIONS(2951), 12, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2954), 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, - [65316] = 3, + anon_sym_COLON_EQ, + [64928] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2700), 13, + ACTIONS(4889), 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(2698), 29, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [65366] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3227), 1, - anon_sym_LBRACE, - ACTIONS(4677), 1, + ACTIONS(4891), 1, anon_sym_LPAREN, - ACTIONS(4679), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(4681), 1, + ACTIONS(4905), 1, anon_sym_QMARK, - ACTIONS(4683), 1, + ACTIONS(4907), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(4909), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4913), 1, + anon_sym_QMARK_DOT, + ACTIONS(4915), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4923), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4925), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, - anon_sym_AMP_AMP, - ACTIONS(4805), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, + ACTIONS(4927), 1, + anon_sym_DASH_DASH, + ACTIONS(4931), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4933), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4935), 1, anon_sym_BANGis, - ACTIONS(4813), 1, + ACTIONS(4961), 1, + anon_sym_CARET, + ACTIONS(4963), 1, + anon_sym_AMP_AMP, + ACTIONS(4965), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4967), 1, anon_sym_in, - ACTIONS(4815), 1, + ACTIONS(4969), 1, anon_sym_BANGin, - ACTIONS(4977), 1, - anon_sym_COMMA, - STATE(2404), 1, + ACTIONS(4981), 1, + anon_sym_LBRACE, + ACTIONS(4983), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4985), 1, + anon_sym_DOT_DOT, + STATE(2838), 1, sym_argument_list, - STATE(2408), 1, + STATE(2842), 1, sym_or_block, - STATE(3894), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, + STATE(4162), 1, sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4793), 2, + ACTIONS(4957), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4787), 3, + ACTIONS(4951), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4791), 3, + ACTIONS(4955), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4795), 4, + ACTIONS(4959), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4789), 5, + ACTIONS(4953), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [65470] = 3, + [65034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2730), 13, + ACTIONS(2694), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -248567,7 +248865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2728), 29, + ACTIONS(2692), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -248597,174 +248895,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65520] = 18, + [65084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4881), 1, + ACTIONS(2736), 13, anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4963), 1, - anon_sym_CARET, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(2076), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(4957), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4961), 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(4959), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 16, + anon_sym_DOT_DOT, + ACTIONS(2734), 29, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65600] = 16, + [65134] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, + ACTIONS(4679), 1, anon_sym_LPAREN, - ACTIONS(4895), 1, + ACTIONS(4681), 1, anon_sym_LBRACK, - ACTIONS(4897), 1, + ACTIONS(4683), 1, anon_sym_QMARK, - ACTIONS(4899), 1, + ACTIONS(4685), 1, anon_sym_BANG, - ACTIONS(4901), 1, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, + ACTIONS(4949), 1, + anon_sym_CARET, + ACTIONS(4977), 1, + anon_sym_in, + ACTIONS(4979), 1, + anon_sym_BANGin, + STATE(2325), 1, sym_or_block, - STATE(4158), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4961), 3, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4971), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4943), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4947), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4959), 5, + ACTIONS(4973), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4945), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2076), 6, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(2074), 17, + ACTIONS(2160), 11, + anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [65676] = 17, + anon_sym_COLON_EQ, + [65218] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4949), 1, anon_sym_CARET, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(2112), 2, + ACTIONS(2162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4787), 3, + ACTIONS(4943), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4791), 3, + ACTIONS(4947), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4789), 5, + ACTIONS(4945), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2110), 17, + ACTIONS(2160), 17, + anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -248780,433 +249067,320 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [65754] = 17, + [65296] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(4889), 1, + anon_sym_DOT, + ACTIONS(4891), 1, anon_sym_LPAREN, - ACTIONS(4679), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(4681), 1, + ACTIONS(4905), 1, anon_sym_QMARK, - ACTIONS(4683), 1, + ACTIONS(4907), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(4909), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4913), 1, + anon_sym_QMARK_DOT, + ACTIONS(4915), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4961), 1, anon_sym_CARET, - STATE(2404), 1, + STATE(2838), 1, sym_argument_list, - STATE(2408), 1, + STATE(2842), 1, sym_or_block, - STATE(4199), 1, + STATE(4162), 1, sym_type_parameters, - ACTIONS(2108), 2, + ACTIONS(2162), 3, anon_sym_LT, anon_sym_GT, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4787), 3, + anon_sym_DOT_DOT, + ACTIONS(4951), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4791), 3, + ACTIONS(4955), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4789), 5, + ACTIONS(4953), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2106), 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, - [65832] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4979), 1, - anon_sym_else, - STATE(2697), 1, - sym_else_branch, - ACTIONS(2406), 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(2404), 27, + ACTIONS(2160), 16, 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, - [65886] = 31, + [65376] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4881), 1, + ACTIONS(4889), 1, anon_sym_DOT, - ACTIONS(4883), 1, + ACTIONS(4891), 1, anon_sym_LPAREN, - ACTIONS(4895), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(4897), 1, + ACTIONS(4905), 1, anon_sym_QMARK, - ACTIONS(4899), 1, + ACTIONS(4907), 1, anon_sym_BANG, - ACTIONS(4901), 1, + ACTIONS(4909), 1, anon_sym_LBRACK2, - ACTIONS(4907), 1, + ACTIONS(4913), 1, anon_sym_QMARK_DOT, - ACTIONS(4909), 1, + ACTIONS(4915), 1, anon_sym_POUND_LBRACK, - ACTIONS(4917), 1, - anon_sym_as, - ACTIONS(4919), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4921), 1, - anon_sym_DASH_DASH, - ACTIONS(4925), 1, - anon_sym_or, - ACTIONS(4927), 1, - anon_sym_is, - ACTIONS(4929), 1, - anon_sym_BANGis, - ACTIONS(4963), 1, - anon_sym_CARET, - ACTIONS(4969), 1, - anon_sym_AMP_AMP, - ACTIONS(4971), 1, - anon_sym_in, - ACTIONS(4973), 1, - anon_sym_BANGin, - ACTIONS(4975), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4981), 1, - anon_sym_LBRACE, - ACTIONS(4983), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4985), 1, - anon_sym_DOT_DOT, - STATE(2721), 1, + STATE(2838), 1, sym_argument_list, - STATE(2722), 1, + STATE(2842), 1, sym_or_block, - STATE(4158), 1, + STATE(4162), 1, sym_type_parameters, - ACTIONS(4965), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4957), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4961), 3, + ACTIONS(4955), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4967), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4959), 5, + ACTIONS(4953), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [65992] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4979), 1, - anon_sym_else, - STATE(2696), 1, - sym_else_branch, - ACTIONS(2400), 13, - anon_sym_DOT, + ACTIONS(2162), 6, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2398), 27, + ACTIONS(2160), 17, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66046] = 21, + [65452] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, - anon_sym_AMP_AMP, - ACTIONS(4813), 1, - anon_sym_in, - ACTIONS(4815), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4787), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4791), 3, + ACTIONS(4947), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4795), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4789), 5, + ACTIONS(2162), 5, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4945), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2074), 10, + ACTIONS(2160), 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_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, - [66132] = 28, + [65526] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, + ACTIONS(3233), 1, + anon_sym_LBRACE, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4947), 1, + ACTIONS(4821), 1, anon_sym_CARET, - ACTIONS(4949), 1, + ACTIONS(4823), 1, anon_sym_AMP_AMP, - ACTIONS(4951), 1, + ACTIONS(4825), 1, anon_sym_PIPE_PIPE, - ACTIONS(4953), 1, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(4833), 1, anon_sym_in, - ACTIONS(4955), 1, + ACTIONS(4835), 1, anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(4987), 1, + anon_sym_COMMA, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(3905), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4943), 2, + ACTIONS(4813), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3305), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(4937), 3, + ACTIONS(4807), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4941), 3, + ACTIONS(4811), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4945), 4, + ACTIONS(4815), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4939), 5, + ACTIONS(4809), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [66232] = 20, + [65630] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(2162), 1, + anon_sym_DOT_DOT, + ACTIONS(4889), 1, + anon_sym_DOT, + ACTIONS(4891), 1, anon_sym_LPAREN, - ACTIONS(4679), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(4681), 1, + ACTIONS(4905), 1, anon_sym_QMARK, - ACTIONS(4683), 1, + ACTIONS(4907), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(4909), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4913), 1, + anon_sym_QMARK_DOT, + ACTIONS(4915), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4961), 1, anon_sym_CARET, - ACTIONS(4813), 1, + ACTIONS(4967), 1, anon_sym_in, - ACTIONS(4815), 1, + ACTIONS(4969), 1, anon_sym_BANGin, - STATE(2404), 1, + STATE(2838), 1, sym_argument_list, - STATE(2408), 1, + STATE(2842), 1, sym_or_block, - STATE(4199), 1, + STATE(4162), 1, sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4793), 2, + ACTIONS(4957), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4787), 3, + ACTIONS(4951), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4791), 3, + ACTIONS(4955), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4795), 4, + ACTIONS(4959), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4789), 5, + ACTIONS(4953), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2074), 11, + ACTIONS(2160), 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_AMP_AMP, @@ -249214,51 +249388,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_COLON_EQ, - [66316] = 17, + [65718] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, + ACTIONS(4821), 1, anon_sym_CARET, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(2076), 2, + ACTIONS(2144), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4787), 3, + ACTIONS(4807), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4791), 3, + ACTIONS(4811), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4789), 5, + ACTIONS(4809), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2074), 17, + ACTIONS(2142), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -249276,275 +249449,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [66394] = 30, + [65796] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3227), 1, - anon_sym_SEMI, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4947), 1, + ACTIONS(4821), 1, anon_sym_CARET, - ACTIONS(4949), 1, - anon_sym_AMP_AMP, - ACTIONS(4951), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4953), 1, - anon_sym_in, - ACTIONS(4955), 1, - anon_sym_BANGin, - ACTIONS(4987), 1, - anon_sym_COMMA, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(3972), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4943), 2, + ACTIONS(2156), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4937), 3, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4807), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4941), 3, + ACTIONS(4811), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4945), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4939), 5, + ACTIONS(4809), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [66498] = 28, + ACTIONS(2154), 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, + [65874] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(2162), 1, + anon_sym_DOT_DOT, + ACTIONS(4889), 1, + anon_sym_DOT, + ACTIONS(4891), 1, anon_sym_LPAREN, - ACTIONS(4679), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(4681), 1, + ACTIONS(4905), 1, anon_sym_QMARK, - ACTIONS(4683), 1, + ACTIONS(4907), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(4909), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4913), 1, + anon_sym_QMARK_DOT, + ACTIONS(4915), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4801), 1, + ACTIONS(4961), 1, anon_sym_CARET, - ACTIONS(4803), 1, + ACTIONS(4963), 1, anon_sym_AMP_AMP, - ACTIONS(4805), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4813), 1, + ACTIONS(4967), 1, anon_sym_in, - ACTIONS(4815), 1, + ACTIONS(4969), 1, anon_sym_BANGin, - STATE(2404), 1, + STATE(2838), 1, sym_argument_list, - STATE(2408), 1, + STATE(2842), 1, sym_or_block, - STATE(4199), 1, + STATE(4162), 1, sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4793), 2, + ACTIONS(4957), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2208), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(4787), 3, + ACTIONS(4951), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4791), 3, + ACTIONS(4955), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4795), 4, + ACTIONS(4959), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4789), 5, + ACTIONS(4953), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [66598] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(2160), 9, anon_sym_as, - ACTIONS(4797), 1, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, anon_sym_DASH_DASH, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, - anon_sym_AMP_AMP, - ACTIONS(4805), 1, anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4813), 1, - anon_sym_in, - ACTIONS(4815), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, + anon_sym_is, + anon_sym_BANGis, + [65964] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4989), 1, + anon_sym_else, + STATE(2698), 1, + sym_else_branch, + ACTIONS(2398), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2218), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(4787), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4791), 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(4795), 4, + anon_sym_DOT_DOT, + ACTIONS(2396), 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(4789), 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, - [66698] = 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, + [66018] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(4889), 1, + anon_sym_DOT, + ACTIONS(4891), 1, anon_sym_LPAREN, - ACTIONS(4679), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(4681), 1, + ACTIONS(4905), 1, anon_sym_QMARK, - ACTIONS(4683), 1, + ACTIONS(4907), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(4909), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4913), 1, + anon_sym_QMARK_DOT, + ACTIONS(4915), 1, anon_sym_POUND_LBRACK, - ACTIONS(4947), 1, + ACTIONS(4961), 1, anon_sym_CARET, - STATE(2404), 1, + STATE(2838), 1, sym_argument_list, - STATE(2408), 1, + STATE(2842), 1, sym_or_block, - STATE(4199), 1, + STATE(4162), 1, sym_type_parameters, - ACTIONS(2112), 2, + ACTIONS(2156), 3, anon_sym_LT, anon_sym_GT, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4937), 3, + anon_sym_DOT_DOT, + ACTIONS(4951), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4941), 3, + ACTIONS(4955), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4939), 5, + ACTIONS(4953), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2110), 17, - anon_sym_SEMI, + ACTIONS(2154), 16, anon_sym_as, - anon_sym_COMMA, + 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, @@ -249554,248 +249688,316 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [66776] = 17, + [66098] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4947), 1, - anon_sym_CARET, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(2108), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4687), 2, + ACTIONS(4989), 1, + anon_sym_else, + STATE(2697), 1, + sym_else_branch, + ACTIONS(2392), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4937), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4941), 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(4939), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2106), 17, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(2390), 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, - anon_sym_COLON_EQ, - [66854] = 21, + [66152] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4947), 1, + ACTIONS(4821), 1, anon_sym_CARET, - ACTIONS(4949), 1, - anon_sym_AMP_AMP, - ACTIONS(4953), 1, + ACTIONS(4833), 1, anon_sym_in, - ACTIONS(4955), 1, + ACTIONS(4835), 1, anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4943), 2, + ACTIONS(4813), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4937), 3, + ACTIONS(4807), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4941), 3, + ACTIONS(4811), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4945), 4, + ACTIONS(4815), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4939), 5, + ACTIONS(4809), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2074), 10, - anon_sym_SEMI, + ACTIONS(2160), 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, - [66940] = 20, + [66236] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4947), 1, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4953), 1, + ACTIONS(4975), 1, + anon_sym_AMP_AMP, + ACTIONS(4977), 1, anon_sym_in, - ACTIONS(4955), 1, + ACTIONS(4979), 1, anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(4991), 1, + anon_sym_PIPE_PIPE, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4943), 2, + ACTIONS(4971), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4937), 3, + ACTIONS(2232), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(4943), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4941), 3, + ACTIONS(4947), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4945), 4, + ACTIONS(4973), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4939), 5, + ACTIONS(4945), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2074), 11, - anon_sym_SEMI, + [66336] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, anon_sym_as, - anon_sym_COMMA, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4827), 1, anon_sym_or, + ACTIONS(4829), 1, anon_sym_is, + ACTIONS(4831), 1, anon_sym_BANGis, + ACTIONS(4949), 1, + anon_sym_CARET, + ACTIONS(4975), 1, + anon_sym_AMP_AMP, + ACTIONS(4977), 1, + anon_sym_in, + ACTIONS(4979), 1, + anon_sym_BANGin, + ACTIONS(4991), 1, + anon_sym_PIPE_PIPE, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4971), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2050), 3, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_COLON_EQ, - [67024] = 17, + ACTIONS(4943), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4947), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4973), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4945), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [66436] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(4889), 1, + anon_sym_DOT, + ACTIONS(4891), 1, anon_sym_LPAREN, - ACTIONS(4679), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(4681), 1, + ACTIONS(4905), 1, anon_sym_QMARK, - ACTIONS(4683), 1, + ACTIONS(4907), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(4909), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4913), 1, + anon_sym_QMARK_DOT, + ACTIONS(4915), 1, anon_sym_POUND_LBRACK, - ACTIONS(4947), 1, + ACTIONS(4961), 1, anon_sym_CARET, - STATE(2404), 1, + STATE(2838), 1, sym_argument_list, - STATE(2408), 1, + STATE(2842), 1, sym_or_block, - STATE(4199), 1, + STATE(4162), 1, sym_type_parameters, - ACTIONS(2076), 2, + ACTIONS(2144), 3, anon_sym_LT, anon_sym_GT, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4937), 3, + anon_sym_DOT_DOT, + ACTIONS(4951), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4941), 3, + ACTIONS(4955), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4939), 5, + ACTIONS(4953), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2074), 17, - anon_sym_SEMI, + ACTIONS(2142), 16, anon_sym_as, - anon_sym_COMMA, + 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, @@ -249805,50 +250007,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [67102] = 15, + [66516] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(4821), 1, + anon_sym_CARET, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(2162), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4941), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2076), 5, + ACTIONS(4807), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4939), 5, + ACTIONS(4811), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4809), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2074), 18, - anon_sym_SEMI, + ACTIONS(2160), 17, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -249856,7 +250060,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, @@ -249865,539 +250068,584 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [67176] = 3, + [66594] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2967), 13, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4811), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2162), 5, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2965), 28, + ACTIONS(4809), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2160), 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_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, - [67225] = 29, + [66668] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4871), 1, - anon_sym_LBRACE, - ACTIONS(4999), 1, - anon_sym_QMARK, - ACTIONS(5001), 1, + ACTIONS(4821), 1, anon_sym_CARET, - ACTIONS(5003), 1, + ACTIONS(4823), 1, anon_sym_AMP_AMP, - ACTIONS(5005), 1, + ACTIONS(4825), 1, anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(4833), 1, anon_sym_in, - ACTIONS(5009), 1, + ACTIONS(4835), 1, anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(2655), 1, - sym_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4995), 2, + ACTIONS(4813), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4989), 3, + ACTIONS(2232), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(4807), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 3, + ACTIONS(4811), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4997), 4, + ACTIONS(4815), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4991), 5, + ACTIONS(4809), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67326] = 29, + [66768] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4476), 1, + ACTIONS(4679), 1, anon_sym_LPAREN, - ACTIONS(4478), 1, + ACTIONS(4681), 1, anon_sym_LBRACK, - ACTIONS(4480), 1, + ACTIONS(4683), 1, anon_sym_QMARK, - ACTIONS(4482), 1, + ACTIONS(4685), 1, anon_sym_BANG, - ACTIONS(4484), 1, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4486), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4488), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4498), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4500), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4502), 1, - anon_sym_AMP_AMP, - ACTIONS(4504), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4506), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4508), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4510), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4512), 1, + ACTIONS(4949), 1, + anon_sym_CARET, + ACTIONS(4975), 1, + anon_sym_AMP_AMP, + ACTIONS(4977), 1, anon_sym_in, - ACTIONS(4514), 1, + ACTIONS(4979), 1, anon_sym_BANGin, - ACTIONS(5013), 1, - anon_sym_COLON, - ACTIONS(5015), 1, - anon_sym_CARET, - ACTIONS(5017), 1, - anon_sym_LT_DASH, - STATE(2081), 1, - sym_argument_list, - STATE(2082), 1, + ACTIONS(4991), 1, + anon_sym_PIPE_PIPE, + STATE(2325), 1, sym_or_block, - STATE(4192), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4474), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4494), 2, + ACTIONS(4971), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4490), 3, + ACTIONS(3309), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(4943), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4492), 3, + ACTIONS(4947), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4496), 4, + ACTIONS(4973), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5011), 5, + ACTIONS(4945), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67427] = 29, + [66868] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, - anon_sym_LBRACE, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, + ACTIONS(4821), 1, anon_sym_CARET, - ACTIONS(5003), 1, + ACTIONS(4823), 1, anon_sym_AMP_AMP, - ACTIONS(5005), 1, + ACTIONS(4825), 1, anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(4833), 1, anon_sym_in, - ACTIONS(5009), 1, + ACTIONS(4835), 1, anon_sym_BANGin, - ACTIONS(5019), 1, - anon_sym_QMARK, - STATE(1669), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4995), 2, + ACTIONS(4813), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4989), 3, + ACTIONS(2050), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(4807), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 3, + ACTIONS(4811), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4997), 4, + ACTIONS(4815), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4991), 5, + ACTIONS(4809), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67528] = 6, + [66968] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5023), 1, - anon_sym_QMARK, - ACTIONS(5021), 2, + ACTIONS(3233), 1, anon_sym_SEMI, - anon_sym_RBRACK, - ACTIONS(2884), 10, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(4949), 1, + anon_sym_CARET, + ACTIONS(4975), 1, + anon_sym_AMP_AMP, + ACTIONS(4977), 1, + anon_sym_in, + ACTIONS(4979), 1, + anon_sym_BANGin, + ACTIONS(4991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4993), 1, + anon_sym_COMMA, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4003), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4971), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4943), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4947), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(4973), 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(4945), 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, - [67583] = 30, + [67072] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4675), 1, + ACTIONS(2234), 1, + anon_sym_DOT_DOT, + ACTIONS(4889), 1, anon_sym_DOT, - ACTIONS(4677), 1, + ACTIONS(4891), 1, anon_sym_LPAREN, - ACTIONS(4679), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(4681), 1, + ACTIONS(4905), 1, anon_sym_QMARK, - ACTIONS(4683), 1, + ACTIONS(4907), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(4909), 1, anon_sym_LBRACK2, - ACTIONS(4687), 1, + ACTIONS(4913), 1, anon_sym_QMARK_DOT, - ACTIONS(4689), 1, + ACTIONS(4915), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4923), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4925), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4927), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4931), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4933), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4935), 1, anon_sym_BANGis, - ACTIONS(4827), 1, + ACTIONS(4961), 1, anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, + ACTIONS(4963), 1, anon_sym_AMP_AMP, - ACTIONS(4849), 1, + ACTIONS(4965), 1, anon_sym_PIPE_PIPE, - ACTIONS(5025), 1, - anon_sym_RBRACK, - ACTIONS(5027), 1, - anon_sym_DOT_DOT, - STATE(2404), 1, + ACTIONS(4967), 1, + anon_sym_in, + ACTIONS(4969), 1, + anon_sym_BANGin, + STATE(2838), 1, sym_argument_list, - STATE(2408), 1, + STATE(2842), 1, sym_or_block, - STATE(4199), 1, + STATE(4162), 1, sym_type_parameters, - ACTIONS(4829), 2, + ACTIONS(2232), 2, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + ACTIONS(4957), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, + ACTIONS(4951), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4831), 4, + ACTIONS(4955), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4959), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4821), 5, + ACTIONS(4953), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67686] = 28, + [67176] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4679), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4681), 1, + ACTIONS(4506), 1, anon_sym_QMARK, - ACTIONS(4683), 1, + ACTIONS(4508), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(4510), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4512), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4522), 1, + anon_sym_AMP_AMP, + ACTIONS(4524), 1, + anon_sym_in, + ACTIONS(4526), 1, + anon_sym_BANGin, + ACTIONS(4530), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4532), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4534), 1, anon_sym_DASH_DASH, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, - anon_sym_AMP_AMP, - ACTIONS(4805), 1, + ACTIONS(4536), 1, anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, + ACTIONS(4538), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4540), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4542), 1, anon_sym_BANGis, - ACTIONS(4813), 1, - anon_sym_in, - ACTIONS(4815), 1, - anon_sym_BANGin, - STATE(2404), 1, + ACTIONS(4997), 1, + anon_sym_COLON, + ACTIONS(4999), 1, + anon_sym_CARET, + ACTIONS(5001), 1, + anon_sym_LT_DASH, + STATE(2085), 1, sym_argument_list, - STATE(2408), 1, + STATE(2086), 1, sym_or_block, - STATE(4199), 1, + STATE(4280), 1, sym_type_parameters, - ACTIONS(3305), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(4687), 2, + ACTIONS(4500), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4793), 2, + ACTIONS(4518), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4787), 3, + ACTIONS(4514), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4791), 3, + ACTIONS(4516), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4795), 4, + ACTIONS(4520), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4789), 5, + ACTIONS(4995), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67785] = 29, + [67277] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(4889), 1, + anon_sym_DOT, + ACTIONS(4891), 1, anon_sym_LPAREN, - ACTIONS(4679), 1, + ACTIONS(4903), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, + ACTIONS(4905), 1, + anon_sym_QMARK, + ACTIONS(4907), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(4909), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_QMARK_DOT, + ACTIONS(4915), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4917), 1, + anon_sym_in, + ACTIONS(4919), 1, + anon_sym_BANGin, + ACTIONS(4921), 1, + anon_sym_AMP_AMP, + ACTIONS(4923), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4925), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4927), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4929), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4931), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4933), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4935), 1, anon_sym_BANGis, - ACTIONS(4843), 1, - anon_sym_LBRACE, - ACTIONS(5001), 1, - anon_sym_CARET, ACTIONS(5003), 1, - anon_sym_AMP_AMP, + anon_sym_DOT_DOT_DOT, ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5029), 1, - anon_sym_QMARK, - STATE(1924), 1, - sym_block, - STATE(2404), 1, + anon_sym_DOT_DOT, + STATE(2838), 1, sym_argument_list, - STATE(2408), 1, + STATE(2842), 1, sym_or_block, - STATE(4199), 1, + STATE(4162), 1, sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, + ACTIONS(4899), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4989), 3, + ACTIONS(4893), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 3, + ACTIONS(4897), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4997), 4, + ACTIONS(4901), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4991), 5, + ACTIONS(4895), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67886] = 4, + [67380] = 6, ACTIONS(3), 1, sym_comment, - STATE(2741), 1, - sym_type_parameters, - ACTIONS(2704), 13, + ACTIONS(5007), 1, + anon_sym_LBRACE, + ACTIONS(5009), 1, + anon_sym_COMMA, + STATE(3943), 1, + aux_sym_match_expression_list_repeat1, + ACTIONS(2794), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -250411,10 +250659,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2702), 27, + ACTIONS(2792), 25, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -250439,809 +250685,737 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67937] = 28, + [67435] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(4677), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, ACTIONS(4689), 1, + anon_sym_QMARK_DOT, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4947), 1, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(4847), 1, anon_sym_CARET, - ACTIONS(4949), 1, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - ACTIONS(4951), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4953), 1, + ACTIONS(4855), 1, anon_sym_in, - ACTIONS(4955), 1, + ACTIONS(4857), 1, anon_sym_BANGin, - ACTIONS(5031), 1, - anon_sym_is, - ACTIONS(5033), 1, - anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(4883), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5011), 1, + anon_sym_RBRACK, + ACTIONS(5013), 1, + anon_sym_DOT_DOT, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(2122), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4943), 2, + ACTIONS(4849), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4937), 3, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4941), 3, + ACTIONS(4845), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4945), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4939), 5, + ACTIONS(4843), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68036] = 30, + [67538] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_LBRACK, ACTIONS(4685), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4827), 1, + ACTIONS(4877), 1, + anon_sym_LBRACE, + ACTIONS(5025), 1, + anon_sym_QMARK, + ACTIONS(5027), 1, anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, + ACTIONS(5029), 1, anon_sym_AMP_AMP, - ACTIONS(4849), 1, + ACTIONS(5031), 1, anon_sym_PIPE_PIPE, - ACTIONS(5027), 1, - anon_sym_DOT_DOT, + ACTIONS(5033), 1, + anon_sym_in, ACTIONS(5035), 1, - anon_sym_RBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + anon_sym_BANGin, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(2656), 1, + sym_block, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4829), 2, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5021), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, + ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4831), 4, + ACTIONS(5019), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4821), 5, + ACTIONS(5017), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68139] = 30, + [67639] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, ACTIONS(4677), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(4687), 1, - anon_sym_QMARK_DOT, + anon_sym_LBRACK2, ACTIONS(4689), 1, + anon_sym_QMARK_DOT, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4827), 1, + ACTIONS(4847), 1, anon_sym_CARET, - ACTIONS(4833), 1, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(4857), 1, anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, + ACTIONS(4883), 1, anon_sym_PIPE_PIPE, - ACTIONS(5027), 1, + ACTIONS(5013), 1, anon_sym_DOT_DOT, ACTIONS(5037), 1, anon_sym_RBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4829), 2, + ACTIONS(4849), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4831), 4, + ACTIONS(4845), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4851), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4821), 5, + ACTIONS(4843), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68242] = 29, + [67742] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4847), 1, - anon_sym_LBRACE, - ACTIONS(5001), 1, + ACTIONS(4821), 1, anon_sym_CARET, - ACTIONS(5003), 1, + ACTIONS(4823), 1, anon_sym_AMP_AMP, - ACTIONS(5005), 1, + ACTIONS(4825), 1, anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(4833), 1, anon_sym_in, - ACTIONS(5009), 1, + ACTIONS(4835), 1, anon_sym_BANGin, - ACTIONS(5039), 1, - anon_sym_QMARK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(2460), 1, - sym_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4995), 2, + ACTIONS(4813), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4989), 3, + ACTIONS(5039), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(4807), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 3, + ACTIONS(4811), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4997), 4, + ACTIONS(4815), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4991), 5, + ACTIONS(4809), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68343] = 30, + [67841] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, ACTIONS(4677), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(4687), 1, - anon_sym_QMARK_DOT, + anon_sym_LBRACK2, ACTIONS(4689), 1, + anon_sym_QMARK_DOT, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4827), 1, + ACTIONS(4847), 1, anon_sym_CARET, - ACTIONS(4833), 1, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(4857), 1, anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, + ACTIONS(4883), 1, anon_sym_PIPE_PIPE, - ACTIONS(5027), 1, + ACTIONS(5013), 1, anon_sym_DOT_DOT, ACTIONS(5041), 1, anon_sym_RBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [68446] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5043), 1, - anon_sym_LBRACE, - ACTIONS(5045), 1, - anon_sym_QMARK, - STATE(1162), 1, - sym_block, - STATE(2404), 1, + STATE(2378), 1, sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, + ACTIONS(4849), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4989), 3, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 3, + ACTIONS(4845), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4997), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4991), 5, + ACTIONS(4843), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68547] = 29, + [67944] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(4677), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, ACTIONS(4689), 1, + anon_sym_QMARK_DOT, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4865), 1, - anon_sym_LBRACE, - ACTIONS(5001), 1, + ACTIONS(4847), 1, anon_sym_CARET, - ACTIONS(5003), 1, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, + ACTIONS(4855), 1, anon_sym_in, - ACTIONS(5009), 1, + ACTIONS(4857), 1, anon_sym_BANGin, - ACTIONS(5047), 1, - anon_sym_QMARK, - STATE(1920), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(4883), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5013), 1, + anon_sym_DOT_DOT, + ACTIONS(5043), 1, + anon_sym_RBRACK, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, + ACTIONS(4849), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4989), 3, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 3, + ACTIONS(4845), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4997), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4991), 5, + ACTIONS(4843), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68648] = 30, + [68047] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, ACTIONS(4677), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(4687), 1, - anon_sym_QMARK_DOT, + anon_sym_LBRACK2, ACTIONS(4689), 1, + anon_sym_QMARK_DOT, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4827), 1, + ACTIONS(4847), 1, anon_sym_CARET, - ACTIONS(4833), 1, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(4857), 1, anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, + ACTIONS(4883), 1, anon_sym_PIPE_PIPE, - ACTIONS(5027), 1, + ACTIONS(5013), 1, anon_sym_DOT_DOT, - ACTIONS(5049), 1, + ACTIONS(5045), 1, anon_sym_RBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4829), 2, + ACTIONS(4849), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4831), 4, + ACTIONS(4845), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4851), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4821), 5, + ACTIONS(4843), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68751] = 30, + [68150] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_LBRACK, ACTIONS(4685), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4827), 1, + ACTIONS(4879), 1, + anon_sym_LBRACE, + ACTIONS(5027), 1, anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, + ACTIONS(5029), 1, anon_sym_AMP_AMP, - ACTIONS(4849), 1, + ACTIONS(5031), 1, anon_sym_PIPE_PIPE, - ACTIONS(5027), 1, - anon_sym_DOT_DOT, - ACTIONS(5051), 1, - anon_sym_RBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(5033), 1, + anon_sym_in, + ACTIONS(5035), 1, + anon_sym_BANGin, + ACTIONS(5047), 1, + anon_sym_QMARK, + STATE(1787), 1, + sym_block, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4829), 2, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5021), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, + ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4831), 4, + ACTIONS(5019), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4821), 5, + ACTIONS(5017), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68854] = 29, + [68251] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_BANG, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4867), 1, + ACTIONS(4881), 1, anon_sym_LBRACE, - ACTIONS(5001), 1, + ACTIONS(5027), 1, anon_sym_CARET, - ACTIONS(5003), 1, + ACTIONS(5029), 1, anon_sym_AMP_AMP, - ACTIONS(5005), 1, + ACTIONS(5031), 1, anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, + ACTIONS(5033), 1, anon_sym_in, - ACTIONS(5009), 1, + ACTIONS(5035), 1, anon_sym_BANGin, - ACTIONS(5053), 1, + ACTIONS(5049), 1, anon_sym_QMARK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(2867), 1, + STATE(2378), 1, + sym_argument_list, + STATE(2438), 1, sym_block, - STATE(4199), 1, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4995), 2, + ACTIONS(5021), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4989), 3, + ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 3, + ACTIONS(5019), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4997), 4, + ACTIONS(5023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4991), 5, + ACTIONS(5017), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68955] = 28, + [68352] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4801), 1, + ACTIONS(4821), 1, anon_sym_CARET, - ACTIONS(4803), 1, + ACTIONS(4823), 1, anon_sym_AMP_AMP, - ACTIONS(4805), 1, + ACTIONS(4825), 1, anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4813), 1, - anon_sym_in, - ACTIONS(4815), 1, - anon_sym_BANGin, - ACTIONS(5031), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(5033), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(4833), 1, + anon_sym_in, + ACTIONS(4835), 1, + anon_sym_BANGin, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(2122), 2, + ACTIONS(3309), 2, anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4793), 2, + ACTIONS(4813), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4787), 3, + ACTIONS(4807), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4791), 3, + ACTIONS(4811), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4795), 4, + ACTIONS(4815), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4789), 5, + ACTIONS(4809), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69054] = 5, + [68451] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 1, + ACTIONS(2745), 1, anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(2844), 1, anon_sym_LBRACE, - ACTIONS(2772), 11, + ACTIONS(2740), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -251253,7 +251427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2770), 28, + ACTIONS(2738), 28, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -251282,234 +251456,300 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [69107] = 29, + [68504] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_BANG, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5001), 1, + ACTIONS(5027), 1, anon_sym_CARET, - ACTIONS(5003), 1, + ACTIONS(5029), 1, anon_sym_AMP_AMP, - ACTIONS(5005), 1, + ACTIONS(5031), 1, anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, + ACTIONS(5033), 1, anon_sym_in, - ACTIONS(5009), 1, + ACTIONS(5035), 1, anon_sym_BANGin, - ACTIONS(5055), 1, + ACTIONS(5051), 1, anon_sym_LBRACE, - ACTIONS(5057), 1, + ACTIONS(5053), 1, anon_sym_QMARK, - STATE(997), 1, + STATE(1304), 1, sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4995), 2, + ACTIONS(5021), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4989), 3, + ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 3, + ACTIONS(5019), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4997), 4, + ACTIONS(5023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4991), 5, + ACTIONS(5017), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69208] = 30, + [68605] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, + ACTIONS(4679), 1, anon_sym_LPAREN, - ACTIONS(4895), 1, + ACTIONS(4681), 1, anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, + ACTIONS(4685), 1, anon_sym_BANG, - ACTIONS(4901), 1, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4903), 1, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(5027), 1, anon_sym_CARET, - ACTIONS(4905), 1, + ACTIONS(5029), 1, anon_sym_AMP_AMP, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4911), 1, + ACTIONS(5031), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5033), 1, anon_sym_in, - ACTIONS(4913), 1, + ACTIONS(5035), 1, anon_sym_BANGin, - ACTIONS(4917), 1, + ACTIONS(5055), 1, + anon_sym_LBRACE, + ACTIONS(5057), 1, + anon_sym_QMARK, + STATE(998), 1, + sym_block, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5021), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5015), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5019), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5023), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5017), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [68706] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4919), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4921), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4923), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4925), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4927), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4929), 1, + ACTIONS(4831), 1, anon_sym_BANGis, + ACTIONS(4869), 1, + anon_sym_LBRACE, + ACTIONS(5027), 1, + anon_sym_CARET, + ACTIONS(5029), 1, + anon_sym_AMP_AMP, + ACTIONS(5031), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5033), 1, + anon_sym_in, + ACTIONS(5035), 1, + anon_sym_BANGin, ACTIONS(5059), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5061), 1, - anon_sym_DOT_DOT, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, + anon_sym_QMARK, + STATE(2325), 1, sym_or_block, - STATE(4158), 1, + STATE(2378), 1, + sym_argument_list, + STATE(2884), 1, + sym_block, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4891), 2, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5021), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4885), 3, + ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4889), 3, + ACTIONS(5019), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4893), 4, + ACTIONS(5023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4887), 5, + ACTIONS(5017), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69311] = 30, + [68807] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, + ACTIONS(4462), 1, + anon_sym_LBRACE, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_LBRACK, ACTIONS(4685), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4827), 1, + ACTIONS(5027), 1, anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, + ACTIONS(5029), 1, anon_sym_AMP_AMP, - ACTIONS(4849), 1, + ACTIONS(5031), 1, anon_sym_PIPE_PIPE, - ACTIONS(5027), 1, - anon_sym_DOT_DOT, - ACTIONS(5063), 1, - anon_sym_RBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(5033), 1, + anon_sym_in, + ACTIONS(5035), 1, + anon_sym_BANGin, + ACTIONS(5061), 1, + anon_sym_QMARK, + STATE(1675), 1, + sym_block, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4829), 2, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5021), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, + ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4831), 4, + ACTIONS(5019), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4821), 5, + ACTIONS(5017), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69414] = 6, + [68908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5065), 1, - anon_sym_LBRACE, - ACTIONS(5067), 1, - anon_sym_COMMA, - STATE(3986), 1, - aux_sym_match_expression_list_repeat1, - ACTIONS(2880), 13, + ACTIONS(5063), 1, + anon_sym_DOLLARelse, + ACTIONS(2758), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -251523,8 +251763,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2878), 25, + ACTIONS(2756), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -251549,242 +251791,389 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69469] = 30, + [68959] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4675), 1, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(5027), 1, + anon_sym_CARET, + ACTIONS(5029), 1, + anon_sym_AMP_AMP, + ACTIONS(5031), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5033), 1, + anon_sym_in, + ACTIONS(5035), 1, + anon_sym_BANGin, + ACTIONS(5065), 1, + anon_sym_LBRACE, + ACTIONS(5067), 1, + anon_sym_QMARK, + STATE(1165), 1, + sym_block, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5021), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5015), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5019), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5023), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5017), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [69060] = 30, + ACTIONS(3), 1, + sym_comment, ACTIONS(4677), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(4687), 1, - anon_sym_QMARK_DOT, + anon_sym_LBRACK2, ACTIONS(4689), 1, + anon_sym_QMARK_DOT, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4827), 1, + ACTIONS(4847), 1, anon_sym_CARET, - ACTIONS(4833), 1, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(4857), 1, anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, + ACTIONS(4883), 1, anon_sym_PIPE_PIPE, - ACTIONS(5027), 1, + ACTIONS(5013), 1, anon_sym_DOT_DOT, ACTIONS(5069), 1, anon_sym_RBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4829), 2, + ACTIONS(4849), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4831), 4, + ACTIONS(4845), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4851), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4821), 5, + ACTIONS(4843), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69572] = 28, + [69163] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4801), 1, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(4803), 1, + ACTIONS(4975), 1, anon_sym_AMP_AMP, - ACTIONS(4805), 1, + ACTIONS(4977), 1, + anon_sym_in, + ACTIONS(4979), 1, + anon_sym_BANGin, + ACTIONS(4991), 1, anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, + ACTIONS(5071), 1, + anon_sym_is, + ACTIONS(5073), 1, + anon_sym_BANGis, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(2170), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4971), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4943), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4947), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4973), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4945), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [69262] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4813), 1, + ACTIONS(5027), 1, + anon_sym_CARET, + ACTIONS(5029), 1, + anon_sym_AMP_AMP, + ACTIONS(5031), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5033), 1, anon_sym_in, - ACTIONS(4815), 1, + ACTIONS(5035), 1, anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(5075), 1, + anon_sym_LBRACE, + ACTIONS(5077), 1, + anon_sym_QMARK, + STATE(458), 1, + sym_block, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4793), 2, + ACTIONS(5021), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5071), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(4787), 3, + ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4791), 3, + ACTIONS(5019), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4795), 4, + ACTIONS(5023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4789), 5, + ACTIONS(5017), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69671] = 29, + [69363] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(4677), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, ACTIONS(4689), 1, + anon_sym_QMARK_DOT, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5001), 1, + ACTIONS(4847), 1, anon_sym_CARET, - ACTIONS(5003), 1, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, + ACTIONS(4855), 1, anon_sym_in, - ACTIONS(5009), 1, + ACTIONS(4857), 1, anon_sym_BANGin, - ACTIONS(5073), 1, - anon_sym_LBRACE, - ACTIONS(5075), 1, - anon_sym_QMARK, - STATE(1299), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(4883), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5013), 1, + anon_sym_DOT_DOT, + ACTIONS(5079), 1, + anon_sym_RBRACK, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, + ACTIONS(4849), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4989), 3, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 3, + ACTIONS(4845), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4997), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4991), 5, + ACTIONS(4843), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69772] = 4, + [69466] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5077), 1, - anon_sym_DOLLARelse, - ACTIONS(2734), 13, + ACTIONS(4586), 1, anon_sym_DOT, + ACTIONS(5083), 1, + anon_sym_QMARK, + ACTIONS(5081), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(3118), 10, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2732), 27, + ACTIONS(3116), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -251795,7 +252184,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, @@ -251812,85 +252200,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69823] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5027), 1, - anon_sym_DOT_DOT, - ACTIONS(5079), 1, - anon_sym_RBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [69926] = 4, + anon_sym_COLON_EQ, + [69521] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5081), 1, + ACTIONS(5085), 1, anon_sym_DOLLARelse, - ACTIONS(2740), 13, + ACTIONS(2616), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -251904,7 +252220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2738), 27, + ACTIONS(2614), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -251932,444 +252248,371 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69977] = 30, + [69572] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, ACTIONS(4677), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(4687), 1, - anon_sym_QMARK_DOT, + anon_sym_LBRACK2, ACTIONS(4689), 1, + anon_sym_QMARK_DOT, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4827), 1, + ACTIONS(4847), 1, anon_sym_CARET, - ACTIONS(4833), 1, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(4857), 1, anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, + ACTIONS(4883), 1, anon_sym_PIPE_PIPE, - ACTIONS(5027), 1, + ACTIONS(5013), 1, anon_sym_DOT_DOT, - ACTIONS(5083), 1, + ACTIONS(5087), 1, anon_sym_RBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4829), 2, + ACTIONS(4849), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4831), 4, + ACTIONS(4845), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4851), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4821), 5, + ACTIONS(4843), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70080] = 29, + [69675] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_BANG, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5001), 1, + ACTIONS(4839), 1, + anon_sym_LBRACE, + ACTIONS(5027), 1, anon_sym_CARET, - ACTIONS(5003), 1, + ACTIONS(5029), 1, anon_sym_AMP_AMP, - ACTIONS(5005), 1, + ACTIONS(5031), 1, anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, + ACTIONS(5033), 1, anon_sym_in, - ACTIONS(5009), 1, + ACTIONS(5035), 1, anon_sym_BANGin, - ACTIONS(5085), 1, - anon_sym_LBRACE, - ACTIONS(5087), 1, + ACTIONS(5089), 1, anon_sym_QMARK, - STATE(2160), 1, + STATE(1928), 1, sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4995), 2, + ACTIONS(5021), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4989), 3, + ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 3, + ACTIONS(5019), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4997), 4, + ACTIONS(5023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4991), 5, + ACTIONS(5017), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70181] = 29, + [69776] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4879), 1, - anon_sym_LBRACE, - ACTIONS(5001), 1, + ACTIONS(4949), 1, anon_sym_CARET, - ACTIONS(5003), 1, + ACTIONS(4975), 1, anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, + ACTIONS(4977), 1, anon_sym_in, - ACTIONS(5009), 1, + ACTIONS(4979), 1, anon_sym_BANGin, - ACTIONS(5089), 1, - anon_sym_QMARK, - STATE(1783), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(4991), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5091), 1, + anon_sym_is, + ACTIONS(5093), 1, + anon_sym_BANGis, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(2170), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4995), 2, + ACTIONS(4971), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4989), 3, + ACTIONS(4943), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 3, + ACTIONS(4947), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4997), 4, + ACTIONS(4973), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4991), 5, + ACTIONS(4945), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70282] = 30, + [69875] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, ACTIONS(4677), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(4687), 1, - anon_sym_QMARK_DOT, + anon_sym_LBRACK2, ACTIONS(4689), 1, + anon_sym_QMARK_DOT, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4827), 1, + ACTIONS(4847), 1, anon_sym_CARET, - ACTIONS(4833), 1, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(4857), 1, anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, + ACTIONS(4883), 1, anon_sym_PIPE_PIPE, - ACTIONS(5027), 1, + ACTIONS(5013), 1, anon_sym_DOT_DOT, - ACTIONS(5091), 1, + ACTIONS(5095), 1, anon_sym_RBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4829), 2, + ACTIONS(4849), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [70385] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5027), 1, - anon_sym_DOT_DOT, - ACTIONS(5093), 1, - anon_sym_RBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, + ACTIONS(4845), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4821), 5, + ACTIONS(4843), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70488] = 28, + [69978] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_LBRACK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4947), 1, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(5027), 1, anon_sym_CARET, - ACTIONS(4949), 1, + ACTIONS(5029), 1, anon_sym_AMP_AMP, - ACTIONS(4951), 1, + ACTIONS(5031), 1, anon_sym_PIPE_PIPE, - ACTIONS(4953), 1, + ACTIONS(5033), 1, anon_sym_in, - ACTIONS(4955), 1, + ACTIONS(5035), 1, anon_sym_BANGin, - ACTIONS(5095), 1, - anon_sym_is, ACTIONS(5097), 1, - anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + anon_sym_LBRACE, + ACTIONS(5099), 1, + anon_sym_QMARK, + STATE(2166), 1, + sym_block, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(2122), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4943), 2, + ACTIONS(5021), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4937), 3, + ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4941), 3, + ACTIONS(5019), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4945), 4, + ACTIONS(5023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4939), 5, + ACTIONS(5017), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70587] = 3, + [70079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2700), 13, + ACTIONS(2838), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -252383,7 +252626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2698), 28, + ACTIONS(2836), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -252412,154 +252655,302 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [70636] = 29, + [70128] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_BANG, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4877), 1, + ACTIONS(4885), 1, anon_sym_LBRACE, - ACTIONS(5001), 1, + ACTIONS(5027), 1, anon_sym_CARET, - ACTIONS(5003), 1, + ACTIONS(5029), 1, anon_sym_AMP_AMP, - ACTIONS(5005), 1, + ACTIONS(5031), 1, anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, + ACTIONS(5033), 1, anon_sym_in, - ACTIONS(5009), 1, + ACTIONS(5035), 1, anon_sym_BANGin, - ACTIONS(5099), 1, + ACTIONS(5101), 1, anon_sym_QMARK, - STATE(2306), 1, + STATE(1924), 1, sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4995), 2, + ACTIONS(5021), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4989), 3, + ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 3, + ACTIONS(5019), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4997), 4, + ACTIONS(5023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4991), 5, + ACTIONS(5017), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70737] = 29, + [70229] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(4677), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, anon_sym_LBRACK, ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4689), 1, + anon_sym_QMARK_DOT, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(4847), 1, + anon_sym_CARET, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, + anon_sym_in, + ACTIONS(4857), 1, + anon_sym_BANGin, + ACTIONS(4883), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5013), 1, + anon_sym_DOT_DOT, + ACTIONS(5103), 1, + anon_sym_RBRACK, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4849), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4841), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4845), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4851), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4843), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [70332] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4677), 1, + anon_sym_DOT, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, ACTIONS(4689), 1, + anon_sym_QMARK_DOT, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(4847), 1, + anon_sym_CARET, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, + anon_sym_in, + ACTIONS(4857), 1, + anon_sym_BANGin, + ACTIONS(4883), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5013), 1, + anon_sym_DOT_DOT, + ACTIONS(5105), 1, + anon_sym_RBRACK, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4849), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4841), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4845), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4851), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4843), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [70435] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5001), 1, + ACTIONS(4859), 1, + anon_sym_LBRACE, + ACTIONS(5027), 1, anon_sym_CARET, - ACTIONS(5003), 1, + ACTIONS(5029), 1, anon_sym_AMP_AMP, - ACTIONS(5005), 1, + ACTIONS(5031), 1, anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, + ACTIONS(5033), 1, anon_sym_in, - ACTIONS(5009), 1, + ACTIONS(5035), 1, anon_sym_BANGin, - ACTIONS(5101), 1, - anon_sym_LBRACE, - ACTIONS(5103), 1, + ACTIONS(5107), 1, anon_sym_QMARK, - STATE(569), 1, + STATE(2320), 1, sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4995), 2, + ACTIONS(5021), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4989), 3, + ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 3, + ACTIONS(5019), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4997), 4, + ACTIONS(5023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4991), 5, + ACTIONS(5017), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70838] = 3, + [70536] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 13, + STATE(2745), 1, + sym_type_parameters, + ACTIONS(2764), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -252573,7 +252964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2983), 27, + ACTIONS(2762), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -252601,171 +252992,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70886] = 28, + [70587] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(4677), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, ACTIONS(4689), 1, + anon_sym_QMARK_DOT, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5105), 1, - anon_sym_RPAREN, - ACTIONS(5117), 1, + ACTIONS(4847), 1, anon_sym_CARET, - ACTIONS(5119), 1, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, + ACTIONS(4855), 1, anon_sym_in, - ACTIONS(5125), 1, + ACTIONS(4857), 1, anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(4883), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5013), 1, + anon_sym_DOT_DOT, + ACTIONS(5109), 1, + anon_sym_RBRACK, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, + ACTIONS(4849), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5107), 3, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5111), 3, + ACTIONS(4845), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5115), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5109), 5, + ACTIONS(4843), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70984] = 4, + [70690] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2886), 1, - anon_sym_DOT, - ACTIONS(2884), 12, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, anon_sym_QMARK, + ACTIONS(4685), 1, anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2882), 27, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 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(4817), 1, anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, anon_sym_DASH_DASH, + ACTIONS(4821), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(4823), 1, anon_sym_AMP_AMP, + ACTIONS(4825), 1, anon_sym_PIPE_PIPE, + ACTIONS(4827), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(4833), 1, anon_sym_in, + ACTIONS(4835), 1, anon_sym_BANGin, - [71034] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2891), 13, + ACTIONS(5071), 1, + anon_sym_is, + ACTIONS(5073), 1, + anon_sym_BANGis, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(2170), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(4689), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4813), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4807), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4811), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2889), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(4815), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(4809), 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, - [71082] = 3, + [70789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3153), 13, + ACTIONS(2694), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -252779,7 +253153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3151), 27, + ACTIONS(2692), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -252807,10 +253181,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71130] = 3, + anon_sym_COLON_EQ, + [70838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2766), 13, + ACTIONS(3042), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -252824,7 +253199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2768), 27, + ACTIONS(3040), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -252852,81 +253227,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71178] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5127), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [71276] = 3, + [70886] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 13, - anon_sym_DOT, + ACTIONS(2786), 1, + anon_sym_LBRACE, + ACTIONS(2694), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -252938,10 +253244,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2830), 27, + ACTIONS(2692), 28, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, @@ -252950,7 +253256,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, @@ -252967,496 +253272,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71324] = 28, + anon_sym_COLON_EQ, + [70936] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, + ACTIONS(5027), 1, anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5129), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, + ACTIONS(2162), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5107), 3, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5111), 3, + ACTIONS(5019), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, + ACTIONS(5017), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [71422] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5131), 1, - sym_identifier, - ACTIONS(5133), 1, - anon_sym_RPAREN, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - STATE(3028), 1, - sym_mutability_modifiers, - STATE(4000), 1, - sym_type_parameter_declaration, - STATE(4004), 1, - sym_parameter_declaration, - STATE(4382), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 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, - [71516] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(2160), 15, anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5147), 1, anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [71614] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, anon_sym_AMP_AMP, - ACTIONS(5121), 1, anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5149), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [71712] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5131), 1, - sym_identifier, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - ACTIONS(5151), 1, - anon_sym_RPAREN, - STATE(3028), 1, - sym_mutability_modifiers, - STATE(3994), 1, - sym_type_parameter_declaration, - STATE(3996), 1, - sym_parameter_declaration, - STATE(4382), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 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, - [71806] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, anon_sym_or, - ACTIONS(4809), 1, anon_sym_is, - ACTIONS(4811), 1, anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, anon_sym_in, - ACTIONS(5125), 1, anon_sym_BANGin, - ACTIONS(5153), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [71904] = 28, + [71012] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5001), 1, + ACTIONS(5027), 1, anon_sym_CARET, - ACTIONS(5003), 1, + ACTIONS(5029), 1, anon_sym_AMP_AMP, - ACTIONS(5005), 1, + ACTIONS(5031), 1, anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, + ACTIONS(5033), 1, anon_sym_in, - ACTIONS(5009), 1, + ACTIONS(5035), 1, anon_sym_BANGin, - ACTIONS(5155), 1, + ACTIONS(5111), 1, anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4995), 2, + ACTIONS(5021), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4989), 3, + ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 3, + ACTIONS(5019), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4997), 4, + ACTIONS(5023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4991), 5, + ACTIONS(5017), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72002] = 3, + [71110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3049), 13, + ACTIONS(3163), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -253470,7 +253419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3047), 27, + ACTIONS(3161), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253498,13 +253447,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72050] = 4, + [71158] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2768), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2967), 11, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(5113), 1, + anon_sym_RPAREN, + ACTIONS(5125), 1, + anon_sym_CARET, + ACTIONS(5127), 1, + anon_sym_AMP_AMP, + ACTIONS(5129), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5131), 1, + anon_sym_in, + ACTIONS(5133), 1, + anon_sym_BANGin, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5121), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5115), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5119), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5123), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5117), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [71256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3195), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -253516,9 +253533,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2965), 27, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3193), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -253526,12 +253545,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, @@ -253544,10 +253562,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72100] = 3, + [71304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2997), 13, + ACTIONS(2784), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -253561,7 +253579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2995), 27, + ACTIONS(2786), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253589,401 +253607,418 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72148] = 28, + [71352] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5001), 1, + ACTIONS(5125), 1, anon_sym_CARET, - ACTIONS(5003), 1, + ACTIONS(5127), 1, anon_sym_AMP_AMP, - ACTIONS(5005), 1, + ACTIONS(5129), 1, anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, + ACTIONS(5131), 1, anon_sym_in, - ACTIONS(5009), 1, + ACTIONS(5133), 1, anon_sym_BANGin, - ACTIONS(5157), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(5135), 1, + anon_sym_RPAREN, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4995), 2, + ACTIONS(5121), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4989), 3, + ACTIONS(5115), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 3, + ACTIONS(5119), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4997), 4, + ACTIONS(5123), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4991), 5, + ACTIONS(5117), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72246] = 3, + [71450] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3005), 13, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5027), 1, + anon_sym_CARET, + ACTIONS(5033), 1, + anon_sym_in, + ACTIONS(5035), 1, + anon_sym_BANGin, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5021), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5019), 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(3003), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5023), 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(5017), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2160), 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_is, + anon_sym_BANGis, + [71532] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, anon_sym_is, + ACTIONS(4831), 1, anon_sym_BANGis, + ACTIONS(5125), 1, + anon_sym_CARET, + ACTIONS(5127), 1, + anon_sym_AMP_AMP, + ACTIONS(5129), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5131), 1, anon_sym_in, + ACTIONS(5133), 1, anon_sym_BANGin, - [72294] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3157), 13, + ACTIONS(5137), 1, + anon_sym_RPAREN, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5121), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5115), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5119), 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(3155), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5123), 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(5117), 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, - [72342] = 28, + [71630] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5117), 1, + ACTIONS(5027), 1, anon_sym_CARET, - ACTIONS(5119), 1, + ACTIONS(5029), 1, anon_sym_AMP_AMP, - ACTIONS(5121), 1, + ACTIONS(5031), 1, anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, + ACTIONS(5033), 1, anon_sym_in, - ACTIONS(5125), 1, + ACTIONS(5035), 1, anon_sym_BANGin, - ACTIONS(5159), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(5139), 1, + anon_sym_LBRACE, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5113), 2, + ACTIONS(5021), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5107), 3, + ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5111), 3, + ACTIONS(5019), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5115), 4, + ACTIONS(5023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5109), 5, + ACTIONS(5017), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72440] = 3, + [71728] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3033), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, anon_sym_QMARK, + ACTIONS(4685), 1, anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3031), 27, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 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(4817), 1, anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4827), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4829), 1, anon_sym_is, + ACTIONS(4831), 1, anon_sym_BANGis, + ACTIONS(5125), 1, + anon_sym_CARET, + ACTIONS(5127), 1, + anon_sym_AMP_AMP, + ACTIONS(5129), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5131), 1, anon_sym_in, + ACTIONS(5133), 1, anon_sym_BANGin, - [72488] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2923), 13, + ACTIONS(5141), 1, + anon_sym_RPAREN, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5121), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5115), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5119), 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(2921), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5123), 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(5117), 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, - [72536] = 28, + [71826] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4827), 1, + ACTIONS(5027), 1, anon_sym_CARET, - ACTIONS(4833), 1, + ACTIONS(5029), 1, + anon_sym_AMP_AMP, + ACTIONS(5033), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(5035), 1, anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5161), 1, - anon_sym_RBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4829), 2, + ACTIONS(5021), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, + ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4831), 4, + ACTIONS(5019), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4821), 5, + ACTIONS(5017), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72634] = 3, + ACTIONS(2160), 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, + [71910] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2848), 13, - anon_sym_DOT, + ACTIONS(2786), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2838), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -253995,11 +254030,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2846), 27, + ACTIONS(2836), 27, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -254007,11 +254040,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, @@ -254024,10 +254058,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72682] = 3, + [71960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3193), 13, + ACTIONS(2966), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254041,7 +254075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3191), 27, + ACTIONS(2964), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254069,10 +254103,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72730] = 3, + [72008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 13, + ACTIONS(3014), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254086,7 +254120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3035), 27, + ACTIONS(3012), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254114,125 +254148,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72778] = 28, + [72056] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5001), 1, + ACTIONS(5125), 1, anon_sym_CARET, - ACTIONS(5003), 1, + ACTIONS(5127), 1, anon_sym_AMP_AMP, - ACTIONS(5005), 1, + ACTIONS(5129), 1, anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, + ACTIONS(5131), 1, anon_sym_in, - ACTIONS(5009), 1, + ACTIONS(5133), 1, anon_sym_BANGin, - ACTIONS(5163), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(5143), 1, + anon_sym_RPAREN, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4995), 2, + ACTIONS(5121), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4989), 3, + ACTIONS(5115), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 3, + ACTIONS(5119), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4997), 4, + ACTIONS(5123), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [72876] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3001), 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(2999), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5117), 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, - [72924] = 3, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [72154] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3085), 13, + ACTIONS(2786), 1, + anon_sym_COMMA, + ACTIONS(2694), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254246,10 +254237,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3083), 27, + ACTIONS(2692), 26, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -254274,10 +254264,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72972] = 3, + [72204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2800), 13, + ACTIONS(3022), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254291,7 +254281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2798), 27, + ACTIONS(3020), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254319,55 +254309,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73020] = 3, + [72252] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, + anon_sym_STAR, + ACTIONS(5145), 1, + sym_identifier, + ACTIONS(5147), 1, + anon_sym_RPAREN, + ACTIONS(5149), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5151), 1, + anon_sym_mut, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5155), 1, + anon_sym_LBRACK2, + ACTIONS(5157), 1, + anon_sym_AMP, + ACTIONS(5159), 1, + anon_sym_shared, + STATE(3019), 1, + sym_mutability_modifiers, + STATE(4030), 1, + sym_type_parameter_declaration, + STATE(4081), 1, + sym_parameter_declaration, + STATE(4352), 1, + sym_plain_type, + STATE(4655), 1, + sym_reference_expression, + STATE(3547), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2415), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 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, + [72346] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 13, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5019), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2162), 5, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2802), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5017), 5, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2160), 16, + anon_sym_as, + anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73068] = 3, + [72418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2816), 13, + ACTIONS(3199), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254381,7 +254451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2814), 27, + ACTIONS(3197), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254409,10 +254479,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73116] = 3, + [72466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3045), 13, + ACTIONS(3203), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254426,7 +254496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3043), 27, + ACTIONS(3201), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254454,150 +254524,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73164] = 28, + [72514] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5001), 1, + ACTIONS(5027), 1, anon_sym_CARET, - ACTIONS(5003), 1, + ACTIONS(5029), 1, anon_sym_AMP_AMP, - ACTIONS(5005), 1, + ACTIONS(5031), 1, anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, + ACTIONS(5033), 1, anon_sym_in, - ACTIONS(5009), 1, + ACTIONS(5035), 1, anon_sym_BANGin, - ACTIONS(5165), 1, + ACTIONS(5161), 1, anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4995), 2, + ACTIONS(5021), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4989), 3, + ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 3, + ACTIONS(5019), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4997), 4, + ACTIONS(5023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4991), 5, + ACTIONS(5017), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [73262] = 28, + [72612] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5117), 1, + ACTIONS(5027), 1, anon_sym_CARET, - ACTIONS(5119), 1, + ACTIONS(5029), 1, anon_sym_AMP_AMP, - ACTIONS(5121), 1, + ACTIONS(5031), 1, anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, + ACTIONS(5033), 1, anon_sym_in, - ACTIONS(5125), 1, + ACTIONS(5035), 1, anon_sym_BANGin, - ACTIONS(5167), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(5163), 1, + anon_sym_LBRACE, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5113), 2, + ACTIONS(5021), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5107), 3, + ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5111), 3, + ACTIONS(5019), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5115), 4, + ACTIONS(5023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5109), 5, + ACTIONS(5017), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [73360] = 3, + [72710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 13, + ACTIONS(3159), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254611,7 +254681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3051), 27, + ACTIONS(3157), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254639,10 +254709,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73408] = 3, + [72758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2981), 13, + ACTIONS(3155), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254656,7 +254726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2979), 27, + ACTIONS(3153), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254684,150 +254754,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73456] = 28, + [72806] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(4683), 1, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, + anon_sym_STAR, + ACTIONS(5145), 1, + sym_identifier, + ACTIONS(5149), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5151), 1, + anon_sym_mut, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5169), 1, - anon_sym_SEMI, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(5157), 1, + anon_sym_AMP, + ACTIONS(5159), 1, + anon_sym_shared, + ACTIONS(5165), 1, + anon_sym_RPAREN, + STATE(3019), 1, + sym_mutability_modifiers, + STATE(4074), 1, + sym_type_parameter_declaration, + STATE(4077), 1, + sym_parameter_declaration, + STATE(4352), 1, + sym_plain_type, + STATE(4655), 1, + sym_reference_expression, + STATE(3547), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2415), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 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, + [72900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3151), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4829), 2, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, + anon_sym_DOT_DOT, + ACTIONS(3149), 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(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [73554] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, anon_sym_CARET, - ACTIONS(5119), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5121), 1, anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(5125), 1, anon_sym_BANGin, - ACTIONS(5171), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, + [72948] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3133), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5111), 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(5115), 4, + anon_sym_DOT_DOT, + ACTIONS(3131), 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(5109), 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, - [73652] = 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [72996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3065), 13, + ACTIONS(3114), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254841,7 +254929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3063), 27, + ACTIONS(3112), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254869,10 +254957,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73700] = 3, + [73044] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5125), 1, + anon_sym_CARET, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(2162), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5115), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5119), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5117), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2160), 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, + [73120] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, + anon_sym_STAR, + ACTIONS(5145), 1, + sym_identifier, + ACTIONS(5149), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5151), 1, + anon_sym_mut, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5155), 1, + anon_sym_LBRACK2, + ACTIONS(5157), 1, + anon_sym_AMP, + ACTIONS(5159), 1, + anon_sym_shared, + ACTIONS(5167), 1, + anon_sym_RPAREN, + STATE(3019), 1, + sym_mutability_modifiers, + STATE(3954), 1, + sym_type_parameter_declaration, + STATE(3997), 1, + sym_parameter_declaration, + STATE(4352), 1, + sym_plain_type, + STATE(4655), 1, + sym_reference_expression, + STATE(3547), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2415), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 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, + [73214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3145), 13, + ACTIONS(3171), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254886,7 +255101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3143), 27, + ACTIONS(3169), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254914,10 +255129,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73748] = 3, + [73262] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, + anon_sym_STAR, + ACTIONS(5145), 1, + sym_identifier, + ACTIONS(5149), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5151), 1, + anon_sym_mut, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5155), 1, + anon_sym_LBRACK2, + ACTIONS(5157), 1, + anon_sym_AMP, + ACTIONS(5159), 1, + anon_sym_shared, + ACTIONS(5169), 1, + anon_sym_RPAREN, + STATE(3019), 1, + sym_mutability_modifiers, + STATE(3861), 1, + sym_parameter_declaration, + STATE(3862), 1, + sym_type_parameter_declaration, + STATE(4352), 1, + sym_plain_type, + STATE(4655), 1, + sym_reference_expression, + STATE(3547), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2415), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 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, + [73356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3141), 13, + ACTIONS(3183), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254931,7 +255214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3139), 27, + ACTIONS(3181), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254959,10 +255242,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73796] = 3, + [73404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3125), 13, + ACTIONS(3034), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254976,7 +255259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3123), 27, + ACTIONS(3032), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255004,10 +255287,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73844] = 3, + [73452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 13, + ACTIONS(3026), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255021,7 +255304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3115), 27, + ACTIONS(3024), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255049,10 +255332,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73892] = 3, + [73500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3077), 13, + ACTIONS(2902), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255066,7 +255349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3075), 27, + ACTIONS(2900), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255094,10 +255377,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73940] = 3, + [73548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3073), 13, + ACTIONS(2898), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255111,7 +255394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3071), 27, + ACTIONS(2896), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255139,78 +255422,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73988] = 26, + [73596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5131), 1, - sym_identifier, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - ACTIONS(5173), 1, - anon_sym_RPAREN, - STATE(3028), 1, - sym_mutability_modifiers, - STATE(4043), 1, - sym_parameter_declaration, - STATE(4044), 1, - sym_type_parameter_declaration, - STATE(4382), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 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, - [74082] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2812), 13, + ACTIONS(2890), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255224,7 +255439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2810), 27, + ACTIONS(2888), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255252,10 +255467,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74130] = 3, + [73644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2796), 13, + ACTIONS(2950), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255269,7 +255484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2794), 27, + ACTIONS(2948), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255297,10 +255512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74178] = 3, + [73692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3149), 13, + ACTIONS(2946), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255314,7 +255529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3147), 27, + ACTIONS(2944), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255342,80 +255557,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74226] = 28, + [73740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2122), 1, - anon_sym_LBRACE, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5031), 1, - anon_sym_is, - ACTIONS(5033), 1, - anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [74324] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3181), 13, + ACTIONS(2942), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255429,7 +255574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3179), 27, + ACTIONS(2940), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255457,10 +255602,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74372] = 3, + [73788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3185), 13, + ACTIONS(2938), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255474,7 +255619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3183), 27, + ACTIONS(2936), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255502,10 +255647,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74420] = 3, + [73836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3189), 13, + ACTIONS(2918), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255519,7 +255664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3187), 27, + ACTIONS(2916), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255547,10 +255692,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74468] = 3, + [73884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2989), 13, + ACTIONS(2906), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255564,7 +255709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2987), 27, + ACTIONS(2904), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255592,10 +255737,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74516] = 3, + [73932] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(5027), 1, + anon_sym_CARET, + ACTIONS(5029), 1, + anon_sym_AMP_AMP, + ACTIONS(5031), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5033), 1, + anon_sym_in, + ACTIONS(5035), 1, + anon_sym_BANGin, + ACTIONS(5171), 1, + anon_sym_LBRACE, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5021), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5015), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5019), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5023), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5017), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [74030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 13, + ACTIONS(3078), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255609,7 +255824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2702), 27, + ACTIONS(3076), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255637,10 +255852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74564] = 3, + [74078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2772), 13, + ACTIONS(2802), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255654,7 +255869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2770), 27, + ACTIONS(2800), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255682,11 +255897,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74612] = 3, + [74126] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2963), 13, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, + anon_sym_STAR, + ACTIONS(5145), 1, + sym_identifier, + ACTIONS(5149), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5151), 1, + anon_sym_mut, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5155), 1, + anon_sym_LBRACK2, + ACTIONS(5157), 1, + anon_sym_AMP, + ACTIONS(5159), 1, + anon_sym_shared, + ACTIONS(5173), 1, + anon_sym_RPAREN, + STATE(3019), 1, + sym_mutability_modifiers, + STATE(4059), 1, + sym_parameter_declaration, + STATE(4062), 1, + sym_type_parameter_declaration, + STATE(4352), 1, + sym_plain_type, + STATE(4655), 1, + sym_reference_expression, + STATE(3547), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2415), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 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, + [74220] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3120), 1, anon_sym_DOT, + ACTIONS(3118), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -255699,7 +255983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2961), 27, + ACTIONS(3116), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255727,10 +256011,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74660] = 3, + [74270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2911), 13, + ACTIONS(3018), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255744,7 +256028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2909), 27, + ACTIONS(3016), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255772,80 +256056,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74708] = 28, + [74318] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2208), 1, - anon_sym_RPAREN, - ACTIONS(4677), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(3355), 1, anon_sym_LPAREN, + ACTIONS(3357), 1, + anon_sym_STAR, + ACTIONS(5145), 1, + sym_identifier, + ACTIONS(5149), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5151), 1, + anon_sym_mut, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5155), 1, + anon_sym_LBRACK2, + ACTIONS(5157), 1, + anon_sym_AMP, + ACTIONS(5159), 1, + anon_sym_shared, + ACTIONS(5175), 1, + anon_sym_RPAREN, + STATE(3019), 1, + sym_mutability_modifiers, + STATE(3881), 1, + sym_type_parameter_declaration, + STATE(3888), 1, + sym_parameter_declaration, + STATE(4352), 1, + sym_plain_type, + STATE(4655), 1, + sym_reference_expression, + STATE(3547), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2415), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 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, + [74412] = 28, + ACTIONS(3), 1, + sym_comment, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5117), 1, + ACTIONS(4847), 1, anon_sym_CARET, - ACTIONS(5119), 1, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, + ACTIONS(4855), 1, anon_sym_in, - ACTIONS(5125), 1, + ACTIONS(4857), 1, anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(4883), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4997), 1, + anon_sym_COLON, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5113), 2, + ACTIONS(4849), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5107), 3, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5111), 3, + ACTIONS(4845), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5115), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5109), 5, + ACTIONS(4843), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [74806] = 3, + [74510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 13, + ACTIONS(3129), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255859,7 +256211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2957), 27, + ACTIONS(3127), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255887,82 +256239,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74854] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2218), 1, - anon_sym_RPAREN, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [74952] = 4, + [74558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5175), 1, - anon_sym_BANG, - ACTIONS(2943), 12, + ACTIONS(2764), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255971,11 +256251,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2941), 27, + ACTIONS(2762), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256003,14 +256284,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75002] = 5, + [74606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, - anon_sym_else, - STATE(2908), 1, - sym_else_branch, - ACTIONS(2406), 11, + ACTIONS(2740), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -256022,9 +256300,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2404), 27, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2738), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -256032,12 +256312,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, @@ -256050,14 +256329,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75054] = 5, + [74654] = 28, ACTIONS(3), 1, sym_comment, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(5125), 1, + anon_sym_CARET, + ACTIONS(5127), 1, + anon_sym_AMP_AMP, + ACTIONS(5129), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5131), 1, + anon_sym_in, + ACTIONS(5133), 1, + anon_sym_BANGin, ACTIONS(5177), 1, - anon_sym_else, - STATE(2909), 1, - sym_else_branch, - ACTIONS(2400), 11, + anon_sym_RPAREN, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5121), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5115), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5119), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5123), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5117), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [74752] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2850), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -256069,9 +256415,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2398), 27, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2848), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -256079,12 +256427,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, @@ -256097,10 +256444,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75106] = 3, + [74800] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, + anon_sym_STAR, + ACTIONS(5145), 1, + sym_identifier, + ACTIONS(5149), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5151), 1, + anon_sym_mut, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5155), 1, + anon_sym_LBRACK2, + ACTIONS(5157), 1, + anon_sym_AMP, + ACTIONS(5159), 1, + anon_sym_shared, + ACTIONS(5179), 1, + anon_sym_RPAREN, + STATE(3019), 1, + sym_mutability_modifiers, + STATE(3890), 1, + sym_parameter_declaration, + STATE(3892), 1, + sym_type_parameter_declaration, + STATE(3981), 1, + sym_plain_type, + STATE(4655), 1, + sym_reference_expression, + STATE(3547), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2415), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 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, + [74894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2927), 13, + ACTIONS(3106), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256114,7 +256529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2925), 27, + ACTIONS(3104), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256142,330 +256557,279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75154] = 28, + [74942] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, + ACTIONS(2170), 1, + anon_sym_LBRACE, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, + ACTIONS(5027), 1, anon_sym_CARET, - ACTIONS(5119), 1, + ACTIONS(5029), 1, anon_sym_AMP_AMP, - ACTIONS(5121), 1, + ACTIONS(5031), 1, anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, + ACTIONS(5033), 1, anon_sym_in, - ACTIONS(5125), 1, + ACTIONS(5035), 1, anon_sym_BANGin, - ACTIONS(5179), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(5071), 1, + anon_sym_is, + ACTIONS(5073), 1, + anon_sym_BANGis, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5113), 2, + ACTIONS(5021), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5107), 3, + ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5111), 3, + ACTIONS(5019), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5115), 4, + ACTIONS(5023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5109), 5, + ACTIONS(5017), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [75252] = 28, + [75040] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5117), 1, + ACTIONS(5027), 1, anon_sym_CARET, - ACTIONS(5119), 1, + ACTIONS(5029), 1, anon_sym_AMP_AMP, - ACTIONS(5121), 1, + ACTIONS(5031), 1, anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, + ACTIONS(5033), 1, anon_sym_in, - ACTIONS(5125), 1, + ACTIONS(5035), 1, anon_sym_BANGin, - ACTIONS(5181), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(5039), 1, + anon_sym_LBRACE, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5113), 2, + ACTIONS(5021), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5107), 3, + ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5111), 3, + ACTIONS(5019), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5115), 4, + ACTIONS(5023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5109), 5, + ACTIONS(5017), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [75350] = 3, + [75138] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, anon_sym_QMARK, + ACTIONS(4685), 1, anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2854), 27, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 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(4817), 1, anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4827), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4829), 1, anon_sym_is, + ACTIONS(4831), 1, anon_sym_BANGis, + ACTIONS(5125), 1, + anon_sym_CARET, + ACTIONS(5127), 1, + anon_sym_AMP_AMP, + ACTIONS(5129), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5131), 1, anon_sym_in, + ACTIONS(5133), 1, anon_sym_BANGin, - [75398] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2784), 13, + ACTIONS(5181), 1, + anon_sym_RPAREN, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5121), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5115), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5119), 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(2782), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5123), 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(5117), 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, - [75446] = 3, + [75236] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2844), 13, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5027), 1, + anon_sym_CARET, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(2156), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4689), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5019), 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(2842), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5017), 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, - [75494] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2840), 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(2838), 27, + ACTIONS(2154), 15, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75542] = 3, + [75312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3165), 13, + ACTIONS(3086), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256479,7 +256843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3163), 27, + ACTIONS(3084), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256507,148 +256871,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75590] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5131), 1, - sym_identifier, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - ACTIONS(5183), 1, - anon_sym_RPAREN, - STATE(3028), 1, - sym_mutability_modifiers, - STATE(3941), 1, - sym_parameter_declaration, - STATE(3942), 1, - sym_type_parameter_declaration, - STATE(4382), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 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, - [75684] = 28, + [75360] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5001), 1, + ACTIONS(5125), 1, anon_sym_CARET, - ACTIONS(5003), 1, + ACTIONS(5127), 1, anon_sym_AMP_AMP, - ACTIONS(5005), 1, + ACTIONS(5129), 1, anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, + ACTIONS(5131), 1, anon_sym_in, - ACTIONS(5009), 1, + ACTIONS(5133), 1, anon_sym_BANGin, - ACTIONS(5185), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(5183), 1, + anon_sym_RPAREN, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4995), 2, + ACTIONS(5121), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4989), 3, + ACTIONS(5115), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 3, + ACTIONS(5119), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4997), 4, + ACTIONS(5123), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4991), 5, + ACTIONS(5117), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [75782] = 3, + [75458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 13, + ACTIONS(2930), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256662,7 +256958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3079), 27, + ACTIONS(2928), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256690,62 +256986,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75830] = 26, + [75506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(3046), 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(3044), 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, + [75554] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5131), 1, + ACTIONS(5145), 1, sym_identifier, - ACTIONS(5135), 1, + ACTIONS(5149), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, + ACTIONS(5151), 1, anon_sym_mut, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5145), 1, + ACTIONS(5159), 1, anon_sym_shared, - ACTIONS(5187), 1, + ACTIONS(5185), 1, anon_sym_RPAREN, - STATE(3028), 1, + STATE(3019), 1, sym_mutability_modifiers, - STATE(3915), 1, + STATE(4047), 1, sym_parameter_declaration, - STATE(3916), 1, + STATE(4048), 1, sym_type_parameter_declaration, - STATE(4382), 1, + STATE(4352), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -256758,10 +257099,10 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [75924] = 3, + [75648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 13, + ACTIONS(3038), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256775,7 +257116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3007), 27, + ACTIONS(3036), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256803,10 +257144,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75972] = 3, + [75696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2993), 13, + ACTIONS(3030), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256820,7 +257161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2991), 27, + ACTIONS(3028), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256848,10 +257189,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76020] = 3, + [75744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 13, + ACTIONS(2958), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256865,7 +257206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2937), 27, + ACTIONS(2956), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256893,10 +257234,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76068] = 3, + [75792] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(5125), 1, + anon_sym_CARET, + ACTIONS(5127), 1, + anon_sym_AMP_AMP, + ACTIONS(5129), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5131), 1, + anon_sym_in, + ACTIONS(5133), 1, + anon_sym_BANGin, + ACTIONS(5187), 1, + anon_sym_RPAREN, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5121), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5115), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5119), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5123), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5117), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [75890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2935), 13, + ACTIONS(3058), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256910,7 +257321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2933), 27, + ACTIONS(3056), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256938,10 +257349,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76116] = 3, + [75938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 13, + ACTIONS(2926), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256955,7 +257366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2917), 27, + ACTIONS(2924), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256983,12 +257394,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76164] = 4, + [75986] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2768), 1, - anon_sym_LBRACE, - ACTIONS(2967), 11, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(5125), 1, + anon_sym_CARET, + ACTIONS(5127), 1, + anon_sym_AMP_AMP, + ACTIONS(5129), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5131), 1, + anon_sym_in, + ACTIONS(5133), 1, + anon_sym_BANGin, + ACTIONS(5189), 1, + anon_sym_RPAREN, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5121), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5115), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5119), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5123), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5117), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [76084] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2914), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -257000,10 +257480,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2965), 28, - anon_sym_SEMI, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2912), 27, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, @@ -257012,6 +257492,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, @@ -257028,11 +257509,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [76214] = 3, + [76132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2915), 13, + ACTIONS(2910), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257046,7 +257526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2913), 27, + ACTIONS(2908), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257074,78 +257554,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76262] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5131), 1, - sym_identifier, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - ACTIONS(5189), 1, - anon_sym_RPAREN, - STATE(3028), 1, - sym_mutability_modifiers, - STATE(3854), 1, - sym_parameter_declaration, - STATE(3992), 1, - sym_type_parameter_declaration, - STATE(4382), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 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, - [76356] = 3, + [76180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2903), 13, + ACTIONS(2894), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257159,7 +257571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2901), 27, + ACTIONS(2892), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257187,78 +257599,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76404] = 26, + [76228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(2886), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, anon_sym_BANG, - ACTIONS(5141), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - ACTIONS(5191), 1, - sym_identifier, - ACTIONS(5193), 1, - anon_sym_RPAREN, - STATE(3024), 1, - sym_mutability_modifiers, - STATE(3868), 1, - sym_parameter_declaration, - STATE(3873), 1, - sym_type_parameter_declaration, - STATE(4382), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 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, - [76498] = 3, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2884), 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, + [76276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2730), 11, + ACTIONS(2882), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -257270,9 +257660,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2728), 29, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2880), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -257280,12 +257672,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, @@ -257294,86 +257685,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76546] = 28, + [76324] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, + ACTIONS(3345), 1, + anon_sym_LBRACE, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5117), 1, + ACTIONS(5027), 1, anon_sym_CARET, - ACTIONS(5119), 1, + ACTIONS(5029), 1, anon_sym_AMP_AMP, - ACTIONS(5121), 1, + ACTIONS(5031), 1, anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, + ACTIONS(5033), 1, anon_sym_in, - ACTIONS(5125), 1, + ACTIONS(5035), 1, anon_sym_BANGin, - ACTIONS(5195), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5113), 2, + ACTIONS(5021), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5107), 3, + ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5111), 3, + ACTIONS(5019), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5115), 4, + ACTIONS(5023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5109), 5, + ACTIONS(5017), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [76644] = 3, + [76422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2700), 11, + ACTIONS(2874), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -257385,9 +257775,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2698), 29, + anon_sym_DOT_DOT, + ACTIONS(2872), 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, + [76470] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3125), 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(3123), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -257395,12 +257832,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, @@ -257409,16 +257845,14 @@ 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, - [76692] = 3, + [76518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3029), 13, + ACTIONS(3110), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257432,7 +257866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3027), 27, + ACTIONS(3108), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257460,10 +257894,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76740] = 3, + [76566] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(5027), 1, + anon_sym_CARET, + ACTIONS(5029), 1, + anon_sym_AMP_AMP, + ACTIONS(5031), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5033), 1, + anon_sym_in, + ACTIONS(5035), 1, + anon_sym_BANGin, + ACTIONS(5191), 1, + anon_sym_LBRACE, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5021), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5015), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5019), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5023), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5017), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [76664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3169), 13, + ACTIONS(2794), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257477,7 +257981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3167), 27, + ACTIONS(2792), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257505,195 +258009,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76788] = 3, + [76712] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3097), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(45), 1, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3095), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(3355), 1, anon_sym_LPAREN, + ACTIONS(3357), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5145), 1, + sym_identifier, + ACTIONS(5149), 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, - [76836] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, + ACTIONS(5151), 1, + anon_sym_mut, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5197), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, + ACTIONS(5157), 1, anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [76934] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5199), 1, + ACTIONS(5159), 1, + anon_sym_shared, + ACTIONS(5193), 1, anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [77032] = 3, + STATE(3019), 1, + sym_mutability_modifiers, + STATE(3895), 1, + sym_parameter_declaration, + STATE(3903), 1, + sym_type_parameter_declaration, + STATE(4352), 1, + sym_plain_type, + STATE(4655), 1, + sym_reference_expression, + STATE(3547), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2415), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 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, + [76806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3109), 13, + ACTIONS(2830), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257707,7 +258094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3107), 27, + ACTIONS(2828), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257735,10 +258122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77080] = 3, + [76854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3113), 13, + ACTIONS(2846), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257752,7 +258139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3111), 27, + ACTIONS(2844), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257780,10 +258167,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77128] = 3, + [76902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 13, + ACTIONS(2974), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257797,7 +258184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2826), 27, + ACTIONS(2972), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257825,10 +258212,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77176] = 3, + [76950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3121), 13, + ACTIONS(2806), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257842,7 +258229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3119), 27, + ACTIONS(2804), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257870,10 +258257,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77224] = 3, + [76998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3173), 13, + ACTIONS(2826), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257887,7 +258274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3171), 27, + ACTIONS(2824), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257915,80 +258302,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77272] = 28, + [77046] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5117), 1, + ACTIONS(5125), 1, anon_sym_CARET, - ACTIONS(5119), 1, + ACTIONS(5127), 1, anon_sym_AMP_AMP, - ACTIONS(5121), 1, + ACTIONS(5129), 1, anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, + ACTIONS(5131), 1, anon_sym_in, - ACTIONS(5125), 1, + ACTIONS(5133), 1, anon_sym_BANGin, - ACTIONS(5201), 1, + ACTIONS(5195), 1, anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5113), 2, + ACTIONS(5121), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5107), 3, + ACTIONS(5115), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5111), 3, + ACTIONS(5119), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5115), 4, + ACTIONS(5123), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5109), 5, + ACTIONS(5117), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [77370] = 3, + [77144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 13, + ACTIONS(3082), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258002,7 +258389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3195), 27, + ACTIONS(3080), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258030,10 +258417,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77418] = 3, + [77192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3129), 13, + ACTIONS(2822), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258047,7 +258434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3127), 27, + ACTIONS(2820), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258075,10 +258462,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77466] = 3, + [77240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3061), 13, + ACTIONS(3102), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258092,7 +258479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3059), 27, + ACTIONS(3100), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258120,10 +258507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77514] = 3, + [77288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 13, + ACTIONS(2834), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258137,7 +258524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3055), 27, + ACTIONS(2832), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258165,10 +258552,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77562] = 3, + [77336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 13, + ACTIONS(2978), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258182,7 +258569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3175), 27, + ACTIONS(2976), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258210,10 +258597,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77610] = 3, + [77384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2788), 13, + ACTIONS(2798), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258227,7 +258614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2786), 27, + ACTIONS(2796), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258238,52 +258625,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, - 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, - [77658] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2768), 1, - anon_sym_LBRACE, - ACTIONS(2700), 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(2698), 28, - anon_sym_SEMI, - anon_sym_DOT, - 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_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -258300,17 +258642,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [77708] = 5, + [77432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2886), 1, + ACTIONS(3066), 13, anon_sym_DOT, - ACTIONS(3652), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - ACTIONS(2884), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -258322,8 +258658,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 25, + 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, @@ -258331,6 +258670,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, @@ -258347,11 +258687,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_DOT_DOT, - [77760] = 3, + [77480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 13, + ACTIONS(2842), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258365,7 +258704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3087), 27, + ACTIONS(2840), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258393,10 +258732,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77808] = 3, + [77528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3093), 13, + ACTIONS(2878), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258410,7 +258749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3091), 27, + ACTIONS(2876), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258438,10 +258777,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77856] = 3, + [77576] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2232), 1, + anon_sym_LBRACE, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(5027), 1, + anon_sym_CARET, + ACTIONS(5029), 1, + anon_sym_AMP_AMP, + ACTIONS(5031), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5033), 1, + anon_sym_in, + ACTIONS(5035), 1, + anon_sym_BANGin, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5021), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5015), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5019), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5023), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5017), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [77674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2792), 13, + ACTIONS(3002), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258455,7 +258864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2790), 27, + ACTIONS(3000), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258483,10 +258892,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77904] = 3, + [77722] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2050), 1, + anon_sym_LBRACE, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(5027), 1, + anon_sym_CARET, + ACTIONS(5029), 1, + anon_sym_AMP_AMP, + ACTIONS(5031), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5033), 1, + anon_sym_in, + ACTIONS(5035), 1, + anon_sym_BANGin, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5021), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5015), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5019), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5023), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5017), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [77820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2836), 13, + ACTIONS(3175), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258500,7 +258979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2834), 27, + ACTIONS(3173), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258528,10 +259007,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77952] = 3, + [77868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2864), 13, + ACTIONS(3074), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258545,7 +259024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2862), 27, + ACTIONS(3072), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258573,132 +259052,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78000] = 28, + [77916] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5117), 1, + ACTIONS(5027), 1, anon_sym_CARET, - ACTIONS(5119), 1, + ACTIONS(5029), 1, anon_sym_AMP_AMP, - ACTIONS(5121), 1, + ACTIONS(5031), 1, anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, + ACTIONS(5033), 1, anon_sym_in, - ACTIONS(5125), 1, + ACTIONS(5035), 1, anon_sym_BANGin, - ACTIONS(5203), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(5197), 1, + anon_sym_LBRACE, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5113), 2, + ACTIONS(5021), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5107), 3, + ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5111), 3, + ACTIONS(5019), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5115), 4, + ACTIONS(5023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5109), 5, + ACTIONS(5017), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [78098] = 26, + [78014] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5125), 1, + anon_sym_CARET, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(2144), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5115), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5119), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5117), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2142), 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, + [78090] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5131), 1, + ACTIONS(5145), 1, sym_identifier, - ACTIONS(5135), 1, + ACTIONS(5149), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, + ACTIONS(5151), 1, anon_sym_mut, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5145), 1, + ACTIONS(5159), 1, anon_sym_shared, - ACTIONS(5205), 1, + ACTIONS(5199), 1, anon_sym_RPAREN, - STATE(3028), 1, + STATE(3019), 1, sym_mutability_modifiers, - STATE(3918), 1, - sym_type_parameter_declaration, - STATE(3920), 1, + STATE(3945), 1, sym_parameter_declaration, - STATE(4382), 1, + STATE(3946), 1, + sym_type_parameter_declaration, + STATE(4352), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -258711,83 +259249,198 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [78192] = 28, + [78184] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(5201), 1, + anon_sym_else, + STATE(2937), 1, + sym_else_branch, + ACTIONS(2392), 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(2390), 27, + anon_sym_DOT, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4679), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [78236] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5117), 1, + ACTIONS(5027), 1, anon_sym_CARET, - ACTIONS(5119), 1, + ACTIONS(5029), 1, anon_sym_AMP_AMP, - ACTIONS(5121), 1, + ACTIONS(5031), 1, anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, + ACTIONS(5033), 1, anon_sym_in, + ACTIONS(5035), 1, + anon_sym_BANGin, + ACTIONS(5203), 1, + anon_sym_LBRACE, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5021), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5015), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5019), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5023), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5017), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [78334] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, ACTIONS(5125), 1, + anon_sym_CARET, + ACTIONS(5127), 1, + anon_sym_AMP_AMP, + ACTIONS(5129), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5131), 1, + anon_sym_in, + ACTIONS(5133), 1, anon_sym_BANGin, - ACTIONS(5207), 1, + ACTIONS(5205), 1, anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5113), 2, + ACTIONS(5121), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5107), 3, + ACTIONS(5115), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5111), 3, + ACTIONS(5119), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5115), 4, + ACTIONS(5123), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5109), 5, + ACTIONS(5117), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [78290] = 4, + [78432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2768), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2700), 11, + ACTIONS(2954), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -258799,9 +259452,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2698), 27, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2952), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -258809,12 +259464,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, @@ -258827,11 +259481,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78340] = 3, + [78480] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 13, + ACTIONS(2232), 1, + anon_sym_RPAREN, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(5125), 1, + anon_sym_CARET, + ACTIONS(5127), 1, + anon_sym_AMP_AMP, + ACTIONS(5129), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5131), 1, + anon_sym_in, + ACTIONS(5133), 1, + anon_sym_BANGin, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5121), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5115), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5119), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5123), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5117), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [78578] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2786), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2694), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -258843,11 +259569,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2870), 27, + ACTIONS(2692), 27, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -258855,11 +259579,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, @@ -258872,81 +259597,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78388] = 28, + [78628] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, + ACTIONS(2050), 1, + anon_sym_RPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(5125), 1, + anon_sym_CARET, + ACTIONS(5127), 1, + anon_sym_AMP_AMP, + ACTIONS(5129), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5131), 1, + anon_sym_in, + ACTIONS(5133), 1, + anon_sym_BANGin, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5121), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5115), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5119), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5123), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5117), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [78726] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5001), 1, + ACTIONS(4847), 1, anon_sym_CARET, - ACTIONS(5003), 1, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, + ACTIONS(4855), 1, anon_sym_in, - ACTIONS(5009), 1, + ACTIONS(4857), 1, anon_sym_BANGin, - ACTIONS(5209), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(4883), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5207), 1, + anon_sym_RBRACK, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4995), 2, + ACTIONS(4849), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4989), 3, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 3, + ACTIONS(4845), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4997), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4991), 5, + ACTIONS(4843), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [78486] = 3, + [78824] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2876), 13, - anon_sym_DOT, + ACTIONS(5201), 1, + anon_sym_else, + STATE(2936), 1, + sym_else_branch, + ACTIONS(2398), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -258958,11 +259756,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2874), 27, + ACTIONS(2396), 27, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -258970,11 +259766,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, @@ -258987,310 +259784,403 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78534] = 3, + [78876] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2899), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(45), 1, anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, + anon_sym_STAR, + ACTIONS(5145), 1, + sym_identifier, + ACTIONS(5149), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5151), 1, + anon_sym_mut, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5155), 1, anon_sym_LBRACK2, + ACTIONS(5157), 1, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2897), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5159), 1, + anon_sym_shared, + ACTIONS(5209), 1, + anon_sym_RPAREN, + STATE(3019), 1, + sym_mutability_modifiers, + STATE(3966), 1, + sym_parameter_declaration, + STATE(3972), 1, + sym_type_parameter_declaration, + STATE(4352), 1, + sym_plain_type, + STATE(4655), 1, + sym_reference_expression, + STATE(3547), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2415), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 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, + [78970] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4502), 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(4504), 1, anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_QMARK, + ACTIONS(4508), 1, + anon_sym_BANG, + ACTIONS(4510), 1, + anon_sym_LBRACK2, + ACTIONS(4512), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4522), 1, + anon_sym_AMP_AMP, + ACTIONS(4524), 1, + anon_sym_in, + ACTIONS(4526), 1, + anon_sym_BANGin, + ACTIONS(4530), 1, + anon_sym_as, + ACTIONS(4532), 1, anon_sym_PLUS_PLUS, + ACTIONS(4534), 1, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, + ACTIONS(4536), 1, anon_sym_PIPE_PIPE, + ACTIONS(4538), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4540), 1, anon_sym_is, + ACTIONS(4542), 1, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [78582] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2907), 13, + ACTIONS(4999), 1, + anon_sym_CARET, + ACTIONS(5001), 1, + anon_sym_LT_DASH, + STATE(2085), 1, + sym_argument_list, + STATE(2086), 1, + sym_or_block, + STATE(4280), 1, + sym_type_parameters, + ACTIONS(4500), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4518), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4514), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4516), 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(2905), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(4520), 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(4995), 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, - [78630] = 28, + [79068] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5001), 1, + ACTIONS(5125), 1, anon_sym_CARET, - ACTIONS(5003), 1, + ACTIONS(5127), 1, anon_sym_AMP_AMP, - ACTIONS(5005), 1, + ACTIONS(5129), 1, anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, + ACTIONS(5131), 1, anon_sym_in, - ACTIONS(5009), 1, + ACTIONS(5133), 1, anon_sym_BANGin, ACTIONS(5211), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + anon_sym_RPAREN, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4995), 2, + ACTIONS(5121), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4989), 3, + ACTIONS(5115), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 3, + ACTIONS(5119), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4997), 4, + ACTIONS(5123), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4991), 5, + ACTIONS(5117), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [78728] = 28, + [79166] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5117), 1, + ACTIONS(5125), 1, anon_sym_CARET, - ACTIONS(5119), 1, + ACTIONS(5127), 1, anon_sym_AMP_AMP, - ACTIONS(5121), 1, + ACTIONS(5129), 1, anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, + ACTIONS(5131), 1, anon_sym_in, - ACTIONS(5125), 1, + ACTIONS(5133), 1, anon_sym_BANGin, ACTIONS(5213), 1, anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5113), 2, + ACTIONS(5121), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5107), 3, + ACTIONS(5115), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5111), 3, + ACTIONS(5119), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5115), 4, + ACTIONS(5123), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5109), 5, + ACTIONS(5117), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [78826] = 28, + [79264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(2790), 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(2788), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4679), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, + 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, + [79312] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5001), 1, + ACTIONS(5027), 1, anon_sym_CARET, - ACTIONS(5003), 1, + ACTIONS(5029), 1, anon_sym_AMP_AMP, - ACTIONS(5005), 1, + ACTIONS(5031), 1, anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, + ACTIONS(5033), 1, anon_sym_in, - ACTIONS(5009), 1, + ACTIONS(5035), 1, anon_sym_BANGin, ACTIONS(5215), 1, anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4995), 2, + ACTIONS(5021), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4989), 3, + ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 3, + ACTIONS(5019), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4997), 4, + ACTIONS(5023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4991), 5, + ACTIONS(5017), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [78924] = 3, + [79410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2895), 13, + ACTIONS(3054), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259304,7 +260194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2893), 27, + ACTIONS(3052), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259332,10 +260222,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78972] = 3, + [79458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2880), 13, + ACTIONS(3062), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259349,7 +260239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2878), 27, + ACTIONS(3060), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259377,263 +260267,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79020] = 28, + [79506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5217), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(3070), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5111), 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(5115), 4, + anon_sym_DOT_DOT, + ACTIONS(3068), 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(5109), 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, - [79118] = 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, + [79554] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5117), 1, + ACTIONS(5125), 1, anon_sym_CARET, - ACTIONS(5119), 1, + ACTIONS(5127), 1, anon_sym_AMP_AMP, - ACTIONS(5121), 1, + ACTIONS(5129), 1, anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, + ACTIONS(5131), 1, anon_sym_in, - ACTIONS(5125), 1, + ACTIONS(5133), 1, anon_sym_BANGin, - ACTIONS(5219), 1, + ACTIONS(5217), 1, anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5113), 2, + ACTIONS(5121), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5107), 3, + ACTIONS(5115), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5111), 3, + ACTIONS(5119), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5115), 4, + ACTIONS(5123), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5109), 5, + ACTIONS(5117), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [79216] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5131), 1, - sym_identifier, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - ACTIONS(5221), 1, - anon_sym_RPAREN, - STATE(3028), 1, - sym_mutability_modifiers, - STATE(4049), 1, - sym_parameter_declaration, - STATE(4053), 1, - sym_type_parameter_declaration, - STATE(4382), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 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, - [79310] = 3, + [79652] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 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(3011), 27, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(2786), 1, 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, - [79358] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3017), 13, + ACTIONS(2838), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259647,10 +260401,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3015), 27, + ACTIONS(2836), 26, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -259675,80 +260428,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79406] = 28, + [79702] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4476), 1, + ACTIONS(4679), 1, anon_sym_LPAREN, - ACTIONS(4478), 1, + ACTIONS(4681), 1, anon_sym_LBRACK, - ACTIONS(4480), 1, + ACTIONS(4683), 1, anon_sym_QMARK, - ACTIONS(4482), 1, + ACTIONS(4685), 1, anon_sym_BANG, - ACTIONS(4484), 1, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4486), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4488), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4498), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4500), 1, - anon_sym_DASH_DASH, - ACTIONS(4502), 1, - anon_sym_AMP_AMP, - ACTIONS(4504), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4506), 1, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4508), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4510), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4512), 1, + ACTIONS(5125), 1, + anon_sym_CARET, + ACTIONS(5127), 1, + anon_sym_AMP_AMP, + ACTIONS(5129), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5131), 1, anon_sym_in, - ACTIONS(4514), 1, + ACTIONS(5133), 1, anon_sym_BANGin, - ACTIONS(5015), 1, - anon_sym_CARET, - ACTIONS(5017), 1, - anon_sym_LT_DASH, - STATE(2081), 1, - sym_argument_list, - STATE(2082), 1, + ACTIONS(5219), 1, + anon_sym_RPAREN, + STATE(2325), 1, sym_or_block, - STATE(4192), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4474), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4494), 2, + ACTIONS(5121), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4490), 3, + ACTIONS(5115), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4492), 3, + ACTIONS(5119), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4496), 4, + ACTIONS(5123), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5011), 5, + ACTIONS(5117), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [79504] = 3, + [79800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2824), 13, + ACTIONS(3090), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259762,7 +260515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2822), 27, + ACTIONS(3088), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259790,10 +260543,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79552] = 3, + [79848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2820), 13, + ACTIONS(3098), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259807,7 +260560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2818), 27, + ACTIONS(3096), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259835,56 +260588,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79600] = 15, + [79896] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(3355), 1, anon_sym_LPAREN, + ACTIONS(3357), 1, + anon_sym_STAR, + ACTIONS(5145), 1, + sym_identifier, + ACTIONS(5149), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5151), 1, + anon_sym_mut, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5155), 1, + anon_sym_LBRACK2, + ACTIONS(5157), 1, + anon_sym_AMP, + ACTIONS(5159), 1, + anon_sym_shared, + ACTIONS(5221), 1, + anon_sym_RPAREN, + STATE(3019), 1, + sym_mutability_modifiers, + STATE(4033), 1, + sym_type_parameter_declaration, + STATE(4036), 1, + sym_parameter_declaration, + STATE(4352), 1, + sym_plain_type, + STATE(4655), 1, + sym_reference_expression, + STATE(3547), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2415), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 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, + [79990] = 17, + ACTIONS(3), 1, + sym_comment, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(5125), 1, + anon_sym_CARET, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(2156), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2076), 5, + ACTIONS(5115), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4991), 5, + ACTIONS(5119), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5117), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2074), 16, + ACTIONS(2154), 15, anon_sym_as, - anon_sym_LBRACE, + 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, @@ -259892,80 +260715,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79672] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5223), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [79770] = 3, + [80066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2808), 13, + ACTIONS(3167), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259979,7 +260732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2806), 27, + ACTIONS(3165), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -260007,409 +260760,356 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79818] = 28, + [80114] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5001), 1, + ACTIONS(5125), 1, anon_sym_CARET, - ACTIONS(5003), 1, + ACTIONS(5127), 1, anon_sym_AMP_AMP, - ACTIONS(5005), 1, + ACTIONS(5129), 1, anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, + ACTIONS(5131), 1, anon_sym_in, - ACTIONS(5009), 1, + ACTIONS(5133), 1, anon_sym_BANGin, - ACTIONS(5071), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(5223), 1, + anon_sym_RPAREN, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4995), 2, + ACTIONS(5121), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4989), 3, + ACTIONS(5115), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 3, + ACTIONS(5119), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4997), 4, + ACTIONS(5123), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4991), 5, + ACTIONS(5117), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [79916] = 26, + [80212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(3179), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5131), 1, - sym_identifier, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, anon_sym_BANG, - ACTIONS(5141), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - ACTIONS(5187), 1, - anon_sym_RPAREN, - STATE(3028), 1, - sym_mutability_modifiers, - STATE(3882), 1, - sym_plain_type, - STATE(3915), 1, - sym_parameter_declaration, - STATE(3916), 1, - sym_type_parameter_declaration, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 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, - [80010] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3177), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4679), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5001), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_CARET, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(2076), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4687), 2, - anon_sym_DOT, + 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, - ACTIONS(4989), 3, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [80260] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5225), 1, + anon_sym_BANG, + ACTIONS(3141), 12, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 15, + anon_sym_DOT_DOT, + ACTIONS(3139), 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, - [80086] = 28, + [80310] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5117), 1, + ACTIONS(4847), 1, anon_sym_CARET, - ACTIONS(5119), 1, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, + ACTIONS(4855), 1, anon_sym_in, - ACTIONS(5125), 1, + ACTIONS(4857), 1, anon_sym_BANGin, - ACTIONS(5225), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(4883), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5227), 1, + anon_sym_SEMI, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5113), 2, + ACTIONS(4849), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5107), 3, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5111), 3, + ACTIONS(4845), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5115), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5109), 5, + ACTIONS(4843), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [80184] = 28, + [80408] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4827), 1, + ACTIONS(5027), 1, anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, + ACTIONS(5029), 1, anon_sym_AMP_AMP, - ACTIONS(4849), 1, + ACTIONS(5031), 1, anon_sym_PIPE_PIPE, - ACTIONS(5227), 1, - anon_sym_RBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(5033), 1, + anon_sym_in, + ACTIONS(5035), 1, + anon_sym_BANGin, + ACTIONS(5229), 1, + anon_sym_LBRACE, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4829), 2, + ACTIONS(5021), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, + ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4831), 4, + ACTIONS(5019), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4821), 5, + ACTIONS(5017), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [80282] = 20, + [80506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(3191), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 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(4997), 4, + anon_sym_DOT_DOT, + ACTIONS(3189), 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(4991), 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(2074), 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, - [80364] = 3, + anon_sym_in, + anon_sym_BANGin, + [80554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2860), 13, + ACTIONS(3187), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -260423,7 +261123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2858), 27, + ACTIONS(3185), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -260451,50 +261151,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80412] = 17, + [80602] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(5125), 1, + anon_sym_CARET, + ACTIONS(5127), 1, + anon_sym_AMP_AMP, + ACTIONS(5129), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5131), 1, + anon_sym_in, + ACTIONS(5133), 1, + anon_sym_BANGin, + ACTIONS(5231), 1, + anon_sym_RPAREN, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5121), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5115), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5119), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5123), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5117), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [80700] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(5117), 1, - anon_sym_CARET, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(2112), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, + ACTIONS(5119), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5109), 5, + ACTIONS(2162), 5, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5117), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2110), 15, + ACTIONS(2160), 16, anon_sym_as, anon_sym_RPAREN, anon_sym_EQ_EQ, @@ -260503,6 +261270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -260510,76 +261278,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80488] = 21, + [80772] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(5001), 1, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(5125), 1, anon_sym_CARET, - ACTIONS(5003), 1, + ACTIONS(5127), 1, anon_sym_AMP_AMP, - ACTIONS(5007), 1, + ACTIONS(5129), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5131), 1, anon_sym_in, - ACTIONS(5009), 1, + ACTIONS(5133), 1, anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(5233), 1, + anon_sym_RPAREN, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4995), 2, + ACTIONS(5121), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4989), 3, + ACTIONS(5115), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 3, + ACTIONS(5119), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4997), 4, + ACTIONS(5123), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4991), 5, + ACTIONS(5117), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2074), 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, - [80572] = 4, + [80870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2768), 2, + ACTIONS(2786), 2, anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(2967), 13, + ACTIONS(2838), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -260593,7 +261368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2965), 25, + ACTIONS(2836), 25, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -260619,238 +261394,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80622] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5131), 1, - sym_identifier, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - ACTIONS(5229), 1, - anon_sym_RPAREN, - STATE(3028), 1, - sym_mutability_modifiers, - STATE(4062), 1, - sym_type_parameter_declaration, - STATE(4064), 1, - sym_parameter_declaration, - STATE(4382), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 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, - [80716] = 17, + [80920] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(5001), 1, - anon_sym_CARET, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(2108), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2106), 15, + ACTIONS(4801), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4827), 1, anon_sym_or, + ACTIONS(4829), 1, anon_sym_is, + ACTIONS(4831), 1, anon_sym_BANGis, + ACTIONS(5027), 1, + anon_sym_CARET, + ACTIONS(5029), 1, + anon_sym_AMP_AMP, + ACTIONS(5031), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5033), 1, anon_sym_in, + ACTIONS(5035), 1, anon_sym_BANGin, - [80792] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5001), 1, - anon_sym_CARET, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(5235), 1, + anon_sym_LBRACE, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(2112), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4989), 3, + ACTIONS(5021), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 3, + ACTIONS(5019), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4991), 5, + ACTIONS(5023), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5017), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2110), 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, - [80868] = 17, + [81018] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(5117), 1, + ACTIONS(5027), 1, anon_sym_CARET, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(2108), 2, + ACTIONS(2144), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5107), 3, + ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5111), 3, + ACTIONS(5019), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5109), 5, + ACTIONS(5017), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2106), 15, + ACTIONS(2142), 15, anon_sym_as, - anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -260864,215 +261523,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80944] = 4, + [81094] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 3, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, anon_sym_LBRACK, - ACTIONS(2772), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4683), 1, anon_sym_QMARK, + ACTIONS(4685), 1, anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2770), 24, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4827), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4829), 1, anon_sym_is, + ACTIONS(4831), 1, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [80994] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5131), 1, - sym_identifier, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - ACTIONS(5231), 1, - anon_sym_RPAREN, - STATE(3028), 1, - sym_mutability_modifiers, - STATE(4076), 1, - sym_parameter_declaration, - STATE(4080), 1, - sym_type_parameter_declaration, - STATE(4382), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 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, - [81088] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3161), 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(3159), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5125), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5127), 1, anon_sym_AMP_AMP, + ACTIONS(5129), 1, anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(5131), 1, anon_sym_in, + ACTIONS(5133), 1, anon_sym_BANGin, - [81136] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3069), 13, + ACTIONS(5237), 1, + anon_sym_RPAREN, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5121), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5115), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5119), 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(3067), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5123), 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(5117), 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, - [81184] = 3, + [81192] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3025), 13, - anon_sym_DOT, + ACTIONS(2786), 1, + anon_sym_LBRACE, + ACTIONS(2838), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -261084,10 +261610,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3023), 27, + ACTIONS(2836), 28, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, @@ -261096,7 +261622,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, @@ -261113,13 +261638,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81232] = 4, + anon_sym_COLON_EQ, + [81242] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2768), 2, + ACTIONS(2745), 3, anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(2700), 13, + anon_sym_LBRACK, + ACTIONS(2740), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -261133,7 +261660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2698), 25, + ACTIONS(2738), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -261143,481 +261670,340 @@ 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, 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, - [81282] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5131), 1, - sym_identifier, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - ACTIONS(5193), 1, - anon_sym_RPAREN, - STATE(3028), 1, - sym_mutability_modifiers, - STATE(3868), 1, - sym_parameter_declaration, - STATE(3873), 1, - sym_type_parameter_declaration, - STATE(4382), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 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, - [81376] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5123), 1, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(5125), 1, anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, + [81292] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2736), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5111), 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(5115), 4, + ACTIONS(2734), 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(5109), 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, - ACTIONS(2074), 8, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, - [81460] = 28, + anon_sym_in, + anon_sym_BANGin, + [81340] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5001), 1, + ACTIONS(5125), 1, anon_sym_CARET, - ACTIONS(5003), 1, + ACTIONS(5127), 1, anon_sym_AMP_AMP, - ACTIONS(5005), 1, + ACTIONS(5129), 1, anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, + ACTIONS(5131), 1, anon_sym_in, - ACTIONS(5009), 1, + ACTIONS(5133), 1, anon_sym_BANGin, - ACTIONS(5233), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(5239), 1, + anon_sym_RPAREN, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4995), 2, + ACTIONS(5121), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4989), 3, + ACTIONS(5115), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 3, + ACTIONS(5119), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4997), 4, + ACTIONS(5123), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4991), 5, + ACTIONS(5117), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [81558] = 20, + [81438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(2962), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5111), 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(5115), 4, + anon_sym_DOT_DOT, + ACTIONS(2960), 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(5109), 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(2074), 9, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - [81640] = 28, + anon_sym_in, + anon_sym_BANGin, + [81486] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3337), 1, - anon_sym_LBRACE, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, + ACTIONS(5125), 1, anon_sym_CARET, - ACTIONS(5003), 1, + ACTIONS(5127), 1, anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, + ACTIONS(5131), 1, anon_sym_in, - ACTIONS(5009), 1, + ACTIONS(5133), 1, anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4995), 2, + ACTIONS(5121), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4989), 3, + ACTIONS(5115), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 3, + ACTIONS(5119), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4997), 4, + ACTIONS(5123), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4991), 5, + ACTIONS(5117), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [81738] = 17, + ACTIONS(2160), 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, + [81570] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5117), 1, - anon_sym_CARET, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(2076), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4687), 2, + ACTIONS(2786), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2694), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5107), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5111), 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(5109), 5, + anon_sym_DOT_DOT, + ACTIONS(2692), 25, + anon_sym_as, + anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 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, - [81814] = 15, + [81620] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(5241), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2794), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2076), 5, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5109), 5, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2792), 25, + anon_sym_as, + anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 16, - anon_sym_as, - anon_sym_RPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81886] = 5, + [81670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3027), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2772), 12, + ACTIONS(2934), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -261630,8 +262016,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2770), 24, + anon_sym_DOT_DOT, + ACTIONS(2932), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -261639,6 +262028,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -261654,13 +262045,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_DOT_DOT, - [81938] = 4, + [81718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2774), 1, + ACTIONS(2870), 13, anon_sym_DOT, - ACTIONS(3029), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -261673,7 +262062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3027), 27, + ACTIONS(2868), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -261701,10 +262090,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81988] = 3, + [81766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 13, + ACTIONS(2862), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -261718,7 +262107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3019), 27, + ACTIONS(2860), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -261746,220 +262135,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82036] = 28, + [81814] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(4683), 1, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, + anon_sym_STAR, + ACTIONS(5145), 1, + sym_identifier, + ACTIONS(5149), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5151), 1, + anon_sym_mut, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5013), 1, - anon_sym_COLON, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, + ACTIONS(5157), 1, anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [82134] = 28, + ACTIONS(5159), 1, + anon_sym_shared, + ACTIONS(5243), 1, + anon_sym_RPAREN, + STATE(3019), 1, + sym_mutability_modifiers, + STATE(3992), 1, + sym_type_parameter_declaration, + STATE(3993), 1, + sym_parameter_declaration, + STATE(4352), 1, + sym_plain_type, + STATE(4655), 1, + sym_reference_expression, + STATE(3547), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2415), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 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, + [81908] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, + ACTIONS(5125), 1, anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, + ACTIONS(5131), 1, anon_sym_in, - ACTIONS(5009), 1, + ACTIONS(5133), 1, anon_sym_BANGin, - ACTIONS(5235), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4995), 2, + ACTIONS(5121), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4989), 3, + ACTIONS(5115), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 3, + ACTIONS(5119), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4997), 4, + ACTIONS(5123), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4991), 5, + ACTIONS(5117), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82232] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(2160), 9, anon_sym_as, - ACTIONS(4797), 1, + anon_sym_RPAREN, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(4809), 1, anon_sym_is, - ACTIONS(4811), 1, anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5237), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [82330] = 3, + [81990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2931), 13, + ACTIONS(3137), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -261973,7 +262282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2929), 27, + ACTIONS(3135), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -262001,80 +262310,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82378] = 28, + [82038] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, + ACTIONS(2745), 2, anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5239), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [82476] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2868), 13, + anon_sym_RBRACK, + ACTIONS(2844), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2740), 12, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -262087,11 +262332,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2866), 27, + ACTIONS(2738), 24, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -262099,8 +262341,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -262116,13 +262356,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82524] = 4, + anon_sym_DOT_DOT, + [82090] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2768), 1, - anon_sym_COMMA, - ACTIONS(2967), 13, + ACTIONS(2742), 1, anon_sym_DOT, + ACTIONS(2846), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -262135,9 +262375,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2965), 26, + ACTIONS(2844), 27, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -262162,10 +262403,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82574] = 3, + [82140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2852), 13, + ACTIONS(2866), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -262179,7 +262420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2850), 27, + ACTIONS(2864), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -262207,12 +262448,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82622] = 4, + [82188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2768), 1, - anon_sym_COMMA, - ACTIONS(2700), 13, + ACTIONS(3147), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -262226,9 +262465,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2698), 26, + ACTIONS(3145), 27, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -262253,202 +262493,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82672] = 28, + [82236] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2208), 1, - anon_sym_LBRACE, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5001), 1, + ACTIONS(5125), 1, anon_sym_CARET, - ACTIONS(5003), 1, + ACTIONS(5127), 1, anon_sym_AMP_AMP, - ACTIONS(5005), 1, + ACTIONS(5129), 1, anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, + ACTIONS(5131), 1, anon_sym_in, - ACTIONS(5009), 1, + ACTIONS(5133), 1, anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(5245), 1, + anon_sym_RPAREN, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4995), 2, + ACTIONS(5121), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4989), 3, + ACTIONS(5115), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 3, + ACTIONS(5119), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4997), 4, + ACTIONS(5123), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4991), 5, + ACTIONS(5117), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82770] = 28, + [82334] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2218), 1, - anon_sym_LBRACE, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(4683), 1, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, + anon_sym_STAR, + ACTIONS(5149), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5151), 1, + anon_sym_mut, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, + ACTIONS(5157), 1, anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [82868] = 26, + ACTIONS(5159), 1, + anon_sym_shared, + ACTIONS(5193), 1, + anon_sym_RPAREN, + ACTIONS(5247), 1, + sym_identifier, + STATE(3048), 1, + sym_mutability_modifiers, + STATE(3895), 1, + sym_parameter_declaration, + STATE(3903), 1, + sym_type_parameter_declaration, + STATE(4352), 1, + sym_plain_type, + STATE(4655), 1, + sym_reference_expression, + STATE(3547), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2415), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 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, + [82428] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5131), 1, + ACTIONS(5145), 1, sym_identifier, - ACTIONS(5135), 1, + ACTIONS(5149), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, + ACTIONS(5151), 1, anon_sym_mut, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5145), 1, + ACTIONS(5159), 1, anon_sym_shared, - ACTIONS(5241), 1, + ACTIONS(5179), 1, anon_sym_RPAREN, - STATE(3028), 1, + STATE(3019), 1, sym_mutability_modifiers, - STATE(3866), 1, + STATE(3890), 1, sym_parameter_declaration, - STATE(3876), 1, + STATE(3892), 1, sym_type_parameter_declaration, - STATE(4382), 1, + STATE(4352), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -262461,13 +262699,80 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [82962] = 4, + [82522] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5243), 2, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(5027), 1, + anon_sym_CARET, + ACTIONS(5029), 1, + anon_sym_AMP_AMP, + ACTIONS(5031), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5033), 1, + anon_sym_in, + ACTIONS(5035), 1, + anon_sym_BANGin, + ACTIONS(5249), 1, anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2880), 13, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5021), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5015), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5019), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5023), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5017), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [82620] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2818), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -262481,8 +262786,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2878), 25, + ACTIONS(2816), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -262507,428 +262814,377 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [83012] = 28, + [82668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, + ACTIONS(3094), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(4683), 1, anon_sym_BANG, - ACTIONS(4685), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3092), 27, anon_sym_as, - ACTIONS(4797), 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(4799), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, anon_sym_CARET, - ACTIONS(5003), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5005), 1, anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(5009), 1, anon_sym_BANGin, - ACTIONS(5245), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, + [82716] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4993), 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(4997), 4, + anon_sym_DOT_DOT, + ACTIONS(3048), 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(4991), 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, - [83110] = 26, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [82764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(3010), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5131), 1, - sym_identifier, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, anon_sym_BANG, - ACTIONS(5141), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - ACTIONS(5247), 1, - anon_sym_RPAREN, - STATE(3028), 1, - sym_mutability_modifiers, - STATE(3860), 1, - sym_parameter_declaration, - STATE(3861), 1, - sym_type_parameter_declaration, - STATE(4382), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 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, - [83204] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3008), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3379), 1, anon_sym_STAR, - ACTIONS(5131), 1, - sym_identifier, - ACTIONS(5135), 1, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - ACTIONS(5249), 1, - anon_sym_RPAREN, - STATE(3028), 1, - sym_mutability_modifiers, - STATE(4029), 1, - sym_type_parameter_declaration, - STATE(4032), 1, - sym_parameter_declaration, - STATE(4382), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 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, - [83298] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(4809), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(4811), 1, anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, anon_sym_in, - ACTIONS(4835), 1, anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5251), 1, - anon_sym_SEMI, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, + [82812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3006), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4829), 2, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, + anon_sym_DOT_DOT, + ACTIONS(3004), 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(4821), 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, - [83396] = 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, + [82860] = 28, ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, + sym_comment, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5117), 1, + ACTIONS(5027), 1, anon_sym_CARET, - ACTIONS(5119), 1, + ACTIONS(5029), 1, anon_sym_AMP_AMP, - ACTIONS(5121), 1, + ACTIONS(5031), 1, anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, + ACTIONS(5033), 1, anon_sym_in, - ACTIONS(5125), 1, + ACTIONS(5035), 1, anon_sym_BANGin, - ACTIONS(5253), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(5251), 1, + anon_sym_LBRACE, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5113), 2, + ACTIONS(5021), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5107), 3, + ACTIONS(5015), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5111), 3, + ACTIONS(5019), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5115), 4, + ACTIONS(5023), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5109), 5, + ACTIONS(5017), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83494] = 28, + [82958] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(3120), 1, + anon_sym_DOT, + ACTIONS(3658), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + ACTIONS(3118), 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(3116), 25, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4679), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_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, + [83010] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(5117), 1, + ACTIONS(4847), 1, anon_sym_CARET, - ACTIONS(5119), 1, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, + ACTIONS(4855), 1, anon_sym_in, - ACTIONS(5125), 1, + ACTIONS(4857), 1, anon_sym_BANGin, - ACTIONS(5255), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(4883), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5253), 1, + anon_sym_SEMI, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5113), 2, + ACTIONS(4849), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5107), 3, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5111), 3, + ACTIONS(4845), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5115), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5109), 5, + ACTIONS(4843), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83592] = 4, + [83108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5257), 1, - anon_sym_DOLLARelse, - ACTIONS(2740), 11, + ACTIONS(2694), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -262940,7 +263196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2738), 27, + ACTIONS(2692), 29, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -262964,334 +263220,456 @@ 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, - [83641] = 27, + [83156] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(5125), 1, anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, + ACTIONS(5127), 1, anon_sym_AMP_AMP, - ACTIONS(4849), 1, + ACTIONS(5129), 1, anon_sym_PIPE_PIPE, - ACTIONS(5259), 1, - anon_sym_is, - ACTIONS(5261), 1, - anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(5131), 1, + anon_sym_in, + ACTIONS(5133), 1, + anon_sym_BANGin, + ACTIONS(5255), 1, + anon_sym_RPAREN, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4829), 2, + ACTIONS(5121), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, + ACTIONS(5115), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4831), 4, + ACTIONS(5119), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5123), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4821), 5, + ACTIONS(5117), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83736] = 27, + [83254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(2970), 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(2968), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4679), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, + 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, + [83302] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, - anon_sym_AMP_AMP, - ACTIONS(4805), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4813), 1, + ACTIONS(4847), 1, + anon_sym_CARET, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, anon_sym_in, - ACTIONS(4815), 1, + ACTIONS(4857), 1, anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(4883), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5257), 1, + anon_sym_RBRACK, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4793), 2, + ACTIONS(4849), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4787), 3, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4791), 3, + ACTIONS(4845), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4795), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4789), 5, + ACTIONS(4843), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83831] = 27, + [83400] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(3355), 1, anon_sym_LPAREN, + ACTIONS(3357), 1, + anon_sym_STAR, + ACTIONS(5145), 1, + sym_identifier, + ACTIONS(5149), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5151), 1, + anon_sym_mut, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5155), 1, + anon_sym_LBRACK2, + ACTIONS(5157), 1, + anon_sym_AMP, + ACTIONS(5159), 1, + anon_sym_shared, + ACTIONS(5259), 1, + anon_sym_RPAREN, + STATE(3019), 1, + sym_mutability_modifiers, + STATE(3990), 1, + sym_type_parameter_declaration, + STATE(3991), 1, + sym_parameter_declaration, + STATE(4352), 1, + sym_plain_type, + STATE(4655), 1, + sym_reference_expression, + STATE(3547), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2415), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 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, + [83494] = 28, + ACTIONS(3), 1, + sym_comment, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4829), 1, + anon_sym_is, + ACTIONS(4831), 1, + anon_sym_BANGis, + ACTIONS(5125), 1, anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, + ACTIONS(5127), 1, anon_sym_AMP_AMP, - ACTIONS(4849), 1, + ACTIONS(5129), 1, anon_sym_PIPE_PIPE, - ACTIONS(5263), 1, - anon_sym_is, - ACTIONS(5265), 1, - anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + ACTIONS(5131), 1, + anon_sym_in, + ACTIONS(5133), 1, + anon_sym_BANGin, + ACTIONS(5261), 1, + anon_sym_RPAREN, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4829), 2, + ACTIONS(5121), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, + ACTIONS(5115), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4831), 4, + ACTIONS(5119), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5123), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4821), 5, + ACTIONS(5117), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83926] = 27, + [83592] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4847), 1, anon_sym_CARET, - ACTIONS(4833), 1, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(4857), 1, anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, + ACTIONS(4883), 1, anon_sym_PIPE_PIPE, - ACTIONS(5267), 1, + ACTIONS(5263), 1, anon_sym_is, - ACTIONS(5269), 1, + ACTIONS(5265), 1, anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4829), 2, + ACTIONS(4849), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4831), 4, + ACTIONS(4845), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4851), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4821), 5, + ACTIONS(4843), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [84021] = 23, + [83687] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(605), 1, anon_sym_LBRACK2, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(2772), 1, + ACTIONS(2740), 1, anon_sym_DOT, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(5267), 1, anon_sym_DOT_DOT_DOT, - STATE(4125), 1, + STATE(4333), 1, sym_plain_type, - STATE(4600), 1, + STATE(4347), 1, + sym__plain_type_without_special, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(3027), 3, + ACTIONS(2844), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK, - STATE(2428), 4, - sym__plain_type_without_special, + STATE(2415), 3, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -263304,82 +263682,214 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [84108] = 27, + [83776] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4847), 1, + anon_sym_CARET, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, + anon_sym_in, + ACTIONS(4857), 1, + anon_sym_BANGin, + ACTIONS(4883), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5269), 1, + anon_sym_is, + ACTIONS(5271), 1, + anon_sym_BANGis, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4849), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4841), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4845), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4851), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4843), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [83871] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4847), 1, + anon_sym_CARET, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, + anon_sym_in, + ACTIONS(4857), 1, + anon_sym_BANGin, + ACTIONS(4883), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5273), 1, + anon_sym_is, + ACTIONS(5275), 1, + anon_sym_BANGis, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4849), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4841), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4845), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4851), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4843), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [83966] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4847), 1, anon_sym_CARET, - ACTIONS(4833), 1, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(4857), 1, anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, + ACTIONS(4883), 1, anon_sym_PIPE_PIPE, - ACTIONS(5273), 1, + ACTIONS(5277), 1, anon_sym_is, - ACTIONS(5275), 1, + ACTIONS(5279), 1, anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4829), 2, + ACTIONS(4849), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4831), 4, + ACTIONS(4845), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4851), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4821), 5, + ACTIONS(4843), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [84203] = 4, + [84061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3659), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - ACTIONS(3657), 12, - anon_sym_DOT, + ACTIONS(2994), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -263391,8 +263901,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3661), 25, + ACTIONS(2997), 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, @@ -263416,146 +263930,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_DOT_DOT, - [84252] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5277), 1, - anon_sym_is, - ACTIONS(5279), 1, - anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [84347] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(607), 1, - anon_sym_LBRACK2, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(2772), 1, - anon_sym_DOT, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5281), 1, - anon_sym_DOT_DOT_DOT, - STATE(4150), 1, - sym__plain_type_without_special, - STATE(4151), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(3027), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - STATE(2428), 3, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 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, - [84436] = 4, + [84108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5283), 1, - anon_sym_DOLLARelse, - ACTIONS(2734), 11, + ACTIONS(2984), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -263567,9 +263945,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2732), 27, + ACTIONS(2987), 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, @@ -263578,11 +263959,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, @@ -263595,84 +263974,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84485] = 27, + [84155] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(4418), 1, + anon_sym_as, + ACTIONS(4424), 1, anon_sym_LPAREN, - ACTIONS(4679), 1, + ACTIONS(4434), 1, anon_sym_LBRACK, - ACTIONS(4681), 1, + ACTIONS(4436), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4438), 1, + anon_sym_DASH_DASH, + ACTIONS(4440), 1, anon_sym_QMARK, - ACTIONS(4683), 1, + ACTIONS(4442), 1, anon_sym_BANG, + ACTIONS(4444), 1, + anon_sym_LBRACK2, + ACTIONS(4446), 1, + anon_sym_AMP_AMP, + ACTIONS(4448), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4450), 1, + anon_sym_or, + ACTIONS(4452), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4454), 1, + anon_sym_is, + ACTIONS(4456), 1, + anon_sym_BANGis, + ACTIONS(4458), 1, + anon_sym_in, + ACTIONS(4460), 1, + anon_sym_BANGin, + ACTIONS(5283), 1, + anon_sym_CARET, + STATE(1979), 1, + sym_argument_list, + STATE(1980), 1, + sym_or_block, + STATE(4384), 1, + sym_type_parameters, + ACTIONS(4416), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4430), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4426), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4428), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4432), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5281), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [84250] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4847), 1, anon_sym_CARET, - ACTIONS(4833), 1, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(4857), 1, anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, + ACTIONS(4883), 1, anon_sym_PIPE_PIPE, ACTIONS(5285), 1, anon_sym_is, ACTIONS(5287), 1, anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4829), 2, + ACTIONS(4849), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4831), 4, + ACTIONS(4845), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4851), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4821), 5, + ACTIONS(4843), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [84580] = 6, + [84345] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4564), 1, - anon_sym_LBRACE, ACTIONS(5289), 1, - anon_sym_COMMA, - STATE(4077), 1, - aux_sym_expression_without_blocks_list_repeat1, - ACTIONS(2880), 11, + anon_sym_DOLLARelse, + ACTIONS(2758), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -263684,7 +264127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2878), 25, + ACTIONS(2756), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -263695,9 +264138,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, @@ -263710,153 +264155,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84633] = 27, + [84394] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, + ACTIONS(4827), 1, anon_sym_or, - ACTIONS(4809), 1, + ACTIONS(4829), 1, anon_sym_is, - ACTIONS(4811), 1, + ACTIONS(4831), 1, anon_sym_BANGis, - ACTIONS(4827), 1, + ACTIONS(4847), 1, anon_sym_CARET, - ACTIONS(4833), 1, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(4857), 1, anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, + ACTIONS(4883), 1, anon_sym_PIPE_PIPE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4829), 2, + ACTIONS(4849), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [84728] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5291), 1, - anon_sym_is, - ACTIONS(5293), 1, - anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, + ACTIONS(4845), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4821), 5, + ACTIONS(4843), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [84823] = 6, + [84489] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 1, - anon_sym_LBRACK, - ACTIONS(3027), 1, + ACTIONS(4574), 1, anon_sym_LBRACE, - ACTIONS(5295), 2, + ACTIONS(5291), 1, anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(2772), 11, + STATE(3951), 1, + aux_sym_expression_without_blocks_list_repeat1, + ACTIONS(2794), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -263868,7 +264244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2770), 24, + ACTIONS(2792), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -263878,6 +264254,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, @@ -263893,126 +264270,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84876] = 27, + [84542] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4847), 1, anon_sym_CARET, - ACTIONS(4833), 1, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(4857), 1, anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, + ACTIONS(4883), 1, anon_sym_PIPE_PIPE, - ACTIONS(5095), 1, + ACTIONS(5293), 1, anon_sym_is, - ACTIONS(5097), 1, + ACTIONS(5295), 1, anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4829), 2, + ACTIONS(4849), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4823), 3, + ACTIONS(4841), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4845), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4825), 3, + ACTIONS(4851), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4843), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [84637] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4847), 1, + anon_sym_CARET, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, + anon_sym_in, + ACTIONS(4857), 1, + anon_sym_BANGin, + ACTIONS(4883), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5297), 1, + anon_sym_is, + ACTIONS(5299), 1, + anon_sym_BANGis, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4849), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4831), 4, + ACTIONS(4845), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4851), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4821), 5, + ACTIONS(4843), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [84971] = 23, + [84732] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(605), 1, anon_sym_LBRACK2, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(2772), 1, + ACTIONS(2740), 1, anon_sym_DOT, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5281), 1, + ACTIONS(5267), 1, anon_sym_DOT_DOT_DOT, - STATE(4151), 1, + STATE(4333), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(3027), 3, + ACTIONS(2844), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -264025,127 +264470,195 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [85058] = 27, + [84819] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4847), 1, anon_sym_CARET, - ACTIONS(4833), 1, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(4857), 1, anon_sym_BANGin, - ACTIONS(4837), 1, + ACTIONS(4883), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5301), 1, + anon_sym_is, + ACTIONS(5303), 1, + anon_sym_BANGis, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4849), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4841), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4845), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4851), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4843), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [84914] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4847), 1, + anon_sym_CARET, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - ACTIONS(4849), 1, + ACTIONS(4855), 1, + anon_sym_in, + ACTIONS(4857), 1, + anon_sym_BANGin, + ACTIONS(4883), 1, anon_sym_PIPE_PIPE, - ACTIONS(5297), 1, + ACTIONS(5305), 1, anon_sym_is, - ACTIONS(5299), 1, + ACTIONS(5307), 1, anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4829), 2, + ACTIONS(4849), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4831), 4, + ACTIONS(4845), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4851), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4821), 5, + ACTIONS(4843), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [85153] = 24, + [85009] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(605), 1, anon_sym_LBRACK2, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(2772), 1, + ACTIONS(2740), 1, anon_sym_DOT, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(5309), 1, anon_sym_DOT_DOT_DOT, - STATE(4125), 1, - sym_plain_type, - STATE(4138), 1, + STATE(4314), 1, sym__plain_type_without_special, - STATE(4600), 1, + STATE(4315), 1, + sym_plain_type, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(3027), 3, + ACTIONS(2844), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK, - STATE(2428), 3, + STATE(2415), 3, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -264158,438 +264671,286 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [85242] = 27, + [85098] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4847), 1, anon_sym_CARET, - ACTIONS(4833), 1, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(4857), 1, anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, + ACTIONS(4883), 1, anon_sym_PIPE_PIPE, - ACTIONS(5301), 1, + ACTIONS(5311), 1, anon_sym_is, - ACTIONS(5303), 1, + ACTIONS(5313), 1, anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4829), 2, + ACTIONS(4849), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [85337] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5305), 1, - anon_sym_is, - ACTIONS(5307), 1, - anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, + ACTIONS(4845), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4821), 5, + ACTIONS(4843), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [85432] = 3, + [85193] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2973), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, anon_sym_QMARK, + ACTIONS(4685), 1, anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2976), 28, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 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_LBRACK, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, anon_sym_DASH_DASH, + ACTIONS(4821), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(4823), 1, anon_sym_AMP_AMP, + ACTIONS(4825), 1, anon_sym_PIPE_PIPE, + ACTIONS(4827), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4829), 1, anon_sym_is, + ACTIONS(4831), 1, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [85479] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4827), 1, - anon_sym_CARET, ACTIONS(4833), 1, anon_sym_in, ACTIONS(4835), 1, anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5309), 1, - anon_sym_is, - ACTIONS(5311), 1, - anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4829), 2, + ACTIONS(4813), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, + ACTIONS(4807), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4831), 4, + ACTIONS(4811), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4815), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4821), 5, + ACTIONS(4809), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [85574] = 3, + [85288] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4679), 1, + anon_sym_LPAREN, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, anon_sym_QMARK, + ACTIONS(4685), 1, anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2954), 28, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 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_LBRACK, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4847), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(4853), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(4855), 1, anon_sym_in, + ACTIONS(4857), 1, anon_sym_BANGin, - [85621] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4422), 1, - anon_sym_as, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, - anon_sym_DASH_DASH, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4450), 1, - anon_sym_AMP_AMP, - ACTIONS(4452), 1, + ACTIONS(4883), 1, anon_sym_PIPE_PIPE, - ACTIONS(4454), 1, - anon_sym_or, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4458), 1, + ACTIONS(5091), 1, anon_sym_is, - ACTIONS(4460), 1, + ACTIONS(5093), 1, anon_sym_BANGis, - ACTIONS(4462), 1, - anon_sym_in, - ACTIONS(4464), 1, - anon_sym_BANGin, - ACTIONS(5315), 1, - anon_sym_CARET, - STATE(1934), 1, + STATE(2325), 1, sym_or_block, - STATE(1935), 1, + STATE(2378), 1, sym_argument_list, - STATE(4313), 1, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4420), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4434), 2, + ACTIONS(4849), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4430), 3, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4432), 3, + ACTIONS(4845), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4436), 4, + ACTIONS(4851), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5313), 5, + ACTIONS(4843), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [85716] = 27, + [85383] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(4681), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4683), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, anon_sym_LBRACK2, - ACTIONS(4689), 1, + ACTIONS(4691), 1, anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(4797), 1, + ACTIONS(4817), 1, anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, + ACTIONS(4819), 1, anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4847), 1, anon_sym_CARET, - ACTIONS(4833), 1, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, anon_sym_in, - ACTIONS(4835), 1, + ACTIONS(4857), 1, anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, + ACTIONS(4883), 1, anon_sym_PIPE_PIPE, - ACTIONS(5317), 1, + ACTIONS(5315), 1, anon_sym_is, - ACTIONS(5319), 1, + ACTIONS(5317), 1, anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, + STATE(2325), 1, sym_or_block, - STATE(4199), 1, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, sym_type_parameters, - ACTIONS(4687), 2, + ACTIONS(4689), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4829), 2, + ACTIONS(4849), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, + ACTIONS(4841), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4831), 4, + ACTIONS(4845), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4851), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4821), 5, + ACTIONS(4843), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [85811] = 3, + [85478] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2766), 11, + ACTIONS(3662), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(3660), 12, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -264601,8 +264962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2768), 27, - anon_sym_DOT, + ACTIONS(3664), 25, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -264612,11 +264972,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, @@ -264629,10 +264987,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85857] = 3, + anon_sym_DOT_DOT, + [85527] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3153), 11, + ACTIONS(5319), 1, + anon_sym_DOLLARelse, + ACTIONS(2616), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -264644,7 +265005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3151), 27, + ACTIONS(2614), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -264672,10 +265033,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85903] = 3, + [85576] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2981), 11, + ACTIONS(2745), 1, + anon_sym_LBRACK, + ACTIONS(2844), 1, + anon_sym_LBRACE, + ACTIONS(5321), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(2740), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -264687,7 +265055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2979), 27, + ACTIONS(2738), 24, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -264697,12 +265065,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -264715,58 +265080,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85949] = 24, + [85629] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(3377), 1, + ACTIONS(605), 1, + anon_sym_LBRACK2, + ACTIONS(609), 1, + anon_sym_shared, + ACTIONS(2740), 1, + anon_sym_DOT, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - STATE(3037), 1, - sym_mutability_modifiers, - STATE(4117), 1, - sym_type_parameter_declaration, - STATE(4382), 1, + ACTIONS(5309), 1, + anon_sym_DOT_DOT_DOT, + STATE(4315), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + ACTIONS(2844), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -264779,73 +265144,121 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [86037] = 21, + [85716] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(4679), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(4681), 1, + anon_sym_LBRACK, + ACTIONS(4683), 1, + anon_sym_QMARK, + ACTIONS(4685), 1, + anon_sym_BANG, + ACTIONS(4687), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4817), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4819), 1, + anon_sym_DASH_DASH, + ACTIONS(4827), 1, + anon_sym_or, + ACTIONS(4847), 1, + anon_sym_CARET, + ACTIONS(4853), 1, + anon_sym_AMP_AMP, + ACTIONS(4855), 1, + anon_sym_in, + ACTIONS(4857), 1, + anon_sym_BANGin, + ACTIONS(4883), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5323), 1, + anon_sym_is, + ACTIONS(5325), 1, + anon_sym_BANGis, + STATE(2325), 1, + sym_or_block, + STATE(2378), 1, + sym_argument_list, + STATE(4401), 1, + sym_type_parameters, + ACTIONS(4689), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4849), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4841), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4845), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4851), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4843), 5, anon_sym_STAR, - ACTIONS(5139), 1, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [85811] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2966), 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, - ACTIONS(5141), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, anon_sym_AMP, - STATE(2378), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(613), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 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, - [86119] = 4, + anon_sym_GT_GT, + ACTIONS(2964), 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, + [85857] = 3, ACTIONS(3), 1, sym_comment, - STATE(2857), 1, - sym_block, - ACTIONS(3149), 11, + ACTIONS(3203), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -264857,10 +265270,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3147), 26, + ACTIONS(3201), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -264869,9 +265281,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, @@ -264884,10 +265298,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86167] = 3, + [85903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2880), 11, + ACTIONS(3125), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -264899,7 +265313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2878), 27, + ACTIONS(3123), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -264927,10 +265341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86213] = 3, + [85949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2816), 11, + ACTIONS(2794), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -264942,7 +265356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2814), 27, + ACTIONS(2792), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -264970,12 +265384,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86259] = 4, + [85995] = 4, ACTIONS(3), 1, sym_comment, - STATE(1925), 1, + STATE(600), 1, sym_block, - ACTIONS(3149), 11, + ACTIONS(3098), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -264987,7 +265401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3147), 26, + ACTIONS(3096), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -265014,10 +265428,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86307] = 3, + [86043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 11, + ACTIONS(2898), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265029,7 +265443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2802), 27, + ACTIONS(2896), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265057,10 +265471,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86353] = 3, + [86089] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2800), 11, + STATE(1771), 1, + sym_block, + ACTIONS(3098), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265072,9 +265488,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2798), 27, + ACTIONS(3096), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265083,11 +265500,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, @@ -265100,73 +265515,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86399] = 21, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3413), 1, - anon_sym_LPAREN, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(5321), 1, - anon_sym_fn, - ACTIONS(5323), 1, - anon_sym_STAR, - ACTIONS(5325), 1, - anon_sym_QMARK, - ACTIONS(5327), 1, - anon_sym_BANG, - ACTIONS(5329), 1, - anon_sym_LBRACK2, - ACTIONS(5331), 1, - anon_sym_AMP, - ACTIONS(5333), 1, - anon_sym_shared, - ACTIONS(5335), 1, - anon_sym_map_LBRACK, - ACTIONS(5337), 1, - anon_sym_chan, - ACTIONS(5339), 1, - anon_sym_thread, - ACTIONS(5341), 1, - anon_sym_atomic, - STATE(1643), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(615), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 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, - [86481] = 4, + [86137] = 4, ACTIONS(3), 1, sym_comment, - STATE(993), 1, + STATE(2450), 1, sym_block, - ACTIONS(3149), 11, + ACTIONS(3098), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265178,7 +265532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3147), 26, + ACTIONS(3096), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -265205,10 +265559,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86529] = 3, + [86185] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 11, + STATE(1925), 1, + sym_block, + ACTIONS(3098), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265220,9 +265576,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2983), 27, + ACTIONS(3096), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265231,11 +265588,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, @@ -265248,55 +265603,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86575] = 21, - ACTIONS(487), 1, + [86233] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, sym_identifier, - ACTIONS(3413), 1, - anon_sym_LPAREN, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(5321), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(5323), 1, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(609), 1, + anon_sym_shared, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5325), 1, - anon_sym_QMARK, - ACTIONS(5327), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5329), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5331), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5333), 1, - anon_sym_shared, - ACTIONS(5335), 1, - anon_sym_map_LBRACK, - ACTIONS(5337), 1, - anon_sym_chan, - ACTIONS(5339), 1, - anon_sym_thread, - ACTIONS(5341), 1, - anon_sym_atomic, - STATE(1654), 1, + STATE(2330), 1, sym_plain_type, - STATE(4416), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3390), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(589), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - STATE(1665), 4, + ACTIONS(611), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1641), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -265309,12 +265664,12 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [86657] = 4, + [86315] = 4, ACTIONS(3), 1, sym_comment, - STATE(2165), 1, + STATE(997), 1, sym_block, - ACTIONS(3149), 11, + ACTIONS(3098), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265326,7 +265681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3147), 26, + ACTIONS(3096), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -265353,13 +265708,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86705] = 4, + [86363] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4607), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2880), 11, + STATE(2649), 1, + sym_block, + ACTIONS(3098), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265371,9 +265725,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2878), 25, + ACTIONS(3096), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265397,12 +265752,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86753] = 4, + [86411] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, + sym_identifier, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(609), 1, + anon_sym_shared, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, + anon_sym_STAR, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5155), 1, + anon_sym_LBRACK2, + ACTIONS(5157), 1, + anon_sym_AMP, + STATE(2400), 1, + sym_plain_type, + STATE(4655), 1, + sym_reference_expression, + STATE(3547), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(557), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2415), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 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, + [86493] = 4, ACTIONS(3), 1, sym_comment, - STATE(2307), 1, + STATE(2870), 1, sym_block, - ACTIONS(3149), 11, + ACTIONS(3098), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265414,7 +265830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3147), 26, + ACTIONS(3096), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -265441,10 +265857,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86801] = 3, + [86541] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2895), 11, + STATE(1929), 1, + sym_block, + ACTIONS(3098), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265456,9 +265874,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2893), 27, + ACTIONS(3096), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265467,11 +265886,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, @@ -265484,10 +265901,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86847] = 3, + [86589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 11, + ACTIONS(2802), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265499,7 +265916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2826), 27, + ACTIONS(2800), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265527,10 +265944,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86893] = 3, + [86635] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3145), 11, + STATE(1306), 1, + sym_block, + ACTIONS(3098), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265542,9 +265961,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3143), 27, + ACTIONS(3096), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265553,11 +265973,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, @@ -265570,10 +265988,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86939] = 3, + [86683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3141), 11, + ACTIONS(3102), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265585,7 +266003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3139), 27, + ACTIONS(3100), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265613,12 +266031,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86985] = 4, + [86729] = 3, ACTIONS(3), 1, sym_comment, - STATE(1793), 1, - sym_block, - ACTIONS(3149), 11, + ACTIONS(2902), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265630,10 +266046,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3147), 26, + ACTIONS(2900), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265642,9 +266057,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, @@ -265657,10 +266074,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87033] = 3, + [86775] = 21, + ACTIONS(493), 1, + sym_comment, + ACTIONS(3205), 1, + sym_identifier, + ACTIONS(3421), 1, + anon_sym_LPAREN, + ACTIONS(3427), 1, + anon_sym_struct, + ACTIONS(5327), 1, + anon_sym_fn, + ACTIONS(5329), 1, + anon_sym_STAR, + ACTIONS(5331), 1, + anon_sym_QMARK, + ACTIONS(5333), 1, + anon_sym_BANG, + ACTIONS(5335), 1, + anon_sym_LBRACK2, + ACTIONS(5337), 1, + anon_sym_AMP, + ACTIONS(5339), 1, + anon_sym_shared, + ACTIONS(5341), 1, + anon_sym_map_LBRACK, + ACTIONS(5343), 1, + anon_sym_chan, + ACTIONS(5345), 1, + anon_sym_thread, + ACTIONS(5347), 1, + anon_sym_atomic, + STATE(1652), 1, + sym_plain_type, + STATE(4425), 1, + sym_reference_expression, + STATE(3388), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(561), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + STATE(1636), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(1651), 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, + [86857] = 21, + ACTIONS(493), 1, + sym_comment, + ACTIONS(3205), 1, + sym_identifier, + ACTIONS(3421), 1, + anon_sym_LPAREN, + ACTIONS(3427), 1, + anon_sym_struct, + ACTIONS(5327), 1, + anon_sym_fn, + ACTIONS(5329), 1, + anon_sym_STAR, + ACTIONS(5331), 1, + anon_sym_QMARK, + ACTIONS(5333), 1, + anon_sym_BANG, + ACTIONS(5335), 1, + anon_sym_LBRACK2, + ACTIONS(5337), 1, + anon_sym_AMP, + ACTIONS(5339), 1, + anon_sym_shared, + ACTIONS(5341), 1, + anon_sym_map_LBRACK, + ACTIONS(5343), 1, + anon_sym_chan, + ACTIONS(5345), 1, + anon_sym_thread, + ACTIONS(5347), 1, + anon_sym_atomic, + STATE(1678), 1, + sym_plain_type, + STATE(4425), 1, + sym_reference_expression, + STATE(3388), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(613), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + STATE(1636), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(1651), 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, + [86939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 11, + ACTIONS(3163), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265672,7 +266211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3115), 27, + ACTIONS(3161), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265700,10 +266239,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87079] = 3, + [86985] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3085), 11, + STATE(1161), 1, + sym_block, + ACTIONS(3098), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265715,9 +266256,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3083), 27, + ACTIONS(3096), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265726,11 +266268,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, @@ -265743,10 +266283,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87125] = 3, + [87033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 11, + ACTIONS(3133), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265758,7 +266298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2999), 27, + ACTIONS(3131), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265786,10 +266326,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87171] = 3, + [87079] = 21, + ACTIONS(493), 1, + sym_comment, + ACTIONS(3205), 1, + sym_identifier, + ACTIONS(3421), 1, + anon_sym_LPAREN, + ACTIONS(3427), 1, + anon_sym_struct, + ACTIONS(5327), 1, + anon_sym_fn, + ACTIONS(5329), 1, + anon_sym_STAR, + ACTIONS(5331), 1, + anon_sym_QMARK, + ACTIONS(5333), 1, + anon_sym_BANG, + ACTIONS(5335), 1, + anon_sym_LBRACK2, + ACTIONS(5337), 1, + anon_sym_AMP, + ACTIONS(5339), 1, + anon_sym_shared, + ACTIONS(5341), 1, + anon_sym_map_LBRACK, + ACTIONS(5343), 1, + anon_sym_chan, + ACTIONS(5345), 1, + anon_sym_thread, + ACTIONS(5347), 1, + anon_sym_atomic, + STATE(1660), 1, + sym_plain_type, + STATE(4425), 1, + sym_reference_expression, + STATE(3388), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(621), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + STATE(1636), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(1651), 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, + [87161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3077), 11, + ACTIONS(2906), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265801,7 +266402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3075), 27, + ACTIONS(2904), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265829,10 +266430,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87217] = 3, + [87207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3193), 11, + ACTIONS(3195), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265844,7 +266445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3191), 27, + ACTIONS(3193), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265872,71 +266473,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87263] = 21, - ACTIONS(487), 1, + [87253] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3413), 1, - anon_sym_LPAREN, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(5321), 1, - anon_sym_fn, - ACTIONS(5323), 1, - anon_sym_STAR, - ACTIONS(5325), 1, + ACTIONS(2918), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(5327), 1, anon_sym_BANG, - ACTIONS(5329), 1, anon_sym_LBRACK2, - ACTIONS(5331), 1, anon_sym_AMP, - ACTIONS(5333), 1, - anon_sym_shared, - ACTIONS(5335), 1, - anon_sym_map_LBRACK, - ACTIONS(5337), 1, - anon_sym_chan, - ACTIONS(5339), 1, - anon_sym_thread, - ACTIONS(5341), 1, - anon_sym_atomic, - STATE(1661), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(555), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 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, - [87345] = 3, + anon_sym_GT_GT, + ACTIONS(2916), 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, + [87299] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2848), 11, + STATE(2308), 1, + sym_block, + ACTIONS(3098), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265948,9 +266533,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2846), 27, + ACTIONS(3096), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265959,11 +266545,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, @@ -265976,10 +266560,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87391] = 3, + [87347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 11, + ACTIONS(2938), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265991,7 +266575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2921), 27, + ACTIONS(2936), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266019,10 +266603,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87437] = 3, + [87393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 11, + ACTIONS(2942), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266034,7 +266618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3055), 27, + ACTIONS(2940), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266062,12 +266646,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87483] = 4, + [87439] = 24, ACTIONS(3), 1, sym_comment, - STATE(1160), 1, - sym_block, - ACTIONS(3149), 11, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, + sym_identifier, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, + anon_sym_STAR, + ACTIONS(5149), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5151), 1, + anon_sym_mut, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5155), 1, + anon_sym_LBRACK2, + ACTIONS(5157), 1, + anon_sym_AMP, + ACTIONS(5159), 1, + anon_sym_shared, + STATE(3014), 1, + sym_mutability_modifiers, + STATE(4318), 1, + sym_type_parameter_declaration, + STATE(4352), 1, + sym_plain_type, + STATE(4655), 1, + sym_reference_expression, + STATE(3547), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2415), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 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, + [87527] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2946), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266079,10 +266725,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3147), 26, + ACTIONS(2944), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266091,9 +266736,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, @@ -266106,12 +266753,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87531] = 4, + [87573] = 21, ACTIONS(3), 1, sym_comment, - STATE(1916), 1, - sym_block, - ACTIONS(3149), 11, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, + sym_identifier, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(609), 1, + anon_sym_shared, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, + anon_sym_STAR, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5155), 1, + anon_sym_LBRACK2, + ACTIONS(5157), 1, + anon_sym_AMP, + STATE(2359), 1, + sym_plain_type, + STATE(4655), 1, + sym_reference_expression, + STATE(3547), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(619), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2415), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 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, + [87655] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2950), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266123,10 +266829,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3147), 26, + ACTIONS(2948), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266135,9 +266840,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, @@ -266150,10 +266857,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87579] = 3, + [87701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3005), 11, + ACTIONS(3026), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266165,7 +266872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3003), 27, + ACTIONS(3024), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266193,10 +266900,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87625] = 3, + [87747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3073), 11, + ACTIONS(2784), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266208,7 +266915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3071), 27, + ACTIONS(2786), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266236,12 +266943,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87671] = 4, + [87793] = 4, ACTIONS(3), 1, sym_comment, - STATE(2657), 1, + STATE(2161), 1, sym_block, - ACTIONS(3149), 11, + ACTIONS(3098), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266253,7 +266960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3147), 26, + ACTIONS(3096), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -266280,10 +266987,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87719] = 3, + [87841] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2812), 11, + ACTIONS(4613), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2794), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266295,7 +267005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2810), 27, + ACTIONS(2792), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266306,11 +267016,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, @@ -266323,10 +267031,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87765] = 3, + [87889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2997), 11, + ACTIONS(3199), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266338,7 +267046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2995), 27, + ACTIONS(3197), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266366,134 +267074,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87811] = 21, + [87935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(3034), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, anon_sym_BANG, - ACTIONS(5141), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, anon_sym_AMP, - STATE(2330), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(551), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 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, - [87893] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, + anon_sym_GT_GT, + ACTIONS(3032), 27, + anon_sym_DOT, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3379), 1, anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(2383), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(587), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 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, - [87975] = 4, + 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, + [87981] = 3, ACTIONS(3), 1, sym_comment, - STATE(1296), 1, - sym_block, - ACTIONS(3149), 11, + ACTIONS(3022), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266505,10 +267132,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3147), 26, + ACTIONS(3020), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266517,9 +267143,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, @@ -266532,10 +267160,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88023] = 3, + [88027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3161), 11, + ACTIONS(3114), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266547,7 +267175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3159), 27, + ACTIONS(3112), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266575,10 +267203,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88069] = 3, + [88073] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2796), 11, + STATE(1666), 1, + sym_block, + ACTIONS(3098), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266590,9 +267220,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2794), 27, + ACTIONS(3096), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266601,11 +267232,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, @@ -266618,10 +267247,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88115] = 3, + [88121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3125), 11, + ACTIONS(2890), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266633,7 +267262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3123), 27, + ACTIONS(2888), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266661,12 +267290,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88161] = 4, + [88167] = 3, ACTIONS(3), 1, sym_comment, - STATE(2443), 1, - sym_block, - ACTIONS(3149), 11, + ACTIONS(3014), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266678,10 +267305,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3147), 26, + ACTIONS(3012), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266690,9 +267316,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, @@ -266705,12 +267333,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88209] = 4, + [88213] = 3, ACTIONS(3), 1, sym_comment, - STATE(1642), 1, - sym_block, - ACTIONS(3149), 11, + ACTIONS(3078), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266722,10 +267348,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3147), 26, + ACTIONS(3076), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266734,9 +267359,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, @@ -266749,12 +267376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88257] = 4, + [88259] = 3, ACTIONS(3), 1, sym_comment, - STATE(596), 1, - sym_block, - ACTIONS(3149), 11, + ACTIONS(3151), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266766,10 +267391,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3147), 26, + ACTIONS(3149), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266778,9 +267402,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, @@ -266796,7 +267422,7 @@ static const uint16_t ts_small_parse_table[] = { [88305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3061), 11, + ACTIONS(3155), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266808,7 +267434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3059), 27, + ACTIONS(3153), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266839,7 +267465,7 @@ static const uint16_t ts_small_parse_table[] = { [88351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 11, + ACTIONS(3159), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266851,7 +267477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3195), 27, + ACTIONS(3157), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266879,14 +267505,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88397] = 5, + [88397] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5343), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, + ACTIONS(5349), 1, + anon_sym_RBRACK, + ACTIONS(3171), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266898,7 +267522,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 24, + ACTIONS(3169), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -266923,12 +267548,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88446] = 4, + [88444] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5345), 1, + ACTIONS(4586), 1, + anon_sym_DOT, + ACTIONS(5351), 1, anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266940,8 +267567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, + ACTIONS(3116), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -266969,9 +267595,9 @@ static const uint16_t ts_small_parse_table[] = { [88493] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5347), 1, + ACTIONS(5353), 1, anon_sym_RPAREN, - ACTIONS(2884), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266983,7 +267609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 25, + ACTIONS(3116), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267012,9 +267638,9 @@ static const uint16_t ts_small_parse_table[] = { [88540] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5349), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(5355), 1, + anon_sym_RPAREN, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267026,7 +267652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 25, + ACTIONS(3116), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267055,11 +267681,55 @@ static const uint16_t ts_small_parse_table[] = { [88587] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, + ACTIONS(4586), 1, anon_sym_DOT, - ACTIONS(5351), 1, + ACTIONS(5353), 1, + anon_sym_RPAREN, + ACTIONS(3118), 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(3116), 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, + [88636] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4586), 1, + anon_sym_DOT, + ACTIONS(5357), 1, anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267071,7 +267741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 24, + ACTIONS(3116), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267096,12 +267766,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88636] = 4, + [88685] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5351), 1, anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(3171), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267113,7 +267783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 25, + ACTIONS(3169), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267139,12 +267809,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88683] = 4, + [88732] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5351), 1, + ACTIONS(5359), 1, anon_sym_RBRACK, - ACTIONS(2832), 11, + ACTIONS(3171), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267156,7 +267826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2830), 25, + ACTIONS(3169), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267182,12 +267852,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88730] = 4, + [88779] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, - anon_sym_RBRACK, - ACTIONS(2832), 11, + ACTIONS(5361), 1, + anon_sym_RPAREN, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267199,7 +267869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2830), 25, + ACTIONS(3116), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267225,12 +267895,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88777] = 4, + [88826] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(4586), 1, + anon_sym_DOT, + ACTIONS(5361), 1, + anon_sym_RPAREN, + ACTIONS(3118), 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(3116), 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, + [88875] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5363), 1, + anon_sym_RPAREN, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267242,7 +267956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 25, + ACTIONS(3116), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267268,12 +267982,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88824] = 4, + [88922] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5355), 1, + ACTIONS(5365), 1, anon_sym_RPAREN, - ACTIONS(2884), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267285,7 +267999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 25, + ACTIONS(3116), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267311,14 +268025,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88871] = 5, + [88969] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5347), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, + ACTIONS(5367), 1, + anon_sym_RBRACK, + ACTIONS(3171), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267330,51 +268042,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 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, - [88920] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, + ACTIONS(3169), 25, anon_sym_DOT, - ACTIONS(5355), 1, - anon_sym_RPAREN, - ACTIONS(2884), 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(2882), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267399,14 +268068,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88969] = 5, + [89016] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, + ACTIONS(4586), 1, anon_sym_DOT, - ACTIONS(5357), 1, + ACTIONS(5369), 1, anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267418,7 +268087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 24, + ACTIONS(3116), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267443,14 +268112,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89018] = 5, + [89065] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5353), 1, + ACTIONS(5369), 1, anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267462,7 +268129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 24, + ACTIONS(3116), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267487,12 +268155,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89067] = 4, + [89112] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5359), 1, + ACTIONS(5369), 1, anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(3171), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267504,7 +268172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 25, + ACTIONS(3169), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267530,12 +268198,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89114] = 4, + [89159] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5357), 1, + ACTIONS(5367), 1, anon_sym_RBRACK, - ACTIONS(2832), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267547,7 +268215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2830), 25, + ACTIONS(3116), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267573,12 +268241,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89161] = 4, + [89206] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5349), 1, - anon_sym_RBRACK, - ACTIONS(2832), 11, + ACTIONS(5371), 1, + anon_sym_RPAREN, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267590,7 +268258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2830), 25, + ACTIONS(3116), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267616,14 +268284,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89208] = 5, + [89253] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5361), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(5373), 1, + anon_sym_RPAREN, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267635,7 +268301,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 24, + ACTIONS(3116), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267660,12 +268327,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89257] = 4, + [89300] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5363), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(4586), 1, + anon_sym_DOT, + ACTIONS(5373), 1, + anon_sym_RPAREN, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267677,8 +268346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, + ACTIONS(3116), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267703,12 +268371,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89304] = 4, + [89349] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5363), 1, + ACTIONS(5349), 1, anon_sym_RBRACK, - ACTIONS(2832), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267720,7 +268388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2830), 25, + ACTIONS(3116), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267746,14 +268414,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89351] = 5, + [89396] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, + ACTIONS(4586), 1, anon_sym_DOT, - ACTIONS(5365), 1, + ACTIONS(5359), 1, anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267765,7 +268433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 24, + ACTIONS(3116), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267790,14 +268458,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89400] = 5, + [89445] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, + ACTIONS(4586), 1, anon_sym_DOT, - ACTIONS(5367), 1, + ACTIONS(5375), 1, anon_sym_RPAREN, - ACTIONS(2884), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267809,7 +268477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 24, + ACTIONS(3116), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267834,12 +268502,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89449] = 4, + [89494] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5367), 1, + ACTIONS(5375), 1, anon_sym_RPAREN, - ACTIONS(2884), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267851,7 +268519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 25, + ACTIONS(3116), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267877,55 +268545,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89496] = 4, + [89541] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5365), 1, - anon_sym_RBRACK, - ACTIONS(2884), 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(2882), 25, + ACTIONS(4586), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [89543] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5365), 1, + ACTIONS(5377), 1, anon_sym_RBRACK, - ACTIONS(2832), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267937,8 +268564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2830), 25, - anon_sym_DOT, + ACTIONS(3116), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267966,11 +268592,11 @@ static const uint16_t ts_small_parse_table[] = { [89590] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, + ACTIONS(4586), 1, anon_sym_DOT, - ACTIONS(5369), 1, + ACTIONS(5379), 1, anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267982,7 +268608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 24, + ACTIONS(3116), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268010,9 +268636,9 @@ static const uint16_t ts_small_parse_table[] = { [89639] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5369), 1, + ACTIONS(5357), 1, anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268024,7 +268650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 25, + ACTIONS(3116), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268053,9 +268679,9 @@ static const uint16_t ts_small_parse_table[] = { [89686] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5369), 1, + ACTIONS(5357), 1, anon_sym_RBRACK, - ACTIONS(2832), 11, + ACTIONS(3171), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268067,7 +268693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2830), 25, + ACTIONS(3169), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268096,98 +268722,9 @@ static const uint16_t ts_small_parse_table[] = { [89733] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5359), 1, - anon_sym_RBRACK, - ACTIONS(2832), 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(2830), 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, - [89780] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5371), 1, - anon_sym_RPAREN, - ACTIONS(2884), 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(2882), 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, - [89829] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5359), 1, + ACTIONS(5381), 1, anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268199,51 +268736,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 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, - [89878] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, + ACTIONS(3116), 25, anon_sym_DOT, - ACTIONS(5373), 1, - anon_sym_RPAREN, - ACTIONS(2884), 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(2882), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268268,12 +268762,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89927] = 4, + [89780] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5373), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, + ACTIONS(5383), 1, + anon_sym_RBRACK, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268285,7 +268779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 25, + ACTIONS(3116), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268311,12 +268805,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89974] = 4, + [89827] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5375), 1, + ACTIONS(5379), 1, anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268328,7 +268822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 25, + ACTIONS(3116), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268354,14 +268848,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90021] = 5, + [89874] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5377), 1, + ACTIONS(5379), 1, anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(3171), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268373,7 +268865,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 24, + ACTIONS(3169), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268398,12 +268891,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90070] = 4, + [89921] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5375), 1, + ACTIONS(5359), 1, anon_sym_RBRACK, - ACTIONS(2832), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268415,7 +268908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2830), 25, + ACTIONS(3116), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268441,12 +268934,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90117] = 4, + [89968] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5379), 1, + ACTIONS(5385), 1, anon_sym_RBRACK, - ACTIONS(2832), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268458,7 +268951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2830), 25, + ACTIONS(3116), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268484,12 +268977,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90164] = 4, + [90015] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5379), 1, + ACTIONS(5385), 1, anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(3171), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268501,7 +268994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 25, + ACTIONS(3169), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268527,14 +269020,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90211] = 5, + [90062] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, + ACTIONS(5383), 1, + anon_sym_RBRACK, + ACTIONS(3171), 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(3169), 25, anon_sym_DOT, - ACTIONS(5363), 1, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [90109] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5387), 1, anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(3171), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268546,7 +269080,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 24, + ACTIONS(3169), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268571,14 +269106,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90260] = 5, + [90156] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, + ACTIONS(4586), 1, anon_sym_DOT, - ACTIONS(5381), 1, + ACTIONS(5363), 1, anon_sym_RPAREN, - ACTIONS(2884), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268590,7 +269125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 24, + ACTIONS(3116), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268615,12 +269150,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90309] = 4, + [90205] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5383), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, + ACTIONS(5389), 1, + anon_sym_RBRACK, + ACTIONS(3171), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268632,7 +269167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 25, + ACTIONS(3169), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268658,14 +269193,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90356] = 5, + [90252] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5383), 1, + ACTIONS(5391), 1, anon_sym_RPAREN, - ACTIONS(2884), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268677,7 +269210,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 24, + ACTIONS(3116), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268702,12 +269236,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90405] = 4, + [90299] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5377), 1, + ACTIONS(5389), 1, anon_sym_RBRACK, - ACTIONS(2832), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268719,7 +269253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2830), 25, + ACTIONS(3116), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268745,14 +269279,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90452] = 5, + [90346] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, + ACTIONS(4586), 1, anon_sym_DOT, - ACTIONS(5349), 1, + ACTIONS(5383), 1, anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268764,7 +269298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 24, + ACTIONS(3116), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268789,12 +269323,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90501] = 4, + [90395] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5377), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(4586), 1, + anon_sym_DOT, + ACTIONS(5393), 1, + anon_sym_RPAREN, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268806,8 +269342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, + ACTIONS(3116), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268832,12 +269367,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90548] = 4, + [90444] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5381), 1, + ACTIONS(5393), 1, anon_sym_RPAREN, - ACTIONS(2884), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268849,7 +269384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 25, + ACTIONS(3116), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268875,12 +269410,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90595] = 4, + [90491] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(5395), 1, anon_sym_RBRACK, - ACTIONS(2832), 11, + ACTIONS(3171), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268892,7 +269427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2830), 25, + ACTIONS(3169), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268918,12 +269453,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90642] = 4, + [90538] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5371), 1, + ACTIONS(5395), 1, + anon_sym_RBRACK, + ACTIONS(3118), 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(3116), 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, + [90585] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5397), 1, anon_sym_RPAREN, - ACTIONS(2884), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268935,7 +269513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 25, + ACTIONS(3116), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268961,14 +269539,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90689] = 5, + [90632] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, + ACTIONS(4586), 1, anon_sym_DOT, - ACTIONS(5387), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(5397), 1, + anon_sym_RPAREN, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268980,7 +269558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 24, + ACTIONS(3116), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269005,14 +269583,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90738] = 5, + [90681] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, + ACTIONS(4586), 1, anon_sym_DOT, - ACTIONS(5375), 1, + ACTIONS(5385), 1, anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269024,7 +269602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 24, + ACTIONS(3116), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269049,14 +269627,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90787] = 5, + [90730] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5345), 1, + ACTIONS(5387), 1, anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269068,7 +269644,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 24, + ACTIONS(3116), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269093,14 +269670,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90836] = 5, + [90777] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, + ACTIONS(4586), 1, anon_sym_DOT, - ACTIONS(5379), 1, + ACTIONS(5399), 1, anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269112,7 +269689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 24, + ACTIONS(3116), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269137,12 +269714,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90885] = 4, + [90826] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5345), 1, + ACTIONS(4586), 1, + anon_sym_DOT, + ACTIONS(5387), 1, anon_sym_RBRACK, - ACTIONS(2832), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269154,8 +269733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2830), 25, - anon_sym_DOT, + ACTIONS(3116), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269180,14 +269758,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90932] = 5, + [90875] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, + ACTIONS(4586), 1, anon_sym_DOT, - ACTIONS(5389), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, + ACTIONS(5381), 1, + anon_sym_RBRACK, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269199,7 +269777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 24, + ACTIONS(3116), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269224,12 +269802,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90981] = 4, + [90924] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5389), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, + ACTIONS(5377), 1, + anon_sym_RBRACK, + ACTIONS(3171), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269241,7 +269819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 25, + ACTIONS(3169), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269267,12 +269845,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91028] = 4, + [90971] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, + ACTIONS(5351), 1, + anon_sym_RBRACK, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269284,7 +269862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 25, + ACTIONS(3116), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269310,14 +269888,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91075] = 5, + [91018] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5391), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, + ACTIONS(5381), 1, + anon_sym_RBRACK, + ACTIONS(3171), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269329,7 +269905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 24, + ACTIONS(3169), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269354,14 +269931,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91124] = 5, + [91065] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5393), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, + ACTIONS(5399), 1, + anon_sym_RBRACK, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269373,7 +269948,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 24, + ACTIONS(3116), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269398,12 +269974,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91173] = 4, + [91112] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5393), 1, + ACTIONS(4586), 1, + anon_sym_DOT, + ACTIONS(5365), 1, anon_sym_RPAREN, - ACTIONS(2884), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269415,8 +269993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, + ACTIONS(3116), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269441,12 +270018,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91220] = 4, + [91161] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5361), 1, + ACTIONS(5377), 1, anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269458,7 +270035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 25, + ACTIONS(3116), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269484,12 +270061,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91267] = 4, + [91208] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5343), 1, + ACTIONS(4586), 1, + anon_sym_DOT, + ACTIONS(5355), 1, anon_sym_RPAREN, - ACTIONS(2884), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269501,8 +270080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, + ACTIONS(3116), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269527,12 +270105,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91314] = 4, + [91257] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5395), 1, + ACTIONS(5399), 1, anon_sym_RBRACK, - ACTIONS(2832), 11, + ACTIONS(3171), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269544,7 +270122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2830), 25, + ACTIONS(3169), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269570,12 +270148,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91361] = 4, + [91304] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5395), 1, + ACTIONS(4586), 1, + anon_sym_DOT, + ACTIONS(5349), 1, anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269587,8 +270167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, + ACTIONS(3116), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269613,12 +270192,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91408] = 4, + [91353] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5361), 1, + ACTIONS(5401), 1, anon_sym_RBRACK, - ACTIONS(2832), 11, + ACTIONS(3171), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269630,7 +270209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2830), 25, + ACTIONS(3169), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269656,14 +270235,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91455] = 5, + [91400] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5395), 1, + ACTIONS(5401), 1, anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269675,7 +270252,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 24, + ACTIONS(3116), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269700,12 +270278,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91504] = 4, + [91447] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5357), 1, + ACTIONS(4586), 1, + anon_sym_DOT, + ACTIONS(5401), 1, anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269717,8 +270297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, + ACTIONS(3116), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269743,12 +270322,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91551] = 4, + [91496] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5387), 1, + ACTIONS(4586), 1, + anon_sym_DOT, + ACTIONS(5389), 1, anon_sym_RBRACK, - ACTIONS(2832), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269760,8 +270341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2830), 25, - anon_sym_DOT, + ACTIONS(3116), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269786,14 +270366,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91598] = 5, + [91545] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, + ACTIONS(4586), 1, anon_sym_DOT, - ACTIONS(5385), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(5371), 1, + anon_sym_RPAREN, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269805,7 +270385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 24, + ACTIONS(3116), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269830,14 +270410,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91647] = 5, + [91594] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, + ACTIONS(4586), 1, anon_sym_DOT, - ACTIONS(5397), 1, + ACTIONS(5403), 1, anon_sym_RPAREN, - ACTIONS(2884), 11, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269849,7 +270429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 24, + ACTIONS(3116), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269874,12 +270454,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91696] = 4, + [91643] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(4586), 1, + anon_sym_DOT, + ACTIONS(5367), 1, anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(3118), 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(3116), 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, + [91692] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5403), 1, + anon_sym_RPAREN, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269891,7 +270515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 25, + ACTIONS(3116), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269917,12 +270541,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91743] = 4, + [91739] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5387), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, + ACTIONS(4586), 1, + anon_sym_DOT, + ACTIONS(5391), 1, + anon_sym_RPAREN, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269934,8 +270560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, + ACTIONS(3116), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269960,12 +270585,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91790] = 4, + [91788] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5397), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, + ACTIONS(4586), 1, + anon_sym_DOT, + ACTIONS(5395), 1, + anon_sym_RBRACK, + ACTIONS(3118), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269977,8 +270604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, + ACTIONS(3116), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -270006,51 +270632,51 @@ static const uint16_t ts_small_parse_table[] = { [91837] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, + ACTIONS(3205), 1, sym_identifier, - ACTIONS(3419), 1, + ACTIONS(3427), 1, anon_sym_struct, - ACTIONS(5321), 1, + ACTIONS(5327), 1, anon_sym_fn, - ACTIONS(5333), 1, + ACTIONS(5339), 1, anon_sym_shared, - ACTIONS(5337), 1, + ACTIONS(5343), 1, anon_sym_chan, - ACTIONS(5339), 1, + ACTIONS(5345), 1, anon_sym_thread, - ACTIONS(5341), 1, + ACTIONS(5347), 1, anon_sym_atomic, - ACTIONS(5399), 1, + ACTIONS(5405), 1, anon_sym_LPAREN, - ACTIONS(5401), 1, + ACTIONS(5407), 1, anon_sym_EQ, - ACTIONS(5403), 1, + ACTIONS(5409), 1, anon_sym_STAR, - ACTIONS(5405), 1, + ACTIONS(5411), 1, anon_sym_QMARK, - ACTIONS(5407), 1, + ACTIONS(5413), 1, anon_sym_BANG, - ACTIONS(5409), 1, + ACTIONS(5415), 1, anon_sym_LBRACK2, - ACTIONS(5411), 1, + ACTIONS(5417), 1, anon_sym_AMP, - ACTIONS(5413), 1, + ACTIONS(5419), 1, anon_sym_map_LBRACK, - STATE(3735), 1, + STATE(3774), 1, sym__global_var_value, - STATE(3736), 1, + STATE(3778), 1, sym_plain_type, - STATE(4416), 1, + STATE(4425), 1, sym_reference_expression, - STATE(3390), 2, + STATE(3388), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1665), 4, + STATE(1636), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1641), 12, + STATE(1651), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270066,51 +270692,51 @@ static const uint16_t ts_small_parse_table[] = { [91919] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3383), 1, + ACTIONS(3389), 1, sym_identifier, - ACTIONS(3387), 1, + ACTIONS(3393), 1, anon_sym_fn, - ACTIONS(3391), 1, + ACTIONS(3397), 1, anon_sym_struct, - ACTIONS(3401), 1, + ACTIONS(3407), 1, anon_sym_shared, - ACTIONS(3405), 1, + ACTIONS(3411), 1, anon_sym_chan, - ACTIONS(3407), 1, + ACTIONS(3413), 1, anon_sym_thread, - ACTIONS(3409), 1, + ACTIONS(3415), 1, anon_sym_atomic, - ACTIONS(5415), 1, + ACTIONS(5421), 1, anon_sym_LPAREN, - ACTIONS(5417), 1, + ACTIONS(5423), 1, anon_sym_EQ, - ACTIONS(5419), 1, + ACTIONS(5425), 1, anon_sym_STAR, - ACTIONS(5421), 1, + ACTIONS(5427), 1, anon_sym_QMARK, - ACTIONS(5423), 1, + ACTIONS(5429), 1, anon_sym_BANG, - ACTIONS(5425), 1, + ACTIONS(5431), 1, anon_sym_LBRACK2, - ACTIONS(5427), 1, + ACTIONS(5433), 1, anon_sym_AMP, - ACTIONS(5429), 1, + ACTIONS(5435), 1, anon_sym_map_LBRACK, - STATE(1538), 1, - sym_plain_type, - STATE(1541), 1, + STATE(1553), 1, sym__global_var_value, - STATE(4515), 1, + STATE(1555), 1, + sym_plain_type, + STATE(4462), 1, sym_reference_expression, - STATE(1411), 2, + STATE(1415), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1465), 4, + STATE(1479), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1427), 12, + STATE(1481), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270126,49 +270752,49 @@ static const uint16_t ts_small_parse_table[] = { [92001] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5281), 1, - anon_sym_DOT_DOT_DOT, - STATE(4151), 1, + ACTIONS(5437), 1, + anon_sym_RPAREN, + STATE(3955), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270184,49 +270810,49 @@ static const uint16_t ts_small_parse_table[] = { [92080] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5439), 1, anon_sym_RPAREN, - STATE(4020), 1, + STATE(3955), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270242,49 +270868,49 @@ static const uint16_t ts_small_parse_table[] = { [92159] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3383), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, sym_identifier, - ACTIONS(3387), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(3391), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(3401), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3405), 1, - anon_sym_chan, - ACTIONS(3407), 1, - anon_sym_thread, - ACTIONS(3409), 1, - anon_sym_atomic, - ACTIONS(5415), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5421), 1, - anon_sym_QMARK, - ACTIONS(5423), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5425), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5427), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5429), 1, - anon_sym_map_LBRACK, - STATE(1420), 1, + ACTIONS(5441), 1, + anon_sym_DOT_DOT_DOT, + STATE(4410), 1, sym_plain_type, - STATE(1512), 1, - sym__type_union_list, - STATE(4515), 1, + STATE(4655), 1, sym_reference_expression, - STATE(1411), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1465), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1427), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270300,49 +270926,49 @@ static const uint16_t ts_small_parse_table[] = { [92238] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5433), 1, + ACTIONS(5443), 1, anon_sym_RPAREN, - STATE(4020), 1, + STATE(3955), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270358,49 +270984,49 @@ static const uint16_t ts_small_parse_table[] = { [92317] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5435), 1, - anon_sym_RPAREN, - STATE(4020), 1, + ACTIONS(5267), 1, + anon_sym_DOT_DOT_DOT, + STATE(4333), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270416,49 +271042,49 @@ static const uint16_t ts_small_parse_table[] = { [92396] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5437), 1, + ACTIONS(5445), 1, anon_sym_RPAREN, - STATE(4020), 1, + STATE(3955), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270474,49 +271100,107 @@ static const uint16_t ts_small_parse_table[] = { [92475] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, + anon_sym_AMP, + ACTIONS(5447), 1, + anon_sym_RPAREN, + STATE(3955), 1, + sym_plain_type, + STATE(4655), 1, + sym_reference_expression, + STATE(3547), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2415), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2417), 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, + [92554] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(609), 1, + anon_sym_shared, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, + anon_sym_STAR, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5155), 1, + anon_sym_LBRACK2, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5439), 1, - anon_sym_RPAREN, - STATE(4020), 1, + ACTIONS(5441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5449), 1, + sym_identifier, + STATE(4410), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270529,52 +271213,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92554] = 21, + [92633] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3383), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, sym_identifier, - ACTIONS(3387), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(3391), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(3401), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3405), 1, - anon_sym_chan, - ACTIONS(3407), 1, - anon_sym_thread, - ACTIONS(3409), 1, - anon_sym_atomic, - ACTIONS(5415), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5421), 1, - anon_sym_QMARK, - ACTIONS(5423), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5425), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5427), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5429), 1, - anon_sym_map_LBRACK, - STATE(1420), 1, + ACTIONS(5309), 1, + anon_sym_DOT_DOT_DOT, + STATE(4315), 1, sym_plain_type, - STATE(1503), 1, - sym__type_union_list, - STATE(4515), 1, + STATE(4655), 1, sym_reference_expression, - STATE(1411), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1465), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1427), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270587,52 +271271,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92633] = 21, + [92712] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5441), 1, + ACTIONS(5451), 1, anon_sym_RPAREN, - STATE(4020), 1, + STATE(3955), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270645,52 +271329,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92712] = 21, + [92791] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5443), 1, + ACTIONS(5453), 1, anon_sym_RPAREN, - STATE(4020), 1, + STATE(3955), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270703,52 +271387,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92791] = 21, + [92870] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5445), 1, + ACTIONS(5455), 1, anon_sym_RPAREN, - STATE(4020), 1, + STATE(3955), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270761,52 +271445,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92870] = 21, + [92949] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5447), 1, + ACTIONS(5457), 1, anon_sym_RPAREN, - STATE(4020), 1, + STATE(3955), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270819,52 +271503,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92949] = 21, + [93028] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3389), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(3393), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3397), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(3407), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3411), 1, + anon_sym_chan, + ACTIONS(3413), 1, + anon_sym_thread, + ACTIONS(3415), 1, + anon_sym_atomic, + ACTIONS(5421), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5425), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5427), 1, + anon_sym_QMARK, + ACTIONS(5429), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5431), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5433), 1, anon_sym_AMP, - ACTIONS(5449), 1, - anon_sym_RPAREN, - STATE(4020), 1, + ACTIONS(5435), 1, + anon_sym_map_LBRACK, + STATE(1420), 1, sym_plain_type, - STATE(4600), 1, + STATE(1541), 1, + sym__type_union_list, + STATE(4462), 1, sym_reference_expression, - STATE(3581), 2, + STATE(1415), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1479), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1481), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270877,52 +271561,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93028] = 21, + [93107] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5451), 1, + ACTIONS(5459), 1, anon_sym_RPAREN, - STATE(4020), 1, + STATE(3955), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270935,52 +271619,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93107] = 21, + [93186] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5453), 1, + ACTIONS(5461), 1, anon_sym_RPAREN, - STATE(4020), 1, + STATE(3955), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270993,52 +271677,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93186] = 21, + [93265] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5455), 1, + ACTIONS(5463), 1, anon_sym_RPAREN, - STATE(4020), 1, + STATE(3955), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271051,52 +271735,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93265] = 21, + [93344] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(599), 1, + ACTIONS(591), 1, + sym_identifier, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5457), 1, - sym_identifier, - ACTIONS(5459), 1, - anon_sym_DOT_DOT_DOT, - STATE(4110), 1, + ACTIONS(5465), 1, + anon_sym_RPAREN, + STATE(3955), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271109,52 +271793,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93344] = 21, + [93423] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3389), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(3393), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3397), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(3407), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3411), 1, + anon_sym_chan, + ACTIONS(3413), 1, + anon_sym_thread, + ACTIONS(3415), 1, + anon_sym_atomic, + ACTIONS(5421), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5425), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5427), 1, + anon_sym_QMARK, + ACTIONS(5429), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5431), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5433), 1, anon_sym_AMP, - ACTIONS(5271), 1, - anon_sym_DOT_DOT_DOT, - STATE(4125), 1, + ACTIONS(5435), 1, + anon_sym_map_LBRACK, + STATE(1420), 1, sym_plain_type, - STATE(4600), 1, + STATE(1498), 1, + sym__type_union_list, + STATE(4462), 1, sym_reference_expression, - STATE(3581), 2, + STATE(1415), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1479), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1481), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271167,52 +271851,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93423] = 21, + [93502] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5461), 1, + ACTIONS(5467), 1, anon_sym_RPAREN, - STATE(4020), 1, + STATE(3955), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271225,52 +271909,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93502] = 21, + [93581] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5463), 1, + ACTIONS(5469), 1, anon_sym_RPAREN, - STATE(4020), 1, + STATE(3955), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271283,52 +271967,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93581] = 21, + [93660] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, + ACTIONS(3389), 1, + sym_identifier, + ACTIONS(3393), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3397), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(3407), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3411), 1, + anon_sym_chan, + ACTIONS(3413), 1, + anon_sym_thread, + ACTIONS(3415), 1, + anon_sym_atomic, + ACTIONS(5421), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5425), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5427), 1, + anon_sym_QMARK, + ACTIONS(5429), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5431), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5433), 1, anon_sym_AMP, - ACTIONS(5459), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5465), 1, - sym_identifier, - STATE(4110), 1, + ACTIONS(5435), 1, + anon_sym_map_LBRACK, + STATE(1420), 1, sym_plain_type, - STATE(4600), 1, + STATE(1501), 1, + sym__type_union_list, + STATE(4462), 1, sym_reference_expression, - STATE(3581), 2, + STATE(1415), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1479), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1481), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271341,52 +272025,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93660] = 21, + [93739] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5467), 1, + ACTIONS(5471), 1, anon_sym_RPAREN, - STATE(4020), 1, + STATE(3955), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271399,52 +272083,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93739] = 21, + [93818] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5469), 1, + ACTIONS(5473), 1, anon_sym_RPAREN, - STATE(4020), 1, + STATE(3955), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271457,52 +272141,39 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93818] = 21, + [93897] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3383), 1, - sym_identifier, - ACTIONS(3387), 1, + STATE(2348), 1, + sym_plain_type, + STATE(4655), 1, + sym_reference_expression, + STATE(3547), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2415), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(4310), 7, anon_sym_fn, - ACTIONS(3391), 1, anon_sym_struct, - ACTIONS(3401), 1, + sym_identifier, anon_sym_shared, - ACTIONS(3405), 1, anon_sym_chan, - ACTIONS(3407), 1, anon_sym_thread, - ACTIONS(3409), 1, anon_sym_atomic, - ACTIONS(5415), 1, + ACTIONS(4312), 8, anon_sym_LPAREN, - ACTIONS(5419), 1, anon_sym_STAR, - ACTIONS(5421), 1, + anon_sym_DOT_DOT_DOT, anon_sym_QMARK, - ACTIONS(5423), 1, anon_sym_BANG, - ACTIONS(5425), 1, anon_sym_LBRACK2, - ACTIONS(5427), 1, anon_sym_AMP, - ACTIONS(5429), 1, anon_sym_map_LBRACK, - STATE(1420), 1, - sym_plain_type, - STATE(1527), 1, - sym__type_union_list, - STATE(4515), 1, - sym_reference_expression, - STATE(1411), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1465), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1427), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271515,52 +272186,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93897] = 21, + [93950] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5471), 1, + ACTIONS(5475), 1, anon_sym_RPAREN, - STATE(4020), 1, + STATE(3955), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271573,52 +272244,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93976] = 21, + [94029] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5473), 1, + ACTIONS(5477), 1, anon_sym_RPAREN, - STATE(4020), 1, + STATE(3955), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271631,52 +272302,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94055] = 21, + [94108] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5475), 1, + ACTIONS(5479), 1, anon_sym_RPAREN, - STATE(4020), 1, + STATE(3955), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271689,52 +272360,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94134] = 21, + [94187] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3383), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, sym_identifier, - ACTIONS(3387), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(3391), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(3401), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3405), 1, - anon_sym_chan, - ACTIONS(3407), 1, - anon_sym_thread, - ACTIONS(3409), 1, - anon_sym_atomic, - ACTIONS(5415), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5421), 1, - anon_sym_QMARK, - ACTIONS(5423), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5425), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5427), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5429), 1, - anon_sym_map_LBRACK, - STATE(1420), 1, + ACTIONS(5481), 1, + anon_sym_RPAREN, + STATE(3955), 1, sym_plain_type, - STATE(1577), 1, - sym__type_union_list, - STATE(4515), 1, + STATE(4655), 1, sym_reference_expression, - STATE(1411), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1465), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1427), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271747,52 +272418,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94213] = 21, + [94266] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5477), 1, + ACTIONS(5483), 1, anon_sym_RPAREN, - STATE(4020), 1, + STATE(3955), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271805,52 +272476,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94292] = 21, + [94345] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3389), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(3393), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3397), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(3407), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3411), 1, + anon_sym_chan, + ACTIONS(3413), 1, + anon_sym_thread, + ACTIONS(3415), 1, + anon_sym_atomic, + ACTIONS(5421), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5425), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5427), 1, + anon_sym_QMARK, + ACTIONS(5429), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5431), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5433), 1, anon_sym_AMP, - ACTIONS(5459), 1, - anon_sym_DOT_DOT_DOT, - STATE(4110), 1, + ACTIONS(5435), 1, + anon_sym_map_LBRACK, + STATE(1420), 1, sym_plain_type, - STATE(4600), 1, + STATE(1490), 1, + sym__type_union_list, + STATE(4462), 1, sym_reference_expression, - STATE(3581), 2, + STATE(1415), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1479), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1481), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271863,52 +272534,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94371] = 21, + [94424] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5479), 1, + ACTIONS(5485), 1, anon_sym_RPAREN, - STATE(4020), 1, + STATE(3955), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271921,52 +272592,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94450] = 21, + [94503] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5481), 1, + ACTIONS(5487), 1, anon_sym_RPAREN, - STATE(4020), 1, + STATE(3955), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271979,52 +272650,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94529] = 21, + [94582] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5483), 1, + ACTIONS(5489), 1, anon_sym_RPAREN, - STATE(4020), 1, + STATE(3955), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272037,52 +272708,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94608] = 21, + [94661] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5485), 1, + ACTIONS(5491), 1, anon_sym_RPAREN, - STATE(4020), 1, + STATE(3955), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272095,97 +272766,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94687] = 21, + [94740] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5487), 1, + ACTIONS(5493), 1, anon_sym_RPAREN, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 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, - [94766] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(2411), 1, + STATE(3955), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - ACTIONS(4314), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(4316), 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(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272201,49 +272827,49 @@ static const uint16_t ts_small_parse_table[] = { [94819] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5489), 1, - anon_sym_RPAREN, - STATE(4020), 1, + ACTIONS(5441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5495), 1, + sym_identifier, + STATE(4410), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272259,49 +272885,49 @@ static const uint16_t ts_small_parse_table[] = { [94898] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5491), 1, + ACTIONS(5497), 1, anon_sym_RPAREN, - STATE(4020), 1, + STATE(3955), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272317,47 +272943,47 @@ static const uint16_t ts_small_parse_table[] = { [94977] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3730), 1, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3708), 1, sym_identifier, - ACTIONS(3734), 1, + ACTIONS(3710), 1, anon_sym_fn, - ACTIONS(3738), 1, - anon_sym_struct, - ACTIONS(3748), 1, + ACTIONS(3712), 1, + anon_sym_STAR, + ACTIONS(3722), 1, anon_sym_shared, - ACTIONS(3752), 1, + ACTIONS(3724), 1, + anon_sym_map_LBRACK, + ACTIONS(3726), 1, anon_sym_chan, - ACTIONS(3754), 1, + ACTIONS(3728), 1, anon_sym_thread, - ACTIONS(3756), 1, + ACTIONS(3730), 1, anon_sym_atomic, - ACTIONS(5493), 1, - anon_sym_LPAREN, - ACTIONS(5495), 1, - anon_sym_STAR, - ACTIONS(5497), 1, - anon_sym_QMARK, ACTIONS(5499), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5501), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5503), 1, - anon_sym_AMP, + anon_sym_LBRACK2, ACTIONS(5505), 1, - anon_sym_map_LBRACK, - STATE(2560), 1, + anon_sym_AMP, + STATE(2336), 1, sym_plain_type, - STATE(4486), 1, + STATE(4655), 1, sym_reference_expression, - STATE(2457), 2, + STATE(2315), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2570), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2569), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272373,47 +272999,47 @@ static const uint16_t ts_small_parse_table[] = { [95053] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, + ACTIONS(559), 1, sym_identifier, - ACTIONS(3529), 1, - anon_sym_LPAREN, - ACTIONS(3531), 1, + ACTIONS(565), 1, anon_sym_fn, - ACTIONS(3535), 1, + ACTIONS(569), 1, anon_sym_struct, - ACTIONS(3545), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3547), 1, - anon_sym_map_LBRACK, - ACTIONS(3549), 1, + ACTIONS(583), 1, anon_sym_chan, - ACTIONS(3551), 1, + ACTIONS(585), 1, anon_sym_thread, - ACTIONS(3553), 1, + ACTIONS(587), 1, anon_sym_atomic, ACTIONS(5507), 1, - anon_sym_STAR, + anon_sym_LPAREN, ACTIONS(5509), 1, - anon_sym_QMARK, + anon_sym_STAR, ACTIONS(5511), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5513), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5515), 1, + anon_sym_LBRACK2, + ACTIONS(5517), 1, anon_sym_AMP, - STATE(2063), 1, + ACTIONS(5519), 1, + anon_sym_map_LBRACK, + STATE(913), 1, sym_plain_type, - STATE(4528), 1, + STATE(4438), 1, sym_reference_expression, - STATE(1923), 2, + STATE(618), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2020), 4, + STATE(941), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1942), 12, + STATE(940), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272429,47 +273055,47 @@ static const uint16_t ts_small_parse_table[] = { [95129] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3411), 1, + ACTIONS(3673), 1, sym_identifier, - ACTIONS(3415), 1, + ACTIONS(3677), 1, anon_sym_fn, - ACTIONS(3419), 1, + ACTIONS(3681), 1, anon_sym_struct, - ACTIONS(3429), 1, + ACTIONS(3691), 1, anon_sym_shared, - ACTIONS(3433), 1, + ACTIONS(3695), 1, anon_sym_chan, - ACTIONS(3435), 1, + ACTIONS(3697), 1, anon_sym_thread, - ACTIONS(3437), 1, + ACTIONS(3699), 1, anon_sym_atomic, - ACTIONS(5399), 1, + ACTIONS(5521), 1, anon_sym_LPAREN, - ACTIONS(5517), 1, + ACTIONS(5523), 1, anon_sym_STAR, - ACTIONS(5519), 1, + ACTIONS(5525), 1, anon_sym_QMARK, - ACTIONS(5521), 1, + ACTIONS(5527), 1, anon_sym_BANG, - ACTIONS(5523), 1, + ACTIONS(5529), 1, anon_sym_LBRACK2, - ACTIONS(5525), 1, + ACTIONS(5531), 1, anon_sym_AMP, - ACTIONS(5527), 1, + ACTIONS(5533), 1, anon_sym_map_LBRACK, - STATE(1749), 1, + STATE(2276), 1, sym_plain_type, - STATE(4409), 1, + STATE(4570), 1, sym_reference_expression, - STATE(1666), 2, + STATE(2164), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1665), 4, + STATE(2191), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1641), 12, + STATE(2192), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272485,47 +273111,47 @@ static const uint16_t ts_small_parse_table[] = { [95205] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, - sym_identifier, - ACTIONS(3704), 1, - anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, - anon_sym_shared, - ACTIONS(3718), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(3720), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3722), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3724), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5529), 1, - anon_sym_QMARK, - ACTIONS(5531), 1, + ACTIONS(591), 1, + sym_identifier, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(609), 1, + anon_sym_shared, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, + anon_sym_STAR, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5533), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5535), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(2411), 1, + STATE(4591), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(2318), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272541,47 +273167,47 @@ static const uint16_t ts_small_parse_table[] = { [95281] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(1610), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(1614), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(1618), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(1628), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(1632), 1, + anon_sym_chan, + ACTIONS(1634), 1, + anon_sym_thread, + ACTIONS(1636), 1, + anon_sym_atomic, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5537), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5539), 1, + anon_sym_QMARK, + ACTIONS(5541), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5543), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5545), 1, anon_sym_AMP, - STATE(3910), 1, + ACTIONS(5547), 1, + anon_sym_map_LBRACK, + STATE(1106), 1, sym_plain_type, - STATE(4600), 1, + STATE(4448), 1, sym_reference_expression, - STATE(3581), 2, + STATE(1002), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1084), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1085), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272597,47 +273223,47 @@ static const uint16_t ts_small_parse_table[] = { [95357] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, + ACTIONS(3673), 1, sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, + ACTIONS(3677), 1, anon_sym_fn, - ACTIONS(3563), 1, + ACTIONS(3681), 1, anon_sym_struct, - ACTIONS(3573), 1, + ACTIONS(3691), 1, anon_sym_shared, - ACTIONS(3575), 1, - anon_sym_map_LBRACK, - ACTIONS(3577), 1, + ACTIONS(3695), 1, anon_sym_chan, - ACTIONS(3579), 1, + ACTIONS(3697), 1, anon_sym_thread, - ACTIONS(3581), 1, + ACTIONS(3699), 1, anon_sym_atomic, - ACTIONS(5537), 1, + ACTIONS(5521), 1, + anon_sym_LPAREN, + ACTIONS(5523), 1, anon_sym_STAR, - ACTIONS(5539), 1, + ACTIONS(5525), 1, anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5527), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5529), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5531), 1, anon_sym_AMP, - STATE(2009), 1, + ACTIONS(5533), 1, + anon_sym_map_LBRACK, + STATE(2214), 1, sym_plain_type, - STATE(4465), 1, + STATE(4570), 1, sym_reference_expression, - STATE(1919), 2, + STATE(2164), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2126), 4, + STATE(2191), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2127), 12, + STATE(2192), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272653,47 +273279,47 @@ static const uint16_t ts_small_parse_table[] = { [95433] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, - sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, - anon_sym_fn, - ACTIONS(3563), 1, - anon_sym_struct, - ACTIONS(3573), 1, - anon_sym_shared, - ACTIONS(3575), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(3577), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3579), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3581), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5537), 1, + ACTIONS(591), 1, + sym_identifier, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(609), 1, + anon_sym_shared, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5539), 1, - anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(2008), 1, + STATE(3955), 1, sym_plain_type, - STATE(4465), 1, + STATE(4655), 1, sym_reference_expression, - STATE(1919), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2126), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2127), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272709,47 +273335,47 @@ static const uint16_t ts_small_parse_table[] = { [95509] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3730), 1, + ACTIONS(3673), 1, sym_identifier, - ACTIONS(3734), 1, + ACTIONS(3677), 1, anon_sym_fn, - ACTIONS(3738), 1, + ACTIONS(3681), 1, anon_sym_struct, - ACTIONS(3748), 1, + ACTIONS(3691), 1, anon_sym_shared, - ACTIONS(3752), 1, + ACTIONS(3695), 1, anon_sym_chan, - ACTIONS(3754), 1, + ACTIONS(3697), 1, anon_sym_thread, - ACTIONS(3756), 1, + ACTIONS(3699), 1, anon_sym_atomic, - ACTIONS(5493), 1, + ACTIONS(5521), 1, anon_sym_LPAREN, - ACTIONS(5495), 1, + ACTIONS(5523), 1, anon_sym_STAR, - ACTIONS(5497), 1, + ACTIONS(5525), 1, anon_sym_QMARK, - ACTIONS(5499), 1, + ACTIONS(5527), 1, anon_sym_BANG, - ACTIONS(5501), 1, + ACTIONS(5529), 1, anon_sym_LBRACK2, - ACTIONS(5503), 1, + ACTIONS(5531), 1, anon_sym_AMP, - ACTIONS(5505), 1, + ACTIONS(5533), 1, anon_sym_map_LBRACK, - STATE(2537), 1, + STATE(2252), 1, sym_plain_type, - STATE(4486), 1, + STATE(4570), 1, sym_reference_expression, - STATE(2457), 2, + STATE(2164), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2570), 4, + STATE(2191), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2569), 12, + STATE(2192), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272765,47 +273391,47 @@ static const uint16_t ts_small_parse_table[] = { [95585] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4274), 1, - sym_identifier, - ACTIONS(4276), 1, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(4278), 1, + ACTIONS(3708), 1, + sym_identifier, + ACTIONS(3710), 1, anon_sym_fn, - ACTIONS(4280), 1, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(4282), 1, - anon_sym_struct, - ACTIONS(4292), 1, + ACTIONS(3722), 1, anon_sym_shared, - ACTIONS(4294), 1, + ACTIONS(3724), 1, anon_sym_map_LBRACK, - ACTIONS(4296), 1, + ACTIONS(3726), 1, anon_sym_chan, - ACTIONS(4298), 1, + ACTIONS(3728), 1, anon_sym_thread, - ACTIONS(4300), 1, + ACTIONS(3730), 1, anon_sym_atomic, - ACTIONS(5547), 1, + ACTIONS(5499), 1, anon_sym_QMARK, - ACTIONS(5549), 1, + ACTIONS(5501), 1, anon_sym_BANG, - ACTIONS(5551), 1, + ACTIONS(5503), 1, anon_sym_LBRACK2, - ACTIONS(5553), 1, + ACTIONS(5505), 1, anon_sym_AMP, - STATE(2603), 1, + STATE(2866), 1, sym_plain_type, - STATE(4574), 1, + STATE(4655), 1, sym_reference_expression, - STATE(2635), 2, + STATE(2315), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2723), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2724), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272821,47 +273447,47 @@ static const uint16_t ts_small_parse_table[] = { [95661] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3708), 1, + sym_identifier, + ACTIONS(3710), 1, + anon_sym_fn, + ACTIONS(3712), 1, + anon_sym_STAR, + ACTIONS(3722), 1, + anon_sym_shared, + ACTIONS(3724), 1, anon_sym_map_LBRACK, - ACTIONS(83), 1, + ACTIONS(3726), 1, anon_sym_chan, - ACTIONS(85), 1, + ACTIONS(3728), 1, anon_sym_thread, - ACTIONS(87), 1, + ACTIONS(3730), 1, anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5499), 1, + anon_sym_QMARK, + ACTIONS(5501), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5503), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5505), 1, anon_sym_AMP, - STATE(2375), 1, + STATE(2867), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(2315), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272877,47 +273503,47 @@ static const uint16_t ts_small_parse_table[] = { [95737] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, sym_identifier, - ACTIONS(3676), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(3680), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(3690), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3694), 1, - anon_sym_chan, - ACTIONS(3696), 1, - anon_sym_thread, - ACTIONS(3698), 1, - anon_sym_atomic, - ACTIONS(5555), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(5557), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5559), 1, - anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5567), 1, - anon_sym_map_LBRACK, - STATE(2213), 1, + STATE(4645), 1, sym_plain_type, - STATE(4566), 1, + STATE(4655), 1, sym_reference_expression, - STATE(2159), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2185), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2186), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272933,47 +273559,47 @@ static const uint16_t ts_small_parse_table[] = { [95813] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(1610), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(1614), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(1618), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(1628), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(1632), 1, + anon_sym_chan, + ACTIONS(1634), 1, + anon_sym_thread, + ACTIONS(1636), 1, + anon_sym_atomic, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5537), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5539), 1, + anon_sym_QMARK, + ACTIONS(5541), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5543), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5545), 1, anon_sym_AMP, - STATE(2411), 1, + ACTIONS(5547), 1, + anon_sym_map_LBRACK, + STATE(1102), 1, sym_plain_type, - STATE(4600), 1, + STATE(4448), 1, sym_reference_expression, - STATE(3581), 2, + STATE(1002), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1084), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1085), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272989,47 +273615,47 @@ static const uint16_t ts_small_parse_table[] = { [95889] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3383), 1, + ACTIONS(1610), 1, sym_identifier, - ACTIONS(3387), 1, + ACTIONS(1614), 1, anon_sym_fn, - ACTIONS(3391), 1, + ACTIONS(1618), 1, anon_sym_struct, - ACTIONS(3401), 1, + ACTIONS(1628), 1, anon_sym_shared, - ACTIONS(3405), 1, + ACTIONS(1632), 1, anon_sym_chan, - ACTIONS(3407), 1, + ACTIONS(1634), 1, anon_sym_thread, - ACTIONS(3409), 1, + ACTIONS(1636), 1, anon_sym_atomic, - ACTIONS(5415), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, + ACTIONS(5537), 1, anon_sym_STAR, - ACTIONS(5421), 1, + ACTIONS(5539), 1, anon_sym_QMARK, - ACTIONS(5423), 1, + ACTIONS(5541), 1, anon_sym_BANG, - ACTIONS(5425), 1, + ACTIONS(5543), 1, anon_sym_LBRACK2, - ACTIONS(5427), 1, + ACTIONS(5545), 1, anon_sym_AMP, - ACTIONS(5429), 1, + ACTIONS(5547), 1, anon_sym_map_LBRACK, - STATE(1446), 1, + STATE(1094), 1, sym_plain_type, - STATE(4515), 1, + STATE(4448), 1, sym_reference_expression, - STATE(1411), 2, + STATE(1002), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1465), 4, + STATE(1084), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1427), 12, + STATE(1085), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273045,47 +273671,47 @@ static const uint16_t ts_small_parse_table[] = { [95965] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, + ACTIONS(1610), 1, sym_identifier, - ACTIONS(3529), 1, - anon_sym_LPAREN, - ACTIONS(3531), 1, + ACTIONS(1614), 1, anon_sym_fn, - ACTIONS(3535), 1, + ACTIONS(1618), 1, anon_sym_struct, - ACTIONS(3545), 1, + ACTIONS(1628), 1, anon_sym_shared, - ACTIONS(3547), 1, - anon_sym_map_LBRACK, - ACTIONS(3549), 1, + ACTIONS(1632), 1, anon_sym_chan, - ACTIONS(3551), 1, + ACTIONS(1634), 1, anon_sym_thread, - ACTIONS(3553), 1, + ACTIONS(1636), 1, anon_sym_atomic, - ACTIONS(5507), 1, + ACTIONS(5535), 1, + anon_sym_LPAREN, + ACTIONS(5537), 1, anon_sym_STAR, - ACTIONS(5509), 1, + ACTIONS(5539), 1, anon_sym_QMARK, - ACTIONS(5511), 1, + ACTIONS(5541), 1, anon_sym_BANG, - ACTIONS(5513), 1, + ACTIONS(5543), 1, anon_sym_LBRACK2, - ACTIONS(5515), 1, + ACTIONS(5545), 1, anon_sym_AMP, - STATE(2095), 1, + ACTIONS(5547), 1, + anon_sym_map_LBRACK, + STATE(1093), 1, sym_plain_type, - STATE(4528), 1, + STATE(4448), 1, sym_reference_expression, - STATE(1923), 2, + STATE(1002), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2020), 4, + STATE(1084), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1942), 12, + STATE(1085), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273101,47 +273727,47 @@ static const uint16_t ts_small_parse_table[] = { [96041] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, + ACTIONS(3673), 1, sym_identifier, - ACTIONS(3529), 1, - anon_sym_LPAREN, - ACTIONS(3531), 1, + ACTIONS(3677), 1, anon_sym_fn, - ACTIONS(3535), 1, + ACTIONS(3681), 1, anon_sym_struct, - ACTIONS(3545), 1, + ACTIONS(3691), 1, anon_sym_shared, - ACTIONS(3547), 1, - anon_sym_map_LBRACK, - ACTIONS(3549), 1, + ACTIONS(3695), 1, anon_sym_chan, - ACTIONS(3551), 1, + ACTIONS(3697), 1, anon_sym_thread, - ACTIONS(3553), 1, + ACTIONS(3699), 1, anon_sym_atomic, - ACTIONS(5507), 1, + ACTIONS(5521), 1, + anon_sym_LPAREN, + ACTIONS(5523), 1, anon_sym_STAR, - ACTIONS(5509), 1, + ACTIONS(5525), 1, anon_sym_QMARK, - ACTIONS(5511), 1, + ACTIONS(5527), 1, anon_sym_BANG, - ACTIONS(5513), 1, + ACTIONS(5529), 1, anon_sym_LBRACK2, - ACTIONS(5515), 1, + ACTIONS(5531), 1, anon_sym_AMP, - STATE(2000), 1, + ACTIONS(5533), 1, + anon_sym_map_LBRACK, + STATE(2286), 1, sym_plain_type, - STATE(4528), 1, + STATE(4570), 1, sym_reference_expression, - STATE(1923), 2, + STATE(2164), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2020), 4, + STATE(2191), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1942), 12, + STATE(2192), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273157,47 +273783,47 @@ static const uint16_t ts_small_parse_table[] = { [96117] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4274), 1, + ACTIONS(1610), 1, sym_identifier, - ACTIONS(4276), 1, - anon_sym_LPAREN, - ACTIONS(4278), 1, + ACTIONS(1614), 1, anon_sym_fn, - ACTIONS(4280), 1, - anon_sym_STAR, - ACTIONS(4282), 1, + ACTIONS(1618), 1, anon_sym_struct, - ACTIONS(4292), 1, + ACTIONS(1628), 1, anon_sym_shared, - ACTIONS(4294), 1, - anon_sym_map_LBRACK, - ACTIONS(4296), 1, + ACTIONS(1632), 1, anon_sym_chan, - ACTIONS(4298), 1, + ACTIONS(1634), 1, anon_sym_thread, - ACTIONS(4300), 1, + ACTIONS(1636), 1, anon_sym_atomic, - ACTIONS(5547), 1, + ACTIONS(5535), 1, + anon_sym_LPAREN, + ACTIONS(5537), 1, + anon_sym_STAR, + ACTIONS(5539), 1, anon_sym_QMARK, - ACTIONS(5549), 1, + ACTIONS(5541), 1, anon_sym_BANG, - ACTIONS(5551), 1, + ACTIONS(5543), 1, anon_sym_LBRACK2, - ACTIONS(5553), 1, + ACTIONS(5545), 1, anon_sym_AMP, - STATE(2602), 1, + ACTIONS(5547), 1, + anon_sym_map_LBRACK, + STATE(1091), 1, sym_plain_type, - STATE(4574), 1, + STATE(4448), 1, sym_reference_expression, - STATE(2635), 2, + STATE(1002), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2723), 4, + STATE(1084), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2724), 12, + STATE(1085), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273213,47 +273839,47 @@ static const uint16_t ts_small_parse_table[] = { [96193] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, - sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, - anon_sym_fn, - ACTIONS(3563), 1, - anon_sym_struct, - ACTIONS(3573), 1, - anon_sym_shared, - ACTIONS(3575), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(3577), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3579), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3581), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5537), 1, + ACTIONS(591), 1, + sym_identifier, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(609), 1, + anon_sym_shared, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5539), 1, - anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(2078), 1, + STATE(3971), 1, sym_plain_type, - STATE(4465), 1, + STATE(4655), 1, sym_reference_expression, - STATE(1919), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2126), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2127), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273269,47 +273895,47 @@ static const uint16_t ts_small_parse_table[] = { [96269] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(3970), 1, + STATE(4044), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273325,24 +273951,22 @@ static const uint16_t ts_small_parse_table[] = { [96345] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, + ACTIONS(1610), 1, sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, + ACTIONS(1614), 1, anon_sym_fn, - ACTIONS(3563), 1, + ACTIONS(1618), 1, anon_sym_struct, - ACTIONS(3573), 1, + ACTIONS(1628), 1, anon_sym_shared, - ACTIONS(3575), 1, - anon_sym_map_LBRACK, - ACTIONS(3577), 1, + ACTIONS(1632), 1, anon_sym_chan, - ACTIONS(3579), 1, + ACTIONS(1634), 1, anon_sym_thread, - ACTIONS(3581), 1, + ACTIONS(1636), 1, anon_sym_atomic, + ACTIONS(5535), 1, + anon_sym_LPAREN, ACTIONS(5537), 1, anon_sym_STAR, ACTIONS(5539), 1, @@ -273353,19 +273977,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5545), 1, anon_sym_AMP, - STATE(2080), 1, + ACTIONS(5547), 1, + anon_sym_map_LBRACK, + STATE(1108), 1, sym_plain_type, - STATE(4465), 1, + STATE(4448), 1, sym_reference_expression, - STATE(1919), 2, + STATE(1002), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2126), 4, + STATE(1084), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2127), 12, + STATE(1085), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273381,47 +274007,47 @@ static const uint16_t ts_small_parse_table[] = { [96421] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, + ACTIONS(1610), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(1614), 1, anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, + ACTIONS(1618), 1, + anon_sym_struct, + ACTIONS(1628), 1, anon_sym_shared, - ACTIONS(3718), 1, - anon_sym_map_LBRACK, - ACTIONS(3720), 1, + ACTIONS(1632), 1, anon_sym_chan, - ACTIONS(3722), 1, + ACTIONS(1634), 1, anon_sym_thread, - ACTIONS(3724), 1, + ACTIONS(1636), 1, anon_sym_atomic, - ACTIONS(5529), 1, + ACTIONS(5535), 1, + anon_sym_LPAREN, + ACTIONS(5537), 1, + anon_sym_STAR, + ACTIONS(5539), 1, anon_sym_QMARK, - ACTIONS(5531), 1, + ACTIONS(5541), 1, anon_sym_BANG, - ACTIONS(5533), 1, + ACTIONS(5543), 1, anon_sym_LBRACK2, - ACTIONS(5535), 1, + ACTIONS(5545), 1, anon_sym_AMP, - STATE(2375), 1, + ACTIONS(5547), 1, + anon_sym_map_LBRACK, + STATE(1095), 1, sym_plain_type, - STATE(4600), 1, + STATE(4448), 1, sym_reference_expression, - STATE(2318), 2, + STATE(1002), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1084), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1085), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273437,47 +274063,47 @@ static const uint16_t ts_small_parse_table[] = { [96497] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3383), 1, + ACTIONS(1610), 1, sym_identifier, - ACTIONS(3387), 1, + ACTIONS(1614), 1, anon_sym_fn, - ACTIONS(3391), 1, + ACTIONS(1618), 1, anon_sym_struct, - ACTIONS(3401), 1, + ACTIONS(1628), 1, anon_sym_shared, - ACTIONS(3405), 1, + ACTIONS(1632), 1, anon_sym_chan, - ACTIONS(3407), 1, + ACTIONS(1634), 1, anon_sym_thread, - ACTIONS(3409), 1, + ACTIONS(1636), 1, anon_sym_atomic, - ACTIONS(5415), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, + ACTIONS(5537), 1, anon_sym_STAR, - ACTIONS(5421), 1, + ACTIONS(5539), 1, anon_sym_QMARK, - ACTIONS(5423), 1, + ACTIONS(5541), 1, anon_sym_BANG, - ACTIONS(5425), 1, + ACTIONS(5543), 1, anon_sym_LBRACK2, - ACTIONS(5427), 1, + ACTIONS(5545), 1, anon_sym_AMP, - ACTIONS(5429), 1, + ACTIONS(5547), 1, anon_sym_map_LBRACK, - STATE(1457), 1, + STATE(1089), 1, sym_plain_type, - STATE(4515), 1, + STATE(4448), 1, sym_reference_expression, - STATE(1411), 2, + STATE(1002), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1465), 4, + STATE(1084), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1427), 12, + STATE(1085), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273493,47 +274119,47 @@ static const uint16_t ts_small_parse_table[] = { [96573] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3730), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, sym_identifier, - ACTIONS(3734), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(3738), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(3748), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3752), 1, - anon_sym_chan, - ACTIONS(3754), 1, - anon_sym_thread, - ACTIONS(3756), 1, - anon_sym_atomic, - ACTIONS(5493), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(5495), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5497), 1, - anon_sym_QMARK, - ACTIONS(5499), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5501), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5503), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5505), 1, - anon_sym_map_LBRACK, - STATE(2490), 1, + STATE(4084), 1, sym_plain_type, - STATE(4486), 1, + STATE(4655), 1, sym_reference_expression, - STATE(2457), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2570), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2569), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273549,47 +274175,47 @@ static const uint16_t ts_small_parse_table[] = { [96649] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3383), 1, + ACTIONS(3361), 1, sym_identifier, - ACTIONS(3387), 1, + ACTIONS(3363), 1, + anon_sym_LPAREN, + ACTIONS(3365), 1, anon_sym_fn, - ACTIONS(3391), 1, + ACTIONS(3367), 1, + anon_sym_STAR, + ACTIONS(3369), 1, anon_sym_struct, - ACTIONS(3401), 1, + ACTIONS(3379), 1, anon_sym_shared, - ACTIONS(3405), 1, + ACTIONS(3381), 1, + anon_sym_map_LBRACK, + ACTIONS(3383), 1, anon_sym_chan, - ACTIONS(3407), 1, + ACTIONS(3385), 1, anon_sym_thread, - ACTIONS(3409), 1, + ACTIONS(3387), 1, anon_sym_atomic, - ACTIONS(5415), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_STAR, - ACTIONS(5421), 1, + ACTIONS(5549), 1, anon_sym_QMARK, - ACTIONS(5423), 1, + ACTIONS(5551), 1, anon_sym_BANG, - ACTIONS(5425), 1, + ACTIONS(5553), 1, anon_sym_LBRACK2, - ACTIONS(5427), 1, + ACTIONS(5555), 1, anon_sym_AMP, - ACTIONS(5429), 1, - anon_sym_map_LBRACK, - STATE(1451), 1, + STATE(1329), 1, sym_plain_type, - STATE(4515), 1, + STATE(4427), 1, sym_reference_expression, - STATE(1411), 2, + STATE(1303), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1465), 4, + STATE(1347), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1427), 12, + STATE(1406), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273605,47 +274231,47 @@ static const uint16_t ts_small_parse_table[] = { [96725] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, + ACTIONS(3673), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3677), 1, anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, + ACTIONS(3681), 1, + anon_sym_struct, + ACTIONS(3691), 1, anon_sym_shared, - ACTIONS(3718), 1, - anon_sym_map_LBRACK, - ACTIONS(3720), 1, + ACTIONS(3695), 1, anon_sym_chan, - ACTIONS(3722), 1, + ACTIONS(3697), 1, anon_sym_thread, - ACTIONS(3724), 1, + ACTIONS(3699), 1, anon_sym_atomic, - ACTIONS(5529), 1, + ACTIONS(5521), 1, + anon_sym_LPAREN, + ACTIONS(5523), 1, + anon_sym_STAR, + ACTIONS(5525), 1, anon_sym_QMARK, - ACTIONS(5531), 1, + ACTIONS(5527), 1, anon_sym_BANG, - ACTIONS(5533), 1, + ACTIONS(5529), 1, anon_sym_LBRACK2, - ACTIONS(5535), 1, + ACTIONS(5531), 1, anon_sym_AMP, - STATE(2379), 1, + ACTIONS(5533), 1, + anon_sym_map_LBRACK, + STATE(2250), 1, sym_plain_type, - STATE(4600), 1, + STATE(4570), 1, sym_reference_expression, - STATE(2318), 2, + STATE(2164), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2191), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2192), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273661,47 +274287,47 @@ static const uint16_t ts_small_parse_table[] = { [96801] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, + ACTIONS(3673), 1, sym_identifier, - ACTIONS(3351), 1, - anon_sym_LPAREN, - ACTIONS(3353), 1, + ACTIONS(3677), 1, anon_sym_fn, - ACTIONS(3355), 1, - anon_sym_STAR, - ACTIONS(3357), 1, + ACTIONS(3681), 1, anon_sym_struct, - ACTIONS(3367), 1, + ACTIONS(3691), 1, anon_sym_shared, - ACTIONS(3369), 1, - anon_sym_map_LBRACK, - ACTIONS(3371), 1, + ACTIONS(3695), 1, anon_sym_chan, - ACTIONS(3373), 1, + ACTIONS(3697), 1, anon_sym_thread, - ACTIONS(3375), 1, + ACTIONS(3699), 1, anon_sym_atomic, - ACTIONS(5569), 1, + ACTIONS(5521), 1, + anon_sym_LPAREN, + ACTIONS(5523), 1, + anon_sym_STAR, + ACTIONS(5525), 1, anon_sym_QMARK, - ACTIONS(5571), 1, + ACTIONS(5527), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5529), 1, anon_sym_LBRACK2, - ACTIONS(5575), 1, + ACTIONS(5531), 1, anon_sym_AMP, - STATE(1321), 1, + ACTIONS(5533), 1, + anon_sym_map_LBRACK, + STATE(2247), 1, sym_plain_type, - STATE(4423), 1, + STATE(4570), 1, sym_reference_expression, - STATE(1294), 2, + STATE(2164), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1344), 4, + STATE(2191), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1345), 12, + STATE(2192), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273717,47 +274343,47 @@ static const uint16_t ts_small_parse_table[] = { [96877] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3730), 1, + ACTIONS(3361), 1, sym_identifier, - ACTIONS(3734), 1, + ACTIONS(3363), 1, + anon_sym_LPAREN, + ACTIONS(3365), 1, anon_sym_fn, - ACTIONS(3738), 1, + ACTIONS(3367), 1, + anon_sym_STAR, + ACTIONS(3369), 1, anon_sym_struct, - ACTIONS(3748), 1, + ACTIONS(3379), 1, anon_sym_shared, - ACTIONS(3752), 1, + ACTIONS(3381), 1, + anon_sym_map_LBRACK, + ACTIONS(3383), 1, anon_sym_chan, - ACTIONS(3754), 1, + ACTIONS(3385), 1, anon_sym_thread, - ACTIONS(3756), 1, + ACTIONS(3387), 1, anon_sym_atomic, - ACTIONS(5493), 1, - anon_sym_LPAREN, - ACTIONS(5495), 1, - anon_sym_STAR, - ACTIONS(5497), 1, + ACTIONS(5549), 1, anon_sym_QMARK, - ACTIONS(5499), 1, + ACTIONS(5551), 1, anon_sym_BANG, - ACTIONS(5501), 1, + ACTIONS(5553), 1, anon_sym_LBRACK2, - ACTIONS(5503), 1, + ACTIONS(5555), 1, anon_sym_AMP, - ACTIONS(5505), 1, - anon_sym_map_LBRACK, - STATE(2499), 1, + STATE(1321), 1, sym_plain_type, - STATE(4486), 1, + STATE(4427), 1, sym_reference_expression, - STATE(2457), 2, + STATE(1303), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2570), 4, + STATE(1347), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2569), 12, + STATE(1406), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273773,47 +274399,47 @@ static const uint16_t ts_small_parse_table[] = { [96953] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, + ACTIONS(3673), 1, sym_identifier, - ACTIONS(3529), 1, - anon_sym_LPAREN, - ACTIONS(3531), 1, + ACTIONS(3677), 1, anon_sym_fn, - ACTIONS(3535), 1, + ACTIONS(3681), 1, anon_sym_struct, - ACTIONS(3545), 1, + ACTIONS(3691), 1, anon_sym_shared, - ACTIONS(3547), 1, - anon_sym_map_LBRACK, - ACTIONS(3549), 1, + ACTIONS(3695), 1, anon_sym_chan, - ACTIONS(3551), 1, + ACTIONS(3697), 1, anon_sym_thread, - ACTIONS(3553), 1, + ACTIONS(3699), 1, anon_sym_atomic, - ACTIONS(5507), 1, + ACTIONS(5521), 1, + anon_sym_LPAREN, + ACTIONS(5523), 1, anon_sym_STAR, - ACTIONS(5509), 1, + ACTIONS(5525), 1, anon_sym_QMARK, - ACTIONS(5511), 1, + ACTIONS(5527), 1, anon_sym_BANG, - ACTIONS(5513), 1, + ACTIONS(5529), 1, anon_sym_LBRACK2, - ACTIONS(5515), 1, + ACTIONS(5531), 1, anon_sym_AMP, - STATE(2100), 1, + ACTIONS(5533), 1, + anon_sym_map_LBRACK, + STATE(2217), 1, sym_plain_type, - STATE(4528), 1, + STATE(4570), 1, sym_reference_expression, - STATE(1923), 2, + STATE(2164), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2020), 4, + STATE(2191), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1942), 12, + STATE(2192), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273829,47 +274455,47 @@ static const uint16_t ts_small_parse_table[] = { [97029] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3383), 1, + ACTIONS(3673), 1, sym_identifier, - ACTIONS(3387), 1, + ACTIONS(3677), 1, anon_sym_fn, - ACTIONS(3391), 1, + ACTIONS(3681), 1, anon_sym_struct, - ACTIONS(3401), 1, + ACTIONS(3691), 1, anon_sym_shared, - ACTIONS(3405), 1, + ACTIONS(3695), 1, anon_sym_chan, - ACTIONS(3407), 1, + ACTIONS(3697), 1, anon_sym_thread, - ACTIONS(3409), 1, + ACTIONS(3699), 1, anon_sym_atomic, - ACTIONS(5415), 1, + ACTIONS(5521), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, + ACTIONS(5523), 1, anon_sym_STAR, - ACTIONS(5421), 1, + ACTIONS(5525), 1, anon_sym_QMARK, - ACTIONS(5423), 1, + ACTIONS(5527), 1, anon_sym_BANG, - ACTIONS(5425), 1, + ACTIONS(5529), 1, anon_sym_LBRACK2, - ACTIONS(5427), 1, + ACTIONS(5531), 1, anon_sym_AMP, - ACTIONS(5429), 1, + ACTIONS(5533), 1, anon_sym_map_LBRACK, - STATE(1474), 1, + STATE(2216), 1, sym_plain_type, - STATE(4515), 1, + STATE(4570), 1, sym_reference_expression, - STATE(1411), 2, + STATE(2164), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1465), 4, + STATE(2191), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1427), 12, + STATE(2192), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273885,47 +274511,47 @@ static const uint16_t ts_small_parse_table[] = { [97105] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, + ACTIONS(3361), 1, sym_identifier, - ACTIONS(3351), 1, + ACTIONS(3363), 1, anon_sym_LPAREN, - ACTIONS(3353), 1, + ACTIONS(3365), 1, anon_sym_fn, - ACTIONS(3355), 1, + ACTIONS(3367), 1, anon_sym_STAR, - ACTIONS(3357), 1, + ACTIONS(3369), 1, anon_sym_struct, - ACTIONS(3367), 1, + ACTIONS(3379), 1, anon_sym_shared, - ACTIONS(3369), 1, + ACTIONS(3381), 1, anon_sym_map_LBRACK, - ACTIONS(3371), 1, + ACTIONS(3383), 1, anon_sym_chan, - ACTIONS(3373), 1, + ACTIONS(3385), 1, anon_sym_thread, - ACTIONS(3375), 1, + ACTIONS(3387), 1, anon_sym_atomic, - ACTIONS(5569), 1, + ACTIONS(5549), 1, anon_sym_QMARK, - ACTIONS(5571), 1, + ACTIONS(5551), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5553), 1, anon_sym_LBRACK2, - ACTIONS(5575), 1, + ACTIONS(5555), 1, anon_sym_AMP, - STATE(1362), 1, + STATE(1404), 1, sym_plain_type, - STATE(4423), 1, + STATE(4427), 1, sym_reference_expression, - STATE(1294), 2, + STATE(1303), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1344), 4, + STATE(1347), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1345), 12, + STATE(1406), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273941,47 +274567,47 @@ static const uint16_t ts_small_parse_table[] = { [97181] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3443), 1, + ACTIONS(3673), 1, sym_identifier, - ACTIONS(3447), 1, + ACTIONS(3677), 1, anon_sym_fn, - ACTIONS(3451), 1, + ACTIONS(3681), 1, anon_sym_struct, - ACTIONS(3461), 1, + ACTIONS(3691), 1, anon_sym_shared, - ACTIONS(3465), 1, + ACTIONS(3695), 1, anon_sym_chan, - ACTIONS(3467), 1, + ACTIONS(3697), 1, anon_sym_thread, - ACTIONS(3469), 1, + ACTIONS(3699), 1, anon_sym_atomic, - ACTIONS(5577), 1, + ACTIONS(5521), 1, anon_sym_LPAREN, - ACTIONS(5579), 1, + ACTIONS(5523), 1, anon_sym_STAR, - ACTIONS(5581), 1, + ACTIONS(5525), 1, anon_sym_QMARK, - ACTIONS(5583), 1, + ACTIONS(5527), 1, anon_sym_BANG, - ACTIONS(5585), 1, + ACTIONS(5529), 1, anon_sym_LBRACK2, - ACTIONS(5587), 1, + ACTIONS(5531), 1, anon_sym_AMP, - ACTIONS(5589), 1, + ACTIONS(5533), 1, anon_sym_map_LBRACK, - STATE(1827), 1, + STATE(2215), 1, sym_plain_type, - STATE(4549), 1, + STATE(4570), 1, sym_reference_expression, - STATE(1787), 2, + STATE(2164), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1886), 4, + STATE(2191), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1885), 12, + STATE(2192), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273997,47 +274623,47 @@ static const uint16_t ts_small_parse_table[] = { [97257] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, - sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, - anon_sym_fn, - ACTIONS(3563), 1, - anon_sym_struct, - ACTIONS(3573), 1, - anon_sym_shared, - ACTIONS(3575), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(3577), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3579), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3581), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5537), 1, + ACTIONS(591), 1, + sym_identifier, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(609), 1, + anon_sym_shared, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5539), 1, - anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(2046), 1, - sym_plain_type, - STATE(4465), 1, + STATE(4655), 1, sym_reference_expression, - STATE(1919), 2, + STATE(4682), 1, + sym_plain_type, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2126), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2127), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274053,47 +274679,47 @@ static const uint16_t ts_small_parse_table[] = { [97333] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(3389), 1, sym_identifier, - ACTIONS(1606), 1, + ACTIONS(3393), 1, anon_sym_fn, - ACTIONS(1610), 1, + ACTIONS(3397), 1, anon_sym_struct, - ACTIONS(1620), 1, + ACTIONS(3407), 1, anon_sym_shared, - ACTIONS(1624), 1, + ACTIONS(3411), 1, anon_sym_chan, - ACTIONS(1626), 1, + ACTIONS(3413), 1, anon_sym_thread, - ACTIONS(1628), 1, + ACTIONS(3415), 1, anon_sym_atomic, - ACTIONS(5591), 1, + ACTIONS(5421), 1, anon_sym_LPAREN, - ACTIONS(5593), 1, + ACTIONS(5425), 1, anon_sym_STAR, - ACTIONS(5595), 1, + ACTIONS(5427), 1, anon_sym_QMARK, - ACTIONS(5597), 1, + ACTIONS(5429), 1, anon_sym_BANG, - ACTIONS(5599), 1, + ACTIONS(5431), 1, anon_sym_LBRACK2, - ACTIONS(5601), 1, + ACTIONS(5433), 1, anon_sym_AMP, - ACTIONS(5603), 1, + ACTIONS(5435), 1, anon_sym_map_LBRACK, - STATE(1074), 1, + STATE(1477), 1, sym_plain_type, - STATE(4444), 1, + STATE(4462), 1, sym_reference_expression, - STATE(994), 2, + STATE(1415), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1059), 4, + STATE(1479), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1060), 12, + STATE(1481), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274109,47 +274735,47 @@ static const uint16_t ts_small_parse_table[] = { [97409] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, + ACTIONS(3549), 1, sym_identifier, - ACTIONS(3529), 1, + ACTIONS(3551), 1, anon_sym_LPAREN, - ACTIONS(3531), 1, + ACTIONS(3553), 1, anon_sym_fn, - ACTIONS(3535), 1, + ACTIONS(3557), 1, anon_sym_struct, - ACTIONS(3545), 1, + ACTIONS(3567), 1, anon_sym_shared, - ACTIONS(3547), 1, + ACTIONS(3569), 1, anon_sym_map_LBRACK, - ACTIONS(3549), 1, + ACTIONS(3571), 1, anon_sym_chan, - ACTIONS(3551), 1, + ACTIONS(3573), 1, anon_sym_thread, - ACTIONS(3553), 1, + ACTIONS(3575), 1, anon_sym_atomic, - ACTIONS(5507), 1, + ACTIONS(5557), 1, anon_sym_STAR, - ACTIONS(5509), 1, + ACTIONS(5559), 1, anon_sym_QMARK, - ACTIONS(5511), 1, + ACTIONS(5561), 1, anon_sym_BANG, - ACTIONS(5513), 1, + ACTIONS(5563), 1, anon_sym_LBRACK2, - ACTIONS(5515), 1, + ACTIONS(5565), 1, anon_sym_AMP, - STATE(1971), 1, + STATE(2089), 1, sym_plain_type, - STATE(4528), 1, + STATE(4469), 1, sym_reference_expression, - STATE(1923), 2, + STATE(1930), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2020), 4, + STATE(1946), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1942), 12, + STATE(1947), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274165,47 +274791,47 @@ static const uint16_t ts_small_parse_table[] = { [97485] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3411), 1, + ACTIONS(3549), 1, sym_identifier, - ACTIONS(3415), 1, + ACTIONS(3551), 1, + anon_sym_LPAREN, + ACTIONS(3553), 1, anon_sym_fn, - ACTIONS(3419), 1, + ACTIONS(3557), 1, anon_sym_struct, - ACTIONS(3429), 1, + ACTIONS(3567), 1, anon_sym_shared, - ACTIONS(3433), 1, + ACTIONS(3569), 1, + anon_sym_map_LBRACK, + ACTIONS(3571), 1, anon_sym_chan, - ACTIONS(3435), 1, + ACTIONS(3573), 1, anon_sym_thread, - ACTIONS(3437), 1, + ACTIONS(3575), 1, anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5517), 1, + ACTIONS(5557), 1, anon_sym_STAR, - ACTIONS(5519), 1, + ACTIONS(5559), 1, anon_sym_QMARK, - ACTIONS(5521), 1, + ACTIONS(5561), 1, anon_sym_BANG, - ACTIONS(5523), 1, + ACTIONS(5563), 1, anon_sym_LBRACK2, - ACTIONS(5525), 1, + ACTIONS(5565), 1, anon_sym_AMP, - ACTIONS(5527), 1, - anon_sym_map_LBRACK, - STATE(1748), 1, + STATE(2090), 1, sym_plain_type, - STATE(4409), 1, + STATE(4469), 1, sym_reference_expression, - STATE(1666), 2, + STATE(1930), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1665), 4, + STATE(1946), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1641), 12, + STATE(1947), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274221,47 +274847,47 @@ static const uint16_t ts_small_parse_table[] = { [97561] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3443), 1, + ACTIONS(3549), 1, sym_identifier, - ACTIONS(3447), 1, + ACTIONS(3551), 1, + anon_sym_LPAREN, + ACTIONS(3553), 1, anon_sym_fn, - ACTIONS(3451), 1, + ACTIONS(3557), 1, anon_sym_struct, - ACTIONS(3461), 1, + ACTIONS(3567), 1, anon_sym_shared, - ACTIONS(3465), 1, + ACTIONS(3569), 1, + anon_sym_map_LBRACK, + ACTIONS(3571), 1, anon_sym_chan, - ACTIONS(3467), 1, + ACTIONS(3573), 1, anon_sym_thread, - ACTIONS(3469), 1, + ACTIONS(3575), 1, anon_sym_atomic, - ACTIONS(5577), 1, - anon_sym_LPAREN, - ACTIONS(5579), 1, + ACTIONS(5557), 1, anon_sym_STAR, - ACTIONS(5581), 1, + ACTIONS(5559), 1, anon_sym_QMARK, - ACTIONS(5583), 1, + ACTIONS(5561), 1, anon_sym_BANG, - ACTIONS(5585), 1, + ACTIONS(5563), 1, anon_sym_LBRACK2, - ACTIONS(5587), 1, + ACTIONS(5565), 1, anon_sym_AMP, - ACTIONS(5589), 1, - anon_sym_map_LBRACK, - STATE(1825), 1, + STATE(1969), 1, sym_plain_type, - STATE(4549), 1, + STATE(4469), 1, sym_reference_expression, - STATE(1787), 2, + STATE(1930), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1886), 4, + STATE(1946), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1885), 12, + STATE(1947), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274277,47 +274903,47 @@ static const uint16_t ts_small_parse_table[] = { [97637] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3549), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(3551), 1, + anon_sym_LPAREN, + ACTIONS(3553), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3557), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(3567), 1, anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3569), 1, + anon_sym_map_LBRACK, + ACTIONS(3571), 1, + anon_sym_chan, + ACTIONS(3573), 1, + anon_sym_thread, + ACTIONS(3575), 1, + anon_sym_atomic, + ACTIONS(5557), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5559), 1, + anon_sym_QMARK, + ACTIONS(5561), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5563), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5565), 1, anon_sym_AMP, - STATE(4600), 1, - sym_reference_expression, - STATE(4663), 1, + STATE(1976), 1, sym_plain_type, - STATE(3581), 2, + STATE(4469), 1, + sym_reference_expression, + STATE(1930), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1946), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1947), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274333,47 +274959,47 @@ static const uint16_t ts_small_parse_table[] = { [97713] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(3549), 1, sym_identifier, - ACTIONS(1606), 1, + ACTIONS(3551), 1, + anon_sym_LPAREN, + ACTIONS(3553), 1, anon_sym_fn, - ACTIONS(1610), 1, + ACTIONS(3557), 1, anon_sym_struct, - ACTIONS(1620), 1, + ACTIONS(3567), 1, anon_sym_shared, - ACTIONS(1624), 1, + ACTIONS(3569), 1, + anon_sym_map_LBRACK, + ACTIONS(3571), 1, anon_sym_chan, - ACTIONS(1626), 1, + ACTIONS(3573), 1, anon_sym_thread, - ACTIONS(1628), 1, + ACTIONS(3575), 1, anon_sym_atomic, - ACTIONS(5591), 1, - anon_sym_LPAREN, - ACTIONS(5593), 1, + ACTIONS(5557), 1, anon_sym_STAR, - ACTIONS(5595), 1, + ACTIONS(5559), 1, anon_sym_QMARK, - ACTIONS(5597), 1, + ACTIONS(5561), 1, anon_sym_BANG, - ACTIONS(5599), 1, + ACTIONS(5563), 1, anon_sym_LBRACK2, - ACTIONS(5601), 1, + ACTIONS(5565), 1, anon_sym_AMP, - ACTIONS(5603), 1, - anon_sym_map_LBRACK, - STATE(1075), 1, + STATE(1982), 1, sym_plain_type, - STATE(4444), 1, + STATE(4469), 1, sym_reference_expression, - STATE(994), 2, + STATE(1930), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1059), 4, + STATE(1946), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1060), 12, + STATE(1947), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274389,22 +275015,24 @@ static const uint16_t ts_small_parse_table[] = { [97789] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, + ACTIONS(3549), 1, sym_identifier, - ACTIONS(3676), 1, + ACTIONS(3551), 1, + anon_sym_LPAREN, + ACTIONS(3553), 1, anon_sym_fn, - ACTIONS(3680), 1, + ACTIONS(3557), 1, anon_sym_struct, - ACTIONS(3690), 1, + ACTIONS(3567), 1, anon_sym_shared, - ACTIONS(3694), 1, + ACTIONS(3569), 1, + anon_sym_map_LBRACK, + ACTIONS(3571), 1, anon_sym_chan, - ACTIONS(3696), 1, + ACTIONS(3573), 1, anon_sym_thread, - ACTIONS(3698), 1, + ACTIONS(3575), 1, anon_sym_atomic, - ACTIONS(5555), 1, - anon_sym_LPAREN, ACTIONS(5557), 1, anon_sym_STAR, ACTIONS(5559), 1, @@ -274415,21 +275043,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5565), 1, anon_sym_AMP, - ACTIONS(5567), 1, - anon_sym_map_LBRACK, - STATE(2223), 1, + STATE(2023), 1, sym_plain_type, - STATE(4566), 1, + STATE(4469), 1, sym_reference_expression, - STATE(2159), 2, + STATE(1930), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2185), 4, + STATE(1946), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2186), 12, + STATE(1947), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274445,47 +275071,47 @@ static const uint16_t ts_small_parse_table[] = { [97865] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3702), 1, + ACTIONS(3708), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3710), 1, anon_sym_fn, - ACTIONS(3706), 1, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(3716), 1, + ACTIONS(3722), 1, anon_sym_shared, - ACTIONS(3718), 1, + ACTIONS(3724), 1, anon_sym_map_LBRACK, - ACTIONS(3720), 1, + ACTIONS(3726), 1, anon_sym_chan, - ACTIONS(3722), 1, + ACTIONS(3728), 1, anon_sym_thread, - ACTIONS(3724), 1, + ACTIONS(3730), 1, anon_sym_atomic, - ACTIONS(5529), 1, + ACTIONS(5499), 1, anon_sym_QMARK, - ACTIONS(5531), 1, + ACTIONS(5501), 1, anon_sym_BANG, - ACTIONS(5533), 1, + ACTIONS(5503), 1, anon_sym_LBRACK2, - ACTIONS(5535), 1, + ACTIONS(5505), 1, anon_sym_AMP, - STATE(2417), 1, + STATE(2429), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(2318), 2, + STATE(2315), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274501,47 +275127,47 @@ static const uint16_t ts_small_parse_table[] = { [97941] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3443), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, sym_identifier, - ACTIONS(3447), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(3451), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(3461), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3465), 1, - anon_sym_chan, - ACTIONS(3467), 1, - anon_sym_thread, - ACTIONS(3469), 1, - anon_sym_atomic, - ACTIONS(5577), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(5579), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5581), 1, - anon_sym_QMARK, - ACTIONS(5583), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5585), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5587), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5589), 1, - anon_sym_map_LBRACK, - STATE(1826), 1, + STATE(4249), 1, sym_plain_type, - STATE(4549), 1, + STATE(4655), 1, sym_reference_expression, - STATE(1787), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1886), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1885), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274557,47 +275183,47 @@ static const uint16_t ts_small_parse_table[] = { [98017] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(3205), 1, sym_identifier, - ACTIONS(1606), 1, + ACTIONS(3209), 1, anon_sym_fn, - ACTIONS(1610), 1, + ACTIONS(3213), 1, anon_sym_struct, - ACTIONS(1620), 1, + ACTIONS(3223), 1, anon_sym_shared, - ACTIONS(1624), 1, + ACTIONS(3227), 1, anon_sym_chan, - ACTIONS(1626), 1, + ACTIONS(3229), 1, anon_sym_thread, - ACTIONS(1628), 1, + ACTIONS(3231), 1, anon_sym_atomic, - ACTIONS(5591), 1, + ACTIONS(5567), 1, anon_sym_LPAREN, - ACTIONS(5593), 1, + ACTIONS(5569), 1, anon_sym_STAR, - ACTIONS(5595), 1, + ACTIONS(5571), 1, anon_sym_QMARK, - ACTIONS(5597), 1, + ACTIONS(5573), 1, anon_sym_BANG, - ACTIONS(5599), 1, + ACTIONS(5575), 1, anon_sym_LBRACK2, - ACTIONS(5601), 1, + ACTIONS(5577), 1, anon_sym_AMP, - ACTIONS(5603), 1, + ACTIONS(5579), 1, anon_sym_map_LBRACK, - STATE(1076), 1, + STATE(3433), 1, sym_plain_type, - STATE(4444), 1, + STATE(4425), 1, sym_reference_expression, - STATE(994), 2, + STATE(3388), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1059), 4, + STATE(3431), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1060), 12, + STATE(3438), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274613,47 +275239,47 @@ static const uint16_t ts_small_parse_table[] = { [98093] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(3205), 1, sym_identifier, - ACTIONS(1606), 1, + ACTIONS(3209), 1, anon_sym_fn, - ACTIONS(1610), 1, + ACTIONS(3213), 1, anon_sym_struct, - ACTIONS(1620), 1, + ACTIONS(3223), 1, anon_sym_shared, - ACTIONS(1624), 1, + ACTIONS(3227), 1, anon_sym_chan, - ACTIONS(1626), 1, + ACTIONS(3229), 1, anon_sym_thread, - ACTIONS(1628), 1, + ACTIONS(3231), 1, anon_sym_atomic, - ACTIONS(5591), 1, + ACTIONS(5567), 1, anon_sym_LPAREN, - ACTIONS(5593), 1, + ACTIONS(5569), 1, anon_sym_STAR, - ACTIONS(5595), 1, + ACTIONS(5571), 1, anon_sym_QMARK, - ACTIONS(5597), 1, + ACTIONS(5573), 1, anon_sym_BANG, - ACTIONS(5599), 1, + ACTIONS(5575), 1, anon_sym_LBRACK2, - ACTIONS(5601), 1, + ACTIONS(5577), 1, anon_sym_AMP, - ACTIONS(5603), 1, + ACTIONS(5579), 1, anon_sym_map_LBRACK, - STATE(1088), 1, + STATE(3422), 1, sym_plain_type, - STATE(4444), 1, + STATE(4425), 1, sym_reference_expression, - STATE(994), 2, + STATE(3388), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1059), 4, + STATE(3431), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1060), 12, + STATE(3438), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274669,47 +275295,47 @@ static const uint16_t ts_small_parse_table[] = { [98169] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3702), 1, + ACTIONS(3708), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3710), 1, anon_sym_fn, - ACTIONS(3706), 1, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(3716), 1, + ACTIONS(3722), 1, anon_sym_shared, - ACTIONS(3718), 1, + ACTIONS(3724), 1, anon_sym_map_LBRACK, - ACTIONS(3720), 1, + ACTIONS(3726), 1, anon_sym_chan, - ACTIONS(3722), 1, + ACTIONS(3728), 1, anon_sym_thread, - ACTIONS(3724), 1, + ACTIONS(3730), 1, anon_sym_atomic, - ACTIONS(5529), 1, + ACTIONS(5499), 1, anon_sym_QMARK, - ACTIONS(5531), 1, + ACTIONS(5501), 1, anon_sym_BANG, - ACTIONS(5533), 1, + ACTIONS(5503), 1, anon_sym_LBRACK2, - ACTIONS(5535), 1, + ACTIONS(5505), 1, anon_sym_AMP, - STATE(2413), 1, + STATE(2341), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(2318), 2, + STATE(2315), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274725,47 +275351,47 @@ static const uint16_t ts_small_parse_table[] = { [98245] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3702), 1, + ACTIONS(3708), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3710), 1, anon_sym_fn, - ACTIONS(3706), 1, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(3716), 1, + ACTIONS(3722), 1, anon_sym_shared, - ACTIONS(3718), 1, + ACTIONS(3724), 1, anon_sym_map_LBRACK, - ACTIONS(3720), 1, + ACTIONS(3726), 1, anon_sym_chan, - ACTIONS(3722), 1, + ACTIONS(3728), 1, anon_sym_thread, - ACTIONS(3724), 1, + ACTIONS(3730), 1, anon_sym_atomic, - ACTIONS(5529), 1, + ACTIONS(5499), 1, anon_sym_QMARK, - ACTIONS(5531), 1, + ACTIONS(5501), 1, anon_sym_BANG, - ACTIONS(5533), 1, + ACTIONS(5503), 1, anon_sym_LBRACK2, - ACTIONS(5535), 1, + ACTIONS(5505), 1, anon_sym_AMP, - STATE(2412), 1, + STATE(2338), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(2318), 2, + STATE(2315), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274781,47 +275407,47 @@ static const uint16_t ts_small_parse_table[] = { [98321] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3549), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(3551), 1, + anon_sym_LPAREN, + ACTIONS(3553), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3557), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(3567), 1, anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3569), 1, + anon_sym_map_LBRACK, + ACTIONS(3571), 1, + anon_sym_chan, + ACTIONS(3573), 1, + anon_sym_thread, + ACTIONS(3575), 1, + anon_sym_atomic, + ACTIONS(5557), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5559), 1, + anon_sym_QMARK, + ACTIONS(5561), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5563), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5565), 1, anon_sym_AMP, - STATE(4567), 1, + STATE(2002), 1, sym_plain_type, - STATE(4600), 1, + STATE(4469), 1, sym_reference_expression, - STATE(3581), 2, + STATE(1930), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1946), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1947), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274837,47 +275463,47 @@ static const uint16_t ts_small_parse_table[] = { [98397] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(4586), 1, + STATE(4095), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274893,47 +275519,47 @@ static const uint16_t ts_small_parse_table[] = { [98473] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, + ACTIONS(3205), 1, sym_identifier, - ACTIONS(3676), 1, + ACTIONS(3209), 1, anon_sym_fn, - ACTIONS(3680), 1, + ACTIONS(3213), 1, anon_sym_struct, - ACTIONS(3690), 1, + ACTIONS(3223), 1, anon_sym_shared, - ACTIONS(3694), 1, + ACTIONS(3227), 1, anon_sym_chan, - ACTIONS(3696), 1, + ACTIONS(3229), 1, anon_sym_thread, - ACTIONS(3698), 1, + ACTIONS(3231), 1, anon_sym_atomic, - ACTIONS(5555), 1, + ACTIONS(5567), 1, anon_sym_LPAREN, - ACTIONS(5557), 1, + ACTIONS(5569), 1, anon_sym_STAR, - ACTIONS(5559), 1, + ACTIONS(5571), 1, anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5573), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5575), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5577), 1, anon_sym_AMP, - ACTIONS(5567), 1, + ACTIONS(5579), 1, anon_sym_map_LBRACK, - STATE(2254), 1, + STATE(3441), 1, sym_plain_type, - STATE(4566), 1, + STATE(4425), 1, sym_reference_expression, - STATE(2159), 2, + STATE(3388), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2185), 4, + STATE(3431), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2186), 12, + STATE(3438), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274949,47 +275575,47 @@ static const uint16_t ts_small_parse_table[] = { [98549] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, + ACTIONS(3549), 1, sym_identifier, - ACTIONS(3529), 1, + ACTIONS(3551), 1, anon_sym_LPAREN, - ACTIONS(3531), 1, + ACTIONS(3553), 1, anon_sym_fn, - ACTIONS(3535), 1, + ACTIONS(3557), 1, anon_sym_struct, - ACTIONS(3545), 1, + ACTIONS(3567), 1, anon_sym_shared, - ACTIONS(3547), 1, + ACTIONS(3569), 1, anon_sym_map_LBRACK, - ACTIONS(3549), 1, + ACTIONS(3571), 1, anon_sym_chan, - ACTIONS(3551), 1, + ACTIONS(3573), 1, anon_sym_thread, - ACTIONS(3553), 1, + ACTIONS(3575), 1, anon_sym_atomic, - ACTIONS(5507), 1, + ACTIONS(5557), 1, anon_sym_STAR, - ACTIONS(5509), 1, + ACTIONS(5559), 1, anon_sym_QMARK, - ACTIONS(5511), 1, + ACTIONS(5561), 1, anon_sym_BANG, - ACTIONS(5513), 1, + ACTIONS(5563), 1, anon_sym_LBRACK2, - ACTIONS(5515), 1, + ACTIONS(5565), 1, anon_sym_AMP, - STATE(2125), 1, + STATE(2001), 1, sym_plain_type, - STATE(4528), 1, + STATE(4469), 1, sym_reference_expression, - STATE(1923), 2, + STATE(1930), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2020), 4, + STATE(1946), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1942), 12, + STATE(1947), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275005,47 +275631,47 @@ static const uint16_t ts_small_parse_table[] = { [98625] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, sym_identifier, - ACTIONS(3676), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(3680), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(3690), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3694), 1, - anon_sym_chan, - ACTIONS(3696), 1, - anon_sym_thread, - ACTIONS(3698), 1, - anon_sym_atomic, - ACTIONS(5555), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(5557), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5559), 1, - anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5567), 1, - anon_sym_map_LBRACK, - STATE(2248), 1, - sym_plain_type, - STATE(4566), 1, + STATE(4655), 1, sym_reference_expression, - STATE(2159), 2, + STATE(4738), 1, + sym_plain_type, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2185), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2186), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275061,47 +275687,47 @@ static const uint16_t ts_small_parse_table[] = { [98701] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, + ACTIONS(3205), 1, sym_identifier, - ACTIONS(3676), 1, + ACTIONS(3209), 1, anon_sym_fn, - ACTIONS(3680), 1, + ACTIONS(3213), 1, anon_sym_struct, - ACTIONS(3690), 1, + ACTIONS(3223), 1, anon_sym_shared, - ACTIONS(3694), 1, + ACTIONS(3227), 1, anon_sym_chan, - ACTIONS(3696), 1, + ACTIONS(3229), 1, anon_sym_thread, - ACTIONS(3698), 1, + ACTIONS(3231), 1, anon_sym_atomic, - ACTIONS(5555), 1, + ACTIONS(5567), 1, anon_sym_LPAREN, - ACTIONS(5557), 1, + ACTIONS(5569), 1, anon_sym_STAR, - ACTIONS(5559), 1, + ACTIONS(5571), 1, anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5573), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5575), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5577), 1, anon_sym_AMP, - ACTIONS(5567), 1, + ACTIONS(5579), 1, anon_sym_map_LBRACK, - STATE(2210), 1, + STATE(3429), 1, sym_plain_type, - STATE(4566), 1, + STATE(4425), 1, sym_reference_expression, - STATE(2159), 2, + STATE(3388), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2185), 4, + STATE(3431), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2186), 12, + STATE(3438), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275117,47 +275743,47 @@ static const uint16_t ts_small_parse_table[] = { [98777] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, + ACTIONS(3205), 1, sym_identifier, - ACTIONS(3676), 1, + ACTIONS(3209), 1, anon_sym_fn, - ACTIONS(3680), 1, + ACTIONS(3213), 1, anon_sym_struct, - ACTIONS(3690), 1, + ACTIONS(3223), 1, anon_sym_shared, - ACTIONS(3694), 1, + ACTIONS(3227), 1, anon_sym_chan, - ACTIONS(3696), 1, + ACTIONS(3229), 1, anon_sym_thread, - ACTIONS(3698), 1, + ACTIONS(3231), 1, anon_sym_atomic, - ACTIONS(5555), 1, + ACTIONS(5567), 1, anon_sym_LPAREN, - ACTIONS(5557), 1, + ACTIONS(5569), 1, anon_sym_STAR, - ACTIONS(5559), 1, + ACTIONS(5571), 1, anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5573), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5575), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5577), 1, anon_sym_AMP, - ACTIONS(5567), 1, + ACTIONS(5579), 1, anon_sym_map_LBRACK, - STATE(2246), 1, + STATE(3442), 1, sym_plain_type, - STATE(4566), 1, + STATE(4425), 1, sym_reference_expression, - STATE(2159), 2, + STATE(3388), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2185), 4, + STATE(3431), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2186), 12, + STATE(3438), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275173,47 +275799,47 @@ static const uint16_t ts_small_parse_table[] = { [98853] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3205), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(3209), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3213), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(3223), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3227), 1, + anon_sym_chan, + ACTIONS(3229), 1, + anon_sym_thread, + ACTIONS(3231), 1, + anon_sym_atomic, + ACTIONS(5567), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5569), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5571), 1, + anon_sym_QMARK, + ACTIONS(5573), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5575), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5577), 1, anon_sym_AMP, - STATE(4597), 1, + ACTIONS(5579), 1, + anon_sym_map_LBRACK, + STATE(3435), 1, sym_plain_type, - STATE(4600), 1, + STATE(4425), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3388), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(3431), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(3438), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275229,47 +275855,47 @@ static const uint16_t ts_small_parse_table[] = { [98929] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, + ACTIONS(3205), 1, sym_identifier, - ACTIONS(3676), 1, + ACTIONS(3209), 1, anon_sym_fn, - ACTIONS(3680), 1, + ACTIONS(3213), 1, anon_sym_struct, - ACTIONS(3690), 1, + ACTIONS(3223), 1, anon_sym_shared, - ACTIONS(3694), 1, + ACTIONS(3227), 1, anon_sym_chan, - ACTIONS(3696), 1, + ACTIONS(3229), 1, anon_sym_thread, - ACTIONS(3698), 1, + ACTIONS(3231), 1, anon_sym_atomic, - ACTIONS(5555), 1, + ACTIONS(5567), 1, anon_sym_LPAREN, - ACTIONS(5557), 1, + ACTIONS(5569), 1, anon_sym_STAR, - ACTIONS(5559), 1, + ACTIONS(5571), 1, anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5573), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5575), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5577), 1, anon_sym_AMP, - ACTIONS(5567), 1, + ACTIONS(5579), 1, anon_sym_map_LBRACK, - STATE(2243), 1, + STATE(3426), 1, sym_plain_type, - STATE(4566), 1, + STATE(4425), 1, sym_reference_expression, - STATE(2159), 2, + STATE(3388), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2185), 4, + STATE(3431), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2186), 12, + STATE(3438), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275285,47 +275911,47 @@ static const uint16_t ts_small_parse_table[] = { [99005] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, + ACTIONS(3549), 1, sym_identifier, - ACTIONS(3351), 1, + ACTIONS(3551), 1, anon_sym_LPAREN, - ACTIONS(3353), 1, + ACTIONS(3553), 1, anon_sym_fn, - ACTIONS(3355), 1, - anon_sym_STAR, - ACTIONS(3357), 1, + ACTIONS(3557), 1, anon_sym_struct, - ACTIONS(3367), 1, + ACTIONS(3567), 1, anon_sym_shared, - ACTIONS(3369), 1, + ACTIONS(3569), 1, anon_sym_map_LBRACK, - ACTIONS(3371), 1, + ACTIONS(3571), 1, anon_sym_chan, - ACTIONS(3373), 1, + ACTIONS(3573), 1, anon_sym_thread, - ACTIONS(3375), 1, + ACTIONS(3575), 1, anon_sym_atomic, - ACTIONS(5569), 1, + ACTIONS(5557), 1, + anon_sym_STAR, + ACTIONS(5559), 1, anon_sym_QMARK, - ACTIONS(5571), 1, + ACTIONS(5561), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5563), 1, anon_sym_LBRACK2, - ACTIONS(5575), 1, + ACTIONS(5565), 1, anon_sym_AMP, - STATE(1313), 1, + STATE(2032), 1, sym_plain_type, - STATE(4423), 1, + STATE(4469), 1, sym_reference_expression, - STATE(1294), 2, + STATE(1930), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1344), 4, + STATE(1946), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1345), 12, + STATE(1947), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275341,47 +275967,47 @@ static const uint16_t ts_small_parse_table[] = { [99081] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3449), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(3453), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3457), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(3467), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3471), 1, + anon_sym_chan, + ACTIONS(3473), 1, + anon_sym_thread, + ACTIONS(3475), 1, + anon_sym_atomic, + ACTIONS(5581), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5583), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5585), 1, + anon_sym_QMARK, + ACTIONS(5587), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5589), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5591), 1, anon_sym_AMP, - STATE(4600), 1, - sym_reference_expression, - STATE(4615), 1, + ACTIONS(5593), 1, + anon_sym_map_LBRACK, + STATE(1867), 1, sym_plain_type, - STATE(3581), 2, + STATE(4553), 1, + sym_reference_expression, + STATE(1773), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1811), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1810), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275397,47 +276023,47 @@ static const uint16_t ts_small_parse_table[] = { [99157] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(3449), 1, sym_identifier, - ACTIONS(1606), 1, + ACTIONS(3453), 1, anon_sym_fn, - ACTIONS(1610), 1, + ACTIONS(3457), 1, anon_sym_struct, - ACTIONS(1620), 1, + ACTIONS(3467), 1, anon_sym_shared, - ACTIONS(1624), 1, + ACTIONS(3471), 1, anon_sym_chan, - ACTIONS(1626), 1, + ACTIONS(3473), 1, anon_sym_thread, - ACTIONS(1628), 1, + ACTIONS(3475), 1, anon_sym_atomic, - ACTIONS(5591), 1, + ACTIONS(5581), 1, anon_sym_LPAREN, - ACTIONS(5593), 1, + ACTIONS(5583), 1, anon_sym_STAR, - ACTIONS(5595), 1, + ACTIONS(5585), 1, anon_sym_QMARK, - ACTIONS(5597), 1, + ACTIONS(5587), 1, anon_sym_BANG, - ACTIONS(5599), 1, + ACTIONS(5589), 1, anon_sym_LBRACK2, - ACTIONS(5601), 1, + ACTIONS(5591), 1, anon_sym_AMP, - ACTIONS(5603), 1, + ACTIONS(5593), 1, anon_sym_map_LBRACK, - STATE(1092), 1, + STATE(1865), 1, sym_plain_type, - STATE(4444), 1, + STATE(4553), 1, sym_reference_expression, - STATE(994), 2, + STATE(1773), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1059), 4, + STATE(1811), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1060), 12, + STATE(1810), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275453,47 +276079,47 @@ static const uint16_t ts_small_parse_table[] = { [99233] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(3205), 1, sym_identifier, - ACTIONS(1606), 1, + ACTIONS(3209), 1, anon_sym_fn, - ACTIONS(1610), 1, + ACTIONS(3213), 1, anon_sym_struct, - ACTIONS(1620), 1, + ACTIONS(3223), 1, anon_sym_shared, - ACTIONS(1624), 1, + ACTIONS(3227), 1, anon_sym_chan, - ACTIONS(1626), 1, + ACTIONS(3229), 1, anon_sym_thread, - ACTIONS(1628), 1, + ACTIONS(3231), 1, anon_sym_atomic, - ACTIONS(5591), 1, + ACTIONS(5567), 1, anon_sym_LPAREN, - ACTIONS(5593), 1, + ACTIONS(5569), 1, anon_sym_STAR, - ACTIONS(5595), 1, + ACTIONS(5571), 1, anon_sym_QMARK, - ACTIONS(5597), 1, + ACTIONS(5573), 1, anon_sym_BANG, - ACTIONS(5599), 1, + ACTIONS(5575), 1, anon_sym_LBRACK2, - ACTIONS(5601), 1, + ACTIONS(5577), 1, anon_sym_AMP, - ACTIONS(5603), 1, + ACTIONS(5579), 1, anon_sym_map_LBRACK, - STATE(1072), 1, + STATE(3427), 1, sym_plain_type, - STATE(4444), 1, + STATE(4425), 1, sym_reference_expression, - STATE(994), 2, + STATE(3388), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1059), 4, + STATE(3431), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1060), 12, + STATE(3438), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275509,47 +276135,47 @@ static const uint16_t ts_small_parse_table[] = { [99309] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, + ACTIONS(3449), 1, sym_identifier, - ACTIONS(3676), 1, + ACTIONS(3453), 1, anon_sym_fn, - ACTIONS(3680), 1, + ACTIONS(3457), 1, anon_sym_struct, - ACTIONS(3690), 1, + ACTIONS(3467), 1, anon_sym_shared, - ACTIONS(3694), 1, + ACTIONS(3471), 1, anon_sym_chan, - ACTIONS(3696), 1, + ACTIONS(3473), 1, anon_sym_thread, - ACTIONS(3698), 1, + ACTIONS(3475), 1, anon_sym_atomic, - ACTIONS(5555), 1, + ACTIONS(5581), 1, anon_sym_LPAREN, - ACTIONS(5557), 1, + ACTIONS(5583), 1, anon_sym_STAR, - ACTIONS(5559), 1, + ACTIONS(5585), 1, anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5587), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5589), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5591), 1, anon_sym_AMP, - ACTIONS(5567), 1, + ACTIONS(5593), 1, anon_sym_map_LBRACK, - STATE(2212), 1, + STATE(1855), 1, sym_plain_type, - STATE(4566), 1, + STATE(4553), 1, sym_reference_expression, - STATE(2159), 2, + STATE(1773), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2185), 4, + STATE(1811), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2186), 12, + STATE(1810), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275565,47 +276191,47 @@ static const uint16_t ts_small_parse_table[] = { [99385] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3443), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, sym_identifier, - ACTIONS(3447), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(3451), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(3461), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3465), 1, - anon_sym_chan, - ACTIONS(3467), 1, - anon_sym_thread, - ACTIONS(3469), 1, - anon_sym_atomic, - ACTIONS(5577), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(5579), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5581), 1, - anon_sym_QMARK, - ACTIONS(5583), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5585), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5587), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5589), 1, - anon_sym_map_LBRACK, - STATE(1812), 1, + STATE(4639), 1, sym_plain_type, - STATE(4549), 1, + STATE(4655), 1, sym_reference_expression, - STATE(1787), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1886), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1885), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275621,47 +276247,47 @@ static const uint16_t ts_small_parse_table[] = { [99461] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, sym_identifier, - ACTIONS(3676), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(3680), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(3690), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3694), 1, - anon_sym_chan, - ACTIONS(3696), 1, - anon_sym_thread, - ACTIONS(3698), 1, - anon_sym_atomic, - ACTIONS(5555), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(5557), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5559), 1, - anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5567), 1, - anon_sym_map_LBRACK, - STATE(2206), 1, + STATE(2350), 1, sym_plain_type, - STATE(4566), 1, + STATE(4655), 1, sym_reference_expression, - STATE(2159), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2185), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2186), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275677,47 +276303,47 @@ static const uint16_t ts_small_parse_table[] = { [99537] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, + ACTIONS(3205), 1, sym_identifier, - ACTIONS(3676), 1, + ACTIONS(3209), 1, anon_sym_fn, - ACTIONS(3680), 1, + ACTIONS(3213), 1, anon_sym_struct, - ACTIONS(3690), 1, + ACTIONS(3223), 1, anon_sym_shared, - ACTIONS(3694), 1, + ACTIONS(3227), 1, anon_sym_chan, - ACTIONS(3696), 1, + ACTIONS(3229), 1, anon_sym_thread, - ACTIONS(3698), 1, + ACTIONS(3231), 1, anon_sym_atomic, - ACTIONS(5555), 1, + ACTIONS(5567), 1, anon_sym_LPAREN, - ACTIONS(5557), 1, + ACTIONS(5569), 1, anon_sym_STAR, - ACTIONS(5559), 1, + ACTIONS(5571), 1, anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5573), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5575), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5577), 1, anon_sym_AMP, - ACTIONS(5567), 1, + ACTIONS(5579), 1, anon_sym_map_LBRACK, - STATE(2211), 1, + STATE(3428), 1, sym_plain_type, - STATE(4566), 1, + STATE(4425), 1, sym_reference_expression, - STATE(2159), 2, + STATE(3388), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2185), 4, + STATE(3431), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2186), 12, + STATE(3438), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275733,47 +276359,47 @@ static const uint16_t ts_small_parse_table[] = { [99613] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, - sym_identifier, - ACTIONS(3529), 1, - anon_sym_LPAREN, - ACTIONS(3531), 1, - anon_sym_fn, - ACTIONS(3535), 1, - anon_sym_struct, - ACTIONS(3545), 1, - anon_sym_shared, - ACTIONS(3547), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(3549), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3551), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3553), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5507), 1, + ACTIONS(591), 1, + sym_identifier, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(609), 1, + anon_sym_shared, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5509), 1, - anon_sym_QMARK, - ACTIONS(5511), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5513), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5515), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(2101), 1, + STATE(2351), 1, sym_plain_type, - STATE(4528), 1, + STATE(4655), 1, sym_reference_expression, - STATE(1923), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2020), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1942), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275789,47 +276415,47 @@ static const uint16_t ts_small_parse_table[] = { [99689] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, - sym_identifier, - ACTIONS(3529), 1, - anon_sym_LPAREN, - ACTIONS(3531), 1, - anon_sym_fn, - ACTIONS(3535), 1, - anon_sym_struct, - ACTIONS(3545), 1, - anon_sym_shared, - ACTIONS(3547), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(3549), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3551), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3553), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5507), 1, + ACTIONS(591), 1, + sym_identifier, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(609), 1, + anon_sym_shared, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5509), 1, - anon_sym_QMARK, - ACTIONS(5511), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5513), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5515), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(2124), 1, + STATE(4316), 1, sym_plain_type, - STATE(4528), 1, + STATE(4655), 1, sym_reference_expression, - STATE(1923), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2020), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1942), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275845,47 +276471,47 @@ static const uint16_t ts_small_parse_table[] = { [99765] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, sym_identifier, - ACTIONS(559), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(563), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(573), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(577), 1, - anon_sym_chan, - ACTIONS(579), 1, - anon_sym_thread, - ACTIONS(581), 1, - anon_sym_atomic, - ACTIONS(5605), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(5607), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5609), 1, - anon_sym_QMARK, - ACTIONS(5611), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5613), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5615), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5617), 1, - anon_sym_map_LBRACK, - STATE(847), 1, + STATE(3968), 1, sym_plain_type, - STATE(4460), 1, + STATE(4655), 1, sym_reference_expression, - STATE(521), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(898), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(896), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275901,47 +276527,47 @@ static const uint16_t ts_small_parse_table[] = { [99841] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, sym_identifier, - ACTIONS(1606), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(1610), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(1620), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(1624), 1, - anon_sym_chan, - ACTIONS(1626), 1, - anon_sym_thread, - ACTIONS(1628), 1, - anon_sym_atomic, - ACTIONS(5591), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(5593), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5595), 1, - anon_sym_QMARK, - ACTIONS(5597), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5599), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5601), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5603), 1, - anon_sym_map_LBRACK, - STATE(1093), 1, + STATE(2355), 1, sym_plain_type, - STATE(4444), 1, + STATE(4655), 1, sym_reference_expression, - STATE(994), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1059), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1060), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275957,47 +276583,47 @@ static const uint16_t ts_small_parse_table[] = { [99917] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3673), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(3677), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3681), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(3691), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3695), 1, + anon_sym_chan, + ACTIONS(3697), 1, + anon_sym_thread, + ACTIONS(3699), 1, + anon_sym_atomic, + ACTIONS(5521), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5523), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5525), 1, + anon_sym_QMARK, + ACTIONS(5527), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5529), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5531), 1, anon_sym_AMP, - STATE(3947), 1, + ACTIONS(5533), 1, + anon_sym_map_LBRACK, + STATE(2253), 1, sym_plain_type, - STATE(4600), 1, + STATE(4570), 1, sym_reference_expression, - STATE(3581), 2, + STATE(2164), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2191), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2192), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276013,47 +276639,47 @@ static const uint16_t ts_small_parse_table[] = { [99993] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, + ACTIONS(3549), 1, sym_identifier, - ACTIONS(3529), 1, + ACTIONS(3551), 1, anon_sym_LPAREN, - ACTIONS(3531), 1, + ACTIONS(3553), 1, anon_sym_fn, - ACTIONS(3535), 1, + ACTIONS(3557), 1, anon_sym_struct, - ACTIONS(3545), 1, + ACTIONS(3567), 1, anon_sym_shared, - ACTIONS(3547), 1, + ACTIONS(3569), 1, anon_sym_map_LBRACK, - ACTIONS(3549), 1, + ACTIONS(3571), 1, anon_sym_chan, - ACTIONS(3551), 1, + ACTIONS(3573), 1, anon_sym_thread, - ACTIONS(3553), 1, + ACTIONS(3575), 1, anon_sym_atomic, - ACTIONS(5507), 1, + ACTIONS(5557), 1, anon_sym_STAR, - ACTIONS(5509), 1, + ACTIONS(5559), 1, anon_sym_QMARK, - ACTIONS(5511), 1, + ACTIONS(5561), 1, anon_sym_BANG, - ACTIONS(5513), 1, + ACTIONS(5563), 1, anon_sym_LBRACK2, - ACTIONS(5515), 1, + ACTIONS(5565), 1, anon_sym_AMP, - STATE(2116), 1, + STATE(1998), 1, sym_plain_type, - STATE(4528), 1, + STATE(4469), 1, sym_reference_expression, - STATE(1923), 2, + STATE(1930), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2020), 4, + STATE(1946), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1942), 12, + STATE(1947), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276069,22 +276695,24 @@ static const uint16_t ts_small_parse_table[] = { [100069] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, + ACTIONS(3549), 1, sym_identifier, - ACTIONS(3676), 1, + ACTIONS(3551), 1, + anon_sym_LPAREN, + ACTIONS(3553), 1, anon_sym_fn, - ACTIONS(3680), 1, + ACTIONS(3557), 1, anon_sym_struct, - ACTIONS(3690), 1, + ACTIONS(3567), 1, anon_sym_shared, - ACTIONS(3694), 1, + ACTIONS(3569), 1, + anon_sym_map_LBRACK, + ACTIONS(3571), 1, anon_sym_chan, - ACTIONS(3696), 1, + ACTIONS(3573), 1, anon_sym_thread, - ACTIONS(3698), 1, + ACTIONS(3575), 1, anon_sym_atomic, - ACTIONS(5555), 1, - anon_sym_LPAREN, ACTIONS(5557), 1, anon_sym_STAR, ACTIONS(5559), 1, @@ -276095,21 +276723,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5565), 1, anon_sym_AMP, - ACTIONS(5567), 1, - anon_sym_map_LBRACK, - STATE(2208), 1, + STATE(1959), 1, sym_plain_type, - STATE(4566), 1, + STATE(4469), 1, sym_reference_expression, - STATE(2159), 2, + STATE(1930), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2185), 4, + STATE(1946), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2186), 12, + STATE(1947), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276125,47 +276751,47 @@ static const uint16_t ts_small_parse_table[] = { [100145] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, + ACTIONS(3673), 1, sym_identifier, - ACTIONS(3203), 1, + ACTIONS(3677), 1, anon_sym_fn, - ACTIONS(3207), 1, + ACTIONS(3681), 1, anon_sym_struct, - ACTIONS(3217), 1, + ACTIONS(3691), 1, anon_sym_shared, - ACTIONS(3221), 1, + ACTIONS(3695), 1, anon_sym_chan, - ACTIONS(3223), 1, + ACTIONS(3697), 1, anon_sym_thread, - ACTIONS(3225), 1, + ACTIONS(3699), 1, anon_sym_atomic, - ACTIONS(5619), 1, + ACTIONS(5521), 1, anon_sym_LPAREN, - ACTIONS(5621), 1, + ACTIONS(5523), 1, anon_sym_STAR, - ACTIONS(5623), 1, + ACTIONS(5525), 1, anon_sym_QMARK, - ACTIONS(5625), 1, + ACTIONS(5527), 1, anon_sym_BANG, - ACTIONS(5627), 1, + ACTIONS(5529), 1, anon_sym_LBRACK2, - ACTIONS(5629), 1, + ACTIONS(5531), 1, anon_sym_AMP, - ACTIONS(5631), 1, + ACTIONS(5533), 1, anon_sym_map_LBRACK, - STATE(3426), 1, + STATE(2278), 1, sym_plain_type, - STATE(4416), 1, + STATE(4570), 1, sym_reference_expression, - STATE(3390), 2, + STATE(2164), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3442), 4, + STATE(2191), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3438), 12, + STATE(2192), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276181,47 +276807,47 @@ static const uint16_t ts_small_parse_table[] = { [100221] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3730), 1, + ACTIONS(3673), 1, sym_identifier, - ACTIONS(3734), 1, + ACTIONS(3677), 1, anon_sym_fn, - ACTIONS(3738), 1, + ACTIONS(3681), 1, anon_sym_struct, - ACTIONS(3748), 1, + ACTIONS(3691), 1, anon_sym_shared, - ACTIONS(3752), 1, + ACTIONS(3695), 1, anon_sym_chan, - ACTIONS(3754), 1, + ACTIONS(3697), 1, anon_sym_thread, - ACTIONS(3756), 1, + ACTIONS(3699), 1, anon_sym_atomic, - ACTIONS(5493), 1, + ACTIONS(5521), 1, anon_sym_LPAREN, - ACTIONS(5495), 1, + ACTIONS(5523), 1, anon_sym_STAR, - ACTIONS(5497), 1, + ACTIONS(5525), 1, anon_sym_QMARK, - ACTIONS(5499), 1, + ACTIONS(5527), 1, anon_sym_BANG, - ACTIONS(5501), 1, + ACTIONS(5529), 1, anon_sym_LBRACK2, - ACTIONS(5503), 1, + ACTIONS(5531), 1, anon_sym_AMP, - ACTIONS(5505), 1, + ACTIONS(5533), 1, anon_sym_map_LBRACK, - STATE(2534), 1, + STATE(2282), 1, sym_plain_type, - STATE(4486), 1, + STATE(4570), 1, sym_reference_expression, - STATE(2457), 2, + STATE(2164), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2570), 4, + STATE(2191), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2569), 12, + STATE(2192), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276237,47 +276863,47 @@ static const uint16_t ts_small_parse_table[] = { [100297] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1610), 1, sym_identifier, - ACTIONS(1606), 1, + ACTIONS(1614), 1, anon_sym_fn, - ACTIONS(1610), 1, + ACTIONS(1618), 1, anon_sym_struct, - ACTIONS(1620), 1, + ACTIONS(1628), 1, anon_sym_shared, - ACTIONS(1624), 1, + ACTIONS(1632), 1, anon_sym_chan, - ACTIONS(1626), 1, + ACTIONS(1634), 1, anon_sym_thread, - ACTIONS(1628), 1, + ACTIONS(1636), 1, anon_sym_atomic, - ACTIONS(5591), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5593), 1, + ACTIONS(5537), 1, anon_sym_STAR, - ACTIONS(5595), 1, + ACTIONS(5539), 1, anon_sym_QMARK, - ACTIONS(5597), 1, + ACTIONS(5541), 1, anon_sym_BANG, - ACTIONS(5599), 1, + ACTIONS(5543), 1, anon_sym_LBRACK2, - ACTIONS(5601), 1, + ACTIONS(5545), 1, anon_sym_AMP, - ACTIONS(5603), 1, + ACTIONS(5547), 1, anon_sym_map_LBRACK, - STATE(1107), 1, + STATE(1090), 1, sym_plain_type, - STATE(4444), 1, + STATE(4448), 1, sym_reference_expression, - STATE(994), 2, + STATE(1002), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1059), 4, + STATE(1084), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1060), 12, + STATE(1085), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276293,47 +276919,47 @@ static const uint16_t ts_small_parse_table[] = { [100373] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, sym_identifier, - ACTIONS(3203), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(3207), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(3217), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3221), 1, - anon_sym_chan, - ACTIONS(3223), 1, - anon_sym_thread, - ACTIONS(3225), 1, - anon_sym_atomic, - ACTIONS(5619), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(5621), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5623), 1, - anon_sym_QMARK, - ACTIONS(5625), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5627), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5629), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5631), 1, - anon_sym_map_LBRACK, - STATE(3429), 1, + STATE(4323), 1, sym_plain_type, - STATE(4416), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3390), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3442), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3438), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276349,47 +276975,47 @@ static const uint16_t ts_small_parse_table[] = { [100449] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3443), 1, + ACTIONS(3673), 1, sym_identifier, - ACTIONS(3447), 1, + ACTIONS(3677), 1, anon_sym_fn, - ACTIONS(3451), 1, + ACTIONS(3681), 1, anon_sym_struct, - ACTIONS(3461), 1, + ACTIONS(3691), 1, anon_sym_shared, - ACTIONS(3465), 1, + ACTIONS(3695), 1, anon_sym_chan, - ACTIONS(3467), 1, + ACTIONS(3697), 1, anon_sym_thread, - ACTIONS(3469), 1, + ACTIONS(3699), 1, anon_sym_atomic, - ACTIONS(5577), 1, + ACTIONS(5521), 1, anon_sym_LPAREN, - ACTIONS(5579), 1, + ACTIONS(5523), 1, anon_sym_STAR, - ACTIONS(5581), 1, + ACTIONS(5525), 1, anon_sym_QMARK, - ACTIONS(5583), 1, + ACTIONS(5527), 1, anon_sym_BANG, - ACTIONS(5585), 1, + ACTIONS(5529), 1, anon_sym_LBRACK2, - ACTIONS(5587), 1, + ACTIONS(5531), 1, anon_sym_AMP, - ACTIONS(5589), 1, + ACTIONS(5533), 1, anon_sym_map_LBRACK, - STATE(1808), 1, + STATE(2233), 1, sym_plain_type, - STATE(4549), 1, + STATE(4570), 1, sym_reference_expression, - STATE(1787), 2, + STATE(2164), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1886), 4, + STATE(2191), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1885), 12, + STATE(2192), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276405,47 +277031,47 @@ static const uint16_t ts_small_parse_table[] = { [100525] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3702), 1, + ACTIONS(3708), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3710), 1, anon_sym_fn, - ACTIONS(3706), 1, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(3716), 1, + ACTIONS(3722), 1, anon_sym_shared, - ACTIONS(3718), 1, + ACTIONS(3724), 1, anon_sym_map_LBRACK, - ACTIONS(3720), 1, + ACTIONS(3726), 1, anon_sym_chan, - ACTIONS(3722), 1, + ACTIONS(3728), 1, anon_sym_thread, - ACTIONS(3724), 1, + ACTIONS(3730), 1, anon_sym_atomic, - ACTIONS(5529), 1, + ACTIONS(5499), 1, anon_sym_QMARK, - ACTIONS(5531), 1, + ACTIONS(5501), 1, anon_sym_BANG, - ACTIONS(5533), 1, + ACTIONS(5503), 1, anon_sym_LBRACK2, - ACTIONS(5535), 1, + ACTIONS(5505), 1, anon_sym_AMP, - STATE(2361), 1, + STATE(2424), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(2318), 2, + STATE(2315), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276461,47 +277087,47 @@ static const uint16_t ts_small_parse_table[] = { [100601] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3702), 1, + ACTIONS(3708), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3710), 1, anon_sym_fn, - ACTIONS(3706), 1, + ACTIONS(3712), 1, anon_sym_STAR, - ACTIONS(3716), 1, + ACTIONS(3722), 1, anon_sym_shared, - ACTIONS(3718), 1, + ACTIONS(3724), 1, anon_sym_map_LBRACK, - ACTIONS(3720), 1, + ACTIONS(3726), 1, anon_sym_chan, - ACTIONS(3722), 1, + ACTIONS(3728), 1, anon_sym_thread, - ACTIONS(3724), 1, + ACTIONS(3730), 1, anon_sym_atomic, - ACTIONS(5529), 1, + ACTIONS(5499), 1, anon_sym_QMARK, - ACTIONS(5531), 1, + ACTIONS(5501), 1, anon_sym_BANG, - ACTIONS(5533), 1, + ACTIONS(5503), 1, anon_sym_LBRACK2, - ACTIONS(5535), 1, + ACTIONS(5505), 1, anon_sym_AMP, - STATE(2360), 1, + STATE(2420), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(2318), 2, + STATE(2315), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276517,47 +277143,47 @@ static const uint16_t ts_small_parse_table[] = { [100677] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3730), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, sym_identifier, - ACTIONS(3734), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(3738), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(3748), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3752), 1, - anon_sym_chan, - ACTIONS(3754), 1, - anon_sym_thread, - ACTIONS(3756), 1, - anon_sym_atomic, - ACTIONS(5493), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(5495), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5497), 1, - anon_sym_QMARK, - ACTIONS(5499), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5501), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5503), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5505), 1, - anon_sym_map_LBRACK, - STATE(2535), 1, + STATE(3894), 1, sym_plain_type, - STATE(4486), 1, + STATE(4655), 1, sym_reference_expression, - STATE(2457), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2570), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2569), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276573,47 +277199,47 @@ static const uint16_t ts_small_parse_table[] = { [100753] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3361), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(3363), 1, + anon_sym_LPAREN, + ACTIONS(3365), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3367), 1, + anon_sym_STAR, + ACTIONS(3369), 1, anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, + anon_sym_shared, + ACTIONS(3381), 1, + anon_sym_map_LBRACK, + ACTIONS(3383), 1, + anon_sym_chan, + ACTIONS(3385), 1, + anon_sym_thread, + ACTIONS(3387), 1, + anon_sym_atomic, + ACTIONS(5549), 1, + anon_sym_QMARK, + ACTIONS(5551), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5553), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5555), 1, anon_sym_AMP, - STATE(4020), 1, + STATE(1310), 1, sym_plain_type, - STATE(4600), 1, + STATE(4427), 1, sym_reference_expression, - STATE(3581), 2, + STATE(1303), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1347), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1406), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276629,47 +277255,47 @@ static const uint16_t ts_small_parse_table[] = { [100829] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, + ACTIONS(3361), 1, sym_identifier, - ACTIONS(3203), 1, + ACTIONS(3363), 1, + anon_sym_LPAREN, + ACTIONS(3365), 1, anon_sym_fn, - ACTIONS(3207), 1, + ACTIONS(3367), 1, + anon_sym_STAR, + ACTIONS(3369), 1, anon_sym_struct, - ACTIONS(3217), 1, + ACTIONS(3379), 1, anon_sym_shared, - ACTIONS(3221), 1, + ACTIONS(3381), 1, + anon_sym_map_LBRACK, + ACTIONS(3383), 1, anon_sym_chan, - ACTIONS(3223), 1, + ACTIONS(3385), 1, anon_sym_thread, - ACTIONS(3225), 1, + ACTIONS(3387), 1, anon_sym_atomic, - ACTIONS(5619), 1, - anon_sym_LPAREN, - ACTIONS(5621), 1, - anon_sym_STAR, - ACTIONS(5623), 1, + ACTIONS(5549), 1, anon_sym_QMARK, - ACTIONS(5625), 1, + ACTIONS(5551), 1, anon_sym_BANG, - ACTIONS(5627), 1, + ACTIONS(5553), 1, anon_sym_LBRACK2, - ACTIONS(5629), 1, + ACTIONS(5555), 1, anon_sym_AMP, - ACTIONS(5631), 1, - anon_sym_map_LBRACK, - STATE(3439), 1, + STATE(1312), 1, sym_plain_type, - STATE(4416), 1, + STATE(4427), 1, sym_reference_expression, - STATE(3390), 2, + STATE(1303), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3442), 4, + STATE(1347), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3438), 12, + STATE(1406), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276685,47 +277311,47 @@ static const uint16_t ts_small_parse_table[] = { [100905] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, - sym_identifier, - ACTIONS(3704), 1, - anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, - anon_sym_shared, - ACTIONS(3718), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(3720), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3722), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3724), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5529), 1, - anon_sym_QMARK, - ACTIONS(5531), 1, + ACTIONS(591), 1, + sym_identifier, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(609), 1, + anon_sym_shared, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, + anon_sym_STAR, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5533), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5535), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(2407), 1, - sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(2318), 2, + STATE(4706), 1, + sym_plain_type, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276741,47 +277367,47 @@ static const uint16_t ts_small_parse_table[] = { [100981] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3549), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(3551), 1, + anon_sym_LPAREN, + ACTIONS(3553), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3557), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(3567), 1, anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3569), 1, + anon_sym_map_LBRACK, + ACTIONS(3571), 1, + anon_sym_chan, + ACTIONS(3573), 1, + anon_sym_thread, + ACTIONS(3575), 1, + anon_sym_atomic, + ACTIONS(5557), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5559), 1, + anon_sym_QMARK, + ACTIONS(5561), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5563), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5565), 1, anon_sym_AMP, - STATE(4600), 1, - sym_reference_expression, - STATE(4660), 1, + STATE(1932), 1, sym_plain_type, - STATE(3581), 2, + STATE(4469), 1, + sym_reference_expression, + STATE(1930), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1946), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1947), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276797,47 +277423,47 @@ static const uint16_t ts_small_parse_table[] = { [101057] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3277), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, sym_identifier, - ACTIONS(3281), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(3285), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(3295), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3299), 1, - anon_sym_chan, - ACTIONS(3301), 1, - anon_sym_thread, - ACTIONS(3303), 1, - anon_sym_atomic, - ACTIONS(5633), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(5635), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5637), 1, - anon_sym_QMARK, - ACTIONS(5639), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5643), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5645), 1, - anon_sym_map_LBRACK, - STATE(1221), 1, + STATE(4543), 1, sym_plain_type, - STATE(4507), 1, + STATE(4655), 1, sym_reference_expression, - STATE(1164), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1177), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1178), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276853,47 +277479,47 @@ static const uint16_t ts_small_parse_table[] = { [101133] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(3419), 1, sym_identifier, - ACTIONS(559), 1, + ACTIONS(3423), 1, anon_sym_fn, - ACTIONS(563), 1, + ACTIONS(3427), 1, anon_sym_struct, - ACTIONS(573), 1, + ACTIONS(3437), 1, anon_sym_shared, - ACTIONS(577), 1, + ACTIONS(3441), 1, anon_sym_chan, - ACTIONS(579), 1, + ACTIONS(3443), 1, anon_sym_thread, - ACTIONS(581), 1, + ACTIONS(3445), 1, anon_sym_atomic, - ACTIONS(5605), 1, + ACTIONS(5405), 1, anon_sym_LPAREN, - ACTIONS(5607), 1, + ACTIONS(5595), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5597), 1, anon_sym_QMARK, - ACTIONS(5611), 1, + ACTIONS(5599), 1, anon_sym_BANG, - ACTIONS(5613), 1, + ACTIONS(5601), 1, anon_sym_LBRACK2, - ACTIONS(5615), 1, + ACTIONS(5603), 1, anon_sym_AMP, - ACTIONS(5617), 1, + ACTIONS(5605), 1, anon_sym_map_LBRACK, - STATE(862), 1, + STATE(1754), 1, sym_plain_type, - STATE(4460), 1, + STATE(4416), 1, sym_reference_expression, - STATE(521), 2, + STATE(1669), 2, sym_type_reference_expression, sym_qualified_type, - STATE(898), 4, + STATE(1636), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(896), 12, + STATE(1651), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276909,47 +277535,47 @@ static const uint16_t ts_small_parse_table[] = { [101209] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, + ACTIONS(3419), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3423), 1, anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, + ACTIONS(3427), 1, + anon_sym_struct, + ACTIONS(3437), 1, anon_sym_shared, - ACTIONS(3718), 1, - anon_sym_map_LBRACK, - ACTIONS(3720), 1, + ACTIONS(3441), 1, anon_sym_chan, - ACTIONS(3722), 1, + ACTIONS(3443), 1, anon_sym_thread, - ACTIONS(3724), 1, + ACTIONS(3445), 1, anon_sym_atomic, - ACTIONS(5529), 1, + ACTIONS(5405), 1, + anon_sym_LPAREN, + ACTIONS(5595), 1, + anon_sym_STAR, + ACTIONS(5597), 1, anon_sym_QMARK, - ACTIONS(5531), 1, + ACTIONS(5599), 1, anon_sym_BANG, - ACTIONS(5533), 1, + ACTIONS(5601), 1, anon_sym_LBRACK2, - ACTIONS(5535), 1, + ACTIONS(5603), 1, anon_sym_AMP, - STATE(2409), 1, + ACTIONS(5605), 1, + anon_sym_map_LBRACK, + STATE(1689), 1, sym_plain_type, - STATE(4600), 1, + STATE(4416), 1, sym_reference_expression, - STATE(2318), 2, + STATE(1669), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1636), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1651), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276965,47 +277591,47 @@ static const uint16_t ts_small_parse_table[] = { [101285] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(3419), 1, sym_identifier, - ACTIONS(559), 1, + ACTIONS(3423), 1, anon_sym_fn, - ACTIONS(563), 1, + ACTIONS(3427), 1, anon_sym_struct, - ACTIONS(573), 1, + ACTIONS(3437), 1, anon_sym_shared, - ACTIONS(577), 1, + ACTIONS(3441), 1, anon_sym_chan, - ACTIONS(579), 1, + ACTIONS(3443), 1, anon_sym_thread, - ACTIONS(581), 1, + ACTIONS(3445), 1, anon_sym_atomic, - ACTIONS(5605), 1, + ACTIONS(5405), 1, anon_sym_LPAREN, - ACTIONS(5607), 1, + ACTIONS(5595), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5597), 1, anon_sym_QMARK, - ACTIONS(5611), 1, + ACTIONS(5599), 1, anon_sym_BANG, - ACTIONS(5613), 1, + ACTIONS(5601), 1, anon_sym_LBRACK2, - ACTIONS(5615), 1, + ACTIONS(5603), 1, anon_sym_AMP, - ACTIONS(5617), 1, + ACTIONS(5605), 1, anon_sym_map_LBRACK, - STATE(861), 1, + STATE(1688), 1, sym_plain_type, - STATE(4460), 1, + STATE(4416), 1, sym_reference_expression, - STATE(521), 2, + STATE(1669), 2, sym_type_reference_expression, sym_qualified_type, - STATE(898), 4, + STATE(1636), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(896), 12, + STATE(1651), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277021,47 +277647,47 @@ static const uint16_t ts_small_parse_table[] = { [101361] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, + ACTIONS(3419), 1, sym_identifier, - ACTIONS(3351), 1, - anon_sym_LPAREN, - ACTIONS(3353), 1, + ACTIONS(3423), 1, anon_sym_fn, - ACTIONS(3355), 1, - anon_sym_STAR, - ACTIONS(3357), 1, + ACTIONS(3427), 1, anon_sym_struct, - ACTIONS(3367), 1, + ACTIONS(3437), 1, anon_sym_shared, - ACTIONS(3369), 1, - anon_sym_map_LBRACK, - ACTIONS(3371), 1, + ACTIONS(3441), 1, anon_sym_chan, - ACTIONS(3373), 1, + ACTIONS(3443), 1, anon_sym_thread, - ACTIONS(3375), 1, + ACTIONS(3445), 1, anon_sym_atomic, - ACTIONS(5569), 1, + ACTIONS(5405), 1, + anon_sym_LPAREN, + ACTIONS(5595), 1, + anon_sym_STAR, + ACTIONS(5597), 1, anon_sym_QMARK, - ACTIONS(5571), 1, + ACTIONS(5599), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5601), 1, anon_sym_LBRACK2, - ACTIONS(5575), 1, + ACTIONS(5603), 1, anon_sym_AMP, - STATE(1385), 1, + ACTIONS(5605), 1, + anon_sym_map_LBRACK, + STATE(1756), 1, sym_plain_type, - STATE(4423), 1, + STATE(4416), 1, sym_reference_expression, - STATE(1294), 2, + STATE(1669), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1344), 4, + STATE(1636), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1345), 12, + STATE(1651), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277077,47 +277703,47 @@ static const uint16_t ts_small_parse_table[] = { [101437] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3411), 1, + ACTIONS(3549), 1, sym_identifier, - ACTIONS(3415), 1, + ACTIONS(3551), 1, + anon_sym_LPAREN, + ACTIONS(3553), 1, anon_sym_fn, - ACTIONS(3419), 1, + ACTIONS(3557), 1, anon_sym_struct, - ACTIONS(3429), 1, + ACTIONS(3567), 1, anon_sym_shared, - ACTIONS(3433), 1, + ACTIONS(3569), 1, + anon_sym_map_LBRACK, + ACTIONS(3571), 1, anon_sym_chan, - ACTIONS(3435), 1, + ACTIONS(3573), 1, anon_sym_thread, - ACTIONS(3437), 1, + ACTIONS(3575), 1, anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5517), 1, + ACTIONS(5557), 1, anon_sym_STAR, - ACTIONS(5519), 1, + ACTIONS(5559), 1, anon_sym_QMARK, - ACTIONS(5521), 1, + ACTIONS(5561), 1, anon_sym_BANG, - ACTIONS(5523), 1, + ACTIONS(5563), 1, anon_sym_LBRACK2, - ACTIONS(5525), 1, + ACTIONS(5565), 1, anon_sym_AMP, - ACTIONS(5527), 1, - anon_sym_map_LBRACK, - STATE(1636), 1, + STATE(2142), 1, sym_plain_type, - STATE(4409), 1, + STATE(4469), 1, sym_reference_expression, - STATE(1666), 2, + STATE(1930), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1665), 4, + STATE(1946), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1641), 12, + STATE(1947), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277133,47 +277759,47 @@ static const uint16_t ts_small_parse_table[] = { [101513] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(3962), 1, - sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(4676), 1, + sym_plain_type, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277189,47 +277815,47 @@ static const uint16_t ts_small_parse_table[] = { [101589] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3443), 1, + ACTIONS(3549), 1, sym_identifier, - ACTIONS(3447), 1, + ACTIONS(3551), 1, + anon_sym_LPAREN, + ACTIONS(3553), 1, anon_sym_fn, - ACTIONS(3451), 1, + ACTIONS(3557), 1, anon_sym_struct, - ACTIONS(3461), 1, + ACTIONS(3567), 1, anon_sym_shared, - ACTIONS(3465), 1, + ACTIONS(3569), 1, + anon_sym_map_LBRACK, + ACTIONS(3571), 1, anon_sym_chan, - ACTIONS(3467), 1, + ACTIONS(3573), 1, anon_sym_thread, - ACTIONS(3469), 1, + ACTIONS(3575), 1, anon_sym_atomic, - ACTIONS(5577), 1, - anon_sym_LPAREN, - ACTIONS(5579), 1, + ACTIONS(5557), 1, anon_sym_STAR, - ACTIONS(5581), 1, + ACTIONS(5559), 1, anon_sym_QMARK, - ACTIONS(5583), 1, + ACTIONS(5561), 1, anon_sym_BANG, - ACTIONS(5585), 1, + ACTIONS(5563), 1, anon_sym_LBRACK2, - ACTIONS(5587), 1, + ACTIONS(5565), 1, anon_sym_AMP, - ACTIONS(5589), 1, - anon_sym_map_LBRACK, - STATE(1895), 1, + STATE(2122), 1, sym_plain_type, - STATE(4549), 1, + STATE(4469), 1, sym_reference_expression, - STATE(1787), 2, + STATE(1930), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1886), 4, + STATE(1946), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1885), 12, + STATE(1947), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277245,47 +277871,47 @@ static const uint16_t ts_small_parse_table[] = { [101665] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, + ACTIONS(3361), 1, sym_identifier, - ACTIONS(3203), 1, + ACTIONS(3363), 1, + anon_sym_LPAREN, + ACTIONS(3365), 1, anon_sym_fn, - ACTIONS(3207), 1, + ACTIONS(3367), 1, + anon_sym_STAR, + ACTIONS(3369), 1, anon_sym_struct, - ACTIONS(3217), 1, + ACTIONS(3379), 1, anon_sym_shared, - ACTIONS(3221), 1, + ACTIONS(3381), 1, + anon_sym_map_LBRACK, + ACTIONS(3383), 1, anon_sym_chan, - ACTIONS(3223), 1, + ACTIONS(3385), 1, anon_sym_thread, - ACTIONS(3225), 1, + ACTIONS(3387), 1, anon_sym_atomic, - ACTIONS(5619), 1, - anon_sym_LPAREN, - ACTIONS(5621), 1, - anon_sym_STAR, - ACTIONS(5623), 1, + ACTIONS(5549), 1, anon_sym_QMARK, - ACTIONS(5625), 1, + ACTIONS(5551), 1, anon_sym_BANG, - ACTIONS(5627), 1, + ACTIONS(5553), 1, anon_sym_LBRACK2, - ACTIONS(5629), 1, + ACTIONS(5555), 1, anon_sym_AMP, - ACTIONS(5631), 1, - anon_sym_map_LBRACK, - STATE(3435), 1, + STATE(1335), 1, sym_plain_type, - STATE(4416), 1, + STATE(4427), 1, sym_reference_expression, - STATE(3390), 2, + STATE(1303), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3442), 4, + STATE(1347), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3438), 12, + STATE(1406), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277301,47 +277927,47 @@ static const uint16_t ts_small_parse_table[] = { [101741] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4274), 1, + ACTIONS(3361), 1, sym_identifier, - ACTIONS(4276), 1, + ACTIONS(3363), 1, anon_sym_LPAREN, - ACTIONS(4278), 1, + ACTIONS(3365), 1, anon_sym_fn, - ACTIONS(4280), 1, + ACTIONS(3367), 1, anon_sym_STAR, - ACTIONS(4282), 1, + ACTIONS(3369), 1, anon_sym_struct, - ACTIONS(4292), 1, + ACTIONS(3379), 1, anon_sym_shared, - ACTIONS(4294), 1, + ACTIONS(3381), 1, anon_sym_map_LBRACK, - ACTIONS(4296), 1, + ACTIONS(3383), 1, anon_sym_chan, - ACTIONS(4298), 1, + ACTIONS(3385), 1, anon_sym_thread, - ACTIONS(4300), 1, + ACTIONS(3387), 1, anon_sym_atomic, - ACTIONS(5547), 1, - anon_sym_QMARK, ACTIONS(5549), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5551), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5553), 1, + anon_sym_LBRACK2, + ACTIONS(5555), 1, anon_sym_AMP, - STATE(2781), 1, + STATE(1336), 1, sym_plain_type, - STATE(4574), 1, + STATE(4427), 1, sym_reference_expression, - STATE(2635), 2, + STATE(1303), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2723), 4, + STATE(1347), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2724), 12, + STATE(1406), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277357,47 +277983,47 @@ static const uint16_t ts_small_parse_table[] = { [101817] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, + ACTIONS(3449), 1, sym_identifier, - ACTIONS(3203), 1, + ACTIONS(3453), 1, anon_sym_fn, - ACTIONS(3207), 1, + ACTIONS(3457), 1, anon_sym_struct, - ACTIONS(3217), 1, + ACTIONS(3467), 1, anon_sym_shared, - ACTIONS(3221), 1, + ACTIONS(3471), 1, anon_sym_chan, - ACTIONS(3223), 1, + ACTIONS(3473), 1, anon_sym_thread, - ACTIONS(3225), 1, + ACTIONS(3475), 1, anon_sym_atomic, - ACTIONS(5619), 1, + ACTIONS(5581), 1, anon_sym_LPAREN, - ACTIONS(5621), 1, + ACTIONS(5583), 1, anon_sym_STAR, - ACTIONS(5623), 1, + ACTIONS(5585), 1, anon_sym_QMARK, - ACTIONS(5625), 1, + ACTIONS(5587), 1, anon_sym_BANG, - ACTIONS(5627), 1, + ACTIONS(5589), 1, anon_sym_LBRACK2, - ACTIONS(5629), 1, + ACTIONS(5591), 1, anon_sym_AMP, - ACTIONS(5631), 1, + ACTIONS(5593), 1, anon_sym_map_LBRACK, - STATE(3418), 1, + STATE(1807), 1, sym_plain_type, - STATE(4416), 1, + STATE(4553), 1, sym_reference_expression, - STATE(3390), 2, + STATE(1773), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3442), 4, + STATE(1811), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3438), 12, + STATE(1810), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277413,47 +278039,47 @@ static const uint16_t ts_small_parse_table[] = { [101893] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4274), 1, + ACTIONS(3361), 1, sym_identifier, - ACTIONS(4276), 1, + ACTIONS(3363), 1, anon_sym_LPAREN, - ACTIONS(4278), 1, + ACTIONS(3365), 1, anon_sym_fn, - ACTIONS(4280), 1, + ACTIONS(3367), 1, anon_sym_STAR, - ACTIONS(4282), 1, + ACTIONS(3369), 1, anon_sym_struct, - ACTIONS(4292), 1, + ACTIONS(3379), 1, anon_sym_shared, - ACTIONS(4294), 1, + ACTIONS(3381), 1, anon_sym_map_LBRACK, - ACTIONS(4296), 1, + ACTIONS(3383), 1, anon_sym_chan, - ACTIONS(4298), 1, + ACTIONS(3385), 1, anon_sym_thread, - ACTIONS(4300), 1, + ACTIONS(3387), 1, anon_sym_atomic, - ACTIONS(5547), 1, - anon_sym_QMARK, ACTIONS(5549), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5551), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5553), 1, + anon_sym_LBRACK2, + ACTIONS(5555), 1, anon_sym_AMP, - STATE(2789), 1, + STATE(1358), 1, sym_plain_type, - STATE(4574), 1, + STATE(4427), 1, sym_reference_expression, - STATE(2635), 2, + STATE(1303), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2723), 4, + STATE(1347), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2724), 12, + STATE(1406), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277469,47 +278095,47 @@ static const uint16_t ts_small_parse_table[] = { [101969] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4274), 1, + ACTIONS(3449), 1, sym_identifier, - ACTIONS(4276), 1, - anon_sym_LPAREN, - ACTIONS(4278), 1, + ACTIONS(3453), 1, anon_sym_fn, - ACTIONS(4280), 1, - anon_sym_STAR, - ACTIONS(4282), 1, + ACTIONS(3457), 1, anon_sym_struct, - ACTIONS(4292), 1, + ACTIONS(3467), 1, anon_sym_shared, - ACTIONS(4294), 1, - anon_sym_map_LBRACK, - ACTIONS(4296), 1, + ACTIONS(3471), 1, anon_sym_chan, - ACTIONS(4298), 1, + ACTIONS(3473), 1, anon_sym_thread, - ACTIONS(4300), 1, + ACTIONS(3475), 1, anon_sym_atomic, - ACTIONS(5547), 1, + ACTIONS(5581), 1, + anon_sym_LPAREN, + ACTIONS(5583), 1, + anon_sym_STAR, + ACTIONS(5585), 1, anon_sym_QMARK, - ACTIONS(5549), 1, + ACTIONS(5587), 1, anon_sym_BANG, - ACTIONS(5551), 1, + ACTIONS(5589), 1, anon_sym_LBRACK2, - ACTIONS(5553), 1, + ACTIONS(5591), 1, anon_sym_AMP, - STATE(2790), 1, + ACTIONS(5593), 1, + anon_sym_map_LBRACK, + STATE(1859), 1, sym_plain_type, - STATE(4574), 1, + STATE(4553), 1, sym_reference_expression, - STATE(2635), 2, + STATE(1773), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2723), 4, + STATE(1811), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2724), 12, + STATE(1810), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277525,47 +278151,47 @@ static const uint16_t ts_small_parse_table[] = { [102045] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, + ACTIONS(3549), 1, sym_identifier, - ACTIONS(3203), 1, + ACTIONS(3551), 1, + anon_sym_LPAREN, + ACTIONS(3553), 1, anon_sym_fn, - ACTIONS(3207), 1, + ACTIONS(3557), 1, anon_sym_struct, - ACTIONS(3217), 1, + ACTIONS(3567), 1, anon_sym_shared, - ACTIONS(3221), 1, + ACTIONS(3569), 1, + anon_sym_map_LBRACK, + ACTIONS(3571), 1, anon_sym_chan, - ACTIONS(3223), 1, + ACTIONS(3573), 1, anon_sym_thread, - ACTIONS(3225), 1, + ACTIONS(3575), 1, anon_sym_atomic, - ACTIONS(5619), 1, - anon_sym_LPAREN, - ACTIONS(5621), 1, + ACTIONS(5557), 1, anon_sym_STAR, - ACTIONS(5623), 1, + ACTIONS(5559), 1, anon_sym_QMARK, - ACTIONS(5625), 1, + ACTIONS(5561), 1, anon_sym_BANG, - ACTIONS(5627), 1, + ACTIONS(5563), 1, anon_sym_LBRACK2, - ACTIONS(5629), 1, + ACTIONS(5565), 1, anon_sym_AMP, - ACTIONS(5631), 1, - anon_sym_map_LBRACK, - STATE(3431), 1, + STATE(1984), 1, sym_plain_type, - STATE(4416), 1, + STATE(4469), 1, sym_reference_expression, - STATE(3390), 2, + STATE(1930), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3442), 4, + STATE(1946), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3438), 12, + STATE(1947), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277581,47 +278207,47 @@ static const uint16_t ts_small_parse_table[] = { [102121] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, + ACTIONS(3763), 1, sym_identifier, - ACTIONS(3203), 1, + ACTIONS(3767), 1, anon_sym_fn, - ACTIONS(3207), 1, + ACTIONS(3771), 1, anon_sym_struct, - ACTIONS(3217), 1, + ACTIONS(3781), 1, anon_sym_shared, - ACTIONS(3221), 1, + ACTIONS(3785), 1, anon_sym_chan, - ACTIONS(3223), 1, + ACTIONS(3787), 1, anon_sym_thread, - ACTIONS(3225), 1, + ACTIONS(3789), 1, anon_sym_atomic, - ACTIONS(5619), 1, + ACTIONS(5607), 1, anon_sym_LPAREN, - ACTIONS(5621), 1, + ACTIONS(5609), 1, anon_sym_STAR, - ACTIONS(5623), 1, + ACTIONS(5611), 1, anon_sym_QMARK, - ACTIONS(5625), 1, + ACTIONS(5613), 1, anon_sym_BANG, - ACTIONS(5627), 1, + ACTIONS(5615), 1, anon_sym_LBRACK2, - ACTIONS(5629), 1, + ACTIONS(5617), 1, anon_sym_AMP, - ACTIONS(5631), 1, + ACTIONS(5619), 1, anon_sym_map_LBRACK, - STATE(3425), 1, + STATE(2502), 1, sym_plain_type, - STATE(4416), 1, + STATE(4490), 1, sym_reference_expression, - STATE(3390), 2, + STATE(2453), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3442), 4, + STATE(2587), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3438), 12, + STATE(2535), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277637,47 +278263,47 @@ static const uint16_t ts_small_parse_table[] = { [102197] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3411), 1, + ACTIONS(559), 1, sym_identifier, - ACTIONS(3415), 1, + ACTIONS(565), 1, anon_sym_fn, - ACTIONS(3419), 1, + ACTIONS(569), 1, anon_sym_struct, - ACTIONS(3429), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3433), 1, + ACTIONS(583), 1, anon_sym_chan, - ACTIONS(3435), 1, + ACTIONS(585), 1, anon_sym_thread, - ACTIONS(3437), 1, + ACTIONS(587), 1, anon_sym_atomic, - ACTIONS(5399), 1, + ACTIONS(5507), 1, anon_sym_LPAREN, - ACTIONS(5517), 1, + ACTIONS(5509), 1, anon_sym_STAR, - ACTIONS(5519), 1, + ACTIONS(5511), 1, anon_sym_QMARK, - ACTIONS(5521), 1, + ACTIONS(5513), 1, anon_sym_BANG, - ACTIONS(5523), 1, + ACTIONS(5515), 1, anon_sym_LBRACK2, - ACTIONS(5525), 1, + ACTIONS(5517), 1, anon_sym_AMP, - ACTIONS(5527), 1, + ACTIONS(5519), 1, anon_sym_map_LBRACK, - STATE(1635), 1, + STATE(914), 1, sym_plain_type, - STATE(4409), 1, + STATE(4438), 1, sym_reference_expression, - STATE(1666), 2, + STATE(618), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1665), 4, + STATE(941), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1641), 12, + STATE(940), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277693,47 +278319,47 @@ static const uint16_t ts_small_parse_table[] = { [102273] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, + ACTIONS(559), 1, sym_identifier, - ACTIONS(3203), 1, + ACTIONS(565), 1, anon_sym_fn, - ACTIONS(3207), 1, + ACTIONS(569), 1, anon_sym_struct, - ACTIONS(3217), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3221), 1, + ACTIONS(583), 1, anon_sym_chan, - ACTIONS(3223), 1, + ACTIONS(585), 1, anon_sym_thread, - ACTIONS(3225), 1, + ACTIONS(587), 1, anon_sym_atomic, - ACTIONS(5619), 1, + ACTIONS(5507), 1, anon_sym_LPAREN, - ACTIONS(5621), 1, + ACTIONS(5509), 1, anon_sym_STAR, - ACTIONS(5623), 1, + ACTIONS(5511), 1, anon_sym_QMARK, - ACTIONS(5625), 1, + ACTIONS(5513), 1, anon_sym_BANG, - ACTIONS(5627), 1, + ACTIONS(5515), 1, anon_sym_LBRACK2, - ACTIONS(5629), 1, + ACTIONS(5517), 1, anon_sym_AMP, - ACTIONS(5631), 1, + ACTIONS(5519), 1, anon_sym_map_LBRACK, - STATE(3419), 1, + STATE(918), 1, sym_plain_type, - STATE(4416), 1, + STATE(4438), 1, sym_reference_expression, - STATE(3390), 2, + STATE(618), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3442), 4, + STATE(941), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3438), 12, + STATE(940), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277749,47 +278375,47 @@ static const uint16_t ts_small_parse_table[] = { [102349] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, sym_identifier, - ACTIONS(3203), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(3207), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(3217), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3221), 1, - anon_sym_chan, - ACTIONS(3223), 1, - anon_sym_thread, - ACTIONS(3225), 1, - anon_sym_atomic, - ACTIONS(5619), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(5621), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5623), 1, - anon_sym_QMARK, - ACTIONS(5625), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5627), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5629), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5631), 1, - anon_sym_map_LBRACK, - STATE(3433), 1, + STATE(4642), 1, sym_plain_type, - STATE(4416), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3390), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3442), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3438), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277805,47 +278431,47 @@ static const uint16_t ts_small_parse_table[] = { [102425] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3443), 1, + ACTIONS(3763), 1, sym_identifier, - ACTIONS(3447), 1, + ACTIONS(3767), 1, anon_sym_fn, - ACTIONS(3451), 1, + ACTIONS(3771), 1, anon_sym_struct, - ACTIONS(3461), 1, + ACTIONS(3781), 1, anon_sym_shared, - ACTIONS(3465), 1, + ACTIONS(3785), 1, anon_sym_chan, - ACTIONS(3467), 1, + ACTIONS(3787), 1, anon_sym_thread, - ACTIONS(3469), 1, + ACTIONS(3789), 1, anon_sym_atomic, - ACTIONS(5577), 1, + ACTIONS(5607), 1, anon_sym_LPAREN, - ACTIONS(5579), 1, + ACTIONS(5609), 1, anon_sym_STAR, - ACTIONS(5581), 1, + ACTIONS(5611), 1, anon_sym_QMARK, - ACTIONS(5583), 1, + ACTIONS(5613), 1, anon_sym_BANG, - ACTIONS(5585), 1, + ACTIONS(5615), 1, anon_sym_LBRACK2, - ACTIONS(5587), 1, + ACTIONS(5617), 1, anon_sym_AMP, - ACTIONS(5589), 1, + ACTIONS(5619), 1, anon_sym_map_LBRACK, - STATE(1896), 1, + STATE(2501), 1, sym_plain_type, - STATE(4549), 1, + STATE(4490), 1, sym_reference_expression, - STATE(1787), 2, + STATE(2453), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1886), 4, + STATE(2587), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1885), 12, + STATE(2535), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277861,47 +278487,47 @@ static const uint16_t ts_small_parse_table[] = { [102501] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3411), 1, + ACTIONS(3763), 1, sym_identifier, - ACTIONS(3415), 1, + ACTIONS(3767), 1, anon_sym_fn, - ACTIONS(3419), 1, + ACTIONS(3771), 1, anon_sym_struct, - ACTIONS(3429), 1, + ACTIONS(3781), 1, anon_sym_shared, - ACTIONS(3433), 1, + ACTIONS(3785), 1, anon_sym_chan, - ACTIONS(3435), 1, + ACTIONS(3787), 1, anon_sym_thread, - ACTIONS(3437), 1, + ACTIONS(3789), 1, anon_sym_atomic, - ACTIONS(5399), 1, + ACTIONS(5607), 1, anon_sym_LPAREN, - ACTIONS(5517), 1, + ACTIONS(5609), 1, anon_sym_STAR, - ACTIONS(5519), 1, + ACTIONS(5611), 1, anon_sym_QMARK, - ACTIONS(5521), 1, + ACTIONS(5613), 1, anon_sym_BANG, - ACTIONS(5523), 1, + ACTIONS(5615), 1, anon_sym_LBRACK2, - ACTIONS(5525), 1, + ACTIONS(5617), 1, anon_sym_AMP, - ACTIONS(5527), 1, + ACTIONS(5619), 1, anon_sym_map_LBRACK, - STATE(1639), 1, + STATE(2500), 1, sym_plain_type, - STATE(4409), 1, + STATE(4490), 1, sym_reference_expression, - STATE(1666), 2, + STATE(2453), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1665), 4, + STATE(2587), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1641), 12, + STATE(2535), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277917,47 +278543,47 @@ static const uint16_t ts_small_parse_table[] = { [102577] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3549), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(3551), 1, + anon_sym_LPAREN, + ACTIONS(3553), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3557), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(3567), 1, anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3569), 1, + anon_sym_map_LBRACK, + ACTIONS(3571), 1, + anon_sym_chan, + ACTIONS(3573), 1, + anon_sym_thread, + ACTIONS(3575), 1, + anon_sym_atomic, + ACTIONS(5557), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5559), 1, + anon_sym_QMARK, + ACTIONS(5561), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5563), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5565), 1, anon_sym_AMP, - STATE(4600), 1, - sym_reference_expression, - STATE(4700), 1, + STATE(1985), 1, sym_plain_type, - STATE(3581), 2, + STATE(4469), 1, + sym_reference_expression, + STATE(1930), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1946), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1947), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277973,47 +278599,47 @@ static const uint16_t ts_small_parse_table[] = { [102653] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3411), 1, + ACTIONS(3361), 1, sym_identifier, - ACTIONS(3415), 1, + ACTIONS(3363), 1, + anon_sym_LPAREN, + ACTIONS(3365), 1, anon_sym_fn, - ACTIONS(3419), 1, + ACTIONS(3367), 1, + anon_sym_STAR, + ACTIONS(3369), 1, anon_sym_struct, - ACTIONS(3429), 1, + ACTIONS(3379), 1, anon_sym_shared, - ACTIONS(3433), 1, + ACTIONS(3381), 1, + anon_sym_map_LBRACK, + ACTIONS(3383), 1, anon_sym_chan, - ACTIONS(3435), 1, + ACTIONS(3385), 1, anon_sym_thread, - ACTIONS(3437), 1, + ACTIONS(3387), 1, anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5517), 1, - anon_sym_STAR, - ACTIONS(5519), 1, + ACTIONS(5549), 1, anon_sym_QMARK, - ACTIONS(5521), 1, + ACTIONS(5551), 1, anon_sym_BANG, - ACTIONS(5523), 1, + ACTIONS(5553), 1, anon_sym_LBRACK2, - ACTIONS(5525), 1, + ACTIONS(5555), 1, anon_sym_AMP, - ACTIONS(5527), 1, - anon_sym_map_LBRACK, - STATE(1660), 1, + STATE(1360), 1, sym_plain_type, - STATE(4409), 1, + STATE(4427), 1, sym_reference_expression, - STATE(1666), 2, + STATE(1303), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1665), 4, + STATE(1347), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1641), 12, + STATE(1406), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278029,47 +278655,47 @@ static const uint16_t ts_small_parse_table[] = { [102729] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3277), 1, + ACTIONS(3389), 1, sym_identifier, - ACTIONS(3281), 1, + ACTIONS(3393), 1, anon_sym_fn, - ACTIONS(3285), 1, + ACTIONS(3397), 1, anon_sym_struct, - ACTIONS(3295), 1, + ACTIONS(3407), 1, anon_sym_shared, - ACTIONS(3299), 1, + ACTIONS(3411), 1, anon_sym_chan, - ACTIONS(3301), 1, + ACTIONS(3413), 1, anon_sym_thread, - ACTIONS(3303), 1, + ACTIONS(3415), 1, anon_sym_atomic, - ACTIONS(5633), 1, + ACTIONS(5421), 1, anon_sym_LPAREN, - ACTIONS(5635), 1, + ACTIONS(5425), 1, anon_sym_STAR, - ACTIONS(5637), 1, + ACTIONS(5427), 1, anon_sym_QMARK, - ACTIONS(5639), 1, + ACTIONS(5429), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5431), 1, anon_sym_LBRACK2, - ACTIONS(5643), 1, + ACTIONS(5433), 1, anon_sym_AMP, - ACTIONS(5645), 1, + ACTIONS(5435), 1, anon_sym_map_LBRACK, - STATE(1165), 1, + STATE(1447), 1, sym_plain_type, - STATE(4507), 1, + STATE(4462), 1, sym_reference_expression, - STATE(1164), 2, + STATE(1415), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1177), 4, + STATE(1479), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1178), 12, + STATE(1481), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278085,47 +278711,47 @@ static const uint16_t ts_small_parse_table[] = { [102805] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3277), 1, + ACTIONS(4280), 1, sym_identifier, - ACTIONS(3281), 1, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(4284), 1, anon_sym_fn, - ACTIONS(3285), 1, + ACTIONS(4286), 1, + anon_sym_STAR, + ACTIONS(4288), 1, anon_sym_struct, - ACTIONS(3295), 1, + ACTIONS(4298), 1, anon_sym_shared, - ACTIONS(3299), 1, + ACTIONS(4300), 1, + anon_sym_map_LBRACK, + ACTIONS(4302), 1, anon_sym_chan, - ACTIONS(3301), 1, + ACTIONS(4304), 1, anon_sym_thread, - ACTIONS(3303), 1, + ACTIONS(4306), 1, anon_sym_atomic, - ACTIONS(5633), 1, - anon_sym_LPAREN, - ACTIONS(5635), 1, - anon_sym_STAR, - ACTIONS(5637), 1, + ACTIONS(5621), 1, anon_sym_QMARK, - ACTIONS(5639), 1, + ACTIONS(5623), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5625), 1, anon_sym_LBRACK2, - ACTIONS(5643), 1, + ACTIONS(5627), 1, anon_sym_AMP, - ACTIONS(5645), 1, - anon_sym_map_LBRACK, - STATE(1216), 1, + STATE(2597), 1, sym_plain_type, - STATE(4507), 1, + STATE(4578), 1, sym_reference_expression, - STATE(1164), 2, + STATE(2667), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1177), 4, + STATE(2727), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1178), 12, + STATE(2728), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278141,47 +278767,47 @@ static const uint16_t ts_small_parse_table[] = { [102881] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, + ACTIONS(4280), 1, sym_identifier, - ACTIONS(3529), 1, + ACTIONS(4282), 1, anon_sym_LPAREN, - ACTIONS(3531), 1, + ACTIONS(4284), 1, anon_sym_fn, - ACTIONS(3535), 1, + ACTIONS(4286), 1, + anon_sym_STAR, + ACTIONS(4288), 1, anon_sym_struct, - ACTIONS(3545), 1, + ACTIONS(4298), 1, anon_sym_shared, - ACTIONS(3547), 1, + ACTIONS(4300), 1, anon_sym_map_LBRACK, - ACTIONS(3549), 1, + ACTIONS(4302), 1, anon_sym_chan, - ACTIONS(3551), 1, + ACTIONS(4304), 1, anon_sym_thread, - ACTIONS(3553), 1, + ACTIONS(4306), 1, anon_sym_atomic, - ACTIONS(5507), 1, - anon_sym_STAR, - ACTIONS(5509), 1, + ACTIONS(5621), 1, anon_sym_QMARK, - ACTIONS(5511), 1, + ACTIONS(5623), 1, anon_sym_BANG, - ACTIONS(5513), 1, + ACTIONS(5625), 1, anon_sym_LBRACK2, - ACTIONS(5515), 1, + ACTIONS(5627), 1, anon_sym_AMP, - STATE(1966), 1, + STATE(2599), 1, sym_plain_type, - STATE(4528), 1, + STATE(4578), 1, sym_reference_expression, - STATE(1923), 2, + STATE(2667), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2020), 4, + STATE(2727), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1942), 12, + STATE(2728), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278197,47 +278823,47 @@ static const uint16_t ts_small_parse_table[] = { [102957] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, + ACTIONS(3763), 1, sym_identifier, - ACTIONS(3529), 1, - anon_sym_LPAREN, - ACTIONS(3531), 1, + ACTIONS(3767), 1, anon_sym_fn, - ACTIONS(3535), 1, + ACTIONS(3771), 1, anon_sym_struct, - ACTIONS(3545), 1, + ACTIONS(3781), 1, anon_sym_shared, - ACTIONS(3547), 1, - anon_sym_map_LBRACK, - ACTIONS(3549), 1, + ACTIONS(3785), 1, anon_sym_chan, - ACTIONS(3551), 1, + ACTIONS(3787), 1, anon_sym_thread, - ACTIONS(3553), 1, + ACTIONS(3789), 1, anon_sym_atomic, - ACTIONS(5507), 1, + ACTIONS(5607), 1, + anon_sym_LPAREN, + ACTIONS(5609), 1, anon_sym_STAR, - ACTIONS(5509), 1, + ACTIONS(5611), 1, anon_sym_QMARK, - ACTIONS(5511), 1, + ACTIONS(5613), 1, anon_sym_BANG, - ACTIONS(5513), 1, + ACTIONS(5615), 1, anon_sym_LBRACK2, - ACTIONS(5515), 1, + ACTIONS(5617), 1, anon_sym_AMP, - STATE(1958), 1, + ACTIONS(5619), 1, + anon_sym_map_LBRACK, + STATE(2533), 1, sym_plain_type, - STATE(4528), 1, + STATE(4490), 1, sym_reference_expression, - STATE(1923), 2, + STATE(2453), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2020), 4, + STATE(2587), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1942), 12, + STATE(2535), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278253,47 +278879,47 @@ static const uint16_t ts_small_parse_table[] = { [103033] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(3763), 1, sym_identifier, - ACTIONS(559), 1, + ACTIONS(3767), 1, anon_sym_fn, - ACTIONS(563), 1, + ACTIONS(3771), 1, anon_sym_struct, - ACTIONS(573), 1, + ACTIONS(3781), 1, anon_sym_shared, - ACTIONS(577), 1, + ACTIONS(3785), 1, anon_sym_chan, - ACTIONS(579), 1, + ACTIONS(3787), 1, anon_sym_thread, - ACTIONS(581), 1, + ACTIONS(3789), 1, anon_sym_atomic, - ACTIONS(5605), 1, - anon_sym_LPAREN, ACTIONS(5607), 1, - anon_sym_STAR, + anon_sym_LPAREN, ACTIONS(5609), 1, - anon_sym_QMARK, + anon_sym_STAR, ACTIONS(5611), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5613), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5615), 1, - anon_sym_AMP, + anon_sym_LBRACK2, ACTIONS(5617), 1, + anon_sym_AMP, + ACTIONS(5619), 1, anon_sym_map_LBRACK, - STATE(886), 1, + STATE(2505), 1, sym_plain_type, - STATE(4460), 1, + STATE(4490), 1, sym_reference_expression, - STATE(521), 2, + STATE(2453), 2, sym_type_reference_expression, sym_qualified_type, - STATE(898), 4, + STATE(2587), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(896), 12, + STATE(2535), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278309,47 +278935,47 @@ static const uint16_t ts_small_parse_table[] = { [103109] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(3673), 1, sym_identifier, - ACTIONS(559), 1, + ACTIONS(3677), 1, anon_sym_fn, - ACTIONS(563), 1, + ACTIONS(3681), 1, anon_sym_struct, - ACTIONS(573), 1, + ACTIONS(3691), 1, anon_sym_shared, - ACTIONS(577), 1, + ACTIONS(3695), 1, anon_sym_chan, - ACTIONS(579), 1, + ACTIONS(3697), 1, anon_sym_thread, - ACTIONS(581), 1, + ACTIONS(3699), 1, anon_sym_atomic, - ACTIONS(5605), 1, + ACTIONS(5521), 1, anon_sym_LPAREN, - ACTIONS(5607), 1, + ACTIONS(5523), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5525), 1, anon_sym_QMARK, - ACTIONS(5611), 1, + ACTIONS(5527), 1, anon_sym_BANG, - ACTIONS(5613), 1, + ACTIONS(5529), 1, anon_sym_LBRACK2, - ACTIONS(5615), 1, + ACTIONS(5531), 1, anon_sym_AMP, - ACTIONS(5617), 1, + ACTIONS(5533), 1, anon_sym_map_LBRACK, - STATE(881), 1, + STATE(2235), 1, sym_plain_type, - STATE(4460), 1, + STATE(4570), 1, sym_reference_expression, - STATE(521), 2, + STATE(2164), 2, sym_type_reference_expression, sym_qualified_type, - STATE(898), 4, + STATE(2191), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(896), 12, + STATE(2192), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278365,47 +278991,47 @@ static const uint16_t ts_small_parse_table[] = { [103185] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3383), 1, + ACTIONS(559), 1, sym_identifier, - ACTIONS(3387), 1, + ACTIONS(565), 1, anon_sym_fn, - ACTIONS(3391), 1, + ACTIONS(569), 1, anon_sym_struct, - ACTIONS(3401), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3405), 1, + ACTIONS(583), 1, anon_sym_chan, - ACTIONS(3407), 1, + ACTIONS(585), 1, anon_sym_thread, - ACTIONS(3409), 1, + ACTIONS(587), 1, anon_sym_atomic, - ACTIONS(5415), 1, + ACTIONS(5507), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, + ACTIONS(5509), 1, anon_sym_STAR, - ACTIONS(5421), 1, + ACTIONS(5511), 1, anon_sym_QMARK, - ACTIONS(5423), 1, + ACTIONS(5513), 1, anon_sym_BANG, - ACTIONS(5425), 1, + ACTIONS(5515), 1, anon_sym_LBRACK2, - ACTIONS(5427), 1, + ACTIONS(5517), 1, anon_sym_AMP, - ACTIONS(5429), 1, + ACTIONS(5519), 1, anon_sym_map_LBRACK, - STATE(1470), 1, + STATE(915), 1, sym_plain_type, - STATE(4515), 1, + STATE(4438), 1, sym_reference_expression, - STATE(1411), 2, + STATE(618), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1465), 4, + STATE(941), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1427), 12, + STATE(940), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278421,47 +279047,47 @@ static const uint16_t ts_small_parse_table[] = { [103261] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3383), 1, + ACTIONS(3449), 1, sym_identifier, - ACTIONS(3387), 1, + ACTIONS(3453), 1, anon_sym_fn, - ACTIONS(3391), 1, + ACTIONS(3457), 1, anon_sym_struct, - ACTIONS(3401), 1, + ACTIONS(3467), 1, anon_sym_shared, - ACTIONS(3405), 1, + ACTIONS(3471), 1, anon_sym_chan, - ACTIONS(3407), 1, + ACTIONS(3473), 1, anon_sym_thread, - ACTIONS(3409), 1, + ACTIONS(3475), 1, anon_sym_atomic, - ACTIONS(5415), 1, + ACTIONS(5581), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, + ACTIONS(5583), 1, anon_sym_STAR, - ACTIONS(5421), 1, + ACTIONS(5585), 1, anon_sym_QMARK, - ACTIONS(5423), 1, + ACTIONS(5587), 1, anon_sym_BANG, - ACTIONS(5425), 1, + ACTIONS(5589), 1, anon_sym_LBRACK2, - ACTIONS(5427), 1, + ACTIONS(5591), 1, anon_sym_AMP, - ACTIONS(5429), 1, + ACTIONS(5593), 1, anon_sym_map_LBRACK, - STATE(1483), 1, + STATE(1886), 1, sym_plain_type, - STATE(4515), 1, + STATE(4553), 1, sym_reference_expression, - STATE(1411), 2, + STATE(1773), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1465), 4, + STATE(1811), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1427), 12, + STATE(1810), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278477,47 +279103,47 @@ static const uint16_t ts_small_parse_table[] = { [103337] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3383), 1, + ACTIONS(3449), 1, sym_identifier, - ACTIONS(3387), 1, + ACTIONS(3453), 1, anon_sym_fn, - ACTIONS(3391), 1, + ACTIONS(3457), 1, anon_sym_struct, - ACTIONS(3401), 1, + ACTIONS(3467), 1, anon_sym_shared, - ACTIONS(3405), 1, + ACTIONS(3471), 1, anon_sym_chan, - ACTIONS(3407), 1, + ACTIONS(3473), 1, anon_sym_thread, - ACTIONS(3409), 1, + ACTIONS(3475), 1, anon_sym_atomic, - ACTIONS(5415), 1, + ACTIONS(5581), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, + ACTIONS(5583), 1, anon_sym_STAR, - ACTIONS(5421), 1, + ACTIONS(5585), 1, anon_sym_QMARK, - ACTIONS(5423), 1, + ACTIONS(5587), 1, anon_sym_BANG, - ACTIONS(5425), 1, + ACTIONS(5589), 1, anon_sym_LBRACK2, - ACTIONS(5427), 1, + ACTIONS(5591), 1, anon_sym_AMP, - ACTIONS(5429), 1, + ACTIONS(5593), 1, anon_sym_map_LBRACK, - STATE(1467), 1, + STATE(1857), 1, sym_plain_type, - STATE(4515), 1, + STATE(4553), 1, sym_reference_expression, - STATE(1411), 2, + STATE(1773), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1465), 4, + STATE(1811), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1427), 12, + STATE(1810), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278533,47 +279159,47 @@ static const uint16_t ts_small_parse_table[] = { [103413] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3383), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, sym_identifier, - ACTIONS(3387), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(3391), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(3401), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3405), 1, - anon_sym_chan, - ACTIONS(3407), 1, - anon_sym_thread, - ACTIONS(3409), 1, - anon_sym_atomic, - ACTIONS(5415), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5421), 1, - anon_sym_QMARK, - ACTIONS(5423), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5425), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5427), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5429), 1, - anon_sym_map_LBRACK, - STATE(1469), 1, + STATE(4608), 1, sym_plain_type, - STATE(4515), 1, + STATE(4655), 1, sym_reference_expression, - STATE(1411), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1465), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1427), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278589,47 +279215,47 @@ static const uint16_t ts_small_parse_table[] = { [103489] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3730), 1, + ACTIONS(3205), 1, sym_identifier, - ACTIONS(3734), 1, - anon_sym_fn, - ACTIONS(3738), 1, + ACTIONS(3427), 1, anon_sym_struct, - ACTIONS(3748), 1, + ACTIONS(5327), 1, + anon_sym_fn, + ACTIONS(5339), 1, anon_sym_shared, - ACTIONS(3752), 1, + ACTIONS(5343), 1, anon_sym_chan, - ACTIONS(3754), 1, + ACTIONS(5345), 1, anon_sym_thread, - ACTIONS(3756), 1, + ACTIONS(5347), 1, anon_sym_atomic, - ACTIONS(5493), 1, + ACTIONS(5405), 1, anon_sym_LPAREN, - ACTIONS(5495), 1, + ACTIONS(5409), 1, anon_sym_STAR, - ACTIONS(5497), 1, + ACTIONS(5411), 1, anon_sym_QMARK, - ACTIONS(5499), 1, + ACTIONS(5413), 1, anon_sym_BANG, - ACTIONS(5501), 1, + ACTIONS(5415), 1, anon_sym_LBRACK2, - ACTIONS(5503), 1, + ACTIONS(5417), 1, anon_sym_AMP, - ACTIONS(5505), 1, + ACTIONS(5419), 1, anon_sym_map_LBRACK, - STATE(2474), 1, + STATE(1672), 1, sym_plain_type, - STATE(4486), 1, + STATE(4425), 1, sym_reference_expression, - STATE(2457), 2, + STATE(3388), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2570), 4, + STATE(1636), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2569), 12, + STATE(1651), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278645,47 +279271,47 @@ static const uint16_t ts_small_parse_table[] = { [103565] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3411), 1, + ACTIONS(559), 1, sym_identifier, - ACTIONS(3415), 1, + ACTIONS(565), 1, anon_sym_fn, - ACTIONS(3419), 1, + ACTIONS(569), 1, anon_sym_struct, - ACTIONS(3429), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3433), 1, + ACTIONS(583), 1, anon_sym_chan, - ACTIONS(3435), 1, + ACTIONS(585), 1, anon_sym_thread, - ACTIONS(3437), 1, + ACTIONS(587), 1, anon_sym_atomic, - ACTIONS(5399), 1, + ACTIONS(5507), 1, anon_sym_LPAREN, - ACTIONS(5517), 1, + ACTIONS(5509), 1, anon_sym_STAR, - ACTIONS(5519), 1, + ACTIONS(5511), 1, anon_sym_QMARK, - ACTIONS(5521), 1, + ACTIONS(5513), 1, anon_sym_BANG, - ACTIONS(5523), 1, + ACTIONS(5515), 1, anon_sym_LBRACK2, - ACTIONS(5525), 1, + ACTIONS(5517), 1, anon_sym_AMP, - ACTIONS(5527), 1, + ACTIONS(5519), 1, anon_sym_map_LBRACK, - STATE(1632), 1, + STATE(944), 1, sym_plain_type, - STATE(4409), 1, + STATE(4438), 1, sym_reference_expression, - STATE(1666), 2, + STATE(618), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1665), 4, + STATE(941), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1641), 12, + STATE(940), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278701,47 +279327,47 @@ static const uint16_t ts_small_parse_table[] = { [103641] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3411), 1, + ACTIONS(3549), 1, sym_identifier, - ACTIONS(3415), 1, + ACTIONS(3551), 1, + anon_sym_LPAREN, + ACTIONS(3553), 1, anon_sym_fn, - ACTIONS(3419), 1, + ACTIONS(3557), 1, anon_sym_struct, - ACTIONS(3429), 1, + ACTIONS(3567), 1, anon_sym_shared, - ACTIONS(3433), 1, + ACTIONS(3569), 1, + anon_sym_map_LBRACK, + ACTIONS(3571), 1, anon_sym_chan, - ACTIONS(3435), 1, + ACTIONS(3573), 1, anon_sym_thread, - ACTIONS(3437), 1, + ACTIONS(3575), 1, anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5517), 1, + ACTIONS(5557), 1, anon_sym_STAR, - ACTIONS(5519), 1, + ACTIONS(5559), 1, anon_sym_QMARK, - ACTIONS(5521), 1, + ACTIONS(5561), 1, anon_sym_BANG, - ACTIONS(5523), 1, + ACTIONS(5563), 1, anon_sym_LBRACK2, - ACTIONS(5525), 1, + ACTIONS(5565), 1, anon_sym_AMP, - ACTIONS(5527), 1, - anon_sym_map_LBRACK, - STATE(1644), 1, + STATE(2013), 1, sym_plain_type, - STATE(4409), 1, + STATE(4469), 1, sym_reference_expression, - STATE(1666), 2, + STATE(1930), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1665), 4, + STATE(1946), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1641), 12, + STATE(1947), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278757,47 +279383,47 @@ static const uint16_t ts_small_parse_table[] = { [103717] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(3549), 1, sym_identifier, - ACTIONS(559), 1, + ACTIONS(3551), 1, + anon_sym_LPAREN, + ACTIONS(3553), 1, anon_sym_fn, - ACTIONS(563), 1, + ACTIONS(3557), 1, anon_sym_struct, - ACTIONS(573), 1, + ACTIONS(3567), 1, anon_sym_shared, - ACTIONS(577), 1, + ACTIONS(3569), 1, + anon_sym_map_LBRACK, + ACTIONS(3571), 1, anon_sym_chan, - ACTIONS(579), 1, + ACTIONS(3573), 1, anon_sym_thread, - ACTIONS(581), 1, + ACTIONS(3575), 1, anon_sym_atomic, - ACTIONS(5605), 1, - anon_sym_LPAREN, - ACTIONS(5607), 1, + ACTIONS(5557), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5559), 1, anon_sym_QMARK, - ACTIONS(5611), 1, + ACTIONS(5561), 1, anon_sym_BANG, - ACTIONS(5613), 1, + ACTIONS(5563), 1, anon_sym_LBRACK2, - ACTIONS(5615), 1, + ACTIONS(5565), 1, anon_sym_AMP, - ACTIONS(5617), 1, - anon_sym_map_LBRACK, - STATE(866), 1, + STATE(2012), 1, sym_plain_type, - STATE(4460), 1, + STATE(4469), 1, sym_reference_expression, - STATE(521), 2, + STATE(1930), 2, sym_type_reference_expression, sym_qualified_type, - STATE(898), 4, + STATE(1946), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(896), 12, + STATE(1947), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278813,47 +279439,47 @@ static const uint16_t ts_small_parse_table[] = { [103793] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(559), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(565), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(569), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(583), 1, + anon_sym_chan, + ACTIONS(585), 1, + anon_sym_thread, + ACTIONS(587), 1, + anon_sym_atomic, + ACTIONS(5507), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5509), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5511), 1, + anon_sym_QMARK, + ACTIONS(5513), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5515), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5517), 1, anon_sym_AMP, - STATE(4070), 1, + ACTIONS(5519), 1, + anon_sym_map_LBRACK, + STATE(938), 1, sym_plain_type, - STATE(4600), 1, + STATE(4438), 1, sym_reference_expression, - STATE(3581), 2, + STATE(618), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(941), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(940), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278869,47 +279495,47 @@ static const uint16_t ts_small_parse_table[] = { [103869] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3411), 1, + ACTIONS(3419), 1, sym_identifier, - ACTIONS(3415), 1, + ACTIONS(3423), 1, anon_sym_fn, - ACTIONS(3419), 1, + ACTIONS(3427), 1, anon_sym_struct, - ACTIONS(3429), 1, + ACTIONS(3437), 1, anon_sym_shared, - ACTIONS(3433), 1, + ACTIONS(3441), 1, anon_sym_chan, - ACTIONS(3435), 1, + ACTIONS(3443), 1, anon_sym_thread, - ACTIONS(3437), 1, + ACTIONS(3445), 1, anon_sym_atomic, - ACTIONS(5399), 1, + ACTIONS(5405), 1, anon_sym_LPAREN, - ACTIONS(5517), 1, + ACTIONS(5595), 1, anon_sym_STAR, - ACTIONS(5519), 1, + ACTIONS(5597), 1, anon_sym_QMARK, - ACTIONS(5521), 1, + ACTIONS(5599), 1, anon_sym_BANG, - ACTIONS(5523), 1, + ACTIONS(5601), 1, anon_sym_LBRACK2, - ACTIONS(5525), 1, + ACTIONS(5603), 1, anon_sym_AMP, - ACTIONS(5527), 1, + ACTIONS(5605), 1, anon_sym_map_LBRACK, - STATE(1656), 1, + STATE(1759), 1, sym_plain_type, - STATE(4409), 1, + STATE(4416), 1, sym_reference_expression, - STATE(1666), 2, + STATE(1669), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1665), 4, + STATE(1636), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1641), 12, + STATE(1651), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278925,47 +279551,47 @@ static const uint16_t ts_small_parse_table[] = { [103945] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3277), 1, + ACTIONS(3419), 1, sym_identifier, - ACTIONS(3281), 1, + ACTIONS(3423), 1, anon_sym_fn, - ACTIONS(3285), 1, + ACTIONS(3427), 1, anon_sym_struct, - ACTIONS(3295), 1, + ACTIONS(3437), 1, anon_sym_shared, - ACTIONS(3299), 1, + ACTIONS(3441), 1, anon_sym_chan, - ACTIONS(3301), 1, + ACTIONS(3443), 1, anon_sym_thread, - ACTIONS(3303), 1, + ACTIONS(3445), 1, anon_sym_atomic, - ACTIONS(5633), 1, + ACTIONS(5405), 1, anon_sym_LPAREN, - ACTIONS(5635), 1, + ACTIONS(5595), 1, anon_sym_STAR, - ACTIONS(5637), 1, + ACTIONS(5597), 1, anon_sym_QMARK, - ACTIONS(5639), 1, + ACTIONS(5599), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5601), 1, anon_sym_LBRACK2, - ACTIONS(5643), 1, + ACTIONS(5603), 1, anon_sym_AMP, - ACTIONS(5645), 1, + ACTIONS(5605), 1, anon_sym_map_LBRACK, - STATE(1187), 1, + STATE(1762), 1, sym_plain_type, - STATE(4507), 1, + STATE(4416), 1, sym_reference_expression, - STATE(1164), 2, + STATE(1669), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1177), 4, + STATE(1636), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1178), 12, + STATE(1651), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278981,47 +279607,47 @@ static const uint16_t ts_small_parse_table[] = { [104021] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3411), 1, + ACTIONS(3519), 1, sym_identifier, - ACTIONS(3415), 1, + ACTIONS(3521), 1, + anon_sym_LPAREN, + ACTIONS(3523), 1, anon_sym_fn, - ACTIONS(3419), 1, + ACTIONS(3527), 1, anon_sym_struct, - ACTIONS(3429), 1, + ACTIONS(3537), 1, anon_sym_shared, - ACTIONS(3433), 1, + ACTIONS(3539), 1, + anon_sym_map_LBRACK, + ACTIONS(3541), 1, anon_sym_chan, - ACTIONS(3435), 1, + ACTIONS(3543), 1, anon_sym_thread, - ACTIONS(3437), 1, + ACTIONS(3545), 1, anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5517), 1, + ACTIONS(5629), 1, anon_sym_STAR, - ACTIONS(5519), 1, + ACTIONS(5631), 1, anon_sym_QMARK, - ACTIONS(5521), 1, + ACTIONS(5633), 1, anon_sym_BANG, - ACTIONS(5523), 1, + ACTIONS(5635), 1, anon_sym_LBRACK2, - ACTIONS(5525), 1, + ACTIONS(5637), 1, anon_sym_AMP, - ACTIONS(5527), 1, - anon_sym_map_LBRACK, - STATE(1657), 1, + STATE(2008), 1, sym_plain_type, - STATE(4409), 1, + STATE(4532), 1, sym_reference_expression, - STATE(1666), 2, + STATE(1923), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1665), 4, + STATE(2088), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1641), 12, + STATE(2087), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279037,47 +279663,47 @@ static const uint16_t ts_small_parse_table[] = { [104097] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(3205), 1, sym_identifier, - ACTIONS(559), 1, - anon_sym_fn, - ACTIONS(563), 1, + ACTIONS(3427), 1, anon_sym_struct, - ACTIONS(573), 1, + ACTIONS(5327), 1, + anon_sym_fn, + ACTIONS(5339), 1, anon_sym_shared, - ACTIONS(577), 1, + ACTIONS(5343), 1, anon_sym_chan, - ACTIONS(579), 1, + ACTIONS(5345), 1, anon_sym_thread, - ACTIONS(581), 1, + ACTIONS(5347), 1, anon_sym_atomic, - ACTIONS(5605), 1, + ACTIONS(5405), 1, anon_sym_LPAREN, - ACTIONS(5607), 1, + ACTIONS(5409), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5411), 1, anon_sym_QMARK, - ACTIONS(5611), 1, + ACTIONS(5413), 1, anon_sym_BANG, - ACTIONS(5613), 1, + ACTIONS(5415), 1, anon_sym_LBRACK2, - ACTIONS(5615), 1, + ACTIONS(5417), 1, anon_sym_AMP, - ACTIONS(5617), 1, + ACTIONS(5419), 1, anon_sym_map_LBRACK, - STATE(889), 1, + STATE(1668), 1, sym_plain_type, - STATE(4460), 1, + STATE(4425), 1, sym_reference_expression, - STATE(521), 2, + STATE(3388), 2, sym_type_reference_expression, sym_qualified_type, - STATE(898), 4, + STATE(1636), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(896), 12, + STATE(1651), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279093,47 +279719,47 @@ static const uint16_t ts_small_parse_table[] = { [104173] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, + ACTIONS(3205), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3427), 1, + anon_sym_struct, + ACTIONS(5327), 1, anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, + ACTIONS(5339), 1, anon_sym_shared, - ACTIONS(3718), 1, - anon_sym_map_LBRACK, - ACTIONS(3720), 1, + ACTIONS(5343), 1, anon_sym_chan, - ACTIONS(3722), 1, + ACTIONS(5345), 1, anon_sym_thread, - ACTIONS(3724), 1, + ACTIONS(5347), 1, anon_sym_atomic, - ACTIONS(5529), 1, + ACTIONS(5405), 1, + anon_sym_LPAREN, + ACTIONS(5409), 1, + anon_sym_STAR, + ACTIONS(5411), 1, anon_sym_QMARK, - ACTIONS(5531), 1, + ACTIONS(5413), 1, anon_sym_BANG, - ACTIONS(5533), 1, + ACTIONS(5415), 1, anon_sym_LBRACK2, - ACTIONS(5535), 1, + ACTIONS(5417), 1, anon_sym_AMP, - STATE(2879), 1, + ACTIONS(5419), 1, + anon_sym_map_LBRACK, + STATE(1646), 1, sym_plain_type, - STATE(4600), 1, + STATE(4425), 1, sym_reference_expression, - STATE(2318), 2, + STATE(3388), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1636), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1651), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279149,47 +279775,47 @@ static const uint16_t ts_small_parse_table[] = { [104249] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, + ACTIONS(3419), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3423), 1, anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, + ACTIONS(3427), 1, + anon_sym_struct, + ACTIONS(3437), 1, anon_sym_shared, - ACTIONS(3718), 1, - anon_sym_map_LBRACK, - ACTIONS(3720), 1, + ACTIONS(3441), 1, anon_sym_chan, - ACTIONS(3722), 1, + ACTIONS(3443), 1, anon_sym_thread, - ACTIONS(3724), 1, + ACTIONS(3445), 1, anon_sym_atomic, - ACTIONS(5529), 1, + ACTIONS(5405), 1, + anon_sym_LPAREN, + ACTIONS(5595), 1, + anon_sym_STAR, + ACTIONS(5597), 1, anon_sym_QMARK, - ACTIONS(5531), 1, + ACTIONS(5599), 1, anon_sym_BANG, - ACTIONS(5533), 1, + ACTIONS(5601), 1, anon_sym_LBRACK2, - ACTIONS(5535), 1, + ACTIONS(5603), 1, anon_sym_AMP, - STATE(2881), 1, + ACTIONS(5605), 1, + anon_sym_map_LBRACK, + STATE(1697), 1, sym_plain_type, - STATE(4600), 1, + STATE(4416), 1, sym_reference_expression, - STATE(2318), 2, + STATE(1669), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1636), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1651), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279205,47 +279831,47 @@ static const uint16_t ts_small_parse_table[] = { [104325] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(2323), 1, + STATE(2346), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279261,47 +279887,47 @@ static const uint16_t ts_small_parse_table[] = { [104401] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3730), 1, + ACTIONS(3763), 1, sym_identifier, - ACTIONS(3734), 1, + ACTIONS(3767), 1, anon_sym_fn, - ACTIONS(3738), 1, + ACTIONS(3771), 1, anon_sym_struct, - ACTIONS(3748), 1, + ACTIONS(3781), 1, anon_sym_shared, - ACTIONS(3752), 1, + ACTIONS(3785), 1, anon_sym_chan, - ACTIONS(3754), 1, + ACTIONS(3787), 1, anon_sym_thread, - ACTIONS(3756), 1, + ACTIONS(3789), 1, anon_sym_atomic, - ACTIONS(5493), 1, + ACTIONS(5607), 1, anon_sym_LPAREN, - ACTIONS(5495), 1, + ACTIONS(5609), 1, anon_sym_STAR, - ACTIONS(5497), 1, + ACTIONS(5611), 1, anon_sym_QMARK, - ACTIONS(5499), 1, + ACTIONS(5613), 1, anon_sym_BANG, - ACTIONS(5501), 1, + ACTIONS(5615), 1, anon_sym_LBRACK2, - ACTIONS(5503), 1, + ACTIONS(5617), 1, anon_sym_AMP, - ACTIONS(5505), 1, + ACTIONS(5619), 1, anon_sym_map_LBRACK, - STATE(2543), 1, + STATE(2534), 1, sym_plain_type, - STATE(4486), 1, + STATE(4490), 1, sym_reference_expression, - STATE(2457), 2, + STATE(2453), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2570), 4, + STATE(2587), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2569), 12, + STATE(2535), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279317,47 +279943,47 @@ static const uint16_t ts_small_parse_table[] = { [104477] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, sym_identifier, - ACTIONS(1606), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(1610), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(1620), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(1624), 1, - anon_sym_chan, - ACTIONS(1626), 1, - anon_sym_thread, - ACTIONS(1628), 1, - anon_sym_atomic, - ACTIONS(5591), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(5593), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5595), 1, - anon_sym_QMARK, - ACTIONS(5597), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5599), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5601), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5603), 1, - anon_sym_map_LBRACK, - STATE(1102), 1, + STATE(4052), 1, sym_plain_type, - STATE(4444), 1, + STATE(4655), 1, sym_reference_expression, - STATE(994), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1059), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1060), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279373,47 +279999,47 @@ static const uint16_t ts_small_parse_table[] = { [104553] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3730), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, sym_identifier, - ACTIONS(3734), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(3738), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(3748), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3752), 1, - anon_sym_chan, - ACTIONS(3754), 1, - anon_sym_thread, - ACTIONS(3756), 1, - anon_sym_atomic, - ACTIONS(5493), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(5495), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5497), 1, - anon_sym_QMARK, - ACTIONS(5499), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5501), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5503), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5505), 1, - anon_sym_map_LBRACK, - STATE(2542), 1, + STATE(4583), 1, sym_plain_type, - STATE(4486), 1, + STATE(4655), 1, sym_reference_expression, - STATE(2457), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2570), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2569), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279429,47 +280055,47 @@ static const uint16_t ts_small_parse_table[] = { [104629] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3411), 1, + ACTIONS(3389), 1, sym_identifier, - ACTIONS(3415), 1, + ACTIONS(3393), 1, anon_sym_fn, - ACTIONS(3419), 1, + ACTIONS(3397), 1, anon_sym_struct, - ACTIONS(3429), 1, + ACTIONS(3407), 1, anon_sym_shared, - ACTIONS(3433), 1, + ACTIONS(3411), 1, anon_sym_chan, - ACTIONS(3435), 1, + ACTIONS(3413), 1, anon_sym_thread, - ACTIONS(3437), 1, + ACTIONS(3415), 1, anon_sym_atomic, - ACTIONS(5399), 1, + ACTIONS(5421), 1, anon_sym_LPAREN, - ACTIONS(5517), 1, + ACTIONS(5425), 1, anon_sym_STAR, - ACTIONS(5519), 1, + ACTIONS(5427), 1, anon_sym_QMARK, - ACTIONS(5521), 1, + ACTIONS(5429), 1, anon_sym_BANG, - ACTIONS(5523), 1, + ACTIONS(5431), 1, anon_sym_LBRACK2, - ACTIONS(5525), 1, + ACTIONS(5433), 1, anon_sym_AMP, - ACTIONS(5527), 1, + ACTIONS(5435), 1, anon_sym_map_LBRACK, - STATE(1659), 1, + STATE(1449), 1, sym_plain_type, - STATE(4409), 1, + STATE(4462), 1, sym_reference_expression, - STATE(1666), 2, + STATE(1415), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1665), 4, + STATE(1479), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1641), 12, + STATE(1481), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279485,47 +280111,47 @@ static const uint16_t ts_small_parse_table[] = { [104705] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4274), 1, - sym_identifier, - ACTIONS(4276), 1, - anon_sym_LPAREN, - ACTIONS(4278), 1, - anon_sym_fn, - ACTIONS(4280), 1, - anon_sym_STAR, - ACTIONS(4282), 1, - anon_sym_struct, - ACTIONS(4292), 1, - anon_sym_shared, - ACTIONS(4294), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(4296), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(4298), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(4300), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5547), 1, - anon_sym_QMARK, - ACTIONS(5549), 1, + ACTIONS(591), 1, + sym_identifier, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(609), 1, + anon_sym_shared, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, + anon_sym_STAR, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5551), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5553), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(2738), 1, + STATE(2358), 1, sym_plain_type, - STATE(4574), 1, + STATE(4655), 1, sym_reference_expression, - STATE(2635), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2723), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2724), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279541,47 +280167,47 @@ static const uint16_t ts_small_parse_table[] = { [104781] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3730), 1, + ACTIONS(3519), 1, sym_identifier, - ACTIONS(3734), 1, + ACTIONS(3521), 1, + anon_sym_LPAREN, + ACTIONS(3523), 1, anon_sym_fn, - ACTIONS(3738), 1, + ACTIONS(3527), 1, anon_sym_struct, - ACTIONS(3748), 1, + ACTIONS(3537), 1, anon_sym_shared, - ACTIONS(3752), 1, + ACTIONS(3539), 1, + anon_sym_map_LBRACK, + ACTIONS(3541), 1, anon_sym_chan, - ACTIONS(3754), 1, + ACTIONS(3543), 1, anon_sym_thread, - ACTIONS(3756), 1, + ACTIONS(3545), 1, anon_sym_atomic, - ACTIONS(5493), 1, - anon_sym_LPAREN, - ACTIONS(5495), 1, + ACTIONS(5629), 1, anon_sym_STAR, - ACTIONS(5497), 1, + ACTIONS(5631), 1, anon_sym_QMARK, - ACTIONS(5499), 1, + ACTIONS(5633), 1, anon_sym_BANG, - ACTIONS(5501), 1, + ACTIONS(5635), 1, anon_sym_LBRACK2, - ACTIONS(5503), 1, + ACTIONS(5637), 1, anon_sym_AMP, - ACTIONS(5505), 1, - anon_sym_map_LBRACK, - STATE(2471), 1, + STATE(2007), 1, sym_plain_type, - STATE(4486), 1, + STATE(4532), 1, sym_reference_expression, - STATE(2457), 2, + STATE(1923), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2570), 4, + STATE(2088), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2569), 12, + STATE(2087), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279597,47 +280223,47 @@ static const uint16_t ts_small_parse_table[] = { [104857] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(3869), 1, + STATE(4057), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279653,47 +280279,47 @@ static const uint16_t ts_small_parse_table[] = { [104933] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, sym_identifier, - ACTIONS(3676), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(3680), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(3690), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3694), 1, - anon_sym_chan, - ACTIONS(3696), 1, - anon_sym_thread, - ACTIONS(3698), 1, - anon_sym_atomic, - ACTIONS(5555), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(5557), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5559), 1, - anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5567), 1, - anon_sym_map_LBRACK, - STATE(2261), 1, + STATE(3960), 1, sym_plain_type, - STATE(4566), 1, + STATE(4655), 1, sym_reference_expression, - STATE(2159), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2185), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2186), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279709,47 +280335,47 @@ static const uint16_t ts_small_parse_table[] = { [105009] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(3389), 1, sym_identifier, - ACTIONS(559), 1, + ACTIONS(3393), 1, anon_sym_fn, - ACTIONS(563), 1, + ACTIONS(3397), 1, anon_sym_struct, - ACTIONS(573), 1, + ACTIONS(3407), 1, anon_sym_shared, - ACTIONS(577), 1, + ACTIONS(3411), 1, anon_sym_chan, - ACTIONS(579), 1, + ACTIONS(3413), 1, anon_sym_thread, - ACTIONS(581), 1, + ACTIONS(3415), 1, anon_sym_atomic, - ACTIONS(5605), 1, + ACTIONS(5421), 1, anon_sym_LPAREN, - ACTIONS(5607), 1, + ACTIONS(5425), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5427), 1, anon_sym_QMARK, - ACTIONS(5611), 1, + ACTIONS(5429), 1, anon_sym_BANG, - ACTIONS(5613), 1, + ACTIONS(5431), 1, anon_sym_LBRACK2, - ACTIONS(5615), 1, + ACTIONS(5433), 1, anon_sym_AMP, - ACTIONS(5617), 1, + ACTIONS(5435), 1, anon_sym_map_LBRACK, - STATE(860), 1, + STATE(1445), 1, sym_plain_type, - STATE(4460), 1, + STATE(4462), 1, sym_reference_expression, - STATE(521), 2, + STATE(1415), 2, sym_type_reference_expression, sym_qualified_type, - STATE(898), 4, + STATE(1479), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(896), 12, + STATE(1481), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279765,47 +280391,47 @@ static const uint16_t ts_small_parse_table[] = { [105085] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, + ACTIONS(3763), 1, sym_identifier, - ACTIONS(3676), 1, + ACTIONS(3767), 1, anon_sym_fn, - ACTIONS(3680), 1, + ACTIONS(3771), 1, anon_sym_struct, - ACTIONS(3690), 1, + ACTIONS(3781), 1, anon_sym_shared, - ACTIONS(3694), 1, + ACTIONS(3785), 1, anon_sym_chan, - ACTIONS(3696), 1, + ACTIONS(3787), 1, anon_sym_thread, - ACTIONS(3698), 1, + ACTIONS(3789), 1, anon_sym_atomic, - ACTIONS(5555), 1, + ACTIONS(5607), 1, anon_sym_LPAREN, - ACTIONS(5557), 1, + ACTIONS(5609), 1, anon_sym_STAR, - ACTIONS(5559), 1, + ACTIONS(5611), 1, anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5613), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5615), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5617), 1, anon_sym_AMP, - ACTIONS(5567), 1, + ACTIONS(5619), 1, anon_sym_map_LBRACK, - STATE(2260), 1, + STATE(2573), 1, sym_plain_type, - STATE(4566), 1, + STATE(4490), 1, sym_reference_expression, - STATE(2159), 2, + STATE(2453), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2185), 4, + STATE(2587), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2186), 12, + STATE(2535), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279821,47 +280447,47 @@ static const uint16_t ts_small_parse_table[] = { [105161] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, + ACTIONS(3519), 1, sym_identifier, - ACTIONS(3676), 1, + ACTIONS(3521), 1, + anon_sym_LPAREN, + ACTIONS(3523), 1, anon_sym_fn, - ACTIONS(3680), 1, + ACTIONS(3527), 1, anon_sym_struct, - ACTIONS(3690), 1, + ACTIONS(3537), 1, anon_sym_shared, - ACTIONS(3694), 1, + ACTIONS(3539), 1, + anon_sym_map_LBRACK, + ACTIONS(3541), 1, anon_sym_chan, - ACTIONS(3696), 1, + ACTIONS(3543), 1, anon_sym_thread, - ACTIONS(3698), 1, - anon_sym_atomic, - ACTIONS(5555), 1, - anon_sym_LPAREN, - ACTIONS(5557), 1, + ACTIONS(3545), 1, + anon_sym_atomic, + ACTIONS(5629), 1, anon_sym_STAR, - ACTIONS(5559), 1, + ACTIONS(5631), 1, anon_sym_QMARK, - ACTIONS(5561), 1, + ACTIONS(5633), 1, anon_sym_BANG, - ACTIONS(5563), 1, + ACTIONS(5635), 1, anon_sym_LBRACK2, - ACTIONS(5565), 1, + ACTIONS(5637), 1, anon_sym_AMP, - ACTIONS(5567), 1, - anon_sym_map_LBRACK, - STATE(2253), 1, + STATE(2129), 1, sym_plain_type, - STATE(4566), 1, + STATE(4532), 1, sym_reference_expression, - STATE(2159), 2, + STATE(1923), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2185), 4, + STATE(2088), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2186), 12, + STATE(2087), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279877,47 +280503,47 @@ static const uint16_t ts_small_parse_table[] = { [105237] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4274), 1, + ACTIONS(3763), 1, sym_identifier, - ACTIONS(4276), 1, - anon_sym_LPAREN, - ACTIONS(4278), 1, + ACTIONS(3767), 1, anon_sym_fn, - ACTIONS(4280), 1, - anon_sym_STAR, - ACTIONS(4282), 1, + ACTIONS(3771), 1, anon_sym_struct, - ACTIONS(4292), 1, + ACTIONS(3781), 1, anon_sym_shared, - ACTIONS(4294), 1, - anon_sym_map_LBRACK, - ACTIONS(4296), 1, + ACTIONS(3785), 1, anon_sym_chan, - ACTIONS(4298), 1, + ACTIONS(3787), 1, anon_sym_thread, - ACTIONS(4300), 1, + ACTIONS(3789), 1, anon_sym_atomic, - ACTIONS(5547), 1, + ACTIONS(5607), 1, + anon_sym_LPAREN, + ACTIONS(5609), 1, + anon_sym_STAR, + ACTIONS(5611), 1, anon_sym_QMARK, - ACTIONS(5549), 1, + ACTIONS(5613), 1, anon_sym_BANG, - ACTIONS(5551), 1, + ACTIONS(5615), 1, anon_sym_LBRACK2, - ACTIONS(5553), 1, + ACTIONS(5617), 1, anon_sym_AMP, - STATE(2739), 1, + ACTIONS(5619), 1, + anon_sym_map_LBRACK, + STATE(2561), 1, sym_plain_type, - STATE(4574), 1, + STATE(4490), 1, sym_reference_expression, - STATE(2635), 2, + STATE(2453), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2723), 4, + STATE(2587), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2724), 12, + STATE(2535), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279933,47 +280559,47 @@ static const uint16_t ts_small_parse_table[] = { [105313] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4274), 1, + ACTIONS(3519), 1, sym_identifier, - ACTIONS(4276), 1, + ACTIONS(3521), 1, anon_sym_LPAREN, - ACTIONS(4278), 1, + ACTIONS(3523), 1, anon_sym_fn, - ACTIONS(4280), 1, - anon_sym_STAR, - ACTIONS(4282), 1, + ACTIONS(3527), 1, anon_sym_struct, - ACTIONS(4292), 1, + ACTIONS(3537), 1, anon_sym_shared, - ACTIONS(4294), 1, + ACTIONS(3539), 1, anon_sym_map_LBRACK, - ACTIONS(4296), 1, + ACTIONS(3541), 1, anon_sym_chan, - ACTIONS(4298), 1, + ACTIONS(3543), 1, anon_sym_thread, - ACTIONS(4300), 1, + ACTIONS(3545), 1, anon_sym_atomic, - ACTIONS(5547), 1, + ACTIONS(5629), 1, + anon_sym_STAR, + ACTIONS(5631), 1, anon_sym_QMARK, - ACTIONS(5549), 1, + ACTIONS(5633), 1, anon_sym_BANG, - ACTIONS(5551), 1, + ACTIONS(5635), 1, anon_sym_LBRACK2, - ACTIONS(5553), 1, + ACTIONS(5637), 1, anon_sym_AMP, - STATE(2740), 1, + STATE(2128), 1, sym_plain_type, - STATE(4574), 1, + STATE(4532), 1, sym_reference_expression, - STATE(2635), 2, + STATE(1923), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2723), 4, + STATE(2088), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2724), 12, + STATE(2087), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279989,47 +280615,47 @@ static const uint16_t ts_small_parse_table[] = { [105389] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3277), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, sym_identifier, - ACTIONS(3281), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(3285), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(3295), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3299), 1, - anon_sym_chan, - ACTIONS(3301), 1, - anon_sym_thread, - ACTIONS(3303), 1, - anon_sym_atomic, - ACTIONS(5633), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(5635), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5637), 1, - anon_sym_QMARK, - ACTIONS(5639), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5643), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5645), 1, - anon_sym_map_LBRACK, - STATE(1208), 1, + STATE(4092), 1, sym_plain_type, - STATE(4507), 1, + STATE(4655), 1, sym_reference_expression, - STATE(1164), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1177), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1178), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280045,47 +280671,47 @@ static const uint16_t ts_small_parse_table[] = { [105465] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(5321), 1, - anon_sym_fn, - ACTIONS(5333), 1, - anon_sym_shared, - ACTIONS(5337), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(5339), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(5341), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5399), 1, + ACTIONS(591), 1, + sym_identifier, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(609), 1, + anon_sym_shared, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(5403), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_QMARK, - ACTIONS(5407), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5409), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5411), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5413), 1, - anon_sym_map_LBRACK, - STATE(1657), 1, + STATE(2361), 1, sym_plain_type, - STATE(4416), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3390), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1665), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1641), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280101,47 +280727,47 @@ static const uint16_t ts_small_parse_table[] = { [105541] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, + ACTIONS(3389), 1, sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, + ACTIONS(3393), 1, anon_sym_fn, - ACTIONS(3563), 1, + ACTIONS(3397), 1, anon_sym_struct, - ACTIONS(3573), 1, + ACTIONS(3407), 1, anon_sym_shared, - ACTIONS(3575), 1, - anon_sym_map_LBRACK, - ACTIONS(3577), 1, + ACTIONS(3411), 1, anon_sym_chan, - ACTIONS(3579), 1, + ACTIONS(3413), 1, anon_sym_thread, - ACTIONS(3581), 1, + ACTIONS(3415), 1, anon_sym_atomic, - ACTIONS(5537), 1, + ACTIONS(5421), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, anon_sym_STAR, - ACTIONS(5539), 1, + ACTIONS(5427), 1, anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5429), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5431), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5433), 1, anon_sym_AMP, - STATE(2098), 1, + ACTIONS(5435), 1, + anon_sym_map_LBRACK, + STATE(1468), 1, sym_plain_type, - STATE(4465), 1, + STATE(4462), 1, sym_reference_expression, - STATE(1919), 2, + STATE(1415), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2126), 4, + STATE(1479), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2127), 12, + STATE(1481), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280157,47 +280783,47 @@ static const uint16_t ts_small_parse_table[] = { [105617] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, - sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, - anon_sym_fn, - ACTIONS(3563), 1, - anon_sym_struct, - ACTIONS(3573), 1, - anon_sym_shared, - ACTIONS(3575), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(3577), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3579), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3581), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5537), 1, + ACTIONS(591), 1, + sym_identifier, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(609), 1, + anon_sym_shared, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5539), 1, - anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(2047), 1, + STATE(2348), 1, sym_plain_type, - STATE(4465), 1, + STATE(4655), 1, sym_reference_expression, - STATE(1919), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2126), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2127), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280213,47 +280839,47 @@ static const uint16_t ts_small_parse_table[] = { [105693] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3519), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(3521), 1, + anon_sym_LPAREN, + ACTIONS(3523), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3527), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(3537), 1, anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3539), 1, + anon_sym_map_LBRACK, + ACTIONS(3541), 1, + anon_sym_chan, + ACTIONS(3543), 1, + anon_sym_thread, + ACTIONS(3545), 1, + anon_sym_atomic, + ACTIONS(5629), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5631), 1, + anon_sym_QMARK, + ACTIONS(5633), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5635), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5637), 1, anon_sym_AMP, - STATE(4600), 1, - sym_reference_expression, - STATE(4711), 1, + STATE(2120), 1, sym_plain_type, - STATE(3581), 2, + STATE(4532), 1, + sym_reference_expression, + STATE(1923), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2088), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2087), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280269,47 +280895,47 @@ static const uint16_t ts_small_parse_table[] = { [105769] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3383), 1, + ACTIONS(3205), 1, sym_identifier, - ACTIONS(3387), 1, - anon_sym_fn, - ACTIONS(3391), 1, + ACTIONS(3427), 1, anon_sym_struct, - ACTIONS(3401), 1, + ACTIONS(5327), 1, + anon_sym_fn, + ACTIONS(5339), 1, anon_sym_shared, - ACTIONS(3405), 1, + ACTIONS(5343), 1, anon_sym_chan, - ACTIONS(3407), 1, + ACTIONS(5345), 1, anon_sym_thread, - ACTIONS(3409), 1, + ACTIONS(5347), 1, anon_sym_atomic, - ACTIONS(5415), 1, + ACTIONS(5405), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, + ACTIONS(5409), 1, anon_sym_STAR, - ACTIONS(5421), 1, + ACTIONS(5411), 1, anon_sym_QMARK, - ACTIONS(5423), 1, + ACTIONS(5413), 1, anon_sym_BANG, - ACTIONS(5425), 1, + ACTIONS(5415), 1, anon_sym_LBRACK2, - ACTIONS(5427), 1, + ACTIONS(5417), 1, anon_sym_AMP, - ACTIONS(5429), 1, + ACTIONS(5419), 1, anon_sym_map_LBRACK, - STATE(1480), 1, + STATE(1653), 1, sym_plain_type, - STATE(4515), 1, + STATE(4425), 1, sym_reference_expression, - STATE(1411), 2, + STATE(3388), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1465), 4, + STATE(1636), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1427), 12, + STATE(1651), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280325,47 +280951,47 @@ static const uint16_t ts_small_parse_table[] = { [105845] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(3389), 1, sym_identifier, - ACTIONS(559), 1, + ACTIONS(3393), 1, anon_sym_fn, - ACTIONS(563), 1, + ACTIONS(3397), 1, anon_sym_struct, - ACTIONS(573), 1, + ACTIONS(3407), 1, anon_sym_shared, - ACTIONS(577), 1, + ACTIONS(3411), 1, anon_sym_chan, - ACTIONS(579), 1, + ACTIONS(3413), 1, anon_sym_thread, - ACTIONS(581), 1, + ACTIONS(3415), 1, anon_sym_atomic, - ACTIONS(5605), 1, + ACTIONS(5421), 1, anon_sym_LPAREN, - ACTIONS(5607), 1, + ACTIONS(5425), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5427), 1, anon_sym_QMARK, - ACTIONS(5611), 1, + ACTIONS(5429), 1, anon_sym_BANG, - ACTIONS(5613), 1, + ACTIONS(5431), 1, anon_sym_LBRACK2, - ACTIONS(5615), 1, + ACTIONS(5433), 1, anon_sym_AMP, - ACTIONS(5617), 1, + ACTIONS(5435), 1, anon_sym_map_LBRACK, - STATE(871), 1, + STATE(1475), 1, sym_plain_type, - STATE(4460), 1, + STATE(4462), 1, sym_reference_expression, - STATE(521), 2, + STATE(1415), 2, sym_type_reference_expression, sym_qualified_type, - STATE(898), 4, + STATE(1479), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(896), 12, + STATE(1481), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280381,47 +281007,47 @@ static const uint16_t ts_small_parse_table[] = { [105921] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, sym_identifier, - ACTIONS(559), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(563), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(573), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(577), 1, - anon_sym_chan, - ACTIONS(579), 1, - anon_sym_thread, - ACTIONS(581), 1, - anon_sym_atomic, - ACTIONS(5605), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(5607), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5609), 1, - anon_sym_QMARK, - ACTIONS(5611), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5613), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5615), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5617), 1, - anon_sym_map_LBRACK, - STATE(877), 1, + STATE(2336), 1, sym_plain_type, - STATE(4460), 1, + STATE(4655), 1, sym_reference_expression, - STATE(521), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(898), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(896), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280437,47 +281063,47 @@ static const uint16_t ts_small_parse_table[] = { [105997] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3730), 1, + ACTIONS(4280), 1, sym_identifier, - ACTIONS(3734), 1, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(4284), 1, anon_sym_fn, - ACTIONS(3738), 1, + ACTIONS(4286), 1, + anon_sym_STAR, + ACTIONS(4288), 1, anon_sym_struct, - ACTIONS(3748), 1, + ACTIONS(4298), 1, anon_sym_shared, - ACTIONS(3752), 1, + ACTIONS(4300), 1, + anon_sym_map_LBRACK, + ACTIONS(4302), 1, anon_sym_chan, - ACTIONS(3754), 1, + ACTIONS(4304), 1, anon_sym_thread, - ACTIONS(3756), 1, + ACTIONS(4306), 1, anon_sym_atomic, - ACTIONS(5493), 1, - anon_sym_LPAREN, - ACTIONS(5495), 1, - anon_sym_STAR, - ACTIONS(5497), 1, + ACTIONS(5621), 1, anon_sym_QMARK, - ACTIONS(5499), 1, + ACTIONS(5623), 1, anon_sym_BANG, - ACTIONS(5501), 1, + ACTIONS(5625), 1, anon_sym_LBRACK2, - ACTIONS(5503), 1, + ACTIONS(5627), 1, anon_sym_AMP, - ACTIONS(5505), 1, - anon_sym_map_LBRACK, - STATE(2488), 1, + STATE(2848), 1, sym_plain_type, - STATE(4486), 1, + STATE(4578), 1, sym_reference_expression, - STATE(2457), 2, + STATE(2667), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2570), 4, + STATE(2727), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2569), 12, + STATE(2728), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280493,47 +281119,47 @@ static const uint16_t ts_small_parse_table[] = { [106073] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4274), 1, + ACTIONS(3389), 1, sym_identifier, - ACTIONS(4276), 1, - anon_sym_LPAREN, - ACTIONS(4278), 1, + ACTIONS(3393), 1, anon_sym_fn, - ACTIONS(4280), 1, - anon_sym_STAR, - ACTIONS(4282), 1, + ACTIONS(3397), 1, anon_sym_struct, - ACTIONS(4292), 1, + ACTIONS(3407), 1, anon_sym_shared, - ACTIONS(4294), 1, - anon_sym_map_LBRACK, - ACTIONS(4296), 1, + ACTIONS(3411), 1, anon_sym_chan, - ACTIONS(4298), 1, + ACTIONS(3413), 1, anon_sym_thread, - ACTIONS(4300), 1, + ACTIONS(3415), 1, anon_sym_atomic, - ACTIONS(5547), 1, + ACTIONS(5421), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_STAR, + ACTIONS(5427), 1, anon_sym_QMARK, - ACTIONS(5549), 1, + ACTIONS(5429), 1, anon_sym_BANG, - ACTIONS(5551), 1, + ACTIONS(5431), 1, anon_sym_LBRACK2, - ACTIONS(5553), 1, + ACTIONS(5433), 1, anon_sym_AMP, - STATE(2749), 1, + ACTIONS(5435), 1, + anon_sym_map_LBRACK, + STATE(1454), 1, sym_plain_type, - STATE(4574), 1, + STATE(4462), 1, sym_reference_expression, - STATE(2635), 2, + STATE(1415), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2723), 4, + STATE(1479), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2724), 12, + STATE(1481), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280549,47 +281175,47 @@ static const uint16_t ts_small_parse_table[] = { [106149] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3411), 1, + ACTIONS(4280), 1, sym_identifier, - ACTIONS(3415), 1, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(4284), 1, anon_sym_fn, - ACTIONS(3419), 1, + ACTIONS(4286), 1, + anon_sym_STAR, + ACTIONS(4288), 1, anon_sym_struct, - ACTIONS(3429), 1, + ACTIONS(4298), 1, anon_sym_shared, - ACTIONS(3433), 1, + ACTIONS(4300), 1, + anon_sym_map_LBRACK, + ACTIONS(4302), 1, anon_sym_chan, - ACTIONS(3435), 1, + ACTIONS(4304), 1, anon_sym_thread, - ACTIONS(3437), 1, + ACTIONS(4306), 1, anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5517), 1, - anon_sym_STAR, - ACTIONS(5519), 1, + ACTIONS(5621), 1, anon_sym_QMARK, - ACTIONS(5521), 1, + ACTIONS(5623), 1, anon_sym_BANG, - ACTIONS(5523), 1, + ACTIONS(5625), 1, anon_sym_LBRACK2, - ACTIONS(5525), 1, + ACTIONS(5627), 1, anon_sym_AMP, - ACTIONS(5527), 1, - anon_sym_map_LBRACK, - STATE(1700), 1, + STATE(2834), 1, sym_plain_type, - STATE(4409), 1, + STATE(4578), 1, sym_reference_expression, - STATE(1666), 2, + STATE(2667), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1665), 4, + STATE(2727), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1641), 12, + STATE(2728), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280605,47 +281231,47 @@ static const uint16_t ts_small_parse_table[] = { [106225] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3411), 1, + ACTIONS(4280), 1, sym_identifier, - ACTIONS(3415), 1, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(4284), 1, anon_sym_fn, - ACTIONS(3419), 1, + ACTIONS(4286), 1, + anon_sym_STAR, + ACTIONS(4288), 1, anon_sym_struct, - ACTIONS(3429), 1, + ACTIONS(4298), 1, anon_sym_shared, - ACTIONS(3433), 1, + ACTIONS(4300), 1, + anon_sym_map_LBRACK, + ACTIONS(4302), 1, anon_sym_chan, - ACTIONS(3435), 1, + ACTIONS(4304), 1, anon_sym_thread, - ACTIONS(3437), 1, + ACTIONS(4306), 1, anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5517), 1, - anon_sym_STAR, - ACTIONS(5519), 1, + ACTIONS(5621), 1, anon_sym_QMARK, - ACTIONS(5521), 1, + ACTIONS(5623), 1, anon_sym_BANG, - ACTIONS(5523), 1, + ACTIONS(5625), 1, anon_sym_LBRACK2, - ACTIONS(5525), 1, + ACTIONS(5627), 1, anon_sym_AMP, - ACTIONS(5527), 1, - anon_sym_map_LBRACK, - STATE(1703), 1, + STATE(2833), 1, sym_plain_type, - STATE(4409), 1, + STATE(4578), 1, sym_reference_expression, - STATE(1666), 2, + STATE(2667), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1665), 4, + STATE(2727), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1641), 12, + STATE(2728), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280661,47 +281287,47 @@ static const uint16_t ts_small_parse_table[] = { [106301] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4274), 1, - sym_identifier, - ACTIONS(4276), 1, - anon_sym_LPAREN, - ACTIONS(4278), 1, - anon_sym_fn, - ACTIONS(4280), 1, - anon_sym_STAR, - ACTIONS(4282), 1, - anon_sym_struct, - ACTIONS(4292), 1, - anon_sym_shared, - ACTIONS(4294), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(4296), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(4298), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(4300), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5547), 1, - anon_sym_QMARK, - ACTIONS(5549), 1, + ACTIONS(591), 1, + sym_identifier, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(609), 1, + anon_sym_shared, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, + anon_sym_STAR, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5551), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5553), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(2752), 1, + STATE(4020), 1, sym_plain_type, - STATE(4574), 1, + STATE(4655), 1, sym_reference_expression, - STATE(2635), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2723), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2724), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280717,47 +281343,47 @@ static const uint16_t ts_small_parse_table[] = { [106377] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, - sym_identifier, - ACTIONS(3529), 1, - anon_sym_LPAREN, - ACTIONS(3531), 1, - anon_sym_fn, - ACTIONS(3535), 1, - anon_sym_struct, - ACTIONS(3545), 1, - anon_sym_shared, - ACTIONS(3547), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(3549), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3551), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3553), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5507), 1, + ACTIONS(591), 1, + sym_identifier, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(609), 1, + anon_sym_shared, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5509), 1, - anon_sym_QMARK, - ACTIONS(5511), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5513), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5515), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(2096), 1, + STATE(4018), 1, sym_plain_type, - STATE(4528), 1, + STATE(4655), 1, sym_reference_expression, - STATE(1923), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2020), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1942), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280773,47 +281399,47 @@ static const uint16_t ts_small_parse_table[] = { [106453] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, + ACTIONS(3361), 1, sym_identifier, - ACTIONS(3351), 1, + ACTIONS(3363), 1, anon_sym_LPAREN, - ACTIONS(3353), 1, + ACTIONS(3365), 1, anon_sym_fn, - ACTIONS(3355), 1, + ACTIONS(3367), 1, anon_sym_STAR, - ACTIONS(3357), 1, + ACTIONS(3369), 1, anon_sym_struct, - ACTIONS(3367), 1, + ACTIONS(3379), 1, anon_sym_shared, - ACTIONS(3369), 1, + ACTIONS(3381), 1, anon_sym_map_LBRACK, - ACTIONS(3371), 1, + ACTIONS(3383), 1, anon_sym_chan, - ACTIONS(3373), 1, + ACTIONS(3385), 1, anon_sym_thread, - ACTIONS(3375), 1, + ACTIONS(3387), 1, anon_sym_atomic, - ACTIONS(5569), 1, + ACTIONS(5549), 1, anon_sym_QMARK, - ACTIONS(5571), 1, + ACTIONS(5551), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5553), 1, anon_sym_LBRACK2, - ACTIONS(5575), 1, + ACTIONS(5555), 1, anon_sym_AMP, - STATE(1375), 1, + STATE(1384), 1, sym_plain_type, - STATE(4423), 1, + STATE(4427), 1, sym_reference_expression, - STATE(1294), 2, + STATE(1303), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1344), 4, + STATE(1347), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1345), 12, + STATE(1406), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280829,47 +281455,47 @@ static const uint16_t ts_small_parse_table[] = { [106529] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3205), 1, sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3427), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(5327), 1, + anon_sym_fn, + ACTIONS(5339), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(5343), 1, + anon_sym_chan, + ACTIONS(5345), 1, + anon_sym_thread, + ACTIONS(5347), 1, + anon_sym_atomic, + ACTIONS(5405), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5409), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5411), 1, + anon_sym_QMARK, + ACTIONS(5413), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5415), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5417), 1, anon_sym_AMP, - STATE(3897), 1, + ACTIONS(5419), 1, + anon_sym_map_LBRACK, + STATE(1650), 1, sym_plain_type, - STATE(4600), 1, + STATE(4425), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3388), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1636), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1651), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280885,47 +281511,47 @@ static const uint16_t ts_small_parse_table[] = { [106605] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4274), 1, + ACTIONS(3205), 1, sym_identifier, - ACTIONS(4276), 1, - anon_sym_LPAREN, - ACTIONS(4278), 1, - anon_sym_fn, - ACTIONS(4280), 1, - anon_sym_STAR, - ACTIONS(4282), 1, + ACTIONS(3427), 1, anon_sym_struct, - ACTIONS(4292), 1, + ACTIONS(5327), 1, + anon_sym_fn, + ACTIONS(5339), 1, anon_sym_shared, - ACTIONS(4294), 1, - anon_sym_map_LBRACK, - ACTIONS(4296), 1, + ACTIONS(5343), 1, anon_sym_chan, - ACTIONS(4298), 1, + ACTIONS(5345), 1, anon_sym_thread, - ACTIONS(4300), 1, + ACTIONS(5347), 1, anon_sym_atomic, - ACTIONS(5547), 1, + ACTIONS(5405), 1, + anon_sym_LPAREN, + ACTIONS(5409), 1, + anon_sym_STAR, + ACTIONS(5411), 1, anon_sym_QMARK, - ACTIONS(5549), 1, + ACTIONS(5413), 1, anon_sym_BANG, - ACTIONS(5551), 1, + ACTIONS(5415), 1, anon_sym_LBRACK2, - ACTIONS(5553), 1, + ACTIONS(5417), 1, anon_sym_AMP, - STATE(2737), 1, + ACTIONS(5419), 1, + anon_sym_map_LBRACK, + STATE(1670), 1, sym_plain_type, - STATE(4574), 1, + STATE(4425), 1, sym_reference_expression, - STATE(2635), 2, + STATE(3388), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2723), 4, + STATE(1636), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2724), 12, + STATE(1651), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280941,47 +281567,47 @@ static const uint16_t ts_small_parse_table[] = { [106681] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, + ACTIONS(3361), 1, sym_identifier, - ACTIONS(3351), 1, + ACTIONS(3363), 1, anon_sym_LPAREN, - ACTIONS(3353), 1, + ACTIONS(3365), 1, anon_sym_fn, - ACTIONS(3355), 1, + ACTIONS(3367), 1, anon_sym_STAR, - ACTIONS(3357), 1, + ACTIONS(3369), 1, anon_sym_struct, - ACTIONS(3367), 1, + ACTIONS(3379), 1, anon_sym_shared, - ACTIONS(3369), 1, + ACTIONS(3381), 1, anon_sym_map_LBRACK, - ACTIONS(3371), 1, + ACTIONS(3383), 1, anon_sym_chan, - ACTIONS(3373), 1, + ACTIONS(3385), 1, anon_sym_thread, - ACTIONS(3375), 1, + ACTIONS(3387), 1, anon_sym_atomic, - ACTIONS(5569), 1, + ACTIONS(5549), 1, anon_sym_QMARK, - ACTIONS(5571), 1, + ACTIONS(5551), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5553), 1, anon_sym_LBRACK2, - ACTIONS(5575), 1, + ACTIONS(5555), 1, anon_sym_AMP, - STATE(1383), 1, + STATE(1387), 1, sym_plain_type, - STATE(4423), 1, + STATE(4427), 1, sym_reference_expression, - STATE(1294), 2, + STATE(1303), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1344), 4, + STATE(1347), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1345), 12, + STATE(1406), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280997,47 +281623,47 @@ static const uint16_t ts_small_parse_table[] = { [106757] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, + ACTIONS(3361), 1, sym_identifier, - ACTIONS(3351), 1, + ACTIONS(3363), 1, anon_sym_LPAREN, - ACTIONS(3353), 1, + ACTIONS(3365), 1, anon_sym_fn, - ACTIONS(3355), 1, + ACTIONS(3367), 1, anon_sym_STAR, - ACTIONS(3357), 1, + ACTIONS(3369), 1, anon_sym_struct, - ACTIONS(3367), 1, + ACTIONS(3379), 1, anon_sym_shared, - ACTIONS(3369), 1, + ACTIONS(3381), 1, anon_sym_map_LBRACK, - ACTIONS(3371), 1, + ACTIONS(3383), 1, anon_sym_chan, - ACTIONS(3373), 1, + ACTIONS(3385), 1, anon_sym_thread, - ACTIONS(3375), 1, + ACTIONS(3387), 1, anon_sym_atomic, - ACTIONS(5569), 1, + ACTIONS(5549), 1, anon_sym_QMARK, - ACTIONS(5571), 1, + ACTIONS(5551), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5553), 1, anon_sym_LBRACK2, - ACTIONS(5575), 1, + ACTIONS(5555), 1, anon_sym_AMP, - STATE(1384), 1, + STATE(1388), 1, sym_plain_type, - STATE(4423), 1, + STATE(4427), 1, sym_reference_expression, - STATE(1294), 2, + STATE(1303), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1344), 4, + STATE(1347), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1345), 12, + STATE(1406), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281053,47 +281679,47 @@ static const uint16_t ts_small_parse_table[] = { [106833] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3708), 1, + sym_identifier, + ACTIONS(3710), 1, + anon_sym_fn, + ACTIONS(3712), 1, + anon_sym_STAR, + ACTIONS(3722), 1, + anon_sym_shared, + ACTIONS(3724), 1, anon_sym_map_LBRACK, - ACTIONS(83), 1, + ACTIONS(3726), 1, anon_sym_chan, - ACTIONS(85), 1, + ACTIONS(3728), 1, anon_sym_thread, - ACTIONS(87), 1, + ACTIONS(3730), 1, anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5499), 1, + anon_sym_QMARK, + ACTIONS(5501), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5503), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5505), 1, anon_sym_AMP, - STATE(3974), 1, + STATE(2597), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(2315), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281109,47 +281735,47 @@ static const uint16_t ts_small_parse_table[] = { [106909] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, - sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, - anon_sym_fn, - ACTIONS(3563), 1, - anon_sym_struct, - ACTIONS(3573), 1, - anon_sym_shared, - ACTIONS(3575), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(3577), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3579), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3581), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5537), 1, + ACTIONS(591), 1, + sym_identifier, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(609), 1, + anon_sym_shared, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5539), 1, - anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(2070), 1, + STATE(2393), 1, sym_plain_type, - STATE(4465), 1, + STATE(4655), 1, sym_reference_expression, - STATE(1919), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2126), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2127), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281165,47 +281791,47 @@ static const uint16_t ts_small_parse_table[] = { [106985] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3383), 1, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3708), 1, sym_identifier, - ACTIONS(3387), 1, + ACTIONS(3710), 1, anon_sym_fn, - ACTIONS(3391), 1, - anon_sym_struct, - ACTIONS(3401), 1, + ACTIONS(3712), 1, + anon_sym_STAR, + ACTIONS(3722), 1, anon_sym_shared, - ACTIONS(3405), 1, + ACTIONS(3724), 1, + anon_sym_map_LBRACK, + ACTIONS(3726), 1, anon_sym_chan, - ACTIONS(3407), 1, + ACTIONS(3728), 1, anon_sym_thread, - ACTIONS(3409), 1, + ACTIONS(3730), 1, anon_sym_atomic, - ACTIONS(5415), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_STAR, - ACTIONS(5421), 1, + ACTIONS(5499), 1, anon_sym_QMARK, - ACTIONS(5423), 1, + ACTIONS(5501), 1, anon_sym_BANG, - ACTIONS(5425), 1, + ACTIONS(5503), 1, anon_sym_LBRACK2, - ACTIONS(5427), 1, + ACTIONS(5505), 1, anon_sym_AMP, - ACTIONS(5429), 1, - anon_sym_map_LBRACK, - STATE(1476), 1, + STATE(2599), 1, sym_plain_type, - STATE(4515), 1, + STATE(4655), 1, sym_reference_expression, - STATE(1411), 2, + STATE(2315), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1465), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1427), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281221,47 +281847,47 @@ static const uint16_t ts_small_parse_table[] = { [107061] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, + ACTIONS(3763), 1, sym_identifier, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(5321), 1, + ACTIONS(3767), 1, anon_sym_fn, - ACTIONS(5333), 1, + ACTIONS(3771), 1, + anon_sym_struct, + ACTIONS(3781), 1, anon_sym_shared, - ACTIONS(5337), 1, + ACTIONS(3785), 1, anon_sym_chan, - ACTIONS(5339), 1, + ACTIONS(3787), 1, anon_sym_thread, - ACTIONS(5341), 1, + ACTIONS(3789), 1, anon_sym_atomic, - ACTIONS(5399), 1, + ACTIONS(5607), 1, anon_sym_LPAREN, - ACTIONS(5403), 1, + ACTIONS(5609), 1, anon_sym_STAR, - ACTIONS(5405), 1, + ACTIONS(5611), 1, anon_sym_QMARK, - ACTIONS(5407), 1, + ACTIONS(5613), 1, anon_sym_BANG, - ACTIONS(5409), 1, + ACTIONS(5615), 1, anon_sym_LBRACK2, - ACTIONS(5411), 1, + ACTIONS(5617), 1, anon_sym_AMP, - ACTIONS(5413), 1, + ACTIONS(5619), 1, anon_sym_map_LBRACK, - STATE(1636), 1, + STATE(2569), 1, sym_plain_type, - STATE(4416), 1, + STATE(4490), 1, sym_reference_expression, - STATE(3390), 2, + STATE(2453), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1665), 4, + STATE(2587), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1641), 12, + STATE(2535), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281277,47 +281903,47 @@ static const uint16_t ts_small_parse_table[] = { [107137] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4274), 1, + ACTIONS(3361), 1, sym_identifier, - ACTIONS(4276), 1, + ACTIONS(3363), 1, anon_sym_LPAREN, - ACTIONS(4278), 1, + ACTIONS(3365), 1, anon_sym_fn, - ACTIONS(4280), 1, + ACTIONS(3367), 1, anon_sym_STAR, - ACTIONS(4282), 1, + ACTIONS(3369), 1, anon_sym_struct, - ACTIONS(4292), 1, + ACTIONS(3379), 1, anon_sym_shared, - ACTIONS(4294), 1, + ACTIONS(3381), 1, anon_sym_map_LBRACK, - ACTIONS(4296), 1, + ACTIONS(3383), 1, anon_sym_chan, - ACTIONS(4298), 1, + ACTIONS(3385), 1, anon_sym_thread, - ACTIONS(4300), 1, + ACTIONS(3387), 1, anon_sym_atomic, - ACTIONS(5547), 1, - anon_sym_QMARK, ACTIONS(5549), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5551), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5553), 1, + anon_sym_LBRACK2, + ACTIONS(5555), 1, anon_sym_AMP, - STATE(2754), 1, + STATE(1342), 1, sym_plain_type, - STATE(4574), 1, + STATE(4427), 1, sym_reference_expression, - STATE(2635), 2, + STATE(1303), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2723), 4, + STATE(1347), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2724), 12, + STATE(1406), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281333,47 +281959,47 @@ static const uint16_t ts_small_parse_table[] = { [107213] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, + ACTIONS(3361), 1, sym_identifier, - ACTIONS(3351), 1, + ACTIONS(3363), 1, anon_sym_LPAREN, - ACTIONS(3353), 1, + ACTIONS(3365), 1, anon_sym_fn, - ACTIONS(3355), 1, + ACTIONS(3367), 1, anon_sym_STAR, - ACTIONS(3357), 1, + ACTIONS(3369), 1, anon_sym_struct, - ACTIONS(3367), 1, + ACTIONS(3379), 1, anon_sym_shared, - ACTIONS(3369), 1, + ACTIONS(3381), 1, anon_sym_map_LBRACK, - ACTIONS(3371), 1, + ACTIONS(3383), 1, anon_sym_chan, - ACTIONS(3373), 1, + ACTIONS(3385), 1, anon_sym_thread, - ACTIONS(3375), 1, + ACTIONS(3387), 1, anon_sym_atomic, - ACTIONS(5569), 1, + ACTIONS(5549), 1, anon_sym_QMARK, - ACTIONS(5571), 1, + ACTIONS(5551), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5553), 1, anon_sym_LBRACK2, - ACTIONS(5575), 1, + ACTIONS(5555), 1, anon_sym_AMP, - STATE(1309), 1, + STATE(1333), 1, sym_plain_type, - STATE(4423), 1, + STATE(4427), 1, sym_reference_expression, - STATE(1294), 2, + STATE(1303), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1344), 4, + STATE(1347), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1345), 12, + STATE(1406), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281389,47 +282015,47 @@ static const uint16_t ts_small_parse_table[] = { [107289] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3730), 1, + ACTIONS(3763), 1, sym_identifier, - ACTIONS(3734), 1, + ACTIONS(3767), 1, anon_sym_fn, - ACTIONS(3738), 1, + ACTIONS(3771), 1, anon_sym_struct, - ACTIONS(3748), 1, + ACTIONS(3781), 1, anon_sym_shared, - ACTIONS(3752), 1, + ACTIONS(3785), 1, anon_sym_chan, - ACTIONS(3754), 1, + ACTIONS(3787), 1, anon_sym_thread, - ACTIONS(3756), 1, + ACTIONS(3789), 1, anon_sym_atomic, - ACTIONS(5493), 1, + ACTIONS(5607), 1, anon_sym_LPAREN, - ACTIONS(5495), 1, + ACTIONS(5609), 1, anon_sym_STAR, - ACTIONS(5497), 1, + ACTIONS(5611), 1, anon_sym_QMARK, - ACTIONS(5499), 1, + ACTIONS(5613), 1, anon_sym_BANG, - ACTIONS(5501), 1, + ACTIONS(5615), 1, anon_sym_LBRACK2, - ACTIONS(5503), 1, + ACTIONS(5617), 1, anon_sym_AMP, - ACTIONS(5505), 1, + ACTIONS(5619), 1, anon_sym_map_LBRACK, - STATE(2470), 1, + STATE(2555), 1, sym_plain_type, - STATE(4486), 1, + STATE(4490), 1, sym_reference_expression, - STATE(2457), 2, + STATE(2453), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2570), 4, + STATE(2587), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2569), 12, + STATE(2535), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281445,47 +282071,47 @@ static const uint16_t ts_small_parse_table[] = { [107365] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, + ACTIONS(3205), 1, sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, - anon_sym_fn, - ACTIONS(3563), 1, + ACTIONS(3427), 1, anon_sym_struct, - ACTIONS(3573), 1, + ACTIONS(5327), 1, + anon_sym_fn, + ACTIONS(5339), 1, anon_sym_shared, - ACTIONS(3575), 1, - anon_sym_map_LBRACK, - ACTIONS(3577), 1, + ACTIONS(5343), 1, anon_sym_chan, - ACTIONS(3579), 1, + ACTIONS(5345), 1, anon_sym_thread, - ACTIONS(3581), 1, + ACTIONS(5347), 1, anon_sym_atomic, - ACTIONS(5537), 1, + ACTIONS(5405), 1, + anon_sym_LPAREN, + ACTIONS(5409), 1, anon_sym_STAR, - ACTIONS(5539), 1, + ACTIONS(5411), 1, anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5413), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5415), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5417), 1, anon_sym_AMP, - STATE(2011), 1, + ACTIONS(5419), 1, + anon_sym_map_LBRACK, + STATE(1659), 1, sym_plain_type, - STATE(4465), 1, + STATE(4425), 1, sym_reference_expression, - STATE(1919), 2, + STATE(3388), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2126), 4, + STATE(1636), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2127), 12, + STATE(1651), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281501,47 +282127,47 @@ static const uint16_t ts_small_parse_table[] = { [107441] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, + ACTIONS(3763), 1, sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, + ACTIONS(3767), 1, anon_sym_fn, - ACTIONS(3563), 1, + ACTIONS(3771), 1, anon_sym_struct, - ACTIONS(3573), 1, + ACTIONS(3781), 1, anon_sym_shared, - ACTIONS(3575), 1, - anon_sym_map_LBRACK, - ACTIONS(3577), 1, + ACTIONS(3785), 1, anon_sym_chan, - ACTIONS(3579), 1, + ACTIONS(3787), 1, anon_sym_thread, - ACTIONS(3581), 1, + ACTIONS(3789), 1, anon_sym_atomic, - ACTIONS(5537), 1, + ACTIONS(5607), 1, + anon_sym_LPAREN, + ACTIONS(5609), 1, anon_sym_STAR, - ACTIONS(5539), 1, + ACTIONS(5611), 1, anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5613), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5615), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5617), 1, anon_sym_AMP, - STATE(2035), 1, + ACTIONS(5619), 1, + anon_sym_map_LBRACK, + STATE(2544), 1, sym_plain_type, - STATE(4465), 1, + STATE(4490), 1, sym_reference_expression, - STATE(1919), 2, + STATE(2453), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2126), 4, + STATE(2587), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2127), 12, + STATE(2535), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281557,47 +282183,47 @@ static const uint16_t ts_small_parse_table[] = { [107517] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, sym_identifier, - ACTIONS(1606), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(1610), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(1620), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(1624), 1, - anon_sym_chan, - ACTIONS(1626), 1, - anon_sym_thread, - ACTIONS(1628), 1, - anon_sym_atomic, - ACTIONS(5591), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(5593), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5595), 1, - anon_sym_QMARK, - ACTIONS(5597), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5599), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5601), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5603), 1, - anon_sym_map_LBRACK, - STATE(1079), 1, + STATE(4419), 1, sym_plain_type, - STATE(4444), 1, + STATE(4655), 1, sym_reference_expression, - STATE(994), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1059), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1060), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281613,47 +282239,47 @@ static const uint16_t ts_small_parse_table[] = { [107593] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(3389), 1, sym_identifier, - ACTIONS(1606), 1, + ACTIONS(3393), 1, anon_sym_fn, - ACTIONS(1610), 1, + ACTIONS(3397), 1, anon_sym_struct, - ACTIONS(1620), 1, + ACTIONS(3407), 1, anon_sym_shared, - ACTIONS(1624), 1, + ACTIONS(3411), 1, anon_sym_chan, - ACTIONS(1626), 1, + ACTIONS(3413), 1, anon_sym_thread, - ACTIONS(1628), 1, + ACTIONS(3415), 1, anon_sym_atomic, - ACTIONS(5591), 1, + ACTIONS(5421), 1, anon_sym_LPAREN, - ACTIONS(5593), 1, + ACTIONS(5425), 1, anon_sym_STAR, - ACTIONS(5595), 1, + ACTIONS(5427), 1, anon_sym_QMARK, - ACTIONS(5597), 1, + ACTIONS(5429), 1, anon_sym_BANG, - ACTIONS(5599), 1, + ACTIONS(5431), 1, anon_sym_LBRACK2, - ACTIONS(5601), 1, + ACTIONS(5433), 1, anon_sym_AMP, - ACTIONS(5603), 1, + ACTIONS(5435), 1, anon_sym_map_LBRACK, - STATE(1086), 1, + STATE(1476), 1, sym_plain_type, - STATE(4444), 1, + STATE(4462), 1, sym_reference_expression, - STATE(994), 2, + STATE(1415), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1059), 4, + STATE(1479), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1060), 12, + STATE(1481), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281669,47 +282295,47 @@ static const uint16_t ts_small_parse_table[] = { [107669] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, + ACTIONS(3763), 1, sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, + ACTIONS(3767), 1, anon_sym_fn, - ACTIONS(3563), 1, + ACTIONS(3771), 1, anon_sym_struct, - ACTIONS(3573), 1, + ACTIONS(3781), 1, anon_sym_shared, - ACTIONS(3575), 1, - anon_sym_map_LBRACK, - ACTIONS(3577), 1, + ACTIONS(3785), 1, anon_sym_chan, - ACTIONS(3579), 1, + ACTIONS(3787), 1, anon_sym_thread, - ACTIONS(3581), 1, + ACTIONS(3789), 1, anon_sym_atomic, - ACTIONS(5537), 1, + ACTIONS(5607), 1, + anon_sym_LPAREN, + ACTIONS(5609), 1, anon_sym_STAR, - ACTIONS(5539), 1, + ACTIONS(5611), 1, anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5613), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5615), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5617), 1, anon_sym_AMP, - STATE(2042), 1, + ACTIONS(5619), 1, + anon_sym_map_LBRACK, + STATE(2592), 1, sym_plain_type, - STATE(4465), 1, + STATE(4490), 1, sym_reference_expression, - STATE(1919), 2, + STATE(2453), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2126), 4, + STATE(2587), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2127), 12, + STATE(2535), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281725,47 +282351,47 @@ static const uint16_t ts_small_parse_table[] = { [107745] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3205), 1, sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3427), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(5327), 1, + anon_sym_fn, + ACTIONS(5339), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(5343), 1, + anon_sym_chan, + ACTIONS(5345), 1, + anon_sym_thread, + ACTIONS(5347), 1, + anon_sym_atomic, + ACTIONS(5405), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5409), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5411), 1, + anon_sym_QMARK, + ACTIONS(5413), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5415), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5417), 1, anon_sym_AMP, - STATE(4600), 1, - sym_reference_expression, - STATE(4661), 1, + ACTIONS(5419), 1, + anon_sym_map_LBRACK, + STATE(1656), 1, sym_plain_type, - STATE(3581), 2, + STATE(4425), 1, + sym_reference_expression, + STATE(3388), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1636), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1651), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281781,47 +282407,47 @@ static const uint16_t ts_small_parse_table[] = { [107821] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, - sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, - anon_sym_fn, - ACTIONS(3563), 1, - anon_sym_struct, - ACTIONS(3573), 1, - anon_sym_shared, - ACTIONS(3575), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(3577), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3579), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3581), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5537), 1, + ACTIONS(591), 1, + sym_identifier, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(609), 1, + anon_sym_shared, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5539), 1, - anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(2099), 1, + STATE(4542), 1, sym_plain_type, - STATE(4465), 1, + STATE(4655), 1, sym_reference_expression, - STATE(1919), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2126), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2127), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281837,47 +282463,47 @@ static const uint16_t ts_small_parse_table[] = { [107897] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3763), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(3767), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3771), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(3781), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3785), 1, + anon_sym_chan, + ACTIONS(3787), 1, + anon_sym_thread, + ACTIONS(3789), 1, + anon_sym_atomic, + ACTIONS(5607), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5609), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5611), 1, + anon_sym_QMARK, + ACTIONS(5613), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5615), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5617), 1, anon_sym_AMP, - STATE(2335), 1, + ACTIONS(5619), 1, + anon_sym_map_LBRACK, + STATE(2591), 1, sym_plain_type, - STATE(4600), 1, + STATE(4490), 1, sym_reference_expression, - STATE(3581), 2, + STATE(2453), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2587), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2535), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281893,47 +282519,47 @@ static const uint16_t ts_small_parse_table[] = { [107973] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(3205), 1, sym_identifier, - ACTIONS(559), 1, - anon_sym_fn, - ACTIONS(563), 1, + ACTIONS(3427), 1, anon_sym_struct, - ACTIONS(573), 1, + ACTIONS(5327), 1, + anon_sym_fn, + ACTIONS(5339), 1, anon_sym_shared, - ACTIONS(577), 1, + ACTIONS(5343), 1, anon_sym_chan, - ACTIONS(579), 1, + ACTIONS(5345), 1, anon_sym_thread, - ACTIONS(581), 1, + ACTIONS(5347), 1, anon_sym_atomic, - ACTIONS(5605), 1, + ACTIONS(5405), 1, anon_sym_LPAREN, - ACTIONS(5607), 1, + ACTIONS(5409), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5411), 1, anon_sym_QMARK, - ACTIONS(5611), 1, + ACTIONS(5413), 1, anon_sym_BANG, - ACTIONS(5613), 1, + ACTIONS(5415), 1, anon_sym_LBRACK2, - ACTIONS(5615), 1, + ACTIONS(5417), 1, anon_sym_AMP, - ACTIONS(5617), 1, + ACTIONS(5419), 1, anon_sym_map_LBRACK, - STATE(933), 1, + STATE(1655), 1, sym_plain_type, - STATE(4460), 1, + STATE(4425), 1, sym_reference_expression, - STATE(521), 2, + STATE(3388), 2, sym_type_reference_expression, sym_qualified_type, - STATE(898), 4, + STATE(1636), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(896), 12, + STATE(1651), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281949,47 +282575,47 @@ static const uint16_t ts_small_parse_table[] = { [108049] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3389), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(3393), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3397), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(3407), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3411), 1, + anon_sym_chan, + ACTIONS(3413), 1, + anon_sym_thread, + ACTIONS(3415), 1, + anon_sym_atomic, + ACTIONS(5421), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5425), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5427), 1, + anon_sym_QMARK, + ACTIONS(5429), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5431), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5433), 1, anon_sym_AMP, - STATE(2379), 1, + ACTIONS(5435), 1, + anon_sym_map_LBRACK, + STATE(1455), 1, sym_plain_type, - STATE(4600), 1, + STATE(4462), 1, sym_reference_expression, - STATE(3581), 2, + STATE(1415), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1479), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1481), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282005,47 +282631,47 @@ static const uint16_t ts_small_parse_table[] = { [108125] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3708), 1, sym_identifier, - ACTIONS(559), 1, + ACTIONS(3710), 1, anon_sym_fn, - ACTIONS(563), 1, - anon_sym_struct, - ACTIONS(573), 1, + ACTIONS(3712), 1, + anon_sym_STAR, + ACTIONS(3722), 1, anon_sym_shared, - ACTIONS(577), 1, + ACTIONS(3724), 1, + anon_sym_map_LBRACK, + ACTIONS(3726), 1, anon_sym_chan, - ACTIONS(579), 1, + ACTIONS(3728), 1, anon_sym_thread, - ACTIONS(581), 1, + ACTIONS(3730), 1, anon_sym_atomic, - ACTIONS(5605), 1, - anon_sym_LPAREN, - ACTIONS(5607), 1, - anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5499), 1, anon_sym_QMARK, - ACTIONS(5611), 1, + ACTIONS(5501), 1, anon_sym_BANG, - ACTIONS(5613), 1, + ACTIONS(5503), 1, anon_sym_LBRACK2, - ACTIONS(5615), 1, + ACTIONS(5505), 1, anon_sym_AMP, - ACTIONS(5617), 1, - anon_sym_map_LBRACK, - STATE(934), 1, + STATE(2350), 1, sym_plain_type, - STATE(4460), 1, + STATE(4655), 1, sym_reference_expression, - STATE(521), 2, + STATE(2315), 2, sym_type_reference_expression, sym_qualified_type, - STATE(898), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(896), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282061,47 +282687,47 @@ static const uint16_t ts_small_parse_table[] = { [108201] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4274), 1, + ACTIONS(3389), 1, sym_identifier, - ACTIONS(4276), 1, - anon_sym_LPAREN, - ACTIONS(4278), 1, + ACTIONS(3393), 1, anon_sym_fn, - ACTIONS(4280), 1, - anon_sym_STAR, - ACTIONS(4282), 1, + ACTIONS(3397), 1, anon_sym_struct, - ACTIONS(4292), 1, + ACTIONS(3407), 1, anon_sym_shared, - ACTIONS(4294), 1, - anon_sym_map_LBRACK, - ACTIONS(4296), 1, + ACTIONS(3411), 1, anon_sym_chan, - ACTIONS(4298), 1, + ACTIONS(3413), 1, anon_sym_thread, - ACTIONS(4300), 1, + ACTIONS(3415), 1, anon_sym_atomic, - ACTIONS(5547), 1, + ACTIONS(5421), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_STAR, + ACTIONS(5427), 1, anon_sym_QMARK, - ACTIONS(5549), 1, + ACTIONS(5429), 1, anon_sym_BANG, - ACTIONS(5551), 1, + ACTIONS(5431), 1, anon_sym_LBRACK2, - ACTIONS(5553), 1, + ACTIONS(5433), 1, anon_sym_AMP, - STATE(2765), 1, + ACTIONS(5435), 1, + anon_sym_map_LBRACK, + STATE(1484), 1, sym_plain_type, - STATE(4574), 1, + STATE(4462), 1, sym_reference_expression, - STATE(2635), 2, + STATE(1415), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2723), 4, + STATE(1479), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2724), 12, + STATE(1481), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282117,47 +282743,47 @@ static const uint16_t ts_small_parse_table[] = { [108277] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3389), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(3393), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3397), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(3407), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3411), 1, + anon_sym_chan, + ACTIONS(3413), 1, + anon_sym_thread, + ACTIONS(3415), 1, + anon_sym_atomic, + ACTIONS(5421), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5425), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5427), 1, + anon_sym_QMARK, + ACTIONS(5429), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5431), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5433), 1, anon_sym_AMP, - STATE(3902), 1, + ACTIONS(5435), 1, + anon_sym_map_LBRACK, + STATE(1435), 1, sym_plain_type, - STATE(4600), 1, + STATE(4462), 1, sym_reference_expression, - STATE(3581), 2, + STATE(1415), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1479), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1481), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282173,47 +282799,47 @@ static const uint16_t ts_small_parse_table[] = { [108353] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, - sym_identifier, - ACTIONS(3557), 1, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3559), 1, + ACTIONS(3708), 1, + sym_identifier, + ACTIONS(3710), 1, anon_sym_fn, - ACTIONS(3563), 1, - anon_sym_struct, - ACTIONS(3573), 1, + ACTIONS(3712), 1, + anon_sym_STAR, + ACTIONS(3722), 1, anon_sym_shared, - ACTIONS(3575), 1, + ACTIONS(3724), 1, anon_sym_map_LBRACK, - ACTIONS(3577), 1, + ACTIONS(3726), 1, anon_sym_chan, - ACTIONS(3579), 1, + ACTIONS(3728), 1, anon_sym_thread, - ACTIONS(3581), 1, + ACTIONS(3730), 1, anon_sym_atomic, - ACTIONS(5537), 1, - anon_sym_STAR, - ACTIONS(5539), 1, + ACTIONS(5499), 1, anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5501), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5503), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5505), 1, anon_sym_AMP, - STATE(2108), 1, + STATE(2346), 1, sym_plain_type, - STATE(4465), 1, + STATE(4655), 1, sym_reference_expression, - STATE(1919), 2, + STATE(2315), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2126), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2127), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282229,47 +282855,47 @@ static const uint16_t ts_small_parse_table[] = { [108429] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3730), 1, + ACTIONS(3275), 1, sym_identifier, - ACTIONS(3734), 1, + ACTIONS(3279), 1, anon_sym_fn, - ACTIONS(3738), 1, + ACTIONS(3283), 1, anon_sym_struct, - ACTIONS(3748), 1, + ACTIONS(3293), 1, anon_sym_shared, - ACTIONS(3752), 1, + ACTIONS(3297), 1, anon_sym_chan, - ACTIONS(3754), 1, + ACTIONS(3299), 1, anon_sym_thread, - ACTIONS(3756), 1, + ACTIONS(3301), 1, anon_sym_atomic, - ACTIONS(5493), 1, + ACTIONS(5639), 1, anon_sym_LPAREN, - ACTIONS(5495), 1, + ACTIONS(5641), 1, anon_sym_STAR, - ACTIONS(5497), 1, + ACTIONS(5643), 1, anon_sym_QMARK, - ACTIONS(5499), 1, + ACTIONS(5645), 1, anon_sym_BANG, - ACTIONS(5501), 1, + ACTIONS(5647), 1, anon_sym_LBRACK2, - ACTIONS(5503), 1, + ACTIONS(5649), 1, anon_sym_AMP, - ACTIONS(5505), 1, + ACTIONS(5651), 1, anon_sym_map_LBRACK, - STATE(2536), 1, + STATE(1181), 1, sym_plain_type, - STATE(4486), 1, + STATE(4511), 1, sym_reference_expression, - STATE(2457), 2, + STATE(1167), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2570), 4, + STATE(1254), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2569), 12, + STATE(1255), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282285,47 +282911,47 @@ static const uint16_t ts_small_parse_table[] = { [108505] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, + ACTIONS(3275), 1, sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, + ACTIONS(3279), 1, anon_sym_fn, - ACTIONS(3563), 1, + ACTIONS(3283), 1, anon_sym_struct, - ACTIONS(3573), 1, + ACTIONS(3293), 1, anon_sym_shared, - ACTIONS(3575), 1, - anon_sym_map_LBRACK, - ACTIONS(3577), 1, + ACTIONS(3297), 1, anon_sym_chan, - ACTIONS(3579), 1, + ACTIONS(3299), 1, anon_sym_thread, - ACTIONS(3581), 1, + ACTIONS(3301), 1, anon_sym_atomic, - ACTIONS(5537), 1, + ACTIONS(5639), 1, + anon_sym_LPAREN, + ACTIONS(5641), 1, anon_sym_STAR, - ACTIONS(5539), 1, + ACTIONS(5643), 1, anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5645), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5647), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5649), 1, anon_sym_AMP, - STATE(1975), 1, + ACTIONS(5651), 1, + anon_sym_map_LBRACK, + STATE(1182), 1, sym_plain_type, - STATE(4465), 1, + STATE(4511), 1, sym_reference_expression, - STATE(1919), 2, + STATE(1167), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2126), 4, + STATE(1254), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2127), 12, + STATE(1255), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282341,47 +282967,47 @@ static const uint16_t ts_small_parse_table[] = { [108581] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4274), 1, - sym_identifier, - ACTIONS(4276), 1, - anon_sym_LPAREN, - ACTIONS(4278), 1, - anon_sym_fn, - ACTIONS(4280), 1, - anon_sym_STAR, - ACTIONS(4282), 1, - anon_sym_struct, - ACTIONS(4292), 1, - anon_sym_shared, - ACTIONS(4294), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(4296), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(4298), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(4300), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5547), 1, - anon_sym_QMARK, - ACTIONS(5549), 1, + ACTIONS(591), 1, + sym_identifier, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(609), 1, + anon_sym_shared, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, + anon_sym_STAR, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5551), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5553), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(2767), 1, + STATE(4064), 1, sym_plain_type, - STATE(4574), 1, + STATE(4655), 1, sym_reference_expression, - STATE(2635), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2723), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2724), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282397,47 +283023,47 @@ static const uint16_t ts_small_parse_table[] = { [108657] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, + ACTIONS(4280), 1, sym_identifier, - ACTIONS(3529), 1, + ACTIONS(4282), 1, anon_sym_LPAREN, - ACTIONS(3531), 1, + ACTIONS(4284), 1, anon_sym_fn, - ACTIONS(3535), 1, + ACTIONS(4286), 1, + anon_sym_STAR, + ACTIONS(4288), 1, anon_sym_struct, - ACTIONS(3545), 1, + ACTIONS(4298), 1, anon_sym_shared, - ACTIONS(3547), 1, + ACTIONS(4300), 1, anon_sym_map_LBRACK, - ACTIONS(3549), 1, + ACTIONS(4302), 1, anon_sym_chan, - ACTIONS(3551), 1, + ACTIONS(4304), 1, anon_sym_thread, - ACTIONS(3553), 1, + ACTIONS(4306), 1, anon_sym_atomic, - ACTIONS(5507), 1, - anon_sym_STAR, - ACTIONS(5509), 1, + ACTIONS(5621), 1, anon_sym_QMARK, - ACTIONS(5511), 1, + ACTIONS(5623), 1, anon_sym_BANG, - ACTIONS(5513), 1, + ACTIONS(5625), 1, anon_sym_LBRACK2, - ACTIONS(5515), 1, + ACTIONS(5627), 1, anon_sym_AMP, - STATE(2010), 1, + STATE(2671), 1, sym_plain_type, - STATE(4528), 1, + STATE(4578), 1, sym_reference_expression, - STATE(1923), 2, + STATE(2667), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2020), 4, + STATE(2727), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1942), 12, + STATE(2728), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282453,47 +283079,47 @@ static const uint16_t ts_small_parse_table[] = { [108733] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3277), 1, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3708), 1, sym_identifier, - ACTIONS(3281), 1, + ACTIONS(3710), 1, anon_sym_fn, - ACTIONS(3285), 1, - anon_sym_struct, - ACTIONS(3295), 1, + ACTIONS(3712), 1, + anon_sym_STAR, + ACTIONS(3722), 1, anon_sym_shared, - ACTIONS(3299), 1, + ACTIONS(3724), 1, + anon_sym_map_LBRACK, + ACTIONS(3726), 1, anon_sym_chan, - ACTIONS(3301), 1, + ACTIONS(3728), 1, anon_sym_thread, - ACTIONS(3303), 1, + ACTIONS(3730), 1, anon_sym_atomic, - ACTIONS(5633), 1, - anon_sym_LPAREN, - ACTIONS(5635), 1, - anon_sym_STAR, - ACTIONS(5637), 1, + ACTIONS(5499), 1, anon_sym_QMARK, - ACTIONS(5639), 1, + ACTIONS(5501), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5503), 1, anon_sym_LBRACK2, - ACTIONS(5643), 1, + ACTIONS(5505), 1, anon_sym_AMP, - ACTIONS(5645), 1, - anon_sym_map_LBRACK, - STATE(1223), 1, + STATE(2393), 1, sym_plain_type, - STATE(4507), 1, + STATE(4655), 1, sym_reference_expression, - STATE(1164), 2, + STATE(2315), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1177), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1178), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282509,47 +283135,47 @@ static const uint16_t ts_small_parse_table[] = { [108809] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, + ACTIONS(559), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(565), 1, anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, + ACTIONS(569), 1, + anon_sym_struct, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3718), 1, - anon_sym_map_LBRACK, - ACTIONS(3720), 1, + ACTIONS(583), 1, anon_sym_chan, - ACTIONS(3722), 1, + ACTIONS(585), 1, anon_sym_thread, - ACTIONS(3724), 1, + ACTIONS(587), 1, anon_sym_atomic, - ACTIONS(5529), 1, + ACTIONS(5507), 1, + anon_sym_LPAREN, + ACTIONS(5509), 1, + anon_sym_STAR, + ACTIONS(5511), 1, anon_sym_QMARK, - ACTIONS(5531), 1, + ACTIONS(5513), 1, anon_sym_BANG, - ACTIONS(5533), 1, + ACTIONS(5515), 1, anon_sym_LBRACK2, - ACTIONS(5535), 1, + ACTIONS(5517), 1, anon_sym_AMP, - STATE(2374), 1, + ACTIONS(5519), 1, + anon_sym_map_LBRACK, + STATE(911), 1, sym_plain_type, - STATE(4600), 1, + STATE(4438), 1, sym_reference_expression, - STATE(2318), 2, + STATE(618), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(941), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(940), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282565,47 +283191,47 @@ static const uint16_t ts_small_parse_table[] = { [108885] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3443), 1, + ACTIONS(3763), 1, sym_identifier, - ACTIONS(3447), 1, + ACTIONS(3767), 1, anon_sym_fn, - ACTIONS(3451), 1, + ACTIONS(3771), 1, anon_sym_struct, - ACTIONS(3461), 1, + ACTIONS(3781), 1, anon_sym_shared, - ACTIONS(3465), 1, + ACTIONS(3785), 1, anon_sym_chan, - ACTIONS(3467), 1, + ACTIONS(3787), 1, anon_sym_thread, - ACTIONS(3469), 1, + ACTIONS(3789), 1, anon_sym_atomic, - ACTIONS(5577), 1, + ACTIONS(5607), 1, anon_sym_LPAREN, - ACTIONS(5579), 1, + ACTIONS(5609), 1, anon_sym_STAR, - ACTIONS(5581), 1, + ACTIONS(5611), 1, anon_sym_QMARK, - ACTIONS(5583), 1, + ACTIONS(5613), 1, anon_sym_BANG, - ACTIONS(5585), 1, + ACTIONS(5615), 1, anon_sym_LBRACK2, - ACTIONS(5587), 1, + ACTIONS(5617), 1, anon_sym_AMP, - ACTIONS(5589), 1, + ACTIONS(5619), 1, anon_sym_map_LBRACK, - STATE(1868), 1, + STATE(2528), 1, sym_plain_type, - STATE(4549), 1, + STATE(4490), 1, sym_reference_expression, - STATE(1787), 2, + STATE(2453), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1886), 4, + STATE(2587), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1885), 12, + STATE(2535), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282621,47 +283247,47 @@ static const uint16_t ts_small_parse_table[] = { [108961] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, - sym_identifier, ACTIONS(559), 1, + sym_identifier, + ACTIONS(565), 1, anon_sym_fn, - ACTIONS(563), 1, + ACTIONS(569), 1, anon_sym_struct, - ACTIONS(573), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(577), 1, + ACTIONS(583), 1, anon_sym_chan, - ACTIONS(579), 1, + ACTIONS(585), 1, anon_sym_thread, - ACTIONS(581), 1, + ACTIONS(587), 1, anon_sym_atomic, - ACTIONS(5605), 1, + ACTIONS(5507), 1, anon_sym_LPAREN, - ACTIONS(5607), 1, + ACTIONS(5509), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5511), 1, anon_sym_QMARK, - ACTIONS(5611), 1, + ACTIONS(5513), 1, anon_sym_BANG, - ACTIONS(5613), 1, + ACTIONS(5515), 1, anon_sym_LBRACK2, - ACTIONS(5615), 1, + ACTIONS(5517), 1, anon_sym_AMP, - ACTIONS(5617), 1, + ACTIONS(5519), 1, anon_sym_map_LBRACK, - STATE(949), 1, + STATE(900), 1, sym_plain_type, - STATE(4460), 1, + STATE(4438), 1, sym_reference_expression, - STATE(521), 2, + STATE(618), 2, sym_type_reference_expression, sym_qualified_type, - STATE(898), 4, + STATE(941), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(896), 12, + STATE(940), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282677,47 +283303,47 @@ static const uint16_t ts_small_parse_table[] = { [109037] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, - sym_identifier, ACTIONS(559), 1, + sym_identifier, + ACTIONS(565), 1, anon_sym_fn, - ACTIONS(563), 1, + ACTIONS(569), 1, anon_sym_struct, - ACTIONS(573), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(577), 1, + ACTIONS(583), 1, anon_sym_chan, - ACTIONS(579), 1, + ACTIONS(585), 1, anon_sym_thread, - ACTIONS(581), 1, + ACTIONS(587), 1, anon_sym_atomic, - ACTIONS(5605), 1, + ACTIONS(5507), 1, anon_sym_LPAREN, - ACTIONS(5607), 1, + ACTIONS(5509), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5511), 1, anon_sym_QMARK, - ACTIONS(5611), 1, + ACTIONS(5513), 1, anon_sym_BANG, - ACTIONS(5613), 1, + ACTIONS(5515), 1, anon_sym_LBRACK2, - ACTIONS(5615), 1, + ACTIONS(5517), 1, anon_sym_AMP, - ACTIONS(5617), 1, + ACTIONS(5519), 1, anon_sym_map_LBRACK, - STATE(950), 1, + STATE(901), 1, sym_plain_type, - STATE(4460), 1, + STATE(4438), 1, sym_reference_expression, - STATE(521), 2, + STATE(618), 2, sym_type_reference_expression, sym_qualified_type, - STATE(898), 4, + STATE(941), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(896), 12, + STATE(940), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282733,47 +283359,47 @@ static const uint16_t ts_small_parse_table[] = { [109113] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(2374), 1, + STATE(4518), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282789,47 +283415,47 @@ static const uint16_t ts_small_parse_table[] = { [109189] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 1, - sym_identifier, - ACTIONS(3529), 1, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3531), 1, + ACTIONS(3708), 1, + sym_identifier, + ACTIONS(3710), 1, anon_sym_fn, - ACTIONS(3535), 1, - anon_sym_struct, - ACTIONS(3545), 1, + ACTIONS(3712), 1, + anon_sym_STAR, + ACTIONS(3722), 1, anon_sym_shared, - ACTIONS(3547), 1, + ACTIONS(3724), 1, anon_sym_map_LBRACK, - ACTIONS(3549), 1, + ACTIONS(3726), 1, anon_sym_chan, - ACTIONS(3551), 1, + ACTIONS(3728), 1, anon_sym_thread, - ACTIONS(3553), 1, + ACTIONS(3730), 1, anon_sym_atomic, - ACTIONS(5507), 1, - anon_sym_STAR, - ACTIONS(5509), 1, + ACTIONS(5499), 1, anon_sym_QMARK, - ACTIONS(5511), 1, + ACTIONS(5501), 1, anon_sym_BANG, - ACTIONS(5513), 1, + ACTIONS(5503), 1, anon_sym_LBRACK2, - ACTIONS(5515), 1, + ACTIONS(5505), 1, anon_sym_AMP, - STATE(2007), 1, + STATE(2361), 1, sym_plain_type, - STATE(4528), 1, + STATE(4655), 1, sym_reference_expression, - STATE(1923), 2, + STATE(2315), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2020), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1942), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282845,47 +283471,47 @@ static const uint16_t ts_small_parse_table[] = { [109265] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3443), 1, + ACTIONS(559), 1, sym_identifier, - ACTIONS(3447), 1, + ACTIONS(565), 1, anon_sym_fn, - ACTIONS(3451), 1, + ACTIONS(569), 1, anon_sym_struct, - ACTIONS(3461), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3465), 1, + ACTIONS(583), 1, anon_sym_chan, - ACTIONS(3467), 1, + ACTIONS(585), 1, anon_sym_thread, - ACTIONS(3469), 1, + ACTIONS(587), 1, anon_sym_atomic, - ACTIONS(5577), 1, + ACTIONS(5507), 1, anon_sym_LPAREN, - ACTIONS(5579), 1, + ACTIONS(5509), 1, anon_sym_STAR, - ACTIONS(5581), 1, + ACTIONS(5511), 1, anon_sym_QMARK, - ACTIONS(5583), 1, + ACTIONS(5513), 1, anon_sym_BANG, - ACTIONS(5585), 1, + ACTIONS(5515), 1, anon_sym_LBRACK2, - ACTIONS(5587), 1, + ACTIONS(5517), 1, anon_sym_AMP, - ACTIONS(5589), 1, + ACTIONS(5519), 1, anon_sym_map_LBRACK, - STATE(1911), 1, + STATE(875), 1, sym_plain_type, - STATE(4549), 1, + STATE(4438), 1, sym_reference_expression, - STATE(1787), 2, + STATE(618), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1886), 4, + STATE(941), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1885), 12, + STATE(940), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282901,47 +283527,47 @@ static const uint16_t ts_small_parse_table[] = { [109341] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(559), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(565), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(569), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(583), 1, + anon_sym_chan, + ACTIONS(585), 1, + anon_sym_thread, + ACTIONS(587), 1, + anon_sym_atomic, + ACTIONS(5507), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5509), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5511), 1, + anon_sym_QMARK, + ACTIONS(5513), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5515), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5517), 1, anon_sym_AMP, - STATE(4600), 1, - sym_reference_expression, - STATE(4608), 1, + ACTIONS(5519), 1, + anon_sym_map_LBRACK, + STATE(872), 1, sym_plain_type, - STATE(3581), 2, + STATE(4438), 1, + sym_reference_expression, + STATE(618), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(941), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(940), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282957,47 +283583,47 @@ static const uint16_t ts_small_parse_table[] = { [109417] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(1610), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(1614), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(1618), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(1628), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(1632), 1, + anon_sym_chan, + ACTIONS(1634), 1, + anon_sym_thread, + ACTIONS(1636), 1, + anon_sym_atomic, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5537), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5539), 1, + anon_sym_QMARK, + ACTIONS(5541), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5543), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5545), 1, anon_sym_AMP, - STATE(3865), 1, + ACTIONS(5547), 1, + anon_sym_map_LBRACK, + STATE(1055), 1, sym_plain_type, - STATE(4600), 1, + STATE(4448), 1, sym_reference_expression, - STATE(3581), 2, + STATE(1002), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1084), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1085), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283013,47 +283639,47 @@ static const uint16_t ts_small_parse_table[] = { [109493] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3443), 1, + ACTIONS(1610), 1, sym_identifier, - ACTIONS(3447), 1, + ACTIONS(1614), 1, anon_sym_fn, - ACTIONS(3451), 1, + ACTIONS(1618), 1, anon_sym_struct, - ACTIONS(3461), 1, + ACTIONS(1628), 1, anon_sym_shared, - ACTIONS(3465), 1, + ACTIONS(1632), 1, anon_sym_chan, - ACTIONS(3467), 1, + ACTIONS(1634), 1, anon_sym_thread, - ACTIONS(3469), 1, + ACTIONS(1636), 1, anon_sym_atomic, - ACTIONS(5577), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5579), 1, + ACTIONS(5537), 1, anon_sym_STAR, - ACTIONS(5581), 1, + ACTIONS(5539), 1, anon_sym_QMARK, - ACTIONS(5583), 1, + ACTIONS(5541), 1, anon_sym_BANG, - ACTIONS(5585), 1, + ACTIONS(5543), 1, anon_sym_LBRACK2, - ACTIONS(5587), 1, + ACTIONS(5545), 1, anon_sym_AMP, - ACTIONS(5589), 1, + ACTIONS(5547), 1, anon_sym_map_LBRACK, - STATE(1828), 1, + STATE(1056), 1, sym_plain_type, - STATE(4549), 1, + STATE(4448), 1, sym_reference_expression, - STATE(1787), 2, + STATE(1002), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1886), 4, + STATE(1084), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1885), 12, + STATE(1085), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283069,47 +283695,47 @@ static const uint16_t ts_small_parse_table[] = { [109569] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, + ACTIONS(559), 1, sym_identifier, - ACTIONS(3351), 1, - anon_sym_LPAREN, - ACTIONS(3353), 1, + ACTIONS(565), 1, anon_sym_fn, - ACTIONS(3355), 1, - anon_sym_STAR, - ACTIONS(3357), 1, + ACTIONS(569), 1, anon_sym_struct, - ACTIONS(3367), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3369), 1, - anon_sym_map_LBRACK, - ACTIONS(3371), 1, + ACTIONS(583), 1, anon_sym_chan, - ACTIONS(3373), 1, + ACTIONS(585), 1, anon_sym_thread, - ACTIONS(3375), 1, + ACTIONS(587), 1, anon_sym_atomic, - ACTIONS(5569), 1, + ACTIONS(5507), 1, + anon_sym_LPAREN, + ACTIONS(5509), 1, + anon_sym_STAR, + ACTIONS(5511), 1, anon_sym_QMARK, - ACTIONS(5571), 1, + ACTIONS(5513), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5515), 1, anon_sym_LBRACK2, - ACTIONS(5575), 1, + ACTIONS(5517), 1, anon_sym_AMP, - STATE(1378), 1, + ACTIONS(5519), 1, + anon_sym_map_LBRACK, + STATE(916), 1, sym_plain_type, - STATE(4423), 1, + STATE(4438), 1, sym_reference_expression, - STATE(1294), 2, + STATE(618), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1344), 4, + STATE(941), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1345), 12, + STATE(940), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283125,47 +283751,47 @@ static const uint16_t ts_small_parse_table[] = { [109645] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(4280), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(4284), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(4286), 1, + anon_sym_STAR, + ACTIONS(4288), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(4298), 1, anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(4300), 1, + anon_sym_map_LBRACK, + ACTIONS(4302), 1, + anon_sym_chan, + ACTIONS(4304), 1, + anon_sym_thread, + ACTIONS(4306), 1, + anon_sym_atomic, + ACTIONS(5621), 1, + anon_sym_QMARK, + ACTIONS(5623), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5625), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5627), 1, anon_sym_AMP, - STATE(4600), 1, - sym_reference_expression, - STATE(4659), 1, + STATE(2771), 1, sym_plain_type, - STATE(3581), 2, + STATE(4578), 1, + sym_reference_expression, + STATE(2667), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2727), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2728), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283181,47 +283807,47 @@ static const uint16_t ts_small_parse_table[] = { [109721] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3443), 1, + ACTIONS(4280), 1, sym_identifier, - ACTIONS(3447), 1, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(4284), 1, anon_sym_fn, - ACTIONS(3451), 1, + ACTIONS(4286), 1, + anon_sym_STAR, + ACTIONS(4288), 1, anon_sym_struct, - ACTIONS(3461), 1, + ACTIONS(4298), 1, anon_sym_shared, - ACTIONS(3465), 1, + ACTIONS(4300), 1, + anon_sym_map_LBRACK, + ACTIONS(4302), 1, anon_sym_chan, - ACTIONS(3467), 1, + ACTIONS(4304), 1, anon_sym_thread, - ACTIONS(3469), 1, + ACTIONS(4306), 1, anon_sym_atomic, - ACTIONS(5577), 1, - anon_sym_LPAREN, - ACTIONS(5579), 1, - anon_sym_STAR, - ACTIONS(5581), 1, + ACTIONS(5621), 1, anon_sym_QMARK, - ACTIONS(5583), 1, + ACTIONS(5623), 1, anon_sym_BANG, - ACTIONS(5585), 1, + ACTIONS(5625), 1, anon_sym_LBRACK2, - ACTIONS(5587), 1, + ACTIONS(5627), 1, anon_sym_AMP, - ACTIONS(5589), 1, - anon_sym_map_LBRACK, - STATE(1832), 1, + STATE(2769), 1, sym_plain_type, - STATE(4549), 1, + STATE(4578), 1, sym_reference_expression, - STATE(1787), 2, + STATE(2667), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1886), 4, + STATE(2727), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1885), 12, + STATE(2728), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283237,47 +283863,47 @@ static const uint16_t ts_small_parse_table[] = { [109797] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, sym_identifier, - ACTIONS(1606), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(1610), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(1620), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(1624), 1, - anon_sym_chan, - ACTIONS(1626), 1, - anon_sym_thread, - ACTIONS(1628), 1, - anon_sym_atomic, - ACTIONS(5591), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(5593), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5595), 1, - anon_sym_QMARK, - ACTIONS(5597), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5599), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5601), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5603), 1, - anon_sym_map_LBRACK, - STATE(1099), 1, + STATE(4498), 1, sym_plain_type, - STATE(4444), 1, + STATE(4655), 1, sym_reference_expression, - STATE(994), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1059), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1060), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283293,47 +283919,47 @@ static const uint16_t ts_small_parse_table[] = { [109873] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, + ACTIONS(4280), 1, sym_identifier, - ACTIONS(3351), 1, + ACTIONS(4282), 1, anon_sym_LPAREN, - ACTIONS(3353), 1, + ACTIONS(4284), 1, anon_sym_fn, - ACTIONS(3355), 1, + ACTIONS(4286), 1, anon_sym_STAR, - ACTIONS(3357), 1, + ACTIONS(4288), 1, anon_sym_struct, - ACTIONS(3367), 1, + ACTIONS(4298), 1, anon_sym_shared, - ACTIONS(3369), 1, + ACTIONS(4300), 1, anon_sym_map_LBRACK, - ACTIONS(3371), 1, + ACTIONS(4302), 1, anon_sym_chan, - ACTIONS(3373), 1, + ACTIONS(4304), 1, anon_sym_thread, - ACTIONS(3375), 1, + ACTIONS(4306), 1, anon_sym_atomic, - ACTIONS(5569), 1, + ACTIONS(5621), 1, anon_sym_QMARK, - ACTIONS(5571), 1, + ACTIONS(5623), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5625), 1, anon_sym_LBRACK2, - ACTIONS(5575), 1, + ACTIONS(5627), 1, anon_sym_AMP, - STATE(1380), 1, + STATE(2841), 1, sym_plain_type, - STATE(4423), 1, + STATE(4578), 1, sym_reference_expression, - STATE(1294), 2, + STATE(2667), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1344), 4, + STATE(2727), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1345), 12, + STATE(2728), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283349,47 +283975,47 @@ static const uint16_t ts_small_parse_table[] = { [109949] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(4018), 1, + STATE(4491), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283405,47 +284031,47 @@ static const uint16_t ts_small_parse_table[] = { [110025] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, - sym_identifier, - ACTIONS(3351), 1, - anon_sym_LPAREN, - ACTIONS(3353), 1, - anon_sym_fn, - ACTIONS(3355), 1, - anon_sym_STAR, - ACTIONS(3357), 1, - anon_sym_struct, - ACTIONS(3367), 1, - anon_sym_shared, - ACTIONS(3369), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(3371), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3373), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3375), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5569), 1, - anon_sym_QMARK, - ACTIONS(5571), 1, + ACTIONS(591), 1, + sym_identifier, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(609), 1, + anon_sym_shared, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, + anon_sym_STAR, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5575), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(1381), 1, + STATE(4487), 1, sym_plain_type, - STATE(4423), 1, + STATE(4655), 1, sym_reference_expression, - STATE(1294), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1344), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1345), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283461,47 +284087,47 @@ static const uint16_t ts_small_parse_table[] = { [110101] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3411), 1, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3708), 1, sym_identifier, - ACTIONS(3415), 1, + ACTIONS(3710), 1, anon_sym_fn, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(3429), 1, + ACTIONS(3712), 1, + anon_sym_STAR, + ACTIONS(3722), 1, anon_sym_shared, - ACTIONS(3433), 1, + ACTIONS(3724), 1, + anon_sym_map_LBRACK, + ACTIONS(3726), 1, anon_sym_chan, - ACTIONS(3435), 1, + ACTIONS(3728), 1, anon_sym_thread, - ACTIONS(3437), 1, + ACTIONS(3730), 1, anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5517), 1, - anon_sym_STAR, - ACTIONS(5519), 1, + ACTIONS(5499), 1, anon_sym_QMARK, - ACTIONS(5521), 1, + ACTIONS(5501), 1, anon_sym_BANG, - ACTIONS(5523), 1, + ACTIONS(5503), 1, anon_sym_LBRACK2, - ACTIONS(5525), 1, + ACTIONS(5505), 1, anon_sym_AMP, - ACTIONS(5527), 1, - anon_sym_map_LBRACK, - STATE(1713), 1, + STATE(2358), 1, sym_plain_type, - STATE(4409), 1, + STATE(4655), 1, sym_reference_expression, - STATE(1666), 2, + STATE(2315), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1665), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1641), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283517,47 +284143,47 @@ static const uint16_t ts_small_parse_table[] = { [110177] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(3763), 1, sym_identifier, - ACTIONS(1606), 1, + ACTIONS(3767), 1, anon_sym_fn, - ACTIONS(1610), 1, + ACTIONS(3771), 1, anon_sym_struct, - ACTIONS(1620), 1, + ACTIONS(3781), 1, anon_sym_shared, - ACTIONS(1624), 1, + ACTIONS(3785), 1, anon_sym_chan, - ACTIONS(1626), 1, + ACTIONS(3787), 1, anon_sym_thread, - ACTIONS(1628), 1, + ACTIONS(3789), 1, anon_sym_atomic, - ACTIONS(5591), 1, + ACTIONS(5607), 1, anon_sym_LPAREN, - ACTIONS(5593), 1, + ACTIONS(5609), 1, anon_sym_STAR, - ACTIONS(5595), 1, + ACTIONS(5611), 1, anon_sym_QMARK, - ACTIONS(5597), 1, + ACTIONS(5613), 1, anon_sym_BANG, - ACTIONS(5599), 1, + ACTIONS(5615), 1, anon_sym_LBRACK2, - ACTIONS(5601), 1, + ACTIONS(5617), 1, anon_sym_AMP, - ACTIONS(5603), 1, + ACTIONS(5619), 1, anon_sym_map_LBRACK, - STATE(999), 1, + STATE(2589), 1, sym_plain_type, - STATE(4444), 1, + STATE(4490), 1, sym_reference_expression, - STATE(994), 2, + STATE(2453), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1059), 4, + STATE(2587), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1060), 12, + STATE(2535), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283573,47 +284199,47 @@ static const uint16_t ts_small_parse_table[] = { [110253] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3411), 1, + ACTIONS(4280), 1, sym_identifier, - ACTIONS(3415), 1, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(4284), 1, anon_sym_fn, - ACTIONS(3419), 1, + ACTIONS(4286), 1, + anon_sym_STAR, + ACTIONS(4288), 1, anon_sym_struct, - ACTIONS(3429), 1, + ACTIONS(4298), 1, anon_sym_shared, - ACTIONS(3433), 1, + ACTIONS(4300), 1, + anon_sym_map_LBRACK, + ACTIONS(4302), 1, anon_sym_chan, - ACTIONS(3435), 1, + ACTIONS(4304), 1, anon_sym_thread, - ACTIONS(3437), 1, + ACTIONS(4306), 1, anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5517), 1, - anon_sym_STAR, - ACTIONS(5519), 1, + ACTIONS(5621), 1, anon_sym_QMARK, - ACTIONS(5521), 1, + ACTIONS(5623), 1, anon_sym_BANG, - ACTIONS(5523), 1, + ACTIONS(5625), 1, anon_sym_LBRACK2, - ACTIONS(5525), 1, + ACTIONS(5627), 1, anon_sym_AMP, - ACTIONS(5527), 1, - anon_sym_map_LBRACK, - STATE(1745), 1, + STATE(2741), 1, sym_plain_type, - STATE(4409), 1, + STATE(4578), 1, sym_reference_expression, - STATE(1666), 2, + STATE(2667), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1665), 4, + STATE(2727), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1641), 12, + STATE(2728), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283629,47 +284255,47 @@ static const uint16_t ts_small_parse_table[] = { [110329] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3730), 1, + ACTIONS(4280), 1, sym_identifier, - ACTIONS(3734), 1, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(4284), 1, anon_sym_fn, - ACTIONS(3738), 1, + ACTIONS(4286), 1, + anon_sym_STAR, + ACTIONS(4288), 1, anon_sym_struct, - ACTIONS(3748), 1, + ACTIONS(4298), 1, anon_sym_shared, - ACTIONS(3752), 1, + ACTIONS(4300), 1, + anon_sym_map_LBRACK, + ACTIONS(4302), 1, anon_sym_chan, - ACTIONS(3754), 1, + ACTIONS(4304), 1, anon_sym_thread, - ACTIONS(3756), 1, + ACTIONS(4306), 1, anon_sym_atomic, - ACTIONS(5493), 1, - anon_sym_LPAREN, - ACTIONS(5495), 1, - anon_sym_STAR, - ACTIONS(5497), 1, + ACTIONS(5621), 1, anon_sym_QMARK, - ACTIONS(5499), 1, + ACTIONS(5623), 1, anon_sym_BANG, - ACTIONS(5501), 1, + ACTIONS(5625), 1, anon_sym_LBRACK2, - ACTIONS(5503), 1, + ACTIONS(5627), 1, anon_sym_AMP, - ACTIONS(5505), 1, - anon_sym_map_LBRACK, - STATE(2546), 1, + STATE(2756), 1, sym_plain_type, - STATE(4486), 1, + STATE(4578), 1, sym_reference_expression, - STATE(2457), 2, + STATE(2667), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2570), 4, + STATE(2727), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2569), 12, + STATE(2728), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283685,47 +284311,47 @@ static const uint16_t ts_small_parse_table[] = { [110405] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, + ACTIONS(4280), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(4284), 1, anon_sym_fn, - ACTIONS(3706), 1, + ACTIONS(4286), 1, anon_sym_STAR, - ACTIONS(3716), 1, + ACTIONS(4288), 1, + anon_sym_struct, + ACTIONS(4298), 1, anon_sym_shared, - ACTIONS(3718), 1, + ACTIONS(4300), 1, anon_sym_map_LBRACK, - ACTIONS(3720), 1, + ACTIONS(4302), 1, anon_sym_chan, - ACTIONS(3722), 1, + ACTIONS(4304), 1, anon_sym_thread, - ACTIONS(3724), 1, + ACTIONS(4306), 1, anon_sym_atomic, - ACTIONS(5529), 1, + ACTIONS(5621), 1, anon_sym_QMARK, - ACTIONS(5531), 1, + ACTIONS(5623), 1, anon_sym_BANG, - ACTIONS(5533), 1, + ACTIONS(5625), 1, anon_sym_LBRACK2, - ACTIONS(5535), 1, + ACTIONS(5627), 1, anon_sym_AMP, - STATE(2335), 1, + STATE(2753), 1, sym_plain_type, - STATE(4600), 1, + STATE(4578), 1, sym_reference_expression, - STATE(2318), 2, + STATE(2667), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2727), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2728), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283741,47 +284367,47 @@ static const uint16_t ts_small_parse_table[] = { [110481] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3411), 1, + ACTIONS(4280), 1, sym_identifier, - ACTIONS(3415), 1, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(4284), 1, anon_sym_fn, - ACTIONS(3419), 1, + ACTIONS(4286), 1, + anon_sym_STAR, + ACTIONS(4288), 1, anon_sym_struct, - ACTIONS(3429), 1, + ACTIONS(4298), 1, anon_sym_shared, - ACTIONS(3433), 1, + ACTIONS(4300), 1, + anon_sym_map_LBRACK, + ACTIONS(4302), 1, anon_sym_chan, - ACTIONS(3435), 1, + ACTIONS(4304), 1, anon_sym_thread, - ACTIONS(3437), 1, + ACTIONS(4306), 1, anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5517), 1, - anon_sym_STAR, - ACTIONS(5519), 1, + ACTIONS(5621), 1, anon_sym_QMARK, - ACTIONS(5521), 1, + ACTIONS(5623), 1, anon_sym_BANG, - ACTIONS(5523), 1, + ACTIONS(5625), 1, anon_sym_LBRACK2, - ACTIONS(5525), 1, + ACTIONS(5627), 1, anon_sym_AMP, - ACTIONS(5527), 1, - anon_sym_map_LBRACK, - STATE(1751), 1, + STATE(2744), 1, sym_plain_type, - STATE(4409), 1, + STATE(4578), 1, sym_reference_expression, - STATE(1666), 2, + STATE(2667), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1665), 4, + STATE(2727), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1641), 12, + STATE(2728), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283797,47 +284423,47 @@ static const uint16_t ts_small_parse_table[] = { [110557] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3277), 1, + ACTIONS(4280), 1, sym_identifier, - ACTIONS(3281), 1, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(4284), 1, anon_sym_fn, - ACTIONS(3285), 1, + ACTIONS(4286), 1, + anon_sym_STAR, + ACTIONS(4288), 1, anon_sym_struct, - ACTIONS(3295), 1, + ACTIONS(4298), 1, anon_sym_shared, - ACTIONS(3299), 1, + ACTIONS(4300), 1, + anon_sym_map_LBRACK, + ACTIONS(4302), 1, anon_sym_chan, - ACTIONS(3301), 1, + ACTIONS(4304), 1, anon_sym_thread, - ACTIONS(3303), 1, + ACTIONS(4306), 1, anon_sym_atomic, - ACTIONS(5633), 1, - anon_sym_LPAREN, - ACTIONS(5635), 1, - anon_sym_STAR, - ACTIONS(5637), 1, + ACTIONS(5621), 1, anon_sym_QMARK, - ACTIONS(5639), 1, + ACTIONS(5623), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5625), 1, anon_sym_LBRACK2, - ACTIONS(5643), 1, + ACTIONS(5627), 1, anon_sym_AMP, - ACTIONS(5645), 1, - anon_sym_map_LBRACK, - STATE(1190), 1, + STATE(2743), 1, sym_plain_type, - STATE(4507), 1, + STATE(4578), 1, sym_reference_expression, - STATE(1164), 2, + STATE(2667), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1177), 4, + STATE(2727), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1178), 12, + STATE(2728), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283853,47 +284479,47 @@ static const uint16_t ts_small_parse_table[] = { [110633] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3277), 1, + ACTIONS(559), 1, sym_identifier, - ACTIONS(3281), 1, + ACTIONS(565), 1, anon_sym_fn, - ACTIONS(3285), 1, + ACTIONS(569), 1, anon_sym_struct, - ACTIONS(3295), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3299), 1, + ACTIONS(583), 1, anon_sym_chan, - ACTIONS(3301), 1, + ACTIONS(585), 1, anon_sym_thread, - ACTIONS(3303), 1, + ACTIONS(587), 1, anon_sym_atomic, - ACTIONS(5633), 1, + ACTIONS(5507), 1, anon_sym_LPAREN, - ACTIONS(5635), 1, + ACTIONS(5509), 1, anon_sym_STAR, - ACTIONS(5637), 1, + ACTIONS(5511), 1, anon_sym_QMARK, - ACTIONS(5639), 1, + ACTIONS(5513), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5515), 1, anon_sym_LBRACK2, - ACTIONS(5643), 1, + ACTIONS(5517), 1, anon_sym_AMP, - ACTIONS(5645), 1, + ACTIONS(5519), 1, anon_sym_map_LBRACK, - STATE(1189), 1, + STATE(862), 1, sym_plain_type, - STATE(4507), 1, + STATE(4438), 1, sym_reference_expression, - STATE(1164), 2, + STATE(618), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1177), 4, + STATE(941), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1178), 12, + STATE(940), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283909,47 +284535,47 @@ static const uint16_t ts_small_parse_table[] = { [110709] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3277), 1, + ACTIONS(3449), 1, sym_identifier, - ACTIONS(3281), 1, + ACTIONS(3453), 1, anon_sym_fn, - ACTIONS(3285), 1, + ACTIONS(3457), 1, anon_sym_struct, - ACTIONS(3295), 1, + ACTIONS(3467), 1, anon_sym_shared, - ACTIONS(3299), 1, + ACTIONS(3471), 1, anon_sym_chan, - ACTIONS(3301), 1, + ACTIONS(3473), 1, anon_sym_thread, - ACTIONS(3303), 1, + ACTIONS(3475), 1, anon_sym_atomic, - ACTIONS(5633), 1, + ACTIONS(5581), 1, anon_sym_LPAREN, - ACTIONS(5635), 1, + ACTIONS(5583), 1, anon_sym_STAR, - ACTIONS(5637), 1, + ACTIONS(5585), 1, anon_sym_QMARK, - ACTIONS(5639), 1, + ACTIONS(5587), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5589), 1, anon_sym_LBRACK2, - ACTIONS(5643), 1, + ACTIONS(5591), 1, anon_sym_AMP, - ACTIONS(5645), 1, + ACTIONS(5593), 1, anon_sym_map_LBRACK, - STATE(1188), 1, + STATE(1849), 1, sym_plain_type, - STATE(4507), 1, + STATE(4553), 1, sym_reference_expression, - STATE(1164), 2, + STATE(1773), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1177), 4, + STATE(1811), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1178), 12, + STATE(1810), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283965,47 +284591,47 @@ static const uint16_t ts_small_parse_table[] = { [110785] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3383), 1, + ACTIONS(3275), 1, sym_identifier, - ACTIONS(3387), 1, + ACTIONS(3279), 1, anon_sym_fn, - ACTIONS(3391), 1, + ACTIONS(3283), 1, anon_sym_struct, - ACTIONS(3401), 1, + ACTIONS(3293), 1, anon_sym_shared, - ACTIONS(3405), 1, + ACTIONS(3297), 1, anon_sym_chan, - ACTIONS(3407), 1, + ACTIONS(3299), 1, anon_sym_thread, - ACTIONS(3409), 1, + ACTIONS(3301), 1, anon_sym_atomic, - ACTIONS(5415), 1, + ACTIONS(5639), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, + ACTIONS(5641), 1, anon_sym_STAR, - ACTIONS(5421), 1, + ACTIONS(5643), 1, anon_sym_QMARK, - ACTIONS(5423), 1, + ACTIONS(5645), 1, anon_sym_BANG, - ACTIONS(5425), 1, + ACTIONS(5647), 1, anon_sym_LBRACK2, - ACTIONS(5427), 1, + ACTIONS(5649), 1, anon_sym_AMP, - ACTIONS(5429), 1, + ACTIONS(5651), 1, anon_sym_map_LBRACK, - STATE(1477), 1, + STATE(1206), 1, sym_plain_type, - STATE(4515), 1, + STATE(4511), 1, sym_reference_expression, - STATE(1411), 2, + STATE(1167), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1465), 4, + STATE(1254), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1427), 12, + STATE(1255), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284021,47 +284647,47 @@ static const uint16_t ts_small_parse_table[] = { [110861] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, + ACTIONS(3275), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3279), 1, anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, + ACTIONS(3283), 1, + anon_sym_struct, + ACTIONS(3293), 1, anon_sym_shared, - ACTIONS(3718), 1, - anon_sym_map_LBRACK, - ACTIONS(3720), 1, + ACTIONS(3297), 1, anon_sym_chan, - ACTIONS(3722), 1, + ACTIONS(3299), 1, anon_sym_thread, - ACTIONS(3724), 1, + ACTIONS(3301), 1, anon_sym_atomic, - ACTIONS(5529), 1, + ACTIONS(5639), 1, + anon_sym_LPAREN, + ACTIONS(5641), 1, + anon_sym_STAR, + ACTIONS(5643), 1, anon_sym_QMARK, - ACTIONS(5531), 1, + ACTIONS(5645), 1, anon_sym_BANG, - ACTIONS(5533), 1, + ACTIONS(5647), 1, anon_sym_LBRACK2, - ACTIONS(5535), 1, + ACTIONS(5649), 1, anon_sym_AMP, - STATE(2323), 1, + ACTIONS(5651), 1, + anon_sym_map_LBRACK, + STATE(1207), 1, sym_plain_type, - STATE(4600), 1, + STATE(4511), 1, sym_reference_expression, - STATE(2318), 2, + STATE(1167), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1254), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1255), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284077,47 +284703,47 @@ static const uint16_t ts_small_parse_table[] = { [110937] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(4543), 1, + STATE(4325), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284133,47 +284759,47 @@ static const uint16_t ts_small_parse_table[] = { [111013] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3275), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(3279), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3283), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(3293), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3297), 1, + anon_sym_chan, + ACTIONS(3299), 1, + anon_sym_thread, + ACTIONS(3301), 1, + anon_sym_atomic, + ACTIONS(5639), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5641), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5643), 1, + anon_sym_QMARK, + ACTIONS(5645), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5647), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5649), 1, anon_sym_AMP, - STATE(4593), 1, + ACTIONS(5651), 1, + anon_sym_map_LBRACK, + STATE(1241), 1, sym_plain_type, - STATE(4600), 1, + STATE(4511), 1, sym_reference_expression, - STATE(3581), 2, + STATE(1167), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1254), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1255), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284189,47 +284815,47 @@ static const uint16_t ts_small_parse_table[] = { [111089] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3449), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(3453), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3457), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(3467), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3471), 1, + anon_sym_chan, + ACTIONS(3473), 1, + anon_sym_thread, + ACTIONS(3475), 1, + anon_sym_atomic, + ACTIONS(5581), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5583), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5585), 1, + anon_sym_QMARK, + ACTIONS(5587), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5589), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5591), 1, anon_sym_AMP, - STATE(4345), 1, + ACTIONS(5593), 1, + anon_sym_map_LBRACK, + STATE(1812), 1, sym_plain_type, - STATE(4600), 1, + STATE(4553), 1, sym_reference_expression, - STATE(3581), 2, + STATE(1773), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1811), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1810), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284245,47 +284871,47 @@ static const uint16_t ts_small_parse_table[] = { [111165] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, + ACTIONS(3449), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(3453), 1, anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, + ACTIONS(3457), 1, + anon_sym_struct, + ACTIONS(3467), 1, anon_sym_shared, - ACTIONS(3718), 1, - anon_sym_map_LBRACK, - ACTIONS(3720), 1, + ACTIONS(3471), 1, anon_sym_chan, - ACTIONS(3722), 1, + ACTIONS(3473), 1, anon_sym_thread, - ACTIONS(3724), 1, + ACTIONS(3475), 1, anon_sym_atomic, - ACTIONS(5529), 1, + ACTIONS(5581), 1, + anon_sym_LPAREN, + ACTIONS(5583), 1, + anon_sym_STAR, + ACTIONS(5585), 1, anon_sym_QMARK, - ACTIONS(5531), 1, + ACTIONS(5587), 1, anon_sym_BANG, - ACTIONS(5533), 1, + ACTIONS(5589), 1, anon_sym_LBRACK2, - ACTIONS(5535), 1, + ACTIONS(5591), 1, anon_sym_AMP, - STATE(2602), 1, + ACTIONS(5593), 1, + anon_sym_map_LBRACK, + STATE(1882), 1, sym_plain_type, - STATE(4600), 1, + STATE(4553), 1, sym_reference_expression, - STATE(2318), 2, + STATE(1773), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1811), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1810), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284301,47 +284927,47 @@ static const uint16_t ts_small_parse_table[] = { [111241] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, + ACTIONS(559), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(565), 1, anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, + ACTIONS(569), 1, + anon_sym_struct, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3718), 1, - anon_sym_map_LBRACK, - ACTIONS(3720), 1, + ACTIONS(583), 1, anon_sym_chan, - ACTIONS(3722), 1, + ACTIONS(585), 1, anon_sym_thread, - ACTIONS(3724), 1, + ACTIONS(587), 1, anon_sym_atomic, - ACTIONS(5529), 1, + ACTIONS(5507), 1, + anon_sym_LPAREN, + ACTIONS(5509), 1, + anon_sym_STAR, + ACTIONS(5511), 1, anon_sym_QMARK, - ACTIONS(5531), 1, + ACTIONS(5513), 1, anon_sym_BANG, - ACTIONS(5533), 1, + ACTIONS(5515), 1, anon_sym_LBRACK2, - ACTIONS(5535), 1, + ACTIONS(5517), 1, anon_sym_AMP, - STATE(2603), 1, + ACTIONS(5519), 1, + anon_sym_map_LBRACK, + STATE(870), 1, sym_plain_type, - STATE(4600), 1, + STATE(4438), 1, sym_reference_expression, - STATE(2318), 2, + STATE(618), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(941), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(940), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284357,47 +284983,47 @@ static const uint16_t ts_small_parse_table[] = { [111317] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, + ACTIONS(559), 1, sym_identifier, - ACTIONS(3704), 1, + ACTIONS(565), 1, anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, + ACTIONS(569), 1, + anon_sym_struct, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3718), 1, - anon_sym_map_LBRACK, - ACTIONS(3720), 1, + ACTIONS(583), 1, anon_sym_chan, - ACTIONS(3722), 1, + ACTIONS(585), 1, anon_sym_thread, - ACTIONS(3724), 1, + ACTIONS(587), 1, anon_sym_atomic, - ACTIONS(5529), 1, + ACTIONS(5507), 1, + anon_sym_LPAREN, + ACTIONS(5509), 1, + anon_sym_STAR, + ACTIONS(5511), 1, anon_sym_QMARK, - ACTIONS(5531), 1, + ACTIONS(5513), 1, anon_sym_BANG, - ACTIONS(5533), 1, + ACTIONS(5515), 1, anon_sym_LBRACK2, - ACTIONS(5535), 1, + ACTIONS(5517), 1, anon_sym_AMP, - STATE(2410), 1, + ACTIONS(5519), 1, + anon_sym_map_LBRACK, + STATE(859), 1, sym_plain_type, - STATE(4600), 1, + STATE(4438), 1, sym_reference_expression, - STATE(2318), 2, + STATE(618), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(941), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(940), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284413,47 +285039,47 @@ static const uint16_t ts_small_parse_table[] = { [111393] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3443), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, sym_identifier, - ACTIONS(3447), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(3451), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(3461), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3465), 1, - anon_sym_chan, - ACTIONS(3467), 1, - anon_sym_thread, - ACTIONS(3469), 1, - anon_sym_atomic, - ACTIONS(5577), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(5579), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5581), 1, - anon_sym_QMARK, - ACTIONS(5583), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5585), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5587), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5589), 1, - anon_sym_map_LBRACK, - STATE(1867), 1, + STATE(3887), 1, sym_plain_type, - STATE(4549), 1, + STATE(4655), 1, sym_reference_expression, - STATE(1787), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1886), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1885), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284469,47 +285095,47 @@ static const uint16_t ts_small_parse_table[] = { [111469] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3277), 1, + ACTIONS(3449), 1, sym_identifier, - ACTIONS(3281), 1, + ACTIONS(3453), 1, anon_sym_fn, - ACTIONS(3285), 1, + ACTIONS(3457), 1, anon_sym_struct, - ACTIONS(3295), 1, + ACTIONS(3467), 1, anon_sym_shared, - ACTIONS(3299), 1, + ACTIONS(3471), 1, anon_sym_chan, - ACTIONS(3301), 1, + ACTIONS(3473), 1, anon_sym_thread, - ACTIONS(3303), 1, + ACTIONS(3475), 1, anon_sym_atomic, - ACTIONS(5633), 1, + ACTIONS(5581), 1, anon_sym_LPAREN, - ACTIONS(5635), 1, + ACTIONS(5583), 1, anon_sym_STAR, - ACTIONS(5637), 1, + ACTIONS(5585), 1, anon_sym_QMARK, - ACTIONS(5639), 1, + ACTIONS(5587), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5589), 1, anon_sym_LBRACK2, - ACTIONS(5643), 1, + ACTIONS(5591), 1, anon_sym_AMP, - ACTIONS(5645), 1, + ACTIONS(5593), 1, anon_sym_map_LBRACK, - STATE(1237), 1, + STATE(1806), 1, sym_plain_type, - STATE(4507), 1, + STATE(4553), 1, sym_reference_expression, - STATE(1164), 2, + STATE(1773), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1177), 4, + STATE(1811), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1178), 12, + STATE(1810), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284525,47 +285151,47 @@ static const uint16_t ts_small_parse_table[] = { [111545] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3277), 1, + ACTIONS(3449), 1, sym_identifier, - ACTIONS(3281), 1, + ACTIONS(3453), 1, anon_sym_fn, - ACTIONS(3285), 1, + ACTIONS(3457), 1, anon_sym_struct, - ACTIONS(3295), 1, + ACTIONS(3467), 1, anon_sym_shared, - ACTIONS(3299), 1, + ACTIONS(3471), 1, anon_sym_chan, - ACTIONS(3301), 1, + ACTIONS(3473), 1, anon_sym_thread, - ACTIONS(3303), 1, + ACTIONS(3475), 1, anon_sym_atomic, - ACTIONS(5633), 1, + ACTIONS(5581), 1, anon_sym_LPAREN, - ACTIONS(5635), 1, + ACTIONS(5583), 1, anon_sym_STAR, - ACTIONS(5637), 1, + ACTIONS(5585), 1, anon_sym_QMARK, - ACTIONS(5639), 1, + ACTIONS(5587), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5589), 1, anon_sym_LBRACK2, - ACTIONS(5643), 1, + ACTIONS(5591), 1, anon_sym_AMP, - ACTIONS(5645), 1, + ACTIONS(5593), 1, anon_sym_map_LBRACK, - STATE(1236), 1, + STATE(1874), 1, sym_plain_type, - STATE(4507), 1, + STATE(4553), 1, sym_reference_expression, - STATE(1164), 2, + STATE(1773), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1177), 4, + STATE(1811), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1178), 12, + STATE(1810), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284581,47 +285207,47 @@ static const uint16_t ts_small_parse_table[] = { [111621] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3443), 1, + ACTIONS(3449), 1, sym_identifier, - ACTIONS(3447), 1, + ACTIONS(3453), 1, anon_sym_fn, - ACTIONS(3451), 1, + ACTIONS(3457), 1, anon_sym_struct, - ACTIONS(3461), 1, + ACTIONS(3467), 1, anon_sym_shared, - ACTIONS(3465), 1, + ACTIONS(3471), 1, anon_sym_chan, - ACTIONS(3467), 1, + ACTIONS(3473), 1, anon_sym_thread, - ACTIONS(3469), 1, + ACTIONS(3475), 1, anon_sym_atomic, - ACTIONS(5577), 1, + ACTIONS(5581), 1, anon_sym_LPAREN, - ACTIONS(5579), 1, + ACTIONS(5583), 1, anon_sym_STAR, - ACTIONS(5581), 1, + ACTIONS(5585), 1, anon_sym_QMARK, - ACTIONS(5583), 1, + ACTIONS(5587), 1, anon_sym_BANG, - ACTIONS(5585), 1, + ACTIONS(5589), 1, anon_sym_LBRACK2, - ACTIONS(5587), 1, + ACTIONS(5591), 1, anon_sym_AMP, - ACTIONS(5589), 1, + ACTIONS(5593), 1, anon_sym_map_LBRACK, - STATE(1797), 1, + STATE(1870), 1, sym_plain_type, - STATE(4549), 1, + STATE(4553), 1, sym_reference_expression, - STATE(1787), 2, + STATE(1773), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1886), 4, + STATE(1811), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1885), 12, + STATE(1810), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284637,47 +285263,47 @@ static const uint16_t ts_small_parse_table[] = { [111697] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, + ACTIONS(3275), 1, sym_identifier, - ACTIONS(3351), 1, - anon_sym_LPAREN, - ACTIONS(3353), 1, + ACTIONS(3279), 1, anon_sym_fn, - ACTIONS(3355), 1, - anon_sym_STAR, - ACTIONS(3357), 1, + ACTIONS(3283), 1, anon_sym_struct, - ACTIONS(3367), 1, + ACTIONS(3293), 1, anon_sym_shared, - ACTIONS(3369), 1, - anon_sym_map_LBRACK, - ACTIONS(3371), 1, + ACTIONS(3297), 1, anon_sym_chan, - ACTIONS(3373), 1, + ACTIONS(3299), 1, anon_sym_thread, - ACTIONS(3375), 1, + ACTIONS(3301), 1, anon_sym_atomic, - ACTIONS(5569), 1, + ACTIONS(5639), 1, + anon_sym_LPAREN, + ACTIONS(5641), 1, + anon_sym_STAR, + ACTIONS(5643), 1, anon_sym_QMARK, - ACTIONS(5571), 1, + ACTIONS(5645), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5647), 1, anon_sym_LBRACK2, - ACTIONS(5575), 1, + ACTIONS(5649), 1, anon_sym_AMP, - STATE(1322), 1, + ACTIONS(5651), 1, + anon_sym_map_LBRACK, + STATE(1210), 1, sym_plain_type, - STATE(4423), 1, + STATE(4511), 1, sym_reference_expression, - STATE(1294), 2, + STATE(1167), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1344), 4, + STATE(1254), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1345), 12, + STATE(1255), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284693,47 +285319,47 @@ static const uint16_t ts_small_parse_table[] = { [111773] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3449), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(3453), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3457), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(3467), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3471), 1, + anon_sym_chan, + ACTIONS(3473), 1, + anon_sym_thread, + ACTIONS(3475), 1, + anon_sym_atomic, + ACTIONS(5581), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5583), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5585), 1, + anon_sym_QMARK, + ACTIONS(5587), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5589), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5591), 1, anon_sym_AMP, - STATE(3990), 1, + ACTIONS(5593), 1, + anon_sym_map_LBRACK, + STATE(1803), 1, sym_plain_type, - STATE(4600), 1, + STATE(4553), 1, sym_reference_expression, - STATE(3581), 2, + STATE(1773), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1811), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1810), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284749,47 +285375,47 @@ static const uint16_t ts_small_parse_table[] = { [111849] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, + ACTIONS(3449), 1, sym_identifier, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(5321), 1, + ACTIONS(3453), 1, anon_sym_fn, - ACTIONS(5333), 1, + ACTIONS(3457), 1, + anon_sym_struct, + ACTIONS(3467), 1, anon_sym_shared, - ACTIONS(5337), 1, + ACTIONS(3471), 1, anon_sym_chan, - ACTIONS(5339), 1, + ACTIONS(3473), 1, anon_sym_thread, - ACTIONS(5341), 1, + ACTIONS(3475), 1, anon_sym_atomic, - ACTIONS(5399), 1, + ACTIONS(5581), 1, anon_sym_LPAREN, - ACTIONS(5403), 1, + ACTIONS(5583), 1, anon_sym_STAR, - ACTIONS(5405), 1, + ACTIONS(5585), 1, anon_sym_QMARK, - ACTIONS(5407), 1, + ACTIONS(5587), 1, anon_sym_BANG, - ACTIONS(5409), 1, + ACTIONS(5589), 1, anon_sym_LBRACK2, - ACTIONS(5411), 1, + ACTIONS(5591), 1, anon_sym_AMP, - ACTIONS(5413), 1, + ACTIONS(5593), 1, anon_sym_map_LBRACK, - STATE(1659), 1, + STATE(1804), 1, sym_plain_type, - STATE(4416), 1, + STATE(4553), 1, sym_reference_expression, - STATE(3390), 2, + STATE(1773), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1665), 4, + STATE(1811), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1641), 12, + STATE(1810), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284805,47 +285431,47 @@ static const uint16_t ts_small_parse_table[] = { [111925] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, + ACTIONS(3449), 1, sym_identifier, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(5321), 1, + ACTIONS(3453), 1, anon_sym_fn, - ACTIONS(5333), 1, + ACTIONS(3457), 1, + anon_sym_struct, + ACTIONS(3467), 1, anon_sym_shared, - ACTIONS(5337), 1, + ACTIONS(3471), 1, anon_sym_chan, - ACTIONS(5339), 1, + ACTIONS(3473), 1, anon_sym_thread, - ACTIONS(5341), 1, + ACTIONS(3475), 1, anon_sym_atomic, - ACTIONS(5399), 1, + ACTIONS(5581), 1, anon_sym_LPAREN, - ACTIONS(5403), 1, + ACTIONS(5583), 1, anon_sym_STAR, - ACTIONS(5405), 1, + ACTIONS(5585), 1, anon_sym_QMARK, - ACTIONS(5407), 1, + ACTIONS(5587), 1, anon_sym_BANG, - ACTIONS(5409), 1, + ACTIONS(5589), 1, anon_sym_LBRACK2, - ACTIONS(5411), 1, + ACTIONS(5591), 1, anon_sym_AMP, - ACTIONS(5413), 1, + ACTIONS(5593), 1, anon_sym_map_LBRACK, - STATE(1656), 1, + STATE(1805), 1, sym_plain_type, - STATE(4416), 1, + STATE(4553), 1, sym_reference_expression, - STATE(3390), 2, + STATE(1773), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1665), 4, + STATE(1811), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1641), 12, + STATE(1810), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284861,47 +285487,47 @@ static const uint16_t ts_small_parse_table[] = { [112001] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3277), 1, + ACTIONS(3519), 1, sym_identifier, - ACTIONS(3281), 1, + ACTIONS(3521), 1, + anon_sym_LPAREN, + ACTIONS(3523), 1, anon_sym_fn, - ACTIONS(3285), 1, + ACTIONS(3527), 1, anon_sym_struct, - ACTIONS(3295), 1, + ACTIONS(3537), 1, anon_sym_shared, - ACTIONS(3299), 1, + ACTIONS(3539), 1, + anon_sym_map_LBRACK, + ACTIONS(3541), 1, anon_sym_chan, - ACTIONS(3301), 1, + ACTIONS(3543), 1, anon_sym_thread, - ACTIONS(3303), 1, + ACTIONS(3545), 1, anon_sym_atomic, - ACTIONS(5633), 1, - anon_sym_LPAREN, - ACTIONS(5635), 1, + ACTIONS(5629), 1, anon_sym_STAR, - ACTIONS(5637), 1, + ACTIONS(5631), 1, anon_sym_QMARK, - ACTIONS(5639), 1, + ACTIONS(5633), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5635), 1, anon_sym_LBRACK2, - ACTIONS(5643), 1, + ACTIONS(5637), 1, anon_sym_AMP, - ACTIONS(5645), 1, - anon_sym_map_LBRACK, - STATE(1232), 1, + STATE(2069), 1, sym_plain_type, - STATE(4507), 1, + STATE(4532), 1, sym_reference_expression, - STATE(1164), 2, + STATE(1923), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1177), 4, + STATE(2088), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1178), 12, + STATE(2087), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284917,47 +285543,47 @@ static const uint16_t ts_small_parse_table[] = { [112077] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3275), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(3279), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3283), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(3293), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3297), 1, + anon_sym_chan, + ACTIONS(3299), 1, + anon_sym_thread, + ACTIONS(3301), 1, + anon_sym_atomic, + ACTIONS(5639), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5641), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5643), 1, + anon_sym_QMARK, + ACTIONS(5645), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5647), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5649), 1, anon_sym_AMP, - STATE(4102), 1, + ACTIONS(5651), 1, + anon_sym_map_LBRACK, + STATE(1240), 1, sym_plain_type, - STATE(4600), 1, + STATE(4511), 1, sym_reference_expression, - STATE(3581), 2, + STATE(1167), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1254), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1255), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284973,47 +285599,47 @@ static const uint16_t ts_small_parse_table[] = { [112153] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, + ACTIONS(559), 1, sym_identifier, - ACTIONS(3351), 1, - anon_sym_LPAREN, - ACTIONS(3353), 1, + ACTIONS(565), 1, anon_sym_fn, - ACTIONS(3355), 1, - anon_sym_STAR, - ACTIONS(3357), 1, + ACTIONS(569), 1, anon_sym_struct, - ACTIONS(3367), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3369), 1, - anon_sym_map_LBRACK, - ACTIONS(3371), 1, + ACTIONS(583), 1, anon_sym_chan, - ACTIONS(3373), 1, + ACTIONS(585), 1, anon_sym_thread, - ACTIONS(3375), 1, + ACTIONS(587), 1, anon_sym_atomic, - ACTIONS(5569), 1, + ACTIONS(5507), 1, + anon_sym_LPAREN, + ACTIONS(5509), 1, + anon_sym_STAR, + ACTIONS(5511), 1, anon_sym_QMARK, - ACTIONS(5571), 1, + ACTIONS(5513), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5515), 1, anon_sym_LBRACK2, - ACTIONS(5575), 1, + ACTIONS(5517), 1, anon_sym_AMP, - STATE(1332), 1, + ACTIONS(5519), 1, + anon_sym_map_LBRACK, + STATE(871), 1, sym_plain_type, - STATE(4423), 1, + STATE(4438), 1, sym_reference_expression, - STATE(1294), 2, + STATE(618), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1344), 4, + STATE(941), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1345), 12, + STATE(940), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285029,47 +285655,47 @@ static const uint16_t ts_small_parse_table[] = { [112229] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3730), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, sym_identifier, - ACTIONS(3734), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(3738), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(3748), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3752), 1, - anon_sym_chan, - ACTIONS(3754), 1, - anon_sym_thread, - ACTIONS(3756), 1, - anon_sym_atomic, - ACTIONS(5493), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(5495), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5497), 1, - anon_sym_QMARK, - ACTIONS(5499), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5501), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5503), 1, + ACTIONS(5157), 1, anon_sym_AMP, - ACTIONS(5505), 1, - anon_sym_map_LBRACK, - STATE(2567), 1, + STATE(3926), 1, sym_plain_type, - STATE(4486), 1, + STATE(4655), 1, sym_reference_expression, - STATE(2457), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2570), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2569), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285085,47 +285711,47 @@ static const uint16_t ts_small_parse_table[] = { [112305] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3349), 1, + ACTIONS(3519), 1, sym_identifier, - ACTIONS(3351), 1, + ACTIONS(3521), 1, anon_sym_LPAREN, - ACTIONS(3353), 1, + ACTIONS(3523), 1, anon_sym_fn, - ACTIONS(3355), 1, - anon_sym_STAR, - ACTIONS(3357), 1, + ACTIONS(3527), 1, anon_sym_struct, - ACTIONS(3367), 1, + ACTIONS(3537), 1, anon_sym_shared, - ACTIONS(3369), 1, + ACTIONS(3539), 1, anon_sym_map_LBRACK, - ACTIONS(3371), 1, + ACTIONS(3541), 1, anon_sym_chan, - ACTIONS(3373), 1, + ACTIONS(3543), 1, anon_sym_thread, - ACTIONS(3375), 1, + ACTIONS(3545), 1, anon_sym_atomic, - ACTIONS(5569), 1, + ACTIONS(5629), 1, + anon_sym_STAR, + ACTIONS(5631), 1, anon_sym_QMARK, - ACTIONS(5571), 1, + ACTIONS(5633), 1, anon_sym_BANG, - ACTIONS(5573), 1, + ACTIONS(5635), 1, anon_sym_LBRACK2, - ACTIONS(5575), 1, + ACTIONS(5637), 1, anon_sym_AMP, - STATE(1338), 1, + STATE(2035), 1, sym_plain_type, - STATE(4423), 1, + STATE(4532), 1, sym_reference_expression, - STATE(1294), 2, + STATE(1923), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1344), 4, + STATE(2088), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1345), 12, + STATE(2087), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285141,47 +285767,47 @@ static const uint16_t ts_small_parse_table[] = { [112381] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3730), 1, + ACTIONS(3275), 1, sym_identifier, - ACTIONS(3734), 1, + ACTIONS(3279), 1, anon_sym_fn, - ACTIONS(3738), 1, + ACTIONS(3283), 1, anon_sym_struct, - ACTIONS(3748), 1, + ACTIONS(3293), 1, anon_sym_shared, - ACTIONS(3752), 1, + ACTIONS(3297), 1, anon_sym_chan, - ACTIONS(3754), 1, + ACTIONS(3299), 1, anon_sym_thread, - ACTIONS(3756), 1, + ACTIONS(3301), 1, anon_sym_atomic, - ACTIONS(5493), 1, + ACTIONS(5639), 1, anon_sym_LPAREN, - ACTIONS(5495), 1, + ACTIONS(5641), 1, anon_sym_STAR, - ACTIONS(5497), 1, + ACTIONS(5643), 1, anon_sym_QMARK, - ACTIONS(5499), 1, + ACTIONS(5645), 1, anon_sym_BANG, - ACTIONS(5501), 1, + ACTIONS(5647), 1, anon_sym_LBRACK2, - ACTIONS(5503), 1, + ACTIONS(5649), 1, anon_sym_AMP, - ACTIONS(5505), 1, + ACTIONS(5651), 1, anon_sym_map_LBRACK, - STATE(2564), 1, + STATE(1224), 1, sym_plain_type, - STATE(4486), 1, + STATE(4511), 1, sym_reference_expression, - STATE(2457), 2, + STATE(1167), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2570), 4, + STATE(1254), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2569), 12, + STATE(1255), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285197,47 +285823,47 @@ static const uint16_t ts_small_parse_table[] = { [112457] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(4500), 1, + STATE(4049), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285253,47 +285879,47 @@ static const uint16_t ts_small_parse_table[] = { [112533] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3708), 1, sym_identifier, - ACTIONS(559), 1, + ACTIONS(3710), 1, anon_sym_fn, - ACTIONS(563), 1, - anon_sym_struct, - ACTIONS(573), 1, + ACTIONS(3712), 1, + anon_sym_STAR, + ACTIONS(3722), 1, anon_sym_shared, - ACTIONS(577), 1, + ACTIONS(3724), 1, + anon_sym_map_LBRACK, + ACTIONS(3726), 1, anon_sym_chan, - ACTIONS(579), 1, + ACTIONS(3728), 1, anon_sym_thread, - ACTIONS(581), 1, + ACTIONS(3730), 1, anon_sym_atomic, - ACTIONS(5605), 1, - anon_sym_LPAREN, - ACTIONS(5607), 1, - anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5499), 1, anon_sym_QMARK, - ACTIONS(5611), 1, + ACTIONS(5501), 1, anon_sym_BANG, - ACTIONS(5613), 1, + ACTIONS(5503), 1, anon_sym_LBRACK2, - ACTIONS(5615), 1, + ACTIONS(5505), 1, anon_sym_AMP, - ACTIONS(5617), 1, - anon_sym_map_LBRACK, - STATE(893), 1, + STATE(2355), 1, sym_plain_type, - STATE(4460), 1, + STATE(4655), 1, sym_reference_expression, - STATE(521), 2, + STATE(2315), 2, sym_type_reference_expression, sym_qualified_type, - STATE(898), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(896), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285309,47 +285935,47 @@ static const uint16_t ts_small_parse_table[] = { [112609] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, + ACTIONS(559), 1, sym_identifier, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(5321), 1, + ACTIONS(565), 1, anon_sym_fn, - ACTIONS(5333), 1, + ACTIONS(569), 1, + anon_sym_struct, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(5337), 1, + ACTIONS(583), 1, anon_sym_chan, - ACTIONS(5339), 1, + ACTIONS(585), 1, anon_sym_thread, - ACTIONS(5341), 1, + ACTIONS(587), 1, anon_sym_atomic, - ACTIONS(5399), 1, + ACTIONS(5507), 1, anon_sym_LPAREN, - ACTIONS(5403), 1, + ACTIONS(5509), 1, anon_sym_STAR, - ACTIONS(5405), 1, + ACTIONS(5511), 1, anon_sym_QMARK, - ACTIONS(5407), 1, + ACTIONS(5513), 1, anon_sym_BANG, - ACTIONS(5409), 1, + ACTIONS(5515), 1, anon_sym_LBRACK2, - ACTIONS(5411), 1, + ACTIONS(5517), 1, anon_sym_AMP, - ACTIONS(5413), 1, + ACTIONS(5519), 1, anon_sym_map_LBRACK, - STATE(1644), 1, + STATE(887), 1, sym_plain_type, - STATE(4416), 1, + STATE(4438), 1, sym_reference_expression, - STATE(3390), 2, + STATE(618), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1665), 4, + STATE(941), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1641), 12, + STATE(940), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285365,47 +285991,47 @@ static const uint16_t ts_small_parse_table[] = { [112685] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3443), 1, + ACTIONS(3519), 1, sym_identifier, - ACTIONS(3447), 1, + ACTIONS(3521), 1, + anon_sym_LPAREN, + ACTIONS(3523), 1, anon_sym_fn, - ACTIONS(3451), 1, + ACTIONS(3527), 1, anon_sym_struct, - ACTIONS(3461), 1, + ACTIONS(3537), 1, anon_sym_shared, - ACTIONS(3465), 1, + ACTIONS(3539), 1, + anon_sym_map_LBRACK, + ACTIONS(3541), 1, anon_sym_chan, - ACTIONS(3467), 1, + ACTIONS(3543), 1, anon_sym_thread, - ACTIONS(3469), 1, + ACTIONS(3545), 1, anon_sym_atomic, - ACTIONS(5577), 1, - anon_sym_LPAREN, - ACTIONS(5579), 1, + ACTIONS(5629), 1, anon_sym_STAR, - ACTIONS(5581), 1, + ACTIONS(5631), 1, anon_sym_QMARK, - ACTIONS(5583), 1, + ACTIONS(5633), 1, anon_sym_BANG, - ACTIONS(5585), 1, + ACTIONS(5635), 1, anon_sym_LBRACK2, - ACTIONS(5587), 1, + ACTIONS(5637), 1, anon_sym_AMP, - ACTIONS(5589), 1, - anon_sym_map_LBRACK, - STATE(1873), 1, + STATE(2037), 1, sym_plain_type, - STATE(4549), 1, + STATE(4532), 1, sym_reference_expression, - STATE(1787), 2, + STATE(1923), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1886), 4, + STATE(2088), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1885), 12, + STATE(2087), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285421,47 +286047,47 @@ static const uint16_t ts_small_parse_table[] = { [112761] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, + ACTIONS(559), 1, sym_identifier, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(5321), 1, + ACTIONS(565), 1, anon_sym_fn, - ACTIONS(5333), 1, + ACTIONS(569), 1, + anon_sym_struct, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(5337), 1, + ACTIONS(583), 1, anon_sym_chan, - ACTIONS(5339), 1, + ACTIONS(585), 1, anon_sym_thread, - ACTIONS(5341), 1, + ACTIONS(587), 1, anon_sym_atomic, - ACTIONS(5399), 1, + ACTIONS(5507), 1, anon_sym_LPAREN, - ACTIONS(5403), 1, + ACTIONS(5509), 1, anon_sym_STAR, - ACTIONS(5405), 1, + ACTIONS(5511), 1, anon_sym_QMARK, - ACTIONS(5407), 1, + ACTIONS(5513), 1, anon_sym_BANG, - ACTIONS(5409), 1, + ACTIONS(5515), 1, anon_sym_LBRACK2, - ACTIONS(5411), 1, + ACTIONS(5517), 1, anon_sym_AMP, - ACTIONS(5413), 1, + ACTIONS(5519), 1, anon_sym_map_LBRACK, - STATE(1632), 1, + STATE(930), 1, sym_plain_type, - STATE(4416), 1, + STATE(4438), 1, sym_reference_expression, - STATE(3390), 2, + STATE(618), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1665), 4, + STATE(941), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1641), 12, + STATE(940), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285477,47 +286103,47 @@ static const uint16_t ts_small_parse_table[] = { [112837] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3443), 1, + ACTIONS(3519), 1, sym_identifier, - ACTIONS(3447), 1, + ACTIONS(3521), 1, + anon_sym_LPAREN, + ACTIONS(3523), 1, anon_sym_fn, - ACTIONS(3451), 1, + ACTIONS(3527), 1, anon_sym_struct, - ACTIONS(3461), 1, + ACTIONS(3537), 1, anon_sym_shared, - ACTIONS(3465), 1, + ACTIONS(3539), 1, + anon_sym_map_LBRACK, + ACTIONS(3541), 1, anon_sym_chan, - ACTIONS(3467), 1, + ACTIONS(3543), 1, anon_sym_thread, - ACTIONS(3469), 1, + ACTIONS(3545), 1, anon_sym_atomic, - ACTIONS(5577), 1, - anon_sym_LPAREN, - ACTIONS(5579), 1, + ACTIONS(5629), 1, anon_sym_STAR, - ACTIONS(5581), 1, + ACTIONS(5631), 1, anon_sym_QMARK, - ACTIONS(5583), 1, + ACTIONS(5633), 1, anon_sym_BANG, - ACTIONS(5585), 1, + ACTIONS(5635), 1, anon_sym_LBRACK2, - ACTIONS(5587), 1, + ACTIONS(5637), 1, anon_sym_AMP, - ACTIONS(5589), 1, - anon_sym_map_LBRACK, - STATE(1862), 1, + STATE(2048), 1, sym_plain_type, - STATE(4549), 1, + STATE(4532), 1, sym_reference_expression, - STATE(1787), 2, + STATE(1923), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1886), 4, + STATE(2088), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1885), 12, + STATE(2087), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285533,47 +286159,47 @@ static const uint16_t ts_small_parse_table[] = { [112913] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3443), 1, + ACTIONS(3519), 1, sym_identifier, - ACTIONS(3447), 1, + ACTIONS(3521), 1, + anon_sym_LPAREN, + ACTIONS(3523), 1, anon_sym_fn, - ACTIONS(3451), 1, + ACTIONS(3527), 1, anon_sym_struct, - ACTIONS(3461), 1, + ACTIONS(3537), 1, anon_sym_shared, - ACTIONS(3465), 1, + ACTIONS(3539), 1, + anon_sym_map_LBRACK, + ACTIONS(3541), 1, anon_sym_chan, - ACTIONS(3467), 1, + ACTIONS(3543), 1, anon_sym_thread, - ACTIONS(3469), 1, + ACTIONS(3545), 1, anon_sym_atomic, - ACTIONS(5577), 1, - anon_sym_LPAREN, - ACTIONS(5579), 1, + ACTIONS(5629), 1, anon_sym_STAR, - ACTIONS(5581), 1, + ACTIONS(5631), 1, anon_sym_QMARK, - ACTIONS(5583), 1, + ACTIONS(5633), 1, anon_sym_BANG, - ACTIONS(5585), 1, + ACTIONS(5635), 1, anon_sym_LBRACK2, - ACTIONS(5587), 1, + ACTIONS(5637), 1, anon_sym_AMP, - ACTIONS(5589), 1, - anon_sym_map_LBRACK, - STATE(1859), 1, + STATE(2068), 1, sym_plain_type, - STATE(4549), 1, + STATE(4532), 1, sym_reference_expression, - STATE(1787), 2, + STATE(1923), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1886), 4, + STATE(2088), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1885), 12, + STATE(2087), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285589,47 +286215,47 @@ static const uint16_t ts_small_parse_table[] = { [112989] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, + ACTIONS(3519), 1, sym_identifier, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(5321), 1, + ACTIONS(3521), 1, + anon_sym_LPAREN, + ACTIONS(3523), 1, anon_sym_fn, - ACTIONS(5333), 1, + ACTIONS(3527), 1, + anon_sym_struct, + ACTIONS(3537), 1, anon_sym_shared, - ACTIONS(5337), 1, + ACTIONS(3539), 1, + anon_sym_map_LBRACK, + ACTIONS(3541), 1, anon_sym_chan, - ACTIONS(5339), 1, + ACTIONS(3543), 1, anon_sym_thread, - ACTIONS(5341), 1, + ACTIONS(3545), 1, anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5403), 1, + ACTIONS(5629), 1, anon_sym_STAR, - ACTIONS(5405), 1, + ACTIONS(5631), 1, anon_sym_QMARK, - ACTIONS(5407), 1, + ACTIONS(5633), 1, anon_sym_BANG, - ACTIONS(5409), 1, + ACTIONS(5635), 1, anon_sym_LBRACK2, - ACTIONS(5411), 1, + ACTIONS(5637), 1, anon_sym_AMP, - ACTIONS(5413), 1, - anon_sym_map_LBRACK, - STATE(1660), 1, + STATE(2050), 1, sym_plain_type, - STATE(4416), 1, + STATE(4532), 1, sym_reference_expression, - STATE(3390), 2, + STATE(1923), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1665), 4, + STATE(2088), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1641), 12, + STATE(2087), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285645,47 +286271,47 @@ static const uint16_t ts_small_parse_table[] = { [113065] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3355), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(3870), 1, + STATE(4096), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285701,47 +286327,47 @@ static const uint16_t ts_small_parse_table[] = { [113141] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, + ACTIONS(3519), 1, sym_identifier, - ACTIONS(3557), 1, + ACTIONS(3521), 1, anon_sym_LPAREN, - ACTIONS(3559), 1, + ACTIONS(3523), 1, anon_sym_fn, - ACTIONS(3563), 1, + ACTIONS(3527), 1, anon_sym_struct, - ACTIONS(3573), 1, + ACTIONS(3537), 1, anon_sym_shared, - ACTIONS(3575), 1, + ACTIONS(3539), 1, anon_sym_map_LBRACK, - ACTIONS(3577), 1, + ACTIONS(3541), 1, anon_sym_chan, - ACTIONS(3579), 1, + ACTIONS(3543), 1, anon_sym_thread, - ACTIONS(3581), 1, + ACTIONS(3545), 1, anon_sym_atomic, - ACTIONS(5537), 1, + ACTIONS(5629), 1, anon_sym_STAR, - ACTIONS(5539), 1, + ACTIONS(5631), 1, anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5633), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5635), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5637), 1, anon_sym_AMP, - STATE(2111), 1, + STATE(2052), 1, sym_plain_type, - STATE(4465), 1, + STATE(4532), 1, sym_reference_expression, - STATE(1919), 2, + STATE(1923), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2126), 4, + STATE(2088), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2127), 12, + STATE(2087), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285757,47 +286383,47 @@ static const uint16_t ts_small_parse_table[] = { [113217] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3708), 1, + sym_identifier, + ACTIONS(3710), 1, + anon_sym_fn, + ACTIONS(3712), 1, + anon_sym_STAR, + ACTIONS(3722), 1, + anon_sym_shared, + ACTIONS(3724), 1, anon_sym_map_LBRACK, - ACTIONS(83), 1, + ACTIONS(3726), 1, anon_sym_chan, - ACTIONS(85), 1, + ACTIONS(3728), 1, anon_sym_thread, - ACTIONS(87), 1, + ACTIONS(3730), 1, anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5499), 1, + anon_sym_QMARK, + ACTIONS(5501), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5503), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5505), 1, anon_sym_AMP, - STATE(4485), 1, + STATE(2351), 1, sym_plain_type, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(2315), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285813,24 +286439,22 @@ static const uint16_t ts_small_parse_table[] = { [113293] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, + ACTIONS(1610), 1, sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, + ACTIONS(1614), 1, anon_sym_fn, - ACTIONS(3563), 1, + ACTIONS(1618), 1, anon_sym_struct, - ACTIONS(3573), 1, + ACTIONS(1628), 1, anon_sym_shared, - ACTIONS(3575), 1, - anon_sym_map_LBRACK, - ACTIONS(3577), 1, + ACTIONS(1632), 1, anon_sym_chan, - ACTIONS(3579), 1, + ACTIONS(1634), 1, anon_sym_thread, - ACTIONS(3581), 1, + ACTIONS(1636), 1, anon_sym_atomic, + ACTIONS(5535), 1, + anon_sym_LPAREN, ACTIONS(5537), 1, anon_sym_STAR, ACTIONS(5539), 1, @@ -285841,19 +286465,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5545), 1, anon_sym_AMP, - STATE(2060), 1, + ACTIONS(5547), 1, + anon_sym_map_LBRACK, + STATE(1012), 1, sym_plain_type, - STATE(4465), 1, + STATE(4448), 1, sym_reference_expression, - STATE(1919), 2, + STATE(1002), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2126), 4, + STATE(1084), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2127), 12, + STATE(1085), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285869,47 +286495,47 @@ static const uint16_t ts_small_parse_table[] = { [113369] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3519), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(3521), 1, + anon_sym_LPAREN, + ACTIONS(3523), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3527), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(3537), 1, anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(3539), 1, + anon_sym_map_LBRACK, + ACTIONS(3541), 1, + anon_sym_chan, + ACTIONS(3543), 1, + anon_sym_thread, + ACTIONS(3545), 1, + anon_sym_atomic, + ACTIONS(5629), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5631), 1, + anon_sym_QMARK, + ACTIONS(5633), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5635), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5637), 1, anon_sym_AMP, - STATE(4046), 1, + STATE(2065), 1, sym_plain_type, - STATE(4600), 1, + STATE(4532), 1, sym_reference_expression, - STATE(3581), 2, + STATE(1923), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2088), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2087), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285925,47 +286551,47 @@ static const uint16_t ts_small_parse_table[] = { [113445] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, + ACTIONS(3519), 1, sym_identifier, - ACTIONS(3557), 1, + ACTIONS(3521), 1, anon_sym_LPAREN, - ACTIONS(3559), 1, + ACTIONS(3523), 1, anon_sym_fn, - ACTIONS(3563), 1, + ACTIONS(3527), 1, anon_sym_struct, - ACTIONS(3573), 1, + ACTIONS(3537), 1, anon_sym_shared, - ACTIONS(3575), 1, + ACTIONS(3539), 1, anon_sym_map_LBRACK, - ACTIONS(3577), 1, + ACTIONS(3541), 1, anon_sym_chan, - ACTIONS(3579), 1, + ACTIONS(3543), 1, anon_sym_thread, - ACTIONS(3581), 1, + ACTIONS(3545), 1, anon_sym_atomic, - ACTIONS(5537), 1, + ACTIONS(5629), 1, anon_sym_STAR, - ACTIONS(5539), 1, + ACTIONS(5631), 1, anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5633), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5635), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5637), 1, anon_sym_AMP, - STATE(2056), 1, + STATE(2067), 1, sym_plain_type, - STATE(4465), 1, + STATE(4532), 1, sym_reference_expression, - STATE(1919), 2, + STATE(1923), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2126), 4, + STATE(2088), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2127), 12, + STATE(2087), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285981,47 +286607,47 @@ static const uint16_t ts_small_parse_table[] = { [113521] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3277), 1, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3708), 1, sym_identifier, - ACTIONS(3281), 1, + ACTIONS(3710), 1, anon_sym_fn, - ACTIONS(3285), 1, - anon_sym_struct, - ACTIONS(3295), 1, + ACTIONS(3712), 1, + anon_sym_STAR, + ACTIONS(3722), 1, anon_sym_shared, - ACTIONS(3299), 1, + ACTIONS(3724), 1, + anon_sym_map_LBRACK, + ACTIONS(3726), 1, anon_sym_chan, - ACTIONS(3301), 1, + ACTIONS(3728), 1, anon_sym_thread, - ACTIONS(3303), 1, + ACTIONS(3730), 1, anon_sym_atomic, - ACTIONS(5633), 1, - anon_sym_LPAREN, - ACTIONS(5635), 1, - anon_sym_STAR, - ACTIONS(5637), 1, + ACTIONS(5499), 1, anon_sym_QMARK, - ACTIONS(5639), 1, + ACTIONS(5501), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5503), 1, anon_sym_LBRACK2, - ACTIONS(5643), 1, + ACTIONS(5505), 1, anon_sym_AMP, - ACTIONS(5645), 1, - anon_sym_map_LBRACK, - STATE(1247), 1, + STATE(2348), 1, sym_plain_type, - STATE(4507), 1, + STATE(4655), 1, sym_reference_expression, - STATE(1164), 2, + STATE(2315), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1177), 4, + STATE(2415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1178), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286037,47 +286663,47 @@ static const uint16_t ts_small_parse_table[] = { [113597] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3275), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(3279), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3283), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(3293), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3297), 1, + anon_sym_chan, + ACTIONS(3299), 1, + anon_sym_thread, + ACTIONS(3301), 1, + anon_sym_atomic, + ACTIONS(5639), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5641), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5643), 1, + anon_sym_QMARK, + ACTIONS(5645), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5647), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5649), 1, anon_sym_AMP, - STATE(3864), 1, + ACTIONS(5651), 1, + anon_sym_map_LBRACK, + STATE(1186), 1, sym_plain_type, - STATE(4600), 1, + STATE(4511), 1, sym_reference_expression, - STATE(3581), 2, + STATE(1167), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1254), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1255), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286093,47 +286719,47 @@ static const uint16_t ts_small_parse_table[] = { [113673] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3275), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(3279), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3283), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(3293), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3297), 1, + anon_sym_chan, + ACTIONS(3299), 1, + anon_sym_thread, + ACTIONS(3301), 1, + anon_sym_atomic, + ACTIONS(5639), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5641), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5643), 1, + anon_sym_QMARK, + ACTIONS(5645), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5647), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5649), 1, anon_sym_AMP, - STATE(4131), 1, + ACTIONS(5651), 1, + anon_sym_map_LBRACK, + STATE(1194), 1, sym_plain_type, - STATE(4600), 1, + STATE(4511), 1, sym_reference_expression, - STATE(3581), 2, + STATE(1167), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1254), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1255), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286149,47 +286775,47 @@ static const uint16_t ts_small_parse_table[] = { [113749] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3555), 1, + ACTIONS(3275), 1, sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, + ACTIONS(3279), 1, anon_sym_fn, - ACTIONS(3563), 1, + ACTIONS(3283), 1, anon_sym_struct, - ACTIONS(3573), 1, + ACTIONS(3293), 1, anon_sym_shared, - ACTIONS(3575), 1, - anon_sym_map_LBRACK, - ACTIONS(3577), 1, + ACTIONS(3297), 1, anon_sym_chan, - ACTIONS(3579), 1, + ACTIONS(3299), 1, anon_sym_thread, - ACTIONS(3581), 1, + ACTIONS(3301), 1, anon_sym_atomic, - ACTIONS(5537), 1, + ACTIONS(5639), 1, + anon_sym_LPAREN, + ACTIONS(5641), 1, anon_sym_STAR, - ACTIONS(5539), 1, + ACTIONS(5643), 1, anon_sym_QMARK, - ACTIONS(5541), 1, + ACTIONS(5645), 1, anon_sym_BANG, - ACTIONS(5543), 1, + ACTIONS(5647), 1, anon_sym_LBRACK2, - ACTIONS(5545), 1, + ACTIONS(5649), 1, anon_sym_AMP, - STATE(2058), 1, + ACTIONS(5651), 1, + anon_sym_map_LBRACK, + STATE(1222), 1, sym_plain_type, - STATE(4465), 1, + STATE(4511), 1, sym_reference_expression, - STATE(1919), 2, + STATE(1167), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2126), 4, + STATE(1254), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2127), 12, + STATE(1255), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286205,47 +286831,47 @@ static const uint16_t ts_small_parse_table[] = { [113825] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3419), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(3423), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3427), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(3437), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3441), 1, + anon_sym_chan, + ACTIONS(3443), 1, + anon_sym_thread, + ACTIONS(3445), 1, + anon_sym_atomic, + ACTIONS(5405), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5595), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5597), 1, + anon_sym_QMARK, + ACTIONS(5599), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5601), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5603), 1, anon_sym_AMP, - STATE(4092), 1, + ACTIONS(5605), 1, + anon_sym_map_LBRACK, + STATE(1655), 1, sym_plain_type, - STATE(4600), 1, + STATE(4416), 1, sym_reference_expression, - STATE(3581), 2, + STATE(1669), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1636), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1651), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286261,47 +286887,47 @@ static const uint16_t ts_small_parse_table[] = { [113901] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(3419), 1, sym_identifier, - ACTIONS(559), 1, + ACTIONS(3423), 1, anon_sym_fn, - ACTIONS(563), 1, + ACTIONS(3427), 1, anon_sym_struct, - ACTIONS(573), 1, + ACTIONS(3437), 1, anon_sym_shared, - ACTIONS(577), 1, + ACTIONS(3441), 1, anon_sym_chan, - ACTIONS(579), 1, + ACTIONS(3443), 1, anon_sym_thread, - ACTIONS(581), 1, + ACTIONS(3445), 1, anon_sym_atomic, - ACTIONS(5605), 1, + ACTIONS(5405), 1, anon_sym_LPAREN, - ACTIONS(5607), 1, + ACTIONS(5595), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5597), 1, anon_sym_QMARK, - ACTIONS(5611), 1, + ACTIONS(5599), 1, anon_sym_BANG, - ACTIONS(5613), 1, + ACTIONS(5601), 1, anon_sym_LBRACK2, - ACTIONS(5615), 1, + ACTIONS(5603), 1, anon_sym_AMP, - ACTIONS(5617), 1, + ACTIONS(5605), 1, anon_sym_map_LBRACK, - STATE(878), 1, + STATE(1656), 1, sym_plain_type, - STATE(4460), 1, + STATE(4416), 1, sym_reference_expression, - STATE(521), 2, + STATE(1669), 2, sym_type_reference_expression, sym_qualified_type, - STATE(898), 4, + STATE(1636), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(896), 12, + STATE(1651), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286317,47 +286943,47 @@ static const uint16_t ts_small_parse_table[] = { [113977] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(3419), 1, sym_identifier, - ACTIONS(559), 1, + ACTIONS(3423), 1, anon_sym_fn, - ACTIONS(563), 1, + ACTIONS(3427), 1, anon_sym_struct, - ACTIONS(573), 1, + ACTIONS(3437), 1, anon_sym_shared, - ACTIONS(577), 1, + ACTIONS(3441), 1, anon_sym_chan, - ACTIONS(579), 1, + ACTIONS(3443), 1, anon_sym_thread, - ACTIONS(581), 1, + ACTIONS(3445), 1, anon_sym_atomic, - ACTIONS(5605), 1, + ACTIONS(5405), 1, anon_sym_LPAREN, - ACTIONS(5607), 1, + ACTIONS(5595), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5597), 1, anon_sym_QMARK, - ACTIONS(5611), 1, + ACTIONS(5599), 1, anon_sym_BANG, - ACTIONS(5613), 1, + ACTIONS(5601), 1, anon_sym_LBRACK2, - ACTIONS(5615), 1, + ACTIONS(5603), 1, anon_sym_AMP, - ACTIONS(5617), 1, + ACTIONS(5605), 1, anon_sym_map_LBRACK, - STATE(929), 1, + STATE(1659), 1, sym_plain_type, - STATE(4460), 1, + STATE(4416), 1, sym_reference_expression, - STATE(521), 2, + STATE(1669), 2, sym_type_reference_expression, sym_qualified_type, - STATE(898), 4, + STATE(1636), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(896), 12, + STATE(1651), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286373,47 +286999,47 @@ static const uint16_t ts_small_parse_table[] = { [114053] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(3419), 1, sym_identifier, - ACTIONS(559), 1, + ACTIONS(3423), 1, anon_sym_fn, - ACTIONS(563), 1, + ACTIONS(3427), 1, anon_sym_struct, - ACTIONS(573), 1, + ACTIONS(3437), 1, anon_sym_shared, - ACTIONS(577), 1, + ACTIONS(3441), 1, anon_sym_chan, - ACTIONS(579), 1, + ACTIONS(3443), 1, anon_sym_thread, - ACTIONS(581), 1, + ACTIONS(3445), 1, anon_sym_atomic, - ACTIONS(5605), 1, + ACTIONS(5405), 1, anon_sym_LPAREN, - ACTIONS(5607), 1, + ACTIONS(5595), 1, anon_sym_STAR, - ACTIONS(5609), 1, + ACTIONS(5597), 1, anon_sym_QMARK, - ACTIONS(5611), 1, + ACTIONS(5599), 1, anon_sym_BANG, - ACTIONS(5613), 1, + ACTIONS(5601), 1, anon_sym_LBRACK2, - ACTIONS(5615), 1, + ACTIONS(5603), 1, anon_sym_AMP, - ACTIONS(5617), 1, + ACTIONS(5605), 1, anon_sym_map_LBRACK, - STATE(931), 1, + STATE(1670), 1, sym_plain_type, - STATE(4460), 1, + STATE(4416), 1, sym_reference_expression, - STATE(521), 2, + STATE(1669), 2, sym_type_reference_expression, sym_qualified_type, - STATE(898), 4, + STATE(1636), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(896), 12, + STATE(1651), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286429,47 +287055,47 @@ static const uint16_t ts_small_parse_table[] = { [114129] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3277), 1, + ACTIONS(3419), 1, sym_identifier, - ACTIONS(3281), 1, + ACTIONS(3423), 1, anon_sym_fn, - ACTIONS(3285), 1, + ACTIONS(3427), 1, anon_sym_struct, - ACTIONS(3295), 1, + ACTIONS(3437), 1, anon_sym_shared, - ACTIONS(3299), 1, + ACTIONS(3441), 1, anon_sym_chan, - ACTIONS(3301), 1, + ACTIONS(3443), 1, anon_sym_thread, - ACTIONS(3303), 1, + ACTIONS(3445), 1, anon_sym_atomic, - ACTIONS(5633), 1, + ACTIONS(5405), 1, anon_sym_LPAREN, - ACTIONS(5635), 1, + ACTIONS(5595), 1, anon_sym_STAR, - ACTIONS(5637), 1, + ACTIONS(5597), 1, anon_sym_QMARK, - ACTIONS(5639), 1, + ACTIONS(5599), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5601), 1, anon_sym_LBRACK2, - ACTIONS(5643), 1, + ACTIONS(5603), 1, anon_sym_AMP, - ACTIONS(5645), 1, + ACTIONS(5605), 1, anon_sym_map_LBRACK, - STATE(1246), 1, + STATE(1650), 1, sym_plain_type, - STATE(4507), 1, + STATE(4416), 1, sym_reference_expression, - STATE(1164), 2, + STATE(1669), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1177), 4, + STATE(1636), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1178), 12, + STATE(1651), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286485,47 +287111,47 @@ static const uint16_t ts_small_parse_table[] = { [114205] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, - sym_identifier, ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(5321), 1, + sym_identifier, + ACTIONS(3423), 1, anon_sym_fn, - ACTIONS(5333), 1, + ACTIONS(3427), 1, + anon_sym_struct, + ACTIONS(3437), 1, anon_sym_shared, - ACTIONS(5337), 1, + ACTIONS(3441), 1, anon_sym_chan, - ACTIONS(5339), 1, + ACTIONS(3443), 1, anon_sym_thread, - ACTIONS(5341), 1, + ACTIONS(3445), 1, anon_sym_atomic, - ACTIONS(5399), 1, + ACTIONS(5405), 1, anon_sym_LPAREN, - ACTIONS(5403), 1, + ACTIONS(5595), 1, anon_sym_STAR, - ACTIONS(5405), 1, + ACTIONS(5597), 1, anon_sym_QMARK, - ACTIONS(5407), 1, + ACTIONS(5599), 1, anon_sym_BANG, - ACTIONS(5409), 1, + ACTIONS(5601), 1, anon_sym_LBRACK2, - ACTIONS(5411), 1, + ACTIONS(5603), 1, anon_sym_AMP, - ACTIONS(5413), 1, + ACTIONS(5605), 1, anon_sym_map_LBRACK, - STATE(1635), 1, + STATE(1653), 1, sym_plain_type, STATE(4416), 1, sym_reference_expression, - STATE(3390), 2, + STATE(1669), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1665), 4, + STATE(1636), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1641), 12, + STATE(1651), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286541,47 +287167,47 @@ static const uint16_t ts_small_parse_table[] = { [114281] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3763), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(3767), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3771), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(3781), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3785), 1, + anon_sym_chan, + ACTIONS(3787), 1, + anon_sym_thread, + ACTIONS(3789), 1, + anon_sym_atomic, + ACTIONS(5607), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5609), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5611), 1, + anon_sym_QMARK, + ACTIONS(5613), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5615), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5617), 1, anon_sym_AMP, - STATE(4562), 1, + ACTIONS(5619), 1, + anon_sym_map_LBRACK, + STATE(2590), 1, sym_plain_type, - STATE(4600), 1, + STATE(4490), 1, sym_reference_expression, - STATE(3581), 2, + STATE(2453), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(2587), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(2535), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286597,47 +287223,47 @@ static const uint16_t ts_small_parse_table[] = { [114357] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3419), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(3423), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3427), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(3437), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3441), 1, + anon_sym_chan, + ACTIONS(3443), 1, + anon_sym_thread, + ACTIONS(3445), 1, + anon_sym_atomic, + ACTIONS(5405), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5595), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5597), 1, + anon_sym_QMARK, + ACTIONS(5599), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5601), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5603), 1, anon_sym_AMP, - STATE(4063), 1, + ACTIONS(5605), 1, + anon_sym_map_LBRACK, + STATE(1646), 1, sym_plain_type, - STATE(4600), 1, + STATE(4416), 1, sym_reference_expression, - STATE(3581), 2, + STATE(1669), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1636), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1651), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286653,47 +287279,47 @@ static const uint16_t ts_small_parse_table[] = { [114433] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3275), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(3279), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3283), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(3293), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3297), 1, + anon_sym_chan, + ACTIONS(3299), 1, + anon_sym_thread, + ACTIONS(3301), 1, + anon_sym_atomic, + ACTIONS(5639), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5641), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5643), 1, + anon_sym_QMARK, + ACTIONS(5645), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5647), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5649), 1, anon_sym_AMP, - STATE(2410), 1, + ACTIONS(5651), 1, + anon_sym_map_LBRACK, + STATE(1250), 1, sym_plain_type, - STATE(4600), 1, + STATE(4511), 1, sym_reference_expression, - STATE(3581), 2, + STATE(1167), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1254), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1255), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286709,47 +287335,47 @@ static const uint16_t ts_small_parse_table[] = { [114509] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3275), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(3279), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3283), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(3293), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3297), 1, + anon_sym_chan, + ACTIONS(3299), 1, + anon_sym_thread, + ACTIONS(3301), 1, + anon_sym_atomic, + ACTIONS(5639), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5641), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5643), 1, + anon_sym_QMARK, + ACTIONS(5645), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5647), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5649), 1, anon_sym_AMP, - STATE(2409), 1, + ACTIONS(5651), 1, + anon_sym_map_LBRACK, + STATE(1226), 1, sym_plain_type, - STATE(4600), 1, + STATE(4511), 1, sym_reference_expression, - STATE(3581), 2, + STATE(1167), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1254), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1255), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286765,47 +287391,47 @@ static const uint16_t ts_small_parse_table[] = { [114585] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3419), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(3423), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3427), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(3437), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3441), 1, + anon_sym_chan, + ACTIONS(3443), 1, + anon_sym_thread, + ACTIONS(3445), 1, + anon_sym_atomic, + ACTIONS(5405), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5595), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5597), 1, + anon_sym_QMARK, + ACTIONS(5599), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5601), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5603), 1, anon_sym_AMP, - STATE(4153), 1, + ACTIONS(5605), 1, + anon_sym_map_LBRACK, + STATE(1668), 1, sym_plain_type, - STATE(4600), 1, + STATE(4416), 1, sym_reference_expression, - STATE(3581), 2, + STATE(1669), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1636), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1651), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286821,47 +287447,47 @@ static const uint16_t ts_small_parse_table[] = { [114661] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1610), 1, sym_identifier, - ACTIONS(1606), 1, + ACTIONS(1614), 1, anon_sym_fn, - ACTIONS(1610), 1, + ACTIONS(1618), 1, anon_sym_struct, - ACTIONS(1620), 1, + ACTIONS(1628), 1, anon_sym_shared, - ACTIONS(1624), 1, + ACTIONS(1632), 1, anon_sym_chan, - ACTIONS(1626), 1, + ACTIONS(1634), 1, anon_sym_thread, - ACTIONS(1628), 1, + ACTIONS(1636), 1, anon_sym_atomic, - ACTIONS(5591), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5593), 1, + ACTIONS(5537), 1, anon_sym_STAR, - ACTIONS(5595), 1, + ACTIONS(5539), 1, anon_sym_QMARK, - ACTIONS(5597), 1, + ACTIONS(5541), 1, anon_sym_BANG, - ACTIONS(5599), 1, + ACTIONS(5543), 1, anon_sym_LBRACK2, - ACTIONS(5601), 1, + ACTIONS(5545), 1, anon_sym_AMP, - ACTIONS(5603), 1, + ACTIONS(5547), 1, anon_sym_map_LBRACK, - STATE(1028), 1, + STATE(1042), 1, sym_plain_type, - STATE(4444), 1, + STATE(4448), 1, sym_reference_expression, - STATE(994), 2, + STATE(1002), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1059), 4, + STATE(1084), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1060), 12, + STATE(1085), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286877,47 +287503,47 @@ static const uint16_t ts_small_parse_table[] = { [114737] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, + ACTIONS(3275), 1, sym_identifier, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(5321), 1, + ACTIONS(3279), 1, anon_sym_fn, - ACTIONS(5333), 1, + ACTIONS(3283), 1, + anon_sym_struct, + ACTIONS(3293), 1, anon_sym_shared, - ACTIONS(5337), 1, + ACTIONS(3297), 1, anon_sym_chan, - ACTIONS(5339), 1, + ACTIONS(3299), 1, anon_sym_thread, - ACTIONS(5341), 1, + ACTIONS(3301), 1, anon_sym_atomic, - ACTIONS(5399), 1, + ACTIONS(5639), 1, anon_sym_LPAREN, - ACTIONS(5403), 1, + ACTIONS(5641), 1, anon_sym_STAR, - ACTIONS(5405), 1, + ACTIONS(5643), 1, anon_sym_QMARK, - ACTIONS(5407), 1, + ACTIONS(5645), 1, anon_sym_BANG, - ACTIONS(5409), 1, + ACTIONS(5647), 1, anon_sym_LBRACK2, - ACTIONS(5411), 1, + ACTIONS(5649), 1, anon_sym_AMP, - ACTIONS(5413), 1, + ACTIONS(5651), 1, anon_sym_map_LBRACK, - STATE(1639), 1, + STATE(1228), 1, sym_plain_type, - STATE(4416), 1, + STATE(4511), 1, sym_reference_expression, - STATE(3390), 2, + STATE(1167), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1665), 4, + STATE(1254), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1641), 12, + STATE(1255), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286933,47 +287559,47 @@ static const uint16_t ts_small_parse_table[] = { [114813] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(3419), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(3423), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(3427), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(3437), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(3441), 1, + anon_sym_chan, + ACTIONS(3443), 1, + anon_sym_thread, + ACTIONS(3445), 1, + anon_sym_atomic, + ACTIONS(5405), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5595), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5597), 1, + anon_sym_QMARK, + ACTIONS(5599), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5601), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5603), 1, anon_sym_AMP, - STATE(2407), 1, + ACTIONS(5605), 1, + anon_sym_map_LBRACK, + STATE(1672), 1, sym_plain_type, - STATE(4600), 1, + STATE(4416), 1, sym_reference_expression, - STATE(3581), 2, + STATE(1669), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1636), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1651), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286989,47 +287615,47 @@ static const uint16_t ts_small_parse_table[] = { [114889] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1610), 1, sym_identifier, - ACTIONS(1606), 1, + ACTIONS(1614), 1, anon_sym_fn, - ACTIONS(1610), 1, + ACTIONS(1618), 1, anon_sym_struct, - ACTIONS(1620), 1, + ACTIONS(1628), 1, anon_sym_shared, - ACTIONS(1624), 1, + ACTIONS(1632), 1, anon_sym_chan, - ACTIONS(1626), 1, + ACTIONS(1634), 1, anon_sym_thread, - ACTIONS(1628), 1, + ACTIONS(1636), 1, anon_sym_atomic, - ACTIONS(5591), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5593), 1, + ACTIONS(5537), 1, anon_sym_STAR, - ACTIONS(5595), 1, + ACTIONS(5539), 1, anon_sym_QMARK, - ACTIONS(5597), 1, + ACTIONS(5541), 1, anon_sym_BANG, - ACTIONS(5599), 1, + ACTIONS(5543), 1, anon_sym_LBRACK2, - ACTIONS(5601), 1, + ACTIONS(5545), 1, anon_sym_AMP, - ACTIONS(5603), 1, + ACTIONS(5547), 1, anon_sym_map_LBRACK, - STATE(1017), 1, + STATE(1046), 1, sym_plain_type, - STATE(4444), 1, + STATE(4448), 1, sym_reference_expression, - STATE(994), 2, + STATE(1002), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1059), 4, + STATE(1084), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1060), 12, + STATE(1085), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287045,47 +287671,47 @@ static const uint16_t ts_small_parse_table[] = { [114965] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1610), 1, sym_identifier, - ACTIONS(1606), 1, + ACTIONS(1614), 1, anon_sym_fn, - ACTIONS(1610), 1, + ACTIONS(1618), 1, anon_sym_struct, - ACTIONS(1620), 1, + ACTIONS(1628), 1, anon_sym_shared, - ACTIONS(1624), 1, + ACTIONS(1632), 1, anon_sym_chan, - ACTIONS(1626), 1, + ACTIONS(1634), 1, anon_sym_thread, - ACTIONS(1628), 1, + ACTIONS(1636), 1, anon_sym_atomic, - ACTIONS(5591), 1, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(5593), 1, + ACTIONS(5537), 1, anon_sym_STAR, - ACTIONS(5595), 1, + ACTIONS(5539), 1, anon_sym_QMARK, - ACTIONS(5597), 1, + ACTIONS(5541), 1, anon_sym_BANG, - ACTIONS(5599), 1, + ACTIONS(5543), 1, anon_sym_LBRACK2, - ACTIONS(5601), 1, + ACTIONS(5545), 1, anon_sym_AMP, - ACTIONS(5603), 1, + ACTIONS(5547), 1, anon_sym_map_LBRACK, - STATE(1016), 1, + STATE(1047), 1, sym_plain_type, - STATE(4444), 1, + STATE(4448), 1, sym_reference_expression, - STATE(994), 2, + STATE(1002), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1059), 4, + STATE(1084), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1060), 12, + STATE(1085), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287101,47 +287727,47 @@ static const uint16_t ts_small_parse_table[] = { [115041] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(1610), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(1614), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(1618), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(1628), 1, anon_sym_shared, - ACTIONS(3377), 1, + ACTIONS(1632), 1, + anon_sym_chan, + ACTIONS(1634), 1, + anon_sym_thread, + ACTIONS(1636), 1, + anon_sym_atomic, + ACTIONS(5535), 1, anon_sym_LPAREN, - ACTIONS(3379), 1, + ACTIONS(5537), 1, anon_sym_STAR, - ACTIONS(5139), 1, + ACTIONS(5539), 1, + anon_sym_QMARK, + ACTIONS(5541), 1, anon_sym_BANG, - ACTIONS(5141), 1, + ACTIONS(5543), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5545), 1, anon_sym_AMP, - STATE(4430), 1, + ACTIONS(5547), 1, + anon_sym_map_LBRACK, + STATE(1011), 1, sym_plain_type, - STATE(4600), 1, + STATE(4448), 1, sym_reference_expression, - STATE(3581), 2, + STATE(1002), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2428), 4, + STATE(1084), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2424), 12, + STATE(1085), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287157,126 +287783,36 @@ static const uint16_t ts_small_parse_table[] = { [115117] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4387), 1, - sym__plain_type_without_special, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2424), 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, - [115178] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4219), 1, - sym__plain_type_without_special, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2424), 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, - [115239] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(4377), 1, + STATE(4234), 1, sym__plain_type_without_special, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287289,86 +287825,86 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115300] = 18, + [115178] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, + ACTIONS(1418), 1, sym___double_quote, - ACTIONS(1295), 1, + ACTIONS(1420), 1, sym___single_quote, - ACTIONS(1297), 1, + ACTIONS(1422), 1, sym___c_double_quote, - ACTIONS(1299), 1, + ACTIONS(1424), 1, sym___c_single_quote, - ACTIONS(1301), 1, + ACTIONS(1426), 1, sym___r_double_quote, - ACTIONS(1303), 1, + ACTIONS(1428), 1, sym___r_single_quote, - ACTIONS(5647), 1, + ACTIONS(5653), 1, sym_identifier, - ACTIONS(5649), 1, + ACTIONS(5655), 1, anon_sym_if, - ACTIONS(5651), 1, + ACTIONS(5657), 1, anon_sym_unsafe, - STATE(3967), 1, - sym_reference_expression, - STATE(4013), 1, + STATE(3929), 1, sym_value_attribute, - STATE(4027), 1, - sym_attribute_expression, - STATE(4247), 1, + STATE(3998), 1, + sym_reference_expression, + STATE(4201), 1, sym_literal, - ACTIONS(1287), 2, + STATE(4379), 1, + sym_attribute_expression, + ACTIONS(1412), 2, sym_float_literal, sym_rune_literal, - STATE(2336), 3, + STATE(2329), 3, sym_c_string_literal, sym_raw_string_literal, sym_interpreted_string_literal, - STATE(4184), 4, + STATE(4334), 4, sym_if_attribute, sym__plain_attribute, sym_literal_attribute, sym_key_value_attribute, - ACTIONS(1271), 5, + ACTIONS(1396), 5, sym_none, sym_true, sym_false, sym_nil, sym_int_literal, - [115365] = 16, + [115243] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(4119), 1, + STATE(4126), 1, sym__plain_type_without_special, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287381,39 +287917,39 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115426] = 16, + [115304] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(4263), 1, + STATE(4479), 1, sym__plain_type_without_special, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287426,86 +287962,176 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115487] = 18, + [115365] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, + ACTIONS(1418), 1, sym___double_quote, - ACTIONS(1295), 1, + ACTIONS(1420), 1, sym___single_quote, - ACTIONS(1297), 1, + ACTIONS(1422), 1, sym___c_double_quote, - ACTIONS(1299), 1, + ACTIONS(1424), 1, sym___c_single_quote, - ACTIONS(1301), 1, + ACTIONS(1426), 1, sym___r_double_quote, - ACTIONS(1303), 1, + ACTIONS(1428), 1, sym___r_single_quote, - ACTIONS(5647), 1, + ACTIONS(5653), 1, sym_identifier, - ACTIONS(5649), 1, + ACTIONS(5655), 1, anon_sym_if, - ACTIONS(5651), 1, + ACTIONS(5657), 1, anon_sym_unsafe, - STATE(3967), 1, - sym_reference_expression, - STATE(4013), 1, - sym_value_attribute, - STATE(4093), 1, + STATE(3868), 1, sym_attribute_expression, - STATE(4247), 1, + STATE(3929), 1, + sym_value_attribute, + STATE(3998), 1, + sym_reference_expression, + STATE(4201), 1, sym_literal, - ACTIONS(1287), 2, + ACTIONS(1412), 2, sym_float_literal, sym_rune_literal, - STATE(2336), 3, + STATE(2329), 3, sym_c_string_literal, sym_raw_string_literal, sym_interpreted_string_literal, - STATE(4184), 4, + STATE(4334), 4, sym_if_attribute, sym__plain_attribute, sym_literal_attribute, sym_key_value_attribute, - ACTIONS(1271), 5, + ACTIONS(1396), 5, sym_none, sym_true, sym_false, sym_nil, sym_int_literal, - [115552] = 16, + [115430] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, + sym_identifier, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(609), 1, + anon_sym_shared, + ACTIONS(3357), 1, + anon_sym_STAR, + ACTIONS(5155), 1, + anon_sym_LBRACK2, + ACTIONS(5157), 1, + anon_sym_AMP, + STATE(4286), 1, + sym__plain_type_without_special, + STATE(4655), 1, + sym_reference_expression, + STATE(3547), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2417), 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, + [115491] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_map_LBRACK, ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(591), 1, + sym_identifier, + ACTIONS(597), 1, + anon_sym_fn, + ACTIONS(601), 1, + anon_sym_struct, + ACTIONS(609), 1, + anon_sym_shared, + ACTIONS(3357), 1, + anon_sym_STAR, + ACTIONS(5155), 1, + anon_sym_LBRACK2, + ACTIONS(5157), 1, + anon_sym_AMP, + STATE(4311), 1, + sym__plain_type_without_special, + STATE(4655), 1, + sym_reference_expression, + STATE(3547), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2417), 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, + [115552] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(4318), 1, + STATE(4142), 1, sym__plain_type_without_special, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287521,36 +288147,36 @@ static const uint16_t ts_small_parse_table[] = { [115613] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(4137), 1, + STATE(4466), 1, sym__plain_type_without_special, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287566,36 +288192,36 @@ static const uint16_t ts_small_parse_table[] = { [115674] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(4496), 1, + STATE(4127), 1, sym__plain_type_without_special, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287611,36 +288237,36 @@ static const uint16_t ts_small_parse_table[] = { [115735] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(4103), 1, + STATE(4242), 1, sym__plain_type_without_special, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287656,36 +288282,36 @@ static const uint16_t ts_small_parse_table[] = { [115796] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(4354), 1, + STATE(4396), 1, sym__plain_type_without_special, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287701,36 +288327,36 @@ static const uint16_t ts_small_parse_table[] = { [115857] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(4211), 1, + STATE(4404), 1, sym__plain_type_without_special, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287746,36 +288372,36 @@ static const uint16_t ts_small_parse_table[] = { [115918] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(4208), 1, + STATE(4140), 1, sym__plain_type_without_special, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287791,36 +288417,36 @@ static const uint16_t ts_small_parse_table[] = { [115979] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(4438), 1, + STATE(4241), 1, sym__plain_type_without_special, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287836,36 +288462,36 @@ static const uint16_t ts_small_parse_table[] = { [116040] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_map_LBRACK, ACTIONS(83), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(85), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(593), 1, + ACTIONS(591), 1, sym_identifier, - ACTIONS(599), 1, + ACTIONS(597), 1, anon_sym_fn, - ACTIONS(603), 1, + ACTIONS(601), 1, anon_sym_struct, - ACTIONS(611), 1, + ACTIONS(609), 1, anon_sym_shared, - ACTIONS(3379), 1, + ACTIONS(3357), 1, anon_sym_STAR, - ACTIONS(5141), 1, + ACTIONS(5155), 1, anon_sym_LBRACK2, - ACTIONS(5143), 1, + ACTIONS(5157), 1, anon_sym_AMP, - STATE(4301), 1, + STATE(4350), 1, sym__plain_type_without_special, - STATE(4600), 1, + STATE(4655), 1, sym_reference_expression, - STATE(3581), 2, + STATE(3547), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2424), 12, + STATE(2417), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287881,39 +288507,39 @@ static const uint16_t ts_small_parse_table[] = { [116101] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4671), 1, + ACTIONS(4707), 1, anon_sym_LBRACK, - ACTIONS(5653), 1, + ACTIONS(5659), 1, sym_identifier, - ACTIONS(5655), 1, - anon_sym_LPAREN, ACTIONS(5661), 1, + anon_sym_LPAREN, + ACTIONS(5667), 1, anon_sym_LT2, - ACTIONS(5663), 1, + ACTIONS(5669), 1, anon_sym_LBRACK2, - STATE(3405), 1, + STATE(3371), 1, sym_receiver, - STATE(3537), 1, + STATE(3532), 1, sym_capture_list, - STATE(3784), 1, + STATE(3826), 1, sym_generic_parameters, - STATE(4095), 1, + STATE(4197), 1, sym_signature, - STATE(4613), 1, + STATE(4662), 1, sym_reference_expression, - STATE(4626), 1, + STATE(4667), 1, sym_static_receiver, - STATE(2924), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3534), 2, + STATE(3519), 2, sym__function_name, sym_overridable_operator, - ACTIONS(5659), 3, + ACTIONS(5665), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5657), 8, + ACTIONS(5663), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -287923,9 +288549,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, [116161] = 2, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(3137), 24, + ACTIONS(2854), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -287951,9 +288577,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_atomic, anon_sym_AT_LBRACK, [116191] = 2, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(3101), 24, + ACTIONS(2858), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -287979,9 +288605,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_atomic, anon_sym_AT_LBRACK, [116221] = 2, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(3105), 24, + ACTIONS(2810), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -288007,9 +288633,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_atomic, anon_sym_AT_LBRACK, [116251] = 2, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(3133), 24, + ACTIONS(2922), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -288035,9 +288661,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_atomic, anon_sym_AT_LBRACK, [116281] = 2, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(3041), 24, + ACTIONS(2814), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -288063,16 +288689,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_atomic, anon_sym_AT_LBRACK, [116311] = 4, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - STATE(3569), 1, + STATE(3561), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(1684), 4, + ACTIONS(1710), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - ACTIONS(1690), 15, + ACTIONS(1716), 15, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, @@ -288088,10 +288714,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [116341] = 3, + [116341] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5659), 1, + sym_identifier, + ACTIONS(5671), 1, + anon_sym_LPAREN, + STATE(3401), 1, + sym_receiver, + STATE(4441), 1, + sym_static_receiver, + STATE(4662), 1, + sym_reference_expression, + STATE(3521), 2, + sym__function_name, + sym_overridable_operator, + ACTIONS(5665), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5663), 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, + [116379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3105), 7, + ACTIONS(2810), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -288099,7 +288754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3103), 11, + ACTIONS(2808), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -288111,10 +288766,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [116367] = 3, + [116405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3137), 7, + ACTIONS(2814), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -288122,7 +288777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3135), 11, + ACTIONS(2812), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -288134,10 +288789,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [116393] = 3, + [116431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3133), 7, + ACTIONS(2858), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -288145,7 +288800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3131), 11, + ACTIONS(2856), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -288157,85 +288812,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [116419] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5653), 1, - sym_identifier, - ACTIONS(5665), 1, - anon_sym_LPAREN, - STATE(3377), 1, - sym_receiver, - STATE(4613), 1, - sym_reference_expression, - STATE(4668), 1, - sym_static_receiver, - STATE(3515), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5659), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5657), 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, - [116457] = 9, + [116457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5653), 1, + ACTIONS(2854), 7, + anon_sym_fn, + anon_sym_struct, sym_identifier, - ACTIONS(5665), 1, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(2852), 11, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - STATE(3392), 1, - sym_receiver, - STATE(4560), 1, - sym_static_receiver, - STATE(4613), 1, - sym_reference_expression, - STATE(3529), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5659), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5657), 8, - anon_sym_PLUS, - anon_sym_DASH, + 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, - [116495] = 9, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_map_LBRACK, + [116483] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5653), 1, + ACTIONS(5659), 1, sym_identifier, - ACTIONS(5665), 1, + ACTIONS(5671), 1, anon_sym_LPAREN, - STATE(3398), 1, + STATE(3370), 1, sym_receiver, - STATE(4542), 1, + STATE(4496), 1, sym_static_receiver, - STATE(4613), 1, + STATE(4662), 1, sym_reference_expression, - STATE(3506), 2, + STATE(3511), 2, sym__function_name, sym_overridable_operator, - ACTIONS(5659), 3, + ACTIONS(5665), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5657), 8, + ACTIONS(5663), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -288244,10 +288864,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [116533] = 3, + [116521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3041), 7, + ACTIONS(2922), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -288255,7 +288875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3039), 11, + ACTIONS(2920), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -288267,42 +288887,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [116559] = 12, + [116547] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 1, + ACTIONS(1418), 1, sym___double_quote, - ACTIONS(1295), 1, + ACTIONS(1420), 1, sym___single_quote, - ACTIONS(1297), 1, + ACTIONS(1422), 1, sym___c_double_quote, - ACTIONS(1299), 1, + ACTIONS(1424), 1, sym___c_single_quote, - ACTIONS(1301), 1, + ACTIONS(1426), 1, sym___r_double_quote, - ACTIONS(1303), 1, + ACTIONS(1428), 1, sym___r_single_quote, - ACTIONS(5667), 1, + ACTIONS(5673), 1, sym_identifier, - STATE(4218), 1, + STATE(4376), 1, sym_literal, - ACTIONS(1287), 2, + ACTIONS(1412), 2, sym_float_literal, sym_rune_literal, - STATE(2336), 3, + STATE(2329), 3, sym_c_string_literal, sym_raw_string_literal, sym_interpreted_string_literal, - ACTIONS(1271), 5, + ACTIONS(1396), 5, sym_none, sym_true, sym_false, sym_nil, sym_int_literal, - [116603] = 3, + [116591] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5659), 1, + sym_identifier, + ACTIONS(5671), 1, + anon_sym_LPAREN, + STATE(3374), 1, + sym_receiver, + STATE(4480), 1, + sym_static_receiver, + STATE(4662), 1, + sym_reference_expression, + STATE(3498), 2, + sym__function_name, + sym_overridable_operator, + ACTIONS(5665), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5663), 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, + [116629] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1708), 1, + anon_sym_SEMI, + STATE(4045), 1, + aux_sym_strictly_expression_list_repeat1, + ACTIONS(3309), 15, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [116656] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3101), 7, + ACTIONS(5675), 1, + anon_sym_static, + ACTIONS(5677), 1, + anon_sym_volatile, + ACTIONS(4310), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -288310,24 +288986,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3099), 11, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(4312), 8, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [116629] = 2, + [116685] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 17, - anon_sym_SEMI, + ACTIONS(1708), 1, anon_sym_LBRACE, + STATE(3927), 1, + aux_sym_strictly_expression_list_repeat1, + ACTIONS(3309), 15, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, @@ -288343,10 +289018,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [116652] = 2, - ACTIONS(487), 1, + [116712] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(5669), 17, + ACTIONS(5679), 17, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -288364,33 +289039,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [116675] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1682), 1, - anon_sym_SEMI, - STATE(3969), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(3305), 15, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [116702] = 2, - ACTIONS(487), 1, + [116735] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(5671), 17, + ACTIONS(5681), 17, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -288408,14 +289060,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [116725] = 4, + [116758] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1682), 1, + ACTIONS(3309), 17, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(4091), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(3305), 15, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, @@ -288431,38 +289081,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [116752] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5673), 1, - anon_sym_static, - ACTIONS(5675), 1, - anon_sym_volatile, - ACTIONS(4314), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(4316), 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, [116781] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5677), 1, + ACTIONS(5683), 1, anon_sym_COMMA, - STATE(3350), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(3787), 14, + STATE(3353), 1, + aux_sym_expression_without_blocks_list_repeat1, + ACTIONS(4613), 14, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -288476,15 +289103,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, [116807] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5679), 1, + ACTIONS(4422), 1, anon_sym_COMMA, - STATE(3350), 1, + STATE(3357), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(3305), 14, + ACTIONS(3233), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -288502,11 +289128,33 @@ static const uint16_t ts_small_parse_table[] = { [116833] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4566), 1, + ACTIONS(5686), 1, + anon_sym_volatile, + ACTIONS(4695), 7, + anon_sym_fn, + anon_sym_struct, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(4697), 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, + [116859] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4576), 1, anon_sym_COMMA, - STATE(3355), 1, + STATE(3353), 1, aux_sym_expression_without_blocks_list_repeat1, - ACTIONS(5682), 14, + ACTIONS(5688), 14, anon_sym_LBRACE, anon_sym_EQ, anon_sym_STAR_EQ, @@ -288521,14 +289169,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [116859] = 4, + [116885] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5684), 1, + ACTIONS(5690), 1, anon_sym_COMMA, - STATE(3349), 1, + STATE(3359), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(3227), 14, + ACTIONS(3759), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -288543,14 +289191,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [116885] = 4, + [116911] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5686), 1, + ACTIONS(4480), 1, anon_sym_COMMA, - STATE(3349), 1, + STATE(3357), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(3227), 14, + ACTIONS(3233), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -288565,14 +289213,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [116911] = 4, + [116937] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4426), 1, + ACTIONS(5692), 1, anon_sym_COMMA, - STATE(3349), 1, + STATE(3359), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(3227), 14, + ACTIONS(3309), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -288587,15 +289235,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [116937] = 4, + [116963] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5688), 1, + ACTIONS(5695), 1, anon_sym_COMMA, - STATE(3355), 1, - aux_sym_expression_without_blocks_list_repeat1, - ACTIONS(4607), 14, - anon_sym_LBRACE, + STATE(3357), 1, + aux_sym_strictly_expression_list_repeat1, + ACTIONS(3233), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -288609,36 +289256,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [116963] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5691), 1, - anon_sym_volatile, - ACTIONS(4697), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(4699), 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, + anon_sym_COLON_EQ, [116989] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4534), 1, + ACTIONS(5697), 1, anon_sym_COMMA, - STATE(3349), 1, + STATE(3357), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(3227), 14, + ACTIONS(3233), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -288653,10 +289279,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [117015] = 3, + [117015] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(645), 1, + anon_sym_pub, + ACTIONS(5699), 1, + sym_identifier, + ACTIONS(5701), 1, + anon_sym_RBRACE, + STATE(3365), 1, + aux_sym__interface_body_repeat1, + STATE(3476), 1, + sym__struct_field_definition, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, + sym_reference_expression, + ACTIONS(633), 2, + anon_sym___global, + anon_sym_mut, + STATE(3449), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3478), 3, + sym_struct_field_scope, + sym_struct_field_declaration, + sym_interface_method_definition, + [117056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4697), 7, + ACTIONS(4695), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -288664,7 +289319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(4699), 8, + ACTIONS(4697), 8, anon_sym_LPAREN, anon_sym_STAR, anon_sym_DOT_DOT_DOT, @@ -288673,14 +289328,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [117038] = 4, + [117079] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5693), 1, + ACTIONS(5703), 1, anon_sym_LBRACE, - STATE(4707), 1, + STATE(4413), 1, sym__select_arm_assignment_statement, - ACTIONS(5695), 13, + ACTIONS(5705), 13, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -288694,466 +289349,434 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [117063] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4723), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(4725), 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, - [117086] = 12, + [117104] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 1, + ACTIONS(645), 1, anon_sym_pub, - ACTIONS(5697), 1, - sym_identifier, ACTIONS(5699), 1, - anon_sym_RBRACE, - STATE(3363), 1, - aux_sym__interface_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3465), 3, - sym_struct_field_scope, - sym_struct_field_declaration, - sym_interface_method_definition, - [117127] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5697), 1, sym_identifier, - ACTIONS(5701), 1, + ACTIONS(5707), 1, anon_sym_RBRACE, - STATE(3361), 1, + STATE(3366), 1, aux_sym__interface_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, + STATE(3476), 1, sym__struct_field_definition, - STATE(4416), 1, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, sym_reference_expression, - ACTIONS(627), 2, + ACTIONS(633), 2, anon_sym___global, anon_sym_mut, - STATE(3445), 2, + STATE(3449), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3465), 3, + STATE(3478), 3, sym_struct_field_scope, sym_struct_field_declaration, sym_interface_method_definition, - [117168] = 12, + [117145] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5703), 1, + ACTIONS(5709), 1, sym_identifier, - ACTIONS(5706), 1, + ACTIONS(5712), 1, anon_sym_RBRACE, - ACTIONS(5711), 1, + ACTIONS(5717), 1, anon_sym_pub, - STATE(3363), 1, + STATE(3366), 1, aux_sym__interface_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, + STATE(3476), 1, sym__struct_field_definition, - STATE(4416), 1, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, sym_reference_expression, - ACTIONS(5708), 2, + ACTIONS(5714), 2, anon_sym___global, anon_sym_mut, - STATE(3445), 2, + STATE(3449), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3465), 3, + STATE(3478), 3, sym_struct_field_scope, sym_struct_field_declaration, sym_interface_method_definition, - [117209] = 5, + [117186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5714), 1, + ACTIONS(4729), 7, + anon_sym_fn, + anon_sym_struct, sym_identifier, - STATE(3530), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5659), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5657), 8, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(4731), 8, + 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, - [117235] = 12, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_map_LBRACK, + [117209] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 1, + ACTIONS(645), 1, anon_sym_pub, - ACTIONS(5716), 1, + ACTIONS(5720), 1, sym_identifier, - ACTIONS(5718), 1, + ACTIONS(5722), 1, anon_sym_RBRACE, - STATE(3393), 1, + STATE(3398), 1, aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, + STATE(3476), 1, sym__struct_field_definition, - STATE(4416), 1, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, sym_reference_expression, - ACTIONS(627), 2, + ACTIONS(633), 2, anon_sym___global, anon_sym_mut, - STATE(3445), 2, + STATE(3449), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3479), 2, + STATE(3475), 2, sym_struct_field_scope, sym_struct_field_declaration, - [117275] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5722), 1, - anon_sym_COLON_EQ, - ACTIONS(5720), 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, - [117297] = 12, + [117249] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 1, + ACTIONS(645), 1, anon_sym_pub, - ACTIONS(5716), 1, + ACTIONS(5720), 1, sym_identifier, ACTIONS(5724), 1, anon_sym_RBRACE, - STATE(3399), 1, + STATE(3398), 1, aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, + STATE(3476), 1, sym__struct_field_definition, - STATE(4416), 1, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, sym_reference_expression, - ACTIONS(627), 2, + ACTIONS(633), 2, anon_sym___global, anon_sym_mut, - STATE(3445), 2, + STATE(3449), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3479), 2, + STATE(3475), 2, sym_struct_field_scope, sym_struct_field_declaration, - [117337] = 12, + [117289] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, ACTIONS(5726), 1, - anon_sym_RBRACE, - STATE(3399), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [117377] = 12, + sym_identifier, + STATE(3528), 2, + sym__function_name, + sym_overridable_operator, + ACTIONS(5665), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5663), 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, + [117315] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, ACTIONS(5728), 1, - anon_sym_RBRACE, - STATE(3379), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [117417] = 12, + sym_identifier, + STATE(3502), 2, + sym__function_name, + sym_overridable_operator, + ACTIONS(5665), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5663), 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, + [117341] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 1, + ACTIONS(645), 1, anon_sym_pub, - ACTIONS(5716), 1, + ACTIONS(5720), 1, sym_identifier, ACTIONS(5730), 1, anon_sym_RBRACE, - STATE(3399), 1, + STATE(3390), 1, aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, + STATE(3476), 1, sym__struct_field_definition, - STATE(4416), 1, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, sym_reference_expression, - ACTIONS(627), 2, + ACTIONS(633), 2, anon_sym___global, anon_sym_mut, - STATE(3445), 2, + STATE(3449), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3479), 2, + STATE(3475), 2, sym_struct_field_scope, sym_struct_field_declaration, - [117457] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2772), 1, - anon_sym_DOT, - ACTIONS(3027), 1, - anon_sym_LBRACK, - ACTIONS(3029), 12, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [117481] = 12, + [117381] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 1, + ACTIONS(629), 1, + anon_sym_RBRACE, + ACTIONS(645), 1, anon_sym_pub, - ACTIONS(5716), 1, + ACTIONS(5720), 1, sym_identifier, - ACTIONS(5732), 1, - anon_sym_RBRACE, - STATE(3367), 1, + STATE(3368), 1, aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, + STATE(3476), 1, sym__struct_field_definition, - STATE(4416), 1, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, sym_reference_expression, - ACTIONS(627), 2, + ACTIONS(633), 2, anon_sym___global, anon_sym_mut, - STATE(3445), 2, + STATE(3449), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3479), 2, + STATE(3475), 2, sym_struct_field_scope, sym_struct_field_declaration, - [117521] = 12, + [117421] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, + ACTIONS(5732), 1, sym_identifier, + STATE(3522), 2, + sym__function_name, + sym_overridable_operator, + ACTIONS(5665), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5663), 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, + [117447] = 5, + ACTIONS(3), 1, + sym_comment, ACTIONS(5734), 1, - anon_sym_RBRACE, - STATE(3380), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [117561] = 12, + sym_identifier, + STATE(3499), 2, + sym__function_name, + sym_overridable_operator, + ACTIONS(5665), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5663), 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, + [117473] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 1, + ACTIONS(645), 1, anon_sym_pub, - ACTIONS(5716), 1, + ACTIONS(5720), 1, sym_identifier, ACTIONS(5736), 1, anon_sym_RBRACE, - STATE(3399), 1, + STATE(3391), 1, aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, + STATE(3476), 1, sym__struct_field_definition, - STATE(4416), 1, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, sym_reference_expression, - ACTIONS(627), 2, + ACTIONS(633), 2, anon_sym___global, anon_sym_mut, - STATE(3445), 2, + STATE(3449), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3479), 2, + STATE(3475), 2, sym_struct_field_scope, sym_struct_field_declaration, - [117601] = 12, + [117513] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(5738), 3, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + ACTIONS(5740), 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, + [117535] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 1, + ACTIONS(645), 1, anon_sym_pub, - ACTIONS(5716), 1, + ACTIONS(5720), 1, sym_identifier, - ACTIONS(5738), 1, + ACTIONS(5742), 1, anon_sym_RBRACE, - STATE(3391), 1, + STATE(3384), 1, aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, + STATE(3476), 1, sym__struct_field_definition, - STATE(4416), 1, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, sym_reference_expression, - ACTIONS(627), 2, + ACTIONS(633), 2, anon_sym___global, anon_sym_mut, - STATE(3445), 2, + STATE(3449), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3479), 2, + STATE(3475), 2, sym_struct_field_scope, sym_struct_field_declaration, - [117641] = 12, + [117575] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 1, + ACTIONS(645), 1, anon_sym_pub, - ACTIONS(5716), 1, + ACTIONS(5720), 1, sym_identifier, - ACTIONS(5740), 1, + ACTIONS(5744), 1, anon_sym_RBRACE, - STATE(3399), 1, + STATE(3398), 1, aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, + STATE(3476), 1, sym__struct_field_definition, - STATE(4416), 1, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, sym_reference_expression, - ACTIONS(627), 2, + ACTIONS(633), 2, anon_sym___global, anon_sym_mut, - STATE(3445), 2, + STATE(3449), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3479), 2, + STATE(3475), 2, sym_struct_field_scope, sym_struct_field_declaration, - [117681] = 5, + [117615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5742), 1, + ACTIONS(5748), 1, + anon_sym_COLON_EQ, + ACTIONS(5746), 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, + [117637] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5752), 1, + anon_sym_COLON_EQ, + ACTIONS(5750), 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, + [117659] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5754), 1, sym_identifier, - STATE(3536), 2, + STATE(3492), 2, sym__function_name, sym_overridable_operator, - ACTIONS(5659), 3, + ACTIONS(5665), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5657), 8, + ACTIONS(5663), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -289162,332 +289785,389 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [117707] = 12, + [117685] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(623), 1, - anon_sym_RBRACE, - ACTIONS(639), 1, + ACTIONS(645), 1, anon_sym_pub, - ACTIONS(5716), 1, + ACTIONS(5720), 1, sym_identifier, - STATE(3382), 1, + ACTIONS(5756), 1, + anon_sym_RBRACE, + STATE(3393), 1, aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, + STATE(3476), 1, sym__struct_field_definition, - STATE(4416), 1, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, sym_reference_expression, - ACTIONS(627), 2, + ACTIONS(633), 2, anon_sym___global, anon_sym_mut, - STATE(3445), 2, + STATE(3449), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3479), 2, + STATE(3475), 2, sym_struct_field_scope, sym_struct_field_declaration, - [117747] = 12, + [117725] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 1, + ACTIONS(645), 1, anon_sym_pub, - ACTIONS(5716), 1, + ACTIONS(5720), 1, sym_identifier, - ACTIONS(5744), 1, + ACTIONS(5758), 1, anon_sym_RBRACE, - STATE(3399), 1, + STATE(3398), 1, aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, + STATE(3476), 1, sym__struct_field_definition, - STATE(4416), 1, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, sym_reference_expression, - ACTIONS(627), 2, + ACTIONS(633), 2, anon_sym___global, anon_sym_mut, - STATE(3445), 2, + STATE(3449), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3479), 2, + STATE(3475), 2, sym_struct_field_scope, sym_struct_field_declaration, - [117787] = 12, + [117765] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 1, + ACTIONS(645), 1, anon_sym_pub, - ACTIONS(5716), 1, + ACTIONS(5720), 1, sym_identifier, - ACTIONS(5746), 1, + ACTIONS(5760), 1, anon_sym_RBRACE, - STATE(3399), 1, + STATE(3398), 1, aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, + STATE(3476), 1, sym__struct_field_definition, - STATE(4416), 1, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, sym_reference_expression, - ACTIONS(627), 2, + ACTIONS(633), 2, anon_sym___global, anon_sym_mut, - STATE(3445), 2, + STATE(3449), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3479), 2, + STATE(3475), 2, sym_struct_field_scope, sym_struct_field_declaration, - [117827] = 3, - ACTIONS(3), 1, + [117805] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(5750), 1, - anon_sym_COLON_EQ, - ACTIONS(5748), 13, + ACTIONS(2972), 1, + anon_sym_LBRACK, + ACTIONS(2974), 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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [117849] = 12, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + anon_sym_LBRACK2, + sym_identifier, + anon_sym_AT_LBRACK, + [117827] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 1, + ACTIONS(645), 1, anon_sym_pub, - ACTIONS(5716), 1, + ACTIONS(5720), 1, sym_identifier, - ACTIONS(5752), 1, + ACTIONS(5762), 1, anon_sym_RBRACE, - STATE(3399), 1, + STATE(3402), 1, aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, + STATE(3476), 1, sym__struct_field_definition, - STATE(4416), 1, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, sym_reference_expression, - ACTIONS(627), 2, + ACTIONS(633), 2, anon_sym___global, anon_sym_mut, - STATE(3445), 2, + STATE(3449), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3479), 2, + STATE(3475), 2, sym_struct_field_scope, sym_struct_field_declaration, - [117889] = 3, - ACTIONS(3), 1, + [117867] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(5756), 1, - anon_sym_COLON_EQ, - ACTIONS(5754), 13, + ACTIONS(5764), 1, + anon_sym_LBRACK, + STATE(3414), 1, + sym_type_parameters, + ACTIONS(2764), 12, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [117911] = 12, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + anon_sym_LBRACK2, + sym_identifier, + anon_sym_AT_LBRACK, + [117891] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 1, + ACTIONS(645), 1, anon_sym_pub, - ACTIONS(5716), 1, + ACTIONS(5720), 1, sym_identifier, - ACTIONS(5758), 1, + ACTIONS(5766), 1, anon_sym_RBRACE, - STATE(3406), 1, + STATE(3385), 1, aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, + STATE(3476), 1, sym__struct_field_definition, - STATE(4416), 1, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, sym_reference_expression, - ACTIONS(627), 2, + ACTIONS(633), 2, anon_sym___global, anon_sym_mut, - STATE(3445), 2, + STATE(3449), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3479), 2, + STATE(3475), 2, sym_struct_field_scope, sym_struct_field_declaration, - [117951] = 12, + [117931] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 1, + ACTIONS(645), 1, anon_sym_pub, - ACTIONS(5716), 1, + ACTIONS(5720), 1, sym_identifier, - ACTIONS(5760), 1, + ACTIONS(5768), 1, anon_sym_RBRACE, - STATE(3376), 1, + STATE(3398), 1, aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, + STATE(3476), 1, sym__struct_field_definition, - STATE(4416), 1, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, sym_reference_expression, - ACTIONS(627), 2, + ACTIONS(633), 2, anon_sym___global, anon_sym_mut, - STATE(3445), 2, + STATE(3449), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3479), 2, + STATE(3475), 2, sym_struct_field_scope, sym_struct_field_declaration, - [117991] = 12, + [117971] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 1, + ACTIONS(645), 1, anon_sym_pub, - ACTIONS(5716), 1, + ACTIONS(5720), 1, sym_identifier, - ACTIONS(5762), 1, + ACTIONS(5770), 1, anon_sym_RBRACE, - STATE(3409), 1, + STATE(3398), 1, aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, + STATE(3476), 1, sym__struct_field_definition, - STATE(4416), 1, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, sym_reference_expression, - ACTIONS(627), 2, + ACTIONS(633), 2, anon_sym___global, anon_sym_mut, - STATE(3445), 2, + STATE(3449), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3479), 2, + STATE(3475), 2, sym_struct_field_scope, sym_struct_field_declaration, - [118031] = 12, + [118011] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 1, + ACTIONS(645), 1, anon_sym_pub, - ACTIONS(5716), 1, + ACTIONS(5720), 1, sym_identifier, - ACTIONS(5764), 1, + ACTIONS(5772), 1, anon_sym_RBRACE, - STATE(3374), 1, + STATE(3403), 1, aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, + STATE(3476), 1, sym__struct_field_definition, - STATE(4416), 1, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, sym_reference_expression, - ACTIONS(627), 2, + ACTIONS(633), 2, anon_sym___global, anon_sym_mut, - STATE(3445), 2, + STATE(3449), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3479), 2, + STATE(3475), 2, sym_struct_field_scope, sym_struct_field_declaration, - [118071] = 12, + [118051] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 1, + ACTIONS(645), 1, anon_sym_pub, - ACTIONS(5716), 1, + ACTIONS(5720), 1, sym_identifier, - ACTIONS(5766), 1, + ACTIONS(5774), 1, anon_sym_RBRACE, - STATE(3399), 1, + STATE(3398), 1, aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, + STATE(3476), 1, sym__struct_field_definition, - STATE(4416), 1, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, sym_reference_expression, - ACTIONS(627), 2, + ACTIONS(633), 2, anon_sym___global, anon_sym_mut, - STATE(3445), 2, + STATE(3449), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3479), 2, + STATE(3475), 2, sym_struct_field_scope, sym_struct_field_declaration, - [118111] = 12, + [118091] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 1, + ACTIONS(645), 1, anon_sym_pub, - ACTIONS(5716), 1, + ACTIONS(5720), 1, sym_identifier, - ACTIONS(5768), 1, + ACTIONS(5776), 1, anon_sym_RBRACE, - STATE(3388), 1, + STATE(3398), 1, aux_sym__struct_body_repeat1, - STATE(3474), 1, + STATE(3476), 1, + sym__struct_field_definition, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, sym_generic_type, - STATE(3477), 1, + STATE(4425), 1, + sym_reference_expression, + ACTIONS(633), 2, + anon_sym___global, + anon_sym_mut, + STATE(3449), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3475), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [118131] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(645), 1, + anon_sym_pub, + ACTIONS(5720), 1, + sym_identifier, + ACTIONS(5778), 1, + anon_sym_RBRACE, + STATE(3379), 1, + aux_sym__struct_body_repeat1, + STATE(3476), 1, + sym__struct_field_definition, + STATE(3480), 1, sym_embedded_definition, - STATE(3478), 1, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, + sym_reference_expression, + ACTIONS(633), 2, + anon_sym___global, + anon_sym_mut, + STATE(3449), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3475), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [118171] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(645), 1, + anon_sym_pub, + ACTIONS(5720), 1, + sym_identifier, + ACTIONS(5780), 1, + anon_sym_RBRACE, + STATE(3369), 1, + aux_sym__struct_body_repeat1, + STATE(3476), 1, sym__struct_field_definition, - STATE(4416), 1, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, sym_reference_expression, - ACTIONS(627), 2, + ACTIONS(633), 2, anon_sym___global, anon_sym_mut, - STATE(3445), 2, + STATE(3449), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3479), 2, + STATE(3475), 2, sym_struct_field_scope, sym_struct_field_declaration, - [118151] = 4, - ACTIONS(487), 1, + [118211] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(5770), 1, + ACTIONS(2740), 1, + anon_sym_DOT, + ACTIONS(2844), 1, anon_sym_LBRACK, - STATE(3412), 1, - sym_type_parameters, - ACTIONS(2704), 12, + ACTIONS(2846), 12, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -289500,96 +290180,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [118175] = 12, + [118235] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, + ACTIONS(5782), 1, sym_identifier, - ACTIONS(5772), 1, + ACTIONS(5785), 1, anon_sym_RBRACE, - STATE(3399), 1, + ACTIONS(5790), 1, + anon_sym_pub, + STATE(3398), 1, aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, + STATE(3476), 1, sym__struct_field_definition, - STATE(4416), 1, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, sym_reference_expression, - ACTIONS(627), 2, + ACTIONS(5787), 2, anon_sym___global, anon_sym_mut, - STATE(3445), 2, + STATE(3449), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3479), 2, + STATE(3475), 2, sym_struct_field_scope, sym_struct_field_declaration, - [118215] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5774), 1, - sym_identifier, - STATE(3528), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5659), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5657), 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, - [118241] = 12, + [118275] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 1, + ACTIONS(645), 1, anon_sym_pub, - ACTIONS(5716), 1, + ACTIONS(5720), 1, sym_identifier, - ACTIONS(5776), 1, + ACTIONS(5793), 1, anon_sym_RBRACE, - STATE(3399), 1, + STATE(3409), 1, aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, + STATE(3476), 1, sym__struct_field_definition, - STATE(4416), 1, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, sym_reference_expression, - ACTIONS(627), 2, + ACTIONS(633), 2, anon_sym___global, anon_sym_mut, - STATE(3445), 2, + STATE(3449), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3479), 2, + STATE(3475), 2, sym_struct_field_scope, sym_struct_field_declaration, - [118281] = 5, + [118315] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(2844), 1, + anon_sym_LBRACK, + ACTIONS(2846), 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, + [118337] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5778), 1, + ACTIONS(5795), 1, sym_identifier, - STATE(3483), 2, + STATE(3488), 2, sym__function_name, sym_overridable_operator, - ACTIONS(5659), 3, + ACTIONS(5665), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5657), 8, + ACTIONS(5663), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -289598,143 +290276,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [118307] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5782), 1, - anon_sym_COLON_EQ, - ACTIONS(5780), 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, - [118329] = 12, + [118363] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 1, + ACTIONS(645), 1, anon_sym_pub, - ACTIONS(5716), 1, + ACTIONS(5720), 1, sym_identifier, - ACTIONS(5784), 1, + ACTIONS(5797), 1, anon_sym_RBRACE, - STATE(3370), 1, + STATE(3398), 1, aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, + STATE(3476), 1, sym__struct_field_definition, - STATE(4416), 1, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, sym_reference_expression, - ACTIONS(627), 2, + ACTIONS(633), 2, anon_sym___global, anon_sym_mut, - STATE(3445), 2, + STATE(3449), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3479), 2, + STATE(3475), 2, sym_struct_field_scope, sym_struct_field_declaration, - [118369] = 12, + [118403] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 1, + ACTIONS(645), 1, anon_sym_pub, - ACTIONS(5716), 1, + ACTIONS(5720), 1, sym_identifier, - ACTIONS(5786), 1, + ACTIONS(5799), 1, anon_sym_RBRACE, - STATE(3403), 1, + STATE(3398), 1, aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, + STATE(3476), 1, sym__struct_field_definition, - STATE(4416), 1, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, sym_reference_expression, - ACTIONS(627), 2, + ACTIONS(633), 2, anon_sym___global, anon_sym_mut, - STATE(3445), 2, + STATE(3449), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3479), 2, + STATE(3475), 2, sym_struct_field_scope, sym_struct_field_declaration, - [118409] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5788), 1, - sym_identifier, - STATE(3535), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5659), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5657), 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, - [118435] = 12, + [118443] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5790), 1, + ACTIONS(645), 1, + anon_sym_pub, + ACTIONS(5720), 1, sym_identifier, - ACTIONS(5793), 1, + ACTIONS(5801), 1, anon_sym_RBRACE, - ACTIONS(5798), 1, - anon_sym_pub, - STATE(3399), 1, + STATE(3408), 1, aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, + STATE(3476), 1, sym__struct_field_definition, - STATE(4416), 1, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, sym_reference_expression, - ACTIONS(5795), 2, + ACTIONS(633), 2, anon_sym___global, anon_sym_mut, - STATE(3445), 2, + STATE(3449), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3479), 2, + STATE(3475), 2, sym_struct_field_scope, sym_struct_field_declaration, - [118475] = 5, + [118483] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5801), 1, + ACTIONS(5803), 1, sym_identifier, - STATE(3521), 2, + STATE(3487), 2, sym__function_name, sym_overridable_operator, - ACTIONS(5659), 3, + ACTIONS(5665), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5657), 8, + ACTIONS(5663), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -289743,38 +290381,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [118501] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5803), 3, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - ACTIONS(5805), 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, - [118523] = 5, + [118509] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5807), 1, + ACTIONS(5805), 1, sym_identifier, - STATE(3499), 2, + STATE(3541), 2, sym__function_name, sym_overridable_operator, - ACTIONS(5659), 3, + ACTIONS(5665), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5657), 8, + ACTIONS(5663), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -289783,181 +290402,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [118549] = 12, + [118535] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 1, + ACTIONS(645), 1, anon_sym_pub, - ACTIONS(5716), 1, + ACTIONS(5720), 1, sym_identifier, - ACTIONS(5809), 1, + ACTIONS(5807), 1, anon_sym_RBRACE, - STATE(3399), 1, + STATE(3412), 1, aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, + STATE(3476), 1, sym__struct_field_definition, - STATE(4416), 1, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, sym_reference_expression, - ACTIONS(627), 2, + ACTIONS(633), 2, anon_sym___global, anon_sym_mut, - STATE(3445), 2, + STATE(3449), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3479), 2, + STATE(3475), 2, sym_struct_field_scope, sym_struct_field_declaration, - [118589] = 3, - ACTIONS(487), 1, + [118575] = 12, + ACTIONS(3), 1, sym_comment, - ACTIONS(3027), 1, - anon_sym_LBRACK, - ACTIONS(3029), 13, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(645), 1, + anon_sym_pub, + ACTIONS(5720), 1, + sym_identifier, + ACTIONS(5809), 1, anon_sym_RBRACE, - anon_sym_EQ, + STATE(3398), 1, + aux_sym__struct_body_repeat1, + STATE(3476), 1, + sym__struct_field_definition, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, + sym_reference_expression, + ACTIONS(633), 2, anon_sym___global, - anon_sym_pub, anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [118611] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5811), 1, - sym_identifier, - STATE(3522), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5659), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5657), 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, - [118637] = 12, + STATE(3449), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3475), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [118615] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 1, + ACTIONS(645), 1, anon_sym_pub, - ACTIONS(5716), 1, + ACTIONS(5720), 1, sym_identifier, - ACTIONS(5813), 1, + ACTIONS(5811), 1, anon_sym_RBRACE, - STATE(3399), 1, + STATE(3398), 1, aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, + STATE(3476), 1, sym__struct_field_definition, - STATE(4416), 1, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, sym_reference_expression, - ACTIONS(627), 2, + ACTIONS(633), 2, anon_sym___global, anon_sym_mut, - STATE(3445), 2, + STATE(3449), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3479), 2, + STATE(3475), 2, sym_struct_field_scope, sym_struct_field_declaration, - [118677] = 3, - ACTIONS(487), 1, + [118655] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3167), 1, - anon_sym_LBRACK, - ACTIONS(3169), 13, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(5815), 1, + anon_sym_COLON_EQ, + ACTIONS(5813), 13, anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [118699] = 12, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [118677] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 1, + ACTIONS(645), 1, anon_sym_pub, - ACTIONS(5716), 1, + ACTIONS(5720), 1, sym_identifier, - ACTIONS(5815), 1, + ACTIONS(5817), 1, anon_sym_RBRACE, - STATE(3368), 1, + STATE(3394), 1, aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, + STATE(3476), 1, sym__struct_field_definition, - STATE(4416), 1, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, sym_reference_expression, - ACTIONS(627), 2, + ACTIONS(633), 2, anon_sym___global, anon_sym_mut, - STATE(3445), 2, + STATE(3449), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3479), 2, + STATE(3475), 2, sym_struct_field_scope, sym_struct_field_declaration, - [118739] = 12, + [118717] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(639), 1, + ACTIONS(645), 1, anon_sym_pub, - ACTIONS(5716), 1, + ACTIONS(5720), 1, sym_identifier, - ACTIONS(5817), 1, + ACTIONS(5819), 1, anon_sym_RBRACE, - STATE(3399), 1, + STATE(3398), 1, aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, + STATE(3476), 1, sym__struct_field_definition, - STATE(4416), 1, + STATE(3480), 1, + sym_embedded_definition, + STATE(3483), 1, + sym_generic_type, + STATE(4425), 1, sym_reference_expression, - ACTIONS(627), 2, + ACTIONS(633), 2, anon_sym___global, anon_sym_mut, - STATE(3445), 2, + STATE(3449), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3479), 2, + STATE(3475), 2, sym_struct_field_scope, sym_struct_field_declaration, + [118757] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5823), 1, + anon_sym_COLON_EQ, + ACTIONS(5821), 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, [118779] = 2, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(3173), 13, + ACTIONS(2958), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -289974,51 +290600,34 @@ static const uint16_t ts_small_parse_table[] = { [118798] = 5, ACTIONS(3), 1, sym_comment, - STATE(3401), 1, + STATE(3377), 1, sym_attribute, - STATE(3411), 1, + STATE(3415), 1, aux_sym_attributes_repeat1, - ACTIONS(5821), 2, + ACTIONS(5827), 2, anon_sym_LBRACK2, anon_sym_AT_LBRACK, - ACTIONS(5819), 9, + ACTIONS(5825), 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, - [118823] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3165), 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, - [118842] = 5, + anon_sym_pub, + anon_sym_enum, + anon_sym_interface, + [118823] = 5, ACTIONS(3), 1, sym_comment, - STATE(3401), 1, + STATE(3377), 1, sym_attribute, - STATE(3411), 1, + STATE(3415), 1, aux_sym_attributes_repeat1, - ACTIONS(109), 2, + ACTIONS(111), 2, anon_sym_LBRACK2, anon_sym_AT_LBRACK, - ACTIONS(5824), 9, + ACTIONS(5830), 9, anon_sym_module, anon_sym_const, anon_sym___global, @@ -290028,10 +290637,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_enum, anon_sym_interface, - [118867] = 2, - ACTIONS(487), 1, + [118848] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(3177), 13, + ACTIONS(2978), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290045,33 +290654,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [118886] = 5, - ACTIONS(487), 1, + [118867] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(5828), 1, - anon_sym_EQ, - STATE(3464), 1, - sym_attribute, - ACTIONS(4653), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - ACTIONS(5826), 8, + ACTIONS(3002), 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, - [118910] = 3, + anon_sym_AT_LBRACK, + [118886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5832), 3, + ACTIONS(5834), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5830), 9, + ACTIONS(5832), 9, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -290081,14 +290688,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_identifier, - [118930] = 3, + [118906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5836), 3, + ACTIONS(5838), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5834), 9, + ACTIONS(5836), 9, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -290098,10 +290705,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_identifier, + [118926] = 5, + ACTIONS(493), 1, + sym_comment, + ACTIONS(5842), 1, + anon_sym_EQ, + STATE(3479), 1, + sym_attribute, + ACTIONS(4673), 2, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, + ACTIONS(5840), 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, [118950] = 2, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(2915), 11, + ACTIONS(2822), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290113,40 +290739,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [118967] = 2, - ACTIONS(487), 1, + [118967] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(2844), 11, + STATE(3486), 1, + sym_attribute, + ACTIONS(4673), 2, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, + ACTIONS(5844), 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, - [118984] = 2, - ACTIONS(487), 1, + [118988] = 5, + ACTIONS(493), 1, sym_comment, - ACTIONS(2927), 11, + ACTIONS(2764), 1, + anon_sym_LBRACE, + ACTIONS(5764), 1, + anon_sym_LBRACK, + STATE(3414), 1, + sym_type_parameters, + ACTIONS(5846), 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, - [119001] = 2, - ACTIONS(487), 1, + [119011] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(3081), 11, + ACTIONS(2910), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290158,10 +290789,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [119018] = 2, - ACTIONS(487), 1, + [119028] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(3109), 11, + ACTIONS(3030), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290173,45 +290804,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [119035] = 4, - ACTIONS(487), 1, + [119045] = 2, + ACTIONS(493), 1, sym_comment, - STATE(3481), 1, - sym_attribute, - ACTIONS(4653), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - ACTIONS(5838), 8, + ACTIONS(3038), 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, - [119056] = 5, - ACTIONS(487), 1, + anon_sym_AT_LBRACK, + [119062] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(2704), 1, - anon_sym_LBRACE, - ACTIONS(5770), 1, - anon_sym_LBRACK, - STATE(3412), 1, - sym_type_parameters, - ACTIONS(5840), 8, + ACTIONS(3042), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, + anon_sym_EQ, anon_sym___global, anon_sym_pub, anon_sym_mut, + anon_sym_LBRACK2, sym_identifier, + anon_sym_AT_LBRACK, [119079] = 2, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(2840), 11, + ACTIONS(3046), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290224,9 +290850,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_AT_LBRACK, [119096] = 2, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(3121), 11, + ACTIONS(3086), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290239,9 +290865,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_AT_LBRACK, [119113] = 2, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(2939), 11, + ACTIONS(3129), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290254,9 +290880,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_AT_LBRACK, [119130] = 2, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(2959), 11, + ACTIONS(2842), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290269,9 +290895,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_AT_LBRACK, [119147] = 2, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(3113), 11, + ACTIONS(2834), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290283,25 +290909,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [119164] = 2, - ACTIONS(487), 1, + [119164] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(3129), 11, + STATE(3470), 1, + sym_attribute, + ACTIONS(4673), 2, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, + ACTIONS(5848), 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, - [119181] = 2, - ACTIONS(487), 1, + [119185] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(2935), 11, + ACTIONS(2886), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290313,42 +290941,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [119198] = 4, - ACTIONS(487), 1, + [119202] = 2, + ACTIONS(493), 1, sym_comment, - STATE(3473), 1, - sym_attribute, - ACTIONS(4653), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - ACTIONS(5842), 8, + ACTIONS(3106), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, + anon_sym_EQ, anon_sym___global, anon_sym_pub, anon_sym_mut, + anon_sym_LBRACK2, sym_identifier, + anon_sym_AT_LBRACK, [119219] = 2, - ACTIONS(487), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 11, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(5825), 11, + anon_sym_module, + anon_sym_const, anon_sym___global, + anon_sym_fn, + anon_sym_struct, + anon_sym_union, anon_sym_pub, - anon_sym_mut, + anon_sym_enum, + anon_sym_interface, anon_sym_LBRACK2, - sym_identifier, anon_sym_AT_LBRACK, [119236] = 2, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(3009), 11, + ACTIONS(2764), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290361,9 +290987,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_AT_LBRACK, [119253] = 2, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(2856), 11, + ACTIONS(2914), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290376,9 +291002,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_AT_LBRACK, [119270] = 2, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(2919), 11, + ACTIONS(2806), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290391,9 +291017,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_AT_LBRACK, [119287] = 2, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(3097), 11, + ACTIONS(2866), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290406,9 +291032,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_AT_LBRACK, [119304] = 2, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(2704), 11, + ACTIONS(2874), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290421,9 +291047,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_AT_LBRACK, [119321] = 2, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(2903), 11, + ACTIONS(3082), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290436,9 +291062,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_AT_LBRACK, [119338] = 2, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(2993), 11, + ACTIONS(2894), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290451,24 +291077,24 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_AT_LBRACK, [119355] = 2, - ACTIONS(3), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(5819), 11, - anon_sym_module, - anon_sym_const, + ACTIONS(2882), 11, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym___global, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, anon_sym_pub, - anon_sym_enum, - anon_sym_interface, + anon_sym_mut, anon_sym_LBRACK2, + sym_identifier, anon_sym_AT_LBRACK, [119372] = 2, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(2989), 11, + ACTIONS(2926), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290480,38 +291106,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [119389] = 10, + [119389] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 1, - anon_sym_module, - ACTIONS(5846), 1, - anon_sym_const, - ACTIONS(5848), 1, - anon_sym___global, ACTIONS(5850), 1, - anon_sym_fn, - ACTIONS(5854), 1, - anon_sym_pub, - ACTIONS(5856), 1, - anon_sym_enum, - ACTIONS(5858), 1, - anon_sym_interface, - STATE(3626), 1, - sym_visibility_modifiers, - ACTIONS(5852), 2, - anon_sym_struct, - anon_sym_union, - [119421] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5860), 1, sym_identifier, - ACTIONS(5864), 1, + ACTIONS(5854), 1, anon_sym_LPAREN, - STATE(1517), 1, + STATE(1505), 1, sym_global_var_definition, - ACTIONS(5862), 7, + ACTIONS(5852), 7, anon_sym_const, anon_sym_type, anon_sym_fn, @@ -290519,14 +291123,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_enum, anon_sym_interface, + [119411] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5856), 1, + anon_sym_module, + ACTIONS(5858), 1, + anon_sym_const, + ACTIONS(5860), 1, + anon_sym___global, + ACTIONS(5862), 1, + anon_sym_fn, + ACTIONS(5866), 1, + anon_sym_pub, + ACTIONS(5868), 1, + anon_sym_enum, + ACTIONS(5870), 1, + anon_sym_interface, + STATE(3653), 1, + sym_visibility_modifiers, + ACTIONS(5864), 2, + anon_sym_struct, + anon_sym_union, [119443] = 4, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(5770), 1, + ACTIONS(5764), 1, anon_sym_LBRACK, - STATE(3412), 1, + STATE(3414), 1, sym_type_parameters, - ACTIONS(5840), 8, + ACTIONS(5846), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290535,300 +291161,362 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [119463] = 8, + [119463] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5663), 1, - anon_sym_LBRACK2, + ACTIONS(5858), 1, + anon_sym_const, + ACTIONS(5860), 1, + anon_sym___global, + ACTIONS(5862), 1, + anon_sym_fn, ACTIONS(5866), 1, + anon_sym_pub, + ACTIONS(5868), 1, + anon_sym_enum, + ACTIONS(5870), 1, + anon_sym_interface, + STATE(3653), 1, + sym_visibility_modifiers, + ACTIONS(5864), 2, + anon_sym_struct, + anon_sym_union, + [119492] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5669), 1, + anon_sym_LBRACK2, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(3490), 1, + STATE(3501), 1, sym_capture_list, - STATE(3739), 1, + STATE(3818), 1, sym_generic_parameters, - STATE(4308), 1, + STATE(4348), 1, sym_signature, - ACTIONS(4671), 2, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2924), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [119490] = 8, + [119519] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(2764), 1, + anon_sym_LBRACE, + ACTIONS(5846), 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, + [119536] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + sym_identifier, + ACTIONS(5874), 1, + anon_sym_LPAREN, + STATE(1533), 1, + sym_global_var_definition, + ACTIONS(5852), 6, + anon_sym_const, + anon_sym_fn, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_interface, + [119557] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5663), 1, + ACTIONS(5669), 1, anon_sym_LBRACK2, - ACTIONS(5866), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(3537), 1, + STATE(3532), 1, sym_capture_list, - STATE(3784), 1, + STATE(3826), 1, sym_generic_parameters, - STATE(4095), 1, + STATE(4197), 1, sym_signature, - ACTIONS(4671), 2, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2924), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [119517] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2772), 9, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - sym_identifier, - [119532] = 8, + [119584] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5663), 1, + ACTIONS(5669), 1, anon_sym_LBRACK2, - ACTIONS(5866), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(3503), 1, + STATE(3489), 1, sym_capture_list, - STATE(3699), 1, + STATE(3829), 1, sym_generic_parameters, - STATE(4243), 1, + STATE(4013), 1, sym_signature, - ACTIONS(4671), 2, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2924), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [119559] = 4, - ACTIONS(487), 1, + [119611] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(3525), 1, + ACTIONS(3585), 1, anon_sym_COLON, - ACTIONS(3523), 3, + ACTIONS(3583), 3, anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, sym_identifier, - ACTIONS(5868), 5, + ACTIONS(5876), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [119578] = 8, + [119630] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5663), 1, + ACTIONS(5669), 1, anon_sym_LBRACK2, - ACTIONS(5866), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(3509), 1, + STATE(3531), 1, sym_capture_list, - STATE(3837), 1, + STATE(3807), 1, sym_generic_parameters, - STATE(4244), 1, + STATE(4137), 1, sym_signature, - ACTIONS(4671), 2, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2924), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [119605] = 8, + [119657] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5663), 1, + ACTIONS(5669), 1, anon_sym_LBRACK2, - ACTIONS(5866), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(3495), 1, + STATE(3533), 1, sym_capture_list, - STATE(3695), 1, + STATE(3704), 1, sym_generic_parameters, - STATE(4157), 1, + STATE(4244), 1, sym_signature, - ACTIONS(4671), 2, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2924), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [119632] = 8, + [119684] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5663), 1, + ACTIONS(5669), 1, anon_sym_LBRACK2, - ACTIONS(5866), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(3487), 1, + STATE(3493), 1, sym_capture_list, - STATE(3705), 1, + STATE(3745), 1, sym_generic_parameters, - STATE(4339), 1, + STATE(4247), 1, sym_signature, - ACTIONS(4671), 2, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2924), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [119659] = 8, + [119711] = 5, + ACTIONS(493), 1, + sym_comment, + ACTIONS(5880), 1, + anon_sym_EQ, + STATE(3664), 1, + sym_attribute, + ACTIONS(4673), 2, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, + ACTIONS(5878), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + sym_identifier, + [119732] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5663), 1, + ACTIONS(5669), 1, anon_sym_LBRACK2, - ACTIONS(5866), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(3507), 1, + STATE(3514), 1, sym_capture_list, - STATE(3716), 1, + STATE(3729), 1, sym_generic_parameters, - STATE(4329), 1, + STATE(4232), 1, sym_signature, - ACTIONS(4671), 2, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2924), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [119686] = 8, + [119759] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5663), 1, + ACTIONS(5669), 1, anon_sym_LBRACK2, - ACTIONS(5866), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(3493), 1, + STATE(3505), 1, sym_capture_list, - STATE(3701), 1, + STATE(3736), 1, sym_generic_parameters, - STATE(4169), 1, + STATE(4141), 1, sym_signature, - ACTIONS(4671), 2, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2924), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [119713] = 8, + [119786] = 2, + ACTIONS(493), 1, + sym_comment, + ACTIONS(2740), 9, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + sym_identifier, + [119801] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5663), 1, + ACTIONS(5669), 1, anon_sym_LBRACK2, - ACTIONS(5866), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(3514), 1, + STATE(3538), 1, sym_capture_list, - STATE(3746), 1, + STATE(3699), 1, sym_generic_parameters, - STATE(4270), 1, + STATE(4238), 1, sym_signature, - ACTIONS(4671), 2, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2924), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [119740] = 8, + [119828] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5663), 1, + ACTIONS(5669), 1, anon_sym_LBRACK2, - ACTIONS(5866), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(3513), 1, + STATE(3529), 1, sym_capture_list, - STATE(3743), 1, - sym_generic_parameters, - STATE(4405), 1, + STATE(3676), 1, sym_signature, - ACTIONS(4671), 2, + STATE(3710), 1, + sym_generic_parameters, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2924), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [119767] = 5, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5872), 1, - anon_sym_EQ, - STATE(3674), 1, - sym_attribute, - ACTIONS(4653), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - ACTIONS(5870), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - [119788] = 8, + [119855] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5663), 1, + ACTIONS(5669), 1, anon_sym_LBRACK2, - ACTIONS(5866), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(3511), 1, + STATE(3494), 1, sym_capture_list, - STATE(3722), 1, + STATE(3693), 1, sym_generic_parameters, - STATE(4009), 1, + STATE(4405), 1, sym_signature, - ACTIONS(4671), 2, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2924), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [119815] = 8, + [119882] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5663), 1, + ACTIONS(5669), 1, anon_sym_LBRACK2, - ACTIONS(5866), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(3525), 1, + STATE(3508), 1, sym_capture_list, - STATE(3679), 1, - sym_signature, - STATE(3794), 1, + STATE(3757), 1, sym_generic_parameters, - ACTIONS(4671), 2, + STATE(4370), 1, + sym_signature, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2924), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [119842] = 5, - ACTIONS(3), 1, + [119909] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(5860), 1, - sym_identifier, - ACTIONS(5874), 1, - anon_sym_LPAREN, - STATE(1488), 1, - sym_global_var_definition, - ACTIONS(5862), 6, - anon_sym_const, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_interface, - [119863] = 3, - ACTIONS(487), 1, + ACTIONS(5884), 1, + anon_sym_DOT, + STATE(3473), 1, + aux_sym_import_path_repeat1, + ACTIONS(5882), 6, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + [119927] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(2704), 1, + ACTIONS(5888), 1, + anon_sym_as, + ACTIONS(5890), 1, anon_sym_LBRACE, - ACTIONS(5840), 8, + STATE(3642), 1, + sym_import_alias, + STATE(3856), 1, + sym_selective_import_list, + ACTIONS(5886), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [119949] = 2, + ACTIONS(493), 1, + sym_comment, + ACTIONS(5892), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290837,30 +291525,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [119880] = 9, - ACTIONS(3), 1, + [119963] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(5846), 1, - anon_sym_const, - ACTIONS(5848), 1, - anon_sym___global, - ACTIONS(5850), 1, - anon_sym_fn, - ACTIONS(5854), 1, - anon_sym_pub, - ACTIONS(5856), 1, - anon_sym_enum, - ACTIONS(5858), 1, - anon_sym_interface, - STATE(3626), 1, - sym_visibility_modifiers, - ACTIONS(5852), 2, - anon_sym_struct, - anon_sym_union, - [119909] = 2, - ACTIONS(487), 1, + ACTIONS(5884), 1, + anon_sym_DOT, + STATE(3468), 1, + aux_sym_import_path_repeat1, + ACTIONS(5894), 6, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + [119981] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5896), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290869,146 +291551,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [119923] = 3, - ACTIONS(487), 1, + [119995] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(5880), 3, + ACTIONS(5900), 1, + anon_sym_DOT, + STATE(3473), 1, + aux_sym_import_path_repeat1, + ACTIONS(5898), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - ACTIONS(5878), 5, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [119939] = 8, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + [120013] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(635), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5882), 1, + ACTIONS(5903), 1, sym_identifier, - ACTIONS(5884), 1, + ACTIONS(5906), 1, anon_sym_RBRACE, - STATE(3450), 1, + ACTIONS(5908), 1, + anon_sym_DOT_DOT_DOT, + STATE(3456), 1, sym_reference_expression, - STATE(3472), 1, + STATE(3474), 1, aux_sym_element_list_repeat1, - STATE(4432), 1, + STATE(4548), 1, sym_field_name, - STATE(3476), 2, + STATE(3481), 2, sym_keyed_element, sym_spread_expression, - [119965] = 2, - ACTIONS(487), 1, + [120039] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(5886), 8, + ACTIONS(5913), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + ACTIONS(5911), 5, anon_sym_RBRACE, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [119979] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5890), 1, - anon_sym_as, - ACTIONS(5892), 1, - anon_sym_LBRACE, - STATE(3622), 1, - sym_import_alias, - STATE(3692), 1, - sym_selective_import_list, - ACTIONS(5888), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [120001] = 4, - ACTIONS(487), 1, + [120055] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(5896), 1, - anon_sym_DOT, - STATE(3469), 1, - aux_sym_import_path_repeat1, - ACTIONS(5894), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - [120019] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5901), 1, - anon_sym_DOT, - STATE(3482), 1, - aux_sym_import_path_repeat1, - ACTIONS(5899), 6, + ACTIONS(5915), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - [120037] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5647), 1, - sym_identifier, - ACTIONS(5903), 1, - anon_sym_COMMA, - ACTIONS(5905), 1, - anon_sym_RBRACK, - ACTIONS(5907), 1, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, anon_sym_mut, - ACTIONS(5909), 1, - anon_sym_shared, - STATE(3880), 1, - sym_capture, - STATE(4370), 1, - sym_mutability_modifiers, - STATE(4371), 1, - sym_reference_expression, - [120065] = 8, + sym_identifier, + [120069] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5911), 1, + ACTIONS(641), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5917), 1, sym_identifier, - ACTIONS(5914), 1, + ACTIONS(5919), 1, anon_sym_RBRACE, - ACTIONS(5916), 1, - anon_sym_DOT_DOT_DOT, - STATE(3450), 1, + STATE(3456), 1, sym_reference_expression, - STATE(3472), 1, + STATE(3474), 1, aux_sym_element_list_repeat1, - STATE(4432), 1, + STATE(4548), 1, sym_field_name, - STATE(3476), 2, + STATE(3481), 2, sym_keyed_element, sym_spread_expression, - [120091] = 2, - ACTIONS(487), 1, + [120095] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(5919), 8, + ACTIONS(5923), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + ACTIONS(5921), 5, anon_sym_RBRACE, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [120105] = 2, - ACTIONS(487), 1, + [120111] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(5840), 8, + ACTIONS(5925), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291017,10 +291651,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [120119] = 2, - ACTIONS(487), 1, + [120125] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(5921), 8, + ACTIONS(5927), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291029,23 +291663,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [120133] = 3, - ACTIONS(487), 1, + [120139] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(3523), 3, + ACTIONS(3583), 3, anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, sym_identifier, - ACTIONS(5868), 5, + ACTIONS(5876), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120149] = 2, - ACTIONS(487), 1, + [120155] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(5923), 8, + ACTIONS(5929), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291054,10 +291688,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [120163] = 2, - ACTIONS(487), 1, + [120169] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(5925), 8, + ACTIONS(5846), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291066,23 +291700,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [120177] = 3, - ACTIONS(487), 1, + [120183] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(5929), 3, + ACTIONS(5931), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - ACTIONS(5927), 5, anon_sym_RBRACE, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [120193] = 2, - ACTIONS(487), 1, + [120197] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(5931), 8, + ACTIONS(5653), 1, + sym_identifier, + ACTIONS(5933), 1, + anon_sym_COMMA, + ACTIONS(5935), 1, + anon_sym_RBRACK, + ACTIONS(5937), 1, + anon_sym_mut, + ACTIONS(5939), 1, + anon_sym_shared, + STATE(3942), 1, + sym_capture, + STATE(4292), 1, + sym_mutability_modifiers, + STATE(4297), 1, + sym_reference_expression, + [120225] = 2, + ACTIONS(493), 1, + sym_comment, + ACTIONS(5941), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291091,13470 +291743,13444 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [120207] = 2, - ACTIONS(487), 1, + [120239] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5943), 1, + anon_sym_LPAREN, + STATE(1466), 1, + sym_signature, + STATE(3755), 1, + sym_generic_parameters, + ACTIONS(4707), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1119), 2, + sym_parameter_list, + sym_type_parameter_list, + [120260] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5943), 1, + anon_sym_LPAREN, + STATE(1448), 1, + sym_signature, + STATE(3751), 1, + sym_generic_parameters, + ACTIONS(4707), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1119), 2, + sym_parameter_list, + sym_type_parameter_list, + [120281] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5872), 1, + anon_sym_LPAREN, + STATE(3835), 1, + sym_generic_parameters, + STATE(4150), 1, + sym_signature, + ACTIONS(4707), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2897), 2, + sym_parameter_list, + sym_type_parameter_list, + [120302] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(5933), 8, + ACTIONS(5947), 1, + anon_sym_RPAREN, + STATE(3496), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5945), 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, - [120221] = 4, - ACTIONS(487), 1, + anon_sym_SEMI, + anon_sym_COMMA, + [120319] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(5901), 1, - anon_sym_DOT, - STATE(3469), 1, - aux_sym_import_path_repeat1, - ACTIONS(5935), 6, + ACTIONS(5951), 1, + anon_sym_RPAREN, + STATE(3503), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5949), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - [120239] = 6, + anon_sym_COMMA, + [120336] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, + ACTIONS(5943), 1, anon_sym_LPAREN, - STATE(1453), 1, + STATE(1463), 1, sym_signature, - STATE(3813), 1, + STATE(3749), 1, + sym_generic_parameters, + ACTIONS(4707), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1119), 2, + sym_parameter_list, + sym_type_parameter_list, + [120357] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5872), 1, + anon_sym_LPAREN, + STATE(3748), 1, + sym_generic_parameters, + STATE(4388), 1, + sym_signature, + ACTIONS(4707), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2897), 2, + sym_parameter_list, + sym_type_parameter_list, + [120378] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5872), 1, + anon_sym_LPAREN, + STATE(3798), 1, sym_generic_parameters, - ACTIONS(4671), 2, + STATE(4358), 1, + sym_signature, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1116), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [120260] = 4, - ACTIONS(487), 1, + [120399] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(5955), 1, anon_sym_RPAREN, - STATE(3502), 1, + STATE(3496), 1, aux_sym_argument_list_repeat1, - ACTIONS(5939), 5, + ACTIONS(5953), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120277] = 4, - ACTIONS(487), 1, + [120416] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(5945), 1, + ACTIONS(5960), 1, anon_sym_RPAREN, - STATE(3505), 1, + STATE(3496), 1, aux_sym_argument_list_repeat1, - ACTIONS(5943), 5, + ACTIONS(5957), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120294] = 4, - ACTIONS(487), 1, + [120433] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(5949), 1, + ACTIONS(5964), 1, anon_sym_RPAREN, - STATE(3497), 1, + STATE(3509), 1, aux_sym_argument_list_repeat1, - ACTIONS(5947), 5, + ACTIONS(5962), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120311] = 6, + [120450] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, + ACTIONS(5943), 1, anon_sym_LPAREN, - STATE(3721), 1, - sym_generic_parameters, - STATE(4226), 1, + STATE(1464), 1, sym_signature, - ACTIONS(4671), 2, + STATE(3715), 1, + sym_generic_parameters, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2924), 2, + STATE(1119), 2, sym_parameter_list, sym_type_parameter_list, - [120332] = 8, + [120471] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5647), 1, - sym_identifier, - ACTIONS(5907), 1, - anon_sym_mut, - ACTIONS(5909), 1, - anon_sym_shared, - ACTIONS(5951), 1, - anon_sym_RBRACK, - STATE(4162), 1, - sym_capture, - STATE(4370), 1, - sym_mutability_modifiers, - STATE(4371), 1, - sym_reference_expression, - [120357] = 4, - ACTIONS(487), 1, + ACTIONS(5943), 1, + anon_sym_LPAREN, + STATE(1473), 1, + sym_signature, + STATE(3779), 1, + sym_generic_parameters, + ACTIONS(4707), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1119), 2, + sym_parameter_list, + sym_type_parameter_list, + [120492] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(5955), 1, + ACTIONS(5968), 1, anon_sym_RPAREN, - STATE(3492), 1, + STATE(3490), 1, aux_sym_argument_list_repeat1, - ACTIONS(5953), 5, + ACTIONS(5966), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120374] = 6, + [120509] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(3687), 1, + STATE(3822), 1, sym_generic_parameters, - STATE(4392), 1, + STATE(4294), 1, + sym_signature, + ACTIONS(4707), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2897), 2, + sym_parameter_list, + sym_type_parameter_list, + [120530] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5943), 1, + anon_sym_LPAREN, + STATE(1471), 1, sym_signature, - ACTIONS(4671), 2, + STATE(3694), 1, + sym_generic_parameters, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2924), 2, + STATE(1119), 2, sym_parameter_list, sym_type_parameter_list, - [120395] = 4, - ACTIONS(487), 1, + [120551] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(5959), 1, + ACTIONS(5972), 1, anon_sym_RPAREN, - STATE(3502), 1, + STATE(3496), 1, aux_sym_argument_list_repeat1, - ACTIONS(5957), 5, + ACTIONS(5970), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120412] = 4, - ACTIONS(487), 1, + [120568] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(5963), 1, + ACTIONS(5976), 1, anon_sym_RPAREN, - STATE(3502), 1, + STATE(3496), 1, aux_sym_argument_list_repeat1, - ACTIONS(5961), 5, + ACTIONS(5974), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120429] = 6, + [120585] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(3708), 1, + STATE(3728), 1, sym_generic_parameters, - STATE(4203), 1, + STATE(4213), 1, sym_signature, - ACTIONS(4671), 2, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2924), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [120450] = 4, - ACTIONS(487), 1, + [120606] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(5967), 1, + ACTIONS(5980), 1, anon_sym_RPAREN, - STATE(3501), 1, + STATE(3496), 1, aux_sym_argument_list_repeat1, - ACTIONS(5965), 5, + ACTIONS(5978), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120467] = 6, + [120623] = 2, + ACTIONS(493), 1, + sym_comment, + ACTIONS(5898), 7, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + [120636] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(3700), 1, + STATE(3800), 1, sym_generic_parameters, - STATE(4107), 1, + STATE(4259), 1, sym_signature, - ACTIONS(4671), 2, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2924), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [120488] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5969), 7, - anon_sym_const, - anon_sym_type, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_interface, - [120501] = 4, - ACTIONS(487), 1, + [120657] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(5973), 1, + ACTIONS(5984), 1, anon_sym_RPAREN, - STATE(3502), 1, + STATE(3496), 1, aux_sym_argument_list_repeat1, - ACTIONS(5971), 5, + ACTIONS(5982), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120518] = 4, - ACTIONS(487), 1, + [120674] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(5977), 1, - anon_sym_RPAREN, - STATE(3491), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5975), 5, + ACTIONS(5986), 7, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_COMMA, - [120535] = 6, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + [120687] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, + ACTIONS(5943), 1, anon_sym_LPAREN, - STATE(1447), 1, + STATE(1489), 1, sym_signature, - STATE(3750), 1, + STATE(3712), 1, sym_generic_parameters, - ACTIONS(4671), 2, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1116), 2, + STATE(1119), 2, sym_parameter_list, sym_type_parameter_list, - [120556] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5647), 1, - sym_identifier, - ACTIONS(5907), 1, - anon_sym_mut, - ACTIONS(5909), 1, - anon_sym_shared, - ACTIONS(5979), 1, - anon_sym_RBRACK, - STATE(4162), 1, - sym_capture, - STATE(4370), 1, - sym_mutability_modifiers, - STATE(4371), 1, - sym_reference_expression, - [120581] = 4, - ACTIONS(487), 1, + [120708] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(5983), 1, + ACTIONS(5990), 1, anon_sym_RPAREN, - STATE(3502), 1, + STATE(3504), 1, aux_sym_argument_list_repeat1, - ACTIONS(5981), 5, + ACTIONS(5988), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120598] = 4, - ACTIONS(487), 1, + [120725] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(5988), 1, + ACTIONS(5994), 1, anon_sym_RPAREN, - STATE(3502), 1, + STATE(3496), 1, aux_sym_argument_list_repeat1, - ACTIONS(5985), 5, + ACTIONS(5992), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120615] = 6, + [120742] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(3798), 1, + STATE(3732), 1, sym_generic_parameters, - STATE(4212), 1, + STATE(4131), 1, sym_signature, - ACTIONS(4671), 2, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2924), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [120636] = 4, - ACTIONS(487), 1, + [120763] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(5992), 1, + ACTIONS(5998), 1, anon_sym_RPAREN, - STATE(3502), 1, + STATE(3496), 1, aux_sym_argument_list_repeat1, - ACTIONS(5990), 5, + ACTIONS(5996), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120653] = 4, - ACTIONS(487), 1, + [120780] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(5996), 1, + ACTIONS(6002), 1, anon_sym_RPAREN, - STATE(3502), 1, + STATE(3496), 1, aux_sym_argument_list_repeat1, - ACTIONS(5994), 5, + ACTIONS(6000), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120670] = 6, + [120797] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(5653), 1, + sym_identifier, ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1449), 1, - sym_signature, - STATE(3799), 1, - sym_generic_parameters, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [120691] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(3836), 1, - sym_generic_parameters, - STATE(4305), 1, - sym_signature, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [120712] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6000), 1, - anon_sym_RPAREN, - STATE(3502), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5998), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [120729] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(3850), 1, - sym_generic_parameters, - STATE(4130), 1, - sym_signature, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [120750] = 4, - ACTIONS(487), 1, + anon_sym_mut, + ACTIONS(5939), 1, + anon_sym_shared, + ACTIONS(6004), 1, + anon_sym_RBRACK, + STATE(4292), 1, + sym_mutability_modifiers, + STATE(4297), 1, + sym_reference_expression, + STATE(4308), 1, + sym_capture, + [120822] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(6002), 1, + ACTIONS(6006), 1, sym_identifier, - STATE(3669), 1, + STATE(3677), 1, sym_reference_expression, - ACTIONS(6004), 5, + ACTIONS(6008), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_COMMA, anon_sym_RBRACE, - [120767] = 6, + [120839] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, + ACTIONS(5943), 1, anon_sym_LPAREN, - STATE(3733), 1, - sym_generic_parameters, - STATE(4143), 1, + STATE(1434), 1, sym_signature, - ACTIONS(4671), 2, + STATE(3839), 1, + sym_generic_parameters, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2924), 2, + STATE(1119), 2, sym_parameter_list, sym_type_parameter_list, - [120788] = 4, - ACTIONS(487), 1, + [120860] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(6008), 1, + ACTIONS(6012), 1, anon_sym_RPAREN, - STATE(3504), 1, + STATE(3536), 1, aux_sym_argument_list_repeat1, - ACTIONS(6006), 5, + ACTIONS(6010), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120805] = 6, + [120877] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, + ACTIONS(5943), 1, anon_sym_LPAREN, - STATE(3729), 1, - sym_generic_parameters, - STATE(4379), 1, + STATE(1478), 1, sym_signature, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [120826] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(3744), 1, + STATE(3743), 1, sym_generic_parameters, - STATE(4330), 1, - sym_signature, - ACTIONS(4671), 2, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2924), 2, + STATE(1119), 2, sym_parameter_list, sym_type_parameter_list, - [120847] = 6, + [120898] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, + ACTIONS(5943), 1, anon_sym_LPAREN, - STATE(1485), 1, + STATE(1483), 1, sym_signature, - STATE(3820), 1, + STATE(3741), 1, sym_generic_parameters, - ACTIONS(4671), 2, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1116), 2, + STATE(1119), 2, sym_parameter_list, sym_type_parameter_list, - [120868] = 4, - ACTIONS(487), 1, + [120919] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(6012), 1, + ACTIONS(6016), 1, anon_sym_RPAREN, - STATE(3532), 1, + STATE(3515), 1, aux_sym_argument_list_repeat1, - ACTIONS(6010), 5, + ACTIONS(6014), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120885] = 7, + [120936] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6014), 1, + ACTIONS(6018), 7, anon_sym_const, - ACTIONS(6016), 1, anon_sym_type, - ACTIONS(6018), 1, anon_sym_fn, - ACTIONS(6022), 1, - anon_sym_enum, - ACTIONS(6024), 1, - anon_sym_interface, - ACTIONS(6020), 2, anon_sym_struct, anon_sym_union, - [120908] = 4, - ACTIONS(487), 1, + anon_sym_enum, + anon_sym_interface, + [120949] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(6028), 1, + ACTIONS(6022), 1, anon_sym_RPAREN, - STATE(3538), 1, + STATE(3506), 1, aux_sym_argument_list_repeat1, - ACTIONS(6026), 5, + ACTIONS(6020), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120925] = 4, - ACTIONS(487), 1, + [120966] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(6032), 1, + ACTIONS(6026), 1, anon_sym_RPAREN, - STATE(3524), 1, + STATE(3513), 1, aux_sym_argument_list_repeat1, - ACTIONS(6030), 5, + ACTIONS(6024), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120942] = 4, - ACTIONS(487), 1, + [120983] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(6036), 1, + ACTIONS(6030), 1, anon_sym_RPAREN, - STATE(3508), 1, + STATE(3495), 1, aux_sym_argument_list_repeat1, - ACTIONS(6034), 5, + ACTIONS(6028), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [120959] = 6, + [121000] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, + ACTIONS(5943), 1, anon_sym_LPAREN, - STATE(1461), 1, + STATE(1459), 1, sym_signature, - STATE(3689), 1, + STATE(3740), 1, sym_generic_parameters, - ACTIONS(4671), 2, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1116), 2, + STATE(1119), 2, sym_parameter_list, sym_type_parameter_list, - [120980] = 6, + [121021] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(1482), 1, - sym_signature, - STATE(3693), 1, + STATE(3705), 1, sym_generic_parameters, - ACTIONS(4671), 2, + STATE(4263), 1, + sym_signature, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1116), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [121001] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6040), 1, - anon_sym_RPAREN, - STATE(3502), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6038), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [121018] = 4, - ACTIONS(487), 1, + [121042] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(6044), 1, + ACTIONS(6034), 1, anon_sym_RPAREN, - STATE(3502), 1, + STATE(3534), 1, aux_sym_argument_list_repeat1, - ACTIONS(6042), 5, + ACTIONS(6032), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [121035] = 6, + [121059] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(3754), 1, + STATE(3813), 1, sym_generic_parameters, - STATE(4210), 1, + STATE(4411), 1, sym_signature, - ACTIONS(4671), 2, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2924), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [121056] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6046), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - [121069] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6050), 1, - anon_sym_RPAREN, - STATE(3484), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6048), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [121086] = 6, + [121080] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(1478), 1, - sym_signature, - STATE(3823), 1, + STATE(3836), 1, sym_generic_parameters, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [121107] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1445), 1, + STATE(4277), 1, sym_signature, - STATE(3780), 1, - sym_generic_parameters, - ACTIONS(4671), 2, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1116), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [121128] = 6, + [121101] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(1431), 1, - sym_signature, - STATE(3691), 1, + STATE(3701), 1, sym_generic_parameters, - ACTIONS(4671), 2, + STATE(4305), 1, + sym_signature, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1116), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [121149] = 4, - ACTIONS(487), 1, + [121122] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(6054), 1, + ACTIONS(6038), 1, anon_sym_RPAREN, - STATE(3523), 1, + STATE(3496), 1, aux_sym_argument_list_repeat1, - ACTIONS(6052), 5, + ACTIONS(6036), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [121166] = 4, - ACTIONS(487), 1, + [121139] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(6058), 1, + ACTIONS(6042), 1, anon_sym_RPAREN, - STATE(3502), 1, + STATE(3496), 1, aux_sym_argument_list_repeat1, - ACTIONS(6056), 5, + ACTIONS(6040), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_COMMA, - [121183] = 2, - ACTIONS(487), 1, + [121156] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(5894), 7, + ACTIONS(6046), 1, + anon_sym_RPAREN, + STATE(3496), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6044), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - [121196] = 6, + anon_sym_COMMA, + [121173] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6050), 1, + anon_sym_RPAREN, + STATE(3516), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6048), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + [121190] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(1468), 1, - sym_signature, - STATE(3685), 1, + STATE(3698), 1, sym_generic_parameters, - ACTIONS(4671), 2, + STATE(4124), 1, + sym_signature, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1116), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [121217] = 6, + [121211] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6054), 1, + anon_sym_RPAREN, + STATE(3535), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6052), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + [121228] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1441), 1, - sym_signature, - STATE(3826), 1, - sym_generic_parameters, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [121238] = 6, + ACTIONS(6056), 1, + anon_sym_const, + ACTIONS(6058), 1, + anon_sym_type, + ACTIONS(6060), 1, + anon_sym_fn, + ACTIONS(6064), 1, + anon_sym_enum, + ACTIONS(6066), 1, + anon_sym_interface, + ACTIONS(6062), 2, + anon_sym_struct, + anon_sym_union, + [121251] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, + ACTIONS(5943), 1, anon_sym_LPAREN, - STATE(1471), 1, + STATE(1440), 1, sym_signature, - STATE(3694), 1, + STATE(3724), 1, sym_generic_parameters, - ACTIONS(4671), 2, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1116), 2, + STATE(1119), 2, sym_parameter_list, sym_type_parameter_list, - [121259] = 6, + [121272] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(3778), 1, - sym_generic_parameters, - STATE(4363), 1, - sym_signature, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [121280] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6062), 1, - anon_sym_RPAREN, - STATE(3502), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6060), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(5653), 1, + sym_identifier, + ACTIONS(5937), 1, + anon_sym_mut, + ACTIONS(5939), 1, + anon_sym_shared, + ACTIONS(6068), 1, + anon_sym_RBRACK, + STATE(4292), 1, + sym_mutability_modifiers, + STATE(4297), 1, + sym_reference_expression, + STATE(4308), 1, + sym_capture, [121297] = 6, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(6064), 1, + ACTIONS(6070), 1, sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, + ACTIONS(6072), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6074), 1, sym___dolcbr, - ACTIONS(6070), 1, - sym___single_quote, - STATE(3571), 2, + ACTIONS(6076), 1, + sym___double_quote, + STATE(3558), 2, sym_string_interpolation, - aux_sym_c_string_literal_repeat1, + aux_sym_c_string_literal_repeat2, [121317] = 6, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, sym___dolcbr, ACTIONS(6078), 1, + sym_escape_sequence, + ACTIONS(6080), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6082), 1, sym___double_quote, - STATE(3639), 2, + STATE(3549), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [121337] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_RBRACE, - STATE(3561), 1, - aux_sym_selective_import_list_repeat1, - ACTIONS(6080), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - [121353] = 6, - ACTIONS(487), 1, + [121337] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, sym___dolcbr, ACTIONS(6084), 1, - sym___double_quote, - STATE(3639), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121373] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6070), 1, - sym___double_quote, - ACTIONS(6072), 1, sym_escape_sequence, - ACTIONS(6074), 1, + ACTIONS(6086), 1, aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - STATE(3639), 2, + ACTIONS(6088), 1, + sym___double_quote, + STATE(3595), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [121393] = 6, - ACTIONS(487), 1, + [121357] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(6064), 1, + ACTIONS(4785), 6, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [121369] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6090), 1, + anon_sym_LBRACK, + STATE(2380), 1, + sym_type_parameters, + ACTIONS(2762), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [121385] = 6, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6092), 1, sym_escape_sequence, - ACTIONS(6066), 1, + ACTIONS(6095), 1, aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, + ACTIONS(6098), 1, sym___dolcbr, - ACTIONS(6086), 1, + ACTIONS(6101), 1, sym___single_quote, - STATE(3571), 2, + STATE(3548), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [121413] = 6, - ACTIONS(487), 1, + [121405] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6072), 1, + ACTIONS(6103), 1, sym_escape_sequence, - ACTIONS(6074), 1, + ACTIONS(6106), 1, aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, + ACTIONS(6109), 1, sym___dolcbr, - ACTIONS(6086), 1, + ACTIONS(6112), 1, sym___double_quote, - STATE(3639), 2, + STATE(3549), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [121433] = 6, - ACTIONS(487), 1, + [121425] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6076), 1, + ACTIONS(6074), 1, sym___dolcbr, - ACTIONS(6088), 1, + ACTIONS(6114), 1, sym_escape_sequence, - ACTIONS(6090), 1, + ACTIONS(6116), 1, aux_sym_c_string_literal_token2, - ACTIONS(6092), 1, + ACTIONS(6118), 1, sym___double_quote, - STATE(3554), 2, + STATE(3644), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [121453] = 6, - ACTIONS(487), 1, + [121445] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6092), 1, + ACTIONS(6118), 1, sym___single_quote, - ACTIONS(6094), 1, + ACTIONS(6120), 1, sym_escape_sequence, - ACTIONS(6096), 1, + ACTIONS(6122), 1, aux_sym_c_string_literal_token1, - STATE(3557), 2, + ACTIONS(6124), 1, + sym___dolcbr, + STATE(3646), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [121473] = 6, - ACTIONS(487), 1, + [121465] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6076), 1, + ACTIONS(6088), 1, + sym___single_quote, + ACTIONS(6124), 1, sym___dolcbr, - ACTIONS(6098), 1, - sym_escape_sequence, - ACTIONS(6100), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6102), 1, - sym___double_quote, - STATE(3564), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121493] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6064), 1, + ACTIONS(6126), 1, sym_escape_sequence, - ACTIONS(6066), 1, + ACTIONS(6128), 1, aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6104), 1, - sym___single_quote, - STATE(3571), 2, + STATE(3596), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [121513] = 4, - ACTIONS(487), 1, + [121485] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(4779), 1, + ACTIONS(6130), 1, anon_sym_COMMA, - STATE(3640), 1, + STATE(3553), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(3789), 4, + ACTIONS(1716), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [121529] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6102), 1, - sym___single_quote, - ACTIONS(6106), 1, - sym_escape_sequence, - ACTIONS(6108), 1, - aux_sym_c_string_literal_token1, - STATE(3565), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [121549] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6110), 1, - sym_escape_sequence, - ACTIONS(6112), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6114), 1, - sym___single_quote, - STATE(3577), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [121569] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6114), 1, - sym___double_quote, - ACTIONS(6116), 1, - sym_escape_sequence, - ACTIONS(6118), 1, - aux_sym_c_string_literal_token2, - STATE(3572), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121589] = 6, - ACTIONS(487), 1, + [121501] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, - ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6120), 1, - sym___double_quote, - STATE(3639), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121609] = 6, - ACTIONS(487), 1, + ACTIONS(4781), 1, + anon_sym_COMMA, + STATE(3553), 1, + aux_sym_strictly_expression_list_repeat1, + ACTIONS(3761), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [121517] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6068), 1, + ACTIONS(6124), 1, sym___dolcbr, - ACTIONS(6122), 1, + ACTIONS(6133), 1, sym_escape_sequence, - ACTIONS(6124), 1, + ACTIONS(6135), 1, aux_sym_c_string_literal_token1, - ACTIONS(6126), 1, + ACTIONS(6137), 1, sym___single_quote, - STATE(3596), 2, + STATE(3548), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [121629] = 6, - ACTIONS(487), 1, + [121537] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6076), 1, + ACTIONS(6074), 1, sym___dolcbr, - ACTIONS(6126), 1, - sym___double_quote, - ACTIONS(6128), 1, + ACTIONS(6078), 1, sym_escape_sequence, - ACTIONS(6130), 1, + ACTIONS(6080), 1, aux_sym_c_string_literal_token2, - STATE(3542), 2, + ACTIONS(6137), 1, + sym___double_quote, + STATE(3549), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [121649] = 6, - ACTIONS(487), 1, + [121557] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6064), 1, + ACTIONS(6124), 1, + sym___dolcbr, + ACTIONS(6133), 1, sym_escape_sequence, - ACTIONS(6066), 1, + ACTIONS(6135), 1, aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6120), 1, + ACTIONS(6139), 1, sym___single_quote, - STATE(3571), 2, + STATE(3548), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [121669] = 6, - ACTIONS(487), 1, + [121577] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6068), 1, + ACTIONS(6074), 1, sym___dolcbr, - ACTIONS(6132), 1, + ACTIONS(6078), 1, sym_escape_sequence, - ACTIONS(6134), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6136), 1, - sym___single_quote, - STATE(3539), 2, + ACTIONS(6080), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6139), 1, + sym___double_quote, + STATE(3549), 2, sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [121689] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6138), 1, - anon_sym_RBRACE, - STATE(3541), 1, - aux_sym_selective_import_list_repeat1, - ACTIONS(6080), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - [121705] = 6, - ACTIONS(487), 1, + aux_sym_c_string_literal_repeat2, + [121597] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6076), 1, + ACTIONS(6074), 1, sym___dolcbr, - ACTIONS(6136), 1, - sym___double_quote, - ACTIONS(6140), 1, + ACTIONS(6078), 1, sym_escape_sequence, - ACTIONS(6142), 1, + ACTIONS(6080), 1, aux_sym_c_string_literal_token2, - STATE(3543), 2, + ACTIONS(6141), 1, + sym___double_quote, + STATE(3549), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [121725] = 4, - ACTIONS(487), 1, + [121617] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6147), 1, - anon_sym_RBRACE, - STATE(3561), 1, - aux_sym_selective_import_list_repeat1, - ACTIONS(6144), 4, + ACTIONS(2738), 1, + anon_sym_DOT, + ACTIONS(2844), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + [121631] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(4781), 1, + anon_sym_COMMA, + STATE(3553), 1, + aux_sym_strictly_expression_list_repeat1, + ACTIONS(3738), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_COMMA, - [121741] = 6, - ACTIONS(487), 1, + anon_sym_RBRACE, + [121647] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6068), 1, + ACTIONS(6124), 1, sym___dolcbr, - ACTIONS(6149), 1, + ACTIONS(6133), 1, sym_escape_sequence, - ACTIONS(6151), 1, + ACTIONS(6135), 1, aux_sym_c_string_literal_token1, - ACTIONS(6153), 1, + ACTIONS(6143), 1, sym___single_quote, - STATE(3544), 2, + STATE(3548), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [121761] = 6, - ACTIONS(487), 1, + [121667] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6076), 1, + ACTIONS(6074), 1, sym___dolcbr, - ACTIONS(6153), 1, - sym___double_quote, - ACTIONS(6155), 1, - sym_escape_sequence, - ACTIONS(6157), 1, - aux_sym_c_string_literal_token2, - STATE(3545), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121781] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6072), 1, + ACTIONS(6145), 1, sym_escape_sequence, - ACTIONS(6074), 1, + ACTIONS(6147), 1, aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6159), 1, + ACTIONS(6149), 1, sym___double_quote, - STATE(3639), 2, + STATE(3582), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [121801] = 6, - ACTIONS(487), 1, + [121687] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, + ACTIONS(6124), 1, sym___dolcbr, - ACTIONS(6159), 1, + ACTIONS(6149), 1, sym___single_quote, - STATE(3571), 2, + ACTIONS(6151), 1, + sym_escape_sequence, + ACTIONS(6153), 1, + aux_sym_c_string_literal_token1, + STATE(3583), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [121821] = 4, - ACTIONS(487), 1, + [121707] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(4779), 1, - anon_sym_COMMA, - STATE(3550), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(1770), 4, + ACTIONS(6155), 1, + sym_identifier, + STATE(3765), 1, + sym_label_reference, + ACTIONS(3811), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [121837] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2770), 1, - anon_sym_DOT, - ACTIONS(3027), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - [121851] = 7, - ACTIONS(3), 1, + [121723] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(5647), 1, + ACTIONS(6155), 1, sym_identifier, - ACTIONS(5907), 1, - anon_sym_mut, - ACTIONS(5909), 1, - anon_sym_shared, - STATE(4162), 1, - sym_capture, - STATE(4370), 1, - sym_mutability_modifiers, - STATE(4371), 1, - sym_reference_expression, - [121873] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4779), 1, - anon_sym_COMMA, - STATE(3640), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(3793), 4, + STATE(3764), 1, + sym_label_reference, + ACTIONS(3815), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [121889] = 2, - ACTIONS(487), 1, + [121739] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(4777), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [121901] = 6, - ACTIONS(487), 1, + ACTIONS(6074), 1, + sym___dolcbr, + ACTIONS(6157), 1, + sym_escape_sequence, + ACTIONS(6159), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6161), 1, + sym___double_quote, + STATE(3584), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat2, + [121759] = 6, + ACTIONS(493), 1, sym_comment, + ACTIONS(6124), 1, + sym___dolcbr, ACTIONS(6161), 1, + sym___single_quote, + ACTIONS(6163), 1, sym_escape_sequence, - ACTIONS(6164), 1, + ACTIONS(6165), 1, aux_sym_c_string_literal_token1, - ACTIONS(6167), 1, - sym___dolcbr, - ACTIONS(6170), 1, - sym___single_quote, - STATE(3571), 2, + STATE(3585), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [121921] = 6, - ACTIONS(487), 1, + [121779] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6172), 1, - sym___double_quote, - STATE(3639), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121941] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6076), 1, sym___dolcbr, - ACTIONS(6174), 1, + ACTIONS(6078), 1, sym_escape_sequence, - ACTIONS(6176), 1, + ACTIONS(6080), 1, aux_sym_c_string_literal_token2, - ACTIONS(6178), 1, + ACTIONS(6143), 1, sym___double_quote, - STATE(3593), 2, + STATE(3549), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [121961] = 6, - ACTIONS(487), 1, + [121799] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6068), 1, + ACTIONS(6124), 1, sym___dolcbr, - ACTIONS(6178), 1, - sym___single_quote, - ACTIONS(6180), 1, + ACTIONS(6133), 1, sym_escape_sequence, - ACTIONS(6182), 1, + ACTIONS(6135), 1, aux_sym_c_string_literal_token1, - STATE(3595), 2, + ACTIONS(6167), 1, + sym___single_quote, + STATE(3548), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [121981] = 6, - ACTIONS(487), 1, + [121819] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6076), 1, + ACTIONS(6074), 1, sym___dolcbr, - ACTIONS(6184), 1, + ACTIONS(6078), 1, sym_escape_sequence, - ACTIONS(6186), 1, + ACTIONS(6080), 1, aux_sym_c_string_literal_token2, - ACTIONS(6188), 1, + ACTIONS(6167), 1, sym___double_quote, - STATE(3540), 2, + STATE(3549), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122001] = 6, - ACTIONS(487), 1, + [121839] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6068), 1, + ACTIONS(6124), 1, sym___dolcbr, - ACTIONS(6188), 1, - sym___single_quote, - ACTIONS(6190), 1, + ACTIONS(6133), 1, sym_escape_sequence, - ACTIONS(6192), 1, + ACTIONS(6135), 1, aux_sym_c_string_literal_token1, - STATE(3597), 2, + ACTIONS(6169), 1, + sym___single_quote, + STATE(3548), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122021] = 6, - ACTIONS(487), 1, + [121859] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6064), 1, + ACTIONS(6124), 1, + sym___dolcbr, + ACTIONS(6171), 1, sym_escape_sequence, - ACTIONS(6066), 1, + ACTIONS(6173), 1, aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, + ACTIONS(6175), 1, + sym___single_quote, + STATE(3636), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat1, + [121879] = 6, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6124), 1, sym___dolcbr, - ACTIONS(6172), 1, + ACTIONS(6133), 1, + sym_escape_sequence, + ACTIONS(6135), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6177), 1, sym___single_quote, - STATE(3571), 2, + STATE(3548), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122041] = 6, - ACTIONS(487), 1, + [121899] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6072), 1, + ACTIONS(6074), 1, + sym___dolcbr, + ACTIONS(6078), 1, sym_escape_sequence, + ACTIONS(6080), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6177), 1, + sym___double_quote, + STATE(3549), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat2, + [121919] = 6, + ACTIONS(493), 1, + sym_comment, ACTIONS(6074), 1, + sym___dolcbr, + ACTIONS(6078), 1, + sym_escape_sequence, + ACTIONS(6080), 1, aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, + ACTIONS(6169), 1, + sym___double_quote, + STATE(3549), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat2, + [121939] = 6, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6074), 1, sym___dolcbr, - ACTIONS(6104), 1, + ACTIONS(6078), 1, + sym_escape_sequence, + ACTIONS(6080), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6179), 1, sym___double_quote, - STATE(3639), 2, + STATE(3549), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122061] = 6, - ACTIONS(487), 1, + [121959] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6064), 1, + ACTIONS(6124), 1, + sym___dolcbr, + ACTIONS(6133), 1, sym_escape_sequence, - ACTIONS(6066), 1, + ACTIONS(6135), 1, aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6194), 1, + ACTIONS(6181), 1, sym___single_quote, - STATE(3571), 2, + STATE(3548), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122081] = 6, - ACTIONS(487), 1, + [121979] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6072), 1, + ACTIONS(6074), 1, + sym___dolcbr, + ACTIONS(6078), 1, + sym_escape_sequence, + ACTIONS(6080), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6181), 1, + sym___double_quote, + STATE(3549), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat2, + [121999] = 6, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6124), 1, + sym___dolcbr, + ACTIONS(6133), 1, sym_escape_sequence, + ACTIONS(6135), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6183), 1, + sym___single_quote, + STATE(3548), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat1, + [122019] = 6, + ACTIONS(493), 1, + sym_comment, ACTIONS(6074), 1, + sym___dolcbr, + ACTIONS(6078), 1, + sym_escape_sequence, + ACTIONS(6080), 1, aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, + ACTIONS(6183), 1, + sym___double_quote, + STATE(3549), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat2, + [122039] = 6, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6074), 1, sym___dolcbr, - ACTIONS(6194), 1, + ACTIONS(6078), 1, + sym_escape_sequence, + ACTIONS(6080), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6185), 1, sym___double_quote, - STATE(3639), 2, + STATE(3549), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122101] = 4, - ACTIONS(3), 1, + [122059] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6196), 1, - anon_sym_LBRACK, - STATE(2321), 1, - sym_type_parameters, - ACTIONS(2702), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [122117] = 6, - ACTIONS(487), 1, + ACTIONS(6124), 1, + sym___dolcbr, + ACTIONS(6133), 1, + sym_escape_sequence, + ACTIONS(6135), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6185), 1, + sym___single_quote, + STATE(3548), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat1, + [122079] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6076), 1, + ACTIONS(6074), 1, sym___dolcbr, - ACTIONS(6198), 1, + ACTIONS(6078), 1, sym_escape_sequence, - ACTIONS(6200), 1, + ACTIONS(6080), 1, aux_sym_c_string_literal_token2, - ACTIONS(6202), 1, + ACTIONS(6187), 1, sym___double_quote, - STATE(3607), 2, + STATE(3549), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122137] = 6, - ACTIONS(487), 1, + [122099] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6068), 1, + ACTIONS(6124), 1, sym___dolcbr, - ACTIONS(6204), 1, + ACTIONS(6133), 1, sym_escape_sequence, - ACTIONS(6206), 1, + ACTIONS(6135), 1, aux_sym_c_string_literal_token1, - ACTIONS(6208), 1, + ACTIONS(6187), 1, sym___single_quote, - STATE(3645), 2, + STATE(3548), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122157] = 6, - ACTIONS(487), 1, + [122119] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6068), 1, + ACTIONS(6124), 1, sym___dolcbr, - ACTIONS(6202), 1, + ACTIONS(6189), 1, + sym_escape_sequence, + ACTIONS(6191), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6193), 1, sym___single_quote, - ACTIONS(6210), 1, + STATE(3578), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat1, + [122139] = 6, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6074), 1, + sym___dolcbr, + ACTIONS(6193), 1, + sym___double_quote, + ACTIONS(6195), 1, + sym_escape_sequence, + ACTIONS(6197), 1, + aux_sym_c_string_literal_token2, + STATE(3579), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat2, + [122159] = 6, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6124), 1, + sym___dolcbr, + ACTIONS(6199), 1, sym_escape_sequence, - ACTIONS(6212), 1, + ACTIONS(6201), 1, aux_sym_c_string_literal_token1, - STATE(3608), 2, + ACTIONS(6203), 1, + sym___single_quote, + STATE(3580), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122177] = 6, - ACTIONS(487), 1, + [122179] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6076), 1, + ACTIONS(6074), 1, sym___dolcbr, - ACTIONS(6214), 1, + ACTIONS(6205), 1, sym_escape_sequence, - ACTIONS(6216), 1, + ACTIONS(6207), 1, aux_sym_c_string_literal_token2, - ACTIONS(6218), 1, + ACTIONS(6209), 1, sym___double_quote, - STATE(3613), 2, + STATE(3618), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122197] = 6, - ACTIONS(487), 1, + [122199] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6068), 1, + ACTIONS(6124), 1, sym___dolcbr, - ACTIONS(6218), 1, + ACTIONS(6209), 1, sym___single_quote, - ACTIONS(6220), 1, + ACTIONS(6211), 1, sym_escape_sequence, - ACTIONS(6222), 1, + ACTIONS(6213), 1, aux_sym_c_string_literal_token1, - STATE(3614), 2, + STATE(3619), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122217] = 6, - ACTIONS(487), 1, + [122219] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6076), 1, + ACTIONS(6074), 1, sym___dolcbr, - ACTIONS(6224), 1, + ACTIONS(6215), 1, sym_escape_sequence, - ACTIONS(6226), 1, + ACTIONS(6217), 1, aux_sym_c_string_literal_token2, - ACTIONS(6228), 1, + ACTIONS(6219), 1, sym___double_quote, - STATE(3615), 2, + STATE(3620), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122237] = 6, - ACTIONS(487), 1, + [122239] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6068), 1, + ACTIONS(6124), 1, sym___dolcbr, - ACTIONS(6228), 1, + ACTIONS(6219), 1, sym___single_quote, - ACTIONS(6230), 1, + ACTIONS(6221), 1, sym_escape_sequence, - ACTIONS(6232), 1, + ACTIONS(6223), 1, aux_sym_c_string_literal_token1, - STATE(3616), 2, + STATE(3621), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122257] = 6, - ACTIONS(487), 1, + [122259] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, sym___dolcbr, - ACTIONS(6234), 1, + ACTIONS(6203), 1, sym___double_quote, - STATE(3639), 2, + ACTIONS(6225), 1, + sym_escape_sequence, + ACTIONS(6227), 1, + aux_sym_c_string_literal_token2, + STATE(3581), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122277] = 6, - ACTIONS(487), 1, + [122279] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6076), 1, + ACTIONS(6074), 1, sym___dolcbr, - ACTIONS(6236), 1, + ACTIONS(6175), 1, + sym___double_quote, + ACTIONS(6229), 1, sym_escape_sequence, - ACTIONS(6238), 1, + ACTIONS(6231), 1, aux_sym_c_string_literal_token2, - ACTIONS(6240), 1, - sym___double_quote, - STATE(3609), 2, + STATE(3632), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122297] = 6, - ACTIONS(487), 1, + [122299] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6076), 1, + ACTIONS(6074), 1, sym___dolcbr, - ACTIONS(6208), 1, - sym___double_quote, - ACTIONS(6242), 1, + ACTIONS(6078), 1, sym_escape_sequence, - ACTIONS(6244), 1, + ACTIONS(6080), 1, aux_sym_c_string_literal_token2, - STATE(3646), 2, + ACTIONS(6233), 1, + sym___double_quote, + STATE(3549), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122317] = 6, - ACTIONS(487), 1, + [122319] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6068), 1, + ACTIONS(6124), 1, sym___dolcbr, - ACTIONS(6240), 1, + ACTIONS(6133), 1, + sym_escape_sequence, + ACTIONS(6135), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6233), 1, sym___single_quote, - ACTIONS(6246), 1, + STATE(3548), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat1, + [122339] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5653), 1, + sym_identifier, + ACTIONS(5937), 1, + anon_sym_mut, + ACTIONS(5939), 1, + anon_sym_shared, + STATE(4292), 1, + sym_mutability_modifiers, + STATE(4297), 1, + sym_reference_expression, + STATE(4308), 1, + sym_capture, + [122361] = 6, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6124), 1, + sym___dolcbr, + ACTIONS(6235), 1, sym_escape_sequence, - ACTIONS(6248), 1, + ACTIONS(6237), 1, aux_sym_c_string_literal_token1, - STATE(3610), 2, + ACTIONS(6239), 1, + sym___single_quote, + STATE(3555), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122337] = 6, - ACTIONS(487), 1, + [122381] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6072), 1, + ACTIONS(6124), 1, + sym___dolcbr, + ACTIONS(6133), 1, sym_escape_sequence, + ACTIONS(6135), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6179), 1, + sym___single_quote, + STATE(3548), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat1, + [122401] = 6, + ACTIONS(493), 1, + sym_comment, ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, sym___dolcbr, - ACTIONS(6250), 1, + ACTIONS(6239), 1, sym___double_quote, - STATE(3639), 2, + ACTIONS(6241), 1, + sym_escape_sequence, + ACTIONS(6243), 1, + aux_sym_c_string_literal_token2, + STATE(3556), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122357] = 6, - ACTIONS(487), 1, + [122421] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6064), 1, + ACTIONS(6076), 1, + sym___single_quote, + ACTIONS(6124), 1, + sym___dolcbr, + ACTIONS(6245), 1, sym_escape_sequence, - ACTIONS(6066), 1, + ACTIONS(6247), 1, aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6234), 1, - sym___single_quote, - STATE(3571), 2, + STATE(3557), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122377] = 6, - ACTIONS(487), 1, + [122441] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6064), 1, + ACTIONS(6124), 1, + sym___dolcbr, + ACTIONS(6249), 1, sym_escape_sequence, - ACTIONS(6066), 1, + ACTIONS(6251), 1, aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6250), 1, + ACTIONS(6253), 1, sym___single_quote, - STATE(3571), 2, + STATE(3599), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122397] = 6, - ACTIONS(487), 1, + [122461] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(6064), 1, + ACTIONS(6258), 1, + anon_sym_RBRACE, + STATE(3603), 1, + aux_sym_selective_import_list_repeat1, + ACTIONS(6255), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + [122477] = 6, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6124), 1, + sym___dolcbr, + ACTIONS(6260), 1, sym_escape_sequence, - ACTIONS(6066), 1, + ACTIONS(6262), 1, aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6084), 1, + ACTIONS(6264), 1, sym___single_quote, - STATE(3571), 2, + STATE(3562), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122417] = 6, - ACTIONS(487), 1, + [122497] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(6064), 1, + ACTIONS(5960), 6, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + [122509] = 6, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6074), 1, + sym___dolcbr, + ACTIONS(6264), 1, + sym___double_quote, + ACTIONS(6266), 1, sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, + ACTIONS(6268), 1, + aux_sym_c_string_literal_token2, + STATE(3569), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat2, + [122529] = 6, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6124), 1, sym___dolcbr, - ACTIONS(6078), 1, + ACTIONS(6270), 1, + sym_escape_sequence, + ACTIONS(6272), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6274), 1, sym___single_quote, - STATE(3571), 2, + STATE(3574), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122437] = 6, - ACTIONS(487), 1, + [122549] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6064), 1, + ACTIONS(6124), 1, + sym___dolcbr, + ACTIONS(6276), 1, sym_escape_sequence, - ACTIONS(6066), 1, + ACTIONS(6278), 1, aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6252), 1, + ACTIONS(6280), 1, sym___single_quote, - STATE(3571), 2, + STATE(3570), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122457] = 6, - ACTIONS(487), 1, + [122569] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, ACTIONS(6074), 1, + sym___dolcbr, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, + ACTIONS(6286), 1, + sym___double_quote, + STATE(3559), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat2, + [122589] = 6, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6074), 1, sym___dolcbr, - ACTIONS(6252), 1, + ACTIONS(6280), 1, sym___double_quote, - STATE(3639), 2, + ACTIONS(6288), 1, + sym_escape_sequence, + ACTIONS(6290), 1, + aux_sym_c_string_literal_token2, + STATE(3571), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122477] = 6, - ACTIONS(487), 1, + [122609] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6064), 1, + ACTIONS(6124), 1, + sym___dolcbr, + ACTIONS(6133), 1, sym_escape_sequence, - ACTIONS(6066), 1, + ACTIONS(6135), 1, aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6254), 1, + ACTIONS(6292), 1, sym___single_quote, - STATE(3571), 2, + STATE(3548), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122497] = 6, - ACTIONS(487), 1, + [122629] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6064), 1, + ACTIONS(6124), 1, + sym___dolcbr, + ACTIONS(6294), 1, sym_escape_sequence, - ACTIONS(6066), 1, + ACTIONS(6296), 1, aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6256), 1, + ACTIONS(6298), 1, sym___single_quote, - STATE(3571), 2, + STATE(3572), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122517] = 6, - ACTIONS(487), 1, + [122649] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, sym___dolcbr, - ACTIONS(6256), 1, + ACTIONS(6298), 1, sym___double_quote, - STATE(3639), 2, + ACTIONS(6300), 1, + sym_escape_sequence, + ACTIONS(6302), 1, + aux_sym_c_string_literal_token2, + STATE(3576), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122537] = 6, - ACTIONS(487), 1, + [122669] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, + ACTIONS(6074), 1, sym___dolcbr, - ACTIONS(6258), 1, + ACTIONS(6078), 1, + sym_escape_sequence, + ACTIONS(6080), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6292), 1, + sym___double_quote, + STATE(3549), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat2, + [122689] = 6, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6082), 1, sym___single_quote, - STATE(3571), 2, + ACTIONS(6124), 1, + sym___dolcbr, + ACTIONS(6133), 1, + sym_escape_sequence, + ACTIONS(6135), 1, + aux_sym_c_string_literal_token1, + STATE(3548), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122557] = 6, - ACTIONS(487), 1, + [122709] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(4781), 1, + anon_sym_COMMA, + STATE(3554), 1, + aux_sym_strictly_expression_list_repeat1, + ACTIONS(1780), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [122725] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, sym___dolcbr, - ACTIONS(6258), 1, + ACTIONS(6274), 1, sym___double_quote, - STATE(3639), 2, + ACTIONS(6304), 1, + sym_escape_sequence, + ACTIONS(6306), 1, + aux_sym_c_string_literal_token2, + STATE(3575), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122577] = 6, - ACTIONS(487), 1, + [122745] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, sym___dolcbr, - ACTIONS(6254), 1, + ACTIONS(6078), 1, + sym_escape_sequence, + ACTIONS(6080), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6308), 1, sym___double_quote, - STATE(3639), 2, + STATE(3549), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122597] = 6, - ACTIONS(487), 1, + [122765] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6064), 1, + ACTIONS(6124), 1, + sym___dolcbr, + ACTIONS(6133), 1, sym_escape_sequence, - ACTIONS(6066), 1, + ACTIONS(6135), 1, aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6260), 1, + ACTIONS(6308), 1, sym___single_quote, - STATE(3571), 2, + STATE(3548), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122617] = 6, - ACTIONS(487), 1, + [122785] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, sym___dolcbr, - ACTIONS(6262), 1, + ACTIONS(6078), 1, + sym_escape_sequence, + ACTIONS(6080), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6310), 1, sym___double_quote, - STATE(3639), 2, + STATE(3549), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122637] = 6, - ACTIONS(487), 1, + [122805] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6064), 1, + ACTIONS(6124), 1, + sym___dolcbr, + ACTIONS(6133), 1, sym_escape_sequence, - ACTIONS(6066), 1, + ACTIONS(6135), 1, aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6262), 1, + ACTIONS(6310), 1, sym___single_quote, - STATE(3571), 2, + STATE(3548), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122657] = 6, - ACTIONS(487), 1, + [122825] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, sym___dolcbr, - ACTIONS(6264), 1, + ACTIONS(6312), 1, + sym_escape_sequence, + ACTIONS(6314), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6316), 1, sym___double_quote, - STATE(3639), 2, + STATE(3635), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122677] = 6, - ACTIONS(487), 1, + [122845] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, + ACTIONS(6124), 1, sym___dolcbr, - ACTIONS(6264), 1, + ACTIONS(6316), 1, sym___single_quote, - STATE(3571), 2, + ACTIONS(6318), 1, + sym_escape_sequence, + ACTIONS(6320), 1, + aux_sym_c_string_literal_token1, + STATE(3638), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122697] = 6, - ACTIONS(487), 1, + [122865] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, sym___dolcbr, - ACTIONS(6260), 1, + ACTIONS(6322), 1, + sym_escape_sequence, + ACTIONS(6324), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6326), 1, sym___double_quote, STATE(3639), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122717] = 6, - ACTIONS(487), 1, + [122885] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6068), 1, + ACTIONS(6124), 1, sym___dolcbr, - ACTIONS(6266), 1, + ACTIONS(6328), 1, sym_escape_sequence, - ACTIONS(6268), 1, + ACTIONS(6330), 1, aux_sym_c_string_literal_token1, - ACTIONS(6270), 1, + ACTIONS(6332), 1, sym___single_quote, - STATE(3647), 2, + STATE(3611), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122737] = 6, - ACTIONS(487), 1, + [122905] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, sym___dolcbr, - ACTIONS(6272), 1, + ACTIONS(6332), 1, sym___double_quote, - STATE(3639), 2, + ACTIONS(6334), 1, + sym_escape_sequence, + ACTIONS(6336), 1, + aux_sym_c_string_literal_token2, + STATE(3614), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122757] = 6, - ACTIONS(487), 1, + [122925] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6064), 1, + ACTIONS(6124), 1, + sym___dolcbr, + ACTIONS(6338), 1, sym_escape_sequence, - ACTIONS(6066), 1, + ACTIONS(6340), 1, aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6272), 1, + ACTIONS(6342), 1, sym___single_quote, - STATE(3571), 2, + STATE(3615), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122777] = 6, - ACTIONS(487), 1, + [122945] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, sym___dolcbr, - ACTIONS(6274), 1, + ACTIONS(6342), 1, sym___double_quote, - STATE(3639), 2, + ACTIONS(6344), 1, + sym_escape_sequence, + ACTIONS(6346), 1, + aux_sym_c_string_literal_token2, + STATE(3544), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122797] = 6, - ACTIONS(487), 1, + [122965] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, + ACTIONS(6124), 1, sym___dolcbr, - ACTIONS(6274), 1, + ACTIONS(6326), 1, sym___single_quote, - STATE(3571), 2, + ACTIONS(6348), 1, + sym_escape_sequence, + ACTIONS(6350), 1, + aux_sym_c_string_literal_token1, + STATE(3640), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122817] = 6, - ACTIONS(487), 1, + [122985] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6068), 1, + ACTIONS(6124), 1, sym___dolcbr, - ACTIONS(6276), 1, + ACTIONS(6133), 1, sym_escape_sequence, - ACTIONS(6278), 1, + ACTIONS(6135), 1, aux_sym_c_string_literal_token1, - ACTIONS(6280), 1, + ACTIONS(6141), 1, sym___single_quote, - STATE(3594), 2, + STATE(3548), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122837] = 6, - ACTIONS(487), 1, + [123005] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6076), 1, + ACTIONS(6074), 1, sym___dolcbr, - ACTIONS(6280), 1, + ACTIONS(6253), 1, sym___double_quote, - ACTIONS(6282), 1, + ACTIONS(6352), 1, sym_escape_sequence, - ACTIONS(6284), 1, + ACTIONS(6354), 1, aux_sym_c_string_literal_token2, - STATE(3589), 2, + STATE(3577), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122857] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6286), 1, - sym_escape_sequence, - ACTIONS(6288), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6290), 1, - sym___single_quote, - STATE(3598), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122877] = 6, - ACTIONS(487), 1, + [123025] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6076), 1, + ACTIONS(6074), 1, sym___dolcbr, - ACTIONS(6290), 1, - sym___double_quote, - ACTIONS(6292), 1, + ACTIONS(6078), 1, sym_escape_sequence, - ACTIONS(6294), 1, + ACTIONS(6080), 1, aux_sym_c_string_literal_token2, - STATE(3599), 2, + ACTIONS(6356), 1, + sym___double_quote, + STATE(3549), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122897] = 6, - ACTIONS(487), 1, + [123045] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6076), 1, + ACTIONS(6074), 1, sym___dolcbr, - ACTIONS(6270), 1, - sym___double_quote, - ACTIONS(6296), 1, + ACTIONS(6078), 1, sym_escape_sequence, - ACTIONS(6298), 1, + ACTIONS(6080), 1, aux_sym_c_string_literal_token2, - STATE(3648), 2, + ACTIONS(6358), 1, + sym___double_quote, + STATE(3549), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122917] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5892), 1, - anon_sym_LBRACE, - STATE(3793), 1, - sym_selective_import_list, - ACTIONS(6300), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [122933] = 6, - ACTIONS(487), 1, + [123065] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6068), 1, + ACTIONS(6124), 1, sym___dolcbr, - ACTIONS(6302), 1, + ACTIONS(6286), 1, + sym___single_quote, + ACTIONS(6360), 1, sym_escape_sequence, - ACTIONS(6304), 1, + ACTIONS(6362), 1, aux_sym_c_string_literal_token1, - ACTIONS(6306), 1, - sym___single_quote, - STATE(3549), 2, + STATE(3630), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122953] = 6, - ACTIONS(487), 1, + [123085] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6076), 1, + ACTIONS(6074), 1, sym___dolcbr, - ACTIONS(6306), 1, - sym___double_quote, - ACTIONS(6308), 1, + ACTIONS(6078), 1, sym_escape_sequence, - ACTIONS(6310), 1, + ACTIONS(6080), 1, aux_sym_c_string_literal_token2, - STATE(3578), 2, + ACTIONS(6364), 1, + sym___double_quote, + STATE(3549), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [122973] = 6, - ACTIONS(487), 1, + [123105] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6068), 1, + ACTIONS(6124), 1, sym___dolcbr, - ACTIONS(6312), 1, + ACTIONS(6133), 1, sym_escape_sequence, - ACTIONS(6314), 1, + ACTIONS(6135), 1, aux_sym_c_string_literal_token1, - ACTIONS(6316), 1, + ACTIONS(6356), 1, sym___single_quote, - STATE(3579), 2, + STATE(3548), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [122993] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6318), 1, - anon_sym_const, - ACTIONS(6320), 1, - anon_sym_fn, - ACTIONS(6324), 1, - anon_sym_enum, - ACTIONS(6326), 1, - anon_sym_interface, - ACTIONS(6322), 2, - anon_sym_struct, - anon_sym_union, - [123013] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6316), 1, - sym___double_quote, - ACTIONS(6328), 1, - sym_escape_sequence, - ACTIONS(6330), 1, - aux_sym_c_string_literal_token2, - STATE(3580), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [123033] = 2, - ACTIONS(487), 1, + [123125] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(5988), 6, + ACTIONS(6368), 1, + anon_sym_RBRACE, + STATE(3648), 1, + aux_sym_selective_import_list_repeat1, + ACTIONS(6366), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RPAREN, - [123045] = 6, - ACTIONS(487), 1, + [123141] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6068), 1, + ACTIONS(6124), 1, sym___dolcbr, - ACTIONS(6332), 1, + ACTIONS(6133), 1, sym_escape_sequence, - ACTIONS(6334), 1, + ACTIONS(6135), 1, aux_sym_c_string_literal_token1, - ACTIONS(6336), 1, + ACTIONS(6364), 1, sym___single_quote, - STATE(3600), 2, + STATE(3548), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [123065] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6336), 1, - sym___double_quote, - ACTIONS(6338), 1, - sym_escape_sequence, - ACTIONS(6340), 1, - aux_sym_c_string_literal_token2, - STATE(3605), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [123085] = 6, - ACTIONS(487), 1, + [123161] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, + ACTIONS(6074), 1, sym___dolcbr, - ACTIONS(6342), 1, - sym___single_quote, - STATE(3571), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [123105] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6072), 1, + ACTIONS(6078), 1, sym_escape_sequence, - ACTIONS(6074), 1, + ACTIONS(6080), 1, aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6342), 1, + ACTIONS(6370), 1, sym___double_quote, - STATE(3639), 2, + STATE(3549), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [123125] = 6, - ACTIONS(487), 1, + [123181] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6068), 1, + ACTIONS(6124), 1, sym___dolcbr, - ACTIONS(6344), 1, + ACTIONS(6133), 1, sym_escape_sequence, - ACTIONS(6346), 1, + ACTIONS(6135), 1, aux_sym_c_string_literal_token1, - ACTIONS(6348), 1, + ACTIONS(6370), 1, sym___single_quote, - STATE(3606), 2, + STATE(3548), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [123145] = 6, - ACTIONS(487), 1, + [123201] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, + ACTIONS(6074), 1, sym___dolcbr, - ACTIONS(6350), 1, - sym___single_quote, - STATE(3571), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [123165] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6072), 1, + ACTIONS(6372), 1, sym_escape_sequence, - ACTIONS(6074), 1, + ACTIONS(6374), 1, aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6350), 1, + ACTIONS(6376), 1, sym___double_quote, - STATE(3639), 2, + STATE(3633), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [123185] = 4, - ACTIONS(487), 1, + [123221] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(6352), 1, - sym_identifier, - STATE(3702), 1, - sym_label_reference, - ACTIONS(3851), 4, + ACTIONS(5890), 1, + anon_sym_LBRACE, + STATE(3734), 1, + sym_selective_import_list, + ACTIONS(6378), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - [123201] = 6, - ACTIONS(487), 1, + anon_sym_SEMI, + [123237] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6076), 1, + ACTIONS(6124), 1, sym___dolcbr, - ACTIONS(6348), 1, - sym___double_quote, - ACTIONS(6354), 1, + ACTIONS(6376), 1, + sym___single_quote, + ACTIONS(6380), 1, sym_escape_sequence, - ACTIONS(6356), 1, - aux_sym_c_string_literal_token2, - STATE(3611), 2, + ACTIONS(6382), 1, + aux_sym_c_string_literal_token1, + STATE(3645), 2, sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [123221] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6352), 1, - sym_identifier, - STATE(3704), 1, - sym_label_reference, - ACTIONS(3855), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [123237] = 6, - ACTIONS(487), 1, + aux_sym_c_string_literal_repeat1, + [123257] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6358), 1, + ACTIONS(6074), 1, + sym___dolcbr, + ACTIONS(6078), 1, sym_escape_sequence, - ACTIONS(6361), 1, + ACTIONS(6080), 1, aux_sym_c_string_literal_token2, - ACTIONS(6364), 1, - sym___dolcbr, - ACTIONS(6367), 1, + ACTIONS(6384), 1, sym___double_quote, - STATE(3639), 2, + STATE(3549), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [123257] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6369), 1, - anon_sym_COMMA, - STATE(3640), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(1690), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [123273] = 6, - ACTIONS(487), 1, + [123277] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6068), 1, + ACTIONS(6124), 1, sym___dolcbr, - ACTIONS(6372), 1, + ACTIONS(6133), 1, sym_escape_sequence, - ACTIONS(6374), 1, + ACTIONS(6135), 1, aux_sym_c_string_literal_token1, - ACTIONS(6376), 1, + ACTIONS(6358), 1, sym___single_quote, - STATE(3631), 2, + STATE(3548), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [123293] = 6, - ACTIONS(487), 1, + [123297] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6076), 1, + ACTIONS(6124), 1, sym___dolcbr, - ACTIONS(6376), 1, - sym___double_quote, - ACTIONS(6378), 1, + ACTIONS(6133), 1, sym_escape_sequence, - ACTIONS(6380), 1, - aux_sym_c_string_literal_token2, - STATE(3632), 2, + ACTIONS(6135), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6384), 1, + sym___single_quote, + STATE(3548), 2, sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [123313] = 6, - ACTIONS(487), 1, + aux_sym_c_string_literal_repeat1, + [123317] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6068), 1, + ACTIONS(6124), 1, sym___dolcbr, - ACTIONS(6382), 1, + ACTIONS(6133), 1, sym_escape_sequence, - ACTIONS(6384), 1, + ACTIONS(6135), 1, aux_sym_c_string_literal_token1, ACTIONS(6386), 1, sym___single_quote, - STATE(3634), 2, + STATE(3548), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [123333] = 6, - ACTIONS(487), 1, + [123337] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6386), 1, - sym___double_quote, ACTIONS(6388), 1, - sym_escape_sequence, - ACTIONS(6390), 1, - aux_sym_c_string_literal_token2, - STATE(3635), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, + anon_sym_RBRACE, + STATE(3603), 1, + aux_sym_selective_import_list_repeat1, + ACTIONS(6366), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, [123353] = 6, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, + ACTIONS(6074), 1, sym___dolcbr, - ACTIONS(6392), 1, - sym___single_quote, - STATE(3571), 2, + ACTIONS(6078), 1, + sym_escape_sequence, + ACTIONS(6080), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6386), 1, + sym___double_quote, + STATE(3549), 2, sym_string_interpolation, - aux_sym_c_string_literal_repeat1, + aux_sym_c_string_literal_repeat2, [123373] = 6, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, sym___dolcbr, + ACTIONS(6390), 1, + sym_escape_sequence, ACTIONS(6392), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6394), 1, sym___double_quote, - STATE(3639), 2, + STATE(3652), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, [123393] = 6, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(6064), 1, + ACTIONS(6124), 1, + sym___dolcbr, + ACTIONS(6133), 1, sym_escape_sequence, - ACTIONS(6066), 1, + ACTIONS(6135), 1, aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6394), 1, + ACTIONS(6396), 1, sym___single_quote, - STATE(3571), 2, + STATE(3548), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, [123413] = 6, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, sym___dolcbr, - ACTIONS(6394), 1, + ACTIONS(6078), 1, + sym_escape_sequence, + ACTIONS(6080), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6396), 1, sym___double_quote, - STATE(3639), 2, + STATE(3549), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, [123433] = 6, - ACTIONS(487), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6396), 1, - sym_escape_sequence, ACTIONS(6398), 1, - aux_sym_c_string_literal_token2, + anon_sym_const, ACTIONS(6400), 1, - sym___double_quote, - STATE(3604), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, + anon_sym_fn, + ACTIONS(6404), 1, + anon_sym_enum, + ACTIONS(6406), 1, + anon_sym_interface, + ACTIONS(6402), 2, + anon_sym_struct, + anon_sym_union, [123453] = 6, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(6068), 1, + ACTIONS(6124), 1, sym___dolcbr, - ACTIONS(6400), 1, + ACTIONS(6394), 1, sym___single_quote, - ACTIONS(6402), 1, + ACTIONS(6408), 1, sym_escape_sequence, - ACTIONS(6404), 1, + ACTIONS(6410), 1, aux_sym_c_string_literal_token1, - STATE(3603), 2, + STATE(3651), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, [123473] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6406), 1, - sym_escape_sequence, - ACTIONS(6408), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6410), 1, - sym___double_quote, - STATE(3602), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [123493] = 6, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(6068), 1, + ACTIONS(6074), 1, sym___dolcbr, - ACTIONS(6410), 1, - sym___single_quote, ACTIONS(6412), 1, sym_escape_sequence, ACTIONS(6414), 1, - aux_sym_c_string_literal_token1, - STATE(3601), 2, + aux_sym_c_string_literal_token2, + ACTIONS(6416), 1, + sym___double_quote, + STATE(3649), 2, sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [123513] = 7, + aux_sym_c_string_literal_repeat2, + [123493] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6416), 1, - anon_sym_DOT, ACTIONS(6418), 1, - anon_sym_RBRACE, + anon_sym_DOT, ACTIONS(6420), 1, - sym_int_literal, + anon_sym_RBRACE, ACTIONS(6422), 1, - aux_sym_format_specifier_token1, + sym_int_literal, ACTIONS(6424), 1, - aux_sym_format_specifier_token2, + aux_sym_format_specifier_token1, ACTIONS(6426), 1, - anon_sym_0, - [123535] = 5, - ACTIONS(3), 1, - sym_comment, + aux_sym_format_specifier_token2, ACTIONS(6428), 1, - anon_sym_LBRACE, - STATE(1535), 1, - sym__interface_body, - STATE(4326), 1, - sym_generic_parameters, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - [123552] = 2, - ACTIONS(487), 1, + anon_sym_0, + [123515] = 6, + ACTIONS(493), 1, sym_comment, - ACTIONS(6430), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - [123563] = 6, + ACTIONS(6124), 1, + sym___dolcbr, + ACTIONS(6416), 1, + sym___single_quote, + ACTIONS(6430), 1, + sym_escape_sequence, + ACTIONS(6432), 1, + aux_sym_c_string_literal_token1, + STATE(3647), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat1, + [123535] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6432), 1, + ACTIONS(4873), 1, anon_sym_LBRACE, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(6436), 1, + STATE(1338), 1, + sym_block, + ACTIONS(6434), 3, + anon_sym_SEMI, anon_sym_RBRACK, - STATE(2320), 1, - sym_type_initializer_body, - STATE(4074), 1, - aux_sym_type_parameters_repeat1, - [123582] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6438), 1, - sym_identifier, - ACTIONS(6440), 1, - anon_sym_mut, - STATE(3984), 1, - sym_var_definition, - STATE(4205), 1, - sym_range_clause, - STATE(4548), 1, - sym_var_definition_list, - [123601] = 6, + anon_sym_COLON, + [123550] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(6436), 1, + anon_sym_LBRACE, ACTIONS(6438), 1, - sym_identifier, + anon_sym_COMMA, ACTIONS(6440), 1, - anon_sym_mut, - STATE(3984), 1, - sym_var_definition, - STATE(4228), 1, - sym_range_clause, - STATE(4548), 1, - sym_var_definition_list, - [123620] = 5, + anon_sym_RPAREN, + STATE(2385), 1, + sym_type_initializer_body, + STATE(3886), 1, + aux_sym_type_parameters_repeat1, + [123569] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(6442), 1, anon_sym_LBRACE, - STATE(1561), 1, + STATE(1525), 1, sym__struct_body, - STATE(4285), 1, + STATE(4255), 1, sym_generic_parameters, - ACTIONS(4671), 2, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - [123637] = 5, + [123586] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6428), 1, + ACTIONS(6444), 1, anon_sym_LBRACE, - STATE(1566), 1, + STATE(1528), 1, sym__interface_body, - STATE(4266), 1, + STATE(4253), 1, sym_generic_parameters, - ACTIONS(4671), 2, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - [123654] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_LBRACE, - STATE(2405), 1, - sym_block, - ACTIONS(6444), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - [123669] = 5, + [123603] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6442), 1, - anon_sym_LBRACE, - STATE(1539), 1, - sym__struct_body, - STATE(4262), 1, - sym_generic_parameters, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - [123686] = 4, - ACTIONS(487), 1, + ACTIONS(5937), 1, + anon_sym_mut, + ACTIONS(5939), 1, + anon_sym_shared, + ACTIONS(6446), 1, + sym_identifier, + STATE(4293), 1, + sym_mutable_identifier, + STATE(4446), 1, + sym_mutability_modifiers, + [123622] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(6448), 1, + ACTIONS(6448), 2, anon_sym_RBRACE, - STATE(3672), 1, - aux_sym__statement_list_repeat1, - ACTIONS(6446), 3, + sym_identifier, + ACTIONS(6450), 3, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + [123635] = 2, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6452), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - [123701] = 5, + anon_sym_RBRACE, + sym_identifier, + [123646] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6428), 1, + ACTIONS(6444), 1, anon_sym_LBRACE, - STATE(1570), 1, + STATE(1580), 1, sym__interface_body, - STATE(4251), 1, + STATE(4148), 1, sym_generic_parameters, - ACTIONS(4671), 2, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - [123718] = 2, - ACTIONS(487), 1, + [123663] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5712), 1, + anon_sym_RBRACE, + ACTIONS(6454), 4, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + [123676] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(1690), 5, + ACTIONS(6459), 1, + anon_sym_RBRACE, + STATE(3667), 1, + aux_sym__statement_list_repeat1, + ACTIONS(6456), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - [123729] = 4, - ACTIONS(487), 1, + [123691] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(6452), 1, + ACTIONS(6463), 1, anon_sym_RBRACE, - STATE(3663), 1, + STATE(3667), 1, aux_sym__statement_list_repeat1, - ACTIONS(6450), 3, + ACTIONS(6461), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - [123744] = 6, + [123706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6432), 1, + STATE(2385), 1, + sym_type_initializer_body, + ACTIONS(2872), 4, anon_sym_LBRACE, - ACTIONS(6454), 1, anon_sym_COMMA, - ACTIONS(6456), 1, anon_sym_RPAREN, - STATE(2320), 1, + anon_sym_RBRACK, + [123719] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6436), 1, + anon_sym_LBRACE, + STATE(2385), 1, sym_type_initializer_body, - STATE(3856), 1, - aux_sym_type_parameters_repeat1, - [123763] = 6, + ACTIONS(2880), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [123734] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(2385), 1, + sym_type_initializer_body, + ACTIONS(2884), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [123747] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5907), 1, + ACTIONS(5937), 1, anon_sym_mut, - ACTIONS(5909), 1, + ACTIONS(5939), 1, anon_sym_shared, - ACTIONS(6458), 1, + ACTIONS(6465), 1, sym_identifier, - STATE(4230), 1, - sym_mutable_identifier, - STATE(4545), 1, + STATE(4321), 1, + sym_parameter_declaration, + STATE(4437), 1, sym_mutability_modifiers, - [123782] = 2, - ACTIONS(487), 1, + [123766] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6147), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - [123793] = 2, - ACTIONS(487), 1, + ACTIONS(6442), 1, + anon_sym_LBRACE, + STATE(1567), 1, + sym__struct_body, + STATE(4206), 1, + sym_generic_parameters, + ACTIONS(4707), 2, + anon_sym_LBRACK, + anon_sym_LT2, + [123783] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6467), 1, + sym_identifier, + ACTIONS(6469), 1, + anon_sym_mut, + STATE(3973), 1, + sym_var_definition, + STATE(4185), 1, + sym_range_clause, + STATE(4636), 1, + sym_var_definition_list, + [123802] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(6460), 5, + ACTIONS(6471), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_LBRACE, - [123804] = 3, + [123813] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5706), 1, + ACTIONS(4859), 1, + anon_sym_LBRACE, + STATE(2390), 1, + sym_block, + ACTIONS(2892), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [123828] = 2, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6258), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(6462), 4, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [123817] = 4, - ACTIONS(487), 1, + [123839] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(6467), 1, + ACTIONS(6475), 1, anon_sym_RBRACE, - STATE(3672), 1, + STATE(3668), 1, aux_sym__statement_list_repeat1, - ACTIONS(6464), 3, + ACTIONS(6473), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - [123832] = 5, + [123854] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6467), 1, + sym_identifier, + ACTIONS(6469), 1, + anon_sym_mut, + STATE(3973), 1, + sym_var_definition, + STATE(4231), 1, + sym_range_clause, + STATE(4636), 1, + sym_var_definition_list, + [123873] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6444), 1, + anon_sym_LBRACE, + STATE(1571), 1, + sym__interface_body, + STATE(4335), 1, + sym_generic_parameters, + ACTIONS(4707), 2, + anon_sym_LBRACK, + anon_sym_LT2, + [123890] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(6442), 1, anon_sym_LBRACE, - STATE(1537), 1, + STATE(1568), 1, sym__struct_body, - STATE(4331), 1, + STATE(4337), 1, sym_generic_parameters, - ACTIONS(4671), 2, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - [123849] = 2, - ACTIONS(487), 1, + [123907] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4859), 1, + anon_sym_LBRACE, + STATE(2364), 1, + sym_block, + ACTIONS(6434), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + [123922] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(6469), 5, + ACTIONS(6477), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, sym_identifier, - [123860] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6432), 1, - anon_sym_LBRACE, - STATE(2320), 1, - sym_type_initializer_body, - ACTIONS(2917), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [123875] = 5, + [123933] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6428), 1, + ACTIONS(6444), 1, anon_sym_LBRACE, - STATE(1521), 1, + STATE(1493), 1, sym__interface_body, - STATE(4343), 1, + STATE(4342), 1, sym_generic_parameters, - ACTIONS(4671), 2, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - [123892] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(2320), 1, - sym_type_initializer_body, - ACTIONS(2933), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [123905] = 5, + [123950] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(6442), 1, anon_sym_LBRACE, - STATE(1572), 1, + STATE(1497), 1, sym__struct_body, - STATE(4332), 1, + STATE(4344), 1, sym_generic_parameters, - ACTIONS(4671), 2, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - [123922] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_LBRACE, - STATE(2426), 1, - sym_block, - ACTIONS(2937), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [123937] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4839), 1, - anon_sym_LBRACE, - STATE(1324), 1, - sym_block, - ACTIONS(6444), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - [123952] = 3, + [123967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5793), 1, + ACTIONS(5785), 1, anon_sym_RBRACE, - ACTIONS(6471), 4, + ACTIONS(6479), 4, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [123965] = 3, - ACTIONS(487), 1, + [123980] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(6473), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(6475), 3, + ACTIONS(1716), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - [123978] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5907), 1, - anon_sym_mut, - ACTIONS(5909), 1, - anon_sym_shared, - ACTIONS(6477), 1, - sym_identifier, - STATE(4129), 1, - sym_parameter_declaration, - STATE(4650), 1, - sym_mutability_modifiers, - [123997] = 3, + anon_sym_COMMA, + anon_sym_RBRACE, + [123991] = 6, ACTIONS(3), 1, sym_comment, - STATE(2320), 1, - sym_type_initializer_body, - ACTIONS(2913), 4, + ACTIONS(6436), 1, anon_sym_LBRACE, + ACTIONS(6481), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6483), 1, anon_sym_RBRACK, + STATE(2385), 1, + sym_type_initializer_body, + STATE(3910), 1, + aux_sym_type_parameters_repeat1, [124010] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, + ACTIONS(6485), 1, anon_sym_LPAREN, - STATE(1479), 1, + STATE(1869), 1, sym_signature, - STATE(1116), 2, + STATE(1130), 2, sym_parameter_list, sym_type_parameter_list, - [124024] = 2, - ACTIONS(487), 1, + [124024] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6467), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [124034] = 4, + ACTIONS(4873), 1, + anon_sym_LBRACE, + ACTIONS(6487), 1, + anon_sym_DOLLARif, + STATE(1361), 2, + sym_compile_time_if_expression, + sym_block, + [124038] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, + ACTIONS(6489), 1, + sym_identifier, + STATE(3928), 1, + sym_generic_parameter, + ACTIONS(6491), 2, + anon_sym_GT, + anon_sym_RBRACK, + [124052] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6493), 1, + anon_sym_COMMA, + STATE(3722), 1, + aux_sym_generic_parameters_repeat1, + ACTIONS(6491), 2, + anon_sym_GT, + anon_sym_RBRACK, + [124066] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(4384), 1, + STATE(4365), 1, sym_signature, - STATE(2924), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [124048] = 4, + [124080] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, + ACTIONS(5943), 1, + anon_sym_LPAREN, + STATE(1443), 1, + sym_signature, + STATE(1119), 2, + sym_parameter_list, + sym_type_parameter_list, + [124094] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4865), 1, anon_sym_LBRACE, - ACTIONS(6479), 1, + ACTIONS(6495), 1, anon_sym_DOLLARif, - STATE(1361), 2, + STATE(1236), 2, sym_compile_time_if_expression, sym_block, - [124062] = 4, + [124108] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, + ACTIONS(6497), 1, + sym_identifier, + ACTIONS(6499), 1, + anon_sym_DOLLAR, + STATE(1854), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + [124122] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6501), 1, + sym_identifier, + STATE(3469), 1, + sym_import_path, + STATE(3471), 1, + sym_import_name, + STATE(3812), 1, + sym_import_spec, + [124138] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(1439), 1, + STATE(4210), 1, sym_signature, - STATE(1116), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [124076] = 5, + [124152] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, + ACTIONS(5872), 1, + anon_sym_LPAREN, + STATE(4119), 1, + sym_signature, + STATE(2897), 2, + sym_parameter_list, + sym_type_parameter_list, + [124166] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6503), 1, + sym_identifier, + ACTIONS(6505), 1, + anon_sym_RBRACE, + STATE(3663), 1, + sym_enum_field_definition, + STATE(3725), 1, + aux_sym__enum_body_repeat1, + [124182] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5872), 1, + anon_sym_LPAREN, + STATE(4147), 1, + sym_signature, + STATE(2897), 2, + sym_parameter_list, + sym_type_parameter_list, + [124196] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4875), 1, anon_sym_LBRACE, - ACTIONS(6481), 1, + ACTIONS(6507), 1, anon_sym_if, - STATE(1363), 1, + STATE(890), 1, sym_block, - STATE(1364), 1, + STATE(891), 1, sym_if_expression, - [124092] = 4, + [124212] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, + ACTIONS(4875), 1, + anon_sym_LBRACE, + ACTIONS(6509), 1, + anon_sym_DOLLARif, + STATE(889), 2, + sym_compile_time_if_expression, + sym_block, + [124226] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(1450), 1, + STATE(4219), 1, sym_signature, - STATE(1116), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [124106] = 2, - ACTIONS(487), 1, + [124240] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6300), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [124116] = 4, + ACTIONS(5872), 1, + anon_sym_LPAREN, + STATE(4149), 1, + sym_signature, + STATE(2897), 2, + sym_parameter_list, + sym_type_parameter_list, + [124254] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6513), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6511), 3, + sym_escape_sequence, + sym___dolcbr, + sym___double_quote, + [124266] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, + ACTIONS(6515), 1, + sym_identifier, + ACTIONS(6518), 1, + anon_sym_RPAREN, + STATE(3707), 1, + aux_sym_const_declaration_repeat1, + STATE(3852), 1, + sym_const_definition, + [124282] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6520), 1, anon_sym_LPAREN, - STATE(1440), 1, + STATE(1100), 1, sym_signature, - STATE(1116), 2, + STATE(221), 2, sym_parameter_list, sym_type_parameter_list, - [124130] = 4, + [124296] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6524), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6522), 3, + sym_escape_sequence, + sym___dolcbr, + sym___double_quote, + [124308] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(1473), 1, + STATE(4212), 1, sym_signature, - STATE(1116), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [124144] = 4, + [124322] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, + ACTIONS(6526), 1, + sym_identifier, + ACTIONS(6528), 1, + anon_sym_RPAREN, + STATE(3707), 1, + aux_sym_const_declaration_repeat1, + STATE(3852), 1, + sym_const_definition, + [124338] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5943), 1, anon_sym_LPAREN, - STATE(4101), 1, + STATE(1486), 1, sym_signature, - STATE(2924), 2, + STATE(1119), 2, sym_parameter_list, sym_type_parameter_list, - [124158] = 2, - ACTIONS(487), 1, + [124352] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4173), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [124168] = 2, - ACTIONS(487), 1, + ACTIONS(6526), 1, + sym_identifier, + ACTIONS(6530), 1, + anon_sym_RPAREN, + STATE(3707), 1, + aux_sym_const_declaration_repeat1, + STATE(3852), 1, + sym_const_definition, + [124368] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6532), 1, + sym_identifier, + ACTIONS(6534), 1, + anon_sym_RPAREN, + STATE(3719), 1, + aux_sym_global_var_declaration_repeat1, + STATE(3845), 1, + sym_global_var_definition, + [124384] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5943), 1, + anon_sym_LPAREN, + STATE(1487), 1, + sym_signature, + STATE(1119), 2, + sym_parameter_list, + sym_type_parameter_list, + [124398] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6526), 1, + sym_identifier, + ACTIONS(6530), 1, + anon_sym_RPAREN, + STATE(3742), 1, + aux_sym_const_declaration_repeat1, + STATE(3852), 1, + sym_const_definition, + [124414] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6536), 1, + anon_sym_as, + ACTIONS(6538), 1, + anon_sym_LBRACE, + STATE(1527), 1, + sym__enum_body, + STATE(4098), 1, + sym_enum_backed_type, + [124430] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(4177), 4, + ACTIONS(6540), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + [124440] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6542), 1, + sym_identifier, + ACTIONS(6545), 1, + anon_sym_RPAREN, + STATE(3719), 1, + aux_sym_global_var_declaration_repeat1, + STATE(3845), 1, + sym_global_var_definition, + [124456] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4839), 1, + anon_sym_LBRACE, + ACTIONS(6547), 1, + anon_sym_if, + STATE(2075), 1, + sym_if_expression, + STATE(2076), 1, + sym_block, + [124472] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6489), 1, + sym_identifier, + STATE(3928), 1, + sym_generic_parameter, + ACTIONS(6549), 2, + anon_sym_GT, + anon_sym_RBRACK, + [124486] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6551), 1, + anon_sym_COMMA, + STATE(3722), 1, + aux_sym_generic_parameters_repeat1, + ACTIONS(6554), 2, + anon_sym_GT, + anon_sym_RBRACK, + [124500] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4839), 1, + anon_sym_LBRACE, + ACTIONS(6556), 1, + anon_sym_DOLLARif, + STATE(2098), 2, + sym_compile_time_if_expression, + sym_block, + [124514] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5943), 1, + anon_sym_LPAREN, + STATE(1467), 1, + sym_signature, + STATE(1119), 2, + sym_parameter_list, + sym_type_parameter_list, + [124528] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6558), 1, + sym_identifier, + ACTIONS(6561), 1, anon_sym_RBRACE, - [124178] = 2, - ACTIONS(487), 1, + STATE(3663), 1, + sym_enum_field_definition, + STATE(3725), 1, + aux_sym__enum_body_repeat1, + [124544] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6563), 1, + anon_sym_LPAREN, + STATE(3434), 1, + sym_signature, + STATE(2486), 2, + sym_parameter_list, + sym_type_parameter_list, + [124558] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4185), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [124188] = 4, + ACTIONS(4875), 1, + anon_sym_LBRACE, + ACTIONS(6509), 1, + anon_sym_DOLLARif, + STATE(926), 2, + sym_compile_time_if_expression, + sym_block, + [124572] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(4214), 1, + STATE(4281), 1, sym_signature, - STATE(2924), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [124202] = 4, + [124586] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(4115), 1, + STATE(4132), 1, sym_signature, - STATE(2924), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [124216] = 4, + [124600] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, + ACTIONS(4839), 1, + anon_sym_LBRACE, + ACTIONS(6556), 1, + anon_sym_DOLLARif, + STATE(2137), 2, + sym_compile_time_if_expression, + sym_block, + [124614] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6565), 1, + anon_sym_COMMA, + STATE(3731), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(6568), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [124628] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(4202), 1, + STATE(4106), 1, sym_signature, - STATE(2924), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [124230] = 2, - ACTIONS(487), 1, + [124642] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(4189), 4, + ACTIONS(6459), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [124240] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6483), 1, - sym_identifier, - ACTIONS(6485), 1, - anon_sym_DOLLAR, - STATE(1029), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [124254] = 2, - ACTIONS(487), 1, + [124652] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(4201), 4, + ACTIONS(6570), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + [124662] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6572), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_RBRACE, - [124264] = 4, + ACTIONS(6576), 1, + sym_int_literal, + ACTIONS(6578), 1, + aux_sym_format_specifier_token1, + [124678] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(4273), 1, + STATE(4157), 1, sym_signature, - STATE(2924), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [124278] = 4, + [124692] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, - anon_sym_LBRACE, - ACTIONS(6487), 1, - anon_sym_DOLLARif, - STATE(2324), 2, - sym_compile_time_if_expression, - sym_block, - [124292] = 4, + ACTIONS(6580), 1, + anon_sym_LPAREN, + STATE(1676), 1, + sym_signature, + STATE(1126), 2, + sym_parameter_list, + sym_type_parameter_list, + [124706] = 3, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6584), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6582), 3, + sym_escape_sequence, + sym___dolcbr, + sym___double_quote, + [124718] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, + ACTIONS(6586), 1, sym_identifier, - ACTIONS(6491), 1, + ACTIONS(6588), 1, anon_sym_DOLLAR, - STATE(2040), 2, + STATE(2547), 2, sym_reference_expression, sym_compile_time_selector_expression, - [124306] = 4, + [124732] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, + ACTIONS(5943), 1, anon_sym_LPAREN, - STATE(4245), 1, + STATE(1465), 1, sym_signature, - STATE(2924), 2, + STATE(1119), 2, sym_parameter_list, sym_type_parameter_list, - [124320] = 4, + [124746] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6493), 1, + ACTIONS(5943), 1, anon_sym_LPAREN, - STATE(1314), 1, + STATE(1453), 1, sym_signature, - STATE(1109), 2, + STATE(1119), 2, sym_parameter_list, sym_type_parameter_list, - [124334] = 5, + [124760] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6495), 1, + ACTIONS(6526), 1, sym_identifier, - ACTIONS(6497), 1, + ACTIONS(6590), 1, anon_sym_RPAREN, - STATE(3753), 1, - sym_const_definition, - STATE(3757), 1, + STATE(3707), 1, aux_sym_const_declaration_repeat1, - [124350] = 5, + STATE(3852), 1, + sym_const_definition, + [124776] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 1, - anon_sym_LBRACE, - ACTIONS(6499), 1, - anon_sym_if, - STATE(2043), 1, - sym_if_expression, - STATE(2079), 1, - sym_block, - [124366] = 2, - ACTIONS(487), 1, + ACTIONS(5943), 1, + anon_sym_LPAREN, + STATE(1452), 1, + sym_signature, + STATE(1119), 2, + sym_parameter_list, + sym_type_parameter_list, + [124790] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(4224), 4, + ACTIONS(6592), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - [124376] = 4, + anon_sym_SEMI, + [124800] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6501), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(1087), 1, + STATE(4387), 1, sym_signature, - STATE(219), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [124390] = 4, + [124814] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 1, + ACTIONS(4803), 1, anon_sym_LBRACE, - ACTIONS(6503), 1, + ACTIONS(6594), 1, anon_sym_DOLLARif, - STATE(2133), 2, + STATE(1080), 2, sym_compile_time_if_expression, sym_block, - [124404] = 2, - ACTIONS(487), 1, + [124828] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6505), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [124414] = 4, + ACTIONS(6536), 1, + anon_sym_as, + ACTIONS(6538), 1, + anon_sym_LBRACE, + STATE(1569), 1, + sym__enum_body, + STATE(4336), 1, + sym_enum_backed_type, + [124844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(4306), 1, + STATE(4165), 1, sym_signature, - STATE(2924), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [124428] = 4, + [124858] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6507), 1, + ACTIONS(5943), 1, anon_sym_LPAREN, - STATE(2380), 1, + STATE(1469), 1, sym_signature, - STATE(1408), 2, + STATE(1119), 2, sym_parameter_list, sym_type_parameter_list, - [124442] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3955), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [124452] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_LBRACE, - ACTIONS(6487), 1, - anon_sym_DOLLARif, - STATE(2349), 2, - sym_compile_time_if_expression, - sym_block, - [124466] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_LBRACE, - ACTIONS(6509), 1, - anon_sym_if, - STATE(2351), 1, - sym_block, - STATE(2352), 1, - sym_if_expression, - [124482] = 4, + [124872] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, + ACTIONS(6563), 1, anon_sym_LPAREN, - STATE(4246), 1, + STATE(3444), 1, sym_signature, - STATE(2924), 2, + STATE(2486), 2, sym_parameter_list, sym_type_parameter_list, - [124496] = 4, + [124886] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, + ACTIONS(5943), 1, anon_sym_LPAREN, - STATE(4114), 1, + STATE(1457), 1, sym_signature, - STATE(2924), 2, + STATE(1119), 2, sym_parameter_list, sym_type_parameter_list, - [124510] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6511), 1, - anon_sym_as, - ACTIONS(6513), 1, - anon_sym_LBRACE, - STATE(1549), 1, - sym__enum_body, - STATE(4334), 1, - sym_enum_backed_type, - [124526] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6515), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [124536] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6517), 1, - sym_identifier, - ACTIONS(6519), 1, - anon_sym_RBRACE, - STATE(3682), 1, - sym_enum_field_definition, - STATE(3759), 1, - aux_sym__enum_body_repeat1, - [124552] = 4, + [124900] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 1, + ACTIONS(4803), 1, anon_sym_LBRACE, - ACTIONS(6503), 1, + ACTIONS(6594), 1, anon_sym_DOLLARif, - STATE(2061), 2, + STATE(1072), 2, sym_compile_time_if_expression, sym_block, - [124566] = 5, + [124914] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6521), 1, + ACTIONS(6532), 1, sym_identifier, - ACTIONS(6523), 1, + ACTIONS(6596), 1, anon_sym_RPAREN, - STATE(3724), 1, - sym_global_var_definition, - STATE(3738), 1, + STATE(3714), 1, aux_sym_global_var_declaration_repeat1, - [124582] = 4, + STATE(3845), 1, + sym_global_var_definition, + [124930] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6525), 1, + ACTIONS(6526), 1, sym_identifier, - STATE(4037), 1, - sym_generic_parameter, - ACTIONS(6527), 2, - anon_sym_GT, - anon_sym_RBRACK, - [124596] = 4, + ACTIONS(6598), 1, + anon_sym_RPAREN, + STATE(3713), 1, + aux_sym_const_declaration_repeat1, + STATE(3852), 1, + sym_const_definition, + [124946] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, + ACTIONS(5943), 1, anon_sym_LPAREN, - STATE(4365), 1, + STATE(1446), 1, sym_signature, - STATE(2924), 2, + STATE(1119), 2, sym_parameter_list, sym_type_parameter_list, - [124610] = 4, + [124960] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4803), 1, + anon_sym_LBRACE, + ACTIONS(6600), 1, + anon_sym_if, + STATE(1070), 1, + sym_if_expression, + STATE(1071), 1, + sym_block, + [124976] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6529), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(1220), 1, + STATE(4261), 1, sym_signature, - STATE(974), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [124624] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4079), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [124634] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6531), 1, - sym_identifier, - ACTIONS(6533), 1, - anon_sym_DOLLAR, - STATE(1753), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [124648] = 4, + [124990] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, + ACTIONS(6602), 1, anon_sym_LPAREN, - STATE(4118), 1, + STATE(2752), 1, sym_signature, - STATE(2924), 2, + STATE(1589), 2, sym_parameter_list, sym_type_parameter_list, - [124662] = 2, - ACTIONS(487), 1, + [125004] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(4193), 4, + ACTIONS(1776), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [124672] = 2, - ACTIONS(487), 1, + [125014] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(4119), 4, + ACTIONS(4068), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - [124682] = 2, - ACTIONS(487), 1, + anon_sym_RBRACE, + [125024] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(4107), 4, + ACTIONS(4008), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - [124692] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6535), 1, - anon_sym_DOT, - ACTIONS(6537), 1, anon_sym_RBRACE, - ACTIONS(6539), 1, - sym_int_literal, - ACTIONS(6541), 1, - aux_sym_format_specifier_token1, - [124708] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6543), 1, - sym_identifier, - ACTIONS(6546), 1, - anon_sym_RPAREN, - STATE(3724), 1, - sym_global_var_definition, - STATE(3738), 1, - aux_sym_global_var_declaration_repeat1, - [124724] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4393), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [124738] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6548), 1, - anon_sym_COMMA, - STATE(3740), 1, - aux_sym_generic_parameters_repeat1, - ACTIONS(6551), 2, - anon_sym_GT, - anon_sym_RBRACK, - [124752] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6553), 1, - anon_sym_LPAREN, - STATE(1834), 1, - sym_signature, - STATE(1127), 2, - sym_parameter_list, - sym_type_parameter_list, - [124766] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6555), 1, - anon_sym_COMMA, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(6558), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [124780] = 4, - ACTIONS(3), 1, + [125034] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4380), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [124794] = 4, - ACTIONS(3), 1, + ACTIONS(4052), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [125044] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4350), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [124808] = 4, - ACTIONS(3), 1, + ACTIONS(3960), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [125054] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(6560), 1, - anon_sym_LPAREN, - STATE(887), 1, - sym_signature, - STATE(64), 2, - sym_parameter_list, - sym_type_parameter_list, - [124822] = 4, - ACTIONS(3), 1, + ACTIONS(3972), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [125064] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4317), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [124836] = 5, + ACTIONS(3976), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [125074] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4817), 1, + ACTIONS(4869), 1, anon_sym_LBRACE, - ACTIONS(6562), 1, + ACTIONS(6604), 1, anon_sym_if, - STATE(939), 1, + STATE(2920), 1, sym_block, - STATE(940), 1, + STATE(2922), 1, sym_if_expression, - [124852] = 4, + [125090] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4817), 1, + ACTIONS(4869), 1, anon_sym_LBRACE, - ACTIONS(6564), 1, + ACTIONS(6606), 1, anon_sym_DOLLARif, - STATE(932), 2, + STATE(2918), 2, sym_compile_time_if_expression, sym_block, - [124866] = 5, - ACTIONS(3), 1, + [125104] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(6495), 1, - sym_identifier, - ACTIONS(6566), 1, - anon_sym_RPAREN, - STATE(3753), 1, - sym_const_definition, - STATE(3822), 1, - aux_sym_const_declaration_repeat1, - [124882] = 4, - ACTIONS(3), 1, + ACTIONS(3984), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [125114] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1459), 1, - sym_signature, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [124896] = 2, - ACTIONS(487), 1, + ACTIONS(4032), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [125124] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(4071), 4, + ACTIONS(4044), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [124906] = 5, + [125134] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6511), 1, + ACTIONS(6536), 1, anon_sym_as, - ACTIONS(6513), 1, + ACTIONS(6538), 1, anon_sym_LBRACE, - STATE(1536), 1, + STATE(1494), 1, sym__enum_body, - STATE(4328), 1, + STATE(4343), 1, sym_enum_backed_type, - [124922] = 2, - ACTIONS(487), 1, + [125150] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6608), 1, + sym_identifier, + ACTIONS(6610), 1, + anon_sym_DOLLAR, + STATE(1683), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + [125164] = 2, + ACTIONS(493), 1, + sym_comment, + ACTIONS(4088), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [125174] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(6568), 4, + ACTIONS(4152), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - [124932] = 4, + [125184] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, + ACTIONS(6612), 1, anon_sym_LPAREN, - STATE(4223), 1, + STATE(2246), 1, sym_signature, - STATE(2924), 2, + STATE(1307), 2, sym_parameter_list, sym_type_parameter_list, - [124946] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4871), 1, - anon_sym_LBRACE, - ACTIONS(6570), 1, - anon_sym_DOLLARif, - STATE(2716), 2, - sym_compile_time_if_expression, - sym_block, - [124960] = 4, + [125198] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4875), 1, + ACTIONS(4869), 1, anon_sym_LBRACE, - ACTIONS(6572), 1, + ACTIONS(6606), 1, anon_sym_DOLLARif, - STATE(2188), 2, + STATE(2934), 2, sym_compile_time_if_expression, sym_block, - [124974] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6574), 1, - sym_identifier, - ACTIONS(6577), 1, - anon_sym_RPAREN, - STATE(3753), 1, - sym_const_definition, - STATE(3757), 1, - aux_sym_const_declaration_repeat1, - [124990] = 4, + [125212] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(2380), 1, + STATE(2379), 1, sym_signature, - STATE(2924), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [125004] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6579), 1, - sym_identifier, - ACTIONS(6582), 1, - anon_sym_RBRACE, - STATE(3682), 1, - sym_enum_field_definition, - STATE(3759), 1, - aux_sym__enum_body_repeat1, - [125020] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4841), 1, - anon_sym_LBRACE, - ACTIONS(6584), 1, - anon_sym_if, - STATE(1021), 1, - sym_if_expression, - STATE(1082), 1, - sym_block, - [125036] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4875), 1, - anon_sym_LBRACE, - ACTIONS(6572), 1, - anon_sym_DOLLARif, - STATE(2256), 2, - sym_compile_time_if_expression, - sym_block, - [125050] = 5, - ACTIONS(3), 1, + [125226] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(4867), 1, - anon_sym_LBRACE, - ACTIONS(6586), 1, - anon_sym_if, - STATE(2904), 1, - sym_if_expression, - STATE(2905), 1, - sym_block, - [125066] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4867), 1, - anon_sym_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLARif, - STATE(2928), 2, - sym_compile_time_if_expression, - sym_block, - [125080] = 5, + ACTIONS(4160), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [125236] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4875), 1, - anon_sym_LBRACE, - ACTIONS(6590), 1, - anon_sym_if, - STATE(2167), 1, - sym_if_expression, - STATE(2285), 1, - sym_block, - [125096] = 2, - ACTIONS(487), 1, + ACTIONS(5943), 1, + anon_sym_LPAREN, + STATE(1460), 1, + sym_signature, + STATE(1119), 2, + sym_parameter_list, + sym_type_parameter_list, + [125250] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(4051), 4, + ACTIONS(4184), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [125106] = 2, - ACTIONS(487), 1, + [125260] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6614), 1, + sym_identifier, + ACTIONS(6616), 1, + anon_sym_DOLLAR, + STATE(2243), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + [125274] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(4047), 4, + ACTIONS(4172), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [125116] = 2, - ACTIONS(487), 1, + [125284] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6618), 1, + sym_identifier, + ACTIONS(6620), 1, + anon_sym_DOLLAR, + STATE(1041), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + [125298] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(4035), 4, + ACTIONS(4230), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [125126] = 2, - ACTIONS(487), 1, + [125308] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4859), 1, + anon_sym_LBRACE, + ACTIONS(6622), 1, + anon_sym_DOLLARif, + STATE(2391), 2, + sym_compile_time_if_expression, + sym_block, + [125322] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(4216), 4, + ACTIONS(4192), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [125136] = 4, + [125332] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6592), 1, - sym_identifier, - ACTIONS(6594), 1, - anon_sym_DOLLAR, - STATE(1874), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [125150] = 4, - ACTIONS(3), 1, + ACTIONS(6536), 1, + anon_sym_as, + ACTIONS(6538), 1, + anon_sym_LBRACE, + STATE(1579), 1, + sym__enum_body, + STATE(4181), 1, + sym_enum_backed_type, + [125348] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(6596), 1, - sym_identifier, - ACTIONS(6598), 1, - anon_sym_DOLLAR, - STATE(849), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [125164] = 3, - ACTIONS(487), 1, + ACTIONS(6513), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6511), 3, + sym_escape_sequence, + sym___dolcbr, + sym___single_quote, + [125360] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(6602), 1, + ACTIONS(6524), 1, aux_sym_c_string_literal_token1, - ACTIONS(6600), 3, + ACTIONS(6522), 3, sym_escape_sequence, sym___dolcbr, sym___single_quote, - [125176] = 4, + [125372] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_LBRACE, - ACTIONS(6588), 1, + ACTIONS(6495), 1, anon_sym_DOLLARif, - STATE(2921), 2, + STATE(1171), 2, sym_compile_time_if_expression, sym_block, - [125190] = 4, + [125386] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6604), 1, + ACTIONS(6624), 1, sym_identifier, - ACTIONS(6606), 1, + ACTIONS(6626), 1, anon_sym_DOLLAR, - STATE(2115), 2, + STATE(917), 2, sym_reference_expression, sym_compile_time_selector_expression, - [125204] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6610), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6608), 3, - sym_escape_sequence, - sym___dolcbr, - sym___single_quote, - [125216] = 4, + [125400] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4841), 1, + ACTIONS(4859), 1, anon_sym_LBRACE, - ACTIONS(6612), 1, + ACTIONS(6622), 1, anon_sym_DOLLARif, - STATE(1031), 2, + STATE(2399), 2, sym_compile_time_if_expression, sym_block, - [125230] = 3, - ACTIONS(487), 1, + [125414] = 3, + ACTIONS(493), 1, sym_comment, - ACTIONS(6616), 1, + ACTIONS(6584), 1, aux_sym_c_string_literal_token1, - ACTIONS(6614), 3, + ACTIONS(6582), 3, sym_escape_sequence, sym___dolcbr, sym___single_quote, - [125242] = 4, + [125426] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, + ACTIONS(5937), 1, + anon_sym_mut, + ACTIONS(5939), 1, + anon_sym_shared, + ACTIONS(6628), 1, sym_identifier, - ACTIONS(6620), 1, - anon_sym_DOLLAR, - STATE(2252), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [125256] = 4, + STATE(4440), 1, + sym_mutability_modifiers, + [125442] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4096), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [125270] = 4, + ACTIONS(6630), 1, + anon_sym_EQ, + STATE(4439), 1, + sym_generic_parameters, + ACTIONS(4707), 2, + anon_sym_LBRACK, + anon_sym_LT2, + [125456] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4847), 1, - anon_sym_LBRACE, - ACTIONS(6622), 1, - anon_sym_DOLLARif, - STATE(2591), 2, - sym_compile_time_if_expression, + ACTIONS(4865), 1, + anon_sym_LBRACE, + ACTIONS(6632), 1, + anon_sym_if, + STATE(1172), 1, sym_block, - [125284] = 4, + STATE(1174), 1, + sym_if_expression, + [125472] = 2, + ACTIONS(493), 1, + sym_comment, + ACTIONS(4148), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [125482] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(1462), 1, + STATE(4326), 1, sym_signature, - STATE(1116), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [125298] = 4, + [125496] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6624), 1, + ACTIONS(6634), 1, sym_identifier, - ACTIONS(6626), 1, + ACTIONS(6636), 1, anon_sym_DOLLAR, - STATE(1374), 2, + STATE(2402), 2, sym_reference_expression, sym_compile_time_selector_expression, - [125312] = 5, + [125510] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6521), 1, - sym_identifier, - ACTIONS(6628), 1, - anon_sym_RPAREN, - STATE(3724), 1, - sym_global_var_definition, - STATE(3738), 1, - aux_sym_global_var_declaration_repeat1, - [125328] = 5, + ACTIONS(5872), 1, + anon_sym_LPAREN, + STATE(4202), 1, + sym_signature, + STATE(2897), 2, + sym_parameter_list, + sym_type_parameter_list, + [125524] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6495), 1, + ACTIONS(6526), 1, sym_identifier, - ACTIONS(6566), 1, + ACTIONS(6638), 1, anon_sym_RPAREN, - STATE(3753), 1, - sym_const_definition, - STATE(3757), 1, + STATE(3711), 1, aux_sym_const_declaration_repeat1, - [125344] = 4, + STATE(3852), 1, + sym_const_definition, + [125540] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4364), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [125358] = 4, + ACTIONS(6640), 1, + sym_identifier, + ACTIONS(6642), 1, + anon_sym_DOLLAR, + STATE(1211), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + [125554] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, + ACTIONS(4859), 1, anon_sym_LBRACE, - ACTIONS(6630), 1, + ACTIONS(6644), 1, + anon_sym_if, + STATE(2405), 1, + sym_block, + STATE(2407), 1, + sym_if_expression, + [125570] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4885), 1, + anon_sym_LBRACE, + ACTIONS(6646), 1, anon_sym_DOLLARif, - STATE(1677), 2, + STATE(2092), 2, sym_compile_time_if_expression, sym_block, - [125372] = 4, + [125584] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4841), 1, + ACTIONS(4885), 1, anon_sym_LBRACE, - ACTIONS(6612), 1, + ACTIONS(6646), 1, anon_sym_DOLLARif, - STATE(1049), 2, + STATE(2104), 2, sym_compile_time_if_expression, sym_block, - [125386] = 4, + [125598] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6632), 1, - anon_sym_LPAREN, - STATE(3423), 1, - sym_signature, - STATE(2513), 2, - sym_parameter_list, - sym_type_parameter_list, - [125400] = 4, + ACTIONS(4885), 1, + anon_sym_LBRACE, + ACTIONS(6648), 1, + anon_sym_if, + STATE(2105), 1, + sym_block, + STATE(2106), 1, + sym_if_expression, + [125614] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6634), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(1647), 1, + STATE(4284), 1, sym_signature, - STATE(1118), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [125414] = 4, + [125628] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6636), 1, + ACTIONS(6650), 1, anon_sym_LPAREN, - STATE(2242), 1, + STATE(2053), 1, sym_signature, - STATE(1377), 2, + STATE(1151), 2, sym_parameter_list, sym_type_parameter_list, - [125428] = 4, + [125642] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6638), 1, - sym_identifier, - ACTIONS(6640), 1, - anon_sym_DOLLAR, - STATE(2475), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [125442] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4847), 1, + ACTIONS(4881), 1, anon_sym_LBRACE, - ACTIONS(6622), 1, - anon_sym_DOLLARif, - STATE(2583), 2, - sym_compile_time_if_expression, + ACTIONS(6652), 1, + anon_sym_if, + STATE(2526), 1, sym_block, - [125456] = 5, + STATE(2530), 1, + sym_if_expression, + [125658] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4847), 1, + ACTIONS(4881), 1, anon_sym_LBRACE, - ACTIONS(6642), 1, - anon_sym_if, - STATE(2468), 1, + ACTIONS(6654), 1, + anon_sym_DOLLARif, + STATE(2522), 2, + sym_compile_time_if_expression, sym_block, - STATE(2580), 1, - sym_if_expression, - [125472] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6644), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [125482] = 4, + [125672] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, + ACTIONS(6656), 1, anon_sym_LPAREN, - STATE(4207), 1, + STATE(2021), 1, sym_signature, - STATE(2924), 2, + STATE(1156), 2, sym_parameter_list, sym_type_parameter_list, - [125496] = 2, - ACTIONS(487), 1, + [125686] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(6646), 4, + ACTIONS(6658), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - [125506] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(1766), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [125516] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6648), 1, - anon_sym_COMMA, - STATE(3740), 1, - aux_sym_generic_parameters_repeat1, - ACTIONS(6650), 2, - anon_sym_GT, - anon_sym_RBRACK, - [125530] = 4, + [125696] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(4194), 1, + STATE(4386), 1, sym_signature, - STATE(2924), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [125544] = 4, + [125710] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, + ACTIONS(4877), 1, + anon_sym_LBRACE, + ACTIONS(6660), 1, + anon_sym_DOLLARif, + STATE(2720), 2, + sym_compile_time_if_expression, + sym_block, + [125724] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6563), 1, anon_sym_LPAREN, - STATE(1452), 1, + STATE(1676), 1, sym_signature, - STATE(1116), 2, + STATE(2908), 2, sym_parameter_list, sym_type_parameter_list, - [125558] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2770), 1, - anon_sym_DOT, - ACTIONS(6652), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [125570] = 4, + [125738] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, + ACTIONS(4877), 1, anon_sym_LBRACE, - ACTIONS(6630), 1, + ACTIONS(6660), 1, anon_sym_DOLLARif, - STATE(1678), 2, + STATE(2715), 2, sym_compile_time_if_expression, sym_block, - [125584] = 5, + [125752] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, + ACTIONS(4877), 1, anon_sym_LBRACE, - ACTIONS(6654), 1, + ACTIONS(6662), 1, anon_sym_if, - STATE(1693), 1, - sym_block, - STATE(1694), 1, + STATE(2713), 1, sym_if_expression, - [125600] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6656), 1, - anon_sym_EQ, - STATE(4431), 1, - sym_generic_parameters, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - [125614] = 5, + STATE(2714), 1, + sym_block, + [125768] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6521), 1, - sym_identifier, - ACTIONS(6658), 1, - anon_sym_RPAREN, - STATE(3724), 1, - sym_global_var_definition, - STATE(3727), 1, - aux_sym_global_var_declaration_repeat1, - [125630] = 4, + ACTIONS(5872), 1, + anon_sym_LPAREN, + STATE(4295), 1, + sym_signature, + STATE(2897), 2, + sym_parameter_list, + sym_type_parameter_list, + [125782] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 1, + ACTIONS(4881), 1, anon_sym_LBRACE, - ACTIONS(6660), 1, + ACTIONS(6654), 1, anon_sym_DOLLARif, - STATE(1256), 2, + STATE(2507), 2, sym_compile_time_if_expression, sym_block, - [125644] = 5, + [125796] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6495), 1, + ACTIONS(6664), 1, sym_identifier, - ACTIONS(6662), 1, - anon_sym_RPAREN, - STATE(3710), 1, - aux_sym_const_declaration_repeat1, - STATE(3753), 1, - sym_const_definition, - [125660] = 4, + ACTIONS(6666), 1, + anon_sym_DOLLAR, + STATE(2119), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + [125810] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6664), 1, + ACTIONS(5943), 1, anon_sym_LPAREN, - STATE(2055), 1, + STATE(1461), 1, sym_signature, - STATE(1152), 2, + STATE(1119), 2, sym_parameter_list, sym_type_parameter_list, - [125674] = 4, + [125824] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6636), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(2500), 1, + STATE(4268), 1, sym_signature, - STATE(1425), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [125688] = 2, - ACTIONS(487), 1, + [125838] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3935), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [125698] = 5, + ACTIONS(6668), 1, + anon_sym_LPAREN, + STATE(1229), 1, + sym_signature, + STATE(965), 2, + sym_parameter_list, + sym_type_parameter_list, + [125852] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4871), 1, + ACTIONS(4873), 1, anon_sym_LBRACE, - ACTIONS(6666), 1, + ACTIONS(6670), 1, anon_sym_if, - STATE(2709), 1, - sym_if_expression, - STATE(2710), 1, + STATE(1380), 1, sym_block, - [125714] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6668), 1, - sym_identifier, - ACTIONS(6670), 1, - anon_sym_DOLLAR, - STATE(2418), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [125728] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6672), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [125738] = 4, + STATE(1382), 1, + sym_if_expression, + [125868] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, + ACTIONS(6672), 1, anon_sym_LPAREN, - STATE(1484), 1, + STATE(2379), 1, sym_signature, - STATE(1116), 2, + STATE(1413), 2, sym_parameter_list, sym_type_parameter_list, - [125752] = 4, + [125882] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6674), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(2748), 1, + STATE(4283), 1, sym_signature, - STATE(1582), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [125766] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6517), 1, - sym_identifier, - ACTIONS(6676), 1, - anon_sym_RBRACE, - STATE(3682), 1, - sym_enum_field_definition, - STATE(3725), 1, - aux_sym__enum_body_repeat1, - [125782] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6511), 1, - anon_sym_as, - ACTIONS(6513), 1, - anon_sym_LBRACE, - STATE(1569), 1, - sym__enum_body, - STATE(4253), 1, - sym_enum_backed_type, - [125798] = 4, + [125896] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4817), 1, + ACTIONS(4873), 1, anon_sym_LBRACE, - ACTIONS(6564), 1, + ACTIONS(6487), 1, anon_sym_DOLLARif, - STATE(854), 2, + STATE(1373), 2, sym_compile_time_if_expression, sym_block, - [125812] = 5, + [125910] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6495), 1, + ACTIONS(6503), 1, sym_identifier, - ACTIONS(6678), 1, - anon_sym_RPAREN, - STATE(3753), 1, - sym_const_definition, - STATE(3757), 1, - aux_sym_const_declaration_repeat1, - [125828] = 4, + ACTIONS(6674), 1, + anon_sym_RBRACE, + STATE(3663), 1, + sym_enum_field_definition, + STATE(3700), 1, + aux_sym__enum_body_repeat1, + [125926] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5872), 1, + anon_sym_LPAREN, + STATE(4152), 1, + sym_signature, + STATE(2897), 2, + sym_parameter_list, + sym_type_parameter_list, + [125940] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4871), 1, anon_sym_LBRACE, - ACTIONS(6570), 1, + ACTIONS(6676), 1, anon_sym_DOLLARif, - STATE(2711), 2, + STATE(2271), 2, sym_compile_time_if_expression, sym_block, - [125842] = 4, + [125954] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, + ACTIONS(6678), 1, anon_sym_LPAREN, - STATE(1460), 1, + STATE(1313), 1, sym_signature, - STATE(1116), 2, + STATE(1117), 2, sym_parameter_list, sym_type_parameter_list, - [125856] = 4, + [125968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6632), 1, + ACTIONS(2738), 1, + anon_sym_DOT, + ACTIONS(6680), 3, anon_sym_LPAREN, - STATE(1647), 1, - sym_signature, - STATE(2898), 2, - sym_parameter_list, - sym_type_parameter_list, - [125870] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6495), 1, - sym_identifier, - ACTIONS(6680), 1, - anon_sym_RPAREN, - STATE(3753), 1, - sym_const_definition, - STATE(3757), 1, - aux_sym_const_declaration_repeat1, - [125886] = 4, + anon_sym_LBRACK, + anon_sym_LT2, + [125980] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1434), 1, - sym_signature, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [125900] = 5, + ACTIONS(4871), 1, + anon_sym_LBRACE, + ACTIONS(6676), 1, + anon_sym_DOLLARif, + STATE(2262), 2, + sym_compile_time_if_expression, + sym_block, + [125994] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6521), 1, - sym_identifier, + ACTIONS(4871), 1, + anon_sym_LBRACE, ACTIONS(6682), 1, - anon_sym_RPAREN, - STATE(3724), 1, - sym_global_var_definition, - STATE(3782), 1, - aux_sym_global_var_declaration_repeat1, - [125916] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6495), 1, - sym_identifier, - ACTIONS(6684), 1, - anon_sym_RPAREN, - STATE(3753), 1, - sym_const_definition, - STATE(3783), 1, - aux_sym_const_declaration_repeat1, - [125932] = 4, + anon_sym_if, + STATE(2259), 1, + sym_if_expression, + STATE(2260), 1, + sym_block, + [126010] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(1429), 1, + STATE(4129), 1, sym_signature, - STATE(1116), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [125946] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6686), 1, - anon_sym_COMMA, - STATE(3797), 1, - aux_sym_generic_parameters_repeat1, - ACTIONS(6688), 2, - anon_sym_GT, - anon_sym_RBRACK, - [125960] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6610), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6608), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, - [125972] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6690), 1, - sym_identifier, - ACTIONS(6692), 1, - anon_sym_DOLLAR, - STATE(2780), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [125986] = 4, + [126024] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 1, + ACTIONS(5872), 1, anon_sym_LPAREN, - STATE(2003), 1, + STATE(4397), 1, sym_signature, - STATE(1149), 2, + STATE(2897), 2, sym_parameter_list, sym_type_parameter_list, - [126000] = 5, + [126038] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4843), 1, + ACTIONS(4462), 1, anon_sym_LBRACE, - ACTIONS(6696), 1, + ACTIONS(6684), 1, anon_sym_if, - STATE(1962), 1, + STATE(1707), 1, sym_if_expression, - STATE(1968), 1, + STATE(1710), 1, sym_block, - [126016] = 4, + [126054] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, + ACTIONS(4462), 1, anon_sym_LBRACE, - ACTIONS(6479), 1, + ACTIONS(6686), 1, anon_sym_DOLLARif, - STATE(1355), 2, + STATE(1714), 2, sym_compile_time_if_expression, sym_block, - [126030] = 4, + [126068] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, + ACTIONS(5943), 1, anon_sym_LPAREN, - STATE(1454), 1, + STATE(1470), 1, sym_signature, - STATE(1116), 2, + STATE(1119), 2, sym_parameter_list, sym_type_parameter_list, - [126044] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4843), 1, - anon_sym_LBRACE, - ACTIONS(6698), 1, - anon_sym_DOLLARif, - STATE(1981), 2, - sym_compile_time_if_expression, - sym_block, - [126058] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6511), 1, - anon_sym_as, - ACTIONS(6513), 1, - anon_sym_LBRACE, - STATE(1563), 1, - sym__enum_body, - STATE(4281), 1, - sym_enum_backed_type, - [126074] = 4, + [126082] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4279), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [126088] = 4, + ACTIONS(6688), 1, + sym_identifier, + ACTIONS(6690), 1, + anon_sym_DOLLAR, + STATE(1997), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + [126096] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, + ACTIONS(6612), 1, anon_sym_LPAREN, - STATE(4134), 1, + STATE(2523), 1, sym_signature, - STATE(2924), 2, + STATE(1424), 2, sym_parameter_list, sym_type_parameter_list, - [126102] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5907), 1, - anon_sym_mut, - ACTIONS(5909), 1, - anon_sym_shared, - ACTIONS(6700), 1, - sym_identifier, - STATE(4704), 1, - sym_mutability_modifiers, - [126118] = 4, + [126110] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4843), 1, - anon_sym_LBRACE, - ACTIONS(6698), 1, - anon_sym_DOLLARif, - STATE(2026), 2, - sym_compile_time_if_expression, - sym_block, - [126132] = 4, + ACTIONS(6692), 1, + anon_sym_COMMA, + STATE(3692), 1, + aux_sym_generic_parameters_repeat1, + ACTIONS(6694), 2, + anon_sym_GT, + anon_sym_RBRACK, + [126124] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6702), 1, + ACTIONS(6696), 1, anon_sym_EQ, - STATE(4706), 1, + STATE(4587), 1, sym_generic_parameters, - ACTIONS(4671), 2, + ACTIONS(4707), 2, anon_sym_LBRACK, anon_sym_LT2, - [126146] = 4, + [126138] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4879), 1, anon_sym_LBRACE, - ACTIONS(6704), 1, + ACTIONS(6698), 1, anon_sym_DOLLARif, - STATE(1866), 2, + STATE(1918), 2, sym_compile_time_if_expression, sym_block, - [126160] = 3, - ACTIONS(487), 1, + [126152] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(6602), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6600), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, - [126172] = 5, + ACTIONS(6700), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [126162] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 1, - anon_sym_LBRACE, - ACTIONS(6706), 1, - anon_sym_if, - STATE(1907), 1, - sym_if_expression, - STATE(1909), 1, - sym_block, - [126188] = 5, + ACTIONS(6532), 1, + sym_identifier, + ACTIONS(6702), 1, + anon_sym_RPAREN, + STATE(3719), 1, + aux_sym_global_var_declaration_repeat1, + STATE(3845), 1, + sym_global_var_definition, + [126178] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6495), 1, + ACTIONS(6526), 1, sym_identifier, - ACTIONS(6497), 1, + ACTIONS(6704), 1, anon_sym_RPAREN, - STATE(3753), 1, + STATE(3852), 1, sym_const_definition, - STATE(3818), 1, + STATE(3854), 1, aux_sym_const_declaration_repeat1, - [126204] = 4, + [126194] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6532), 1, + sym_identifier, + ACTIONS(6706), 1, + anon_sym_RPAREN, + STATE(3845), 1, + sym_global_var_definition, + STATE(3846), 1, + aux_sym_global_var_declaration_repeat1, + [126210] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(6708), 1, sym_identifier, ACTIONS(6710), 1, anon_sym_DOLLAR, - STATE(1231), 2, + STATE(2849), 2, sym_reference_expression, sym_compile_time_selector_expression, - [126218] = 4, + [126224] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(4879), 1, anon_sym_LBRACE, - ACTIONS(6704), 1, - anon_sym_DOLLARif, - STATE(1799), 2, - sym_compile_time_if_expression, + ACTIONS(6712), 1, + anon_sym_if, + STATE(1910), 1, + sym_if_expression, + STATE(1911), 1, sym_block, - [126232] = 4, + [126240] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 1, + ACTIONS(4879), 1, anon_sym_LBRACE, - ACTIONS(6660), 1, + ACTIONS(6698), 1, anon_sym_DOLLARif, - STATE(1263), 2, + STATE(1912), 2, sym_compile_time_if_expression, sym_block, - [126246] = 5, - ACTIONS(3), 1, + [126254] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(4851), 1, - anon_sym_LBRACE, - ACTIONS(6712), 1, - anon_sym_if, - STATE(1264), 1, - sym_block, - STATE(1265), 1, - sym_if_expression, - [126262] = 5, + ACTIONS(6714), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [126264] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6714), 1, + ACTIONS(6716), 1, sym_identifier, - STATE(3468), 1, - sym_import_path, - STATE(3470), 1, - sym_import_name, - STATE(3812), 1, - sym_import_spec, - [126278] = 4, + ACTIONS(6718), 1, + anon_sym_DOLLAR, + STATE(1383), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + [126278] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4116), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [126292] = 4, + ACTIONS(6526), 1, + sym_identifier, + ACTIONS(6638), 1, + anon_sym_RPAREN, + STATE(3707), 1, + aux_sym_const_declaration_repeat1, + STATE(3852), 1, + sym_const_definition, + [126294] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6632), 1, - anon_sym_LPAREN, - STATE(3427), 1, - sym_signature, - STATE(2513), 2, - sym_parameter_list, - sym_type_parameter_list, - [126306] = 3, - ACTIONS(487), 1, + ACTIONS(4462), 1, + anon_sym_LBRACE, + ACTIONS(6686), 1, + anon_sym_DOLLARif, + STATE(1743), 2, + sym_compile_time_if_expression, + sym_block, + [126308] = 2, + ACTIONS(493), 1, sym_comment, - ACTIONS(6616), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6614), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, + ACTIONS(6378), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, [126318] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6525), 1, - sym_identifier, - STATE(4037), 1, - sym_generic_parameter, - ACTIONS(6650), 2, - anon_sym_GT, - anon_sym_RBRACK, + ACTIONS(6720), 1, + anon_sym_LPAREN, + STATE(877), 1, + sym_signature, + STATE(68), 2, + sym_parameter_list, + sym_type_parameter_list, [126332] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(6718), 1, - anon_sym_RPAREN, - STATE(4005), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(6722), 1, + anon_sym_DOT, + ACTIONS(6724), 1, + anon_sym_RBRACE, + ACTIONS(6726), 1, + aux_sym_format_specifier_token1, [126345] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6720), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(6723), 1, - anon_sym_RPAREN, - STATE(3855), 1, - aux_sym_type_parameter_list_repeat1, + ACTIONS(6728), 1, + anon_sym_RBRACK, + STATE(4070), 1, + aux_sym_type_parameters_repeat1, [126358] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5443), 1, + ACTIONS(5461), 1, anon_sym_RPAREN, - ACTIONS(6725), 1, + ACTIONS(6730), 1, anon_sym_COMMA, - STATE(3742), 1, + STATE(3731), 1, aux_sym_type_parameters_repeat1, [126371] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5243), 1, - anon_sym_LBRACE, - ACTIONS(6727), 1, - anon_sym_COMMA, - STATE(3857), 1, - aux_sym_match_expression_list_repeat1, - [126384] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6730), 1, - aux_sym_raw_string_literal_token2, ACTIONS(6732), 1, - sym___double_quote, - STATE(3954), 1, - aux_sym_raw_string_literal_repeat2, - [126397] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5437), 1, - anon_sym_RPAREN, - ACTIONS(6734), 1, anon_sym_COMMA, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [126410] = 4, + ACTIONS(6734), 1, + anon_sym_RPAREN, + STATE(3882), 1, + aux_sym_parameter_list_repeat1, + [126384] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, ACTIONS(6736), 1, + anon_sym_COMMA, + ACTIONS(6738), 1, anon_sym_RPAREN, - STATE(3874), 1, - aux_sym_parameter_list_repeat1, - [126423] = 4, + STATE(3883), 1, + aux_sym_type_parameter_list_repeat1, + [126397] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, + ACTIONS(6736), 1, anon_sym_COMMA, ACTIONS(6740), 1, anon_sym_RPAREN, - STATE(3875), 1, + STATE(3924), 1, aux_sym_type_parameter_list_repeat1, - [126436] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6732), 1, - sym___single_quote, - ACTIONS(6742), 1, - aux_sym_raw_string_literal_token1, - STATE(3955), 1, - aux_sym_raw_string_literal_repeat1, - [126449] = 4, + [126410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5439), 1, - anon_sym_RPAREN, - ACTIONS(6744), 1, + ACTIONS(3233), 1, + anon_sym_COLON_EQ, + ACTIONS(4805), 1, anon_sym_COMMA, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [126462] = 4, + STATE(3952), 1, + aux_sym_strictly_expression_list_repeat1, + [126423] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6746), 1, - anon_sym_COMMA, - ACTIONS(6748), 1, - anon_sym_RPAREN, - STATE(3987), 1, - aux_sym_type_parameters_repeat1, - [126475] = 4, + ACTIONS(6742), 3, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + [126432] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6750), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(6752), 1, - anon_sym_RPAREN, - STATE(3914), 1, + ACTIONS(6744), 1, + anon_sym_RBRACK, + STATE(3875), 1, aux_sym_type_parameters_repeat1, - [126488] = 4, + [126445] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(6754), 1, - anon_sym_RPAREN, - STATE(3889), 1, - aux_sym_parameter_list_repeat1, - [126501] = 2, + ACTIONS(6746), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [126454] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2770), 3, + ACTIONS(6748), 1, anon_sym_SEMI, + ACTIONS(6750), 1, anon_sym_RBRACK, - anon_sym_QMARK, - [126510] = 4, + STATE(3988), 1, + aux_sym_attribute_repeat1, + [126467] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, + ACTIONS(6068), 1, + anon_sym_RBRACK, + ACTIONS(6752), 1, anon_sym_COMMA, + STATE(3932), 1, + aux_sym_capture_list_repeat1, + [126480] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6754), 1, + aux_sym_raw_string_literal_token2, ACTIONS(6756), 1, - anon_sym_RPAREN, - STATE(4038), 1, - aux_sym_parameter_list_repeat1, - [126523] = 4, - ACTIONS(3), 1, + sym___double_quote, + STATE(3939), 1, + aux_sym_raw_string_literal_repeat2, + [126493] = 4, + ACTIONS(493), 1, sym_comment, + ACTIONS(6756), 1, + sym___single_quote, ACTIONS(6758), 1, - anon_sym_COMMA, - ACTIONS(6760), 1, - anon_sym_RPAREN, - STATE(3922), 1, - aux_sym_type_parameters_repeat1, - [126536] = 4, + aux_sym_raw_string_literal_token1, + STATE(3940), 1, + aux_sym_raw_string_literal_repeat1, + [126506] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(5906), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [126515] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6760), 1, + aux_sym_raw_string_literal_token1, ACTIONS(6762), 1, - anon_sym_COMMA, + sym___single_quote, + STATE(4066), 1, + aux_sym_raw_string_literal_repeat1, + [126528] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6762), 1, + sym___double_quote, ACTIONS(6764), 1, - anon_sym_RPAREN, - STATE(3863), 1, - aux_sym_type_parameters_repeat1, - [126549] = 4, + aux_sym_raw_string_literal_token2, + STATE(4073), 1, + aux_sym_raw_string_literal_repeat2, + [126541] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 1, + ACTIONS(6481), 1, anon_sym_COMMA, ACTIONS(6766), 1, anon_sym_RBRACK, - STATE(3881), 1, + STATE(3731), 1, aux_sym_type_parameters_repeat1, - [126562] = 4, - ACTIONS(3), 1, + [126554] = 4, + ACTIONS(493), 1, sym_comment, + ACTIONS(6764), 1, + aux_sym_raw_string_literal_token2, ACTIONS(6768), 1, - sym_identifier, - ACTIONS(6770), 1, - anon_sym_LPAREN, - STATE(1502), 1, - sym_const_definition, - [126575] = 4, + sym___double_quote, + STATE(4073), 1, + aux_sym_raw_string_literal_repeat2, + [126567] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(6772), 1, - anon_sym_RPAREN, - STATE(4059), 1, - aux_sym_type_parameter_list_repeat1, - [126588] = 4, + ACTIONS(6770), 1, + anon_sym_RBRACK, + STATE(3889), 1, + aux_sym_type_parameters_repeat1, + [126580] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(6774), 1, + ACTIONS(6772), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [126589] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5479), 1, anon_sym_RPAREN, + ACTIONS(6774), 1, + anon_sym_COMMA, + STATE(3731), 1, + aux_sym_type_parameters_repeat1, + [126602] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6760), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6768), 1, + sym___single_quote, STATE(4066), 1, - aux_sym_parameter_list_repeat1, - [126601] = 4, + aux_sym_raw_string_literal_repeat1, + [126615] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, + ACTIONS(6736), 1, anon_sym_COMMA, ACTIONS(6776), 1, anon_sym_RPAREN, - STATE(3855), 1, + STATE(4039), 1, aux_sym_type_parameter_list_repeat1, - [126614] = 4, + [126628] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, + ACTIONS(6732), 1, anon_sym_COMMA, ACTIONS(6778), 1, anon_sym_RPAREN, - STATE(3891), 1, + STATE(3923), 1, + aux_sym_parameter_list_repeat1, + [126641] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6736), 1, + anon_sym_COMMA, + ACTIONS(6780), 1, + anon_sym_RPAREN, + STATE(3924), 1, aux_sym_type_parameter_list_repeat1, - [126627] = 2, + [126654] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6780), 3, + ACTIONS(5487), 1, + anon_sym_RPAREN, + ACTIONS(6782), 1, anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACK, - [126636] = 4, + STATE(3731), 1, + aux_sym_type_parameters_repeat1, + [126667] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3227), 1, + ACTIONS(6784), 1, anon_sym_SEMI, - ACTIONS(4987), 1, + ACTIONS(6787), 1, + anon_sym_RBRACK, + STATE(3885), 1, + aux_sym_attribute_repeat1, + [126680] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5481), 1, + anon_sym_RPAREN, + ACTIONS(6789), 1, anon_sym_COMMA, - STATE(3972), 1, - aux_sym_strictly_expression_list_repeat1, - [126649] = 2, + STATE(3731), 1, + aux_sym_type_parameters_repeat1, + [126693] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6782), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [126658] = 4, + ACTIONS(6791), 1, + anon_sym_COMMA, + ACTIONS(6793), 1, + anon_sym_RPAREN, + STATE(4037), 1, + aux_sym_type_parameters_repeat1, + [126706] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6784), 1, + ACTIONS(6732), 1, anon_sym_COMMA, - ACTIONS(6786), 1, - anon_sym_RBRACK, - STATE(3973), 1, - aux_sym_capture_list_repeat1, - [126671] = 4, + ACTIONS(6795), 1, + anon_sym_RPAREN, + STATE(4040), 1, + aux_sym_parameter_list_repeat1, + [126719] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(6788), 1, + ACTIONS(6797), 1, anon_sym_RBRACK, - STATE(3742), 1, + STATE(3731), 1, aux_sym_type_parameters_repeat1, - [126684] = 3, + [126732] = 4, ACTIONS(3), 1, sym_comment, - STATE(3863), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(6790), 2, + ACTIONS(6732), 1, anon_sym_COMMA, + ACTIONS(6799), 1, anon_sym_RPAREN, - [126695] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6792), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6794), 1, - sym___single_quote, - STATE(3862), 1, - aux_sym_raw_string_literal_repeat1, - [126708] = 4, + STATE(3921), 1, + aux_sym_parameter_list_repeat1, + [126745] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6796), 1, - sym_identifier, - ACTIONS(6798), 1, - anon_sym_LBRACE, - STATE(2393), 1, - sym__struct_body, - [126721] = 4, + ACTIONS(5491), 1, + anon_sym_RPAREN, + ACTIONS(6801), 1, + anon_sym_COMMA, + STATE(3731), 1, + aux_sym_type_parameters_repeat1, + [126758] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6800), 1, + ACTIONS(6736), 1, anon_sym_COMMA, ACTIONS(6803), 1, - anon_sym_in, - STATE(3885), 1, - aux_sym_var_definition_list_repeat1, - [126734] = 4, - ACTIONS(487), 1, + anon_sym_RPAREN, + STATE(3922), 1, + aux_sym_type_parameter_list_repeat1, + [126771] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6794), 1, - sym___double_quote, - ACTIONS(6805), 1, - aux_sym_raw_string_literal_token2, - STATE(3858), 1, - aux_sym_raw_string_literal_repeat2, - [126747] = 4, + ACTIONS(5007), 1, + anon_sym_LBRACE, + ACTIONS(5009), 1, + anon_sym_COMMA, + STATE(3943), 1, + aux_sym_match_expression_list_repeat1, + [126784] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 1, + ACTIONS(6805), 1, anon_sym_COMMA, ACTIONS(6807), 1, - anon_sym_RBRACK, - STATE(3896), 1, + anon_sym_RPAREN, + STATE(3860), 1, aux_sym_type_parameters_repeat1, - [126760] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6809), 1, - sym_identifier, - ACTIONS(6811), 1, - anon_sym_LBRACE, - STATE(1069), 1, - sym__content_block, - [126773] = 4, + [126797] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, + ACTIONS(6732), 1, anon_sym_COMMA, - ACTIONS(6813), 1, + ACTIONS(6809), 1, anon_sym_RPAREN, - STATE(4066), 1, + STATE(3907), 1, aux_sym_parameter_list_repeat1, - [126786] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6742), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6815), 1, - sym___single_quote, - STATE(3955), 1, - aux_sym_raw_string_literal_repeat1, - [126799] = 4, + [126810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, + STATE(2675), 1, + sym_type_initializer_body, + ACTIONS(6811), 2, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(6817), 1, - anon_sym_RPAREN, - STATE(3855), 1, - aux_sym_type_parameter_list_repeat1, - [126812] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6819), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, [126821] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6821), 1, - sym_identifier, - ACTIONS(6823), 1, + ACTIONS(5009), 1, + anon_sym_COMMA, + ACTIONS(6813), 1, anon_sym_LBRACE, - STATE(2179), 1, - sym__content_block, + STATE(3947), 1, + aux_sym_match_expression_list_repeat1, [126834] = 4, - ACTIONS(3), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(3787), 1, - anon_sym_LBRACE, - ACTIONS(4977), 1, - anon_sym_COMMA, - STATE(3932), 1, - aux_sym_strictly_expression_list_repeat1, + ACTIONS(6815), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6817), 1, + sym___single_quote, + STATE(3873), 1, + aux_sym_raw_string_literal_repeat1, [126847] = 4, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(6730), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6815), 1, + ACTIONS(6817), 1, sym___double_quote, - STATE(3954), 1, + ACTIONS(6819), 1, + aux_sym_raw_string_literal_token2, + STATE(3874), 1, aux_sym_raw_string_literal_repeat2, [126860] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 1, + ACTIONS(4548), 1, anon_sym_COMMA, - ACTIONS(6825), 1, - anon_sym_RBRACK, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6821), 1, + anon_sym_COLON_EQ, + STATE(3950), 1, + aux_sym_identifier_list_repeat1, [126873] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6827), 1, + ACTIONS(6823), 1, anon_sym_COMMA, - ACTIONS(6829), 1, - anon_sym_RPAREN, - STATE(3859), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6826), 1, + anon_sym_in, + STATE(3901), 1, + aux_sym_var_definition_list_repeat1, [126886] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(6831), 1, - anon_sym_RBRACK, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6828), 1, + sym_identifier, + ACTIONS(6830), 1, + anon_sym_LBRACE, + STATE(2209), 1, + sym__content_block, [126899] = 4, - ACTIONS(487), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(6833), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6835), 1, - sym___double_quote, - STATE(3928), 1, - aux_sym_raw_string_literal_repeat2, + ACTIONS(6736), 1, + anon_sym_COMMA, + ACTIONS(6832), 1, + anon_sym_RPAREN, + STATE(3863), 1, + aux_sym_type_parameter_list_repeat1, [126912] = 4, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(6835), 1, - sym___single_quote, - ACTIONS(6837), 1, + ACTIONS(6760), 1, aux_sym_raw_string_literal_token1, - STATE(3929), 1, + ACTIONS(6834), 1, + sym___single_quote, + STATE(4066), 1, aux_sym_raw_string_literal_repeat1, [126925] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, + ACTIONS(3759), 1, + anon_sym_LBRACE, + ACTIONS(4987), 1, anon_sym_COMMA, - ACTIONS(6839), 1, - anon_sym_RPAREN, - STATE(3855), 1, - aux_sym_type_parameter_list_repeat1, + STATE(3948), 1, + aux_sym_strictly_expression_list_repeat1, [126938] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6841), 1, - anon_sym_COMMA, - ACTIONS(6843), 1, - anon_sym_RPAREN, - STATE(3940), 1, - aux_sym_type_parameters_repeat1, - [126951] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6845), 3, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - [126960] = 4, - ACTIONS(3), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(6847), 1, - sym_identifier, - ACTIONS(6849), 1, - anon_sym_LBRACE, - STATE(1978), 1, - sym__content_block, - [126973] = 4, + ACTIONS(6764), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6834), 1, + sym___double_quote, + STATE(4073), 1, + aux_sym_raw_string_literal_repeat2, + [126951] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, + ACTIONS(6732), 1, anon_sym_COMMA, - ACTIONS(6851), 1, + ACTIONS(6836), 1, anon_sym_RPAREN, - STATE(4066), 1, + STATE(3923), 1, aux_sym_parameter_list_repeat1, - [126986] = 4, + [126964] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6838), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6840), 1, + sym___double_quote, + STATE(3933), 1, + aux_sym_raw_string_literal_repeat2, + [126977] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6840), 1, + sym___single_quote, + ACTIONS(6842), 1, + aux_sym_raw_string_literal_token1, + STATE(3934), 1, + aux_sym_raw_string_literal_repeat1, + [126990] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(6853), 1, + ACTIONS(6844), 1, anon_sym_RBRACK, - STATE(3898), 1, + STATE(3731), 1, aux_sym_type_parameters_repeat1, - [126999] = 4, + [127003] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6768), 1, + ACTIONS(6846), 1, sym_identifier, - ACTIONS(6855), 1, + ACTIONS(6848), 1, anon_sym_LPAREN, - STATE(1511), 1, + STATE(1502), 1, sym_const_definition, - [127012] = 4, - ACTIONS(487), 1, + [127016] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6857), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6859), 1, - sym___single_quote, - STATE(3912), 1, - aux_sym_raw_string_literal_repeat1, - [127025] = 4, + ACTIONS(6850), 1, + sym_identifier, + ACTIONS(6852), 1, + anon_sym_LBRACE, + STATE(2353), 1, + sym__struct_body, + [127029] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6861), 1, + ACTIONS(6854), 1, sym_identifier, - ACTIONS(6863), 1, + ACTIONS(6856), 1, anon_sym_LBRACE, - STATE(956), 1, + STATE(1019), 1, sym__content_block, - [127038] = 4, + [127042] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6760), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6858), 1, + sym___single_quote, + STATE(4066), 1, + aux_sym_raw_string_literal_repeat1, + [127055] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6454), 1, + ACTIONS(6860), 3, anon_sym_COMMA, - ACTIONS(6456), 1, - anon_sym_RPAREN, - STATE(3856), 1, - aux_sym_type_parameters_repeat1, - [127051] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6730), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6865), 1, - sym___double_quote, - STATE(3954), 1, - aux_sym_raw_string_literal_repeat2, + anon_sym_GT, + anon_sym_RBRACK, [127064] = 4, - ACTIONS(487), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(6742), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6865), 1, - sym___single_quote, - STATE(3955), 1, - aux_sym_raw_string_literal_repeat1, + ACTIONS(3233), 1, + anon_sym_SEMI, + ACTIONS(4993), 1, + anon_sym_COMMA, + STATE(4003), 1, + aux_sym_strictly_expression_list_repeat1, [127077] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6867), 1, + ACTIONS(3309), 1, anon_sym_SEMI, - ACTIONS(6869), 1, - anon_sym_RBRACK, - STATE(3991), 1, - aux_sym_attribute_repeat1, + ACTIONS(6862), 1, + anon_sym_COMMA, + STATE(3917), 1, + aux_sym_strictly_expression_list_repeat1, [127090] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5469), 1, - anon_sym_RPAREN, - ACTIONS(6871), 1, - anon_sym_COMMA, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6865), 1, + sym_identifier, + ACTIONS(6867), 1, + anon_sym_LBRACE, + STATE(2369), 1, + sym__content_block, [127103] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(6873), 1, + ACTIONS(5465), 1, anon_sym_RPAREN, - STATE(3933), 1, - aux_sym_parameter_list_repeat1, + ACTIONS(6869), 1, + anon_sym_COMMA, + STATE(3731), 1, + aux_sym_type_parameters_repeat1, [127116] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(6875), 1, - anon_sym_RPAREN, - STATE(3934), 1, - aux_sym_type_parameter_list_repeat1, - [127129] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6768), 1, - sym_identifier, - ACTIONS(6877), 1, - anon_sym_LPAREN, - STATE(1544), 1, - sym_const_definition, + ACTIONS(6871), 1, + anon_sym_RBRACK, + STATE(3941), 1, + aux_sym_type_parameters_repeat1, + [127129] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6732), 1, + anon_sym_COMMA, + ACTIONS(6873), 1, + anon_sym_RPAREN, + STATE(3923), 1, + aux_sym_parameter_list_repeat1, [127142] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, + ACTIONS(6736), 1, anon_sym_COMMA, - ACTIONS(6879), 1, + ACTIONS(6875), 1, anon_sym_RPAREN, - STATE(3901), 1, + STATE(3924), 1, aux_sym_type_parameter_list_repeat1, [127155] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4548), 1, + ACTIONS(6877), 1, anon_sym_COMMA, - ACTIONS(6881), 1, - anon_sym_COLON_EQ, - STATE(3971), 1, - aux_sym_identifier_list_repeat1, + ACTIONS(6880), 1, + anon_sym_RPAREN, + STATE(3923), 1, + aux_sym_parameter_list_repeat1, [127168] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, + ACTIONS(6882), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6885), 1, anon_sym_RPAREN, - STATE(3905), 1, - aux_sym_parameter_list_repeat1, - [127181] = 4, + STATE(3924), 1, + aux_sym_type_parameter_list_repeat1, + [127181] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6885), 1, - sym_identifier, - ACTIONS(6887), 1, + ACTIONS(6887), 3, anon_sym_LBRACE, - STATE(1710), 1, - sym__content_block, - [127194] = 4, + anon_sym_LPAREN, + anon_sym_EQ, + [127190] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5491), 1, - anon_sym_RPAREN, ACTIONS(6889), 1, anon_sym_COMMA, - STATE(3742), 1, + ACTIONS(6891), 1, + anon_sym_RPAREN, + STATE(3891), 1, aux_sym_type_parameters_repeat1, - [127207] = 4, + [127203] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4548), 1, + ACTIONS(3736), 1, + anon_sym_LBRACE, + ACTIONS(4987), 1, anon_sym_COMMA, - ACTIONS(4550), 1, - anon_sym_COLON_EQ, - STATE(3919), 1, - aux_sym_identifier_list_repeat1, - [127220] = 4, - ACTIONS(487), 1, + STATE(3948), 1, + aux_sym_strictly_expression_list_repeat1, + [127216] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(6742), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6891), 1, - sym___single_quote, - STATE(3955), 1, - aux_sym_raw_string_literal_repeat1, - [127233] = 4, - ACTIONS(487), 1, + ACTIONS(6554), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACK, + [127225] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6893), 1, - aux_sym_raw_string_literal_token1, ACTIONS(6895), 1, - sym___single_quote, - STATE(3890), 1, - aux_sym_raw_string_literal_repeat1, - [127246] = 4, - ACTIONS(487), 1, + anon_sym_COLON, + ACTIONS(6893), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + [127236] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(6895), 1, - sym___double_quote, - ACTIONS(6897), 1, + ACTIONS(6764), 1, aux_sym_raw_string_literal_token2, - STATE(3895), 1, + ACTIONS(6858), 1, + sym___double_quote, + STATE(4073), 1, aux_sym_raw_string_literal_repeat2, - [127259] = 4, + [127249] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6897), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [127258] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, ACTIONS(6899), 1, + anon_sym_COMMA, + ACTIONS(6902), 1, anon_sym_RBRACK, - STATE(3944), 1, - aux_sym_type_parameters_repeat1, - [127272] = 4, - ACTIONS(487), 1, + STATE(3932), 1, + aux_sym_capture_list_repeat1, + [127271] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(6730), 1, + ACTIONS(6764), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6901), 1, + ACTIONS(6904), 1, sym___double_quote, - STATE(3954), 1, + STATE(4073), 1, aux_sym_raw_string_literal_repeat2, - [127285] = 4, - ACTIONS(487), 1, + [127284] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(6742), 1, + ACTIONS(6760), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6901), 1, + ACTIONS(6904), 1, sym___single_quote, - STATE(3955), 1, + STATE(4066), 1, aux_sym_raw_string_literal_repeat1, - [127298] = 4, + [127297] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6903), 1, - sym_identifier, - ACTIONS(6905), 1, - anon_sym_LBRACE, - STATE(1894), 1, - sym__content_block, - [127311] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6730), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6891), 1, - sym___double_quote, - STATE(3954), 1, - aux_sym_raw_string_literal_repeat2, - [127324] = 4, + ACTIONS(6906), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [127306] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(4613), 1, anon_sym_LBRACE, - ACTIONS(6907), 1, + ACTIONS(6908), 1, anon_sym_COMMA, - STATE(3932), 1, - aux_sym_strictly_expression_list_repeat1, - [127337] = 4, + STATE(3936), 1, + aux_sym_expression_without_blocks_list_repeat1, + [127319] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(6910), 1, - anon_sym_RPAREN, - STATE(4066), 1, - aux_sym_parameter_list_repeat1, - [127350] = 4, + ACTIONS(6911), 1, + sym_identifier, + ACTIONS(6913), 1, + anon_sym_LBRACE, + STATE(879), 1, + sym__content_block, + [127332] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(6912), 1, - anon_sym_RPAREN, - STATE(3855), 1, - aux_sym_type_parameter_list_repeat1, - [127363] = 4, - ACTIONS(3), 1, + ACTIONS(6915), 1, + anon_sym_RBRACK, + STATE(3731), 1, + aux_sym_type_parameters_repeat1, + [127345] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(3787), 1, - anon_sym_COLON_EQ, - ACTIONS(4785), 1, - anon_sym_COMMA, - STATE(4065), 1, - aux_sym_strictly_expression_list_repeat1, - [127376] = 4, - ACTIONS(3), 1, + ACTIONS(6764), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6917), 1, + sym___double_quote, + STATE(4073), 1, + aux_sym_raw_string_literal_repeat2, + [127358] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(6438), 1, - sym_identifier, - ACTIONS(6440), 1, - anon_sym_mut, - STATE(4374), 1, - sym_var_definition, - [127389] = 4, + ACTIONS(6760), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6917), 1, + sym___single_quote, + STATE(4066), 1, + aux_sym_raw_string_literal_repeat1, + [127371] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5067), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(6914), 1, - anon_sym_LBRACE, - STATE(3985), 1, - aux_sym_match_expression_list_repeat1, - [127402] = 4, + ACTIONS(6919), 1, + anon_sym_RBRACK, + STATE(3731), 1, + aux_sym_type_parameters_repeat1, + [127384] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6916), 1, + ACTIONS(6921), 1, anon_sym_COMMA, - ACTIONS(6918), 1, - anon_sym_in, - STATE(3885), 1, - aux_sym_var_definition_list_repeat1, - [127415] = 4, + ACTIONS(6923), 1, + anon_sym_RBRACK, + STATE(3869), 1, + aux_sym_capture_list_repeat1, + [127397] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3227), 1, - anon_sym_LBRACE, - ACTIONS(4977), 1, + ACTIONS(5009), 1, anon_sym_COMMA, - STATE(3894), 1, - aux_sym_strictly_expression_list_repeat1, - [127428] = 4, + ACTIONS(6925), 1, + anon_sym_LBRACE, + STATE(3984), 1, + aux_sym_match_expression_list_repeat1, + [127410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5467), 1, + ACTIONS(5439), 1, anon_sym_RPAREN, - ACTIONS(6920), 1, + ACTIONS(6927), 1, anon_sym_COMMA, - STATE(3742), 1, + STATE(3731), 1, aux_sym_type_parameters_repeat1, - [127441] = 4, + [127423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, + ACTIONS(6732), 1, anon_sym_COMMA, - ACTIONS(6922), 1, + ACTIONS(6929), 1, anon_sym_RPAREN, - STATE(3965), 1, + STATE(3969), 1, aux_sym_parameter_list_repeat1, - [127454] = 4, + [127436] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, + ACTIONS(6736), 1, anon_sym_COMMA, - ACTIONS(6924), 1, + ACTIONS(6931), 1, anon_sym_RPAREN, - STATE(3966), 1, + STATE(3970), 1, aux_sym_type_parameter_list_repeat1, - [127467] = 3, + [127449] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_QMARK, - ACTIONS(5021), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [127478] = 4, + ACTIONS(5009), 1, + anon_sym_COMMA, + ACTIONS(6933), 1, + anon_sym_LBRACE, + STATE(3984), 1, + aux_sym_match_expression_list_repeat1, + [127462] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 1, + ACTIONS(3309), 1, + anon_sym_LBRACE, + ACTIONS(6935), 1, anon_sym_COMMA, - ACTIONS(6928), 1, - anon_sym_RBRACK, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [127491] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6930), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6932), 1, - sym___single_quote, - STATE(3924), 1, - aux_sym_raw_string_literal_repeat1, - [127504] = 4, - ACTIONS(487), 1, + STATE(3948), 1, + aux_sym_strictly_expression_list_repeat1, + [127475] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(6742), 1, + ACTIONS(6938), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6934), 1, + ACTIONS(6940), 1, sym___single_quote, - STATE(3955), 1, + STATE(3880), 1, aux_sym_raw_string_literal_repeat1, - [127517] = 4, + [127488] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6936), 1, + ACTIONS(6942), 1, anon_sym_COMMA, - ACTIONS(6938), 1, - anon_sym_RPAREN, - STATE(4042), 1, - aux_sym_type_parameters_repeat1, - [127530] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6730), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6934), 1, - sym___double_quote, - STATE(3954), 1, - aux_sym_raw_string_literal_repeat2, - [127543] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6932), 1, - sym___double_quote, - ACTIONS(6940), 1, - aux_sym_raw_string_literal_token2, - STATE(3931), 1, - aux_sym_raw_string_literal_repeat2, - [127556] = 4, + ACTIONS(6945), 1, + anon_sym_COLON_EQ, + STATE(3950), 1, + aux_sym_identifier_list_repeat1, + [127501] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6535), 1, - anon_sym_DOT, - ACTIONS(6537), 1, - anon_sym_RBRACE, - ACTIONS(6541), 1, - aux_sym_format_specifier_token1, - [127569] = 3, + ACTIONS(5291), 1, + anon_sym_COMMA, + ACTIONS(5688), 1, + anon_sym_LBRACE, + STATE(3936), 1, + aux_sym_expression_without_blocks_list_repeat1, + [127514] = 4, ACTIONS(3), 1, sym_comment, - STATE(2824), 1, - sym_type_initializer_body, - ACTIONS(6942), 2, - anon_sym_LBRACE, + ACTIONS(3759), 1, + anon_sym_COLON_EQ, + ACTIONS(4805), 1, anon_sym_COMMA, - [127580] = 4, + STATE(3965), 1, + aux_sym_strictly_expression_list_repeat1, + [127527] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6944), 1, + ACTIONS(6947), 1, sym_identifier, - ACTIONS(6946), 1, + ACTIONS(6949), 1, anon_sym_LBRACE, - STATE(1325), 1, + STATE(2906), 1, sym__content_block, - [127593] = 4, + [127540] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5065), 1, - anon_sym_LBRACE, - ACTIONS(5067), 1, + ACTIONS(6736), 1, anon_sym_COMMA, - STATE(3986), 1, - aux_sym_match_expression_list_repeat1, - [127606] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6948), 1, - aux_sym_raw_string_literal_token2, ACTIONS(6951), 1, - sym___double_quote, - STATE(3954), 1, - aux_sym_raw_string_literal_repeat2, - [127619] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6953), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6956), 1, - sym___single_quote, - STATE(3955), 1, - aux_sym_raw_string_literal_repeat1, - [127632] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6958), 1, - sym_identifier, - ACTIONS(6960), 1, - anon_sym_LBRACE, - STATE(2540), 1, - sym__content_block, - [127645] = 4, + anon_sym_RPAREN, + STATE(4053), 1, + aux_sym_type_parameter_list_repeat1, + [127553] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 1, + ACTIONS(6568), 3, anon_sym_COMMA, - ACTIONS(6962), 1, + anon_sym_RPAREN, anon_sym_RBRACK, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [127658] = 4, - ACTIONS(487), 1, + [127562] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(6964), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6966), 1, + ACTIONS(6940), 1, sym___double_quote, - STATE(4025), 1, + ACTIONS(6953), 1, + aux_sym_raw_string_literal_token2, + STATE(3876), 1, aux_sym_raw_string_literal_repeat2, - [127671] = 4, + [127575] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 1, + ACTIONS(3233), 1, + anon_sym_LBRACE, + ACTIONS(4987), 1, anon_sym_COMMA, - ACTIONS(6968), 1, - anon_sym_RBRACK, - STATE(3976), 1, - aux_sym_type_parameters_repeat1, - [127684] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6970), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6972), 1, - sym___double_quote, - STATE(3982), 1, - aux_sym_raw_string_literal_repeat2, - [127697] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6972), 1, - sym___single_quote, - ACTIONS(6974), 1, - aux_sym_raw_string_literal_token1, - STATE(3983), 1, - aux_sym_raw_string_literal_repeat1, - [127710] = 4, + STATE(3905), 1, + aux_sym_strictly_expression_list_repeat1, + [127588] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6976), 1, + ACTIONS(6736), 1, anon_sym_COMMA, - ACTIONS(6978), 1, + ACTIONS(6955), 1, anon_sym_RPAREN, - STATE(4007), 1, - aux_sym_type_parameters_repeat1, - [127723] = 4, - ACTIONS(487), 1, + STATE(3924), 1, + aux_sym_type_parameter_list_repeat1, + [127601] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6966), 1, - sym___single_quote, - ACTIONS(6980), 1, - aux_sym_raw_string_literal_token1, - STATE(4033), 1, - aux_sym_raw_string_literal_repeat1, - [127736] = 4, + ACTIONS(6572), 1, + anon_sym_DOT, + ACTIONS(6574), 1, + anon_sym_RBRACE, + ACTIONS(6578), 1, + aux_sym_format_specifier_token1, + [127614] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 1, + ACTIONS(6957), 1, anon_sym_COMMA, - ACTIONS(6982), 1, - anon_sym_RBRACK, - STATE(3742), 1, + ACTIONS(6959), 1, + anon_sym_RPAREN, + STATE(4046), 1, aux_sym_type_parameters_repeat1, - [127749] = 4, + [127627] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, + ACTIONS(6732), 1, anon_sym_COMMA, - ACTIONS(6984), 1, + ACTIONS(6961), 1, anon_sym_RPAREN, - STATE(4066), 1, + STATE(3923), 1, aux_sym_parameter_list_repeat1, - [127762] = 4, + [127640] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(6986), 1, + ACTIONS(5475), 1, anon_sym_RPAREN, - STATE(3855), 1, - aux_sym_type_parameter_list_repeat1, - [127775] = 2, + ACTIONS(6963), 1, + anon_sym_COMMA, + STATE(3731), 1, + aux_sym_type_parameters_repeat1, + [127653] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3652), 3, - anon_sym_SEMI, + ACTIONS(6481), 1, + anon_sym_COMMA, + ACTIONS(6965), 1, anon_sym_RBRACK, - anon_sym_COLON, - [127784] = 2, + STATE(3980), 1, + aux_sym_type_parameters_repeat1, + [127666] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6444), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - [127793] = 4, + ACTIONS(6967), 1, + sym_identifier, + ACTIONS(6969), 1, + anon_sym_LBRACE, + STATE(1962), 1, + sym__content_block, + [127679] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3791), 1, - anon_sym_SEMI, - ACTIONS(4987), 1, + ACTIONS(3309), 1, + anon_sym_COLON_EQ, + ACTIONS(6971), 1, anon_sym_COMMA, - STATE(4060), 1, + STATE(3965), 1, aux_sym_strictly_expression_list_repeat1, - [127806] = 4, + [127692] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6988), 1, + ACTIONS(6732), 1, anon_sym_COMMA, - ACTIONS(6990), 1, + ACTIONS(6974), 1, anon_sym_RPAREN, - STATE(3999), 1, - aux_sym_type_parameters_repeat1, - [127819] = 4, + STATE(4000), 1, + aux_sym_parameter_list_repeat1, + [127705] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6976), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6978), 1, + sym___double_quote, + STATE(4069), 1, + aux_sym_raw_string_literal_repeat2, + [127718] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6992), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(6995), 1, - anon_sym_COLON_EQ, - STATE(3971), 1, - aux_sym_identifier_list_repeat1, - [127832] = 4, + ACTIONS(6980), 1, + anon_sym_RBRACK, + STATE(3938), 1, + aux_sym_type_parameters_repeat1, + [127731] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3787), 1, - anon_sym_SEMI, - ACTIONS(4987), 1, + ACTIONS(6732), 1, anon_sym_COMMA, - STATE(4060), 1, - aux_sym_strictly_expression_list_repeat1, - [127845] = 4, + ACTIONS(6982), 1, + anon_sym_RPAREN, + STATE(3923), 1, + aux_sym_parameter_list_repeat1, + [127744] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5979), 1, - anon_sym_RBRACK, - ACTIONS(6997), 1, + ACTIONS(6736), 1, anon_sym_COMMA, - STATE(4019), 1, - aux_sym_capture_list_repeat1, - [127858] = 4, + ACTIONS(6984), 1, + anon_sym_RPAREN, + STATE(3924), 1, + aux_sym_type_parameter_list_repeat1, + [127757] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 1, + ACTIONS(6986), 1, anon_sym_COMMA, - ACTIONS(6436), 1, - anon_sym_RBRACK, - STATE(4074), 1, + ACTIONS(6988), 1, + anon_sym_RPAREN, + STATE(3944), 1, aux_sym_type_parameters_repeat1, - [127871] = 4, + [127770] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, + ACTIONS(6736), 1, anon_sym_COMMA, - ACTIONS(6999), 1, + ACTIONS(6990), 1, anon_sym_RPAREN, - STATE(3855), 1, + STATE(4007), 1, aux_sym_type_parameter_list_repeat1, - [127884] = 4, + [127783] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 1, + ACTIONS(6992), 1, anon_sym_COMMA, - ACTIONS(7001), 1, - anon_sym_RBRACK, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [127897] = 4, + ACTIONS(6994), 1, + anon_sym_in, + STATE(4087), 1, + aux_sym_var_definition_list_repeat1, + [127796] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(7003), 1, - anon_sym_RPAREN, - STATE(4066), 1, - aux_sym_parameter_list_repeat1, - [127910] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6859), 1, - sym___double_quote, - ACTIONS(7005), 1, - aux_sym_raw_string_literal_token2, - STATE(3911), 1, - aux_sym_raw_string_literal_repeat2, - [127923] = 4, - ACTIONS(487), 1, + ACTIONS(6996), 1, + sym_identifier, + ACTIONS(6998), 1, + anon_sym_LBRACE, + STATE(2519), 1, + sym__content_block, + [127809] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(7007), 1, + ACTIONS(7000), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7009), 1, + ACTIONS(7002), 1, sym___double_quote, - STATE(3948), 1, + STATE(4038), 1, aux_sym_raw_string_literal_repeat2, - [127936] = 4, - ACTIONS(487), 1, + [127822] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(7009), 1, + ACTIONS(6978), 1, sym___single_quote, - ACTIONS(7011), 1, + ACTIONS(7004), 1, aux_sym_raw_string_literal_token1, - STATE(3946), 1, + STATE(4079), 1, + aux_sym_raw_string_literal_repeat1, + [127835] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(7002), 1, + sym___single_quote, + ACTIONS(7006), 1, + aux_sym_raw_string_literal_token1, + STATE(4043), 1, aux_sym_raw_string_literal_repeat1, - [127949] = 4, + [127848] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7008), 3, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + [127857] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7010), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [127866] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(7013), 1, + ACTIONS(7012), 1, anon_sym_RBRACK, - STATE(3957), 1, + STATE(3731), 1, aux_sym_type_parameters_repeat1, - [127962] = 4, - ACTIONS(487), 1, + [127879] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6730), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7015), 1, - sym___double_quote, - STATE(3954), 1, - aux_sym_raw_string_literal_repeat2, - [127975] = 4, - ACTIONS(487), 1, + STATE(4094), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(7014), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [127890] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6481), 1, + anon_sym_COMMA, + ACTIONS(7016), 1, + anon_sym_RBRACK, + STATE(3731), 1, + aux_sym_type_parameters_repeat1, + [127903] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(6742), 1, + ACTIONS(6760), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7015), 1, + ACTIONS(7018), 1, sym___single_quote, - STATE(3955), 1, + STATE(4066), 1, aux_sym_raw_string_literal_repeat1, - [127988] = 4, + [127916] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6916), 1, + ACTIONS(5241), 1, + anon_sym_LBRACE, + ACTIONS(7020), 1, anon_sym_COMMA, - ACTIONS(7017), 1, - anon_sym_in, - STATE(3938), 1, - aux_sym_var_definition_list_repeat1, - [128001] = 4, + STATE(3984), 1, + aux_sym_match_expression_list_repeat1, + [127929] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5067), 1, - anon_sym_COMMA, - ACTIONS(7019), 1, - anon_sym_LBRACE, - STATE(3857), 1, - aux_sym_match_expression_list_repeat1, - [128014] = 4, + ACTIONS(6846), 1, + sym_identifier, + ACTIONS(7023), 1, + anon_sym_LPAREN, + STATE(1492), 1, + sym_const_definition, + [127942] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(7025), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7027), 1, + sym___single_quote, + STATE(3904), 1, + aux_sym_raw_string_literal_repeat1, + [127955] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(7027), 1, + sym___double_quote, + ACTIONS(7029), 1, + aux_sym_raw_string_literal_token2, + STATE(3906), 1, + aux_sym_raw_string_literal_repeat2, + [127968] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5067), 1, - anon_sym_COMMA, - ACTIONS(7021), 1, - anon_sym_LBRACE, - STATE(3857), 1, - aux_sym_match_expression_list_repeat1, - [128027] = 4, + ACTIONS(6748), 1, + anon_sym_SEMI, + ACTIONS(7031), 1, + anon_sym_RBRACK, + STATE(3885), 1, + aux_sym_attribute_repeat1, + [127981] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5475), 1, - anon_sym_RPAREN, - ACTIONS(7023), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - STATE(3742), 1, + ACTIONS(7033), 1, + anon_sym_RBRACK, + STATE(4017), 1, aux_sym_type_parameters_repeat1, - [128040] = 4, + [127994] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, + ACTIONS(6736), 1, anon_sym_COMMA, - ACTIONS(7025), 1, + ACTIONS(7035), 1, anon_sym_RPAREN, - STATE(3855), 1, + STATE(4075), 1, aux_sym_type_parameter_list_repeat1, - [128053] = 4, + [128007] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, + ACTIONS(6732), 1, anon_sym_COMMA, - ACTIONS(7027), 1, + ACTIONS(7037), 1, anon_sym_RPAREN, - STATE(4066), 1, + STATE(4015), 1, aux_sym_parameter_list_repeat1, - [128066] = 4, + [128020] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 1, + ACTIONS(6736), 1, anon_sym_COMMA, - ACTIONS(7029), 1, - anon_sym_RBRACK, - STATE(3964), 1, - aux_sym_type_parameters_repeat1, - [128079] = 4, + ACTIONS(7039), 1, + anon_sym_RPAREN, + STATE(3958), 1, + aux_sym_type_parameter_list_repeat1, + [128033] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7031), 1, - anon_sym_SEMI, - ACTIONS(7034), 1, - anon_sym_RBRACK, - STATE(3991), 1, - aux_sym_attribute_repeat1, - [128092] = 4, + ACTIONS(6732), 1, + anon_sym_COMMA, + ACTIONS(7041), 1, + anon_sym_RPAREN, + STATE(3961), 1, + aux_sym_parameter_list_repeat1, + [128046] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, + ACTIONS(6736), 1, anon_sym_COMMA, - ACTIONS(7036), 1, + ACTIONS(7043), 1, anon_sym_RPAREN, - STATE(4006), 1, + STATE(3924), 1, aux_sym_type_parameter_list_repeat1, - [128105] = 4, + [128059] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5471), 1, + anon_sym_RPAREN, + ACTIONS(7045), 1, + anon_sym_COMMA, + STATE(3731), 1, + aux_sym_type_parameters_repeat1, + [128072] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7038), 1, - anon_sym_DOT, - ACTIONS(7040), 1, - anon_sym_RBRACE, - ACTIONS(7042), 1, - aux_sym_format_specifier_token1, - [128118] = 4, + ACTIONS(6434), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + [128081] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, + ACTIONS(6732), 1, anon_sym_COMMA, - ACTIONS(7044), 1, + ACTIONS(7047), 1, anon_sym_RPAREN, - STATE(3988), 1, - aux_sym_type_parameter_list_repeat1, - [128131] = 4, + STATE(4054), 1, + aux_sym_parameter_list_repeat1, + [128094] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3658), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + [128103] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7046), 1, + ACTIONS(7049), 1, sym_identifier, - ACTIONS(7048), 1, + ACTIONS(7051), 1, anon_sym_LBRACE, - STATE(2770), 1, + STATE(2710), 1, sym__content_block, - [128144] = 4, + [128116] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, + ACTIONS(6732), 1, anon_sym_COMMA, - ACTIONS(7050), 1, + ACTIONS(7053), 1, anon_sym_RPAREN, - STATE(3989), 1, + STATE(3923), 1, aux_sym_parameter_list_repeat1, - [128157] = 4, - ACTIONS(3), 1, + [128129] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(7052), 1, - anon_sym_RBRACK, - STATE(4012), 1, - aux_sym_type_parameters_repeat1, - [128170] = 4, - ACTIONS(3), 1, + ACTIONS(7055), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7057), 1, + sym___single_quote, + STATE(3914), 1, + aux_sym_raw_string_literal_repeat1, + [128142] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(6768), 1, - sym_identifier, - ACTIONS(7054), 1, - anon_sym_LPAREN, - STATE(1489), 1, - sym_const_definition, - [128183] = 4, + ACTIONS(7057), 1, + sym___double_quote, + ACTIONS(7059), 1, + aux_sym_raw_string_literal_token2, + STATE(3930), 1, + aux_sym_raw_string_literal_repeat2, + [128155] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5455), 1, - anon_sym_RPAREN, - ACTIONS(7056), 1, + ACTIONS(3759), 1, + anon_sym_SEMI, + ACTIONS(4993), 1, anon_sym_COMMA, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [128196] = 4, + STATE(3917), 1, + aux_sym_strictly_expression_list_repeat1, + [128168] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(7058), 1, - anon_sym_RPAREN, - STATE(3975), 1, - aux_sym_type_parameter_list_repeat1, - [128209] = 4, - ACTIONS(487), 1, + ACTIONS(7061), 1, + sym_identifier, + ACTIONS(7063), 1, + anon_sym_LBRACE, + STATE(1272), 1, + sym__content_block, + [128181] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(7060), 1, + ACTIONS(7065), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7062), 1, + ACTIONS(7067), 1, sym___double_quote, - STATE(4030), 1, + STATE(4034), 1, aux_sym_raw_string_literal_repeat2, - [128222] = 4, - ACTIONS(487), 1, + [128194] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(7062), 1, + ACTIONS(7067), 1, sym___single_quote, - ACTIONS(7064), 1, - aux_sym_raw_string_literal_token1, - STATE(4031), 1, - aux_sym_raw_string_literal_repeat1, - [128235] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6742), 1, + ACTIONS(7069), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7066), 1, - sym___single_quote, - STATE(3955), 1, + STATE(4035), 1, aux_sym_raw_string_literal_repeat1, - [128248] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(7068), 1, - anon_sym_RPAREN, - STATE(3977), 1, - aux_sym_parameter_list_repeat1, - [128261] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(7070), 1, - anon_sym_RPAREN, - STATE(4066), 1, - aux_sym_parameter_list_repeat1, - [128274] = 4, + [128207] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, + ACTIONS(6736), 1, anon_sym_COMMA, - ACTIONS(7072), 1, + ACTIONS(7071), 1, anon_sym_RPAREN, - STATE(3855), 1, + STATE(3924), 1, aux_sym_type_parameter_list_repeat1, - [128287] = 4, + [128220] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5473), 1, - anon_sym_RPAREN, - ACTIONS(7074), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - STATE(3742), 1, + ACTIONS(7073), 1, + anon_sym_RBRACK, + STATE(3731), 1, aux_sym_type_parameters_repeat1, - [128300] = 4, + [128233] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6764), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7018), 1, + sym___double_quote, + STATE(4073), 1, + aux_sym_raw_string_literal_repeat2, + [128246] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6760), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7075), 1, + sym___single_quote, + STATE(4066), 1, + aux_sym_raw_string_literal_repeat1, + [128259] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6764), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7075), 1, + sym___double_quote, + STATE(4073), 1, + aux_sym_raw_string_literal_repeat2, + [128272] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3227), 1, - anon_sym_COLON_EQ, - ACTIONS(4785), 1, - anon_sym_COMMA, - STATE(3935), 1, - aux_sym_strictly_expression_list_repeat1, - [128313] = 4, + ACTIONS(7077), 1, + sym_identifier, + ACTIONS(7079), 1, + anon_sym_LBRACE, + STATE(1339), 1, + sym__content_block, + [128285] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, + ACTIONS(2892), 1, anon_sym_COMMA, - ACTIONS(4871), 1, + ACTIONS(4877), 1, anon_sym_LBRACE, - STATE(2727), 1, + STATE(2780), 1, sym_block, - [128326] = 3, + [128298] = 3, ACTIONS(3), 1, sym_comment, - STATE(2824), 1, + STATE(2675), 1, sym_type_initializer_body, - ACTIONS(2933), 2, + ACTIONS(2884), 2, anon_sym_LBRACE, anon_sym_COMMA, - [128337] = 4, - ACTIONS(487), 1, + [128309] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6730), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7066), 1, - sym___double_quote, - STATE(3954), 1, - aux_sym_raw_string_literal_repeat2, - [128350] = 4, + ACTIONS(6732), 1, + anon_sym_COMMA, + ACTIONS(7081), 1, + anon_sym_RPAREN, + STATE(3923), 1, + aux_sym_parameter_list_repeat1, + [128322] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(7076), 1, + ACTIONS(7083), 1, anon_sym_RBRACK, - STATE(3742), 1, + STATE(4008), 1, aux_sym_type_parameters_repeat1, - [128363] = 3, + [128335] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7080), 1, - anon_sym_COLON, - ACTIONS(7078), 2, - anon_sym_SEMI, + ACTIONS(6481), 1, + anon_sym_COMMA, + ACTIONS(7085), 1, anon_sym_RBRACK, - [128374] = 4, - ACTIONS(487), 1, + STATE(3731), 1, + aux_sym_type_parameters_repeat1, + [128348] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6742), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7082), 1, - sym___single_quote, - STATE(3955), 1, - aux_sym_raw_string_literal_repeat1, - [128387] = 4, + ACTIONS(7087), 1, + anon_sym_COMMA, + ACTIONS(7089), 1, + anon_sym_RPAREN, + STATE(3995), 1, + aux_sym_type_parameters_repeat1, + [128361] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2917), 1, + ACTIONS(2880), 1, anon_sym_COMMA, - ACTIONS(7084), 1, + ACTIONS(7091), 1, anon_sym_LBRACE, - STATE(2824), 1, + STATE(2675), 1, sym_type_initializer_body, - [128400] = 4, - ACTIONS(487), 1, + [128374] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6730), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7082), 1, - sym___double_quote, - STATE(3954), 1, - aux_sym_raw_string_literal_repeat2, - [128413] = 3, + ACTIONS(7093), 1, + anon_sym_COMMA, + ACTIONS(7095), 1, + anon_sym_RPAREN, + STATE(3962), 1, + aux_sym_type_parameters_repeat1, + [128387] = 3, ACTIONS(3), 1, sym_comment, - STATE(2824), 1, + STATE(2675), 1, sym_type_initializer_body, - ACTIONS(2913), 2, + ACTIONS(2872), 2, anon_sym_LBRACE, anon_sym_COMMA, - [128424] = 4, + [128398] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6764), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7097), 1, + sym___double_quote, + STATE(4073), 1, + aux_sym_raw_string_literal_repeat2, + [128411] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7086), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(7088), 1, - anon_sym_RPAREN, - STATE(4069), 1, + ACTIONS(7099), 1, + anon_sym_RBRACK, + STATE(3731), 1, aux_sym_type_parameters_repeat1, + [128424] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6760), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7097), 1, + sym___single_quote, + STATE(4066), 1, + aux_sym_raw_string_literal_repeat1, [128437] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7090), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(7093), 1, + ACTIONS(7101), 1, anon_sym_RBRACK, - STATE(4019), 1, - aux_sym_capture_list_repeat1, - [128450] = 2, + STATE(3731), 1, + aux_sym_type_parameters_repeat1, + [128450] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6558), 3, + ACTIONS(6736), 1, anon_sym_COMMA, + ACTIONS(7103), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [128459] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(7095), 1, - anon_sym_RBRACK, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [128472] = 4, + STATE(3924), 1, + aux_sym_type_parameter_list_repeat1, + [128463] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, + ACTIONS(6732), 1, anon_sym_COMMA, - ACTIONS(7097), 1, + ACTIONS(7105), 1, anon_sym_RPAREN, - STATE(3855), 1, - aux_sym_type_parameter_list_repeat1, - [128485] = 4, + STATE(3923), 1, + aux_sym_parameter_list_repeat1, + [128476] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, + ACTIONS(6732), 1, anon_sym_COMMA, - ACTIONS(7099), 1, + ACTIONS(7107), 1, anon_sym_RPAREN, - STATE(4066), 1, + STATE(3923), 1, aux_sym_parameter_list_repeat1, - [128498] = 4, + [128489] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7101), 1, + ACTIONS(7109), 1, sym_identifier, - ACTIONS(7103), 1, + ACTIONS(7111), 1, anon_sym_LBRACE, - STATE(1185), 1, + STATE(1827), 1, sym__content_block, - [128511] = 4, - ACTIONS(487), 1, + [128502] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6730), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7105), 1, - sym___double_quote, - STATE(3954), 1, - aux_sym_raw_string_literal_repeat2, - [128524] = 4, + ACTIONS(6736), 1, + anon_sym_COMMA, + ACTIONS(7113), 1, + anon_sym_RPAREN, + STATE(3994), 1, + aux_sym_type_parameter_list_repeat1, + [128515] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(7107), 1, + ACTIONS(7115), 1, anon_sym_RBRACK, - STATE(4021), 1, + STATE(4025), 1, aux_sym_type_parameters_repeat1, - [128537] = 4, + [128528] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6867), 1, - anon_sym_SEMI, - ACTIONS(7109), 1, - anon_sym_RBRACK, - STATE(3913), 1, - aux_sym_attribute_repeat1, - [128550] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7111), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7113), 1, - sym___double_quote, - STATE(4055), 1, - aux_sym_raw_string_literal_repeat2, - [128563] = 4, + ACTIONS(4310), 1, + sym_identifier, + ACTIONS(7117), 1, + anon_sym_static, + ACTIONS(7119), 1, + anon_sym_volatile, + [128541] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, + ACTIONS(6736), 1, anon_sym_COMMA, - ACTIONS(7115), 1, + ACTIONS(7121), 1, anon_sym_RPAREN, - STATE(4022), 1, + STATE(4026), 1, aux_sym_type_parameter_list_repeat1, - [128576] = 4, - ACTIONS(487), 1, + [128554] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(6730), 1, + ACTIONS(6764), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7117), 1, + ACTIONS(7123), 1, sym___double_quote, - STATE(3954), 1, + STATE(4073), 1, aux_sym_raw_string_literal_repeat2, - [128589] = 4, - ACTIONS(487), 1, + [128567] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(6742), 1, + ACTIONS(6760), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7117), 1, + ACTIONS(7123), 1, sym___single_quote, - STATE(3955), 1, + STATE(4066), 1, aux_sym_raw_string_literal_repeat1, - [128602] = 4, + [128580] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, + ACTIONS(6732), 1, anon_sym_COMMA, - ACTIONS(7119), 1, + ACTIONS(7125), 1, anon_sym_RPAREN, - STATE(4023), 1, + STATE(4027), 1, aux_sym_parameter_list_repeat1, - [128615] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6742), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7105), 1, - sym___single_quote, - STATE(3955), 1, - aux_sym_raw_string_literal_repeat1, - [128628] = 4, + [128593] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5463), 1, + ACTIONS(5469), 1, anon_sym_RPAREN, - ACTIONS(7121), 1, + ACTIONS(7127), 1, anon_sym_COMMA, - STATE(3742), 1, + STATE(3731), 1, aux_sym_type_parameters_repeat1, - [128641] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7113), 1, - sym___single_quote, - ACTIONS(7123), 1, - aux_sym_raw_string_literal_token1, - STATE(4058), 1, - aux_sym_raw_string_literal_repeat1, - [128654] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7125), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [128663] = 2, - ACTIONS(3), 1, + [128606] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(6551), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACK, - [128672] = 4, + ACTIONS(6764), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7129), 1, + sym___double_quote, + STATE(4073), 1, + aux_sym_raw_string_literal_repeat2, + [128619] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, + ACTIONS(6736), 1, anon_sym_COMMA, - ACTIONS(7127), 1, + ACTIONS(7131), 1, anon_sym_RPAREN, - STATE(4066), 1, - aux_sym_parameter_list_repeat1, - [128685] = 4, + STATE(3924), 1, + aux_sym_type_parameter_list_repeat1, + [128632] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 1, + ACTIONS(6732), 1, anon_sym_COMMA, - ACTIONS(7129), 1, - anon_sym_RBRACK, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [128698] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7131), 1, - aux_sym_raw_string_literal_token1, ACTIONS(7133), 1, - sym___single_quote, - STATE(4014), 1, - aux_sym_raw_string_literal_repeat1, - [128711] = 4, - ACTIONS(487), 1, + anon_sym_RPAREN, + STATE(3923), 1, + aux_sym_parameter_list_repeat1, + [128645] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(7133), 1, - sym___double_quote, ACTIONS(7135), 1, aux_sym_raw_string_literal_token2, - STATE(4016), 1, + ACTIONS(7137), 1, + sym___double_quote, + STATE(4009), 1, aux_sym_raw_string_literal_repeat2, - [128724] = 4, - ACTIONS(3), 1, + [128658] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(5453), 1, - anon_sym_RPAREN, ACTIONS(7137), 1, - anon_sym_COMMA, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [128737] = 4, + sym___single_quote, + ACTIONS(7139), 1, + aux_sym_raw_string_literal_token1, + STATE(3983), 1, + aux_sym_raw_string_literal_repeat1, + [128671] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6760), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7129), 1, + sym___single_quote, + STATE(4066), 1, + aux_sym_raw_string_literal_repeat1, + [128684] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, + ACTIONS(7141), 1, anon_sym_COMMA, - ACTIONS(7139), 1, + ACTIONS(7143), 1, anon_sym_RPAREN, - STATE(4067), 1, - aux_sym_parameter_list_repeat1, - [128750] = 4, + STATE(3919), 1, + aux_sym_type_parameters_repeat1, + [128697] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, + ACTIONS(3736), 1, + anon_sym_SEMI, + ACTIONS(4993), 1, anon_sym_COMMA, - ACTIONS(7141), 1, - anon_sym_RPAREN, - STATE(4068), 1, - aux_sym_type_parameter_list_repeat1, - [128763] = 2, + STATE(3917), 1, + aux_sym_strictly_expression_list_repeat1, + [128710] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7143), 3, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - [128772] = 4, + ACTIONS(5477), 1, + anon_sym_RPAREN, + ACTIONS(7145), 1, + anon_sym_COMMA, + STATE(3731), 1, + aux_sym_type_parameters_repeat1, + [128723] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7145), 1, + ACTIONS(6732), 1, anon_sym_COMMA, ACTIONS(7147), 1, anon_sym_RPAREN, - STATE(4048), 1, - aux_sym_type_parameters_repeat1, - [128785] = 4, + STATE(4071), 1, + aux_sym_parameter_list_repeat1, + [128736] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, + ACTIONS(6736), 1, anon_sym_COMMA, ACTIONS(7149), 1, anon_sym_RPAREN, - STATE(3855), 1, + STATE(4072), 1, aux_sym_type_parameter_list_repeat1, - [128798] = 4, + [128749] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5445), 1, - anon_sym_RPAREN, - ACTIONS(7151), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - STATE(3742), 1, + ACTIONS(6483), 1, + anon_sym_RBRACK, + STATE(3910), 1, aux_sym_type_parameters_repeat1, - [128811] = 4, + [128762] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, + ACTIONS(6481), 1, anon_sym_COMMA, + ACTIONS(7151), 1, + anon_sym_RBRACK, + STATE(3731), 1, + aux_sym_type_parameters_repeat1, + [128775] = 4, + ACTIONS(493), 1, + sym_comment, ACTIONS(7153), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7155), 1, + sym___double_quote, + STATE(4022), 1, + aux_sym_raw_string_literal_repeat2, + [128788] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6438), 1, + anon_sym_COMMA, + ACTIONS(6440), 1, anon_sym_RPAREN, - STATE(4072), 1, - aux_sym_parameter_list_repeat1, - [128824] = 4, + STATE(3886), 1, + aux_sym_type_parameters_repeat1, + [128801] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7155), 1, - sym_identifier, + ACTIONS(6736), 1, + anon_sym_COMMA, ACTIONS(7157), 1, - anon_sym_LBRACE, - STATE(2933), 1, - sym__content_block, - [128837] = 4, + anon_sym_RPAREN, + STATE(3924), 1, + aux_sym_type_parameter_list_repeat1, + [128814] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, + ACTIONS(6732), 1, anon_sym_COMMA, ACTIONS(7159), 1, anon_sym_RPAREN, - STATE(4066), 1, + STATE(3923), 1, aux_sym_parameter_list_repeat1, - [128850] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7161), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7163), 1, - sym___single_quote, - STATE(4003), 1, - aux_sym_raw_string_literal_repeat1, - [128863] = 4, + [128827] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, + ACTIONS(6736), 1, anon_sym_COMMA, - ACTIONS(7165), 1, + ACTIONS(7161), 1, anon_sym_RPAREN, - STATE(4073), 1, + STATE(3924), 1, aux_sym_type_parameter_list_repeat1, - [128876] = 4, - ACTIONS(487), 1, + [128840] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(6732), 1, + anon_sym_COMMA, ACTIONS(7163), 1, - sym___double_quote, + anon_sym_RPAREN, + STATE(3923), 1, + aux_sym_parameter_list_repeat1, + [128853] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7165), 1, + anon_sym_COMMA, ACTIONS(7167), 1, - aux_sym_raw_string_literal_token2, - STATE(4011), 1, - aux_sym_raw_string_literal_repeat2, - [128889] = 4, - ACTIONS(487), 1, + anon_sym_RPAREN, + STATE(3879), 1, + aux_sym_type_parameters_repeat1, + [128866] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6730), 1, - aux_sym_raw_string_literal_token2, + ACTIONS(5455), 1, + anon_sym_RPAREN, ACTIONS(7169), 1, - sym___double_quote, - STATE(3954), 1, - aux_sym_raw_string_literal_repeat2, - [128902] = 4, + anon_sym_COMMA, + STATE(3731), 1, + aux_sym_type_parameters_repeat1, + [128879] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 1, + ACTIONS(6732), 1, anon_sym_COMMA, ACTIONS(7171), 1, - anon_sym_RBRACK, - STATE(4039), 1, - aux_sym_type_parameters_repeat1, - [128915] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + STATE(4090), 1, + aux_sym_parameter_list_repeat1, + [128892] = 4, + ACTIONS(493), 1, sym_comment, ACTIONS(7173), 1, - sym_identifier, - ACTIONS(7175), 1, - anon_sym_LBRACE, - STATE(2377), 1, - sym__content_block, - [128928] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6742), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7169), 1, + ACTIONS(7175), 1, sym___single_quote, - STATE(3955), 1, + STATE(4010), 1, aux_sym_raw_string_literal_repeat1, - [128941] = 4, + [128905] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, + ACTIONS(6481), 1, anon_sym_COMMA, ACTIONS(7177), 1, + anon_sym_RBRACK, + STATE(4050), 1, + aux_sym_type_parameters_repeat1, + [128918] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6736), 1, + anon_sym_COMMA, + ACTIONS(7179), 1, anon_sym_RPAREN, - STATE(3855), 1, + STATE(4086), 1, aux_sym_type_parameter_list_repeat1, - [128954] = 4, + [128931] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(7175), 1, + sym___double_quote, + ACTIONS(7181), 1, + aux_sym_raw_string_literal_token2, + STATE(4011), 1, + aux_sym_raw_string_literal_repeat2, + [128944] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, - anon_sym_SEMI, - ACTIONS(7179), 1, + ACTIONS(7183), 1, anon_sym_COMMA, - STATE(4060), 1, - aux_sym_strictly_expression_list_repeat1, - [128967] = 4, + ACTIONS(7185), 1, + anon_sym_RPAREN, + STATE(4078), 1, + aux_sym_type_parameters_repeat1, + [128957] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(7182), 1, + ACTIONS(7187), 1, anon_sym_RBRACK, - STATE(4078), 1, + STATE(4082), 1, aux_sym_type_parameters_repeat1, - [128980] = 4, + [128970] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(7189), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7192), 1, + sym___single_quote, + STATE(4066), 1, + aux_sym_raw_string_literal_repeat1, + [128983] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(7184), 1, - anon_sym_RPAREN, - STATE(4047), 1, - aux_sym_type_parameter_list_repeat1, - [128993] = 4, + ACTIONS(6846), 1, + sym_identifier, + ACTIONS(7194), 1, + anon_sym_LPAREN, + STATE(1554), 1, + sym_const_definition, + [128996] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(7155), 1, + sym___single_quote, + ACTIONS(7196), 1, + aux_sym_raw_string_literal_token1, + STATE(4024), 1, + aux_sym_raw_string_literal_repeat1, + [129009] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6764), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7198), 1, + sym___double_quote, + STATE(4073), 1, + aux_sym_raw_string_literal_repeat2, + [129022] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7186), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(7188), 1, - anon_sym_RPAREN, - STATE(4034), 1, + ACTIONS(7200), 1, + anon_sym_RBRACK, + STATE(3731), 1, aux_sym_type_parameters_repeat1, - [129006] = 4, + [129035] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, + ACTIONS(6732), 1, anon_sym_COMMA, - ACTIONS(7190), 1, + ACTIONS(7202), 1, anon_sym_RPAREN, - STATE(4051), 1, + STATE(3923), 1, aux_sym_parameter_list_repeat1, - [129019] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3305), 1, - anon_sym_COLON_EQ, - ACTIONS(7192), 1, - anon_sym_COMMA, - STATE(4065), 1, - aux_sym_strictly_expression_list_repeat1, - [129032] = 4, + [129048] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7195), 1, + ACTIONS(6736), 1, anon_sym_COMMA, - ACTIONS(7198), 1, + ACTIONS(7204), 1, anon_sym_RPAREN, - STATE(4066), 1, - aux_sym_parameter_list_repeat1, - [129045] = 4, - ACTIONS(3), 1, + STATE(3924), 1, + aux_sym_type_parameter_list_repeat1, + [129061] = 4, + ACTIONS(493), 1, sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(7200), 1, - anon_sym_RPAREN, - STATE(4066), 1, - aux_sym_parameter_list_repeat1, - [129058] = 4, + ACTIONS(7206), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7209), 1, + sym___double_quote, + STATE(4073), 1, + aux_sym_raw_string_literal_repeat2, + [129074] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, + ACTIONS(6736), 1, anon_sym_COMMA, - ACTIONS(7202), 1, + ACTIONS(7211), 1, anon_sym_RPAREN, - STATE(3855), 1, + STATE(4055), 1, aux_sym_type_parameter_list_repeat1, - [129071] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5431), 1, - anon_sym_RPAREN, - ACTIONS(7204), 1, - anon_sym_COMMA, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [129084] = 4, + [129087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 1, + ACTIONS(6736), 1, anon_sym_COMMA, - ACTIONS(7206), 1, - anon_sym_RBRACK, - STATE(4085), 1, - aux_sym_type_parameters_repeat1, - [129097] = 4, + ACTIONS(7213), 1, + anon_sym_RPAREN, + STATE(3924), 1, + aux_sym_type_parameter_list_repeat1, + [129100] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 1, + ACTIONS(4548), 1, anon_sym_COMMA, - ACTIONS(7208), 1, - anon_sym_RBRACK, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [129110] = 4, + ACTIONS(4550), 1, + anon_sym_COLON_EQ, + STATE(3900), 1, + aux_sym_identifier_list_repeat1, + [129113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, + ACTIONS(6732), 1, anon_sym_COMMA, - ACTIONS(7210), 1, + ACTIONS(7215), 1, anon_sym_RPAREN, - STATE(4066), 1, + STATE(4056), 1, aux_sym_parameter_list_repeat1, - [129123] = 4, + [129126] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(7212), 1, + ACTIONS(5453), 1, anon_sym_RPAREN, - STATE(3855), 1, - aux_sym_type_parameter_list_repeat1, - [129136] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, + ACTIONS(7217), 1, anon_sym_COMMA, - ACTIONS(7214), 1, - anon_sym_RBRACK, - STATE(3742), 1, + STATE(3731), 1, aux_sym_type_parameters_repeat1, - [129149] = 4, + [129139] = 4, + ACTIONS(493), 1, + sym_comment, + ACTIONS(6760), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7198), 1, + sym___single_quote, + STATE(4066), 1, + aux_sym_raw_string_literal_repeat1, + [129152] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5449), 1, - anon_sym_RPAREN, - ACTIONS(7216), 1, - anon_sym_COMMA, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [129162] = 4, + ACTIONS(6467), 1, + sym_identifier, + ACTIONS(6469), 1, + anon_sym_mut, + STATE(4363), 1, + sym_var_definition, + [129165] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, + ACTIONS(6732), 1, anon_sym_COMMA, - ACTIONS(7218), 1, + ACTIONS(7219), 1, anon_sym_RPAREN, - STATE(4083), 1, + STATE(4028), 1, aux_sym_parameter_list_repeat1, - [129175] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5289), 1, - anon_sym_COMMA, - ACTIONS(5682), 1, - anon_sym_LBRACE, - STATE(4086), 1, - aux_sym_expression_without_blocks_list_repeat1, - [129188] = 4, + [129178] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(7220), 1, + ACTIONS(7221), 1, anon_sym_RBRACK, - STATE(3742), 1, + STATE(3731), 1, aux_sym_type_parameters_repeat1, - [129201] = 2, + [129191] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7222), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [129210] = 4, + ACTIONS(7223), 1, + sym_identifier, + ACTIONS(7225), 1, + anon_sym_LBRACE, + STATE(1958), 1, + sym__content_block, + [129204] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, + ACTIONS(6481), 1, anon_sym_COMMA, - ACTIONS(7224), 1, - anon_sym_RPAREN, - STATE(4082), 1, - aux_sym_type_parameter_list_repeat1, - [129223] = 2, + ACTIONS(7227), 1, + anon_sym_RBRACK, + STATE(4023), 1, + aux_sym_type_parameters_repeat1, + [129217] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [129232] = 4, + ACTIONS(6481), 1, + anon_sym_COMMA, + ACTIONS(7229), 1, + anon_sym_RBRACK, + STATE(3982), 1, + aux_sym_type_parameters_repeat1, + [129230] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6738), 1, + ACTIONS(6736), 1, anon_sym_COMMA, - ACTIONS(7228), 1, + ACTIONS(7231), 1, anon_sym_RPAREN, - STATE(3855), 1, + STATE(3924), 1, aux_sym_type_parameter_list_repeat1, - [129245] = 4, + [129243] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 1, + ACTIONS(6992), 1, anon_sym_COMMA, - ACTIONS(7230), 1, - anon_sym_RPAREN, - STATE(4066), 1, - aux_sym_parameter_list_repeat1, - [129258] = 2, + ACTIONS(7233), 1, + anon_sym_in, + STATE(3901), 1, + aux_sym_var_definition_list_repeat1, + [129256] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5914), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, + ACTIONS(7235), 1, sym_identifier, - [129267] = 4, + ACTIONS(7237), 1, + anon_sym_LBRACE, + STATE(1747), 1, + sym__content_block, + [129269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(7232), 1, + ACTIONS(7239), 1, + anon_sym_QMARK, + ACTIONS(5081), 2, + anon_sym_SEMI, anon_sym_RBRACK, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, [129280] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4607), 1, - anon_sym_LBRACE, - ACTIONS(7234), 1, + ACTIONS(6732), 1, anon_sym_COMMA, - STATE(4086), 1, - aux_sym_expression_without_blocks_list_repeat1, - [129293] = 4, + ACTIONS(7241), 1, + anon_sym_RPAREN, + STATE(3923), 1, + aux_sym_parameter_list_repeat1, + [129293] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7237), 1, - sym_identifier, - ACTIONS(7239), 1, - anon_sym_LBRACE, - STATE(2142), 1, - sym__content_block, - [129306] = 4, + ACTIONS(2738), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_QMARK, + [129302] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 1, + ACTIONS(7243), 1, anon_sym_COMMA, - ACTIONS(7241), 1, - anon_sym_RBRACK, - STATE(4071), 1, + ACTIONS(7245), 1, + anon_sym_RPAREN, + STATE(4058), 1, aux_sym_type_parameters_repeat1, - [129319] = 4, + [129315] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4314), 1, + ACTIONS(6846), 1, sym_identifier, - ACTIONS(7243), 1, - anon_sym_static, - ACTIONS(7245), 1, - anon_sym_volatile, - [129332] = 2, + ACTIONS(7247), 1, + anon_sym_LPAREN, + STATE(1576), 1, + sym_const_definition, + [129328] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7247), 3, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(5467), 1, + anon_sym_RPAREN, + ACTIONS(7249), 1, + anon_sym_COMMA, + STATE(3731), 1, + aux_sym_type_parameters_repeat1, [129341] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3791), 1, - anon_sym_LBRACE, - ACTIONS(4977), 1, + ACTIONS(7251), 1, anon_sym_COMMA, - STATE(3932), 1, - aux_sym_strictly_expression_list_repeat1, + ACTIONS(7253), 1, + anon_sym_RPAREN, + STATE(3884), 1, + aux_sym_type_parameters_repeat1, [129354] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7249), 1, + ACTIONS(7255), 1, anon_sym_COMMA, - ACTIONS(7251), 1, + ACTIONS(7257), 1, anon_sym_RPAREN, - STATE(4075), 1, + STATE(4094), 1, aux_sym_type_parameters_repeat1, - [129367] = 2, + [129367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7034), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [129375] = 3, + ACTIONS(7259), 1, + anon_sym_LPAREN, + STATE(1758), 1, + sym_argument_list, + [129377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6798), 1, + ACTIONS(6538), 1, anon_sym_LBRACE, - STATE(2393), 1, - sym__struct_body, - [129385] = 3, + STATE(1582), 1, + sym__enum_body, + [129387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4817), 1, + ACTIONS(7261), 1, + sym_identifier, + STATE(3763), 1, + sym_label_reference, + [129397] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7263), 1, anon_sym_LBRACE, - STATE(880), 1, - sym_block, - [129395] = 3, + STATE(1841), 1, + sym_type_initializer_body, + [129407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4817), 1, + ACTIONS(4462), 1, anon_sym_LBRACE, - STATE(918), 1, + STATE(3761), 1, sym_block, - [129405] = 3, + [129417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4697), 1, - sym_identifier, - ACTIONS(7253), 1, - anon_sym_volatile, - [129415] = 2, + ACTIONS(4462), 1, + anon_sym_LBRACE, + STATE(1721), 1, + sym_block, + [129427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7255), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [129423] = 3, + ACTIONS(7265), 1, + anon_sym_LPAREN, + STATE(1684), 1, + sym_special_argument_list, + [129437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 1, + ACTIONS(7267), 1, anon_sym_LBRACE, - STATE(2141), 1, - sym_block, - [129433] = 3, + STATE(1258), 1, + sym__struct_body, + [129447] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7269), 1, + sym_identifier, + STATE(2421), 1, + sym_type_reference_expression, + [129457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7084), 1, + ACTIONS(4881), 1, anon_sym_LBRACE, - STATE(2824), 1, - sym_type_initializer_body, - [129443] = 3, + STATE(2537), 1, + sym_block, + [129467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 1, + ACTIONS(4885), 1, anon_sym_LBRACE, - STATE(1250), 1, + STATE(1956), 1, sym_block, - [129453] = 2, + [129477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7257), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [129461] = 3, + ACTIONS(7091), 1, + anon_sym_LBRACE, + STATE(2675), 1, + sym_type_initializer_body, + [129487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7259), 1, - anon_sym_COMMA, - ACTIONS(7261), 1, - anon_sym_RPAREN, - [129471] = 3, + ACTIONS(7271), 1, + anon_sym_LPAREN, + STATE(1048), 1, + sym_argument_list, + [129497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7263), 1, + ACTIONS(6852), 1, anon_sym_LBRACE, - STATE(2193), 1, + STATE(2353), 1, sym__struct_body, - [129481] = 3, + [129507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4935), 1, - anon_sym_RBRACE, - STATE(3776), 1, - sym___rcbr, - [129491] = 3, + ACTIONS(2884), 1, + anon_sym_LBRACE, + STATE(1841), 1, + sym_type_initializer_body, + [129517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 1, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(1869), 1, - sym_block, - [129501] = 3, + STATE(2197), 1, + sym__struct_body, + [129527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 1, - anon_sym_LBRACE, - STATE(1252), 1, - sym_block, - [129511] = 3, + ACTIONS(7275), 1, + sym_identifier, + STATE(1703), 1, + sym_type_reference_expression, + [129537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4847), 1, + ACTIONS(4885), 1, anon_sym_LBRACE, - STATE(2472), 1, + STATE(1887), 1, sym_block, - [129521] = 3, + [129547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 1, + ACTIONS(4885), 1, anon_sym_LBRACE, - STATE(1938), 1, + STATE(2057), 1, sym_block, - [129531] = 2, + [129557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7265), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [129539] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7239), 1, + ACTIONS(7225), 1, anon_sym_LBRACE, - STATE(2034), 1, + STATE(2060), 1, sym__content_block, - [129549] = 3, + [129567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6668), 1, - sym_identifier, - STATE(2347), 1, - sym_reference_expression, - [129559] = 3, + ACTIONS(7277), 1, + anon_sym_LBRACE, + STATE(950), 1, + sym_type_initializer_body, + [129577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7267), 1, + ACTIONS(7279), 1, sym_identifier, - STATE(2277), 1, + STATE(2280), 1, sym_type_reference_expression, - [129569] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4871), 1, - anon_sym_LBRACE, - STATE(2800), 1, - sym_block, - [129579] = 3, + [129587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 1, + ACTIONS(4803), 1, anon_sym_LBRACE, - STATE(1266), 1, + STATE(1050), 1, sym_block, - [129589] = 3, + [129597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, + ACTIONS(7281), 1, anon_sym_LBRACE, - STATE(1696), 1, - sym_block, - [129599] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6723), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(2353), 1, + sym__struct_body, [129607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4871), 1, + ACTIONS(6442), 1, anon_sym_LBRACE, - STATE(2825), 1, - sym_block, - [129617] = 3, + STATE(1437), 1, + sym__struct_body, + [129617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7269), 1, + ACTIONS(7283), 2, anon_sym_COMMA, - ACTIONS(7271), 1, - anon_sym_RPAREN, - [129627] = 3, + anon_sym_in, + [129625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2933), 1, + ACTIONS(2872), 1, anon_sym_LBRACE, - STATE(944), 1, + STATE(1841), 1, sym_type_initializer_body, - [129637] = 3, + [129635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7273), 1, - anon_sym_LPAREN, - STATE(2350), 1, - sym_special_argument_list, - [129647] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7275), 1, - sym_identifier, - STATE(2064), 1, - sym_type_reference_expression, - [129657] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7277), 1, - anon_sym_LPAREN, - STATE(1239), 1, - sym_argument_list, - [129667] = 3, + ACTIONS(4803), 1, + anon_sym_LBRACE, + STATE(1051), 1, + sym_block, + [129645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 1, + ACTIONS(4879), 1, anon_sym_LBRACE, - STATE(1235), 1, + STATE(1744), 1, sym_block, - [129677] = 2, + [129655] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7285), 1, + anon_sym_COMMA, + ACTIONS(7287), 1, + anon_sym_RPAREN, + [129665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7279), 2, + ACTIONS(7289), 1, anon_sym_COMMA, + ACTIONS(7291), 1, anon_sym_RPAREN, + [129675] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7293), 1, + anon_sym_LBRACE, + STATE(2353), 1, + sym__struct_body, [129685] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4877), 1, anon_sym_LBRACE, - STATE(2405), 1, + STATE(2788), 1, sym_block, [129695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6604), 1, - sym_identifier, - STATE(2041), 1, - sym_reference_expression, + ACTIONS(7263), 1, + anon_sym_LBRACE, + STATE(1841), 1, + sym_type_initializer_body, [129705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7281), 1, + ACTIONS(4881), 1, anon_sym_LBRACE, - STATE(2393), 1, - sym__struct_body, - [129715] = 2, + STATE(2579), 1, + sym_block, + [129715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7198), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [129723] = 3, + ACTIONS(4881), 1, + anon_sym_LBRACE, + STATE(2580), 1, + sym_block, + [129725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, + ACTIONS(4879), 1, anon_sym_LBRACE, - STATE(1737), 1, + STATE(1801), 1, sym_block, - [129733] = 2, + [129735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7283), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [129741] = 2, + ACTIONS(6640), 1, + sym_identifier, + STATE(1256), 1, + sym_reference_expression, + [129745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 2, - anon_sym_SEMI, + ACTIONS(7295), 1, anon_sym_LBRACE, - [129749] = 3, + STATE(2162), 1, + sym_block, + [129755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7285), 1, - anon_sym_LPAREN, - STATE(2054), 1, - sym_special_argument_list, - [129759] = 3, + ACTIONS(7297), 1, + anon_sym_LBRACE, + STATE(1755), 1, + sym_type_initializer_body, + [129765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, + ACTIONS(4879), 1, anon_sym_LBRACE, - STATE(1747), 1, + STATE(1845), 1, sym_block, - [129769] = 3, + [129775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7103), 1, + ACTIONS(2884), 1, anon_sym_LBRACE, - STATE(1227), 1, - sym__content_block, - [129779] = 3, + STATE(1031), 1, + sym_type_initializer_body, + [129785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, + ACTIONS(4859), 1, anon_sym_LBRACE, - STATE(2932), 1, + STATE(4423), 1, sym_block, - [129789] = 3, + [129795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7287), 1, + ACTIONS(7299), 1, anon_sym_COMMA, - ACTIONS(7289), 1, + ACTIONS(7301), 1, anon_sym_RPAREN, - [129799] = 3, + [129805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2987), 1, + ACTIONS(4462), 1, + anon_sym_LBRACE, + STATE(1720), 1, + sym_block, + [129815] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7303), 1, anon_sym_COMMA, - ACTIONS(7291), 1, + ACTIONS(7305), 1, anon_sym_RPAREN, - [129809] = 3, + [129825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 1, + ACTIONS(2884), 1, anon_sym_LBRACE, - STATE(1166), 1, - sym_block, - [129819] = 3, + STATE(1755), 1, + sym_type_initializer_body, + [129835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7293), 1, + ACTIONS(7307), 1, anon_sym_LBRACE, - STATE(2393), 1, + STATE(2353), 1, sym__struct_body, - [129829] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7295), 1, - anon_sym_LBRACE, - STATE(1346), 1, - sym_type_initializer_body, - [129839] = 3, + [129845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7297), 1, + ACTIONS(7309), 1, sym_identifier, - STATE(1419), 1, + STATE(1111), 1, sym_type_reference_expression, - [129849] = 3, + [129855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4871), 1, - anon_sym_LBRACE, - STATE(2801), 1, - sym_block, - [129859] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7299), 1, - anon_sym_LBRACE, - STATE(2161), 1, - sym_block, - [129869] = 3, + ACTIONS(7311), 1, + anon_sym_LPAREN, + STATE(2588), 1, + sym_argument_list, + [129865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 1, + ACTIONS(4873), 1, anon_sym_LBRACE, - STATE(1150), 1, + STATE(1389), 1, sym_block, - [129879] = 3, + [129875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7301), 1, + ACTIONS(6444), 1, anon_sym_LBRACE, - STATE(890), 1, - sym__struct_body, - [129889] = 3, + STATE(1507), 1, + sym__interface_body, + [129885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7303), 1, + ACTIONS(4859), 1, anon_sym_LBRACE, - STATE(2926), 1, - sym_type_initializer_body, - [129899] = 3, + STATE(2416), 1, + sym_block, + [129895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2913), 1, + ACTIONS(4877), 1, anon_sym_LBRACE, - STATE(1202), 1, - sym_type_initializer_body, - [129909] = 3, + STATE(2816), 1, + sym_block, + [129905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7305), 1, - sym_identifier, - STATE(1818), 1, - sym_type_reference_expression, - [129919] = 3, + ACTIONS(7313), 1, + anon_sym_LPAREN, + STATE(894), 1, + sym_argument_list, + [129915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2987), 1, - anon_sym_COMMA, - ACTIONS(7307), 1, - anon_sym_RPAREN, - [129929] = 2, + ACTIONS(4877), 1, + anon_sym_LBRACE, + STATE(2817), 1, + sym_block, + [129925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7309), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [129937] = 3, + ACTIONS(4881), 1, + anon_sym_LBRACE, + STATE(2488), 1, + sym_block, + [129935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7311), 1, + ACTIONS(4190), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(1202), 1, - sym_type_initializer_body, - [129947] = 2, + [129943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7313), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [129955] = 3, + ACTIONS(4228), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [129951] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7315), 1, anon_sym_LBRACE, - STATE(2132), 1, + STATE(2353), 1, sym__struct_body, - [129965] = 3, + [129961] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4462), 1, + anon_sym_LBRACE, + STATE(1751), 1, + sym_block, + [129971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2933), 1, + ACTIONS(2872), 1, anon_sym_LBRACE, - STATE(1202), 1, + STATE(1359), 1, sym_type_initializer_body, - [129975] = 3, + [129981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7317), 1, + ACTIONS(7297), 1, anon_sym_LBRACE, - STATE(944), 1, + STATE(1755), 1, sym_type_initializer_body, - [129985] = 3, + [129991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 1, + ACTIONS(6856), 1, anon_sym_LBRACE, - STATE(1215), 1, - sym_block, - [129995] = 3, + STATE(1037), 1, + sym__content_block, + [130001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4883), 1, + ACTIONS(7317), 1, + sym_identifier, + STATE(1903), 1, + sym_type_reference_expression, + [130011] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4891), 1, anon_sym_LPAREN, - STATE(2791), 1, + STATE(2829), 1, sym_argument_list, - [130005] = 3, + [130021] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7319), 1, anon_sym_LBRACE, - STATE(2729), 1, + STATE(2733), 1, sym__struct_body, - [130015] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6546), 2, - anon_sym_RPAREN, - sym_identifier, - [130023] = 3, + [130031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, + ACTIONS(2872), 1, anon_sym_LBRACE, - STATE(2299), 1, - sym_block, - [130033] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7093), 2, - anon_sym_COMMA, - anon_sym_RBRACK, + STATE(1755), 1, + sym_type_initializer_body, [130041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, + ACTIONS(4865), 1, anon_sym_LBRACE, - STATE(2423), 1, + STATE(1175), 1, sym_block, [130051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7321), 1, + ACTIONS(4695), 1, sym_identifier, - STATE(2760), 1, - sym_type_reference_expression, + ACTIONS(7321), 1, + anon_sym_volatile, [130061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7311), 1, + ACTIONS(4875), 1, anon_sym_LBRACE, - STATE(1202), 1, - sym_type_initializer_body, + STATE(869), 1, + sym_block, [130071] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7323), 1, - anon_sym_LPAREN, - STATE(1742), 1, - sym_argument_list, + sym_identifier, + STATE(2764), 1, + sym_type_reference_expression, [130081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, + ACTIONS(4462), 1, anon_sym_LBRACE, - STATE(1746), 1, + STATE(1631), 1, sym_block, - [130091] = 3, + [130091] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4871), 1, + ACTIONS(1774), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(2787), 1, - sym_block, - [130101] = 3, + [130099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 1, + ACTIONS(4877), 1, anon_sym_LBRACE, - STATE(2092), 1, + STATE(2835), 1, sym_block, - [130111] = 3, + [130109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2933), 1, + ACTIONS(4462), 1, anon_sym_LBRACE, - STATE(1994), 1, - sym_type_initializer_body, - [130121] = 3, + STATE(1737), 1, + sym_block, + [130119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7325), 1, + ACTIONS(7237), 1, anon_sym_LBRACE, - STATE(2562), 1, - sym__struct_body, - [130131] = 3, + STATE(1735), 1, + sym__content_block, + [130129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7327), 1, + ACTIONS(4803), 1, anon_sym_LBRACE, - STATE(1994), 1, - sym_type_initializer_body, - [130141] = 3, + STATE(1036), 1, + sym_block, + [130139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7175), 1, + ACTIONS(6998), 1, anon_sym_LBRACE, - STATE(2422), 1, + STATE(2538), 1, sym__content_block, - [130151] = 3, + [130149] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4803), 1, + anon_sym_LBRACE, + STATE(985), 1, + sym_block, + [130159] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2872), 1, + anon_sym_LBRACE, + STATE(1031), 1, + sym_type_initializer_body, + [130169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2913), 1, + ACTIONS(2884), 1, anon_sym_LBRACE, - STATE(1994), 1, + STATE(950), 1, sym_type_initializer_body, - [130161] = 3, + [130179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 1, + ACTIONS(4879), 1, anon_sym_LBRACE, - STATE(1184), 1, + STATE(1826), 1, sym_block, - [130171] = 3, + [130189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7048), 1, + ACTIONS(7051), 1, anon_sym_LBRACE, - STATE(2686), 1, + STATE(2687), 1, sym__content_block, - [130181] = 3, + [130199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, + ACTIONS(6538), 1, anon_sym_LBRACE, - STATE(2732), 1, - sym_block, - [130191] = 3, + STATE(1514), 1, + sym__enum_body, + [130209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4871), 1, + ACTIONS(4877), 1, anon_sym_LBRACE, - STATE(2684), 1, + STATE(2686), 1, sym_block, - [130201] = 3, + [130219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, + ACTIONS(4937), 1, + anon_sym_RBRACE, + STATE(3793), 1, + sym___rcbr, + [130229] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7325), 1, + anon_sym_LPAREN, + STATE(1824), 1, + sym_special_argument_list, + [130239] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4462), 1, anon_sym_LBRACE, - STATE(2922), 1, + STATE(3797), 1, sym_block, - [130211] = 3, + [130249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7157), 1, + ACTIONS(4462), 1, anon_sym_LBRACE, - STATE(2918), 1, - sym__content_block, - [130221] = 3, + STATE(3780), 1, + sym_block, + [130259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7329), 1, - anon_sym_LPAREN, - STATE(1182), 1, - sym_special_argument_list, - [130231] = 2, + ACTIONS(4877), 1, + anon_sym_LBRACE, + STATE(2617), 1, + sym_block, + [130269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6577), 2, - anon_sym_RPAREN, + ACTIONS(6497), 1, sym_identifier, - [130239] = 2, + STATE(1822), 1, + sym_reference_expression, + [130279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6582), 2, - anon_sym_RBRACE, - sym_identifier, - [130247] = 2, + ACTIONS(7237), 1, + anon_sym_LBRACE, + STATE(3782), 1, + sym__content_block, + [130289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7331), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [130255] = 3, + ACTIONS(7327), 1, + anon_sym_LBRACE, + STATE(1031), 1, + sym_type_initializer_body, + [130299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6708), 1, + ACTIONS(6716), 1, sym_identifier, - STATE(1179), 1, + STATE(1327), 1, sym_reference_expression, - [130265] = 3, + [130309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4871), 1, + ACTIONS(4881), 1, anon_sym_LBRACE, - STATE(2611), 1, + STATE(2536), 1, sym_block, - [130275] = 3, + [130319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6887), 1, - anon_sym_LBRACE, - STATE(3765), 1, - sym__content_block, - [130285] = 3, + ACTIONS(7329), 1, + anon_sym_LPAREN, + STATE(1334), 1, + sym_special_argument_list, + [130329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2913), 1, + ACTIONS(4803), 1, anon_sym_LBRACE, - STATE(944), 1, - sym_type_initializer_body, - [130295] = 3, + STATE(1018), 1, + sym_block, + [130339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7333), 1, + ACTIONS(7331), 1, anon_sym_LBRACE, - STATE(1878), 1, + STATE(3436), 1, sym__struct_body, - [130305] = 3, + [130349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7335), 1, + ACTIONS(7333), 1, anon_sym_LBRACE, - STATE(2393), 1, + STATE(1809), 1, sym__struct_body, - [130315] = 3, + [130359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 1, + ACTIONS(4875), 1, anon_sym_LBRACE, - STATE(2123), 1, + STATE(953), 1, sym_block, - [130325] = 3, + [130369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4476), 1, - anon_sym_LPAREN, - STATE(2128), 1, - sym_argument_list, - [130335] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4817), 1, + ACTIONS(7335), 1, anon_sym_LBRACE, - STATE(391), 1, - sym_block, - [130345] = 3, + STATE(2353), 1, + sym__struct_body, + [130379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4847), 1, + ACTIONS(4865), 1, anon_sym_LBRACE, - STATE(2579), 1, + STATE(1270), 1, sym_block, - [130355] = 3, + [130389] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7337), 1, sym_identifier, - STATE(2497), 1, + STATE(2082), 1, sym_type_reference_expression, - [130365] = 2, + [130399] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7339), 2, + ACTIONS(3662), 2, anon_sym_SEMI, anon_sym_RBRACK, - [130373] = 3, + [130407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, + ACTIONS(4885), 1, anon_sym_LBRACE, - STATE(3751), 1, + STATE(2064), 1, sym_block, - [130383] = 3, + [130417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, + ACTIONS(4462), 1, anon_sym_LBRACE, - STATE(2414), 1, + STATE(1691), 1, sym_block, - [130393] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - STATE(2333), 1, - sym_argument_list, - [130403] = 3, + [130427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7341), 1, - sym_identifier, - STATE(3407), 1, - sym_type_reference_expression, - [130413] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, + ACTIONS(7339), 1, anon_sym_LBRACE, - STATE(1994), 1, + STATE(2005), 1, sym_type_initializer_body, - [130423] = 3, + [130437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 1, + ACTIONS(7277), 1, anon_sym_LBRACE, - STATE(2135), 1, - sym_block, - [130433] = 3, + STATE(950), 1, + sym_type_initializer_body, + [130447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 1, + ACTIONS(6442), 1, anon_sym_LBRACE, - STATE(2136), 1, - sym_block, - [130443] = 3, + STATE(1518), 1, + sym__struct_body, + [130457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4817), 1, + ACTIONS(4877), 1, anon_sym_LBRACE, - STATE(900), 1, + STATE(2711), 1, sym_block, - [130453] = 3, + [130467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, - anon_sym_LBRACE, - STATE(3731), 1, - sym_block, - [130463] = 3, + ACTIONS(7341), 1, + sym_identifier, + STATE(1425), 1, + sym_type_reference_expression, + [130477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6887), 1, - anon_sym_LBRACE, - STATE(1757), 1, - sym__content_block, - [130473] = 3, + ACTIONS(7343), 1, + anon_sym_LPAREN, + STATE(2731), 1, + sym_special_argument_list, + [130487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, + ACTIONS(4803), 1, anon_sym_LBRACE, - STATE(2394), 1, + STATE(1069), 1, sym_block, - [130483] = 3, + [130497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7343), 1, - anon_sym_COMMA, - ACTIONS(7345), 1, - anon_sym_RPAREN, - [130493] = 3, + ACTIONS(4881), 1, + anon_sym_LBRACE, + STATE(2366), 1, + sym_block, + [130507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6863), 1, + ACTIONS(4859), 1, anon_sym_LBRACE, - STATE(902), 1, - sym__content_block, - [130503] = 3, + STATE(2406), 1, + sym_block, + [130517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, + ACTIONS(4462), 1, anon_sym_LBRACE, - STATE(2392), 1, + STATE(1749), 1, sym_block, - [130513] = 3, + [130527] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(7345), 1, + anon_sym_RBRACE, ACTIONS(7347), 1, - anon_sym_COMMA, - ACTIONS(7349), 1, - anon_sym_RPAREN, - [130523] = 3, + aux_sym_format_specifier_token1, + [130537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4847), 1, + ACTIONS(2872), 1, anon_sym_LBRACE, - STATE(2509), 1, - sym_block, - [130533] = 2, + STATE(2484), 1, + sym_type_initializer_body, + [130547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4591), 2, - anon_sym_COMMA, - anon_sym_in, - [130541] = 3, + ACTIONS(7349), 1, + sym_identifier, + STATE(4089), 1, + sym_reference_expression, + [130557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4847), 1, + ACTIONS(7351), 1, anon_sym_LBRACE, - STATE(2508), 1, - sym_block, - [130551] = 3, + STATE(1244), 1, + sym_type_initializer_body, + [130567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4871), 1, - anon_sym_LBRACE, - STATE(2772), 1, - sym_block, - [130561] = 3, + ACTIONS(7353), 1, + anon_sym_RBRACE, + ACTIONS(7355), 1, + aux_sym_format_specifier_token1, + [130577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, + ACTIONS(4873), 1, anon_sym_LBRACE, - STATE(1758), 1, + STATE(1398), 1, sym_block, - [130571] = 3, + [130587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7351), 1, + ACTIONS(7357), 1, anon_sym_LPAREN, - STATE(2682), 1, + STATE(2058), 1, sym_special_argument_list, - [130581] = 2, + [130597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7353), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [130589] = 3, + ACTIONS(7359), 1, + anon_sym_LBRACE, + STATE(1558), 1, + sym__content_block, + [130607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7355), 1, - anon_sym_COMMA, - ACTIONS(7357), 1, - anon_sym_RPAREN, - [130599] = 3, + ACTIONS(7361), 1, + anon_sym_LBRACE, + STATE(2484), 1, + sym_type_initializer_body, + [130617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7317), 1, + ACTIONS(7363), 1, anon_sym_LBRACE, - STATE(944), 1, - sym_type_initializer_body, - [130609] = 3, + STATE(1087), 1, + sym__struct_body, + [130627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7359), 1, - sym_identifier, - STATE(1104), 1, - sym_type_reference_expression, - [130619] = 3, + ACTIONS(4873), 1, + anon_sym_LBRACE, + STATE(1386), 1, + sym_block, + [130637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, - anon_sym_LPAREN, - STATE(2568), 1, - sym_argument_list, - [130629] = 3, + ACTIONS(6708), 1, + sym_identifier, + STATE(2724), 1, + sym_reference_expression, + [130647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, + ACTIONS(4420), 1, anon_sym_LBRACE, - STATE(2356), 1, + STATE(1561), 1, sym_block, - [130639] = 3, + [130657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, + ACTIONS(7365), 1, anon_sym_LBRACE, - STATE(1630), 1, - sym_block, - [130649] = 3, + STATE(2353), 1, + sym__struct_body, + [130667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2913), 1, + ACTIONS(6436), 1, anon_sym_LBRACE, - STATE(1717), 1, + STATE(2385), 1, sym_type_initializer_body, - [130659] = 3, + [130677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4875), 1, + ACTIONS(2884), 1, anon_sym_LBRACE, - STATE(2266), 1, - sym_block, - [130669] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6690), 1, - sym_identifier, - STATE(2670), 1, - sym_reference_expression, - [130679] = 3, + STATE(2484), 1, + sym_type_initializer_body, + [130687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4424), 1, + ACTIONS(4869), 1, anon_sym_LBRACE, - STATE(1531), 1, + STATE(2893), 1, sym_block, - [130689] = 3, + [130697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6960), 1, + ACTIONS(4420), 1, anon_sym_LBRACE, - STATE(2482), 1, - sym__content_block, - [130699] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6995), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, + STATE(1552), 1, + sym_block, [130707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4424), 1, + ACTIONS(4881), 1, anon_sym_LBRACE, - STATE(1529), 1, + STATE(2510), 1, sym_block, [130717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4847), 1, - anon_sym_LBRACE, - STATE(2483), 1, - sym_block, + ACTIONS(6724), 1, + anon_sym_RBRACE, + ACTIONS(6726), 1, + aux_sym_format_specifier_token1, [130727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7363), 1, - anon_sym_LBRACE, - STATE(1717), 1, - sym_type_initializer_body, - [130737] = 3, + ACTIONS(7367), 1, + anon_sym_COMMA, + ACTIONS(7369), 1, + anon_sym_RPAREN, + [130737] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7365), 1, - anon_sym_LBRACE, - STATE(1523), 1, - sym__content_block, - [130747] = 3, + ACTIONS(5321), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, + [130745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4847), 1, + ACTIONS(7371), 1, anon_sym_LBRACE, - STATE(2332), 1, - sym_block, - [130757] = 3, + STATE(2353), 1, + sym__struct_body, + [130755] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6442), 1, + ACTIONS(7373), 2, anon_sym_LBRACE, - STATE(1432), 1, - sym__struct_body, - [130767] = 3, + anon_sym_COMMA, + [130763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2913), 1, + ACTIONS(4803), 1, anon_sym_LBRACE, - STATE(2518), 1, - sym_type_initializer_body, - [130777] = 3, + STATE(1034), 1, + sym_block, + [130773] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2933), 1, + ACTIONS(5241), 2, anon_sym_LBRACE, - STATE(1717), 1, - sym_type_initializer_body, - [130787] = 3, + anon_sym_COMMA, + [130781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7367), 1, + ACTIONS(7375), 1, anon_sym_LBRACE, - STATE(2518), 1, - sym_type_initializer_body, - [130797] = 3, + STATE(2353), 1, + sym__struct_body, + [130791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7369), 1, - sym_identifier, - STATE(3943), 1, - sym_reference_expression, - [130807] = 3, + ACTIONS(7377), 1, + anon_sym_COMMA, + ACTIONS(7379), 1, + anon_sym_RPAREN, + [130801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7371), 1, - anon_sym_LBRACE, - STATE(1065), 1, - sym__struct_body, - [130817] = 3, + ACTIONS(7381), 1, + anon_sym_COMMA, + ACTIONS(7383), 1, + anon_sym_RPAREN, + [130811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2933), 1, + ACTIONS(7361), 1, anon_sym_LBRACE, - STATE(2518), 1, + STATE(2484), 1, sym_type_initializer_body, - [130827] = 3, + [130821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4847), 1, + ACTIONS(4873), 1, anon_sym_LBRACE, - STATE(2505), 1, + STATE(1366), 1, sym_block, - [130837] = 3, + [130831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, + ACTIONS(7327), 1, anon_sym_LBRACE, - STATE(1689), 1, - sym_block, - [130847] = 3, + STATE(1031), 1, + sym_type_initializer_body, + [130841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 1, - anon_sym_LBRACE, - STATE(2025), 1, - sym_block, - [130857] = 3, + ACTIONS(6489), 1, + sym_identifier, + STATE(3928), 1, + sym_generic_parameter, + [130851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4875), 1, + ACTIONS(4865), 1, anon_sym_LBRACE, - STATE(2284), 1, + STATE(1232), 1, sym_block, - [130867] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3659), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [130875] = 3, + [130861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7367), 1, + ACTIONS(2884), 1, anon_sym_LBRACE, - STATE(2518), 1, + STATE(1244), 1, sym_type_initializer_body, - [130885] = 3, + [130871] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7363), 1, - anon_sym_LBRACE, - STATE(1717), 1, - sym_type_initializer_body, - [130895] = 3, + ACTIONS(7385), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [130879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6525), 1, + ACTIONS(6608), 1, sym_identifier, - STATE(3827), 1, - sym_generic_parameter, - [130905] = 3, + STATE(1740), 1, + sym_reference_expression, + [130889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6428), 1, + ACTIONS(2884), 1, anon_sym_LBRACE, - STATE(1496), 1, - sym__interface_body, - [130915] = 3, + STATE(1359), 1, + sym_type_initializer_body, + [130899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6624), 1, - sym_identifier, - STATE(1305), 1, - sym_reference_expression, - [130925] = 3, + ACTIONS(7387), 1, + anon_sym_LBRACE, + STATE(2353), 1, + sym__struct_body, + [130909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6513), 1, + ACTIONS(6444), 1, anon_sym_LBRACE, - STATE(1534), 1, - sym__enum_body, - [130935] = 3, + STATE(1584), 1, + sym__interface_body, + [130919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4847), 1, + ACTIONS(4803), 1, anon_sym_LBRACE, - STATE(2541), 1, + STATE(1045), 1, sym_block, - [130945] = 3, + [130929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7373), 1, - anon_sym_LPAREN, - STATE(1318), 1, - sym_special_argument_list, - [130955] = 3, + ACTIONS(6442), 1, + anon_sym_LBRACE, + STATE(1581), 1, + sym__struct_body, + [130939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4841), 1, + ACTIONS(4879), 1, anon_sym_LBRACE, - STATE(1070), 1, + STATE(1864), 1, sym_block, - [130965] = 3, + [130949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7375), 1, + ACTIONS(7389), 1, anon_sym_LBRACE, - STATE(2393), 1, + STATE(1953), 1, sym__struct_body, - [130975] = 3, + [130959] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7377), 1, - sym_identifier, - STATE(1558), 1, - sym_label_reference, - [130985] = 3, + ACTIONS(4584), 2, + anon_sym_COMMA, + anon_sym_in, + [130967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(4885), 1, anon_sym_LBRACE, - STATE(2164), 1, + STATE(2140), 1, sym_block, - [130995] = 3, + [130977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7379), 1, + ACTIONS(4881), 1, anon_sym_LBRACE, - STATE(2393), 1, - sym__struct_body, - [131005] = 3, + STATE(2524), 1, + sym_block, + [130987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7381), 1, - anon_sym_LPAREN, - STATE(2548), 1, - sym_special_argument_list, - [131015] = 3, + ACTIONS(4885), 1, + anon_sym_LBRACE, + STATE(2139), 1, + sym_block, + [130997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6442), 1, - anon_sym_LBRACE, - STATE(1579), 1, - sym__struct_body, - [131025] = 3, + ACTIONS(6489), 1, + sym_identifier, + STATE(3842), 1, + sym_generic_parameter, + [131007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7383), 1, - anon_sym_COMMA, - ACTIONS(7385), 1, - anon_sym_RPAREN, - [131035] = 3, + ACTIONS(4859), 1, + anon_sym_LBRACE, + STATE(2363), 1, + sym_block, + [131017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6638), 1, + ACTIONS(6688), 1, sym_identifier, - STATE(2566), 1, + STATE(1952), 1, sym_reference_expression, - [131045] = 3, + [131027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6592), 1, - sym_identifier, - STATE(1824), 1, - sym_reference_expression, - [131055] = 3, + ACTIONS(7391), 1, + anon_sym_LPAREN, + STATE(2532), 1, + sym_special_argument_list, + [131037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6428), 1, + ACTIONS(7393), 1, + anon_sym_LPAREN, + STATE(1957), 1, + sym_special_argument_list, + [131047] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4873), 1, anon_sym_LBRACE, - STATE(1504), 1, - sym__interface_body, - [131065] = 3, + STATE(1338), 1, + sym_block, + [131057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4424), 1, + ACTIONS(4871), 1, anon_sym_LBRACE, - STATE(1554), 1, + STATE(2258), 1, sym_block, - [131075] = 3, + [131067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7387), 1, + ACTIONS(7395), 1, + anon_sym_LPAREN, + STATE(1871), 1, + sym_argument_list, + [131077] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7397), 1, sym_identifier, - STATE(3698), 1, + STATE(1500), 1, sym_label_reference, - [131085] = 3, + [131087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6432), 1, - anon_sym_LBRACE, - STATE(2320), 1, - sym_type_initializer_body, - [131095] = 3, + ACTIONS(4619), 1, + anon_sym_COLON, + ACTIONS(7399), 1, + anon_sym_mut, + [131097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, - anon_sym_LBRACE, - STATE(1353), 1, - sym_block, - [131105] = 3, + ACTIONS(6586), 1, + sym_identifier, + STATE(2571), 1, + sym_reference_expression, + [131107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2933), 1, + ACTIONS(7401), 1, anon_sym_LBRACE, - STATE(1346), 1, - sym_type_initializer_body, - [131115] = 3, + STATE(1639), 1, + sym__struct_body, + [131117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 1, + ACTIONS(7403), 1, anon_sym_LBRACE, - STATE(1798), 1, - sym_block, - [131125] = 3, + STATE(1359), 1, + sym_type_initializer_body, + [131127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4875), 1, - anon_sym_LBRACE, - STATE(2265), 1, - sym_block, - [131135] = 3, + ACTIONS(7405), 1, + sym_identifier, + STATE(1203), 1, + sym_type_reference_expression, + [131137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7389), 1, + ACTIONS(7351), 1, anon_sym_LBRACE, - STATE(1663), 1, - sym__struct_body, - [131145] = 3, + STATE(1244), 1, + sym_type_initializer_body, + [131147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7295), 1, + ACTIONS(4875), 1, anon_sym_LBRACE, - STATE(1346), 1, - sym_type_initializer_body, - [131155] = 3, + STATE(957), 1, + sym_block, + [131157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2913), 1, + ACTIONS(7407), 1, anon_sym_LBRACE, - STATE(1346), 1, + STATE(1981), 1, sym_type_initializer_body, - [131165] = 3, + [131167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, - anon_sym_LBRACE, - STATE(1284), 1, - sym_block, - [131175] = 3, + ACTIONS(7409), 1, + sym_identifier, + STATE(2585), 1, + sym_type_reference_expression, + [131177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, - anon_sym_LBRACE, - STATE(1369), 1, - sym_block, - [131185] = 3, + ACTIONS(4502), 1, + anon_sym_LPAREN, + STATE(2132), 1, + sym_argument_list, + [131187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4843), 1, + ACTIONS(4462), 1, anon_sym_LBRACE, - STATE(1951), 1, + STATE(1700), 1, sym_block, - [131195] = 3, + [131197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7391), 1, - anon_sym_LPAREN, - STATE(1871), 1, - sym_special_argument_list, + ACTIONS(6518), 2, + anon_sym_RPAREN, + sym_identifier, [131205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6513), 1, + ACTIONS(4875), 1, anon_sym_LBRACE, - STATE(1505), 1, - sym__enum_body, + STATE(956), 1, + sym_block, [131215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7393), 1, - sym_identifier, - STATE(1932), 1, - sym_type_reference_expression, + ACTIONS(4879), 1, + anon_sym_LBRACE, + STATE(1875), 1, + sym_block, [131225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, - anon_sym_LPAREN, - STATE(2262), 1, - sym_argument_list, - [131235] = 2, + ACTIONS(4420), 1, + anon_sym_LBRACE, + STATE(1512), 1, + sym_block, + [131235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7397), 2, + ACTIONS(7411), 1, anon_sym_COMMA, - anon_sym_in, - [131243] = 3, + ACTIONS(7413), 1, + anon_sym_RPAREN, + [131245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6442), 1, + ACTIONS(4873), 1, anon_sym_LBRACE, - STATE(1514), 1, - sym__struct_body, - [131253] = 3, + STATE(1287), 1, + sym_block, + [131255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6946), 1, + ACTIONS(2872), 1, anon_sym_LBRACE, - STATE(1371), 1, - sym__content_block, - [131263] = 3, + STATE(1244), 1, + sym_type_initializer_body, + [131265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4817), 1, + ACTIONS(4885), 1, anon_sym_LBRACE, - STATE(870), 1, + STATE(2127), 1, sym_block, - [131273] = 3, + [131275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 1, + ACTIONS(4873), 1, anon_sym_LBRACE, - STATE(1889), 1, + STATE(1379), 1, sym_block, - [131283] = 3, + [131285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4875), 1, + ACTIONS(7111), 1, anon_sym_LBRACE, - STATE(2259), 1, - sym_block, - [131293] = 3, + STATE(1850), 1, + sym__content_block, + [131295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7399), 1, - anon_sym_LBRACE, - STATE(2393), 1, - sym__struct_body, - [131303] = 3, + ACTIONS(6634), 1, + sym_identifier, + STATE(4400), 1, + sym_reference_expression, + [131305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7401), 1, - anon_sym_LPAREN, - STATE(879), 1, - sym_argument_list, + ACTIONS(6945), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, [131313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, + ACTIONS(4871), 1, anon_sym_LBRACE, - STATE(3696), 1, + STATE(2175), 1, sym_block, [131323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7403), 1, - sym_identifier, - STATE(2354), 1, - sym_type_reference_expression, - [131333] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4839), 1, + ACTIONS(4871), 1, anon_sym_LBRACE, - STATE(1382), 1, + STATE(2185), 1, sym_block, - [131343] = 3, + [131333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3598), 1, - anon_sym_LPAREN, - STATE(1387), 1, - sym_argument_list, - [131353] = 3, + ACTIONS(7079), 1, + anon_sym_LBRACE, + STATE(1381), 1, + sym__content_block, + [131343] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7405), 1, - sym_identifier, - STATE(947), 1, - sym_type_reference_expression, - [131363] = 3, + ACTIONS(7415), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [131351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7407), 1, + ACTIONS(4865), 1, anon_sym_LBRACE, - STATE(1817), 1, - sym_type_initializer_body, - [131373] = 3, + STATE(1157), 1, + sym_block, + [131361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7409), 1, + ACTIONS(7417), 1, anon_sym_LBRACE, - STATE(2393), 1, + STATE(2353), 1, sym__struct_body, - [131383] = 3, + [131371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6823), 1, - anon_sym_LBRACE, - STATE(2224), 1, - sym__content_block, - [131393] = 3, + ACTIONS(7419), 1, + sym_identifier, + STATE(2042), 1, + sym_type_reference_expression, + [131381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, - anon_sym_LBRACE, - STATE(2152), 1, - sym_block, - [131403] = 3, + ACTIONS(6561), 2, + anon_sym_RBRACE, + sym_identifier, + [131389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7411), 1, - anon_sym_COMMA, - ACTIONS(7413), 1, - anon_sym_RPAREN, - [131413] = 3, + ACTIONS(7421), 1, + anon_sym_LPAREN, + STATE(2283), 1, + sym_argument_list, + [131399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, + ACTIONS(7423), 1, anon_sym_LBRACE, - STATE(4696), 1, - sym_block, - [131423] = 3, + STATE(2353), 1, + sym__struct_body, + [131409] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4875), 1, anon_sym_LBRACE, - STATE(2221), 1, + STATE(878), 1, sym_block, - [131433] = 3, + [131419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7415), 1, + ACTIONS(4873), 1, anon_sym_LBRACE, - STATE(2393), 1, - sym__struct_body, - [131443] = 3, + STATE(1399), 1, + sym_block, + [131429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4843), 1, + ACTIONS(4871), 1, anon_sym_LBRACE, - STATE(2002), 1, + STATE(2264), 1, sym_block, - [131453] = 3, + [131439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4843), 1, + ACTIONS(2872), 1, anon_sym_LBRACE, - STATE(2004), 1, - sym_block, - [131463] = 3, + STATE(950), 1, + sym_type_initializer_body, + [131449] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4875), 1, - anon_sym_LBRACE, - STATE(2148), 1, - sym_block, - [131473] = 3, + ACTIONS(6902), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [131457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 1, + ACTIONS(4865), 1, anon_sym_LBRACE, - STATE(1823), 1, + STATE(1217), 1, sym_block, - [131483] = 3, + [131467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2913), 1, + ACTIONS(7063), 1, anon_sym_LBRACE, - STATE(2200), 1, - sym_type_initializer_body, - [131493] = 3, + STATE(1169), 1, + sym__content_block, + [131477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7417), 1, - sym_identifier, - STATE(1333), 1, - sym_type_reference_expression, - [131503] = 3, + ACTIONS(7425), 1, + anon_sym_COMMA, + ACTIONS(7427), 1, + anon_sym_RPAREN, + [131487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4613), 1, - anon_sym_COLON, - ACTIONS(7419), 1, - anon_sym_mut, - [131513] = 3, + ACTIONS(6830), 1, + anon_sym_LBRACE, + STATE(2230), 1, + sym__content_block, + [131497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2933), 1, + ACTIONS(4871), 1, anon_sym_LBRACE, - STATE(1817), 1, - sym_type_initializer_body, - [131523] = 3, + STATE(2173), 1, + sym_block, + [131507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4428), 1, - anon_sym_LPAREN, - STATE(2021), 1, - sym_argument_list, + ACTIONS(3127), 1, + anon_sym_COMMA, + ACTIONS(7429), 1, + anon_sym_RPAREN, + [131517] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7431), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [131525] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 2, + anon_sym_COMMA, + anon_sym_RPAREN, [131533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4843), 1, + ACTIONS(4871), 1, anon_sym_LBRACE, - STATE(2048), 1, + STATE(2153), 1, sym_block, - [131543] = 3, + [131543] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7421), 1, - anon_sym_LBRACE, - STATE(2200), 1, - sym_type_initializer_body, - [131553] = 3, + ACTIONS(6885), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [131551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7423), 1, - anon_sym_LBRACE, - STATE(1180), 1, - sym__struct_body, - [131563] = 3, + ACTIONS(6634), 1, + sym_identifier, + STATE(2349), 1, + sym_reference_expression, + [131561] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, - anon_sym_LBRACE, - STATE(1349), 1, - sym_block, - [131573] = 3, + ACTIONS(6545), 2, + anon_sym_RPAREN, + sym_identifier, + [131569] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7425), 1, + ACTIONS(6880), 2, anon_sym_COMMA, - ACTIONS(7427), 1, anon_sym_RPAREN, - [131583] = 3, + [131577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6849), 1, + ACTIONS(6913), 1, anon_sym_LBRACE, - STATE(1937), 1, + STATE(905), 1, sym__content_block, - [131593] = 3, + [131587] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4843), 1, - anon_sym_LBRACE, - STATE(2084), 1, - sym_block, - [131603] = 3, + ACTIONS(7435), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [131595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4843), 1, + ACTIONS(6949), 1, anon_sym_LBRACE, - STATE(1850), 1, - sym_block, + STATE(2933), 1, + sym__content_block, + [131605] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7437), 2, + anon_sym_COMMA, + anon_sym_RPAREN, [131613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2913), 1, + ACTIONS(4839), 1, anon_sym_LBRACE, - STATE(1929), 1, - sym_type_initializer_body, + STATE(2074), 1, + sym_block, [131623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7429), 1, + ACTIONS(4875), 1, anon_sym_LBRACE, - STATE(1929), 1, - sym_type_initializer_body, + STATE(895), 1, + sym_block, [131633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7431), 1, + ACTIONS(2872), 1, anon_sym_LBRACE, - STATE(1367), 1, - sym__struct_body, + STATE(2182), 1, + sym_type_initializer_body, [131643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - anon_sym_LBRACE, - STATE(2131), 1, - sym__struct_body, + ACTIONS(7439), 1, + anon_sym_LPAREN, + STATE(2356), 1, + sym_special_argument_list, [131653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6428), 1, + ACTIONS(4869), 1, anon_sym_LBRACE, - STATE(1524), 1, - sym__interface_body, + STATE(2888), 1, + sym_block, [131663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2933), 1, - anon_sym_LBRACE, - STATE(1929), 1, - sym_type_initializer_body, + ACTIONS(7441), 1, + anon_sym_LPAREN, + STATE(866), 1, + sym_special_argument_list, [131673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6513), 1, + ACTIONS(7443), 1, anon_sym_LBRACE, - STATE(1501), 1, - sym__enum_body, - [131683] = 3, + STATE(2353), 1, + sym__struct_body, + [131683] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4843), 1, - anon_sym_LBRACE, - STATE(1930), 1, - sym_block, - [131693] = 3, + ACTIONS(7445), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [131691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, + ACTIONS(7447), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + [131699] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6444), 1, anon_sym_LBRACE, - STATE(1319), 1, - sym_block, - [131703] = 3, + STATE(1522), 1, + sym__interface_body, + [131709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6442), 1, + ACTIONS(6538), 1, anon_sym_LBRACE, - STATE(1497), 1, - sym__struct_body, - [131713] = 3, + STATE(1521), 1, + sym__enum_body, + [131719] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(6442), 1, anon_sym_LBRACE, - STATE(1574), 1, + STATE(1516), 1, sym__struct_body, - [131723] = 3, + [131729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7429), 1, + ACTIONS(7449), 1, anon_sym_LBRACE, - STATE(1929), 1, + STATE(2182), 1, sym_type_initializer_body, - [131733] = 3, + [131739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6513), 1, + ACTIONS(4859), 1, anon_sym_LBRACE, - STATE(1576), 1, - sym__enum_body, - [131743] = 3, + STATE(2364), 1, + sym_block, + [131749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7407), 1, + ACTIONS(4869), 1, anon_sym_LBRACE, - STATE(1817), 1, - sym_type_initializer_body, - [131753] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6525), 1, - sym_identifier, - STATE(4037), 1, - sym_generic_parameter, - [131763] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7435), 1, - anon_sym_RBRACE, - ACTIONS(7437), 1, - aux_sym_format_specifier_token1, - [131773] = 3, + STATE(2793), 1, + sym_block, + [131759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2933), 1, + ACTIONS(7451), 1, anon_sym_LBRACE, - STATE(2200), 1, - sym_type_initializer_body, - [131783] = 3, + STATE(2081), 1, + sym__struct_body, + [131769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4875), 1, + ACTIONS(6444), 1, anon_sym_LBRACE, - STATE(2205), 1, - sym_block, - [131793] = 3, + STATE(1534), 1, + sym__interface_body, + [131779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2913), 1, + ACTIONS(6538), 1, anon_sym_LBRACE, - STATE(1817), 1, - sym_type_initializer_body, - [131803] = 3, + STATE(1547), 1, + sym__enum_body, + [131789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4817), 1, + ACTIONS(6442), 1, anon_sym_LBRACE, - STATE(916), 1, - sym_block, - [131813] = 3, + STATE(1548), 1, + sym__struct_body, + [131799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, + ACTIONS(2884), 1, anon_sym_LBRACE, - STATE(1324), 1, - sym_block, - [131823] = 3, + STATE(2182), 1, + sym_type_initializer_body, + [131809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6428), 1, + ACTIONS(2872), 1, anon_sym_LBRACE, - STATE(1578), 1, - sym__interface_body, - [131833] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7439), 1, - anon_sym_LPAREN, - STATE(1992), 1, - sym_special_argument_list, - [131843] = 2, + STATE(2005), 1, + sym_type_initializer_body, + [131819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7441), 2, + ACTIONS(3127), 1, anon_sym_COMMA, + ACTIONS(7453), 1, anon_sym_RPAREN, - [131851] = 3, + [131829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 1, + ACTIONS(4871), 1, anon_sym_LBRACE, - STATE(1727), 1, + STATE(2178), 1, sym_block, - [131861] = 3, + [131839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, + ACTIONS(6664), 1, sym_identifier, - STATE(2091), 1, + STATE(2045), 1, sym_reference_expression, - [131871] = 3, + [131849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7443), 1, + ACTIONS(7455), 1, + anon_sym_COMMA, + ACTIONS(7457), 1, + anon_sym_RPAREN, + [131859] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7339), 1, anon_sym_LBRACE, - STATE(2393), 1, - sym__struct_body, - [131881] = 3, + STATE(2005), 1, + sym_type_initializer_body, + [131869] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7445), 1, - anon_sym_LPAREN, - STATE(913), 1, - sym_special_argument_list, - [131891] = 3, + ACTIONS(7014), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [131877] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4839), 1, anon_sym_LBRACE, - STATE(1366), 1, + STATE(1961), 1, sym_block, - [131901] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6714), 1, - sym_identifier, - STATE(3670), 1, - sym_import_name, - [131911] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6531), 1, - sym_identifier, - STATE(3559), 1, - sym_reference_expression, - [131921] = 3, + [131887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7421), 1, + ACTIONS(7449), 1, anon_sym_LBRACE, - STATE(2200), 1, + STATE(2182), 1, sym_type_initializer_body, - [131931] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7447), 1, - anon_sym_COMMA, - ACTIONS(7449), 1, - anon_sym_RPAREN, - [131941] = 3, + [131897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7451), 1, + ACTIONS(4941), 1, anon_sym_RBRACE, - ACTIONS(7453), 1, - aux_sym_format_specifier_token1, - [131951] = 3, + STATE(3738), 1, + sym___rcbr, + [131907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 1, + ACTIONS(4865), 1, anon_sym_LBRACE, - STATE(1897), 1, + STATE(1208), 1, sym_block, - [131961] = 3, + [131917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6905), 1, + ACTIONS(7459), 1, anon_sym_LBRACE, - STATE(1882), 1, - sym__content_block, - [131971] = 3, + STATE(2552), 1, + sym__struct_body, + [131927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, + ACTIONS(4839), 1, anon_sym_LBRACE, - STATE(1711), 1, + STATE(2010), 1, sym_block, - [131981] = 3, + [131937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7455), 1, - anon_sym_LBRACE, - STATE(2393), 1, - sym__struct_body, - [131991] = 3, + ACTIONS(7461), 1, + anon_sym_LPAREN, + STATE(1016), 1, + sym_special_argument_list, + [131947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6483), 1, + ACTIONS(6618), 1, sym_identifier, - STATE(1078), 1, + STATE(1015), 1, sym_reference_expression, - [132001] = 3, + [131957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7457), 1, + ACTIONS(7463), 1, anon_sym_LPAREN, - STATE(1073), 1, - sym_special_argument_list, - [132011] = 3, + STATE(1205), 1, + sym_argument_list, + [131967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6714), 1, - sym_identifier, - STATE(3533), 1, - sym_import_name, - [132021] = 3, + ACTIONS(2884), 1, + anon_sym_LBRACE, + STATE(2005), 1, + sym_type_initializer_body, + [131977] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4817), 1, - anon_sym_LBRACE, - STATE(905), 1, - sym_block, - [132031] = 3, + ACTIONS(6826), 2, + anon_sym_COMMA, + anon_sym_in, + [131985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4817), 1, + ACTIONS(4871), 1, anon_sym_LBRACE, - STATE(904), 1, + STATE(2171), 1, sym_block, - [132041] = 3, + [131995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4841), 1, + ACTIONS(4839), 1, anon_sym_LBRACE, - STATE(1022), 1, + STATE(2009), 1, sym_block, - [132051] = 3, + [132005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4875), 1, + ACTIONS(7465), 1, + anon_sym_LPAREN, + STATE(1264), 1, + sym_special_argument_list, + [132015] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7467), 1, + anon_sym_LPAREN, + STATE(2226), 1, + sym_special_argument_list, + [132025] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7403), 1, anon_sym_LBRACE, - STATE(2244), 1, - sym_block, - [132061] = 3, + STATE(1359), 1, + sym_type_initializer_body, + [132035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7459), 1, + ACTIONS(7469), 1, anon_sym_LBRACE, - STATE(2393), 1, + STATE(933), 1, sym__struct_body, - [132071] = 3, + [132045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4843), 1, + ACTIONS(4885), 1, anon_sym_LBRACE, - STATE(2105), 1, + STATE(2096), 1, sym_block, - [132081] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7461), 1, - anon_sym_LPAREN, - STATE(1740), 1, - sym_special_argument_list, - [132091] = 3, + [132055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6668), 1, + ACTIONS(6614), 1, sym_identifier, - STATE(4098), 1, + STATE(2232), 1, sym_reference_expression, - [132101] = 2, + [132065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7463), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [132109] = 3, + ACTIONS(7295), 1, + anon_sym_LBRACE, + STATE(2159), 1, + sym_block, + [132075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7465), 1, - anon_sym_LPAREN, - STATE(2181), 1, - sym_special_argument_list, - [132119] = 3, + ACTIONS(7295), 1, + anon_sym_LBRACE, + STATE(2158), 1, + sym_block, + [132085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7467), 1, + ACTIONS(4859), 1, anon_sym_LBRACE, - STATE(2393), 1, - sym__struct_body, - [132129] = 2, + STATE(2411), 1, + sym_block, + [132095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6803), 2, - anon_sym_COMMA, - anon_sym_in, - [132137] = 3, + ACTIONS(3612), 1, + anon_sym_LPAREN, + STATE(1391), 1, + sym_argument_list, + [132105] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, - sym_identifier, - STATE(2194), 1, - sym_reference_expression, - [132147] = 3, + ACTIONS(7471), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + [132113] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6867), 1, + anon_sym_LBRACE, + STATE(2412), 1, + sym__content_block, + [132123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6531), 1, + ACTIONS(7473), 1, sym_identifier, - STATE(1708), 1, - sym_reference_expression, - [132157] = 3, + STATE(898), 1, + sym_type_reference_expression, + [132133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7471), 1, - anon_sym_RPAREN, - [132167] = 3, + ACTIONS(6787), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + [132141] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4931), 1, - anon_sym_RBRACE, - STATE(3852), 1, - sym___rcbr, - [132177] = 3, + ACTIONS(7475), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + [132149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4841), 1, + ACTIONS(7477), 1, anon_sym_LBRACE, - STATE(1006), 1, - sym_block, - [132187] = 3, + STATE(2353), 1, + sym__struct_body, + [132159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4841), 1, + ACTIONS(4875), 1, anon_sym_LBRACE, - STATE(1007), 1, + STATE(395), 1, sym_block, - [132197] = 3, + [132169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7473), 1, - anon_sym_LBRACE, - STATE(2393), 1, - sym__struct_body, - [132207] = 2, + ACTIONS(7479), 1, + sym_identifier, + STATE(1331), 1, + sym_type_reference_expression, + [132179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6790), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [132215] = 2, + ACTIONS(4424), 1, + anon_sym_LPAREN, + STATE(2003), 1, + sym_argument_list, + [132189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4045), 2, - anon_sym_SEMI, + ACTIONS(4839), 1, anon_sym_LBRACE, - [132223] = 3, + STATE(2000), 1, + sym_block, + [132199] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4879), 1, anon_sym_LBRACE, - STATE(1822), 1, + STATE(1909), 1, sym_block, - [132233] = 2, + [132209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4033), 2, - anon_sym_SEMI, + ACTIONS(4865), 1, anon_sym_LBRACE, - [132241] = 3, + STATE(1200), 1, + sym_block, + [132219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6596), 1, + ACTIONS(4865), 1, + anon_sym_LBRACE, + STATE(1199), 1, + sym_block, + [132229] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6624), 1, sym_identifier, - STATE(875), 1, + STATE(906), 1, sym_reference_expression, - [132251] = 3, + [132239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7475), 1, - anon_sym_COMMA, - ACTIONS(7477), 1, - anon_sym_RPAREN, - [132261] = 3, + ACTIONS(6969), 1, + anon_sym_LBRACE, + STATE(1993), 1, + sym__content_block, + [132249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7479), 1, - sym_identifier, - STATE(1728), 1, - sym_type_reference_expression, - [132271] = 3, + ACTIONS(4839), 1, + anon_sym_LBRACE, + STATE(1992), 1, + sym_block, + [132259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7481), 1, - anon_sym_LPAREN, - STATE(1013), 1, - sym_argument_list, - [132281] = 3, + ACTIONS(6501), 1, + sym_identifier, + STATE(3507), 1, + sym_import_name, + [132269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4841), 1, + ACTIONS(4839), 1, anon_sym_LBRACE, - STATE(1019), 1, + STATE(1837), 1, sym_block, - [132291] = 2, + [132279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5243), 2, + ACTIONS(2872), 1, anon_sym_LBRACE, - anon_sym_COMMA, - [132299] = 3, + STATE(1981), 1, + sym_type_initializer_body, + [132289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 1, + ACTIONS(7481), 1, anon_sym_LBRACE, - STATE(1847), 1, - sym_block, + STATE(2909), 1, + sym_type_initializer_body, + [132299] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7483), 1, + anon_sym_COMMA, + ACTIONS(7485), 1, + anon_sym_RPAREN, [132309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 1, + ACTIONS(4875), 1, anon_sym_LBRACE, - STATE(1853), 1, + STATE(892), 1, sym_block, [132319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6811), 1, + ACTIONS(4859), 1, anon_sym_LBRACE, - STATE(1036), 1, - sym__content_block, - [132329] = 2, + STATE(2345), 1, + sym_block, + [132329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7483), 2, + ACTIONS(7407), 1, anon_sym_LBRACE, - anon_sym_COMMA, - [132337] = 3, + STATE(1981), 1, + sym_type_initializer_body, + [132339] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4841), 1, - anon_sym_LBRACE, - STATE(1037), 1, - sym_block, + ACTIONS(7487), 2, + anon_sym_COMMA, + anon_sym_RBRACK, [132347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7485), 1, - sym_identifier, - STATE(1241), 1, - sym_type_reference_expression, + ACTIONS(4679), 1, + anon_sym_LPAREN, + STATE(2403), 1, + sym_argument_list, [132357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4841), 1, + ACTIONS(7489), 1, anon_sym_LBRACE, - STATE(986), 1, - sym_block, + STATE(1376), 1, + sym__struct_body, [132367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7487), 1, - anon_sym_LPAREN, - STATE(1856), 1, - sym_argument_list, - [132377] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2913), 1, + ACTIONS(2884), 1, anon_sym_LBRACE, - STATE(1048), 1, + STATE(1981), 1, sym_type_initializer_body, - [132387] = 2, + [132377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5295), 2, + ACTIONS(7491), 1, anon_sym_COMMA, - anon_sym_COLON_EQ, - [132395] = 3, + ACTIONS(7493), 1, + anon_sym_RPAREN, + [132387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7489), 1, + ACTIONS(4839), 1, anon_sym_LBRACE, - STATE(1048), 1, - sym_type_initializer_body, - [132405] = 3, + STATE(1988), 1, + sym_block, + [132397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7491), 1, - anon_sym_LBRACE, - STATE(3428), 1, - sym__struct_body, - [132415] = 3, + ACTIONS(7495), 1, + sym_identifier, + STATE(3386), 1, + sym_type_reference_expression, + [132407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2933), 1, + ACTIONS(4859), 1, anon_sym_LBRACE, - STATE(1048), 1, - sym_type_initializer_body, - [132425] = 3, + STATE(2297), 1, + sym_block, + [132417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4841), 1, - anon_sym_LBRACE, - STATE(1045), 1, - sym_block, - [132435] = 3, + ACTIONS(6608), 1, + sym_identifier, + STATE(3637), 1, + sym_reference_expression, + [132427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7040), 1, - anon_sym_RBRACE, - ACTIONS(7042), 1, - aux_sym_format_specifier_token1, + ACTIONS(6501), 1, + sym_identifier, + STATE(3675), 1, + sym_import_name, + [132437] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7497), 2, + anon_sym_COMMA, + anon_sym_RPAREN, [132445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7489), 1, + ACTIONS(4879), 1, anon_sym_LBRACE, - STATE(1048), 1, - sym_type_initializer_body, + STATE(1876), 1, + sym_block, [132455] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(885), 1, + ACTIONS(7499), 1, anon_sym_RBRACE, [132462] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7493), 1, - anon_sym_DOT, + ACTIONS(7501), 1, + anon_sym_LBRACE, [132469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6786), 1, - anon_sym_RBRACK, + ACTIONS(7503), 1, + anon_sym_COLON, [132476] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7495), 1, - anon_sym_RBRACE, + ACTIONS(7505), 1, + anon_sym_LBRACE, [132483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(929), 1, - anon_sym_RBRACE, + ACTIONS(7507), 1, + anon_sym_DOT, [132490] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7497), 1, + ACTIONS(7509), 1, anon_sym_RBRACE, [132497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5233), 1, + ACTIONS(7511), 1, anon_sym_LBRACE, [132504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7499), 1, + ACTIONS(7513), 1, anon_sym_LBRACE, [132511] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7501), 1, - anon_sym_DOT, + ACTIONS(5139), 1, + anon_sym_LBRACE, [132518] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7503), 1, - aux_sym__content_block_token1, - [132525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7505), 1, + ACTIONS(7515), 1, anon_sym_LBRACE, + [132525] = 2, + ACTIONS(493), 1, + sym_comment, + ACTIONS(7517), 1, + aux_sym__content_block_token1, [132532] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, - sym_identifier, + ACTIONS(7519), 1, + anon_sym_RBRACE, [132539] = 2, - ACTIONS(3), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(5245), 1, - anon_sym_LBRACE, + ACTIONS(7521), 1, + aux_sym__content_block_token1, [132546] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7507), 1, - anon_sym_LBRACE, + ACTIONS(7523), 1, + anon_sym_DOT, [132553] = 2, - ACTIONS(487), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(7509), 1, - aux_sym__content_block_token1, + ACTIONS(5111), 1, + anon_sym_LBRACE, [132560] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7511), 1, + ACTIONS(7525), 1, anon_sym_DOT, [132567] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7513), 1, - sym_int_literal, + ACTIONS(7527), 1, + anon_sym_LBRACE, [132574] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7515), 1, - anon_sym_RBRACE, + ACTIONS(5161), 1, + anon_sym_LBRACE, [132581] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, + ACTIONS(5171), 1, anon_sym_LBRACE, [132588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7517), 1, + ACTIONS(7529), 1, anon_sym_LBRACE, [132595] = 2, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(7519), 1, + ACTIONS(7531), 1, aux_sym__content_block_token1, [132602] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7040), 1, - anon_sym_RBRACE, + ACTIONS(7533), 1, + anon_sym_LBRACE, [132609] = 2, - ACTIONS(3), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(7521), 1, - anon_sym_RBRACK, + ACTIONS(7535), 1, + aux_sym__content_block_token1, [132616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7523), 1, - anon_sym_EQ, + ACTIONS(873), 1, + anon_sym_RBRACE, [132623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7525), 1, - anon_sym_COLON, + ACTIONS(7537), 1, + anon_sym_RBRACE, [132630] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7527), 1, - anon_sym_RBRACE, + ACTIONS(7539), 1, + sym_identifier, [132637] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7529), 1, - aux_sym_pseudo_compile_time_identifier_token1, + ACTIONS(7541), 1, + anon_sym_DOT, [132644] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7531), 1, - anon_sym_RBRACK, + ACTIONS(7543), 1, + anon_sym_EQ, [132651] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7533), 1, - anon_sym_RBRACE, + ACTIONS(7545), 1, + sym_identifier, [132658] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7535), 1, - anon_sym_RBRACE, + ACTIONS(7547), 1, + anon_sym_DOT, [132665] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7291), 1, - anon_sym_RPAREN, + ACTIONS(7549), 1, + anon_sym_RBRACE, [132672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7537), 1, - anon_sym_RBRACE, + ACTIONS(7551), 1, + anon_sym_PIPE, [132679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7451), 1, + ACTIONS(7353), 1, anon_sym_RBRACE, [132686] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7539), 1, - anon_sym_RBRACE, + ACTIONS(7553), 1, + anon_sym_COLON, [132693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(895), 1, - anon_sym_RBRACE, + ACTIONS(7555), 1, + sym_identifier, [132700] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4613), 1, - anon_sym_COLON, + ACTIONS(7557), 1, + anon_sym_LBRACE, [132707] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7541), 1, + ACTIONS(7559), 1, anon_sym_DOT, [132714] = 2, - ACTIONS(487), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(7543), 1, - aux_sym__content_block_token1, + ACTIONS(7561), 1, + anon_sym_RBRACE, [132721] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7545), 1, - anon_sym_LBRACE, + ACTIONS(7563), 1, + anon_sym_RBRACE, [132728] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5223), 1, + ACTIONS(5215), 1, anon_sym_LBRACE, [132735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7547), 1, + ACTIONS(7565), 1, anon_sym_LBRACE, [132742] = 2, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(7549), 1, + ACTIONS(7567), 1, aux_sym__content_block_token1, [132749] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5215), 1, + ACTIONS(7569), 1, anon_sym_LBRACE, [132756] = 2, - ACTIONS(3), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(7551), 1, - anon_sym_RBRACE, + ACTIONS(7571), 1, + aux_sym__content_block_token1, [132763] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7553), 1, - sym_int_literal, + ACTIONS(477), 1, + anon_sym_RBRACE, [132770] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(893), 1, - anon_sym_RBRACE, + ACTIONS(7573), 1, + anon_sym_LBRACE, [132777] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7555), 1, - anon_sym_RBRACE, + ACTIONS(7575), 1, + anon_sym_LBRACE, [132784] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7557), 1, - anon_sym_RBRACE, + ACTIONS(5197), 1, + anon_sym_LBRACE, [132791] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7559), 1, - anon_sym_RBRACE, + ACTIONS(7577), 1, + sym_int_literal, [132798] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7561), 1, - sym_identifier, + ACTIONS(6574), 1, + anon_sym_RBRACE, [132805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7563), 1, - sym_identifier, + ACTIONS(7579), 1, + anon_sym_DOT, [132812] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7565), 1, - sym_identifier, + ACTIONS(7581), 1, + anon_sym_EQ, [132819] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7567), 1, - anon_sym_DOT, + ACTIONS(7583), 1, + sym_identifier, [132826] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7569), 1, + ACTIONS(7585), 1, sym_identifier, [132833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7571), 1, - anon_sym_RBRACE, + ACTIONS(7453), 1, + anon_sym_RPAREN, [132840] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7573), 1, + ACTIONS(7587), 1, anon_sym_RBRACE, [132847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7575), 1, - anon_sym_RBRACE, + ACTIONS(7589), 1, + sym_identifier, [132854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7577), 1, + ACTIONS(7591), 1, anon_sym_DOT, [132861] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7579), 1, - anon_sym_RBRACK, + ACTIONS(7593), 1, + sym_identifier, [132868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(7595), 1, anon_sym_RBRACE, [132875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5211), 1, + ACTIONS(5229), 1, anon_sym_LBRACE, [132882] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7583), 1, + ACTIONS(7597), 1, anon_sym_LBRACE, [132889] = 2, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(7585), 1, + ACTIONS(7599), 1, aux_sym__content_block_token1, [132896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7435), 1, - anon_sym_RBRACE, + ACTIONS(7601), 1, + anon_sym_LBRACE, [132903] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7587), 1, - anon_sym_RBRACE, + ACTIONS(7603), 1, + sym_int_literal, [132910] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(913), 1, + ACTIONS(6724), 1, anon_sym_RBRACE, [132917] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7589), 1, - aux_sym_pseudo_compile_time_identifier_token1, + ACTIONS(7605), 1, + anon_sym_RBRACE, [132924] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7591), 1, - sym_identifier, + ACTIONS(7429), 1, + anon_sym_RPAREN, [132931] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7593), 1, - sym_identifier, + ACTIONS(7607), 1, + anon_sym_DOT, [132938] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7595), 1, - sym_identifier, + ACTIONS(7609), 1, + anon_sym_LBRACE, [132945] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7597), 1, + ACTIONS(7611), 1, anon_sym_RBRACE, [132952] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, + ACTIONS(7613), 1, anon_sym_RBRACE, [132959] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7601), 1, - sym_identifier, + ACTIONS(7615), 1, + anon_sym_RBRACE, [132966] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7603), 1, - anon_sym_RBRACE, + ACTIONS(7617), 1, + sym_int_literal, [132973] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7605), 1, + ACTIONS(7345), 1, anon_sym_RBRACE, [132980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7607), 1, - anon_sym_LBRACE, + ACTIONS(7619), 1, + anon_sym_RBRACK, [132987] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7609), 1, + ACTIONS(7621), 1, anon_sym_RBRACE, [132994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7611), 1, - anon_sym_RBRACK, + ACTIONS(7623), 1, + anon_sym_RBRACE, [133001] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7613), 1, + ACTIONS(7625), 1, anon_sym_DOT, [133008] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7615), 1, - anon_sym_RBRACE, + ACTIONS(7627), 1, + anon_sym_RBRACK, [133015] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7617), 1, + ACTIONS(7629), 1, anon_sym_RBRACE, [133022] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5209), 1, + ACTIONS(5235), 1, anon_sym_LBRACE, [133029] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7619), 1, + ACTIONS(7631), 1, anon_sym_LBRACE, [133036] = 2, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(7621), 1, + ACTIONS(7633), 1, aux_sym__content_block_token1, [133043] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5693), 1, - anon_sym_LBRACE, + ACTIONS(7635), 1, + anon_sym_DOT, [133050] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(891), 1, + ACTIONS(7637), 1, anon_sym_RBRACE, [133057] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7623), 1, - anon_sym_COLON_EQ, + ACTIONS(7639), 1, + anon_sym_RBRACK, [133064] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, - anon_sym_RBRACE, + ACTIONS(4697), 1, + sym_identifier, [133071] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7307), 1, - anon_sym_RPAREN, + ACTIONS(7641), 1, + anon_sym_RBRACE, [133078] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7625), 1, - anon_sym_RBRACE, + ACTIONS(4731), 1, + sym_identifier, [133085] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7627), 1, + ACTIONS(7643), 1, anon_sym_RBRACK, [133092] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 1, + ACTIONS(7645), 1, anon_sym_RBRACE, [133099] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7631), 1, - anon_sym_RBRACK, + ACTIONS(943), 1, + anon_sym_RBRACE, [133106] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7633), 1, + ACTIONS(7647), 1, anon_sym_RBRACE, [133113] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7635), 1, - anon_sym_COLON, + ACTIONS(7649), 1, + anon_sym_LPAREN, [133120] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7637), 1, + ACTIONS(7651), 1, anon_sym_RBRACE, [133127] = 2, - ACTIONS(487), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(7639), 1, - aux_sym__content_block_token1, + ACTIONS(7653), 1, + anon_sym_RBRACE, [133134] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7641), 1, - anon_sym_LBRACE, + ACTIONS(7655), 1, + anon_sym_RBRACE, [133141] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7643), 1, + ACTIONS(7657), 1, anon_sym_RBRACE, [133148] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7645), 1, + ACTIONS(7659), 1, anon_sym_DOT, [133155] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5163), 1, - anon_sym_LBRACE, + ACTIONS(891), 1, + anon_sym_RBRACE, [133162] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7647), 1, + ACTIONS(7661), 1, anon_sym_RBRACE, [133169] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5185), 1, + ACTIONS(5249), 1, anon_sym_LBRACE, [133176] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7649), 1, + ACTIONS(7663), 1, anon_sym_LBRACE, [133183] = 2, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(7651), 1, + ACTIONS(7665), 1, aux_sym__content_block_token1, [133190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 1, + ACTIONS(7667), 1, anon_sym_RBRACE, [133197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7653), 1, - anon_sym_RBRACE, + ACTIONS(7669), 1, + anon_sym_RBRACK, [133204] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7655), 1, - anon_sym_DOT, + ACTIONS(7671), 1, + anon_sym_RBRACE, [133211] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7657), 1, - anon_sym_RBRACE, + ACTIONS(7673), 1, + aux_sym_pseudo_compile_time_identifier_token1, [133218] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7659), 1, + ACTIONS(7675), 1, anon_sym_RBRACE, [133225] = 2, - ACTIONS(3), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(7661), 1, - anon_sym_EQ, + ACTIONS(7677), 1, + aux_sym_hash_statement_token1, [133232] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7663), 1, - sym_identifier, + ACTIONS(7679), 1, + anon_sym_RBRACE, [133239] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7665), 1, - aux_sym_pseudo_compile_time_identifier_token1, + ACTIONS(7681), 1, + anon_sym_COLON_EQ, [133246] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6537), 1, + ACTIONS(937), 1, anon_sym_RBRACE, [133253] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7667), 1, - sym_int_literal, + ACTIONS(931), 1, + anon_sym_RBRACE, [133260] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7669), 1, - anon_sym_LPAREN, + ACTIONS(5703), 1, + anon_sym_LBRACE, [133267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7671), 1, - anon_sym_LBRACE, + ACTIONS(7683), 1, + anon_sym_RBRACE, [133274] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7673), 1, - aux_sym_pseudo_compile_time_identifier_token1, + ACTIONS(7685), 1, + anon_sym_RBRACE, [133281] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7675), 1, + ACTIONS(7687), 1, anon_sym_RBRACE, [133288] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7677), 1, - anon_sym_RBRACE, + ACTIONS(7689), 1, + anon_sym_RBRACK, [133295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7679), 1, + ACTIONS(7691), 1, anon_sym_DOT, [133302] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7681), 1, + ACTIONS(7693), 1, anon_sym_RBRACE, [133309] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(861), 1, - anon_sym_RBRACE, + ACTIONS(7695), 1, + sym_identifier, [133316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5165), 1, + ACTIONS(5203), 1, anon_sym_LBRACE, [133323] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7683), 1, + ACTIONS(7697), 1, anon_sym_LBRACE, [133330] = 2, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(7685), 1, + ACTIONS(7699), 1, aux_sym__content_block_token1, [133337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7687), 1, - anon_sym_LBRACE, + ACTIONS(905), 1, + anon_sym_RBRACE, [133344] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7689), 1, - anon_sym_RBRACK, + ACTIONS(7701), 1, + anon_sym_RBRACE, [133351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7691), 1, + ACTIONS(7703), 1, anon_sym_RBRACE, [133358] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7693), 1, + ACTIONS(7705), 1, anon_sym_RBRACE, [133365] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, - anon_sym_LBRACE, + ACTIONS(7707), 1, + anon_sym_RBRACK, [133372] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7697), 1, - anon_sym_RBRACE, + ACTIONS(7709), 1, + anon_sym_RBRACK, [133379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7699), 1, + ACTIONS(7711), 1, anon_sym_RBRACE, [133386] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7701), 1, - anon_sym_SEMI, + ACTIONS(7713), 1, + aux_sym_pseudo_compile_time_identifier_token1, [133393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7703), 1, - anon_sym_DOT, + ACTIONS(7715), 1, + anon_sym_RBRACE, [133400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7705), 1, - anon_sym_RBRACK, + ACTIONS(7717), 1, + anon_sym_RBRACE, [133407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7707), 1, - anon_sym_RBRACE, + ACTIONS(7719), 1, + anon_sym_COLON, [133414] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7709), 1, - sym_identifier, + ACTIONS(915), 1, + anon_sym_RBRACE, [133421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7711), 1, + ACTIONS(7721), 1, anon_sym_RBRACE, [133428] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7713), 1, + ACTIONS(7723), 1, anon_sym_RBRACE, [133435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7715), 1, - anon_sym_in, + ACTIONS(7725), 1, + anon_sym_RBRACK, [133442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7717), 1, + ACTIONS(7727), 1, anon_sym_DOT, [133449] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7719), 1, - aux_sym_pseudo_compile_time_identifier_token1, + ACTIONS(7729), 1, + anon_sym_RBRACE, [133456] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7721), 1, + ACTIONS(7731), 1, anon_sym_RBRACE, [133463] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5157), 1, + ACTIONS(5251), 1, anon_sym_LBRACE, [133470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7723), 1, + ACTIONS(7733), 1, anon_sym_LBRACE, [133477] = 2, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(7725), 1, + ACTIONS(7735), 1, aux_sym__content_block_token1, [133484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7727), 1, + ACTIONS(881), 1, anon_sym_RBRACE, [133491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7729), 1, - sym_identifier, + ACTIONS(7737), 1, + anon_sym_RBRACE, [133498] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7731), 1, - anon_sym_RBRACK, + ACTIONS(7739), 1, + anon_sym_RBRACE, [133505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7733), 1, + ACTIONS(7741), 1, anon_sym_RBRACE, [133512] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(883), 1, + ACTIONS(7743), 1, anon_sym_RBRACE, [133519] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7735), 1, - anon_sym_DOT, + ACTIONS(4619), 1, + anon_sym_COLON, [133526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7737), 1, + ACTIONS(7745), 1, anon_sym_RBRACE, [133533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7739), 1, + ACTIONS(7747), 1, anon_sym_RBRACK, [133540] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7741), 1, + ACTIONS(7749), 1, anon_sym_RBRACE, [133547] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7743), 1, + ACTIONS(935), 1, anon_sym_RBRACE, [133554] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7745), 1, + ACTIONS(7751), 1, anon_sym_RBRACE, [133561] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7747), 1, + ACTIONS(7753), 1, anon_sym_DOT, [133568] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7749), 1, - anon_sym_RBRACK, + ACTIONS(7755), 1, + anon_sym_RBRACE, [133575] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5155), 1, + ACTIONS(5191), 1, anon_sym_LBRACE, [133582] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7751), 1, + ACTIONS(7757), 1, anon_sym_LBRACE, [133589] = 2, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(7753), 1, + ACTIONS(7759), 1, aux_sym__content_block_token1, [133596] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(933), 1, + ACTIONS(7761), 1, anon_sym_RBRACE, [133603] = 2, - ACTIONS(487), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(7755), 1, - aux_sym__content_block_token1, + ACTIONS(7763), 1, + anon_sym_RBRACE, [133610] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7757), 1, - anon_sym_RBRACE, + ACTIONS(4312), 1, + sym_identifier, [133617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7759), 1, + ACTIONS(7765), 1, anon_sym_DOT, [133624] = 2, - ACTIONS(487), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(7761), 1, + ACTIONS(7767), 1, aux_sym__content_block_token1, [133631] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, - anon_sym_RBRACK, + ACTIONS(925), 1, + anon_sym_RBRACE, [133638] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7765), 1, - anon_sym_RBRACE, + ACTIONS(6923), 1, + anon_sym_RBRACK, [133645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7767), 1, - anon_sym_LBRACE, + ACTIONS(7769), 1, + anon_sym_RBRACE, [133652] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7769), 1, - anon_sym_RBRACE, + ACTIONS(7771), 1, + anon_sym_RBRACK, [133659] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7771), 1, - sym_identifier, + ACTIONS(7773), 1, + aux_sym_pseudo_compile_time_identifier_token1, [133666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5147), 1, - anon_sym_LBRACE, + ACTIONS(7775), 1, + anon_sym_RBRACE, [133673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7773), 1, - sym_identifier, + ACTIONS(7777), 1, + aux_sym_pseudo_compile_time_identifier_token1, [133680] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7775), 1, - sym_identifier, + ACTIONS(7779), 1, + anon_sym_EQ, [133687] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7777), 1, + ACTIONS(7781), 1, anon_sym_RBRACE, [133694] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5750), 1, - anon_sym_COLON_EQ, + ACTIONS(7783), 1, + anon_sym_RBRACE, [133701] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7779), 1, - anon_sym_RBRACK, + ACTIONS(7785), 1, + anon_sym_RBRACE, [133708] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7781), 1, - anon_sym_RBRACE, + ACTIONS(7787), 1, + anon_sym_RBRACK, [133715] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7783), 1, + ACTIONS(903), 1, anon_sym_RBRACE, [133722] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(879), 1, + ACTIONS(7789), 1, anon_sym_RBRACE, [133729] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7785), 1, + ACTIONS(7791), 1, anon_sym_RBRACE, [133736] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7787), 1, + ACTIONS(7793), 1, anon_sym_LPAREN, [133743] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, + ACTIONS(7795), 1, anon_sym_RBRACE, [133750] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7791), 1, - anon_sym_RBRACK, + ACTIONS(7797), 1, + anon_sym_RBRACE, [133757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(469), 1, - anon_sym_RBRACE, + ACTIONS(7799), 1, + anon_sym_RBRACK, [133764] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7793), 1, - aux_sym_pseudo_compile_time_identifier_token1, + ACTIONS(7801), 1, + anon_sym_RBRACE, [133771] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7795), 1, + ACTIONS(887), 1, anon_sym_RBRACE, [133778] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7797), 1, - anon_sym_RBRACK, + ACTIONS(7803), 1, + anon_sym_RBRACE, [133785] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7799), 1, + ACTIONS(7805), 1, anon_sym_RBRACE, [133792] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7801), 1, + ACTIONS(7807), 1, anon_sym_RBRACE, [133799] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7803), 1, - anon_sym_DOT, + ACTIONS(7809), 1, + anon_sym_RBRACE, [133806] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7805), 1, - anon_sym_RBRACE, + ACTIONS(7811), 1, + sym_identifier, [133813] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7807), 1, - anon_sym_RBRACE, + ACTIONS(7813), 1, + sym_identifier, [133820] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(867), 1, - anon_sym_RBRACE, + ACTIONS(7815), 1, + sym_identifier, [133827] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7809), 1, - anon_sym_RBRACE, + ACTIONS(7817), 1, + anon_sym_RBRACK, [133834] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7811), 1, + ACTIONS(909), 1, anon_sym_RBRACE, [133841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7813), 1, - anon_sym_RBRACE, + ACTIONS(7819), 1, + sym_identifier, [133848] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7815), 1, - anon_sym_RBRACE, + ACTIONS(7821), 1, + sym_identifier, [133855] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, - anon_sym_RBRACK, + ACTIONS(7823), 1, + sym_identifier, [133862] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7819), 1, - sym_identifier, + ACTIONS(7825), 1, + anon_sym_RBRACE, [133869] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7821), 1, - anon_sym_RBRACE, + ACTIONS(7827), 1, + sym_identifier, [133876] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(887), 1, - anon_sym_RBRACE, + ACTIONS(7829), 1, + anon_sym_RBRACK, [133883] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7823), 1, + ACTIONS(7831), 1, anon_sym_RBRACE, [133890] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7825), 1, - anon_sym_DOT, + ACTIONS(7833), 1, + anon_sym_RBRACE, [133897] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7827), 1, + ACTIONS(7835), 1, anon_sym_RBRACE, [133904] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7829), 1, - anon_sym_RBRACK, + ACTIONS(7837), 1, + aux_sym_pseudo_compile_time_identifier_token1, [133911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7831), 1, + ACTIONS(7839), 1, anon_sym_RBRACE, [133918] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7833), 1, + ACTIONS(7841), 1, anon_sym_RBRACE, [133925] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7835), 1, + ACTIONS(939), 1, anon_sym_RBRACE, [133932] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7837), 1, + ACTIONS(7843), 1, anon_sym_RBRACE, [133939] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7839), 1, + ACTIONS(7845), 1, anon_sym_RBRACE, [133946] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - sym_identifier, + ACTIONS(7847), 1, + aux_sym_pseudo_compile_time_identifier_token1, [133953] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7841), 1, + ACTIONS(901), 1, anon_sym_RBRACE, [133960] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7843), 1, - anon_sym_RBRACK, + ACTIONS(7849), 1, + anon_sym_RBRACE, [133967] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7845), 1, - anon_sym_COLON, + ACTIONS(7851), 1, + anon_sym_RBRACE, [133974] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7847), 1, + ACTIONS(7853), 1, anon_sym_RBRACE, [133981] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7849), 1, - anon_sym_DOT, + ACTIONS(7855), 1, + anon_sym_RBRACE, [133988] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(907), 1, - anon_sym_RBRACE, + ACTIONS(7857), 1, + anon_sym_RBRACK, [133995] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7851), 1, + ACTIONS(7859), 1, anon_sym_RBRACE, [134002] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7853), 1, - anon_sym_RBRACE, + ACTIONS(7861), 1, + anon_sym_SEMI, [134009] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7855), 1, + ACTIONS(919), 1, anon_sym_RBRACE, [134016] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7857), 1, + ACTIONS(7863), 1, anon_sym_RBRACE, [134023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7859), 1, - anon_sym_RBRACE, + ACTIONS(7865), 1, + anon_sym_in, [134030] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7861), 1, + ACTIONS(7867), 1, anon_sym_RBRACE, [134037] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(863), 1, - anon_sym_RBRACE, + ACTIONS(7869), 1, + sym_identifier, [134044] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7863), 1, - anon_sym_RBRACE, + ACTIONS(7871), 1, + anon_sym_RBRACK, [134051] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7865), 1, + ACTIONS(7873), 1, anon_sym_RBRACE, [134058] = 2, - ACTIONS(3), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(7867), 1, - anon_sym_RBRACE, + ACTIONS(7875), 1, + aux_sym__content_block_token1, [134065] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7869), 1, - anon_sym_EQ, + ACTIONS(7877), 1, + anon_sym_RBRACK, [134072] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7871), 1, - anon_sym_RBRACE, + ACTIONS(7879), 1, + anon_sym_LBRACE, [134079] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7873), 1, - anon_sym_RBRACE, + ACTIONS(5163), 1, + anon_sym_LBRACE, [134086] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7875), 1, + ACTIONS(7881), 1, anon_sym_RBRACK, [134093] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7877), 1, - anon_sym_RBRACE, + ACTIONS(5815), 1, + anon_sym_COLON_EQ, [134100] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(871), 1, + ACTIONS(7883), 1, anon_sym_RBRACE, [134107] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7879), 1, - anon_sym_RBRACE, + ACTIONS(7885), 1, + aux_sym_pseudo_compile_time_identifier_token1, [134114] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7881), 1, + ACTIONS(7887), 1, anon_sym_RBRACE, [134121] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7883), 1, + ACTIONS(7889), 1, anon_sym_RBRACE, [134128] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7885), 1, + ACTIONS(889), 1, anon_sym_RBRACE, [134135] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7887), 1, + ACTIONS(7891), 1, anon_sym_RBRACE, [134142] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7889), 1, + ACTIONS(7893), 1, anon_sym_RBRACK, [134149] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7891), 1, - sym_identifier, + ACTIONS(7895), 1, + anon_sym_RBRACE, [134156] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7893), 1, - anon_sym_RBRACE, + ACTIONS(7897), 1, + anon_sym_DOT, [134163] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(931), 1, + ACTIONS(7899), 1, anon_sym_RBRACE, [134170] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7895), 1, - anon_sym_PIPE, + ACTIONS(7901), 1, + anon_sym_RBRACE, [134177] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7897), 1, - aux_sym_pseudo_compile_time_identifier_token1, + ACTIONS(883), 1, + anon_sym_RBRACE, [134184] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7899), 1, + ACTIONS(7903), 1, anon_sym_RBRACE, [134191] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7901), 1, - anon_sym_RBRACE, + ACTIONS(7905), 1, + sym_identifier, [134198] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, + ACTIONS(7907), 1, anon_sym_RBRACE, [134205] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7905), 1, - anon_sym_RBRACE, + ACTIONS(7909), 1, + anon_sym_DOT, [134212] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7907), 1, - anon_sym_LBRACE, + ACTIONS(7911), 1, + anon_sym_RBRACE, [134219] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym_RBRACK, + ACTIONS(7913), 1, + anon_sym_RBRACE, [134226] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7911), 1, + ACTIONS(7915), 1, anon_sym_RBRACK, [134233] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7913), 1, + ACTIONS(7917), 1, anon_sym_RBRACE, [134240] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7915), 1, - anon_sym_RBRACK, + ACTIONS(7919), 1, + anon_sym_DOT, [134247] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7917), 1, + ACTIONS(7921), 1, anon_sym_RBRACE, [134254] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7919), 1, - aux_sym_pseudo_compile_time_identifier_token1, + ACTIONS(7923), 1, + anon_sym_RBRACE, [134261] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7921), 1, + ACTIONS(875), 1, anon_sym_RBRACE, [134268] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(865), 1, + ACTIONS(921), 1, anon_sym_RBRACE, [134275] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7923), 1, - anon_sym_DOT, + ACTIONS(7925), 1, + anon_sym_RBRACE, [134282] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7925), 1, + ACTIONS(7927), 1, anon_sym_RBRACE, [134289] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4725), 1, - sym_identifier, + ACTIONS(7929), 1, + anon_sym_RBRACE, [134296] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7927), 1, - ts_builtin_sym_end, + ACTIONS(7931), 1, + anon_sym_EQ, [134303] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7929), 1, + ACTIONS(7933), 1, anon_sym_RBRACK, [134310] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7931), 1, - anon_sym_RBRACE, + ACTIONS(7935), 1, + aux_sym_pseudo_compile_time_identifier_token1, [134317] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(7937), 1, anon_sym_RBRACE, [134324] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7935), 1, + ACTIONS(7939), 1, anon_sym_RBRACE, [134331] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(919), 1, + ACTIONS(7941), 1, anon_sym_RBRACE, [134338] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(901), 1, - anon_sym_RBRACE, + ACTIONS(7943), 1, + aux_sym_pseudo_compile_time_identifier_token1, [134345] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7937), 1, - anon_sym_RBRACE, + ACTIONS(7945), 1, + anon_sym_RBRACK, [134352] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7939), 1, + ACTIONS(7947), 1, anon_sym_RBRACE, [134359] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7941), 1, + ACTIONS(869), 1, anon_sym_RBRACE, [134366] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(873), 1, + ACTIONS(7949), 1, anon_sym_RBRACE, [134373] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7943), 1, + ACTIONS(7951), 1, anon_sym_RBRACE, [134380] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7945), 1, + ACTIONS(7953), 1, anon_sym_RBRACE, [134387] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7947), 1, + ACTIONS(7955), 1, anon_sym_LPAREN, [134394] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7949), 1, - sym_identifier, + ACTIONS(7957), 1, + anon_sym_RBRACE, [134401] = 2, - ACTIONS(487), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(7951), 1, - aux_sym_hash_statement_token1, + ACTIONS(7959), 1, + anon_sym_RBRACK, [134408] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7953), 1, - anon_sym_RBRACK, + ACTIONS(7961), 1, + anon_sym_RBRACE, [134415] = 2, - ACTIONS(487), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(7955), 1, - aux_sym_hash_statement_token1, + ACTIONS(917), 1, + anon_sym_RBRACE, [134422] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7957), 1, + ACTIONS(7963), 1, anon_sym_LPAREN, [134429] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7959), 1, + ACTIONS(7965), 1, anon_sym_RBRACE, [134436] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7961), 1, + ACTIONS(7967), 1, anon_sym_RBRACE, [134443] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(875), 1, - anon_sym_RBRACE, + ACTIONS(7969), 1, + ts_builtin_sym_end, [134450] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7963), 1, + ACTIONS(7971), 1, anon_sym_LPAREN, [134457] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7965), 1, + ACTIONS(7973), 1, anon_sym_RBRACE, [134464] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7967), 1, + ACTIONS(7975), 1, anon_sym_RBRACE, [134471] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7969), 1, + ACTIONS(7977), 1, anon_sym_RBRACE, [134478] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7971), 1, + ACTIONS(7979), 1, anon_sym_LPAREN, [134485] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7973), 1, - aux_sym_pseudo_compile_time_identifier_token1, + ACTIONS(7981), 1, + anon_sym_RBRACK, [134492] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7975), 1, - aux_sym_pseudo_compile_time_identifier_token1, + ACTIONS(7983), 1, + anon_sym_RBRACE, [134499] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7977), 1, - anon_sym_RBRACK, + ACTIONS(7985), 1, + anon_sym_RBRACE, [134506] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7979), 1, + ACTIONS(7987), 1, anon_sym_LPAREN, [134513] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7981), 1, - aux_sym_pseudo_compile_time_identifier_token1, + ACTIONS(7989), 1, + anon_sym_RBRACK, [134520] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7983), 1, + ACTIONS(7991), 1, anon_sym_RBRACE, [134527] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7985), 1, - sym_identifier, + ACTIONS(7993), 1, + anon_sym_RBRACE, [134534] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7987), 1, + ACTIONS(7995), 1, anon_sym_LPAREN, [134541] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7989), 1, - anon_sym_EQ, + ACTIONS(7997), 1, + sym_identifier, [134548] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7991), 1, - anon_sym_LBRACE, + ACTIONS(927), 1, + anon_sym_RBRACE, [134555] = 2, - ACTIONS(3), 1, + ACTIONS(493), 1, sym_comment, - ACTIONS(7993), 1, - anon_sym_RBRACE, + ACTIONS(7999), 1, + aux_sym_hash_statement_token1, [134562] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7995), 1, + ACTIONS(8001), 1, anon_sym_LPAREN, [134569] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7997), 1, + ACTIONS(8003), 1, anon_sym_RBRACE, [134576] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7999), 1, - anon_sym_RBRACK, + ACTIONS(8005), 1, + anon_sym_RBRACE, [134583] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8001), 1, - sym_identifier, + ACTIONS(8007), 1, + aux_sym_pseudo_compile_time_identifier_token1, [134590] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8003), 1, + ACTIONS(8009), 1, anon_sym_LPAREN, [134597] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8005), 1, - sym_identifier, + ACTIONS(8011), 1, + aux_sym_pseudo_compile_time_identifier_token1, [134604] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8007), 1, - aux_sym_pseudo_compile_time_identifier_token1, + ACTIONS(8013), 1, + anon_sym_RBRACE, [134611] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 1, - anon_sym_RBRACE, + ACTIONS(8015), 1, + aux_sym_pseudo_compile_time_identifier_token1, [134618] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8009), 1, + ACTIONS(8017), 1, anon_sym_LPAREN, [134625] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6796), 1, - sym_identifier, + ACTIONS(899), 1, + anon_sym_RBRACE, [134632] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8011), 1, + ACTIONS(895), 1, anon_sym_RBRACE, [134639] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8013), 1, - anon_sym_LBRACE, + ACTIONS(8019), 1, + anon_sym_RBRACE, [134646] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8015), 1, + ACTIONS(8021), 1, anon_sym_LPAREN, [134653] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8017), 1, - anon_sym_LBRACE, + ACTIONS(8023), 1, + anon_sym_RBRACE, [134660] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8019), 1, + ACTIONS(8025), 1, anon_sym_RBRACE, [134667] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8021), 1, + ACTIONS(8027), 1, sym_identifier, [134674] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 1, + ACTIONS(8029), 1, anon_sym_RBRACE, [134681] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8023), 1, - anon_sym_RBRACE, + ACTIONS(8031), 1, + sym_identifier, [134688] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8025), 1, - anon_sym_RBRACE, + ACTIONS(8033), 1, + anon_sym_RBRACK, [134695] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8027), 1, - anon_sym_RBRACE, + ACTIONS(6850), 1, + sym_identifier, [134702] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8029), 1, + ACTIONS(8035), 1, anon_sym_RBRACE, [134709] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8031), 1, - anon_sym_RBRACK, + ACTIONS(8037), 1, + sym_identifier, [134716] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8033), 1, + ACTIONS(871), 1, anon_sym_RBRACE, [134723] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8035), 1, + ACTIONS(8039), 1, anon_sym_RBRACE, [134730] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(903), 1, + ACTIONS(8041), 1, anon_sym_RBRACE, [134737] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8037), 1, - anon_sym_RBRACE, + ACTIONS(8043), 1, + anon_sym_RBRACK, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1598)] = 0, - [SMALL_STATE(1599)] = 71, - [SMALL_STATE(1600)] = 142, - [SMALL_STATE(1601)] = 213, - [SMALL_STATE(1602)] = 284, - [SMALL_STATE(1603)] = 355, - [SMALL_STATE(1604)] = 424, - [SMALL_STATE(1605)] = 493, - [SMALL_STATE(1606)] = 616, - [SMALL_STATE(1607)] = 685, - [SMALL_STATE(1608)] = 754, - [SMALL_STATE(1609)] = 823, - [SMALL_STATE(1610)] = 892, - [SMALL_STATE(1611)] = 961, - [SMALL_STATE(1612)] = 1030, - [SMALL_STATE(1613)] = 1099, - [SMALL_STATE(1614)] = 1168, - [SMALL_STATE(1615)] = 1278, - [SMALL_STATE(1616)] = 1372, - [SMALL_STATE(1617)] = 1468, - [SMALL_STATE(1618)] = 1578, - [SMALL_STATE(1619)] = 1666, - [SMALL_STATE(1620)] = 1754, - [SMALL_STATE(1621)] = 1840, - [SMALL_STATE(1622)] = 1926, - [SMALL_STATE(1623)] = 2010, - [SMALL_STATE(1624)] = 2130, - [SMALL_STATE(1625)] = 2214, - [SMALL_STATE(1626)] = 2302, - [SMALL_STATE(1627)] = 2386, - [SMALL_STATE(1628)] = 2453, - [SMALL_STATE(1629)] = 2566, - [SMALL_STATE(1630)] = 2633, - [SMALL_STATE(1631)] = 2704, - [SMALL_STATE(1632)] = 2775, - [SMALL_STATE(1633)] = 2841, - [SMALL_STATE(1634)] = 2907, - [SMALL_STATE(1635)] = 2973, - [SMALL_STATE(1636)] = 3039, - [SMALL_STATE(1637)] = 3105, - [SMALL_STATE(1638)] = 3171, - [SMALL_STATE(1639)] = 3253, - [SMALL_STATE(1640)] = 3319, - [SMALL_STATE(1641)] = 3427, - [SMALL_STATE(1642)] = 3493, - [SMALL_STATE(1643)] = 3561, - [SMALL_STATE(1644)] = 3627, - [SMALL_STATE(1645)] = 3693, - [SMALL_STATE(1646)] = 3777, - [SMALL_STATE(1647)] = 3845, - [SMALL_STATE(1648)] = 3911, - [SMALL_STATE(1649)] = 3997, - [SMALL_STATE(1650)] = 4089, - [SMALL_STATE(1651)] = 4183, - [SMALL_STATE(1652)] = 4269, - [SMALL_STATE(1653)] = 4355, - [SMALL_STATE(1654)] = 4421, - [SMALL_STATE(1655)] = 4487, - [SMALL_STATE(1656)] = 4553, - [SMALL_STATE(1657)] = 4619, - [SMALL_STATE(1658)] = 4685, - [SMALL_STATE(1659)] = 4751, - [SMALL_STATE(1660)] = 4817, - [SMALL_STATE(1661)] = 4883, - [SMALL_STATE(1662)] = 4949, - [SMALL_STATE(1663)] = 5073, - [SMALL_STATE(1664)] = 5139, - [SMALL_STATE(1665)] = 5207, - [SMALL_STATE(1666)] = 5273, - [SMALL_STATE(1667)] = 5341, - [SMALL_STATE(1668)] = 5409, - [SMALL_STATE(1669)] = 5477, - [SMALL_STATE(1670)] = 5545, - [SMALL_STATE(1671)] = 5669, - [SMALL_STATE(1672)] = 5751, - [SMALL_STATE(1673)] = 5859, - [SMALL_STATE(1674)] = 5967, - [SMALL_STATE(1675)] = 6049, - [SMALL_STATE(1676)] = 6119, - [SMALL_STATE(1677)] = 6184, - [SMALL_STATE(1678)] = 6249, - [SMALL_STATE(1679)] = 6314, - [SMALL_STATE(1680)] = 6379, - [SMALL_STATE(1681)] = 6444, - [SMALL_STATE(1682)] = 6509, - [SMALL_STATE(1683)] = 6574, - [SMALL_STATE(1684)] = 6639, - [SMALL_STATE(1685)] = 6704, - [SMALL_STATE(1686)] = 6769, - [SMALL_STATE(1687)] = 6834, - [SMALL_STATE(1688)] = 6899, - [SMALL_STATE(1689)] = 6964, - [SMALL_STATE(1690)] = 7029, - [SMALL_STATE(1691)] = 7094, - [SMALL_STATE(1692)] = 7161, - [SMALL_STATE(1693)] = 7226, - [SMALL_STATE(1694)] = 7291, - [SMALL_STATE(1695)] = 7356, - [SMALL_STATE(1696)] = 7421, - [SMALL_STATE(1697)] = 7486, - [SMALL_STATE(1698)] = 7551, - [SMALL_STATE(1699)] = 7616, - [SMALL_STATE(1700)] = 7683, - [SMALL_STATE(1701)] = 7750, - [SMALL_STATE(1702)] = 7815, - [SMALL_STATE(1703)] = 7880, - [SMALL_STATE(1704)] = 7947, - [SMALL_STATE(1705)] = 8012, - [SMALL_STATE(1706)] = 8077, - [SMALL_STATE(1707)] = 8142, - [SMALL_STATE(1708)] = 8207, - [SMALL_STATE(1709)] = 8272, - [SMALL_STATE(1710)] = 8337, - [SMALL_STATE(1711)] = 8402, - [SMALL_STATE(1712)] = 8467, - [SMALL_STATE(1713)] = 8532, - [SMALL_STATE(1714)] = 8597, - [SMALL_STATE(1715)] = 8662, - [SMALL_STATE(1716)] = 8727, - [SMALL_STATE(1717)] = 8792, - [SMALL_STATE(1718)] = 8857, - [SMALL_STATE(1719)] = 8922, - [SMALL_STATE(1720)] = 8987, - [SMALL_STATE(1721)] = 9052, - [SMALL_STATE(1722)] = 9117, - [SMALL_STATE(1723)] = 9182, - [SMALL_STATE(1724)] = 9249, - [SMALL_STATE(1725)] = 9314, - [SMALL_STATE(1726)] = 9383, - [SMALL_STATE(1727)] = 9448, - [SMALL_STATE(1728)] = 9517, - [SMALL_STATE(1729)] = 9582, - [SMALL_STATE(1730)] = 9647, - [SMALL_STATE(1731)] = 9712, - [SMALL_STATE(1732)] = 9777, - [SMALL_STATE(1733)] = 9842, - [SMALL_STATE(1734)] = 9907, - [SMALL_STATE(1735)] = 9974, - [SMALL_STATE(1736)] = 10039, - [SMALL_STATE(1737)] = 10104, - [SMALL_STATE(1738)] = 10169, - [SMALL_STATE(1739)] = 10234, - [SMALL_STATE(1740)] = 10299, - [SMALL_STATE(1741)] = 10364, - [SMALL_STATE(1742)] = 10429, - [SMALL_STATE(1743)] = 10494, - [SMALL_STATE(1744)] = 10559, - [SMALL_STATE(1745)] = 10624, - [SMALL_STATE(1746)] = 10689, - [SMALL_STATE(1747)] = 10754, - [SMALL_STATE(1748)] = 10819, - [SMALL_STATE(1749)] = 10886, - [SMALL_STATE(1750)] = 10953, - [SMALL_STATE(1751)] = 11018, - [SMALL_STATE(1752)] = 11083, - [SMALL_STATE(1753)] = 11148, - [SMALL_STATE(1754)] = 11213, - [SMALL_STATE(1755)] = 11278, - [SMALL_STATE(1756)] = 11343, - [SMALL_STATE(1757)] = 11408, - [SMALL_STATE(1758)] = 11473, - [SMALL_STATE(1759)] = 11538, - [SMALL_STATE(1760)] = 11603, - [SMALL_STATE(1761)] = 11670, - [SMALL_STATE(1762)] = 11734, - [SMALL_STATE(1763)] = 11818, - [SMALL_STATE(1764)] = 11934, - [SMALL_STATE(1765)] = 12018, - [SMALL_STATE(1766)] = 12106, - [SMALL_STATE(1767)] = 12202, - [SMALL_STATE(1768)] = 12286, - [SMALL_STATE(1769)] = 12384, - [SMALL_STATE(1770)] = 12496, - [SMALL_STATE(1771)] = 12608, - [SMALL_STATE(1772)] = 12692, - [SMALL_STATE(1773)] = 12758, - [SMALL_STATE(1774)] = 12846, - [SMALL_STATE(1775)] = 12934, - [SMALL_STATE(1776)] = 13000, - [SMALL_STATE(1777)] = 13066, - [SMALL_STATE(1778)] = 13182, - [SMALL_STATE(1779)] = 13266, - [SMALL_STATE(1780)] = 13378, - [SMALL_STATE(1781)] = 13490, - [SMALL_STATE(1782)] = 13574, - [SMALL_STATE(1783)] = 13638, - [SMALL_STATE(1784)] = 13704, - [SMALL_STATE(1785)] = 13768, - [SMALL_STATE(1786)] = 13864, - [SMALL_STATE(1787)] = 13950, - [SMALL_STATE(1788)] = 14016, - [SMALL_STATE(1789)] = 14102, - [SMALL_STATE(1790)] = 14220, - [SMALL_STATE(1791)] = 14318, - [SMALL_STATE(1792)] = 14382, - [SMALL_STATE(1793)] = 14446, - [SMALL_STATE(1794)] = 14512, - [SMALL_STATE(1795)] = 14600, - [SMALL_STATE(1796)] = 14688, - [SMALL_STATE(1797)] = 14776, - [SMALL_STATE(1798)] = 14839, - [SMALL_STATE(1799)] = 14902, - [SMALL_STATE(1800)] = 14965, - [SMALL_STATE(1801)] = 15028, - [SMALL_STATE(1802)] = 15091, - [SMALL_STATE(1803)] = 15154, - [SMALL_STATE(1804)] = 15217, - [SMALL_STATE(1805)] = 15280, - [SMALL_STATE(1806)] = 15343, - [SMALL_STATE(1807)] = 15406, - [SMALL_STATE(1808)] = 15469, - [SMALL_STATE(1809)] = 15532, - [SMALL_STATE(1810)] = 15595, - [SMALL_STATE(1811)] = 15706, - [SMALL_STATE(1812)] = 15817, - [SMALL_STATE(1813)] = 15880, - [SMALL_STATE(1814)] = 15943, - [SMALL_STATE(1815)] = 16006, - [SMALL_STATE(1816)] = 16069, - [SMALL_STATE(1817)] = 16154, - [SMALL_STATE(1818)] = 16217, - [SMALL_STATE(1819)] = 16280, - [SMALL_STATE(1820)] = 16343, - [SMALL_STATE(1821)] = 16454, - [SMALL_STATE(1822)] = 16519, - [SMALL_STATE(1823)] = 16582, - [SMALL_STATE(1824)] = 16645, - [SMALL_STATE(1825)] = 16708, - [SMALL_STATE(1826)] = 16773, - [SMALL_STATE(1827)] = 16836, - [SMALL_STATE(1828)] = 16901, - [SMALL_STATE(1829)] = 16964, - [SMALL_STATE(1830)] = 17027, - [SMALL_STATE(1831)] = 17090, - [SMALL_STATE(1832)] = 17153, - [SMALL_STATE(1833)] = 17216, - [SMALL_STATE(1834)] = 17279, - [SMALL_STATE(1835)] = 17342, - [SMALL_STATE(1836)] = 17405, - [SMALL_STATE(1837)] = 17468, - [SMALL_STATE(1838)] = 17531, - [SMALL_STATE(1839)] = 17594, - [SMALL_STATE(1840)] = 17657, - [SMALL_STATE(1841)] = 17720, - [SMALL_STATE(1842)] = 17783, - [SMALL_STATE(1843)] = 17846, - [SMALL_STATE(1844)] = 17909, - [SMALL_STATE(1845)] = 17972, - [SMALL_STATE(1846)] = 18035, - [SMALL_STATE(1847)] = 18098, - [SMALL_STATE(1848)] = 18161, - [SMALL_STATE(1849)] = 18224, - [SMALL_STATE(1850)] = 18287, - [SMALL_STATE(1851)] = 18354, - [SMALL_STATE(1852)] = 18421, - [SMALL_STATE(1853)] = 18484, - [SMALL_STATE(1854)] = 18547, - [SMALL_STATE(1855)] = 18610, - [SMALL_STATE(1856)] = 18673, - [SMALL_STATE(1857)] = 18736, - [SMALL_STATE(1858)] = 18799, - [SMALL_STATE(1859)] = 18862, - [SMALL_STATE(1860)] = 18925, - [SMALL_STATE(1861)] = 18988, - [SMALL_STATE(1862)] = 19051, - [SMALL_STATE(1863)] = 19114, - [SMALL_STATE(1864)] = 19177, - [SMALL_STATE(1865)] = 19240, - [SMALL_STATE(1866)] = 19303, - [SMALL_STATE(1867)] = 19366, - [SMALL_STATE(1868)] = 19429, - [SMALL_STATE(1869)] = 19492, - [SMALL_STATE(1870)] = 19559, - [SMALL_STATE(1871)] = 19622, - [SMALL_STATE(1872)] = 19685, - [SMALL_STATE(1873)] = 19748, - [SMALL_STATE(1874)] = 19811, - [SMALL_STATE(1875)] = 19874, - [SMALL_STATE(1876)] = 19937, - [SMALL_STATE(1877)] = 20000, - [SMALL_STATE(1878)] = 20063, - [SMALL_STATE(1879)] = 20126, - [SMALL_STATE(1880)] = 20189, - [SMALL_STATE(1881)] = 20252, - [SMALL_STATE(1882)] = 20315, - [SMALL_STATE(1883)] = 20378, - [SMALL_STATE(1884)] = 20441, - [SMALL_STATE(1885)] = 20504, - [SMALL_STATE(1886)] = 20567, - [SMALL_STATE(1887)] = 20630, - [SMALL_STATE(1888)] = 20741, - [SMALL_STATE(1889)] = 20806, - [SMALL_STATE(1890)] = 20869, - [SMALL_STATE(1891)] = 20932, - [SMALL_STATE(1892)] = 21019, - [SMALL_STATE(1893)] = 21082, - [SMALL_STATE(1894)] = 21145, - [SMALL_STATE(1895)] = 21208, - [SMALL_STATE(1896)] = 21271, - [SMALL_STATE(1897)] = 21334, - [SMALL_STATE(1898)] = 21397, - [SMALL_STATE(1899)] = 21460, - [SMALL_STATE(1900)] = 21555, - [SMALL_STATE(1901)] = 21652, - [SMALL_STATE(1902)] = 21715, - [SMALL_STATE(1903)] = 21778, - [SMALL_STATE(1904)] = 21865, - [SMALL_STATE(1905)] = 21928, - [SMALL_STATE(1906)] = 21991, - [SMALL_STATE(1907)] = 22078, - [SMALL_STATE(1908)] = 22141, - [SMALL_STATE(1909)] = 22208, - [SMALL_STATE(1910)] = 22271, - [SMALL_STATE(1911)] = 22336, - [SMALL_STATE(1912)] = 22399, - [SMALL_STATE(1913)] = 22470, - [SMALL_STATE(1914)] = 22533, - [SMALL_STATE(1915)] = 22596, - [SMALL_STATE(1916)] = 22659, - [SMALL_STATE(1917)] = 22723, - [SMALL_STATE(1918)] = 22833, - [SMALL_STATE(1919)] = 22943, - [SMALL_STATE(1920)] = 23007, - [SMALL_STATE(1921)] = 23071, - [SMALL_STATE(1922)] = 23181, - [SMALL_STATE(1923)] = 23251, - [SMALL_STATE(1924)] = 23315, - [SMALL_STATE(1925)] = 23379, - [SMALL_STATE(1926)] = 23443, - [SMALL_STATE(1927)] = 23553, - [SMALL_STATE(1928)] = 23614, - [SMALL_STATE(1929)] = 23675, - [SMALL_STATE(1930)] = 23736, - [SMALL_STATE(1931)] = 23797, - [SMALL_STATE(1932)] = 23858, - [SMALL_STATE(1933)] = 23919, - [SMALL_STATE(1934)] = 23980, - [SMALL_STATE(1935)] = 24041, - [SMALL_STATE(1936)] = 24102, - [SMALL_STATE(1937)] = 24163, - [SMALL_STATE(1938)] = 24224, - [SMALL_STATE(1939)] = 24285, - [SMALL_STATE(1940)] = 24346, - [SMALL_STATE(1941)] = 24407, - [SMALL_STATE(1942)] = 24468, - [SMALL_STATE(1943)] = 24529, - [SMALL_STATE(1944)] = 24590, - [SMALL_STATE(1945)] = 24651, - [SMALL_STATE(1946)] = 24712, - [SMALL_STATE(1947)] = 24773, - [SMALL_STATE(1948)] = 24834, - [SMALL_STATE(1949)] = 24895, - [SMALL_STATE(1950)] = 24956, - [SMALL_STATE(1951)] = 25017, - [SMALL_STATE(1952)] = 25078, - [SMALL_STATE(1953)] = 25139, - [SMALL_STATE(1954)] = 25200, - [SMALL_STATE(1955)] = 25261, - [SMALL_STATE(1956)] = 25324, - [SMALL_STATE(1957)] = 25385, - [SMALL_STATE(1958)] = 25446, - [SMALL_STATE(1959)] = 25507, - [SMALL_STATE(1960)] = 25568, - [SMALL_STATE(1961)] = 25629, - [SMALL_STATE(1962)] = 25690, - [SMALL_STATE(1963)] = 25751, - [SMALL_STATE(1964)] = 25812, - [SMALL_STATE(1965)] = 25873, - [SMALL_STATE(1966)] = 25934, - [SMALL_STATE(1967)] = 25995, - [SMALL_STATE(1968)] = 26056, - [SMALL_STATE(1969)] = 26117, - [SMALL_STATE(1970)] = 26178, - [SMALL_STATE(1971)] = 26239, - [SMALL_STATE(1972)] = 26300, - [SMALL_STATE(1973)] = 26361, - [SMALL_STATE(1974)] = 26422, - [SMALL_STATE(1975)] = 26483, - [SMALL_STATE(1976)] = 26544, - [SMALL_STATE(1977)] = 26605, - [SMALL_STATE(1978)] = 26666, - [SMALL_STATE(1979)] = 26727, - [SMALL_STATE(1980)] = 26788, - [SMALL_STATE(1981)] = 26849, - [SMALL_STATE(1982)] = 26910, - [SMALL_STATE(1983)] = 26971, - [SMALL_STATE(1984)] = 27032, - [SMALL_STATE(1985)] = 27093, - [SMALL_STATE(1986)] = 27154, - [SMALL_STATE(1987)] = 27215, - [SMALL_STATE(1988)] = 27276, - [SMALL_STATE(1989)] = 27337, - [SMALL_STATE(1990)] = 27398, - [SMALL_STATE(1991)] = 27459, - [SMALL_STATE(1992)] = 27520, - [SMALL_STATE(1993)] = 27581, - [SMALL_STATE(1994)] = 27642, - [SMALL_STATE(1995)] = 27703, - [SMALL_STATE(1996)] = 27764, - [SMALL_STATE(1997)] = 27825, - [SMALL_STATE(1998)] = 27886, - [SMALL_STATE(1999)] = 27947, - [SMALL_STATE(2000)] = 28008, - [SMALL_STATE(2001)] = 28069, - [SMALL_STATE(2002)] = 28130, - [SMALL_STATE(2003)] = 28191, - [SMALL_STATE(2004)] = 28252, - [SMALL_STATE(2005)] = 28313, - [SMALL_STATE(2006)] = 28374, - [SMALL_STATE(2007)] = 28435, - [SMALL_STATE(2008)] = 28500, - [SMALL_STATE(2009)] = 28563, - [SMALL_STATE(2010)] = 28626, - [SMALL_STATE(2011)] = 28691, - [SMALL_STATE(2012)] = 28752, - [SMALL_STATE(2013)] = 28813, - [SMALL_STATE(2014)] = 28874, - [SMALL_STATE(2015)] = 28935, - [SMALL_STATE(2016)] = 28996, - [SMALL_STATE(2017)] = 29057, - [SMALL_STATE(2018)] = 29118, - [SMALL_STATE(2019)] = 29179, - [SMALL_STATE(2020)] = 29240, - [SMALL_STATE(2021)] = 29301, - [SMALL_STATE(2022)] = 29362, - [SMALL_STATE(2023)] = 29423, - [SMALL_STATE(2024)] = 29484, - [SMALL_STATE(2025)] = 29545, - [SMALL_STATE(2026)] = 29606, - [SMALL_STATE(2027)] = 29667, - [SMALL_STATE(2028)] = 29728, - [SMALL_STATE(2029)] = 29789, - [SMALL_STATE(2030)] = 29850, - [SMALL_STATE(2031)] = 29911, - [SMALL_STATE(2032)] = 29972, - [SMALL_STATE(2033)] = 30033, - [SMALL_STATE(2034)] = 30094, - [SMALL_STATE(2035)] = 30155, - [SMALL_STATE(2036)] = 30216, - [SMALL_STATE(2037)] = 30279, - [SMALL_STATE(2038)] = 30340, - [SMALL_STATE(2039)] = 30401, - [SMALL_STATE(2040)] = 30462, - [SMALL_STATE(2041)] = 30523, - [SMALL_STATE(2042)] = 30584, - [SMALL_STATE(2043)] = 30645, - [SMALL_STATE(2044)] = 30706, - [SMALL_STATE(2045)] = 30767, - [SMALL_STATE(2046)] = 30828, - [SMALL_STATE(2047)] = 30889, - [SMALL_STATE(2048)] = 30950, - [SMALL_STATE(2049)] = 31011, - [SMALL_STATE(2050)] = 31072, - [SMALL_STATE(2051)] = 31133, - [SMALL_STATE(2052)] = 31194, - [SMALL_STATE(2053)] = 31255, - [SMALL_STATE(2054)] = 31316, - [SMALL_STATE(2055)] = 31377, - [SMALL_STATE(2056)] = 31438, - [SMALL_STATE(2057)] = 31503, - [SMALL_STATE(2058)] = 31564, - [SMALL_STATE(2059)] = 31625, - [SMALL_STATE(2060)] = 31686, - [SMALL_STATE(2061)] = 31751, - [SMALL_STATE(2062)] = 31812, - [SMALL_STATE(2063)] = 31873, - [SMALL_STATE(2064)] = 31934, - [SMALL_STATE(2065)] = 31995, - [SMALL_STATE(2066)] = 32056, - [SMALL_STATE(2067)] = 32117, - [SMALL_STATE(2068)] = 32178, - [SMALL_STATE(2069)] = 32239, - [SMALL_STATE(2070)] = 32300, - [SMALL_STATE(2071)] = 32361, - [SMALL_STATE(2072)] = 32422, - [SMALL_STATE(2073)] = 32483, - [SMALL_STATE(2074)] = 32544, - [SMALL_STATE(2075)] = 32605, - [SMALL_STATE(2076)] = 32666, - [SMALL_STATE(2077)] = 32727, - [SMALL_STATE(2078)] = 32788, - [SMALL_STATE(2079)] = 32849, - [SMALL_STATE(2080)] = 32910, - [SMALL_STATE(2081)] = 32971, - [SMALL_STATE(2082)] = 33032, - [SMALL_STATE(2083)] = 33093, - [SMALL_STATE(2084)] = 33154, - [SMALL_STATE(2085)] = 33215, - [SMALL_STATE(2086)] = 33276, - [SMALL_STATE(2087)] = 33337, - [SMALL_STATE(2088)] = 33398, - [SMALL_STATE(2089)] = 33459, - [SMALL_STATE(2090)] = 33520, - [SMALL_STATE(2091)] = 33583, - [SMALL_STATE(2092)] = 33644, - [SMALL_STATE(2093)] = 33705, - [SMALL_STATE(2094)] = 33766, - [SMALL_STATE(2095)] = 33831, - [SMALL_STATE(2096)] = 33892, - [SMALL_STATE(2097)] = 33953, - [SMALL_STATE(2098)] = 34018, - [SMALL_STATE(2099)] = 34079, - [SMALL_STATE(2100)] = 34140, - [SMALL_STATE(2101)] = 34201, - [SMALL_STATE(2102)] = 34262, - [SMALL_STATE(2103)] = 34323, - [SMALL_STATE(2104)] = 34386, - [SMALL_STATE(2105)] = 34447, - [SMALL_STATE(2106)] = 34508, - [SMALL_STATE(2107)] = 34569, - [SMALL_STATE(2108)] = 34632, - [SMALL_STATE(2109)] = 34693, - [SMALL_STATE(2110)] = 34754, - [SMALL_STATE(2111)] = 34815, - [SMALL_STATE(2112)] = 34876, - [SMALL_STATE(2113)] = 34937, - [SMALL_STATE(2114)] = 34998, - [SMALL_STATE(2115)] = 35059, - [SMALL_STATE(2116)] = 35120, - [SMALL_STATE(2117)] = 35181, - [SMALL_STATE(2118)] = 35242, - [SMALL_STATE(2119)] = 35305, - [SMALL_STATE(2120)] = 35366, - [SMALL_STATE(2121)] = 35429, - [SMALL_STATE(2122)] = 35492, - [SMALL_STATE(2123)] = 35553, - [SMALL_STATE(2124)] = 35614, - [SMALL_STATE(2125)] = 35675, - [SMALL_STATE(2126)] = 35736, - [SMALL_STATE(2127)] = 35797, - [SMALL_STATE(2128)] = 35858, - [SMALL_STATE(2129)] = 35919, - [SMALL_STATE(2130)] = 35982, - [SMALL_STATE(2131)] = 36045, - [SMALL_STATE(2132)] = 36106, - [SMALL_STATE(2133)] = 36167, - [SMALL_STATE(2134)] = 36228, - [SMALL_STATE(2135)] = 36289, - [SMALL_STATE(2136)] = 36350, - [SMALL_STATE(2137)] = 36411, - [SMALL_STATE(2138)] = 36472, - [SMALL_STATE(2139)] = 36533, - [SMALL_STATE(2140)] = 36594, - [SMALL_STATE(2141)] = 36655, - [SMALL_STATE(2142)] = 36716, - [SMALL_STATE(2143)] = 36777, - [SMALL_STATE(2144)] = 36838, - [SMALL_STATE(2145)] = 36913, - [SMALL_STATE(2146)] = 36976, - [SMALL_STATE(2147)] = 37051, - [SMALL_STATE(2148)] = 37126, - [SMALL_STATE(2149)] = 37188, - [SMALL_STATE(2150)] = 37250, - [SMALL_STATE(2151)] = 37314, - [SMALL_STATE(2152)] = 37373, - [SMALL_STATE(2153)] = 37430, - [SMALL_STATE(2154)] = 37487, - [SMALL_STATE(2155)] = 37592, - [SMALL_STATE(2156)] = 37655, - [SMALL_STATE(2157)] = 37712, - [SMALL_STATE(2158)] = 37769, - [SMALL_STATE(2159)] = 37826, - [SMALL_STATE(2160)] = 37885, - [SMALL_STATE(2161)] = 37944, - [SMALL_STATE(2162)] = 38001, - [SMALL_STATE(2163)] = 38062, - [SMALL_STATE(2164)] = 38119, - [SMALL_STATE(2165)] = 38176, - [SMALL_STATE(2166)] = 38235, - [SMALL_STATE(2167)] = 38292, - [SMALL_STATE(2168)] = 38348, - [SMALL_STATE(2169)] = 38404, - [SMALL_STATE(2170)] = 38460, - [SMALL_STATE(2171)] = 38516, - [SMALL_STATE(2172)] = 38572, - [SMALL_STATE(2173)] = 38628, - [SMALL_STATE(2174)] = 38684, - [SMALL_STATE(2175)] = 38788, - [SMALL_STATE(2176)] = 38844, - [SMALL_STATE(2177)] = 38900, - [SMALL_STATE(2178)] = 38956, - [SMALL_STATE(2179)] = 39012, - [SMALL_STATE(2180)] = 39068, - [SMALL_STATE(2181)] = 39124, - [SMALL_STATE(2182)] = 39180, - [SMALL_STATE(2183)] = 39236, - [SMALL_STATE(2184)] = 39292, - [SMALL_STATE(2185)] = 39350, - [SMALL_STATE(2186)] = 39406, - [SMALL_STATE(2187)] = 39462, - [SMALL_STATE(2188)] = 39540, - [SMALL_STATE(2189)] = 39596, - [SMALL_STATE(2190)] = 39652, - [SMALL_STATE(2191)] = 39708, - [SMALL_STATE(2192)] = 39764, - [SMALL_STATE(2193)] = 39820, - [SMALL_STATE(2194)] = 39876, - [SMALL_STATE(2195)] = 39932, - [SMALL_STATE(2196)] = 40030, - [SMALL_STATE(2197)] = 40086, - [SMALL_STATE(2198)] = 40142, - [SMALL_STATE(2199)] = 40198, - [SMALL_STATE(2200)] = 40254, - [SMALL_STATE(2201)] = 40310, - [SMALL_STATE(2202)] = 40366, - [SMALL_STATE(2203)] = 40422, - [SMALL_STATE(2204)] = 40478, - [SMALL_STATE(2205)] = 40556, - [SMALL_STATE(2206)] = 40612, - [SMALL_STATE(2207)] = 40670, - [SMALL_STATE(2208)] = 40726, - [SMALL_STATE(2209)] = 40784, - [SMALL_STATE(2210)] = 40840, - [SMALL_STATE(2211)] = 40896, - [SMALL_STATE(2212)] = 40952, - [SMALL_STATE(2213)] = 41008, - [SMALL_STATE(2214)] = 41064, - [SMALL_STATE(2215)] = 41120, - [SMALL_STATE(2216)] = 41176, - [SMALL_STATE(2217)] = 41232, - [SMALL_STATE(2218)] = 41288, - [SMALL_STATE(2219)] = 41344, - [SMALL_STATE(2220)] = 41402, - [SMALL_STATE(2221)] = 41458, - [SMALL_STATE(2222)] = 41514, - [SMALL_STATE(2223)] = 41570, - [SMALL_STATE(2224)] = 41626, - [SMALL_STATE(2225)] = 41682, - [SMALL_STATE(2226)] = 41760, - [SMALL_STATE(2227)] = 41816, - [SMALL_STATE(2228)] = 41914, - [SMALL_STATE(2229)] = 41970, - [SMALL_STATE(2230)] = 42026, - [SMALL_STATE(2231)] = 42082, - [SMALL_STATE(2232)] = 42138, - [SMALL_STATE(2233)] = 42196, - [SMALL_STATE(2234)] = 42252, - [SMALL_STATE(2235)] = 42328, - [SMALL_STATE(2236)] = 42404, - [SMALL_STATE(2237)] = 42488, - [SMALL_STATE(2238)] = 42544, - [SMALL_STATE(2239)] = 42626, - [SMALL_STATE(2240)] = 42702, - [SMALL_STATE(2241)] = 42758, - [SMALL_STATE(2242)] = 42814, - [SMALL_STATE(2243)] = 42870, - [SMALL_STATE(2244)] = 42926, - [SMALL_STATE(2245)] = 42982, - [SMALL_STATE(2246)] = 43038, - [SMALL_STATE(2247)] = 43094, - [SMALL_STATE(2248)] = 43168, - [SMALL_STATE(2249)] = 43224, - [SMALL_STATE(2250)] = 43280, - [SMALL_STATE(2251)] = 43336, - [SMALL_STATE(2252)] = 43392, - [SMALL_STATE(2253)] = 43448, - [SMALL_STATE(2254)] = 43504, - [SMALL_STATE(2255)] = 43560, - [SMALL_STATE(2256)] = 43616, - [SMALL_STATE(2257)] = 43672, - [SMALL_STATE(2258)] = 43728, - [SMALL_STATE(2259)] = 43786, - [SMALL_STATE(2260)] = 43842, - [SMALL_STATE(2261)] = 43898, - [SMALL_STATE(2262)] = 43954, - [SMALL_STATE(2263)] = 44010, - [SMALL_STATE(2264)] = 44066, - [SMALL_STATE(2265)] = 44122, - [SMALL_STATE(2266)] = 44178, - [SMALL_STATE(2267)] = 44234, - [SMALL_STATE(2268)] = 44290, - [SMALL_STATE(2269)] = 44346, - [SMALL_STATE(2270)] = 44402, - [SMALL_STATE(2271)] = 44458, - [SMALL_STATE(2272)] = 44514, - [SMALL_STATE(2273)] = 44570, - [SMALL_STATE(2274)] = 44626, - [SMALL_STATE(2275)] = 44682, - [SMALL_STATE(2276)] = 44738, - [SMALL_STATE(2277)] = 44794, - [SMALL_STATE(2278)] = 44850, - [SMALL_STATE(2279)] = 44906, - [SMALL_STATE(2280)] = 44962, - [SMALL_STATE(2281)] = 45018, - [SMALL_STATE(2282)] = 45074, - [SMALL_STATE(2283)] = 45130, - [SMALL_STATE(2284)] = 45186, - [SMALL_STATE(2285)] = 45242, - [SMALL_STATE(2286)] = 45298, - [SMALL_STATE(2287)] = 45395, - [SMALL_STATE(2288)] = 45450, - [SMALL_STATE(2289)] = 45547, - [SMALL_STATE(2290)] = 45622, - [SMALL_STATE(2291)] = 45705, - [SMALL_STATE(2292)] = 45802, - [SMALL_STATE(2293)] = 45857, - [SMALL_STATE(2294)] = 45938, - [SMALL_STATE(2295)] = 46013, - [SMALL_STATE(2296)] = 46088, - [SMALL_STATE(2297)] = 46161, - [SMALL_STATE(2298)] = 46216, - [SMALL_STATE(2299)] = 46313, - [SMALL_STATE(2300)] = 46372, - [SMALL_STATE(2301)] = 46431, - [SMALL_STATE(2302)] = 46486, - [SMALL_STATE(2303)] = 46543, - [SMALL_STATE(2304)] = 46600, - [SMALL_STATE(2305)] = 46682, - [SMALL_STATE(2306)] = 46756, - [SMALL_STATE(2307)] = 46812, - [SMALL_STATE(2308)] = 46868, - [SMALL_STATE(2309)] = 46964, - [SMALL_STATE(2310)] = 47036, - [SMALL_STATE(2311)] = 47106, - [SMALL_STATE(2312)] = 47202, - [SMALL_STATE(2313)] = 47298, - [SMALL_STATE(2314)] = 47368, - [SMALL_STATE(2315)] = 47442, - [SMALL_STATE(2316)] = 47522, - [SMALL_STATE(2317)] = 47592, - [SMALL_STATE(2318)] = 47694, - [SMALL_STATE(2319)] = 47750, - [SMALL_STATE(2320)] = 47824, - [SMALL_STATE(2321)] = 47877, - [SMALL_STATE(2322)] = 47930, - [SMALL_STATE(2323)] = 47983, - [SMALL_STATE(2324)] = 48036, - [SMALL_STATE(2325)] = 48089, - [SMALL_STATE(2326)] = 48142, - [SMALL_STATE(2327)] = 48195, - [SMALL_STATE(2328)] = 48248, - [SMALL_STATE(2329)] = 48343, - [SMALL_STATE(2330)] = 48438, - [SMALL_STATE(2331)] = 48491, - [SMALL_STATE(2332)] = 48548, - [SMALL_STATE(2333)] = 48605, - [SMALL_STATE(2334)] = 48658, - [SMALL_STATE(2335)] = 48711, - [SMALL_STATE(2336)] = 48764, - [SMALL_STATE(2337)] = 48817, - [SMALL_STATE(2338)] = 48870, - [SMALL_STATE(2339)] = 48923, - [SMALL_STATE(2340)] = 48976, - [SMALL_STATE(2341)] = 49029, - [SMALL_STATE(2342)] = 49084, - [SMALL_STATE(2343)] = 49137, - [SMALL_STATE(2344)] = 49190, - [SMALL_STATE(2345)] = 49243, - [SMALL_STATE(2346)] = 49296, - [SMALL_STATE(2347)] = 49349, - [SMALL_STATE(2348)] = 49402, - [SMALL_STATE(2349)] = 49455, - [SMALL_STATE(2350)] = 49508, - [SMALL_STATE(2351)] = 49561, - [SMALL_STATE(2352)] = 49614, - [SMALL_STATE(2353)] = 49667, - [SMALL_STATE(2354)] = 49720, - [SMALL_STATE(2355)] = 49773, - [SMALL_STATE(2356)] = 49826, - [SMALL_STATE(2357)] = 49879, - [SMALL_STATE(2358)] = 49932, - [SMALL_STATE(2359)] = 50027, - [SMALL_STATE(2360)] = 50080, - [SMALL_STATE(2361)] = 50137, - [SMALL_STATE(2362)] = 50194, - [SMALL_STATE(2363)] = 50247, - [SMALL_STATE(2364)] = 50300, - [SMALL_STATE(2365)] = 50353, - [SMALL_STATE(2366)] = 50452, - [SMALL_STATE(2367)] = 50505, - [SMALL_STATE(2368)] = 50558, - [SMALL_STATE(2369)] = 50611, - [SMALL_STATE(2370)] = 50664, - [SMALL_STATE(2371)] = 50717, - [SMALL_STATE(2372)] = 50772, - [SMALL_STATE(2373)] = 50825, - [SMALL_STATE(2374)] = 50880, - [SMALL_STATE(2375)] = 50933, - [SMALL_STATE(2376)] = 50986, - [SMALL_STATE(2377)] = 51039, - [SMALL_STATE(2378)] = 51092, - [SMALL_STATE(2379)] = 51145, - [SMALL_STATE(2380)] = 51198, - [SMALL_STATE(2381)] = 51251, - [SMALL_STATE(2382)] = 51304, - [SMALL_STATE(2383)] = 51357, - [SMALL_STATE(2384)] = 51410, - [SMALL_STATE(2385)] = 51463, - [SMALL_STATE(2386)] = 51516, - [SMALL_STATE(2387)] = 51569, - [SMALL_STATE(2388)] = 51622, - [SMALL_STATE(2389)] = 51677, - [SMALL_STATE(2390)] = 51730, - [SMALL_STATE(2391)] = 51783, - [SMALL_STATE(2392)] = 51836, - [SMALL_STATE(2393)] = 51889, - [SMALL_STATE(2394)] = 51942, - [SMALL_STATE(2395)] = 51995, - [SMALL_STATE(2396)] = 52048, - [SMALL_STATE(2397)] = 52101, - [SMALL_STATE(2398)] = 52154, - [SMALL_STATE(2399)] = 52207, - [SMALL_STATE(2400)] = 52260, - [SMALL_STATE(2401)] = 52313, - [SMALL_STATE(2402)] = 52366, - [SMALL_STATE(2403)] = 52419, - [SMALL_STATE(2404)] = 52472, - [SMALL_STATE(2405)] = 52525, - [SMALL_STATE(2406)] = 52578, - [SMALL_STATE(2407)] = 52633, - [SMALL_STATE(2408)] = 52686, - [SMALL_STATE(2409)] = 52739, - [SMALL_STATE(2410)] = 52792, - [SMALL_STATE(2411)] = 52845, - [SMALL_STATE(2412)] = 52898, - [SMALL_STATE(2413)] = 52951, - [SMALL_STATE(2414)] = 53004, - [SMALL_STATE(2415)] = 53057, - [SMALL_STATE(2416)] = 53110, - [SMALL_STATE(2417)] = 53163, - [SMALL_STATE(2418)] = 53216, - [SMALL_STATE(2419)] = 53269, - [SMALL_STATE(2420)] = 53322, - [SMALL_STATE(2421)] = 53375, - [SMALL_STATE(2422)] = 53428, - [SMALL_STATE(2423)] = 53481, - [SMALL_STATE(2424)] = 53534, - [SMALL_STATE(2425)] = 53587, - [SMALL_STATE(2426)] = 53642, - [SMALL_STATE(2427)] = 53695, - [SMALL_STATE(2428)] = 53748, - [SMALL_STATE(2429)] = 53801, - [SMALL_STATE(2430)] = 53911, - [SMALL_STATE(2431)] = 53965, - [SMALL_STATE(2432)] = 54075, - [SMALL_STATE(2433)] = 54129, - [SMALL_STATE(2434)] = 54225, - [SMALL_STATE(2435)] = 54303, - [SMALL_STATE(2436)] = 54385, - [SMALL_STATE(2437)] = 54473, - [SMALL_STATE(2438)] = 54563, - [SMALL_STATE(2439)] = 54645, - [SMALL_STATE(2440)] = 54727, - [SMALL_STATE(2441)] = 54837, - [SMALL_STATE(2442)] = 54947, - [SMALL_STATE(2443)] = 55057, - [SMALL_STATE(2444)] = 55111, - [SMALL_STATE(2445)] = 55167, - [SMALL_STATE(2446)] = 55221, - [SMALL_STATE(2447)] = 55331, - [SMALL_STATE(2448)] = 55435, - [SMALL_STATE(2449)] = 55539, - [SMALL_STATE(2450)] = 55649, - [SMALL_STATE(2451)] = 55721, - [SMALL_STATE(2452)] = 55793, - [SMALL_STATE(2453)] = 55873, - [SMALL_STATE(2454)] = 55983, - [SMALL_STATE(2455)] = 56093, - [SMALL_STATE(2456)] = 56187, - [SMALL_STATE(2457)] = 56265, - [SMALL_STATE(2458)] = 56319, - [SMALL_STATE(2459)] = 56391, - [SMALL_STATE(2460)] = 56501, - [SMALL_STATE(2461)] = 56555, - [SMALL_STATE(2462)] = 56649, - [SMALL_STATE(2463)] = 56759, - [SMALL_STATE(2464)] = 56869, - [SMALL_STATE(2465)] = 56979, - [SMALL_STATE(2466)] = 57033, - [SMALL_STATE(2467)] = 57127, - [SMALL_STATE(2468)] = 57197, - [SMALL_STATE(2469)] = 57248, - [SMALL_STATE(2470)] = 57299, - [SMALL_STATE(2471)] = 57350, - [SMALL_STATE(2472)] = 57401, - [SMALL_STATE(2473)] = 57452, - [SMALL_STATE(2474)] = 57503, - [SMALL_STATE(2475)] = 57554, - [SMALL_STATE(2476)] = 57605, - [SMALL_STATE(2477)] = 57656, - [SMALL_STATE(2478)] = 57707, - [SMALL_STATE(2479)] = 57758, - [SMALL_STATE(2480)] = 57809, - [SMALL_STATE(2481)] = 57862, - [SMALL_STATE(2482)] = 57955, - [SMALL_STATE(2483)] = 58006, - [SMALL_STATE(2484)] = 58057, - [SMALL_STATE(2485)] = 58148, - [SMALL_STATE(2486)] = 58241, - [SMALL_STATE(2487)] = 58294, - [SMALL_STATE(2488)] = 58387, - [SMALL_STATE(2489)] = 58438, - [SMALL_STATE(2490)] = 58511, - [SMALL_STATE(2491)] = 58562, - [SMALL_STATE(2492)] = 58655, - [SMALL_STATE(2493)] = 58706, - [SMALL_STATE(2494)] = 58811, - [SMALL_STATE(2495)] = 58916, - [SMALL_STATE(2496)] = 58967, - [SMALL_STATE(2497)] = 59018, - [SMALL_STATE(2498)] = 59069, - [SMALL_STATE(2499)] = 59142, - [SMALL_STATE(2500)] = 59193, - [SMALL_STATE(2501)] = 59244, - [SMALL_STATE(2502)] = 59333, - [SMALL_STATE(2503)] = 59384, - [SMALL_STATE(2504)] = 59435, - [SMALL_STATE(2505)] = 59486, - [SMALL_STATE(2506)] = 59537, - [SMALL_STATE(2507)] = 59588, - [SMALL_STATE(2508)] = 59639, - [SMALL_STATE(2509)] = 59690, - [SMALL_STATE(2510)] = 59741, - [SMALL_STATE(2511)] = 59828, - [SMALL_STATE(2512)] = 59879, - [SMALL_STATE(2513)] = 59930, - [SMALL_STATE(2514)] = 60017, - [SMALL_STATE(2515)] = 60104, - [SMALL_STATE(2516)] = 60155, - [SMALL_STATE(2517)] = 60236, - [SMALL_STATE(2518)] = 60313, - [SMALL_STATE(2519)] = 60364, - [SMALL_STATE(2520)] = 60415, - [SMALL_STATE(2521)] = 60466, - [SMALL_STATE(2522)] = 60547, - [SMALL_STATE(2523)] = 60602, - [SMALL_STATE(2524)] = 60653, - [SMALL_STATE(2525)] = 60704, - [SMALL_STATE(2526)] = 60811, - [SMALL_STATE(2527)] = 60862, - [SMALL_STATE(2528)] = 60913, - [SMALL_STATE(2529)] = 60964, - [SMALL_STATE(2530)] = 61017, - [SMALL_STATE(2531)] = 61068, - [SMALL_STATE(2532)] = 61119, - [SMALL_STATE(2533)] = 61170, - [SMALL_STATE(2534)] = 61221, - [SMALL_STATE(2535)] = 61272, - [SMALL_STATE(2536)] = 61323, - [SMALL_STATE(2537)] = 61374, - [SMALL_STATE(2538)] = 61425, - [SMALL_STATE(2539)] = 61476, - [SMALL_STATE(2540)] = 61527, - [SMALL_STATE(2541)] = 61578, - [SMALL_STATE(2542)] = 61629, - [SMALL_STATE(2543)] = 61682, - [SMALL_STATE(2544)] = 61735, - [SMALL_STATE(2545)] = 61786, - [SMALL_STATE(2546)] = 61837, - [SMALL_STATE(2547)] = 61888, - [SMALL_STATE(2548)] = 61939, - [SMALL_STATE(2549)] = 61990, - [SMALL_STATE(2550)] = 62041, - [SMALL_STATE(2551)] = 62092, - [SMALL_STATE(2552)] = 62145, - [SMALL_STATE(2553)] = 62252, - [SMALL_STATE(2554)] = 62303, - [SMALL_STATE(2555)] = 62384, - [SMALL_STATE(2556)] = 62435, - [SMALL_STATE(2557)] = 62486, - [SMALL_STATE(2558)] = 62539, - [SMALL_STATE(2559)] = 62590, - [SMALL_STATE(2560)] = 62663, - [SMALL_STATE(2561)] = 62714, - [SMALL_STATE(2562)] = 62805, - [SMALL_STATE(2563)] = 62856, - [SMALL_STATE(2564)] = 62909, - [SMALL_STATE(2565)] = 62960, - [SMALL_STATE(2566)] = 63011, - [SMALL_STATE(2567)] = 63062, - [SMALL_STATE(2568)] = 63113, - [SMALL_STATE(2569)] = 63164, - [SMALL_STATE(2570)] = 63215, - [SMALL_STATE(2571)] = 63266, - [SMALL_STATE(2572)] = 63317, - [SMALL_STATE(2573)] = 63368, - [SMALL_STATE(2574)] = 63419, - [SMALL_STATE(2575)] = 63470, - [SMALL_STATE(2576)] = 63521, - [SMALL_STATE(2577)] = 63572, - [SMALL_STATE(2578)] = 63623, - [SMALL_STATE(2579)] = 63674, - [SMALL_STATE(2580)] = 63725, - [SMALL_STATE(2581)] = 63776, - [SMALL_STATE(2582)] = 63827, - [SMALL_STATE(2583)] = 63878, - [SMALL_STATE(2584)] = 63929, - [SMALL_STATE(2585)] = 63980, - [SMALL_STATE(2586)] = 64031, - [SMALL_STATE(2587)] = 64082, - [SMALL_STATE(2588)] = 64133, - [SMALL_STATE(2589)] = 64184, - [SMALL_STATE(2590)] = 64235, - [SMALL_STATE(2591)] = 64286, - [SMALL_STATE(2592)] = 64337, - [SMALL_STATE(2593)] = 64388, - [SMALL_STATE(2594)] = 64462, - [SMALL_STATE(2595)] = 64562, - [SMALL_STATE(2596)] = 64642, - [SMALL_STATE(2597)] = 64722, - [SMALL_STATE(2598)] = 64822, - [SMALL_STATE(2599)] = 64912, - [SMALL_STATE(2600)] = 65016, - [SMALL_STATE(2601)] = 65120, - [SMALL_STATE(2602)] = 65208, - [SMALL_STATE(2603)] = 65262, - [SMALL_STATE(2604)] = 65316, - [SMALL_STATE(2605)] = 65366, - [SMALL_STATE(2606)] = 65470, - [SMALL_STATE(2607)] = 65520, - [SMALL_STATE(2608)] = 65600, - [SMALL_STATE(2609)] = 65676, - [SMALL_STATE(2610)] = 65754, - [SMALL_STATE(2611)] = 65832, - [SMALL_STATE(2612)] = 65886, - [SMALL_STATE(2613)] = 65992, - [SMALL_STATE(2614)] = 66046, - [SMALL_STATE(2615)] = 66132, - [SMALL_STATE(2616)] = 66232, - [SMALL_STATE(2617)] = 66316, - [SMALL_STATE(2618)] = 66394, - [SMALL_STATE(2619)] = 66498, - [SMALL_STATE(2620)] = 66598, - [SMALL_STATE(2621)] = 66698, - [SMALL_STATE(2622)] = 66776, - [SMALL_STATE(2623)] = 66854, - [SMALL_STATE(2624)] = 66940, - [SMALL_STATE(2625)] = 67024, - [SMALL_STATE(2626)] = 67102, - [SMALL_STATE(2627)] = 67176, - [SMALL_STATE(2628)] = 67225, - [SMALL_STATE(2629)] = 67326, - [SMALL_STATE(2630)] = 67427, - [SMALL_STATE(2631)] = 67528, - [SMALL_STATE(2632)] = 67583, - [SMALL_STATE(2633)] = 67686, - [SMALL_STATE(2634)] = 67785, - [SMALL_STATE(2635)] = 67886, - [SMALL_STATE(2636)] = 67937, - [SMALL_STATE(2637)] = 68036, - [SMALL_STATE(2638)] = 68139, - [SMALL_STATE(2639)] = 68242, - [SMALL_STATE(2640)] = 68343, - [SMALL_STATE(2641)] = 68446, - [SMALL_STATE(2642)] = 68547, - [SMALL_STATE(2643)] = 68648, - [SMALL_STATE(2644)] = 68751, - [SMALL_STATE(2645)] = 68854, - [SMALL_STATE(2646)] = 68955, - [SMALL_STATE(2647)] = 69054, - [SMALL_STATE(2648)] = 69107, - [SMALL_STATE(2649)] = 69208, - [SMALL_STATE(2650)] = 69311, - [SMALL_STATE(2651)] = 69414, - [SMALL_STATE(2652)] = 69469, - [SMALL_STATE(2653)] = 69572, - [SMALL_STATE(2654)] = 69671, - [SMALL_STATE(2655)] = 69772, - [SMALL_STATE(2656)] = 69823, - [SMALL_STATE(2657)] = 69926, - [SMALL_STATE(2658)] = 69977, - [SMALL_STATE(2659)] = 70080, - [SMALL_STATE(2660)] = 70181, - [SMALL_STATE(2661)] = 70282, - [SMALL_STATE(2662)] = 70385, - [SMALL_STATE(2663)] = 70488, - [SMALL_STATE(2664)] = 70587, - [SMALL_STATE(2665)] = 70636, - [SMALL_STATE(2666)] = 70737, - [SMALL_STATE(2667)] = 70838, - [SMALL_STATE(2668)] = 70886, - [SMALL_STATE(2669)] = 70984, - [SMALL_STATE(2670)] = 71034, - [SMALL_STATE(2671)] = 71082, - [SMALL_STATE(2672)] = 71130, - [SMALL_STATE(2673)] = 71178, - [SMALL_STATE(2674)] = 71276, - [SMALL_STATE(2675)] = 71324, - [SMALL_STATE(2676)] = 71422, - [SMALL_STATE(2677)] = 71516, - [SMALL_STATE(2678)] = 71614, - [SMALL_STATE(2679)] = 71712, - [SMALL_STATE(2680)] = 71806, - [SMALL_STATE(2681)] = 71904, - [SMALL_STATE(2682)] = 72002, - [SMALL_STATE(2683)] = 72050, - [SMALL_STATE(2684)] = 72100, - [SMALL_STATE(2685)] = 72148, - [SMALL_STATE(2686)] = 72246, - [SMALL_STATE(2687)] = 72294, - [SMALL_STATE(2688)] = 72342, - [SMALL_STATE(2689)] = 72440, - [SMALL_STATE(2690)] = 72488, - [SMALL_STATE(2691)] = 72536, - [SMALL_STATE(2692)] = 72634, - [SMALL_STATE(2693)] = 72682, - [SMALL_STATE(2694)] = 72730, - [SMALL_STATE(2695)] = 72778, - [SMALL_STATE(2696)] = 72876, - [SMALL_STATE(2697)] = 72924, - [SMALL_STATE(2698)] = 72972, - [SMALL_STATE(2699)] = 73020, - [SMALL_STATE(2700)] = 73068, - [SMALL_STATE(2701)] = 73116, - [SMALL_STATE(2702)] = 73164, - [SMALL_STATE(2703)] = 73262, - [SMALL_STATE(2704)] = 73360, - [SMALL_STATE(2705)] = 73408, - [SMALL_STATE(2706)] = 73456, - [SMALL_STATE(2707)] = 73554, - [SMALL_STATE(2708)] = 73652, - [SMALL_STATE(2709)] = 73700, - [SMALL_STATE(2710)] = 73748, - [SMALL_STATE(2711)] = 73796, - [SMALL_STATE(2712)] = 73844, - [SMALL_STATE(2713)] = 73892, - [SMALL_STATE(2714)] = 73940, - [SMALL_STATE(2715)] = 73988, - [SMALL_STATE(2716)] = 74082, - [SMALL_STATE(2717)] = 74130, - [SMALL_STATE(2718)] = 74178, - [SMALL_STATE(2719)] = 74226, - [SMALL_STATE(2720)] = 74324, - [SMALL_STATE(2721)] = 74372, - [SMALL_STATE(2722)] = 74420, - [SMALL_STATE(2723)] = 74468, - [SMALL_STATE(2724)] = 74516, - [SMALL_STATE(2725)] = 74564, - [SMALL_STATE(2726)] = 74612, - [SMALL_STATE(2727)] = 74660, - [SMALL_STATE(2728)] = 74708, - [SMALL_STATE(2729)] = 74806, - [SMALL_STATE(2730)] = 74854, - [SMALL_STATE(2731)] = 74952, - [SMALL_STATE(2732)] = 75002, - [SMALL_STATE(2733)] = 75054, - [SMALL_STATE(2734)] = 75106, - [SMALL_STATE(2735)] = 75154, - [SMALL_STATE(2736)] = 75252, - [SMALL_STATE(2737)] = 75350, - [SMALL_STATE(2738)] = 75398, - [SMALL_STATE(2739)] = 75446, - [SMALL_STATE(2740)] = 75494, - [SMALL_STATE(2741)] = 75542, - [SMALL_STATE(2742)] = 75590, - [SMALL_STATE(2743)] = 75684, - [SMALL_STATE(2744)] = 75782, - [SMALL_STATE(2745)] = 75830, - [SMALL_STATE(2746)] = 75924, - [SMALL_STATE(2747)] = 75972, - [SMALL_STATE(2748)] = 76020, - [SMALL_STATE(2749)] = 76068, - [SMALL_STATE(2750)] = 76116, - [SMALL_STATE(2751)] = 76164, - [SMALL_STATE(2752)] = 76214, - [SMALL_STATE(2753)] = 76262, - [SMALL_STATE(2754)] = 76356, - [SMALL_STATE(2755)] = 76404, - [SMALL_STATE(2756)] = 76498, - [SMALL_STATE(2757)] = 76546, - [SMALL_STATE(2758)] = 76644, - [SMALL_STATE(2759)] = 76692, - [SMALL_STATE(2760)] = 76740, - [SMALL_STATE(2761)] = 76788, - [SMALL_STATE(2762)] = 76836, - [SMALL_STATE(2763)] = 76934, - [SMALL_STATE(2764)] = 77032, - [SMALL_STATE(2765)] = 77080, - [SMALL_STATE(2766)] = 77128, - [SMALL_STATE(2767)] = 77176, - [SMALL_STATE(2768)] = 77224, - [SMALL_STATE(2769)] = 77272, - [SMALL_STATE(2770)] = 77370, - [SMALL_STATE(2771)] = 77418, - [SMALL_STATE(2772)] = 77466, - [SMALL_STATE(2773)] = 77514, - [SMALL_STATE(2774)] = 77562, - [SMALL_STATE(2775)] = 77610, - [SMALL_STATE(2776)] = 77658, - [SMALL_STATE(2777)] = 77708, - [SMALL_STATE(2778)] = 77760, - [SMALL_STATE(2779)] = 77808, - [SMALL_STATE(2780)] = 77856, - [SMALL_STATE(2781)] = 77904, - [SMALL_STATE(2782)] = 77952, - [SMALL_STATE(2783)] = 78000, - [SMALL_STATE(2784)] = 78098, - [SMALL_STATE(2785)] = 78192, - [SMALL_STATE(2786)] = 78290, - [SMALL_STATE(2787)] = 78340, - [SMALL_STATE(2788)] = 78388, - [SMALL_STATE(2789)] = 78486, - [SMALL_STATE(2790)] = 78534, - [SMALL_STATE(2791)] = 78582, - [SMALL_STATE(2792)] = 78630, - [SMALL_STATE(2793)] = 78728, - [SMALL_STATE(2794)] = 78826, - [SMALL_STATE(2795)] = 78924, - [SMALL_STATE(2796)] = 78972, - [SMALL_STATE(2797)] = 79020, - [SMALL_STATE(2798)] = 79118, - [SMALL_STATE(2799)] = 79216, - [SMALL_STATE(2800)] = 79310, - [SMALL_STATE(2801)] = 79358, - [SMALL_STATE(2802)] = 79406, - [SMALL_STATE(2803)] = 79504, - [SMALL_STATE(2804)] = 79552, - [SMALL_STATE(2805)] = 79600, - [SMALL_STATE(2806)] = 79672, - [SMALL_STATE(2807)] = 79770, - [SMALL_STATE(2808)] = 79818, - [SMALL_STATE(2809)] = 79916, - [SMALL_STATE(2810)] = 80010, - [SMALL_STATE(2811)] = 80086, - [SMALL_STATE(2812)] = 80184, - [SMALL_STATE(2813)] = 80282, - [SMALL_STATE(2814)] = 80364, - [SMALL_STATE(2815)] = 80412, - [SMALL_STATE(2816)] = 80488, - [SMALL_STATE(2817)] = 80572, - [SMALL_STATE(2818)] = 80622, - [SMALL_STATE(2819)] = 80716, - [SMALL_STATE(2820)] = 80792, - [SMALL_STATE(2821)] = 80868, - [SMALL_STATE(2822)] = 80944, - [SMALL_STATE(2823)] = 80994, - [SMALL_STATE(2824)] = 81088, - [SMALL_STATE(2825)] = 81136, - [SMALL_STATE(2826)] = 81184, - [SMALL_STATE(2827)] = 81232, - [SMALL_STATE(2828)] = 81282, - [SMALL_STATE(2829)] = 81376, - [SMALL_STATE(2830)] = 81460, - [SMALL_STATE(2831)] = 81558, - [SMALL_STATE(2832)] = 81640, - [SMALL_STATE(2833)] = 81738, - [SMALL_STATE(2834)] = 81814, - [SMALL_STATE(2835)] = 81886, - [SMALL_STATE(2836)] = 81938, - [SMALL_STATE(2837)] = 81988, - [SMALL_STATE(2838)] = 82036, - [SMALL_STATE(2839)] = 82134, - [SMALL_STATE(2840)] = 82232, - [SMALL_STATE(2841)] = 82330, - [SMALL_STATE(2842)] = 82378, - [SMALL_STATE(2843)] = 82476, - [SMALL_STATE(2844)] = 82524, - [SMALL_STATE(2845)] = 82574, - [SMALL_STATE(2846)] = 82622, - [SMALL_STATE(2847)] = 82672, - [SMALL_STATE(2848)] = 82770, - [SMALL_STATE(2849)] = 82868, - [SMALL_STATE(2850)] = 82962, - [SMALL_STATE(2851)] = 83012, - [SMALL_STATE(2852)] = 83110, - [SMALL_STATE(2853)] = 83204, - [SMALL_STATE(2854)] = 83298, - [SMALL_STATE(2855)] = 83396, - [SMALL_STATE(2856)] = 83494, - [SMALL_STATE(2857)] = 83592, - [SMALL_STATE(2858)] = 83641, - [SMALL_STATE(2859)] = 83736, - [SMALL_STATE(2860)] = 83831, - [SMALL_STATE(2861)] = 83926, - [SMALL_STATE(2862)] = 84021, - [SMALL_STATE(2863)] = 84108, - [SMALL_STATE(2864)] = 84203, - [SMALL_STATE(2865)] = 84252, - [SMALL_STATE(2866)] = 84347, - [SMALL_STATE(2867)] = 84436, - [SMALL_STATE(2868)] = 84485, - [SMALL_STATE(2869)] = 84580, - [SMALL_STATE(2870)] = 84633, - [SMALL_STATE(2871)] = 84728, - [SMALL_STATE(2872)] = 84823, - [SMALL_STATE(2873)] = 84876, - [SMALL_STATE(2874)] = 84971, - [SMALL_STATE(2875)] = 85058, - [SMALL_STATE(2876)] = 85153, - [SMALL_STATE(2877)] = 85242, - [SMALL_STATE(2878)] = 85337, - [SMALL_STATE(2879)] = 85432, - [SMALL_STATE(2880)] = 85479, - [SMALL_STATE(2881)] = 85574, - [SMALL_STATE(2882)] = 85621, - [SMALL_STATE(2883)] = 85716, - [SMALL_STATE(2884)] = 85811, - [SMALL_STATE(2885)] = 85857, - [SMALL_STATE(2886)] = 85903, - [SMALL_STATE(2887)] = 85949, - [SMALL_STATE(2888)] = 86037, - [SMALL_STATE(2889)] = 86119, - [SMALL_STATE(2890)] = 86167, - [SMALL_STATE(2891)] = 86213, - [SMALL_STATE(2892)] = 86259, - [SMALL_STATE(2893)] = 86307, - [SMALL_STATE(2894)] = 86353, - [SMALL_STATE(2895)] = 86399, - [SMALL_STATE(2896)] = 86481, - [SMALL_STATE(2897)] = 86529, - [SMALL_STATE(2898)] = 86575, - [SMALL_STATE(2899)] = 86657, - [SMALL_STATE(2900)] = 86705, - [SMALL_STATE(2901)] = 86753, - [SMALL_STATE(2902)] = 86801, - [SMALL_STATE(2903)] = 86847, - [SMALL_STATE(2904)] = 86893, - [SMALL_STATE(2905)] = 86939, - [SMALL_STATE(2906)] = 86985, - [SMALL_STATE(2907)] = 87033, - [SMALL_STATE(2908)] = 87079, - [SMALL_STATE(2909)] = 87125, - [SMALL_STATE(2910)] = 87171, - [SMALL_STATE(2911)] = 87217, - [SMALL_STATE(2912)] = 87263, - [SMALL_STATE(2913)] = 87345, - [SMALL_STATE(2914)] = 87391, - [SMALL_STATE(2915)] = 87437, - [SMALL_STATE(2916)] = 87483, - [SMALL_STATE(2917)] = 87531, - [SMALL_STATE(2918)] = 87579, - [SMALL_STATE(2919)] = 87625, - [SMALL_STATE(2920)] = 87671, - [SMALL_STATE(2921)] = 87719, - [SMALL_STATE(2922)] = 87765, - [SMALL_STATE(2923)] = 87811, - [SMALL_STATE(2924)] = 87893, - [SMALL_STATE(2925)] = 87975, - [SMALL_STATE(2926)] = 88023, - [SMALL_STATE(2927)] = 88069, - [SMALL_STATE(2928)] = 88115, - [SMALL_STATE(2929)] = 88161, - [SMALL_STATE(2930)] = 88209, - [SMALL_STATE(2931)] = 88257, - [SMALL_STATE(2932)] = 88305, - [SMALL_STATE(2933)] = 88351, - [SMALL_STATE(2934)] = 88397, - [SMALL_STATE(2935)] = 88446, - [SMALL_STATE(2936)] = 88493, - [SMALL_STATE(2937)] = 88540, - [SMALL_STATE(2938)] = 88587, - [SMALL_STATE(2939)] = 88636, - [SMALL_STATE(2940)] = 88683, - [SMALL_STATE(2941)] = 88730, - [SMALL_STATE(2942)] = 88777, - [SMALL_STATE(2943)] = 88824, - [SMALL_STATE(2944)] = 88871, - [SMALL_STATE(2945)] = 88920, - [SMALL_STATE(2946)] = 88969, - [SMALL_STATE(2947)] = 89018, - [SMALL_STATE(2948)] = 89067, - [SMALL_STATE(2949)] = 89114, - [SMALL_STATE(2950)] = 89161, - [SMALL_STATE(2951)] = 89208, - [SMALL_STATE(2952)] = 89257, - [SMALL_STATE(2953)] = 89304, - [SMALL_STATE(2954)] = 89351, - [SMALL_STATE(2955)] = 89400, - [SMALL_STATE(2956)] = 89449, - [SMALL_STATE(2957)] = 89496, - [SMALL_STATE(2958)] = 89543, - [SMALL_STATE(2959)] = 89590, - [SMALL_STATE(2960)] = 89639, - [SMALL_STATE(2961)] = 89686, - [SMALL_STATE(2962)] = 89733, - [SMALL_STATE(2963)] = 89780, - [SMALL_STATE(2964)] = 89829, - [SMALL_STATE(2965)] = 89878, - [SMALL_STATE(2966)] = 89927, - [SMALL_STATE(2967)] = 89974, - [SMALL_STATE(2968)] = 90021, - [SMALL_STATE(2969)] = 90070, - [SMALL_STATE(2970)] = 90117, - [SMALL_STATE(2971)] = 90164, - [SMALL_STATE(2972)] = 90211, - [SMALL_STATE(2973)] = 90260, - [SMALL_STATE(2974)] = 90309, - [SMALL_STATE(2975)] = 90356, - [SMALL_STATE(2976)] = 90405, - [SMALL_STATE(2977)] = 90452, - [SMALL_STATE(2978)] = 90501, - [SMALL_STATE(2979)] = 90548, - [SMALL_STATE(2980)] = 90595, - [SMALL_STATE(2981)] = 90642, - [SMALL_STATE(2982)] = 90689, - [SMALL_STATE(2983)] = 90738, - [SMALL_STATE(2984)] = 90787, - [SMALL_STATE(2985)] = 90836, - [SMALL_STATE(2986)] = 90885, - [SMALL_STATE(2987)] = 90932, - [SMALL_STATE(2988)] = 90981, - [SMALL_STATE(2989)] = 91028, - [SMALL_STATE(2990)] = 91075, - [SMALL_STATE(2991)] = 91124, - [SMALL_STATE(2992)] = 91173, - [SMALL_STATE(2993)] = 91220, - [SMALL_STATE(2994)] = 91267, - [SMALL_STATE(2995)] = 91314, - [SMALL_STATE(2996)] = 91361, - [SMALL_STATE(2997)] = 91408, - [SMALL_STATE(2998)] = 91455, - [SMALL_STATE(2999)] = 91504, - [SMALL_STATE(3000)] = 91551, - [SMALL_STATE(3001)] = 91598, - [SMALL_STATE(3002)] = 91647, - [SMALL_STATE(3003)] = 91696, - [SMALL_STATE(3004)] = 91743, - [SMALL_STATE(3005)] = 91790, - [SMALL_STATE(3006)] = 91837, - [SMALL_STATE(3007)] = 91919, - [SMALL_STATE(3008)] = 92001, - [SMALL_STATE(3009)] = 92080, - [SMALL_STATE(3010)] = 92159, - [SMALL_STATE(3011)] = 92238, - [SMALL_STATE(3012)] = 92317, - [SMALL_STATE(3013)] = 92396, - [SMALL_STATE(3014)] = 92475, - [SMALL_STATE(3015)] = 92554, - [SMALL_STATE(3016)] = 92633, - [SMALL_STATE(3017)] = 92712, - [SMALL_STATE(3018)] = 92791, - [SMALL_STATE(3019)] = 92870, - [SMALL_STATE(3020)] = 92949, - [SMALL_STATE(3021)] = 93028, - [SMALL_STATE(3022)] = 93107, - [SMALL_STATE(3023)] = 93186, - [SMALL_STATE(3024)] = 93265, - [SMALL_STATE(3025)] = 93344, - [SMALL_STATE(3026)] = 93423, - [SMALL_STATE(3027)] = 93502, - [SMALL_STATE(3028)] = 93581, - [SMALL_STATE(3029)] = 93660, - [SMALL_STATE(3030)] = 93739, - [SMALL_STATE(3031)] = 93818, - [SMALL_STATE(3032)] = 93897, - [SMALL_STATE(3033)] = 93976, - [SMALL_STATE(3034)] = 94055, - [SMALL_STATE(3035)] = 94134, - [SMALL_STATE(3036)] = 94213, - [SMALL_STATE(3037)] = 94292, - [SMALL_STATE(3038)] = 94371, - [SMALL_STATE(3039)] = 94450, - [SMALL_STATE(3040)] = 94529, - [SMALL_STATE(3041)] = 94608, - [SMALL_STATE(3042)] = 94687, - [SMALL_STATE(3043)] = 94766, - [SMALL_STATE(3044)] = 94819, - [SMALL_STATE(3045)] = 94898, - [SMALL_STATE(3046)] = 94977, - [SMALL_STATE(3047)] = 95053, - [SMALL_STATE(3048)] = 95129, - [SMALL_STATE(3049)] = 95205, - [SMALL_STATE(3050)] = 95281, - [SMALL_STATE(3051)] = 95357, - [SMALL_STATE(3052)] = 95433, - [SMALL_STATE(3053)] = 95509, - [SMALL_STATE(3054)] = 95585, - [SMALL_STATE(3055)] = 95661, - [SMALL_STATE(3056)] = 95737, - [SMALL_STATE(3057)] = 95813, - [SMALL_STATE(3058)] = 95889, - [SMALL_STATE(3059)] = 95965, - [SMALL_STATE(3060)] = 96041, - [SMALL_STATE(3061)] = 96117, - [SMALL_STATE(3062)] = 96193, - [SMALL_STATE(3063)] = 96269, - [SMALL_STATE(3064)] = 96345, - [SMALL_STATE(3065)] = 96421, - [SMALL_STATE(3066)] = 96497, - [SMALL_STATE(3067)] = 96573, - [SMALL_STATE(3068)] = 96649, - [SMALL_STATE(3069)] = 96725, - [SMALL_STATE(3070)] = 96801, - [SMALL_STATE(3071)] = 96877, - [SMALL_STATE(3072)] = 96953, - [SMALL_STATE(3073)] = 97029, - [SMALL_STATE(3074)] = 97105, - [SMALL_STATE(3075)] = 97181, - [SMALL_STATE(3076)] = 97257, - [SMALL_STATE(3077)] = 97333, - [SMALL_STATE(3078)] = 97409, - [SMALL_STATE(3079)] = 97485, - [SMALL_STATE(3080)] = 97561, - [SMALL_STATE(3081)] = 97637, - [SMALL_STATE(3082)] = 97713, - [SMALL_STATE(3083)] = 97789, - [SMALL_STATE(3084)] = 97865, - [SMALL_STATE(3085)] = 97941, - [SMALL_STATE(3086)] = 98017, - [SMALL_STATE(3087)] = 98093, - [SMALL_STATE(3088)] = 98169, - [SMALL_STATE(3089)] = 98245, - [SMALL_STATE(3090)] = 98321, - [SMALL_STATE(3091)] = 98397, - [SMALL_STATE(3092)] = 98473, - [SMALL_STATE(3093)] = 98549, - [SMALL_STATE(3094)] = 98625, - [SMALL_STATE(3095)] = 98701, - [SMALL_STATE(3096)] = 98777, - [SMALL_STATE(3097)] = 98853, - [SMALL_STATE(3098)] = 98929, - [SMALL_STATE(3099)] = 99005, - [SMALL_STATE(3100)] = 99081, - [SMALL_STATE(3101)] = 99157, - [SMALL_STATE(3102)] = 99233, - [SMALL_STATE(3103)] = 99309, - [SMALL_STATE(3104)] = 99385, - [SMALL_STATE(3105)] = 99461, - [SMALL_STATE(3106)] = 99537, - [SMALL_STATE(3107)] = 99613, - [SMALL_STATE(3108)] = 99689, - [SMALL_STATE(3109)] = 99765, - [SMALL_STATE(3110)] = 99841, - [SMALL_STATE(3111)] = 99917, - [SMALL_STATE(3112)] = 99993, - [SMALL_STATE(3113)] = 100069, - [SMALL_STATE(3114)] = 100145, - [SMALL_STATE(3115)] = 100221, - [SMALL_STATE(3116)] = 100297, - [SMALL_STATE(3117)] = 100373, - [SMALL_STATE(3118)] = 100449, - [SMALL_STATE(3119)] = 100525, - [SMALL_STATE(3120)] = 100601, - [SMALL_STATE(3121)] = 100677, - [SMALL_STATE(3122)] = 100753, - [SMALL_STATE(3123)] = 100829, - [SMALL_STATE(3124)] = 100905, - [SMALL_STATE(3125)] = 100981, - [SMALL_STATE(3126)] = 101057, - [SMALL_STATE(3127)] = 101133, - [SMALL_STATE(3128)] = 101209, - [SMALL_STATE(3129)] = 101285, - [SMALL_STATE(3130)] = 101361, - [SMALL_STATE(3131)] = 101437, - [SMALL_STATE(3132)] = 101513, - [SMALL_STATE(3133)] = 101589, - [SMALL_STATE(3134)] = 101665, - [SMALL_STATE(3135)] = 101741, - [SMALL_STATE(3136)] = 101817, - [SMALL_STATE(3137)] = 101893, - [SMALL_STATE(3138)] = 101969, - [SMALL_STATE(3139)] = 102045, - [SMALL_STATE(3140)] = 102121, - [SMALL_STATE(3141)] = 102197, - [SMALL_STATE(3142)] = 102273, - [SMALL_STATE(3143)] = 102349, - [SMALL_STATE(3144)] = 102425, - [SMALL_STATE(3145)] = 102501, - [SMALL_STATE(3146)] = 102577, - [SMALL_STATE(3147)] = 102653, - [SMALL_STATE(3148)] = 102729, - [SMALL_STATE(3149)] = 102805, - [SMALL_STATE(3150)] = 102881, - [SMALL_STATE(3151)] = 102957, - [SMALL_STATE(3152)] = 103033, - [SMALL_STATE(3153)] = 103109, - [SMALL_STATE(3154)] = 103185, - [SMALL_STATE(3155)] = 103261, - [SMALL_STATE(3156)] = 103337, - [SMALL_STATE(3157)] = 103413, - [SMALL_STATE(3158)] = 103489, - [SMALL_STATE(3159)] = 103565, - [SMALL_STATE(3160)] = 103641, - [SMALL_STATE(3161)] = 103717, - [SMALL_STATE(3162)] = 103793, - [SMALL_STATE(3163)] = 103869, - [SMALL_STATE(3164)] = 103945, - [SMALL_STATE(3165)] = 104021, - [SMALL_STATE(3166)] = 104097, - [SMALL_STATE(3167)] = 104173, - [SMALL_STATE(3168)] = 104249, - [SMALL_STATE(3169)] = 104325, - [SMALL_STATE(3170)] = 104401, - [SMALL_STATE(3171)] = 104477, - [SMALL_STATE(3172)] = 104553, - [SMALL_STATE(3173)] = 104629, - [SMALL_STATE(3174)] = 104705, - [SMALL_STATE(3175)] = 104781, - [SMALL_STATE(3176)] = 104857, - [SMALL_STATE(3177)] = 104933, - [SMALL_STATE(3178)] = 105009, - [SMALL_STATE(3179)] = 105085, - [SMALL_STATE(3180)] = 105161, - [SMALL_STATE(3181)] = 105237, - [SMALL_STATE(3182)] = 105313, - [SMALL_STATE(3183)] = 105389, - [SMALL_STATE(3184)] = 105465, - [SMALL_STATE(3185)] = 105541, - [SMALL_STATE(3186)] = 105617, - [SMALL_STATE(3187)] = 105693, - [SMALL_STATE(3188)] = 105769, - [SMALL_STATE(3189)] = 105845, - [SMALL_STATE(3190)] = 105921, - [SMALL_STATE(3191)] = 105997, - [SMALL_STATE(3192)] = 106073, - [SMALL_STATE(3193)] = 106149, - [SMALL_STATE(3194)] = 106225, - [SMALL_STATE(3195)] = 106301, - [SMALL_STATE(3196)] = 106377, - [SMALL_STATE(3197)] = 106453, - [SMALL_STATE(3198)] = 106529, - [SMALL_STATE(3199)] = 106605, - [SMALL_STATE(3200)] = 106681, - [SMALL_STATE(3201)] = 106757, - [SMALL_STATE(3202)] = 106833, - [SMALL_STATE(3203)] = 106909, - [SMALL_STATE(3204)] = 106985, - [SMALL_STATE(3205)] = 107061, - [SMALL_STATE(3206)] = 107137, - [SMALL_STATE(3207)] = 107213, - [SMALL_STATE(3208)] = 107289, - [SMALL_STATE(3209)] = 107365, - [SMALL_STATE(3210)] = 107441, - [SMALL_STATE(3211)] = 107517, - [SMALL_STATE(3212)] = 107593, - [SMALL_STATE(3213)] = 107669, - [SMALL_STATE(3214)] = 107745, - [SMALL_STATE(3215)] = 107821, - [SMALL_STATE(3216)] = 107897, - [SMALL_STATE(3217)] = 107973, - [SMALL_STATE(3218)] = 108049, - [SMALL_STATE(3219)] = 108125, - [SMALL_STATE(3220)] = 108201, - [SMALL_STATE(3221)] = 108277, - [SMALL_STATE(3222)] = 108353, - [SMALL_STATE(3223)] = 108429, - [SMALL_STATE(3224)] = 108505, - [SMALL_STATE(3225)] = 108581, - [SMALL_STATE(3226)] = 108657, - [SMALL_STATE(3227)] = 108733, - [SMALL_STATE(3228)] = 108809, - [SMALL_STATE(3229)] = 108885, - [SMALL_STATE(3230)] = 108961, - [SMALL_STATE(3231)] = 109037, - [SMALL_STATE(3232)] = 109113, - [SMALL_STATE(3233)] = 109189, - [SMALL_STATE(3234)] = 109265, - [SMALL_STATE(3235)] = 109341, - [SMALL_STATE(3236)] = 109417, - [SMALL_STATE(3237)] = 109493, - [SMALL_STATE(3238)] = 109569, - [SMALL_STATE(3239)] = 109645, - [SMALL_STATE(3240)] = 109721, - [SMALL_STATE(3241)] = 109797, - [SMALL_STATE(3242)] = 109873, - [SMALL_STATE(3243)] = 109949, - [SMALL_STATE(3244)] = 110025, - [SMALL_STATE(3245)] = 110101, - [SMALL_STATE(3246)] = 110177, - [SMALL_STATE(3247)] = 110253, - [SMALL_STATE(3248)] = 110329, - [SMALL_STATE(3249)] = 110405, - [SMALL_STATE(3250)] = 110481, - [SMALL_STATE(3251)] = 110557, - [SMALL_STATE(3252)] = 110633, - [SMALL_STATE(3253)] = 110709, - [SMALL_STATE(3254)] = 110785, - [SMALL_STATE(3255)] = 110861, - [SMALL_STATE(3256)] = 110937, - [SMALL_STATE(3257)] = 111013, - [SMALL_STATE(3258)] = 111089, - [SMALL_STATE(3259)] = 111165, - [SMALL_STATE(3260)] = 111241, - [SMALL_STATE(3261)] = 111317, - [SMALL_STATE(3262)] = 111393, - [SMALL_STATE(3263)] = 111469, - [SMALL_STATE(3264)] = 111545, - [SMALL_STATE(3265)] = 111621, - [SMALL_STATE(3266)] = 111697, - [SMALL_STATE(3267)] = 111773, - [SMALL_STATE(3268)] = 111849, - [SMALL_STATE(3269)] = 111925, - [SMALL_STATE(3270)] = 112001, - [SMALL_STATE(3271)] = 112077, - [SMALL_STATE(3272)] = 112153, - [SMALL_STATE(3273)] = 112229, - [SMALL_STATE(3274)] = 112305, - [SMALL_STATE(3275)] = 112381, - [SMALL_STATE(3276)] = 112457, - [SMALL_STATE(3277)] = 112533, - [SMALL_STATE(3278)] = 112609, - [SMALL_STATE(3279)] = 112685, - [SMALL_STATE(3280)] = 112761, - [SMALL_STATE(3281)] = 112837, - [SMALL_STATE(3282)] = 112913, - [SMALL_STATE(3283)] = 112989, - [SMALL_STATE(3284)] = 113065, - [SMALL_STATE(3285)] = 113141, - [SMALL_STATE(3286)] = 113217, - [SMALL_STATE(3287)] = 113293, - [SMALL_STATE(3288)] = 113369, - [SMALL_STATE(3289)] = 113445, - [SMALL_STATE(3290)] = 113521, - [SMALL_STATE(3291)] = 113597, - [SMALL_STATE(3292)] = 113673, - [SMALL_STATE(3293)] = 113749, - [SMALL_STATE(3294)] = 113825, - [SMALL_STATE(3295)] = 113901, - [SMALL_STATE(3296)] = 113977, - [SMALL_STATE(3297)] = 114053, - [SMALL_STATE(3298)] = 114129, - [SMALL_STATE(3299)] = 114205, - [SMALL_STATE(3300)] = 114281, - [SMALL_STATE(3301)] = 114357, - [SMALL_STATE(3302)] = 114433, - [SMALL_STATE(3303)] = 114509, - [SMALL_STATE(3304)] = 114585, - [SMALL_STATE(3305)] = 114661, - [SMALL_STATE(3306)] = 114737, - [SMALL_STATE(3307)] = 114813, - [SMALL_STATE(3308)] = 114889, - [SMALL_STATE(3309)] = 114965, - [SMALL_STATE(3310)] = 115041, - [SMALL_STATE(3311)] = 115117, - [SMALL_STATE(3312)] = 115178, - [SMALL_STATE(3313)] = 115239, - [SMALL_STATE(3314)] = 115300, - [SMALL_STATE(3315)] = 115365, - [SMALL_STATE(3316)] = 115426, - [SMALL_STATE(3317)] = 115487, - [SMALL_STATE(3318)] = 115552, - [SMALL_STATE(3319)] = 115613, - [SMALL_STATE(3320)] = 115674, - [SMALL_STATE(3321)] = 115735, - [SMALL_STATE(3322)] = 115796, - [SMALL_STATE(3323)] = 115857, - [SMALL_STATE(3324)] = 115918, - [SMALL_STATE(3325)] = 115979, - [SMALL_STATE(3326)] = 116040, - [SMALL_STATE(3327)] = 116101, - [SMALL_STATE(3328)] = 116161, - [SMALL_STATE(3329)] = 116191, - [SMALL_STATE(3330)] = 116221, - [SMALL_STATE(3331)] = 116251, - [SMALL_STATE(3332)] = 116281, - [SMALL_STATE(3333)] = 116311, - [SMALL_STATE(3334)] = 116341, - [SMALL_STATE(3335)] = 116367, - [SMALL_STATE(3336)] = 116393, - [SMALL_STATE(3337)] = 116419, - [SMALL_STATE(3338)] = 116457, - [SMALL_STATE(3339)] = 116495, - [SMALL_STATE(3340)] = 116533, - [SMALL_STATE(3341)] = 116559, - [SMALL_STATE(3342)] = 116603, - [SMALL_STATE(3343)] = 116629, - [SMALL_STATE(3344)] = 116652, - [SMALL_STATE(3345)] = 116675, - [SMALL_STATE(3346)] = 116702, - [SMALL_STATE(3347)] = 116725, - [SMALL_STATE(3348)] = 116752, - [SMALL_STATE(3349)] = 116781, - [SMALL_STATE(3350)] = 116807, - [SMALL_STATE(3351)] = 116833, - [SMALL_STATE(3352)] = 116859, - [SMALL_STATE(3353)] = 116885, - [SMALL_STATE(3354)] = 116911, - [SMALL_STATE(3355)] = 116937, - [SMALL_STATE(3356)] = 116963, - [SMALL_STATE(3357)] = 116989, - [SMALL_STATE(3358)] = 117015, - [SMALL_STATE(3359)] = 117038, - [SMALL_STATE(3360)] = 117063, - [SMALL_STATE(3361)] = 117086, - [SMALL_STATE(3362)] = 117127, - [SMALL_STATE(3363)] = 117168, - [SMALL_STATE(3364)] = 117209, - [SMALL_STATE(3365)] = 117235, - [SMALL_STATE(3366)] = 117275, - [SMALL_STATE(3367)] = 117297, - [SMALL_STATE(3368)] = 117337, - [SMALL_STATE(3369)] = 117377, - [SMALL_STATE(3370)] = 117417, - [SMALL_STATE(3371)] = 117457, - [SMALL_STATE(3372)] = 117481, - [SMALL_STATE(3373)] = 117521, - [SMALL_STATE(3374)] = 117561, - [SMALL_STATE(3375)] = 117601, - [SMALL_STATE(3376)] = 117641, - [SMALL_STATE(3377)] = 117681, - [SMALL_STATE(3378)] = 117707, - [SMALL_STATE(3379)] = 117747, - [SMALL_STATE(3380)] = 117787, - [SMALL_STATE(3381)] = 117827, - [SMALL_STATE(3382)] = 117849, - [SMALL_STATE(3383)] = 117889, - [SMALL_STATE(3384)] = 117911, - [SMALL_STATE(3385)] = 117951, - [SMALL_STATE(3386)] = 117991, - [SMALL_STATE(3387)] = 118031, - [SMALL_STATE(3388)] = 118071, - [SMALL_STATE(3389)] = 118111, - [SMALL_STATE(3390)] = 118151, - [SMALL_STATE(3391)] = 118175, - [SMALL_STATE(3392)] = 118215, - [SMALL_STATE(3393)] = 118241, - [SMALL_STATE(3394)] = 118281, - [SMALL_STATE(3395)] = 118307, - [SMALL_STATE(3396)] = 118329, - [SMALL_STATE(3397)] = 118369, - [SMALL_STATE(3398)] = 118409, - [SMALL_STATE(3399)] = 118435, - [SMALL_STATE(3400)] = 118475, - [SMALL_STATE(3401)] = 118501, - [SMALL_STATE(3402)] = 118523, - [SMALL_STATE(3403)] = 118549, - [SMALL_STATE(3404)] = 118589, - [SMALL_STATE(3405)] = 118611, - [SMALL_STATE(3406)] = 118637, - [SMALL_STATE(3407)] = 118677, - [SMALL_STATE(3408)] = 118699, - [SMALL_STATE(3409)] = 118739, - [SMALL_STATE(3410)] = 118779, - [SMALL_STATE(3411)] = 118798, - [SMALL_STATE(3412)] = 118823, - [SMALL_STATE(3413)] = 118842, - [SMALL_STATE(3414)] = 118867, - [SMALL_STATE(3415)] = 118886, - [SMALL_STATE(3416)] = 118910, - [SMALL_STATE(3417)] = 118930, - [SMALL_STATE(3418)] = 118950, - [SMALL_STATE(3419)] = 118967, - [SMALL_STATE(3420)] = 118984, - [SMALL_STATE(3421)] = 119001, - [SMALL_STATE(3422)] = 119018, - [SMALL_STATE(3423)] = 119035, - [SMALL_STATE(3424)] = 119056, - [SMALL_STATE(3425)] = 119079, - [SMALL_STATE(3426)] = 119096, - [SMALL_STATE(3427)] = 119113, - [SMALL_STATE(3428)] = 119130, - [SMALL_STATE(3429)] = 119147, - [SMALL_STATE(3430)] = 119164, - [SMALL_STATE(3431)] = 119181, - [SMALL_STATE(3432)] = 119198, - [SMALL_STATE(3433)] = 119219, - [SMALL_STATE(3434)] = 119236, - [SMALL_STATE(3435)] = 119253, - [SMALL_STATE(3436)] = 119270, - [SMALL_STATE(3437)] = 119287, - [SMALL_STATE(3438)] = 119304, - [SMALL_STATE(3439)] = 119321, - [SMALL_STATE(3440)] = 119338, - [SMALL_STATE(3441)] = 119355, - [SMALL_STATE(3442)] = 119372, - [SMALL_STATE(3443)] = 119389, - [SMALL_STATE(3444)] = 119421, - [SMALL_STATE(3445)] = 119443, - [SMALL_STATE(3446)] = 119463, - [SMALL_STATE(3447)] = 119490, - [SMALL_STATE(3448)] = 119517, - [SMALL_STATE(3449)] = 119532, - [SMALL_STATE(3450)] = 119559, - [SMALL_STATE(3451)] = 119578, - [SMALL_STATE(3452)] = 119605, - [SMALL_STATE(3453)] = 119632, - [SMALL_STATE(3454)] = 119659, - [SMALL_STATE(3455)] = 119686, - [SMALL_STATE(3456)] = 119713, - [SMALL_STATE(3457)] = 119740, - [SMALL_STATE(3458)] = 119767, - [SMALL_STATE(3459)] = 119788, - [SMALL_STATE(3460)] = 119815, - [SMALL_STATE(3461)] = 119842, - [SMALL_STATE(3462)] = 119863, - [SMALL_STATE(3463)] = 119880, - [SMALL_STATE(3464)] = 119909, - [SMALL_STATE(3465)] = 119923, - [SMALL_STATE(3466)] = 119939, - [SMALL_STATE(3467)] = 119965, - [SMALL_STATE(3468)] = 119979, - [SMALL_STATE(3469)] = 120001, - [SMALL_STATE(3470)] = 120019, - [SMALL_STATE(3471)] = 120037, - [SMALL_STATE(3472)] = 120065, - [SMALL_STATE(3473)] = 120091, - [SMALL_STATE(3474)] = 120105, - [SMALL_STATE(3475)] = 120119, - [SMALL_STATE(3476)] = 120133, - [SMALL_STATE(3477)] = 120149, - [SMALL_STATE(3478)] = 120163, - [SMALL_STATE(3479)] = 120177, - [SMALL_STATE(3480)] = 120193, - [SMALL_STATE(3481)] = 120207, - [SMALL_STATE(3482)] = 120221, - [SMALL_STATE(3483)] = 120239, - [SMALL_STATE(3484)] = 120260, - [SMALL_STATE(3485)] = 120277, - [SMALL_STATE(3486)] = 120294, - [SMALL_STATE(3487)] = 120311, - [SMALL_STATE(3488)] = 120332, - [SMALL_STATE(3489)] = 120357, - [SMALL_STATE(3490)] = 120374, - [SMALL_STATE(3491)] = 120395, - [SMALL_STATE(3492)] = 120412, - [SMALL_STATE(3493)] = 120429, - [SMALL_STATE(3494)] = 120450, - [SMALL_STATE(3495)] = 120467, - [SMALL_STATE(3496)] = 120488, - [SMALL_STATE(3497)] = 120501, - [SMALL_STATE(3498)] = 120518, - [SMALL_STATE(3499)] = 120535, - [SMALL_STATE(3500)] = 120556, - [SMALL_STATE(3501)] = 120581, - [SMALL_STATE(3502)] = 120598, - [SMALL_STATE(3503)] = 120615, - [SMALL_STATE(3504)] = 120636, - [SMALL_STATE(3505)] = 120653, - [SMALL_STATE(3506)] = 120670, - [SMALL_STATE(3507)] = 120691, - [SMALL_STATE(3508)] = 120712, - [SMALL_STATE(3509)] = 120729, - [SMALL_STATE(3510)] = 120750, - [SMALL_STATE(3511)] = 120767, - [SMALL_STATE(3512)] = 120788, - [SMALL_STATE(3513)] = 120805, - [SMALL_STATE(3514)] = 120826, - [SMALL_STATE(3515)] = 120847, - [SMALL_STATE(3516)] = 120868, - [SMALL_STATE(3517)] = 120885, - [SMALL_STATE(3518)] = 120908, - [SMALL_STATE(3519)] = 120925, - [SMALL_STATE(3520)] = 120942, - [SMALL_STATE(3521)] = 120959, - [SMALL_STATE(3522)] = 120980, - [SMALL_STATE(3523)] = 121001, - [SMALL_STATE(3524)] = 121018, - [SMALL_STATE(3525)] = 121035, - [SMALL_STATE(3526)] = 121056, - [SMALL_STATE(3527)] = 121069, - [SMALL_STATE(3528)] = 121086, - [SMALL_STATE(3529)] = 121107, - [SMALL_STATE(3530)] = 121128, - [SMALL_STATE(3531)] = 121149, - [SMALL_STATE(3532)] = 121166, - [SMALL_STATE(3533)] = 121183, - [SMALL_STATE(3534)] = 121196, - [SMALL_STATE(3535)] = 121217, - [SMALL_STATE(3536)] = 121238, - [SMALL_STATE(3537)] = 121259, - [SMALL_STATE(3538)] = 121280, - [SMALL_STATE(3539)] = 121297, - [SMALL_STATE(3540)] = 121317, - [SMALL_STATE(3541)] = 121337, - [SMALL_STATE(3542)] = 121353, - [SMALL_STATE(3543)] = 121373, - [SMALL_STATE(3544)] = 121393, - [SMALL_STATE(3545)] = 121413, - [SMALL_STATE(3546)] = 121433, - [SMALL_STATE(3547)] = 121453, - [SMALL_STATE(3548)] = 121473, - [SMALL_STATE(3549)] = 121493, - [SMALL_STATE(3550)] = 121513, - [SMALL_STATE(3551)] = 121529, - [SMALL_STATE(3552)] = 121549, - [SMALL_STATE(3553)] = 121569, - [SMALL_STATE(3554)] = 121589, - [SMALL_STATE(3555)] = 121609, - [SMALL_STATE(3556)] = 121629, - [SMALL_STATE(3557)] = 121649, - [SMALL_STATE(3558)] = 121669, - [SMALL_STATE(3559)] = 121689, - [SMALL_STATE(3560)] = 121705, - [SMALL_STATE(3561)] = 121725, - [SMALL_STATE(3562)] = 121741, - [SMALL_STATE(3563)] = 121761, - [SMALL_STATE(3564)] = 121781, - [SMALL_STATE(3565)] = 121801, - [SMALL_STATE(3566)] = 121821, - [SMALL_STATE(3567)] = 121837, - [SMALL_STATE(3568)] = 121851, - [SMALL_STATE(3569)] = 121873, - [SMALL_STATE(3570)] = 121889, - [SMALL_STATE(3571)] = 121901, - [SMALL_STATE(3572)] = 121921, - [SMALL_STATE(3573)] = 121941, - [SMALL_STATE(3574)] = 121961, - [SMALL_STATE(3575)] = 121981, - [SMALL_STATE(3576)] = 122001, - [SMALL_STATE(3577)] = 122021, - [SMALL_STATE(3578)] = 122041, - [SMALL_STATE(3579)] = 122061, - [SMALL_STATE(3580)] = 122081, - [SMALL_STATE(3581)] = 122101, - [SMALL_STATE(3582)] = 122117, - [SMALL_STATE(3583)] = 122137, - [SMALL_STATE(3584)] = 122157, - [SMALL_STATE(3585)] = 122177, - [SMALL_STATE(3586)] = 122197, - [SMALL_STATE(3587)] = 122217, - [SMALL_STATE(3588)] = 122237, - [SMALL_STATE(3589)] = 122257, - [SMALL_STATE(3590)] = 122277, - [SMALL_STATE(3591)] = 122297, - [SMALL_STATE(3592)] = 122317, - [SMALL_STATE(3593)] = 122337, - [SMALL_STATE(3594)] = 122357, - [SMALL_STATE(3595)] = 122377, - [SMALL_STATE(3596)] = 122397, - [SMALL_STATE(3597)] = 122417, - [SMALL_STATE(3598)] = 122437, - [SMALL_STATE(3599)] = 122457, - [SMALL_STATE(3600)] = 122477, - [SMALL_STATE(3601)] = 122497, - [SMALL_STATE(3602)] = 122517, - [SMALL_STATE(3603)] = 122537, - [SMALL_STATE(3604)] = 122557, - [SMALL_STATE(3605)] = 122577, - [SMALL_STATE(3606)] = 122597, - [SMALL_STATE(3607)] = 122617, - [SMALL_STATE(3608)] = 122637, - [SMALL_STATE(3609)] = 122657, - [SMALL_STATE(3610)] = 122677, - [SMALL_STATE(3611)] = 122697, - [SMALL_STATE(3612)] = 122717, - [SMALL_STATE(3613)] = 122737, - [SMALL_STATE(3614)] = 122757, - [SMALL_STATE(3615)] = 122777, - [SMALL_STATE(3616)] = 122797, - [SMALL_STATE(3617)] = 122817, - [SMALL_STATE(3618)] = 122837, - [SMALL_STATE(3619)] = 122857, - [SMALL_STATE(3620)] = 122877, - [SMALL_STATE(3621)] = 122897, - [SMALL_STATE(3622)] = 122917, - [SMALL_STATE(3623)] = 122933, - [SMALL_STATE(3624)] = 122953, - [SMALL_STATE(3625)] = 122973, - [SMALL_STATE(3626)] = 122993, - [SMALL_STATE(3627)] = 123013, - [SMALL_STATE(3628)] = 123033, - [SMALL_STATE(3629)] = 123045, - [SMALL_STATE(3630)] = 123065, - [SMALL_STATE(3631)] = 123085, - [SMALL_STATE(3632)] = 123105, - [SMALL_STATE(3633)] = 123125, - [SMALL_STATE(3634)] = 123145, - [SMALL_STATE(3635)] = 123165, - [SMALL_STATE(3636)] = 123185, - [SMALL_STATE(3637)] = 123201, - [SMALL_STATE(3638)] = 123221, - [SMALL_STATE(3639)] = 123237, - [SMALL_STATE(3640)] = 123257, - [SMALL_STATE(3641)] = 123273, - [SMALL_STATE(3642)] = 123293, - [SMALL_STATE(3643)] = 123313, - [SMALL_STATE(3644)] = 123333, - [SMALL_STATE(3645)] = 123353, - [SMALL_STATE(3646)] = 123373, - [SMALL_STATE(3647)] = 123393, - [SMALL_STATE(3648)] = 123413, - [SMALL_STATE(3649)] = 123433, - [SMALL_STATE(3650)] = 123453, - [SMALL_STATE(3651)] = 123473, - [SMALL_STATE(3652)] = 123493, - [SMALL_STATE(3653)] = 123513, - [SMALL_STATE(3654)] = 123535, - [SMALL_STATE(3655)] = 123552, - [SMALL_STATE(3656)] = 123563, - [SMALL_STATE(3657)] = 123582, - [SMALL_STATE(3658)] = 123601, - [SMALL_STATE(3659)] = 123620, - [SMALL_STATE(3660)] = 123637, - [SMALL_STATE(3661)] = 123654, - [SMALL_STATE(3662)] = 123669, - [SMALL_STATE(3663)] = 123686, - [SMALL_STATE(3664)] = 123701, - [SMALL_STATE(3665)] = 123718, - [SMALL_STATE(3666)] = 123729, - [SMALL_STATE(3667)] = 123744, - [SMALL_STATE(3668)] = 123763, - [SMALL_STATE(3669)] = 123782, - [SMALL_STATE(3670)] = 123793, - [SMALL_STATE(3671)] = 123804, - [SMALL_STATE(3672)] = 123817, - [SMALL_STATE(3673)] = 123832, - [SMALL_STATE(3674)] = 123849, - [SMALL_STATE(3675)] = 123860, - [SMALL_STATE(3676)] = 123875, - [SMALL_STATE(3677)] = 123892, - [SMALL_STATE(3678)] = 123905, - [SMALL_STATE(3679)] = 123922, - [SMALL_STATE(3680)] = 123937, - [SMALL_STATE(3681)] = 123952, - [SMALL_STATE(3682)] = 123965, - [SMALL_STATE(3683)] = 123978, - [SMALL_STATE(3684)] = 123997, - [SMALL_STATE(3685)] = 124010, - [SMALL_STATE(3686)] = 124024, - [SMALL_STATE(3687)] = 124034, - [SMALL_STATE(3688)] = 124048, - [SMALL_STATE(3689)] = 124062, - [SMALL_STATE(3690)] = 124076, - [SMALL_STATE(3691)] = 124092, - [SMALL_STATE(3692)] = 124106, - [SMALL_STATE(3693)] = 124116, - [SMALL_STATE(3694)] = 124130, - [SMALL_STATE(3695)] = 124144, - [SMALL_STATE(3696)] = 124158, - [SMALL_STATE(3697)] = 124168, - [SMALL_STATE(3698)] = 124178, - [SMALL_STATE(3699)] = 124188, - [SMALL_STATE(3700)] = 124202, - [SMALL_STATE(3701)] = 124216, - [SMALL_STATE(3702)] = 124230, - [SMALL_STATE(3703)] = 124240, - [SMALL_STATE(3704)] = 124254, - [SMALL_STATE(3705)] = 124264, - [SMALL_STATE(3706)] = 124278, - [SMALL_STATE(3707)] = 124292, - [SMALL_STATE(3708)] = 124306, - [SMALL_STATE(3709)] = 124320, - [SMALL_STATE(3710)] = 124334, - [SMALL_STATE(3711)] = 124350, - [SMALL_STATE(3712)] = 124366, - [SMALL_STATE(3713)] = 124376, - [SMALL_STATE(3714)] = 124390, - [SMALL_STATE(3715)] = 124404, - [SMALL_STATE(3716)] = 124414, - [SMALL_STATE(3717)] = 124428, - [SMALL_STATE(3718)] = 124442, - [SMALL_STATE(3719)] = 124452, - [SMALL_STATE(3720)] = 124466, - [SMALL_STATE(3721)] = 124482, - [SMALL_STATE(3722)] = 124496, - [SMALL_STATE(3723)] = 124510, - [SMALL_STATE(3724)] = 124526, - [SMALL_STATE(3725)] = 124536, - [SMALL_STATE(3726)] = 124552, - [SMALL_STATE(3727)] = 124566, - [SMALL_STATE(3728)] = 124582, - [SMALL_STATE(3729)] = 124596, - [SMALL_STATE(3730)] = 124610, - [SMALL_STATE(3731)] = 124624, - [SMALL_STATE(3732)] = 124634, - [SMALL_STATE(3733)] = 124648, - [SMALL_STATE(3734)] = 124662, - [SMALL_STATE(3735)] = 124672, - [SMALL_STATE(3736)] = 124682, + [SMALL_STATE(1602)] = 0, + [SMALL_STATE(1603)] = 71, + [SMALL_STATE(1604)] = 142, + [SMALL_STATE(1605)] = 213, + [SMALL_STATE(1606)] = 284, + [SMALL_STATE(1607)] = 355, + [SMALL_STATE(1608)] = 424, + [SMALL_STATE(1609)] = 493, + [SMALL_STATE(1610)] = 562, + [SMALL_STATE(1611)] = 685, + [SMALL_STATE(1612)] = 754, + [SMALL_STATE(1613)] = 823, + [SMALL_STATE(1614)] = 892, + [SMALL_STATE(1615)] = 961, + [SMALL_STATE(1616)] = 1030, + [SMALL_STATE(1617)] = 1099, + [SMALL_STATE(1618)] = 1168, + [SMALL_STATE(1619)] = 1256, + [SMALL_STATE(1620)] = 1376, + [SMALL_STATE(1621)] = 1464, + [SMALL_STATE(1622)] = 1548, + [SMALL_STATE(1623)] = 1658, + [SMALL_STATE(1624)] = 1742, + [SMALL_STATE(1625)] = 1852, + [SMALL_STATE(1626)] = 1938, + [SMALL_STATE(1627)] = 2032, + [SMALL_STATE(1628)] = 2118, + [SMALL_STATE(1629)] = 2206, + [SMALL_STATE(1630)] = 2302, + [SMALL_STATE(1631)] = 2386, + [SMALL_STATE(1632)] = 2457, + [SMALL_STATE(1633)] = 2524, + [SMALL_STATE(1634)] = 2637, + [SMALL_STATE(1635)] = 2708, + [SMALL_STATE(1636)] = 2775, + [SMALL_STATE(1637)] = 2841, + [SMALL_STATE(1638)] = 2927, + [SMALL_STATE(1639)] = 3019, + [SMALL_STATE(1640)] = 3085, + [SMALL_STATE(1641)] = 3153, + [SMALL_STATE(1642)] = 3223, + [SMALL_STATE(1643)] = 3347, + [SMALL_STATE(1644)] = 3471, + [SMALL_STATE(1645)] = 3579, + [SMALL_STATE(1646)] = 3663, + [SMALL_STATE(1647)] = 3729, + [SMALL_STATE(1648)] = 3823, + [SMALL_STATE(1649)] = 3909, + [SMALL_STATE(1650)] = 3995, + [SMALL_STATE(1651)] = 4061, + [SMALL_STATE(1652)] = 4127, + [SMALL_STATE(1653)] = 4193, + [SMALL_STATE(1654)] = 4259, + [SMALL_STATE(1655)] = 4327, + [SMALL_STATE(1656)] = 4393, + [SMALL_STATE(1657)] = 4459, + [SMALL_STATE(1658)] = 4527, + [SMALL_STATE(1659)] = 4609, + [SMALL_STATE(1660)] = 4675, + [SMALL_STATE(1661)] = 4741, + [SMALL_STATE(1662)] = 4807, + [SMALL_STATE(1663)] = 4873, + [SMALL_STATE(1664)] = 4981, + [SMALL_STATE(1665)] = 5089, + [SMALL_STATE(1666)] = 5155, + [SMALL_STATE(1667)] = 5223, + [SMALL_STATE(1668)] = 5305, + [SMALL_STATE(1669)] = 5371, + [SMALL_STATE(1670)] = 5439, + [SMALL_STATE(1671)] = 5505, + [SMALL_STATE(1672)] = 5587, + [SMALL_STATE(1673)] = 5653, + [SMALL_STATE(1674)] = 5719, + [SMALL_STATE(1675)] = 5785, + [SMALL_STATE(1676)] = 5853, + [SMALL_STATE(1677)] = 5919, + [SMALL_STATE(1678)] = 5987, + [SMALL_STATE(1679)] = 6053, + [SMALL_STATE(1680)] = 6119, + [SMALL_STATE(1681)] = 6184, + [SMALL_STATE(1682)] = 6249, + [SMALL_STATE(1683)] = 6314, + [SMALL_STATE(1684)] = 6379, + [SMALL_STATE(1685)] = 6444, + [SMALL_STATE(1686)] = 6509, + [SMALL_STATE(1687)] = 6574, + [SMALL_STATE(1688)] = 6639, + [SMALL_STATE(1689)] = 6706, + [SMALL_STATE(1690)] = 6773, + [SMALL_STATE(1691)] = 6838, + [SMALL_STATE(1692)] = 6903, + [SMALL_STATE(1693)] = 6968, + [SMALL_STATE(1694)] = 7033, + [SMALL_STATE(1695)] = 7098, + [SMALL_STATE(1696)] = 7163, + [SMALL_STATE(1697)] = 7228, + [SMALL_STATE(1698)] = 7293, + [SMALL_STATE(1699)] = 7358, + [SMALL_STATE(1700)] = 7425, + [SMALL_STATE(1701)] = 7490, + [SMALL_STATE(1702)] = 7555, + [SMALL_STATE(1703)] = 7620, + [SMALL_STATE(1704)] = 7685, + [SMALL_STATE(1705)] = 7750, + [SMALL_STATE(1706)] = 7815, + [SMALL_STATE(1707)] = 7880, + [SMALL_STATE(1708)] = 7945, + [SMALL_STATE(1709)] = 8010, + [SMALL_STATE(1710)] = 8075, + [SMALL_STATE(1711)] = 8140, + [SMALL_STATE(1712)] = 8205, + [SMALL_STATE(1713)] = 8270, + [SMALL_STATE(1714)] = 8335, + [SMALL_STATE(1715)] = 8400, + [SMALL_STATE(1716)] = 8467, + [SMALL_STATE(1717)] = 8532, + [SMALL_STATE(1718)] = 8597, + [SMALL_STATE(1719)] = 8662, + [SMALL_STATE(1720)] = 8727, + [SMALL_STATE(1721)] = 8792, + [SMALL_STATE(1722)] = 8857, + [SMALL_STATE(1723)] = 8922, + [SMALL_STATE(1724)] = 8987, + [SMALL_STATE(1725)] = 9054, + [SMALL_STATE(1726)] = 9119, + [SMALL_STATE(1727)] = 9184, + [SMALL_STATE(1728)] = 9249, + [SMALL_STATE(1729)] = 9314, + [SMALL_STATE(1730)] = 9379, + [SMALL_STATE(1731)] = 9444, + [SMALL_STATE(1732)] = 9509, + [SMALL_STATE(1733)] = 9574, + [SMALL_STATE(1734)] = 9639, + [SMALL_STATE(1735)] = 9708, + [SMALL_STATE(1736)] = 9773, + [SMALL_STATE(1737)] = 9838, + [SMALL_STATE(1738)] = 9903, + [SMALL_STATE(1739)] = 9968, + [SMALL_STATE(1740)] = 10033, + [SMALL_STATE(1741)] = 10098, + [SMALL_STATE(1742)] = 10165, + [SMALL_STATE(1743)] = 10230, + [SMALL_STATE(1744)] = 10295, + [SMALL_STATE(1745)] = 10364, + [SMALL_STATE(1746)] = 10429, + [SMALL_STATE(1747)] = 10494, + [SMALL_STATE(1748)] = 10559, + [SMALL_STATE(1749)] = 10624, + [SMALL_STATE(1750)] = 10689, + [SMALL_STATE(1751)] = 10754, + [SMALL_STATE(1752)] = 10819, + [SMALL_STATE(1753)] = 10884, + [SMALL_STATE(1754)] = 10949, + [SMALL_STATE(1755)] = 11016, + [SMALL_STATE(1756)] = 11081, + [SMALL_STATE(1757)] = 11148, + [SMALL_STATE(1758)] = 11213, + [SMALL_STATE(1759)] = 11278, + [SMALL_STATE(1760)] = 11343, + [SMALL_STATE(1761)] = 11408, + [SMALL_STATE(1762)] = 11473, + [SMALL_STATE(1763)] = 11538, + [SMALL_STATE(1764)] = 11605, + [SMALL_STATE(1765)] = 11670, + [SMALL_STATE(1766)] = 11754, + [SMALL_STATE(1767)] = 11842, + [SMALL_STATE(1768)] = 11958, + [SMALL_STATE(1769)] = 12022, + [SMALL_STATE(1770)] = 12140, + [SMALL_STATE(1771)] = 12204, + [SMALL_STATE(1772)] = 12270, + [SMALL_STATE(1773)] = 12386, + [SMALL_STATE(1774)] = 12452, + [SMALL_STATE(1775)] = 12536, + [SMALL_STATE(1776)] = 12600, + [SMALL_STATE(1777)] = 12664, + [SMALL_STATE(1778)] = 12752, + [SMALL_STATE(1779)] = 12818, + [SMALL_STATE(1780)] = 12906, + [SMALL_STATE(1781)] = 12990, + [SMALL_STATE(1782)] = 13088, + [SMALL_STATE(1783)] = 13184, + [SMALL_STATE(1784)] = 13296, + [SMALL_STATE(1785)] = 13408, + [SMALL_STATE(1786)] = 13496, + [SMALL_STATE(1787)] = 13582, + [SMALL_STATE(1788)] = 13648, + [SMALL_STATE(1789)] = 13714, + [SMALL_STATE(1790)] = 13778, + [SMALL_STATE(1791)] = 13876, + [SMALL_STATE(1792)] = 13972, + [SMALL_STATE(1793)] = 14056, + [SMALL_STATE(1794)] = 14144, + [SMALL_STATE(1795)] = 14256, + [SMALL_STATE(1796)] = 14368, + [SMALL_STATE(1797)] = 14452, + [SMALL_STATE(1798)] = 14518, + [SMALL_STATE(1799)] = 14602, + [SMALL_STATE(1800)] = 14688, + [SMALL_STATE(1801)] = 14776, + [SMALL_STATE(1802)] = 14839, + [SMALL_STATE(1803)] = 14902, + [SMALL_STATE(1804)] = 14965, + [SMALL_STATE(1805)] = 15028, + [SMALL_STATE(1806)] = 15091, + [SMALL_STATE(1807)] = 15154, + [SMALL_STATE(1808)] = 15219, + [SMALL_STATE(1809)] = 15282, + [SMALL_STATE(1810)] = 15345, + [SMALL_STATE(1811)] = 15408, + [SMALL_STATE(1812)] = 15471, + [SMALL_STATE(1813)] = 15534, + [SMALL_STATE(1814)] = 15599, + [SMALL_STATE(1815)] = 15662, + [SMALL_STATE(1816)] = 15725, + [SMALL_STATE(1817)] = 15790, + [SMALL_STATE(1818)] = 15853, + [SMALL_STATE(1819)] = 15916, + [SMALL_STATE(1820)] = 15979, + [SMALL_STATE(1821)] = 16042, + [SMALL_STATE(1822)] = 16105, + [SMALL_STATE(1823)] = 16168, + [SMALL_STATE(1824)] = 16279, + [SMALL_STATE(1825)] = 16342, + [SMALL_STATE(1826)] = 16405, + [SMALL_STATE(1827)] = 16468, + [SMALL_STATE(1828)] = 16531, + [SMALL_STATE(1829)] = 16594, + [SMALL_STATE(1830)] = 16657, + [SMALL_STATE(1831)] = 16720, + [SMALL_STATE(1832)] = 16783, + [SMALL_STATE(1833)] = 16846, + [SMALL_STATE(1834)] = 16909, + [SMALL_STATE(1835)] = 16972, + [SMALL_STATE(1836)] = 17035, + [SMALL_STATE(1837)] = 17146, + [SMALL_STATE(1838)] = 17213, + [SMALL_STATE(1839)] = 17280, + [SMALL_STATE(1840)] = 17343, + [SMALL_STATE(1841)] = 17406, + [SMALL_STATE(1842)] = 17469, + [SMALL_STATE(1843)] = 17532, + [SMALL_STATE(1844)] = 17595, + [SMALL_STATE(1845)] = 17658, + [SMALL_STATE(1846)] = 17721, + [SMALL_STATE(1847)] = 17786, + [SMALL_STATE(1848)] = 17857, + [SMALL_STATE(1849)] = 17942, + [SMALL_STATE(1850)] = 18005, + [SMALL_STATE(1851)] = 18068, + [SMALL_STATE(1852)] = 18131, + [SMALL_STATE(1853)] = 18194, + [SMALL_STATE(1854)] = 18257, + [SMALL_STATE(1855)] = 18320, + [SMALL_STATE(1856)] = 18383, + [SMALL_STATE(1857)] = 18446, + [SMALL_STATE(1858)] = 18509, + [SMALL_STATE(1859)] = 18572, + [SMALL_STATE(1860)] = 18637, + [SMALL_STATE(1861)] = 18700, + [SMALL_STATE(1862)] = 18763, + [SMALL_STATE(1863)] = 18826, + [SMALL_STATE(1864)] = 18889, + [SMALL_STATE(1865)] = 18952, + [SMALL_STATE(1866)] = 19015, + [SMALL_STATE(1867)] = 19102, + [SMALL_STATE(1868)] = 19165, + [SMALL_STATE(1869)] = 19228, + [SMALL_STATE(1870)] = 19291, + [SMALL_STATE(1871)] = 19354, + [SMALL_STATE(1872)] = 19417, + [SMALL_STATE(1873)] = 19480, + [SMALL_STATE(1874)] = 19543, + [SMALL_STATE(1875)] = 19606, + [SMALL_STATE(1876)] = 19669, + [SMALL_STATE(1877)] = 19732, + [SMALL_STATE(1878)] = 19795, + [SMALL_STATE(1879)] = 19858, + [SMALL_STATE(1880)] = 19921, + [SMALL_STATE(1881)] = 19984, + [SMALL_STATE(1882)] = 20047, + [SMALL_STATE(1883)] = 20110, + [SMALL_STATE(1884)] = 20205, + [SMALL_STATE(1885)] = 20302, + [SMALL_STATE(1886)] = 20365, + [SMALL_STATE(1887)] = 20428, + [SMALL_STATE(1888)] = 20495, + [SMALL_STATE(1889)] = 20558, + [SMALL_STATE(1890)] = 20621, + [SMALL_STATE(1891)] = 20708, + [SMALL_STATE(1892)] = 20771, + [SMALL_STATE(1893)] = 20834, + [SMALL_STATE(1894)] = 20945, + [SMALL_STATE(1895)] = 21008, + [SMALL_STATE(1896)] = 21071, + [SMALL_STATE(1897)] = 21134, + [SMALL_STATE(1898)] = 21197, + [SMALL_STATE(1899)] = 21260, + [SMALL_STATE(1900)] = 21371, + [SMALL_STATE(1901)] = 21458, + [SMALL_STATE(1902)] = 21521, + [SMALL_STATE(1903)] = 21584, + [SMALL_STATE(1904)] = 21647, + [SMALL_STATE(1905)] = 21710, + [SMALL_STATE(1906)] = 21773, + [SMALL_STATE(1907)] = 21836, + [SMALL_STATE(1908)] = 21903, + [SMALL_STATE(1909)] = 21966, + [SMALL_STATE(1910)] = 22029, + [SMALL_STATE(1911)] = 22092, + [SMALL_STATE(1912)] = 22155, + [SMALL_STATE(1913)] = 22218, + [SMALL_STATE(1914)] = 22281, + [SMALL_STATE(1915)] = 22344, + [SMALL_STATE(1916)] = 22407, + [SMALL_STATE(1917)] = 22470, + [SMALL_STATE(1918)] = 22533, + [SMALL_STATE(1919)] = 22596, + [SMALL_STATE(1920)] = 22659, + [SMALL_STATE(1921)] = 22769, + [SMALL_STATE(1922)] = 22879, + [SMALL_STATE(1923)] = 22989, + [SMALL_STATE(1924)] = 23053, + [SMALL_STATE(1925)] = 23117, + [SMALL_STATE(1926)] = 23181, + [SMALL_STATE(1927)] = 23291, + [SMALL_STATE(1928)] = 23361, + [SMALL_STATE(1929)] = 23425, + [SMALL_STATE(1930)] = 23489, + [SMALL_STATE(1931)] = 23553, + [SMALL_STATE(1932)] = 23614, + [SMALL_STATE(1933)] = 23675, + [SMALL_STATE(1934)] = 23740, + [SMALL_STATE(1935)] = 23801, + [SMALL_STATE(1936)] = 23862, + [SMALL_STATE(1937)] = 23925, + [SMALL_STATE(1938)] = 23986, + [SMALL_STATE(1939)] = 24047, + [SMALL_STATE(1940)] = 24110, + [SMALL_STATE(1941)] = 24171, + [SMALL_STATE(1942)] = 24232, + [SMALL_STATE(1943)] = 24293, + [SMALL_STATE(1944)] = 24354, + [SMALL_STATE(1945)] = 24415, + [SMALL_STATE(1946)] = 24476, + [SMALL_STATE(1947)] = 24537, + [SMALL_STATE(1948)] = 24598, + [SMALL_STATE(1949)] = 24659, + [SMALL_STATE(1950)] = 24720, + [SMALL_STATE(1951)] = 24783, + [SMALL_STATE(1952)] = 24846, + [SMALL_STATE(1953)] = 24907, + [SMALL_STATE(1954)] = 24968, + [SMALL_STATE(1955)] = 25029, + [SMALL_STATE(1956)] = 25090, + [SMALL_STATE(1957)] = 25151, + [SMALL_STATE(1958)] = 25212, + [SMALL_STATE(1959)] = 25273, + [SMALL_STATE(1960)] = 25334, + [SMALL_STATE(1961)] = 25395, + [SMALL_STATE(1962)] = 25456, + [SMALL_STATE(1963)] = 25517, + [SMALL_STATE(1964)] = 25578, + [SMALL_STATE(1965)] = 25639, + [SMALL_STATE(1966)] = 25700, + [SMALL_STATE(1967)] = 25761, + [SMALL_STATE(1968)] = 25822, + [SMALL_STATE(1969)] = 25883, + [SMALL_STATE(1970)] = 25944, + [SMALL_STATE(1971)] = 26005, + [SMALL_STATE(1972)] = 26068, + [SMALL_STATE(1973)] = 26129, + [SMALL_STATE(1974)] = 26192, + [SMALL_STATE(1975)] = 26253, + [SMALL_STATE(1976)] = 26316, + [SMALL_STATE(1977)] = 26377, + [SMALL_STATE(1978)] = 26438, + [SMALL_STATE(1979)] = 26499, + [SMALL_STATE(1980)] = 26560, + [SMALL_STATE(1981)] = 26621, + [SMALL_STATE(1982)] = 26682, + [SMALL_STATE(1983)] = 26743, + [SMALL_STATE(1984)] = 26804, + [SMALL_STATE(1985)] = 26865, + [SMALL_STATE(1986)] = 26926, + [SMALL_STATE(1987)] = 26987, + [SMALL_STATE(1988)] = 27048, + [SMALL_STATE(1989)] = 27109, + [SMALL_STATE(1990)] = 27170, + [SMALL_STATE(1991)] = 27233, + [SMALL_STATE(1992)] = 27294, + [SMALL_STATE(1993)] = 27355, + [SMALL_STATE(1994)] = 27416, + [SMALL_STATE(1995)] = 27477, + [SMALL_STATE(1996)] = 27538, + [SMALL_STATE(1997)] = 27599, + [SMALL_STATE(1998)] = 27660, + [SMALL_STATE(1999)] = 27721, + [SMALL_STATE(2000)] = 27782, + [SMALL_STATE(2001)] = 27843, + [SMALL_STATE(2002)] = 27904, + [SMALL_STATE(2003)] = 27965, + [SMALL_STATE(2004)] = 28026, + [SMALL_STATE(2005)] = 28087, + [SMALL_STATE(2006)] = 28148, + [SMALL_STATE(2007)] = 28209, + [SMALL_STATE(2008)] = 28274, + [SMALL_STATE(2009)] = 28339, + [SMALL_STATE(2010)] = 28400, + [SMALL_STATE(2011)] = 28461, + [SMALL_STATE(2012)] = 28522, + [SMALL_STATE(2013)] = 28585, + [SMALL_STATE(2014)] = 28648, + [SMALL_STATE(2015)] = 28709, + [SMALL_STATE(2016)] = 28770, + [SMALL_STATE(2017)] = 28831, + [SMALL_STATE(2018)] = 28892, + [SMALL_STATE(2019)] = 28953, + [SMALL_STATE(2020)] = 29014, + [SMALL_STATE(2021)] = 29075, + [SMALL_STATE(2022)] = 29136, + [SMALL_STATE(2023)] = 29197, + [SMALL_STATE(2024)] = 29258, + [SMALL_STATE(2025)] = 29319, + [SMALL_STATE(2026)] = 29380, + [SMALL_STATE(2027)] = 29441, + [SMALL_STATE(2028)] = 29502, + [SMALL_STATE(2029)] = 29563, + [SMALL_STATE(2030)] = 29624, + [SMALL_STATE(2031)] = 29685, + [SMALL_STATE(2032)] = 29746, + [SMALL_STATE(2033)] = 29807, + [SMALL_STATE(2034)] = 29868, + [SMALL_STATE(2035)] = 29929, + [SMALL_STATE(2036)] = 29990, + [SMALL_STATE(2037)] = 30051, + [SMALL_STATE(2038)] = 30112, + [SMALL_STATE(2039)] = 30173, + [SMALL_STATE(2040)] = 30234, + [SMALL_STATE(2041)] = 30295, + [SMALL_STATE(2042)] = 30356, + [SMALL_STATE(2043)] = 30417, + [SMALL_STATE(2044)] = 30478, + [SMALL_STATE(2045)] = 30539, + [SMALL_STATE(2046)] = 30600, + [SMALL_STATE(2047)] = 30661, + [SMALL_STATE(2048)] = 30722, + [SMALL_STATE(2049)] = 30783, + [SMALL_STATE(2050)] = 30844, + [SMALL_STATE(2051)] = 30905, + [SMALL_STATE(2052)] = 30966, + [SMALL_STATE(2053)] = 31027, + [SMALL_STATE(2054)] = 31088, + [SMALL_STATE(2055)] = 31149, + [SMALL_STATE(2056)] = 31210, + [SMALL_STATE(2057)] = 31271, + [SMALL_STATE(2058)] = 31332, + [SMALL_STATE(2059)] = 31393, + [SMALL_STATE(2060)] = 31454, + [SMALL_STATE(2061)] = 31515, + [SMALL_STATE(2062)] = 31576, + [SMALL_STATE(2063)] = 31637, + [SMALL_STATE(2064)] = 31698, + [SMALL_STATE(2065)] = 31759, + [SMALL_STATE(2066)] = 31820, + [SMALL_STATE(2067)] = 31881, + [SMALL_STATE(2068)] = 31942, + [SMALL_STATE(2069)] = 32003, + [SMALL_STATE(2070)] = 32064, + [SMALL_STATE(2071)] = 32125, + [SMALL_STATE(2072)] = 32186, + [SMALL_STATE(2073)] = 32247, + [SMALL_STATE(2074)] = 32308, + [SMALL_STATE(2075)] = 32369, + [SMALL_STATE(2076)] = 32430, + [SMALL_STATE(2077)] = 32491, + [SMALL_STATE(2078)] = 32552, + [SMALL_STATE(2079)] = 32613, + [SMALL_STATE(2080)] = 32674, + [SMALL_STATE(2081)] = 32735, + [SMALL_STATE(2082)] = 32796, + [SMALL_STATE(2083)] = 32857, + [SMALL_STATE(2084)] = 32918, + [SMALL_STATE(2085)] = 32979, + [SMALL_STATE(2086)] = 33040, + [SMALL_STATE(2087)] = 33101, + [SMALL_STATE(2088)] = 33162, + [SMALL_STATE(2089)] = 33223, + [SMALL_STATE(2090)] = 33288, + [SMALL_STATE(2091)] = 33353, + [SMALL_STATE(2092)] = 33414, + [SMALL_STATE(2093)] = 33475, + [SMALL_STATE(2094)] = 33536, + [SMALL_STATE(2095)] = 33597, + [SMALL_STATE(2096)] = 33658, + [SMALL_STATE(2097)] = 33719, + [SMALL_STATE(2098)] = 33780, + [SMALL_STATE(2099)] = 33841, + [SMALL_STATE(2100)] = 33902, + [SMALL_STATE(2101)] = 33963, + [SMALL_STATE(2102)] = 34024, + [SMALL_STATE(2103)] = 34085, + [SMALL_STATE(2104)] = 34150, + [SMALL_STATE(2105)] = 34211, + [SMALL_STATE(2106)] = 34272, + [SMALL_STATE(2107)] = 34333, + [SMALL_STATE(2108)] = 34396, + [SMALL_STATE(2109)] = 34457, + [SMALL_STATE(2110)] = 34518, + [SMALL_STATE(2111)] = 34579, + [SMALL_STATE(2112)] = 34642, + [SMALL_STATE(2113)] = 34703, + [SMALL_STATE(2114)] = 34764, + [SMALL_STATE(2115)] = 34825, + [SMALL_STATE(2116)] = 34886, + [SMALL_STATE(2117)] = 34947, + [SMALL_STATE(2118)] = 35008, + [SMALL_STATE(2119)] = 35069, + [SMALL_STATE(2120)] = 35130, + [SMALL_STATE(2121)] = 35191, + [SMALL_STATE(2122)] = 35252, + [SMALL_STATE(2123)] = 35313, + [SMALL_STATE(2124)] = 35374, + [SMALL_STATE(2125)] = 35435, + [SMALL_STATE(2126)] = 35496, + [SMALL_STATE(2127)] = 35557, + [SMALL_STATE(2128)] = 35618, + [SMALL_STATE(2129)] = 35679, + [SMALL_STATE(2130)] = 35740, + [SMALL_STATE(2131)] = 35801, + [SMALL_STATE(2132)] = 35862, + [SMALL_STATE(2133)] = 35923, + [SMALL_STATE(2134)] = 35984, + [SMALL_STATE(2135)] = 36045, + [SMALL_STATE(2136)] = 36106, + [SMALL_STATE(2137)] = 36167, + [SMALL_STATE(2138)] = 36228, + [SMALL_STATE(2139)] = 36289, + [SMALL_STATE(2140)] = 36350, + [SMALL_STATE(2141)] = 36411, + [SMALL_STATE(2142)] = 36472, + [SMALL_STATE(2143)] = 36533, + [SMALL_STATE(2144)] = 36594, + [SMALL_STATE(2145)] = 36655, + [SMALL_STATE(2146)] = 36716, + [SMALL_STATE(2147)] = 36777, + [SMALL_STATE(2148)] = 36838, + [SMALL_STATE(2149)] = 36913, + [SMALL_STATE(2150)] = 36988, + [SMALL_STATE(2151)] = 37051, + [SMALL_STATE(2152)] = 37126, + [SMALL_STATE(2153)] = 37188, + [SMALL_STATE(2154)] = 37250, + [SMALL_STATE(2155)] = 37314, + [SMALL_STATE(2156)] = 37371, + [SMALL_STATE(2157)] = 37428, + [SMALL_STATE(2158)] = 37487, + [SMALL_STATE(2159)] = 37544, + [SMALL_STATE(2160)] = 37601, + [SMALL_STATE(2161)] = 37658, + [SMALL_STATE(2162)] = 37717, + [SMALL_STATE(2163)] = 37774, + [SMALL_STATE(2164)] = 37837, + [SMALL_STATE(2165)] = 37896, + [SMALL_STATE(2166)] = 37953, + [SMALL_STATE(2167)] = 38012, + [SMALL_STATE(2168)] = 38069, + [SMALL_STATE(2169)] = 38174, + [SMALL_STATE(2170)] = 38231, + [SMALL_STATE(2171)] = 38292, + [SMALL_STATE(2172)] = 38348, + [SMALL_STATE(2173)] = 38404, + [SMALL_STATE(2174)] = 38460, + [SMALL_STATE(2175)] = 38518, + [SMALL_STATE(2176)] = 38574, + [SMALL_STATE(2177)] = 38630, + [SMALL_STATE(2178)] = 38686, + [SMALL_STATE(2179)] = 38742, + [SMALL_STATE(2180)] = 38798, + [SMALL_STATE(2181)] = 38854, + [SMALL_STATE(2182)] = 38910, + [SMALL_STATE(2183)] = 38966, + [SMALL_STATE(2184)] = 39022, + [SMALL_STATE(2185)] = 39078, + [SMALL_STATE(2186)] = 39134, + [SMALL_STATE(2187)] = 39212, + [SMALL_STATE(2188)] = 39268, + [SMALL_STATE(2189)] = 39324, + [SMALL_STATE(2190)] = 39400, + [SMALL_STATE(2191)] = 39482, + [SMALL_STATE(2192)] = 39538, + [SMALL_STATE(2193)] = 39594, + [SMALL_STATE(2194)] = 39678, + [SMALL_STATE(2195)] = 39734, + [SMALL_STATE(2196)] = 39790, + [SMALL_STATE(2197)] = 39846, + [SMALL_STATE(2198)] = 39902, + [SMALL_STATE(2199)] = 39958, + [SMALL_STATE(2200)] = 40034, + [SMALL_STATE(2201)] = 40110, + [SMALL_STATE(2202)] = 40166, + [SMALL_STATE(2203)] = 40222, + [SMALL_STATE(2204)] = 40278, + [SMALL_STATE(2205)] = 40334, + [SMALL_STATE(2206)] = 40390, + [SMALL_STATE(2207)] = 40446, + [SMALL_STATE(2208)] = 40502, + [SMALL_STATE(2209)] = 40558, + [SMALL_STATE(2210)] = 40614, + [SMALL_STATE(2211)] = 40670, + [SMALL_STATE(2212)] = 40726, + [SMALL_STATE(2213)] = 40782, + [SMALL_STATE(2214)] = 40838, + [SMALL_STATE(2215)] = 40894, + [SMALL_STATE(2216)] = 40950, + [SMALL_STATE(2217)] = 41006, + [SMALL_STATE(2218)] = 41062, + [SMALL_STATE(2219)] = 41136, + [SMALL_STATE(2220)] = 41214, + [SMALL_STATE(2221)] = 41270, + [SMALL_STATE(2222)] = 41326, + [SMALL_STATE(2223)] = 41382, + [SMALL_STATE(2224)] = 41438, + [SMALL_STATE(2225)] = 41494, + [SMALL_STATE(2226)] = 41572, + [SMALL_STATE(2227)] = 41628, + [SMALL_STATE(2228)] = 41684, + [SMALL_STATE(2229)] = 41740, + [SMALL_STATE(2230)] = 41796, + [SMALL_STATE(2231)] = 41852, + [SMALL_STATE(2232)] = 41908, + [SMALL_STATE(2233)] = 41964, + [SMALL_STATE(2234)] = 42022, + [SMALL_STATE(2235)] = 42078, + [SMALL_STATE(2236)] = 42136, + [SMALL_STATE(2237)] = 42192, + [SMALL_STATE(2238)] = 42250, + [SMALL_STATE(2239)] = 42308, + [SMALL_STATE(2240)] = 42364, + [SMALL_STATE(2241)] = 42420, + [SMALL_STATE(2242)] = 42476, + [SMALL_STATE(2243)] = 42532, + [SMALL_STATE(2244)] = 42588, + [SMALL_STATE(2245)] = 42644, + [SMALL_STATE(2246)] = 42700, + [SMALL_STATE(2247)] = 42756, + [SMALL_STATE(2248)] = 42812, + [SMALL_STATE(2249)] = 42868, + [SMALL_STATE(2250)] = 42924, + [SMALL_STATE(2251)] = 42980, + [SMALL_STATE(2252)] = 43036, + [SMALL_STATE(2253)] = 43092, + [SMALL_STATE(2254)] = 43148, + [SMALL_STATE(2255)] = 43204, + [SMALL_STATE(2256)] = 43260, + [SMALL_STATE(2257)] = 43316, + [SMALL_STATE(2258)] = 43372, + [SMALL_STATE(2259)] = 43428, + [SMALL_STATE(2260)] = 43484, + [SMALL_STATE(2261)] = 43540, + [SMALL_STATE(2262)] = 43598, + [SMALL_STATE(2263)] = 43654, + [SMALL_STATE(2264)] = 43710, + [SMALL_STATE(2265)] = 43766, + [SMALL_STATE(2266)] = 43822, + [SMALL_STATE(2267)] = 43878, + [SMALL_STATE(2268)] = 43934, + [SMALL_STATE(2269)] = 44032, + [SMALL_STATE(2270)] = 44088, + [SMALL_STATE(2271)] = 44144, + [SMALL_STATE(2272)] = 44200, + [SMALL_STATE(2273)] = 44256, + [SMALL_STATE(2274)] = 44312, + [SMALL_STATE(2275)] = 44368, + [SMALL_STATE(2276)] = 44424, + [SMALL_STATE(2277)] = 44480, + [SMALL_STATE(2278)] = 44536, + [SMALL_STATE(2279)] = 44592, + [SMALL_STATE(2280)] = 44648, + [SMALL_STATE(2281)] = 44704, + [SMALL_STATE(2282)] = 44760, + [SMALL_STATE(2283)] = 44816, + [SMALL_STATE(2284)] = 44872, + [SMALL_STATE(2285)] = 44928, + [SMALL_STATE(2286)] = 44984, + [SMALL_STATE(2287)] = 45040, + [SMALL_STATE(2288)] = 45096, + [SMALL_STATE(2289)] = 45200, + [SMALL_STATE(2290)] = 45298, + [SMALL_STATE(2291)] = 45395, + [SMALL_STATE(2292)] = 45450, + [SMALL_STATE(2293)] = 45505, + [SMALL_STATE(2294)] = 45602, + [SMALL_STATE(2295)] = 45699, + [SMALL_STATE(2296)] = 45756, + [SMALL_STATE(2297)] = 45811, + [SMALL_STATE(2298)] = 45870, + [SMALL_STATE(2299)] = 45929, + [SMALL_STATE(2300)] = 46004, + [SMALL_STATE(2301)] = 46061, + [SMALL_STATE(2302)] = 46136, + [SMALL_STATE(2303)] = 46191, + [SMALL_STATE(2304)] = 46274, + [SMALL_STATE(2305)] = 46355, + [SMALL_STATE(2306)] = 46430, + [SMALL_STATE(2307)] = 46503, + [SMALL_STATE(2308)] = 46600, + [SMALL_STATE(2309)] = 46656, + [SMALL_STATE(2310)] = 46752, + [SMALL_STATE(2311)] = 46824, + [SMALL_STATE(2312)] = 46898, + [SMALL_STATE(2313)] = 46978, + [SMALL_STATE(2314)] = 47052, + [SMALL_STATE(2315)] = 47122, + [SMALL_STATE(2316)] = 47178, + [SMALL_STATE(2317)] = 47260, + [SMALL_STATE(2318)] = 47330, + [SMALL_STATE(2319)] = 47432, + [SMALL_STATE(2320)] = 47506, + [SMALL_STATE(2321)] = 47562, + [SMALL_STATE(2322)] = 47632, + [SMALL_STATE(2323)] = 47728, + [SMALL_STATE(2324)] = 47824, + [SMALL_STATE(2325)] = 47923, + [SMALL_STATE(2326)] = 47976, + [SMALL_STATE(2327)] = 48071, + [SMALL_STATE(2328)] = 48166, + [SMALL_STATE(2329)] = 48219, + [SMALL_STATE(2330)] = 48272, + [SMALL_STATE(2331)] = 48325, + [SMALL_STATE(2332)] = 48378, + [SMALL_STATE(2333)] = 48431, + [SMALL_STATE(2334)] = 48484, + [SMALL_STATE(2335)] = 48539, + [SMALL_STATE(2336)] = 48592, + [SMALL_STATE(2337)] = 48645, + [SMALL_STATE(2338)] = 48698, + [SMALL_STATE(2339)] = 48751, + [SMALL_STATE(2340)] = 48804, + [SMALL_STATE(2341)] = 48859, + [SMALL_STATE(2342)] = 48912, + [SMALL_STATE(2343)] = 48965, + [SMALL_STATE(2344)] = 49018, + [SMALL_STATE(2345)] = 49071, + [SMALL_STATE(2346)] = 49124, + [SMALL_STATE(2347)] = 49177, + [SMALL_STATE(2348)] = 49230, + [SMALL_STATE(2349)] = 49283, + [SMALL_STATE(2350)] = 49336, + [SMALL_STATE(2351)] = 49389, + [SMALL_STATE(2352)] = 49442, + [SMALL_STATE(2353)] = 49497, + [SMALL_STATE(2354)] = 49550, + [SMALL_STATE(2355)] = 49605, + [SMALL_STATE(2356)] = 49658, + [SMALL_STATE(2357)] = 49711, + [SMALL_STATE(2358)] = 49764, + [SMALL_STATE(2359)] = 49817, + [SMALL_STATE(2360)] = 49870, + [SMALL_STATE(2361)] = 49923, + [SMALL_STATE(2362)] = 49976, + [SMALL_STATE(2363)] = 50029, + [SMALL_STATE(2364)] = 50082, + [SMALL_STATE(2365)] = 50135, + [SMALL_STATE(2366)] = 50188, + [SMALL_STATE(2367)] = 50245, + [SMALL_STATE(2368)] = 50302, + [SMALL_STATE(2369)] = 50355, + [SMALL_STATE(2370)] = 50408, + [SMALL_STATE(2371)] = 50461, + [SMALL_STATE(2372)] = 50514, + [SMALL_STATE(2373)] = 50567, + [SMALL_STATE(2374)] = 50620, + [SMALL_STATE(2375)] = 50673, + [SMALL_STATE(2376)] = 50726, + [SMALL_STATE(2377)] = 50779, + [SMALL_STATE(2378)] = 50832, + [SMALL_STATE(2379)] = 50885, + [SMALL_STATE(2380)] = 50938, + [SMALL_STATE(2381)] = 50991, + [SMALL_STATE(2382)] = 51044, + [SMALL_STATE(2383)] = 51097, + [SMALL_STATE(2384)] = 51150, + [SMALL_STATE(2385)] = 51205, + [SMALL_STATE(2386)] = 51258, + [SMALL_STATE(2387)] = 51311, + [SMALL_STATE(2388)] = 51364, + [SMALL_STATE(2389)] = 51417, + [SMALL_STATE(2390)] = 51470, + [SMALL_STATE(2391)] = 51523, + [SMALL_STATE(2392)] = 51576, + [SMALL_STATE(2393)] = 51629, + [SMALL_STATE(2394)] = 51682, + [SMALL_STATE(2395)] = 51735, + [SMALL_STATE(2396)] = 51788, + [SMALL_STATE(2397)] = 51841, + [SMALL_STATE(2398)] = 51894, + [SMALL_STATE(2399)] = 51947, + [SMALL_STATE(2400)] = 52000, + [SMALL_STATE(2401)] = 52053, + [SMALL_STATE(2402)] = 52148, + [SMALL_STATE(2403)] = 52201, + [SMALL_STATE(2404)] = 52254, + [SMALL_STATE(2405)] = 52309, + [SMALL_STATE(2406)] = 52362, + [SMALL_STATE(2407)] = 52415, + [SMALL_STATE(2408)] = 52468, + [SMALL_STATE(2409)] = 52521, + [SMALL_STATE(2410)] = 52574, + [SMALL_STATE(2411)] = 52627, + [SMALL_STATE(2412)] = 52680, + [SMALL_STATE(2413)] = 52733, + [SMALL_STATE(2414)] = 52786, + [SMALL_STATE(2415)] = 52839, + [SMALL_STATE(2416)] = 52892, + [SMALL_STATE(2417)] = 52945, + [SMALL_STATE(2418)] = 52998, + [SMALL_STATE(2419)] = 53051, + [SMALL_STATE(2420)] = 53104, + [SMALL_STATE(2421)] = 53161, + [SMALL_STATE(2422)] = 53214, + [SMALL_STATE(2423)] = 53267, + [SMALL_STATE(2424)] = 53320, + [SMALL_STATE(2425)] = 53377, + [SMALL_STATE(2426)] = 53430, + [SMALL_STATE(2427)] = 53483, + [SMALL_STATE(2428)] = 53536, + [SMALL_STATE(2429)] = 53589, + [SMALL_STATE(2430)] = 53642, + [SMALL_STATE(2431)] = 53695, + [SMALL_STATE(2432)] = 53748, + [SMALL_STATE(2433)] = 53801, + [SMALL_STATE(2434)] = 53879, + [SMALL_STATE(2435)] = 53959, + [SMALL_STATE(2436)] = 54069, + [SMALL_STATE(2437)] = 54123, + [SMALL_STATE(2438)] = 54177, + [SMALL_STATE(2439)] = 54231, + [SMALL_STATE(2440)] = 54341, + [SMALL_STATE(2441)] = 54397, + [SMALL_STATE(2442)] = 54479, + [SMALL_STATE(2443)] = 54561, + [SMALL_STATE(2444)] = 54651, + [SMALL_STATE(2445)] = 54761, + [SMALL_STATE(2446)] = 54849, + [SMALL_STATE(2447)] = 54931, + [SMALL_STATE(2448)] = 55025, + [SMALL_STATE(2449)] = 55119, + [SMALL_STATE(2450)] = 55197, + [SMALL_STATE(2451)] = 55251, + [SMALL_STATE(2452)] = 55345, + [SMALL_STATE(2453)] = 55455, + [SMALL_STATE(2454)] = 55509, + [SMALL_STATE(2455)] = 55605, + [SMALL_STATE(2456)] = 55715, + [SMALL_STATE(2457)] = 55825, + [SMALL_STATE(2458)] = 55935, + [SMALL_STATE(2459)] = 56045, + [SMALL_STATE(2460)] = 56155, + [SMALL_STATE(2461)] = 56265, + [SMALL_STATE(2462)] = 56375, + [SMALL_STATE(2463)] = 56485, + [SMALL_STATE(2464)] = 56557, + [SMALL_STATE(2465)] = 56629, + [SMALL_STATE(2466)] = 56733, + [SMALL_STATE(2467)] = 56787, + [SMALL_STATE(2468)] = 56891, + [SMALL_STATE(2469)] = 56963, + [SMALL_STATE(2470)] = 57017, + [SMALL_STATE(2471)] = 57087, + [SMALL_STATE(2472)] = 57197, + [SMALL_STATE(2473)] = 57248, + [SMALL_STATE(2474)] = 57301, + [SMALL_STATE(2475)] = 57352, + [SMALL_STATE(2476)] = 57441, + [SMALL_STATE(2477)] = 57522, + [SMALL_STATE(2478)] = 57573, + [SMALL_STATE(2479)] = 57650, + [SMALL_STATE(2480)] = 57701, + [SMALL_STATE(2481)] = 57752, + [SMALL_STATE(2482)] = 57803, + [SMALL_STATE(2483)] = 57854, + [SMALL_STATE(2484)] = 57905, + [SMALL_STATE(2485)] = 57956, + [SMALL_STATE(2486)] = 58043, + [SMALL_STATE(2487)] = 58130, + [SMALL_STATE(2488)] = 58217, + [SMALL_STATE(2489)] = 58268, + [SMALL_STATE(2490)] = 58319, + [SMALL_STATE(2491)] = 58400, + [SMALL_STATE(2492)] = 58451, + [SMALL_STATE(2493)] = 58532, + [SMALL_STATE(2494)] = 58583, + [SMALL_STATE(2495)] = 58634, + [SMALL_STATE(2496)] = 58725, + [SMALL_STATE(2497)] = 58776, + [SMALL_STATE(2498)] = 58829, + [SMALL_STATE(2499)] = 58880, + [SMALL_STATE(2500)] = 58953, + [SMALL_STATE(2501)] = 59004, + [SMALL_STATE(2502)] = 59055, + [SMALL_STATE(2503)] = 59106, + [SMALL_STATE(2504)] = 59211, + [SMALL_STATE(2505)] = 59316, + [SMALL_STATE(2506)] = 59367, + [SMALL_STATE(2507)] = 59418, + [SMALL_STATE(2508)] = 59469, + [SMALL_STATE(2509)] = 59542, + [SMALL_STATE(2510)] = 59593, + [SMALL_STATE(2511)] = 59644, + [SMALL_STATE(2512)] = 59695, + [SMALL_STATE(2513)] = 59746, + [SMALL_STATE(2514)] = 59797, + [SMALL_STATE(2515)] = 59848, + [SMALL_STATE(2516)] = 59899, + [SMALL_STATE(2517)] = 59950, + [SMALL_STATE(2518)] = 60001, + [SMALL_STATE(2519)] = 60052, + [SMALL_STATE(2520)] = 60103, + [SMALL_STATE(2521)] = 60210, + [SMALL_STATE(2522)] = 60261, + [SMALL_STATE(2523)] = 60312, + [SMALL_STATE(2524)] = 60363, + [SMALL_STATE(2525)] = 60414, + [SMALL_STATE(2526)] = 60469, + [SMALL_STATE(2527)] = 60520, + [SMALL_STATE(2528)] = 60571, + [SMALL_STATE(2529)] = 60622, + [SMALL_STATE(2530)] = 60729, + [SMALL_STATE(2531)] = 60780, + [SMALL_STATE(2532)] = 60831, + [SMALL_STATE(2533)] = 60882, + [SMALL_STATE(2534)] = 60933, + [SMALL_STATE(2535)] = 60984, + [SMALL_STATE(2536)] = 61035, + [SMALL_STATE(2537)] = 61086, + [SMALL_STATE(2538)] = 61137, + [SMALL_STATE(2539)] = 61188, + [SMALL_STATE(2540)] = 61239, + [SMALL_STATE(2541)] = 61292, + [SMALL_STATE(2542)] = 61343, + [SMALL_STATE(2543)] = 61394, + [SMALL_STATE(2544)] = 61445, + [SMALL_STATE(2545)] = 61498, + [SMALL_STATE(2546)] = 61549, + [SMALL_STATE(2547)] = 61600, + [SMALL_STATE(2548)] = 61651, + [SMALL_STATE(2549)] = 61702, + [SMALL_STATE(2550)] = 61793, + [SMALL_STATE(2551)] = 61844, + [SMALL_STATE(2552)] = 61895, + [SMALL_STATE(2553)] = 61946, + [SMALL_STATE(2554)] = 61997, + [SMALL_STATE(2555)] = 62048, + [SMALL_STATE(2556)] = 62101, + [SMALL_STATE(2557)] = 62194, + [SMALL_STATE(2558)] = 62287, + [SMALL_STATE(2559)] = 62380, + [SMALL_STATE(2560)] = 62431, + [SMALL_STATE(2561)] = 62524, + [SMALL_STATE(2562)] = 62575, + [SMALL_STATE(2563)] = 62626, + [SMALL_STATE(2564)] = 62699, + [SMALL_STATE(2565)] = 62750, + [SMALL_STATE(2566)] = 62801, + [SMALL_STATE(2567)] = 62852, + [SMALL_STATE(2568)] = 62905, + [SMALL_STATE(2569)] = 62956, + [SMALL_STATE(2570)] = 63007, + [SMALL_STATE(2571)] = 63058, + [SMALL_STATE(2572)] = 63109, + [SMALL_STATE(2573)] = 63160, + [SMALL_STATE(2574)] = 63211, + [SMALL_STATE(2575)] = 63262, + [SMALL_STATE(2576)] = 63315, + [SMALL_STATE(2577)] = 63366, + [SMALL_STATE(2578)] = 63417, + [SMALL_STATE(2579)] = 63468, + [SMALL_STATE(2580)] = 63519, + [SMALL_STATE(2581)] = 63570, + [SMALL_STATE(2582)] = 63621, + [SMALL_STATE(2583)] = 63672, + [SMALL_STATE(2584)] = 63723, + [SMALL_STATE(2585)] = 63774, + [SMALL_STATE(2586)] = 63825, + [SMALL_STATE(2587)] = 63876, + [SMALL_STATE(2588)] = 63927, + [SMALL_STATE(2589)] = 63978, + [SMALL_STATE(2590)] = 64029, + [SMALL_STATE(2591)] = 64080, + [SMALL_STATE(2592)] = 64131, + [SMALL_STATE(2593)] = 64182, + [SMALL_STATE(2594)] = 64235, + [SMALL_STATE(2595)] = 64286, + [SMALL_STATE(2596)] = 64337, + [SMALL_STATE(2597)] = 64388, + [SMALL_STATE(2598)] = 64442, + [SMALL_STATE(2599)] = 64528, + [SMALL_STATE(2600)] = 64582, + [SMALL_STATE(2601)] = 64660, + [SMALL_STATE(2602)] = 64738, + [SMALL_STATE(2603)] = 64842, + [SMALL_STATE(2604)] = 64928, + [SMALL_STATE(2605)] = 65034, + [SMALL_STATE(2606)] = 65084, + [SMALL_STATE(2607)] = 65134, + [SMALL_STATE(2608)] = 65218, + [SMALL_STATE(2609)] = 65296, + [SMALL_STATE(2610)] = 65376, + [SMALL_STATE(2611)] = 65452, + [SMALL_STATE(2612)] = 65526, + [SMALL_STATE(2613)] = 65630, + [SMALL_STATE(2614)] = 65718, + [SMALL_STATE(2615)] = 65796, + [SMALL_STATE(2616)] = 65874, + [SMALL_STATE(2617)] = 65964, + [SMALL_STATE(2618)] = 66018, + [SMALL_STATE(2619)] = 66098, + [SMALL_STATE(2620)] = 66152, + [SMALL_STATE(2621)] = 66236, + [SMALL_STATE(2622)] = 66336, + [SMALL_STATE(2623)] = 66436, + [SMALL_STATE(2624)] = 66516, + [SMALL_STATE(2625)] = 66594, + [SMALL_STATE(2626)] = 66668, + [SMALL_STATE(2627)] = 66768, + [SMALL_STATE(2628)] = 66868, + [SMALL_STATE(2629)] = 66968, + [SMALL_STATE(2630)] = 67072, + [SMALL_STATE(2631)] = 67176, + [SMALL_STATE(2632)] = 67277, + [SMALL_STATE(2633)] = 67380, + [SMALL_STATE(2634)] = 67435, + [SMALL_STATE(2635)] = 67538, + [SMALL_STATE(2636)] = 67639, + [SMALL_STATE(2637)] = 67742, + [SMALL_STATE(2638)] = 67841, + [SMALL_STATE(2639)] = 67944, + [SMALL_STATE(2640)] = 68047, + [SMALL_STATE(2641)] = 68150, + [SMALL_STATE(2642)] = 68251, + [SMALL_STATE(2643)] = 68352, + [SMALL_STATE(2644)] = 68451, + [SMALL_STATE(2645)] = 68504, + [SMALL_STATE(2646)] = 68605, + [SMALL_STATE(2647)] = 68706, + [SMALL_STATE(2648)] = 68807, + [SMALL_STATE(2649)] = 68908, + [SMALL_STATE(2650)] = 68959, + [SMALL_STATE(2651)] = 69060, + [SMALL_STATE(2652)] = 69163, + [SMALL_STATE(2653)] = 69262, + [SMALL_STATE(2654)] = 69363, + [SMALL_STATE(2655)] = 69466, + [SMALL_STATE(2656)] = 69521, + [SMALL_STATE(2657)] = 69572, + [SMALL_STATE(2658)] = 69675, + [SMALL_STATE(2659)] = 69776, + [SMALL_STATE(2660)] = 69875, + [SMALL_STATE(2661)] = 69978, + [SMALL_STATE(2662)] = 70079, + [SMALL_STATE(2663)] = 70128, + [SMALL_STATE(2664)] = 70229, + [SMALL_STATE(2665)] = 70332, + [SMALL_STATE(2666)] = 70435, + [SMALL_STATE(2667)] = 70536, + [SMALL_STATE(2668)] = 70587, + [SMALL_STATE(2669)] = 70690, + [SMALL_STATE(2670)] = 70789, + [SMALL_STATE(2671)] = 70838, + [SMALL_STATE(2672)] = 70886, + [SMALL_STATE(2673)] = 70936, + [SMALL_STATE(2674)] = 71012, + [SMALL_STATE(2675)] = 71110, + [SMALL_STATE(2676)] = 71158, + [SMALL_STATE(2677)] = 71256, + [SMALL_STATE(2678)] = 71304, + [SMALL_STATE(2679)] = 71352, + [SMALL_STATE(2680)] = 71450, + [SMALL_STATE(2681)] = 71532, + [SMALL_STATE(2682)] = 71630, + [SMALL_STATE(2683)] = 71728, + [SMALL_STATE(2684)] = 71826, + [SMALL_STATE(2685)] = 71910, + [SMALL_STATE(2686)] = 71960, + [SMALL_STATE(2687)] = 72008, + [SMALL_STATE(2688)] = 72056, + [SMALL_STATE(2689)] = 72154, + [SMALL_STATE(2690)] = 72204, + [SMALL_STATE(2691)] = 72252, + [SMALL_STATE(2692)] = 72346, + [SMALL_STATE(2693)] = 72418, + [SMALL_STATE(2694)] = 72466, + [SMALL_STATE(2695)] = 72514, + [SMALL_STATE(2696)] = 72612, + [SMALL_STATE(2697)] = 72710, + [SMALL_STATE(2698)] = 72758, + [SMALL_STATE(2699)] = 72806, + [SMALL_STATE(2700)] = 72900, + [SMALL_STATE(2701)] = 72948, + [SMALL_STATE(2702)] = 72996, + [SMALL_STATE(2703)] = 73044, + [SMALL_STATE(2704)] = 73120, + [SMALL_STATE(2705)] = 73214, + [SMALL_STATE(2706)] = 73262, + [SMALL_STATE(2707)] = 73356, + [SMALL_STATE(2708)] = 73404, + [SMALL_STATE(2709)] = 73452, + [SMALL_STATE(2710)] = 73500, + [SMALL_STATE(2711)] = 73548, + [SMALL_STATE(2712)] = 73596, + [SMALL_STATE(2713)] = 73644, + [SMALL_STATE(2714)] = 73692, + [SMALL_STATE(2715)] = 73740, + [SMALL_STATE(2716)] = 73788, + [SMALL_STATE(2717)] = 73836, + [SMALL_STATE(2718)] = 73884, + [SMALL_STATE(2719)] = 73932, + [SMALL_STATE(2720)] = 74030, + [SMALL_STATE(2721)] = 74078, + [SMALL_STATE(2722)] = 74126, + [SMALL_STATE(2723)] = 74220, + [SMALL_STATE(2724)] = 74270, + [SMALL_STATE(2725)] = 74318, + [SMALL_STATE(2726)] = 74412, + [SMALL_STATE(2727)] = 74510, + [SMALL_STATE(2728)] = 74558, + [SMALL_STATE(2729)] = 74606, + [SMALL_STATE(2730)] = 74654, + [SMALL_STATE(2731)] = 74752, + [SMALL_STATE(2732)] = 74800, + [SMALL_STATE(2733)] = 74894, + [SMALL_STATE(2734)] = 74942, + [SMALL_STATE(2735)] = 75040, + [SMALL_STATE(2736)] = 75138, + [SMALL_STATE(2737)] = 75236, + [SMALL_STATE(2738)] = 75312, + [SMALL_STATE(2739)] = 75360, + [SMALL_STATE(2740)] = 75458, + [SMALL_STATE(2741)] = 75506, + [SMALL_STATE(2742)] = 75554, + [SMALL_STATE(2743)] = 75648, + [SMALL_STATE(2744)] = 75696, + [SMALL_STATE(2745)] = 75744, + [SMALL_STATE(2746)] = 75792, + [SMALL_STATE(2747)] = 75890, + [SMALL_STATE(2748)] = 75938, + [SMALL_STATE(2749)] = 75986, + [SMALL_STATE(2750)] = 76084, + [SMALL_STATE(2751)] = 76132, + [SMALL_STATE(2752)] = 76180, + [SMALL_STATE(2753)] = 76228, + [SMALL_STATE(2754)] = 76276, + [SMALL_STATE(2755)] = 76324, + [SMALL_STATE(2756)] = 76422, + [SMALL_STATE(2757)] = 76470, + [SMALL_STATE(2758)] = 76518, + [SMALL_STATE(2759)] = 76566, + [SMALL_STATE(2760)] = 76664, + [SMALL_STATE(2761)] = 76712, + [SMALL_STATE(2762)] = 76806, + [SMALL_STATE(2763)] = 76854, + [SMALL_STATE(2764)] = 76902, + [SMALL_STATE(2765)] = 76950, + [SMALL_STATE(2766)] = 76998, + [SMALL_STATE(2767)] = 77046, + [SMALL_STATE(2768)] = 77144, + [SMALL_STATE(2769)] = 77192, + [SMALL_STATE(2770)] = 77240, + [SMALL_STATE(2771)] = 77288, + [SMALL_STATE(2772)] = 77336, + [SMALL_STATE(2773)] = 77384, + [SMALL_STATE(2774)] = 77432, + [SMALL_STATE(2775)] = 77480, + [SMALL_STATE(2776)] = 77528, + [SMALL_STATE(2777)] = 77576, + [SMALL_STATE(2778)] = 77674, + [SMALL_STATE(2779)] = 77722, + [SMALL_STATE(2780)] = 77820, + [SMALL_STATE(2781)] = 77868, + [SMALL_STATE(2782)] = 77916, + [SMALL_STATE(2783)] = 78014, + [SMALL_STATE(2784)] = 78090, + [SMALL_STATE(2785)] = 78184, + [SMALL_STATE(2786)] = 78236, + [SMALL_STATE(2787)] = 78334, + [SMALL_STATE(2788)] = 78432, + [SMALL_STATE(2789)] = 78480, + [SMALL_STATE(2790)] = 78578, + [SMALL_STATE(2791)] = 78628, + [SMALL_STATE(2792)] = 78726, + [SMALL_STATE(2793)] = 78824, + [SMALL_STATE(2794)] = 78876, + [SMALL_STATE(2795)] = 78970, + [SMALL_STATE(2796)] = 79068, + [SMALL_STATE(2797)] = 79166, + [SMALL_STATE(2798)] = 79264, + [SMALL_STATE(2799)] = 79312, + [SMALL_STATE(2800)] = 79410, + [SMALL_STATE(2801)] = 79458, + [SMALL_STATE(2802)] = 79506, + [SMALL_STATE(2803)] = 79554, + [SMALL_STATE(2804)] = 79652, + [SMALL_STATE(2805)] = 79702, + [SMALL_STATE(2806)] = 79800, + [SMALL_STATE(2807)] = 79848, + [SMALL_STATE(2808)] = 79896, + [SMALL_STATE(2809)] = 79990, + [SMALL_STATE(2810)] = 80066, + [SMALL_STATE(2811)] = 80114, + [SMALL_STATE(2812)] = 80212, + [SMALL_STATE(2813)] = 80260, + [SMALL_STATE(2814)] = 80310, + [SMALL_STATE(2815)] = 80408, + [SMALL_STATE(2816)] = 80506, + [SMALL_STATE(2817)] = 80554, + [SMALL_STATE(2818)] = 80602, + [SMALL_STATE(2819)] = 80700, + [SMALL_STATE(2820)] = 80772, + [SMALL_STATE(2821)] = 80870, + [SMALL_STATE(2822)] = 80920, + [SMALL_STATE(2823)] = 81018, + [SMALL_STATE(2824)] = 81094, + [SMALL_STATE(2825)] = 81192, + [SMALL_STATE(2826)] = 81242, + [SMALL_STATE(2827)] = 81292, + [SMALL_STATE(2828)] = 81340, + [SMALL_STATE(2829)] = 81438, + [SMALL_STATE(2830)] = 81486, + [SMALL_STATE(2831)] = 81570, + [SMALL_STATE(2832)] = 81620, + [SMALL_STATE(2833)] = 81670, + [SMALL_STATE(2834)] = 81718, + [SMALL_STATE(2835)] = 81766, + [SMALL_STATE(2836)] = 81814, + [SMALL_STATE(2837)] = 81908, + [SMALL_STATE(2838)] = 81990, + [SMALL_STATE(2839)] = 82038, + [SMALL_STATE(2840)] = 82090, + [SMALL_STATE(2841)] = 82140, + [SMALL_STATE(2842)] = 82188, + [SMALL_STATE(2843)] = 82236, + [SMALL_STATE(2844)] = 82334, + [SMALL_STATE(2845)] = 82428, + [SMALL_STATE(2846)] = 82522, + [SMALL_STATE(2847)] = 82620, + [SMALL_STATE(2848)] = 82668, + [SMALL_STATE(2849)] = 82716, + [SMALL_STATE(2850)] = 82764, + [SMALL_STATE(2851)] = 82812, + [SMALL_STATE(2852)] = 82860, + [SMALL_STATE(2853)] = 82958, + [SMALL_STATE(2854)] = 83010, + [SMALL_STATE(2855)] = 83108, + [SMALL_STATE(2856)] = 83156, + [SMALL_STATE(2857)] = 83254, + [SMALL_STATE(2858)] = 83302, + [SMALL_STATE(2859)] = 83400, + [SMALL_STATE(2860)] = 83494, + [SMALL_STATE(2861)] = 83592, + [SMALL_STATE(2862)] = 83687, + [SMALL_STATE(2863)] = 83776, + [SMALL_STATE(2864)] = 83871, + [SMALL_STATE(2865)] = 83966, + [SMALL_STATE(2866)] = 84061, + [SMALL_STATE(2867)] = 84108, + [SMALL_STATE(2868)] = 84155, + [SMALL_STATE(2869)] = 84250, + [SMALL_STATE(2870)] = 84345, + [SMALL_STATE(2871)] = 84394, + [SMALL_STATE(2872)] = 84489, + [SMALL_STATE(2873)] = 84542, + [SMALL_STATE(2874)] = 84637, + [SMALL_STATE(2875)] = 84732, + [SMALL_STATE(2876)] = 84819, + [SMALL_STATE(2877)] = 84914, + [SMALL_STATE(2878)] = 85009, + [SMALL_STATE(2879)] = 85098, + [SMALL_STATE(2880)] = 85193, + [SMALL_STATE(2881)] = 85288, + [SMALL_STATE(2882)] = 85383, + [SMALL_STATE(2883)] = 85478, + [SMALL_STATE(2884)] = 85527, + [SMALL_STATE(2885)] = 85576, + [SMALL_STATE(2886)] = 85629, + [SMALL_STATE(2887)] = 85716, + [SMALL_STATE(2888)] = 85811, + [SMALL_STATE(2889)] = 85857, + [SMALL_STATE(2890)] = 85903, + [SMALL_STATE(2891)] = 85949, + [SMALL_STATE(2892)] = 85995, + [SMALL_STATE(2893)] = 86043, + [SMALL_STATE(2894)] = 86089, + [SMALL_STATE(2895)] = 86137, + [SMALL_STATE(2896)] = 86185, + [SMALL_STATE(2897)] = 86233, + [SMALL_STATE(2898)] = 86315, + [SMALL_STATE(2899)] = 86363, + [SMALL_STATE(2900)] = 86411, + [SMALL_STATE(2901)] = 86493, + [SMALL_STATE(2902)] = 86541, + [SMALL_STATE(2903)] = 86589, + [SMALL_STATE(2904)] = 86635, + [SMALL_STATE(2905)] = 86683, + [SMALL_STATE(2906)] = 86729, + [SMALL_STATE(2907)] = 86775, + [SMALL_STATE(2908)] = 86857, + [SMALL_STATE(2909)] = 86939, + [SMALL_STATE(2910)] = 86985, + [SMALL_STATE(2911)] = 87033, + [SMALL_STATE(2912)] = 87079, + [SMALL_STATE(2913)] = 87161, + [SMALL_STATE(2914)] = 87207, + [SMALL_STATE(2915)] = 87253, + [SMALL_STATE(2916)] = 87299, + [SMALL_STATE(2917)] = 87347, + [SMALL_STATE(2918)] = 87393, + [SMALL_STATE(2919)] = 87439, + [SMALL_STATE(2920)] = 87527, + [SMALL_STATE(2921)] = 87573, + [SMALL_STATE(2922)] = 87655, + [SMALL_STATE(2923)] = 87701, + [SMALL_STATE(2924)] = 87747, + [SMALL_STATE(2925)] = 87793, + [SMALL_STATE(2926)] = 87841, + [SMALL_STATE(2927)] = 87889, + [SMALL_STATE(2928)] = 87935, + [SMALL_STATE(2929)] = 87981, + [SMALL_STATE(2930)] = 88027, + [SMALL_STATE(2931)] = 88073, + [SMALL_STATE(2932)] = 88121, + [SMALL_STATE(2933)] = 88167, + [SMALL_STATE(2934)] = 88213, + [SMALL_STATE(2935)] = 88259, + [SMALL_STATE(2936)] = 88305, + [SMALL_STATE(2937)] = 88351, + [SMALL_STATE(2938)] = 88397, + [SMALL_STATE(2939)] = 88444, + [SMALL_STATE(2940)] = 88493, + [SMALL_STATE(2941)] = 88540, + [SMALL_STATE(2942)] = 88587, + [SMALL_STATE(2943)] = 88636, + [SMALL_STATE(2944)] = 88685, + [SMALL_STATE(2945)] = 88732, + [SMALL_STATE(2946)] = 88779, + [SMALL_STATE(2947)] = 88826, + [SMALL_STATE(2948)] = 88875, + [SMALL_STATE(2949)] = 88922, + [SMALL_STATE(2950)] = 88969, + [SMALL_STATE(2951)] = 89016, + [SMALL_STATE(2952)] = 89065, + [SMALL_STATE(2953)] = 89112, + [SMALL_STATE(2954)] = 89159, + [SMALL_STATE(2955)] = 89206, + [SMALL_STATE(2956)] = 89253, + [SMALL_STATE(2957)] = 89300, + [SMALL_STATE(2958)] = 89349, + [SMALL_STATE(2959)] = 89396, + [SMALL_STATE(2960)] = 89445, + [SMALL_STATE(2961)] = 89494, + [SMALL_STATE(2962)] = 89541, + [SMALL_STATE(2963)] = 89590, + [SMALL_STATE(2964)] = 89639, + [SMALL_STATE(2965)] = 89686, + [SMALL_STATE(2966)] = 89733, + [SMALL_STATE(2967)] = 89780, + [SMALL_STATE(2968)] = 89827, + [SMALL_STATE(2969)] = 89874, + [SMALL_STATE(2970)] = 89921, + [SMALL_STATE(2971)] = 89968, + [SMALL_STATE(2972)] = 90015, + [SMALL_STATE(2973)] = 90062, + [SMALL_STATE(2974)] = 90109, + [SMALL_STATE(2975)] = 90156, + [SMALL_STATE(2976)] = 90205, + [SMALL_STATE(2977)] = 90252, + [SMALL_STATE(2978)] = 90299, + [SMALL_STATE(2979)] = 90346, + [SMALL_STATE(2980)] = 90395, + [SMALL_STATE(2981)] = 90444, + [SMALL_STATE(2982)] = 90491, + [SMALL_STATE(2983)] = 90538, + [SMALL_STATE(2984)] = 90585, + [SMALL_STATE(2985)] = 90632, + [SMALL_STATE(2986)] = 90681, + [SMALL_STATE(2987)] = 90730, + [SMALL_STATE(2988)] = 90777, + [SMALL_STATE(2989)] = 90826, + [SMALL_STATE(2990)] = 90875, + [SMALL_STATE(2991)] = 90924, + [SMALL_STATE(2992)] = 90971, + [SMALL_STATE(2993)] = 91018, + [SMALL_STATE(2994)] = 91065, + [SMALL_STATE(2995)] = 91112, + [SMALL_STATE(2996)] = 91161, + [SMALL_STATE(2997)] = 91208, + [SMALL_STATE(2998)] = 91257, + [SMALL_STATE(2999)] = 91304, + [SMALL_STATE(3000)] = 91353, + [SMALL_STATE(3001)] = 91400, + [SMALL_STATE(3002)] = 91447, + [SMALL_STATE(3003)] = 91496, + [SMALL_STATE(3004)] = 91545, + [SMALL_STATE(3005)] = 91594, + [SMALL_STATE(3006)] = 91643, + [SMALL_STATE(3007)] = 91692, + [SMALL_STATE(3008)] = 91739, + [SMALL_STATE(3009)] = 91788, + [SMALL_STATE(3010)] = 91837, + [SMALL_STATE(3011)] = 91919, + [SMALL_STATE(3012)] = 92001, + [SMALL_STATE(3013)] = 92080, + [SMALL_STATE(3014)] = 92159, + [SMALL_STATE(3015)] = 92238, + [SMALL_STATE(3016)] = 92317, + [SMALL_STATE(3017)] = 92396, + [SMALL_STATE(3018)] = 92475, + [SMALL_STATE(3019)] = 92554, + [SMALL_STATE(3020)] = 92633, + [SMALL_STATE(3021)] = 92712, + [SMALL_STATE(3022)] = 92791, + [SMALL_STATE(3023)] = 92870, + [SMALL_STATE(3024)] = 92949, + [SMALL_STATE(3025)] = 93028, + [SMALL_STATE(3026)] = 93107, + [SMALL_STATE(3027)] = 93186, + [SMALL_STATE(3028)] = 93265, + [SMALL_STATE(3029)] = 93344, + [SMALL_STATE(3030)] = 93423, + [SMALL_STATE(3031)] = 93502, + [SMALL_STATE(3032)] = 93581, + [SMALL_STATE(3033)] = 93660, + [SMALL_STATE(3034)] = 93739, + [SMALL_STATE(3035)] = 93818, + [SMALL_STATE(3036)] = 93897, + [SMALL_STATE(3037)] = 93950, + [SMALL_STATE(3038)] = 94029, + [SMALL_STATE(3039)] = 94108, + [SMALL_STATE(3040)] = 94187, + [SMALL_STATE(3041)] = 94266, + [SMALL_STATE(3042)] = 94345, + [SMALL_STATE(3043)] = 94424, + [SMALL_STATE(3044)] = 94503, + [SMALL_STATE(3045)] = 94582, + [SMALL_STATE(3046)] = 94661, + [SMALL_STATE(3047)] = 94740, + [SMALL_STATE(3048)] = 94819, + [SMALL_STATE(3049)] = 94898, + [SMALL_STATE(3050)] = 94977, + [SMALL_STATE(3051)] = 95053, + [SMALL_STATE(3052)] = 95129, + [SMALL_STATE(3053)] = 95205, + [SMALL_STATE(3054)] = 95281, + [SMALL_STATE(3055)] = 95357, + [SMALL_STATE(3056)] = 95433, + [SMALL_STATE(3057)] = 95509, + [SMALL_STATE(3058)] = 95585, + [SMALL_STATE(3059)] = 95661, + [SMALL_STATE(3060)] = 95737, + [SMALL_STATE(3061)] = 95813, + [SMALL_STATE(3062)] = 95889, + [SMALL_STATE(3063)] = 95965, + [SMALL_STATE(3064)] = 96041, + [SMALL_STATE(3065)] = 96117, + [SMALL_STATE(3066)] = 96193, + [SMALL_STATE(3067)] = 96269, + [SMALL_STATE(3068)] = 96345, + [SMALL_STATE(3069)] = 96421, + [SMALL_STATE(3070)] = 96497, + [SMALL_STATE(3071)] = 96573, + [SMALL_STATE(3072)] = 96649, + [SMALL_STATE(3073)] = 96725, + [SMALL_STATE(3074)] = 96801, + [SMALL_STATE(3075)] = 96877, + [SMALL_STATE(3076)] = 96953, + [SMALL_STATE(3077)] = 97029, + [SMALL_STATE(3078)] = 97105, + [SMALL_STATE(3079)] = 97181, + [SMALL_STATE(3080)] = 97257, + [SMALL_STATE(3081)] = 97333, + [SMALL_STATE(3082)] = 97409, + [SMALL_STATE(3083)] = 97485, + [SMALL_STATE(3084)] = 97561, + [SMALL_STATE(3085)] = 97637, + [SMALL_STATE(3086)] = 97713, + [SMALL_STATE(3087)] = 97789, + [SMALL_STATE(3088)] = 97865, + [SMALL_STATE(3089)] = 97941, + [SMALL_STATE(3090)] = 98017, + [SMALL_STATE(3091)] = 98093, + [SMALL_STATE(3092)] = 98169, + [SMALL_STATE(3093)] = 98245, + [SMALL_STATE(3094)] = 98321, + [SMALL_STATE(3095)] = 98397, + [SMALL_STATE(3096)] = 98473, + [SMALL_STATE(3097)] = 98549, + [SMALL_STATE(3098)] = 98625, + [SMALL_STATE(3099)] = 98701, + [SMALL_STATE(3100)] = 98777, + [SMALL_STATE(3101)] = 98853, + [SMALL_STATE(3102)] = 98929, + [SMALL_STATE(3103)] = 99005, + [SMALL_STATE(3104)] = 99081, + [SMALL_STATE(3105)] = 99157, + [SMALL_STATE(3106)] = 99233, + [SMALL_STATE(3107)] = 99309, + [SMALL_STATE(3108)] = 99385, + [SMALL_STATE(3109)] = 99461, + [SMALL_STATE(3110)] = 99537, + [SMALL_STATE(3111)] = 99613, + [SMALL_STATE(3112)] = 99689, + [SMALL_STATE(3113)] = 99765, + [SMALL_STATE(3114)] = 99841, + [SMALL_STATE(3115)] = 99917, + [SMALL_STATE(3116)] = 99993, + [SMALL_STATE(3117)] = 100069, + [SMALL_STATE(3118)] = 100145, + [SMALL_STATE(3119)] = 100221, + [SMALL_STATE(3120)] = 100297, + [SMALL_STATE(3121)] = 100373, + [SMALL_STATE(3122)] = 100449, + [SMALL_STATE(3123)] = 100525, + [SMALL_STATE(3124)] = 100601, + [SMALL_STATE(3125)] = 100677, + [SMALL_STATE(3126)] = 100753, + [SMALL_STATE(3127)] = 100829, + [SMALL_STATE(3128)] = 100905, + [SMALL_STATE(3129)] = 100981, + [SMALL_STATE(3130)] = 101057, + [SMALL_STATE(3131)] = 101133, + [SMALL_STATE(3132)] = 101209, + [SMALL_STATE(3133)] = 101285, + [SMALL_STATE(3134)] = 101361, + [SMALL_STATE(3135)] = 101437, + [SMALL_STATE(3136)] = 101513, + [SMALL_STATE(3137)] = 101589, + [SMALL_STATE(3138)] = 101665, + [SMALL_STATE(3139)] = 101741, + [SMALL_STATE(3140)] = 101817, + [SMALL_STATE(3141)] = 101893, + [SMALL_STATE(3142)] = 101969, + [SMALL_STATE(3143)] = 102045, + [SMALL_STATE(3144)] = 102121, + [SMALL_STATE(3145)] = 102197, + [SMALL_STATE(3146)] = 102273, + [SMALL_STATE(3147)] = 102349, + [SMALL_STATE(3148)] = 102425, + [SMALL_STATE(3149)] = 102501, + [SMALL_STATE(3150)] = 102577, + [SMALL_STATE(3151)] = 102653, + [SMALL_STATE(3152)] = 102729, + [SMALL_STATE(3153)] = 102805, + [SMALL_STATE(3154)] = 102881, + [SMALL_STATE(3155)] = 102957, + [SMALL_STATE(3156)] = 103033, + [SMALL_STATE(3157)] = 103109, + [SMALL_STATE(3158)] = 103185, + [SMALL_STATE(3159)] = 103261, + [SMALL_STATE(3160)] = 103337, + [SMALL_STATE(3161)] = 103413, + [SMALL_STATE(3162)] = 103489, + [SMALL_STATE(3163)] = 103565, + [SMALL_STATE(3164)] = 103641, + [SMALL_STATE(3165)] = 103717, + [SMALL_STATE(3166)] = 103793, + [SMALL_STATE(3167)] = 103869, + [SMALL_STATE(3168)] = 103945, + [SMALL_STATE(3169)] = 104021, + [SMALL_STATE(3170)] = 104097, + [SMALL_STATE(3171)] = 104173, + [SMALL_STATE(3172)] = 104249, + [SMALL_STATE(3173)] = 104325, + [SMALL_STATE(3174)] = 104401, + [SMALL_STATE(3175)] = 104477, + [SMALL_STATE(3176)] = 104553, + [SMALL_STATE(3177)] = 104629, + [SMALL_STATE(3178)] = 104705, + [SMALL_STATE(3179)] = 104781, + [SMALL_STATE(3180)] = 104857, + [SMALL_STATE(3181)] = 104933, + [SMALL_STATE(3182)] = 105009, + [SMALL_STATE(3183)] = 105085, + [SMALL_STATE(3184)] = 105161, + [SMALL_STATE(3185)] = 105237, + [SMALL_STATE(3186)] = 105313, + [SMALL_STATE(3187)] = 105389, + [SMALL_STATE(3188)] = 105465, + [SMALL_STATE(3189)] = 105541, + [SMALL_STATE(3190)] = 105617, + [SMALL_STATE(3191)] = 105693, + [SMALL_STATE(3192)] = 105769, + [SMALL_STATE(3193)] = 105845, + [SMALL_STATE(3194)] = 105921, + [SMALL_STATE(3195)] = 105997, + [SMALL_STATE(3196)] = 106073, + [SMALL_STATE(3197)] = 106149, + [SMALL_STATE(3198)] = 106225, + [SMALL_STATE(3199)] = 106301, + [SMALL_STATE(3200)] = 106377, + [SMALL_STATE(3201)] = 106453, + [SMALL_STATE(3202)] = 106529, + [SMALL_STATE(3203)] = 106605, + [SMALL_STATE(3204)] = 106681, + [SMALL_STATE(3205)] = 106757, + [SMALL_STATE(3206)] = 106833, + [SMALL_STATE(3207)] = 106909, + [SMALL_STATE(3208)] = 106985, + [SMALL_STATE(3209)] = 107061, + [SMALL_STATE(3210)] = 107137, + [SMALL_STATE(3211)] = 107213, + [SMALL_STATE(3212)] = 107289, + [SMALL_STATE(3213)] = 107365, + [SMALL_STATE(3214)] = 107441, + [SMALL_STATE(3215)] = 107517, + [SMALL_STATE(3216)] = 107593, + [SMALL_STATE(3217)] = 107669, + [SMALL_STATE(3218)] = 107745, + [SMALL_STATE(3219)] = 107821, + [SMALL_STATE(3220)] = 107897, + [SMALL_STATE(3221)] = 107973, + [SMALL_STATE(3222)] = 108049, + [SMALL_STATE(3223)] = 108125, + [SMALL_STATE(3224)] = 108201, + [SMALL_STATE(3225)] = 108277, + [SMALL_STATE(3226)] = 108353, + [SMALL_STATE(3227)] = 108429, + [SMALL_STATE(3228)] = 108505, + [SMALL_STATE(3229)] = 108581, + [SMALL_STATE(3230)] = 108657, + [SMALL_STATE(3231)] = 108733, + [SMALL_STATE(3232)] = 108809, + [SMALL_STATE(3233)] = 108885, + [SMALL_STATE(3234)] = 108961, + [SMALL_STATE(3235)] = 109037, + [SMALL_STATE(3236)] = 109113, + [SMALL_STATE(3237)] = 109189, + [SMALL_STATE(3238)] = 109265, + [SMALL_STATE(3239)] = 109341, + [SMALL_STATE(3240)] = 109417, + [SMALL_STATE(3241)] = 109493, + [SMALL_STATE(3242)] = 109569, + [SMALL_STATE(3243)] = 109645, + [SMALL_STATE(3244)] = 109721, + [SMALL_STATE(3245)] = 109797, + [SMALL_STATE(3246)] = 109873, + [SMALL_STATE(3247)] = 109949, + [SMALL_STATE(3248)] = 110025, + [SMALL_STATE(3249)] = 110101, + [SMALL_STATE(3250)] = 110177, + [SMALL_STATE(3251)] = 110253, + [SMALL_STATE(3252)] = 110329, + [SMALL_STATE(3253)] = 110405, + [SMALL_STATE(3254)] = 110481, + [SMALL_STATE(3255)] = 110557, + [SMALL_STATE(3256)] = 110633, + [SMALL_STATE(3257)] = 110709, + [SMALL_STATE(3258)] = 110785, + [SMALL_STATE(3259)] = 110861, + [SMALL_STATE(3260)] = 110937, + [SMALL_STATE(3261)] = 111013, + [SMALL_STATE(3262)] = 111089, + [SMALL_STATE(3263)] = 111165, + [SMALL_STATE(3264)] = 111241, + [SMALL_STATE(3265)] = 111317, + [SMALL_STATE(3266)] = 111393, + [SMALL_STATE(3267)] = 111469, + [SMALL_STATE(3268)] = 111545, + [SMALL_STATE(3269)] = 111621, + [SMALL_STATE(3270)] = 111697, + [SMALL_STATE(3271)] = 111773, + [SMALL_STATE(3272)] = 111849, + [SMALL_STATE(3273)] = 111925, + [SMALL_STATE(3274)] = 112001, + [SMALL_STATE(3275)] = 112077, + [SMALL_STATE(3276)] = 112153, + [SMALL_STATE(3277)] = 112229, + [SMALL_STATE(3278)] = 112305, + [SMALL_STATE(3279)] = 112381, + [SMALL_STATE(3280)] = 112457, + [SMALL_STATE(3281)] = 112533, + [SMALL_STATE(3282)] = 112609, + [SMALL_STATE(3283)] = 112685, + [SMALL_STATE(3284)] = 112761, + [SMALL_STATE(3285)] = 112837, + [SMALL_STATE(3286)] = 112913, + [SMALL_STATE(3287)] = 112989, + [SMALL_STATE(3288)] = 113065, + [SMALL_STATE(3289)] = 113141, + [SMALL_STATE(3290)] = 113217, + [SMALL_STATE(3291)] = 113293, + [SMALL_STATE(3292)] = 113369, + [SMALL_STATE(3293)] = 113445, + [SMALL_STATE(3294)] = 113521, + [SMALL_STATE(3295)] = 113597, + [SMALL_STATE(3296)] = 113673, + [SMALL_STATE(3297)] = 113749, + [SMALL_STATE(3298)] = 113825, + [SMALL_STATE(3299)] = 113901, + [SMALL_STATE(3300)] = 113977, + [SMALL_STATE(3301)] = 114053, + [SMALL_STATE(3302)] = 114129, + [SMALL_STATE(3303)] = 114205, + [SMALL_STATE(3304)] = 114281, + [SMALL_STATE(3305)] = 114357, + [SMALL_STATE(3306)] = 114433, + [SMALL_STATE(3307)] = 114509, + [SMALL_STATE(3308)] = 114585, + [SMALL_STATE(3309)] = 114661, + [SMALL_STATE(3310)] = 114737, + [SMALL_STATE(3311)] = 114813, + [SMALL_STATE(3312)] = 114889, + [SMALL_STATE(3313)] = 114965, + [SMALL_STATE(3314)] = 115041, + [SMALL_STATE(3315)] = 115117, + [SMALL_STATE(3316)] = 115178, + [SMALL_STATE(3317)] = 115243, + [SMALL_STATE(3318)] = 115304, + [SMALL_STATE(3319)] = 115365, + [SMALL_STATE(3320)] = 115430, + [SMALL_STATE(3321)] = 115491, + [SMALL_STATE(3322)] = 115552, + [SMALL_STATE(3323)] = 115613, + [SMALL_STATE(3324)] = 115674, + [SMALL_STATE(3325)] = 115735, + [SMALL_STATE(3326)] = 115796, + [SMALL_STATE(3327)] = 115857, + [SMALL_STATE(3328)] = 115918, + [SMALL_STATE(3329)] = 115979, + [SMALL_STATE(3330)] = 116040, + [SMALL_STATE(3331)] = 116101, + [SMALL_STATE(3332)] = 116161, + [SMALL_STATE(3333)] = 116191, + [SMALL_STATE(3334)] = 116221, + [SMALL_STATE(3335)] = 116251, + [SMALL_STATE(3336)] = 116281, + [SMALL_STATE(3337)] = 116311, + [SMALL_STATE(3338)] = 116341, + [SMALL_STATE(3339)] = 116379, + [SMALL_STATE(3340)] = 116405, + [SMALL_STATE(3341)] = 116431, + [SMALL_STATE(3342)] = 116457, + [SMALL_STATE(3343)] = 116483, + [SMALL_STATE(3344)] = 116521, + [SMALL_STATE(3345)] = 116547, + [SMALL_STATE(3346)] = 116591, + [SMALL_STATE(3347)] = 116629, + [SMALL_STATE(3348)] = 116656, + [SMALL_STATE(3349)] = 116685, + [SMALL_STATE(3350)] = 116712, + [SMALL_STATE(3351)] = 116735, + [SMALL_STATE(3352)] = 116758, + [SMALL_STATE(3353)] = 116781, + [SMALL_STATE(3354)] = 116807, + [SMALL_STATE(3355)] = 116833, + [SMALL_STATE(3356)] = 116859, + [SMALL_STATE(3357)] = 116885, + [SMALL_STATE(3358)] = 116911, + [SMALL_STATE(3359)] = 116937, + [SMALL_STATE(3360)] = 116963, + [SMALL_STATE(3361)] = 116989, + [SMALL_STATE(3362)] = 117015, + [SMALL_STATE(3363)] = 117056, + [SMALL_STATE(3364)] = 117079, + [SMALL_STATE(3365)] = 117104, + [SMALL_STATE(3366)] = 117145, + [SMALL_STATE(3367)] = 117186, + [SMALL_STATE(3368)] = 117209, + [SMALL_STATE(3369)] = 117249, + [SMALL_STATE(3370)] = 117289, + [SMALL_STATE(3371)] = 117315, + [SMALL_STATE(3372)] = 117341, + [SMALL_STATE(3373)] = 117381, + [SMALL_STATE(3374)] = 117421, + [SMALL_STATE(3375)] = 117447, + [SMALL_STATE(3376)] = 117473, + [SMALL_STATE(3377)] = 117513, + [SMALL_STATE(3378)] = 117535, + [SMALL_STATE(3379)] = 117575, + [SMALL_STATE(3380)] = 117615, + [SMALL_STATE(3381)] = 117637, + [SMALL_STATE(3382)] = 117659, + [SMALL_STATE(3383)] = 117685, + [SMALL_STATE(3384)] = 117725, + [SMALL_STATE(3385)] = 117765, + [SMALL_STATE(3386)] = 117805, + [SMALL_STATE(3387)] = 117827, + [SMALL_STATE(3388)] = 117867, + [SMALL_STATE(3389)] = 117891, + [SMALL_STATE(3390)] = 117931, + [SMALL_STATE(3391)] = 117971, + [SMALL_STATE(3392)] = 118011, + [SMALL_STATE(3393)] = 118051, + [SMALL_STATE(3394)] = 118091, + [SMALL_STATE(3395)] = 118131, + [SMALL_STATE(3396)] = 118171, + [SMALL_STATE(3397)] = 118211, + [SMALL_STATE(3398)] = 118235, + [SMALL_STATE(3399)] = 118275, + [SMALL_STATE(3400)] = 118315, + [SMALL_STATE(3401)] = 118337, + [SMALL_STATE(3402)] = 118363, + [SMALL_STATE(3403)] = 118403, + [SMALL_STATE(3404)] = 118443, + [SMALL_STATE(3405)] = 118483, + [SMALL_STATE(3406)] = 118509, + [SMALL_STATE(3407)] = 118535, + [SMALL_STATE(3408)] = 118575, + [SMALL_STATE(3409)] = 118615, + [SMALL_STATE(3410)] = 118655, + [SMALL_STATE(3411)] = 118677, + [SMALL_STATE(3412)] = 118717, + [SMALL_STATE(3413)] = 118757, + [SMALL_STATE(3414)] = 118779, + [SMALL_STATE(3415)] = 118798, + [SMALL_STATE(3416)] = 118823, + [SMALL_STATE(3417)] = 118848, + [SMALL_STATE(3418)] = 118867, + [SMALL_STATE(3419)] = 118886, + [SMALL_STATE(3420)] = 118906, + [SMALL_STATE(3421)] = 118926, + [SMALL_STATE(3422)] = 118950, + [SMALL_STATE(3423)] = 118967, + [SMALL_STATE(3424)] = 118988, + [SMALL_STATE(3425)] = 119011, + [SMALL_STATE(3426)] = 119028, + [SMALL_STATE(3427)] = 119045, + [SMALL_STATE(3428)] = 119062, + [SMALL_STATE(3429)] = 119079, + [SMALL_STATE(3430)] = 119096, + [SMALL_STATE(3431)] = 119113, + [SMALL_STATE(3432)] = 119130, + [SMALL_STATE(3433)] = 119147, + [SMALL_STATE(3434)] = 119164, + [SMALL_STATE(3435)] = 119185, + [SMALL_STATE(3436)] = 119202, + [SMALL_STATE(3437)] = 119219, + [SMALL_STATE(3438)] = 119236, + [SMALL_STATE(3439)] = 119253, + [SMALL_STATE(3440)] = 119270, + [SMALL_STATE(3441)] = 119287, + [SMALL_STATE(3442)] = 119304, + [SMALL_STATE(3443)] = 119321, + [SMALL_STATE(3444)] = 119338, + [SMALL_STATE(3445)] = 119355, + [SMALL_STATE(3446)] = 119372, + [SMALL_STATE(3447)] = 119389, + [SMALL_STATE(3448)] = 119411, + [SMALL_STATE(3449)] = 119443, + [SMALL_STATE(3450)] = 119463, + [SMALL_STATE(3451)] = 119492, + [SMALL_STATE(3452)] = 119519, + [SMALL_STATE(3453)] = 119536, + [SMALL_STATE(3454)] = 119557, + [SMALL_STATE(3455)] = 119584, + [SMALL_STATE(3456)] = 119611, + [SMALL_STATE(3457)] = 119630, + [SMALL_STATE(3458)] = 119657, + [SMALL_STATE(3459)] = 119684, + [SMALL_STATE(3460)] = 119711, + [SMALL_STATE(3461)] = 119732, + [SMALL_STATE(3462)] = 119759, + [SMALL_STATE(3463)] = 119786, + [SMALL_STATE(3464)] = 119801, + [SMALL_STATE(3465)] = 119828, + [SMALL_STATE(3466)] = 119855, + [SMALL_STATE(3467)] = 119882, + [SMALL_STATE(3468)] = 119909, + [SMALL_STATE(3469)] = 119927, + [SMALL_STATE(3470)] = 119949, + [SMALL_STATE(3471)] = 119963, + [SMALL_STATE(3472)] = 119981, + [SMALL_STATE(3473)] = 119995, + [SMALL_STATE(3474)] = 120013, + [SMALL_STATE(3475)] = 120039, + [SMALL_STATE(3476)] = 120055, + [SMALL_STATE(3477)] = 120069, + [SMALL_STATE(3478)] = 120095, + [SMALL_STATE(3479)] = 120111, + [SMALL_STATE(3480)] = 120125, + [SMALL_STATE(3481)] = 120139, + [SMALL_STATE(3482)] = 120155, + [SMALL_STATE(3483)] = 120169, + [SMALL_STATE(3484)] = 120183, + [SMALL_STATE(3485)] = 120197, + [SMALL_STATE(3486)] = 120225, + [SMALL_STATE(3487)] = 120239, + [SMALL_STATE(3488)] = 120260, + [SMALL_STATE(3489)] = 120281, + [SMALL_STATE(3490)] = 120302, + [SMALL_STATE(3491)] = 120319, + [SMALL_STATE(3492)] = 120336, + [SMALL_STATE(3493)] = 120357, + [SMALL_STATE(3494)] = 120378, + [SMALL_STATE(3495)] = 120399, + [SMALL_STATE(3496)] = 120416, + [SMALL_STATE(3497)] = 120433, + [SMALL_STATE(3498)] = 120450, + [SMALL_STATE(3499)] = 120471, + [SMALL_STATE(3500)] = 120492, + [SMALL_STATE(3501)] = 120509, + [SMALL_STATE(3502)] = 120530, + [SMALL_STATE(3503)] = 120551, + [SMALL_STATE(3504)] = 120568, + [SMALL_STATE(3505)] = 120585, + [SMALL_STATE(3506)] = 120606, + [SMALL_STATE(3507)] = 120623, + [SMALL_STATE(3508)] = 120636, + [SMALL_STATE(3509)] = 120657, + [SMALL_STATE(3510)] = 120674, + [SMALL_STATE(3511)] = 120687, + [SMALL_STATE(3512)] = 120708, + [SMALL_STATE(3513)] = 120725, + [SMALL_STATE(3514)] = 120742, + [SMALL_STATE(3515)] = 120763, + [SMALL_STATE(3516)] = 120780, + [SMALL_STATE(3517)] = 120797, + [SMALL_STATE(3518)] = 120822, + [SMALL_STATE(3519)] = 120839, + [SMALL_STATE(3520)] = 120860, + [SMALL_STATE(3521)] = 120877, + [SMALL_STATE(3522)] = 120898, + [SMALL_STATE(3523)] = 120919, + [SMALL_STATE(3524)] = 120936, + [SMALL_STATE(3525)] = 120949, + [SMALL_STATE(3526)] = 120966, + [SMALL_STATE(3527)] = 120983, + [SMALL_STATE(3528)] = 121000, + [SMALL_STATE(3529)] = 121021, + [SMALL_STATE(3530)] = 121042, + [SMALL_STATE(3531)] = 121059, + [SMALL_STATE(3532)] = 121080, + [SMALL_STATE(3533)] = 121101, + [SMALL_STATE(3534)] = 121122, + [SMALL_STATE(3535)] = 121139, + [SMALL_STATE(3536)] = 121156, + [SMALL_STATE(3537)] = 121173, + [SMALL_STATE(3538)] = 121190, + [SMALL_STATE(3539)] = 121211, + [SMALL_STATE(3540)] = 121228, + [SMALL_STATE(3541)] = 121251, + [SMALL_STATE(3542)] = 121272, + [SMALL_STATE(3543)] = 121297, + [SMALL_STATE(3544)] = 121317, + [SMALL_STATE(3545)] = 121337, + [SMALL_STATE(3546)] = 121357, + [SMALL_STATE(3547)] = 121369, + [SMALL_STATE(3548)] = 121385, + [SMALL_STATE(3549)] = 121405, + [SMALL_STATE(3550)] = 121425, + [SMALL_STATE(3551)] = 121445, + [SMALL_STATE(3552)] = 121465, + [SMALL_STATE(3553)] = 121485, + [SMALL_STATE(3554)] = 121501, + [SMALL_STATE(3555)] = 121517, + [SMALL_STATE(3556)] = 121537, + [SMALL_STATE(3557)] = 121557, + [SMALL_STATE(3558)] = 121577, + [SMALL_STATE(3559)] = 121597, + [SMALL_STATE(3560)] = 121617, + [SMALL_STATE(3561)] = 121631, + [SMALL_STATE(3562)] = 121647, + [SMALL_STATE(3563)] = 121667, + [SMALL_STATE(3564)] = 121687, + [SMALL_STATE(3565)] = 121707, + [SMALL_STATE(3566)] = 121723, + [SMALL_STATE(3567)] = 121739, + [SMALL_STATE(3568)] = 121759, + [SMALL_STATE(3569)] = 121779, + [SMALL_STATE(3570)] = 121799, + [SMALL_STATE(3571)] = 121819, + [SMALL_STATE(3572)] = 121839, + [SMALL_STATE(3573)] = 121859, + [SMALL_STATE(3574)] = 121879, + [SMALL_STATE(3575)] = 121899, + [SMALL_STATE(3576)] = 121919, + [SMALL_STATE(3577)] = 121939, + [SMALL_STATE(3578)] = 121959, + [SMALL_STATE(3579)] = 121979, + [SMALL_STATE(3580)] = 121999, + [SMALL_STATE(3581)] = 122019, + [SMALL_STATE(3582)] = 122039, + [SMALL_STATE(3583)] = 122059, + [SMALL_STATE(3584)] = 122079, + [SMALL_STATE(3585)] = 122099, + [SMALL_STATE(3586)] = 122119, + [SMALL_STATE(3587)] = 122139, + [SMALL_STATE(3588)] = 122159, + [SMALL_STATE(3589)] = 122179, + [SMALL_STATE(3590)] = 122199, + [SMALL_STATE(3591)] = 122219, + [SMALL_STATE(3592)] = 122239, + [SMALL_STATE(3593)] = 122259, + [SMALL_STATE(3594)] = 122279, + [SMALL_STATE(3595)] = 122299, + [SMALL_STATE(3596)] = 122319, + [SMALL_STATE(3597)] = 122339, + [SMALL_STATE(3598)] = 122361, + [SMALL_STATE(3599)] = 122381, + [SMALL_STATE(3600)] = 122401, + [SMALL_STATE(3601)] = 122421, + [SMALL_STATE(3602)] = 122441, + [SMALL_STATE(3603)] = 122461, + [SMALL_STATE(3604)] = 122477, + [SMALL_STATE(3605)] = 122497, + [SMALL_STATE(3606)] = 122509, + [SMALL_STATE(3607)] = 122529, + [SMALL_STATE(3608)] = 122549, + [SMALL_STATE(3609)] = 122569, + [SMALL_STATE(3610)] = 122589, + [SMALL_STATE(3611)] = 122609, + [SMALL_STATE(3612)] = 122629, + [SMALL_STATE(3613)] = 122649, + [SMALL_STATE(3614)] = 122669, + [SMALL_STATE(3615)] = 122689, + [SMALL_STATE(3616)] = 122709, + [SMALL_STATE(3617)] = 122725, + [SMALL_STATE(3618)] = 122745, + [SMALL_STATE(3619)] = 122765, + [SMALL_STATE(3620)] = 122785, + [SMALL_STATE(3621)] = 122805, + [SMALL_STATE(3622)] = 122825, + [SMALL_STATE(3623)] = 122845, + [SMALL_STATE(3624)] = 122865, + [SMALL_STATE(3625)] = 122885, + [SMALL_STATE(3626)] = 122905, + [SMALL_STATE(3627)] = 122925, + [SMALL_STATE(3628)] = 122945, + [SMALL_STATE(3629)] = 122965, + [SMALL_STATE(3630)] = 122985, + [SMALL_STATE(3631)] = 123005, + [SMALL_STATE(3632)] = 123025, + [SMALL_STATE(3633)] = 123045, + [SMALL_STATE(3634)] = 123065, + [SMALL_STATE(3635)] = 123085, + [SMALL_STATE(3636)] = 123105, + [SMALL_STATE(3637)] = 123125, + [SMALL_STATE(3638)] = 123141, + [SMALL_STATE(3639)] = 123161, + [SMALL_STATE(3640)] = 123181, + [SMALL_STATE(3641)] = 123201, + [SMALL_STATE(3642)] = 123221, + [SMALL_STATE(3643)] = 123237, + [SMALL_STATE(3644)] = 123257, + [SMALL_STATE(3645)] = 123277, + [SMALL_STATE(3646)] = 123297, + [SMALL_STATE(3647)] = 123317, + [SMALL_STATE(3648)] = 123337, + [SMALL_STATE(3649)] = 123353, + [SMALL_STATE(3650)] = 123373, + [SMALL_STATE(3651)] = 123393, + [SMALL_STATE(3652)] = 123413, + [SMALL_STATE(3653)] = 123433, + [SMALL_STATE(3654)] = 123453, + [SMALL_STATE(3655)] = 123473, + [SMALL_STATE(3656)] = 123493, + [SMALL_STATE(3657)] = 123515, + [SMALL_STATE(3658)] = 123535, + [SMALL_STATE(3659)] = 123550, + [SMALL_STATE(3660)] = 123569, + [SMALL_STATE(3661)] = 123586, + [SMALL_STATE(3662)] = 123603, + [SMALL_STATE(3663)] = 123622, + [SMALL_STATE(3664)] = 123635, + [SMALL_STATE(3665)] = 123646, + [SMALL_STATE(3666)] = 123663, + [SMALL_STATE(3667)] = 123676, + [SMALL_STATE(3668)] = 123691, + [SMALL_STATE(3669)] = 123706, + [SMALL_STATE(3670)] = 123719, + [SMALL_STATE(3671)] = 123734, + [SMALL_STATE(3672)] = 123747, + [SMALL_STATE(3673)] = 123766, + [SMALL_STATE(3674)] = 123783, + [SMALL_STATE(3675)] = 123802, + [SMALL_STATE(3676)] = 123813, + [SMALL_STATE(3677)] = 123828, + [SMALL_STATE(3678)] = 123839, + [SMALL_STATE(3679)] = 123854, + [SMALL_STATE(3680)] = 123873, + [SMALL_STATE(3681)] = 123890, + [SMALL_STATE(3682)] = 123907, + [SMALL_STATE(3683)] = 123922, + [SMALL_STATE(3684)] = 123933, + [SMALL_STATE(3685)] = 123950, + [SMALL_STATE(3686)] = 123967, + [SMALL_STATE(3687)] = 123980, + [SMALL_STATE(3688)] = 123991, + [SMALL_STATE(3689)] = 124010, + [SMALL_STATE(3690)] = 124024, + [SMALL_STATE(3691)] = 124038, + [SMALL_STATE(3692)] = 124052, + [SMALL_STATE(3693)] = 124066, + [SMALL_STATE(3694)] = 124080, + [SMALL_STATE(3695)] = 124094, + [SMALL_STATE(3696)] = 124108, + [SMALL_STATE(3697)] = 124122, + [SMALL_STATE(3698)] = 124138, + [SMALL_STATE(3699)] = 124152, + [SMALL_STATE(3700)] = 124166, + [SMALL_STATE(3701)] = 124182, + [SMALL_STATE(3702)] = 124196, + [SMALL_STATE(3703)] = 124212, + [SMALL_STATE(3704)] = 124226, + [SMALL_STATE(3705)] = 124240, + [SMALL_STATE(3706)] = 124254, + [SMALL_STATE(3707)] = 124266, + [SMALL_STATE(3708)] = 124282, + [SMALL_STATE(3709)] = 124296, + [SMALL_STATE(3710)] = 124308, + [SMALL_STATE(3711)] = 124322, + [SMALL_STATE(3712)] = 124338, + [SMALL_STATE(3713)] = 124352, + [SMALL_STATE(3714)] = 124368, + [SMALL_STATE(3715)] = 124384, + [SMALL_STATE(3716)] = 124398, + [SMALL_STATE(3717)] = 124414, + [SMALL_STATE(3718)] = 124430, + [SMALL_STATE(3719)] = 124440, + [SMALL_STATE(3720)] = 124456, + [SMALL_STATE(3721)] = 124472, + [SMALL_STATE(3722)] = 124486, + [SMALL_STATE(3723)] = 124500, + [SMALL_STATE(3724)] = 124514, + [SMALL_STATE(3725)] = 124528, + [SMALL_STATE(3726)] = 124544, + [SMALL_STATE(3727)] = 124558, + [SMALL_STATE(3728)] = 124572, + [SMALL_STATE(3729)] = 124586, + [SMALL_STATE(3730)] = 124600, + [SMALL_STATE(3731)] = 124614, + [SMALL_STATE(3732)] = 124628, + [SMALL_STATE(3733)] = 124642, + [SMALL_STATE(3734)] = 124652, + [SMALL_STATE(3735)] = 124662, + [SMALL_STATE(3736)] = 124678, [SMALL_STATE(3737)] = 124692, - [SMALL_STATE(3738)] = 124708, - [SMALL_STATE(3739)] = 124724, - [SMALL_STATE(3740)] = 124738, - [SMALL_STATE(3741)] = 124752, - [SMALL_STATE(3742)] = 124766, - [SMALL_STATE(3743)] = 124780, - [SMALL_STATE(3744)] = 124794, - [SMALL_STATE(3745)] = 124808, - [SMALL_STATE(3746)] = 124822, - [SMALL_STATE(3747)] = 124836, - [SMALL_STATE(3748)] = 124852, - [SMALL_STATE(3749)] = 124866, - [SMALL_STATE(3750)] = 124882, - [SMALL_STATE(3751)] = 124896, - [SMALL_STATE(3752)] = 124906, - [SMALL_STATE(3753)] = 124922, - [SMALL_STATE(3754)] = 124932, + [SMALL_STATE(3738)] = 124706, + [SMALL_STATE(3739)] = 124718, + [SMALL_STATE(3740)] = 124732, + [SMALL_STATE(3741)] = 124746, + [SMALL_STATE(3742)] = 124760, + [SMALL_STATE(3743)] = 124776, + [SMALL_STATE(3744)] = 124790, + [SMALL_STATE(3745)] = 124800, + [SMALL_STATE(3746)] = 124814, + [SMALL_STATE(3747)] = 124828, + [SMALL_STATE(3748)] = 124844, + [SMALL_STATE(3749)] = 124858, + [SMALL_STATE(3750)] = 124872, + [SMALL_STATE(3751)] = 124886, + [SMALL_STATE(3752)] = 124900, + [SMALL_STATE(3753)] = 124914, + [SMALL_STATE(3754)] = 124930, [SMALL_STATE(3755)] = 124946, [SMALL_STATE(3756)] = 124960, - [SMALL_STATE(3757)] = 124974, + [SMALL_STATE(3757)] = 124976, [SMALL_STATE(3758)] = 124990, [SMALL_STATE(3759)] = 125004, - [SMALL_STATE(3760)] = 125020, - [SMALL_STATE(3761)] = 125036, - [SMALL_STATE(3762)] = 125050, - [SMALL_STATE(3763)] = 125066, - [SMALL_STATE(3764)] = 125080, - [SMALL_STATE(3765)] = 125096, - [SMALL_STATE(3766)] = 125106, - [SMALL_STATE(3767)] = 125116, - [SMALL_STATE(3768)] = 125126, - [SMALL_STATE(3769)] = 125136, - [SMALL_STATE(3770)] = 125150, - [SMALL_STATE(3771)] = 125164, - [SMALL_STATE(3772)] = 125176, - [SMALL_STATE(3773)] = 125190, - [SMALL_STATE(3774)] = 125204, - [SMALL_STATE(3775)] = 125216, - [SMALL_STATE(3776)] = 125230, - [SMALL_STATE(3777)] = 125242, - [SMALL_STATE(3778)] = 125256, - [SMALL_STATE(3779)] = 125270, - [SMALL_STATE(3780)] = 125284, - [SMALL_STATE(3781)] = 125298, - [SMALL_STATE(3782)] = 125312, - [SMALL_STATE(3783)] = 125328, - [SMALL_STATE(3784)] = 125344, - [SMALL_STATE(3785)] = 125358, - [SMALL_STATE(3786)] = 125372, - [SMALL_STATE(3787)] = 125386, - [SMALL_STATE(3788)] = 125400, - [SMALL_STATE(3789)] = 125414, - [SMALL_STATE(3790)] = 125428, - [SMALL_STATE(3791)] = 125442, - [SMALL_STATE(3792)] = 125456, - [SMALL_STATE(3793)] = 125472, - [SMALL_STATE(3794)] = 125482, - [SMALL_STATE(3795)] = 125496, - [SMALL_STATE(3796)] = 125506, - [SMALL_STATE(3797)] = 125516, - [SMALL_STATE(3798)] = 125530, - [SMALL_STATE(3799)] = 125544, - [SMALL_STATE(3800)] = 125558, - [SMALL_STATE(3801)] = 125570, - [SMALL_STATE(3802)] = 125584, - [SMALL_STATE(3803)] = 125600, - [SMALL_STATE(3804)] = 125614, - [SMALL_STATE(3805)] = 125630, - [SMALL_STATE(3806)] = 125644, - [SMALL_STATE(3807)] = 125660, - [SMALL_STATE(3808)] = 125674, - [SMALL_STATE(3809)] = 125688, - [SMALL_STATE(3810)] = 125698, - [SMALL_STATE(3811)] = 125714, - [SMALL_STATE(3812)] = 125728, - [SMALL_STATE(3813)] = 125738, - [SMALL_STATE(3814)] = 125752, - [SMALL_STATE(3815)] = 125766, - [SMALL_STATE(3816)] = 125782, - [SMALL_STATE(3817)] = 125798, - [SMALL_STATE(3818)] = 125812, - [SMALL_STATE(3819)] = 125828, - [SMALL_STATE(3820)] = 125842, - [SMALL_STATE(3821)] = 125856, - [SMALL_STATE(3822)] = 125870, - [SMALL_STATE(3823)] = 125886, - [SMALL_STATE(3824)] = 125900, - [SMALL_STATE(3825)] = 125916, - [SMALL_STATE(3826)] = 125932, - [SMALL_STATE(3827)] = 125946, - [SMALL_STATE(3828)] = 125960, - [SMALL_STATE(3829)] = 125972, - [SMALL_STATE(3830)] = 125986, - [SMALL_STATE(3831)] = 126000, - [SMALL_STATE(3832)] = 126016, - [SMALL_STATE(3833)] = 126030, - [SMALL_STATE(3834)] = 126044, - [SMALL_STATE(3835)] = 126058, - [SMALL_STATE(3836)] = 126074, - [SMALL_STATE(3837)] = 126088, - [SMALL_STATE(3838)] = 126102, - [SMALL_STATE(3839)] = 126118, - [SMALL_STATE(3840)] = 126132, - [SMALL_STATE(3841)] = 126146, - [SMALL_STATE(3842)] = 126160, - [SMALL_STATE(3843)] = 126172, - [SMALL_STATE(3844)] = 126188, - [SMALL_STATE(3845)] = 126204, - [SMALL_STATE(3846)] = 126218, - [SMALL_STATE(3847)] = 126232, - [SMALL_STATE(3848)] = 126246, - [SMALL_STATE(3849)] = 126262, - [SMALL_STATE(3850)] = 126278, - [SMALL_STATE(3851)] = 126292, - [SMALL_STATE(3852)] = 126306, - [SMALL_STATE(3853)] = 126318, - [SMALL_STATE(3854)] = 126332, - [SMALL_STATE(3855)] = 126345, - [SMALL_STATE(3856)] = 126358, - [SMALL_STATE(3857)] = 126371, - [SMALL_STATE(3858)] = 126384, - [SMALL_STATE(3859)] = 126397, - [SMALL_STATE(3860)] = 126410, - [SMALL_STATE(3861)] = 126423, - [SMALL_STATE(3862)] = 126436, - [SMALL_STATE(3863)] = 126449, - [SMALL_STATE(3864)] = 126462, - [SMALL_STATE(3865)] = 126475, - [SMALL_STATE(3866)] = 126488, - [SMALL_STATE(3867)] = 126501, - [SMALL_STATE(3868)] = 126510, - [SMALL_STATE(3869)] = 126523, - [SMALL_STATE(3870)] = 126536, - [SMALL_STATE(3871)] = 126549, - [SMALL_STATE(3872)] = 126562, - [SMALL_STATE(3873)] = 126575, - [SMALL_STATE(3874)] = 126588, - [SMALL_STATE(3875)] = 126601, - [SMALL_STATE(3876)] = 126614, - [SMALL_STATE(3877)] = 126627, - [SMALL_STATE(3878)] = 126636, - [SMALL_STATE(3879)] = 126649, - [SMALL_STATE(3880)] = 126658, - [SMALL_STATE(3881)] = 126671, - [SMALL_STATE(3882)] = 126684, - [SMALL_STATE(3883)] = 126695, - [SMALL_STATE(3884)] = 126708, - [SMALL_STATE(3885)] = 126721, - [SMALL_STATE(3886)] = 126734, - [SMALL_STATE(3887)] = 126747, - [SMALL_STATE(3888)] = 126760, - [SMALL_STATE(3889)] = 126773, - [SMALL_STATE(3890)] = 126786, - [SMALL_STATE(3891)] = 126799, - [SMALL_STATE(3892)] = 126812, - [SMALL_STATE(3893)] = 126821, - [SMALL_STATE(3894)] = 126834, - [SMALL_STATE(3895)] = 126847, - [SMALL_STATE(3896)] = 126860, - [SMALL_STATE(3897)] = 126873, - [SMALL_STATE(3898)] = 126886, - [SMALL_STATE(3899)] = 126899, - [SMALL_STATE(3900)] = 126912, - [SMALL_STATE(3901)] = 126925, - [SMALL_STATE(3902)] = 126938, - [SMALL_STATE(3903)] = 126951, - [SMALL_STATE(3904)] = 126960, - [SMALL_STATE(3905)] = 126973, - [SMALL_STATE(3906)] = 126986, - [SMALL_STATE(3907)] = 126999, - [SMALL_STATE(3908)] = 127012, - [SMALL_STATE(3909)] = 127025, - [SMALL_STATE(3910)] = 127038, - [SMALL_STATE(3911)] = 127051, - [SMALL_STATE(3912)] = 127064, - [SMALL_STATE(3913)] = 127077, - [SMALL_STATE(3914)] = 127090, - [SMALL_STATE(3915)] = 127103, - [SMALL_STATE(3916)] = 127116, - [SMALL_STATE(3917)] = 127129, - [SMALL_STATE(3918)] = 127142, - [SMALL_STATE(3919)] = 127155, - [SMALL_STATE(3920)] = 127168, - [SMALL_STATE(3921)] = 127181, - [SMALL_STATE(3922)] = 127194, - [SMALL_STATE(3923)] = 127207, - [SMALL_STATE(3924)] = 127220, - [SMALL_STATE(3925)] = 127233, - [SMALL_STATE(3926)] = 127246, - [SMALL_STATE(3927)] = 127259, - [SMALL_STATE(3928)] = 127272, - [SMALL_STATE(3929)] = 127285, - [SMALL_STATE(3930)] = 127298, - [SMALL_STATE(3931)] = 127311, - [SMALL_STATE(3932)] = 127324, - [SMALL_STATE(3933)] = 127337, - [SMALL_STATE(3934)] = 127350, - [SMALL_STATE(3935)] = 127363, - [SMALL_STATE(3936)] = 127376, - [SMALL_STATE(3937)] = 127389, - [SMALL_STATE(3938)] = 127402, - [SMALL_STATE(3939)] = 127415, - [SMALL_STATE(3940)] = 127428, - [SMALL_STATE(3941)] = 127441, - [SMALL_STATE(3942)] = 127454, - [SMALL_STATE(3943)] = 127467, - [SMALL_STATE(3944)] = 127478, - [SMALL_STATE(3945)] = 127491, - [SMALL_STATE(3946)] = 127504, - [SMALL_STATE(3947)] = 127517, - [SMALL_STATE(3948)] = 127530, - [SMALL_STATE(3949)] = 127543, - [SMALL_STATE(3950)] = 127556, - [SMALL_STATE(3951)] = 127569, - [SMALL_STATE(3952)] = 127580, - [SMALL_STATE(3953)] = 127593, - [SMALL_STATE(3954)] = 127606, - [SMALL_STATE(3955)] = 127619, - [SMALL_STATE(3956)] = 127632, - [SMALL_STATE(3957)] = 127645, - [SMALL_STATE(3958)] = 127658, - [SMALL_STATE(3959)] = 127671, - [SMALL_STATE(3960)] = 127684, - [SMALL_STATE(3961)] = 127697, - [SMALL_STATE(3962)] = 127710, - [SMALL_STATE(3963)] = 127723, - [SMALL_STATE(3964)] = 127736, - [SMALL_STATE(3965)] = 127749, - [SMALL_STATE(3966)] = 127762, - [SMALL_STATE(3967)] = 127775, - [SMALL_STATE(3968)] = 127784, - [SMALL_STATE(3969)] = 127793, - [SMALL_STATE(3970)] = 127806, - [SMALL_STATE(3971)] = 127819, - [SMALL_STATE(3972)] = 127832, - [SMALL_STATE(3973)] = 127845, - [SMALL_STATE(3974)] = 127858, - [SMALL_STATE(3975)] = 127871, - [SMALL_STATE(3976)] = 127884, - [SMALL_STATE(3977)] = 127897, - [SMALL_STATE(3978)] = 127910, - [SMALL_STATE(3979)] = 127923, - [SMALL_STATE(3980)] = 127936, - [SMALL_STATE(3981)] = 127949, - [SMALL_STATE(3982)] = 127962, - [SMALL_STATE(3983)] = 127975, - [SMALL_STATE(3984)] = 127988, - [SMALL_STATE(3985)] = 128001, - [SMALL_STATE(3986)] = 128014, - [SMALL_STATE(3987)] = 128027, - [SMALL_STATE(3988)] = 128040, - [SMALL_STATE(3989)] = 128053, - [SMALL_STATE(3990)] = 128066, - [SMALL_STATE(3991)] = 128079, - [SMALL_STATE(3992)] = 128092, - [SMALL_STATE(3993)] = 128105, - [SMALL_STATE(3994)] = 128118, - [SMALL_STATE(3995)] = 128131, - [SMALL_STATE(3996)] = 128144, - [SMALL_STATE(3997)] = 128157, - [SMALL_STATE(3998)] = 128170, - [SMALL_STATE(3999)] = 128183, - [SMALL_STATE(4000)] = 128196, - [SMALL_STATE(4001)] = 128209, - [SMALL_STATE(4002)] = 128222, - [SMALL_STATE(4003)] = 128235, - [SMALL_STATE(4004)] = 128248, - [SMALL_STATE(4005)] = 128261, - [SMALL_STATE(4006)] = 128274, - [SMALL_STATE(4007)] = 128287, - [SMALL_STATE(4008)] = 128300, - [SMALL_STATE(4009)] = 128313, - [SMALL_STATE(4010)] = 128326, - [SMALL_STATE(4011)] = 128337, - [SMALL_STATE(4012)] = 128350, - [SMALL_STATE(4013)] = 128363, - [SMALL_STATE(4014)] = 128374, - [SMALL_STATE(4015)] = 128387, - [SMALL_STATE(4016)] = 128400, - [SMALL_STATE(4017)] = 128413, - [SMALL_STATE(4018)] = 128424, - [SMALL_STATE(4019)] = 128437, - [SMALL_STATE(4020)] = 128450, - [SMALL_STATE(4021)] = 128459, - [SMALL_STATE(4022)] = 128472, - [SMALL_STATE(4023)] = 128485, - [SMALL_STATE(4024)] = 128498, - [SMALL_STATE(4025)] = 128511, - [SMALL_STATE(4026)] = 128524, - [SMALL_STATE(4027)] = 128537, - [SMALL_STATE(4028)] = 128550, - [SMALL_STATE(4029)] = 128563, - [SMALL_STATE(4030)] = 128576, - [SMALL_STATE(4031)] = 128589, - [SMALL_STATE(4032)] = 128602, - [SMALL_STATE(4033)] = 128615, - [SMALL_STATE(4034)] = 128628, - [SMALL_STATE(4035)] = 128641, - [SMALL_STATE(4036)] = 128654, - [SMALL_STATE(4037)] = 128663, - [SMALL_STATE(4038)] = 128672, - [SMALL_STATE(4039)] = 128685, - [SMALL_STATE(4040)] = 128698, - [SMALL_STATE(4041)] = 128711, - [SMALL_STATE(4042)] = 128724, - [SMALL_STATE(4043)] = 128737, - [SMALL_STATE(4044)] = 128750, - [SMALL_STATE(4045)] = 128763, - [SMALL_STATE(4046)] = 128772, - [SMALL_STATE(4047)] = 128785, - [SMALL_STATE(4048)] = 128798, - [SMALL_STATE(4049)] = 128811, - [SMALL_STATE(4050)] = 128824, - [SMALL_STATE(4051)] = 128837, - [SMALL_STATE(4052)] = 128850, - [SMALL_STATE(4053)] = 128863, - [SMALL_STATE(4054)] = 128876, - [SMALL_STATE(4055)] = 128889, - [SMALL_STATE(4056)] = 128902, - [SMALL_STATE(4057)] = 128915, - [SMALL_STATE(4058)] = 128928, - [SMALL_STATE(4059)] = 128941, - [SMALL_STATE(4060)] = 128954, - [SMALL_STATE(4061)] = 128967, - [SMALL_STATE(4062)] = 128980, - [SMALL_STATE(4063)] = 128993, - [SMALL_STATE(4064)] = 129006, - [SMALL_STATE(4065)] = 129019, - [SMALL_STATE(4066)] = 129032, - [SMALL_STATE(4067)] = 129045, - [SMALL_STATE(4068)] = 129058, - [SMALL_STATE(4069)] = 129071, - [SMALL_STATE(4070)] = 129084, - [SMALL_STATE(4071)] = 129097, - [SMALL_STATE(4072)] = 129110, - [SMALL_STATE(4073)] = 129123, - [SMALL_STATE(4074)] = 129136, - [SMALL_STATE(4075)] = 129149, - [SMALL_STATE(4076)] = 129162, - [SMALL_STATE(4077)] = 129175, - [SMALL_STATE(4078)] = 129188, - [SMALL_STATE(4079)] = 129201, - [SMALL_STATE(4080)] = 129210, - [SMALL_STATE(4081)] = 129223, - [SMALL_STATE(4082)] = 129232, - [SMALL_STATE(4083)] = 129245, - [SMALL_STATE(4084)] = 129258, - [SMALL_STATE(4085)] = 129267, - [SMALL_STATE(4086)] = 129280, - [SMALL_STATE(4087)] = 129293, - [SMALL_STATE(4088)] = 129306, - [SMALL_STATE(4089)] = 129319, - [SMALL_STATE(4090)] = 129332, - [SMALL_STATE(4091)] = 129341, - [SMALL_STATE(4092)] = 129354, - [SMALL_STATE(4093)] = 129367, - [SMALL_STATE(4094)] = 129375, - [SMALL_STATE(4095)] = 129385, - [SMALL_STATE(4096)] = 129395, - [SMALL_STATE(4097)] = 129405, - [SMALL_STATE(4098)] = 129415, - [SMALL_STATE(4099)] = 129423, - [SMALL_STATE(4100)] = 129433, - [SMALL_STATE(4101)] = 129443, - [SMALL_STATE(4102)] = 129453, - [SMALL_STATE(4103)] = 129461, - [SMALL_STATE(4104)] = 129471, - [SMALL_STATE(4105)] = 129481, - [SMALL_STATE(4106)] = 129491, - [SMALL_STATE(4107)] = 129501, - [SMALL_STATE(4108)] = 129511, - [SMALL_STATE(4109)] = 129521, - [SMALL_STATE(4110)] = 129531, - [SMALL_STATE(4111)] = 129539, - [SMALL_STATE(4112)] = 129549, - [SMALL_STATE(4113)] = 129559, - [SMALL_STATE(4114)] = 129569, - [SMALL_STATE(4115)] = 129579, - [SMALL_STATE(4116)] = 129589, - [SMALL_STATE(4117)] = 129599, - [SMALL_STATE(4118)] = 129607, - [SMALL_STATE(4119)] = 129617, - [SMALL_STATE(4120)] = 129627, - [SMALL_STATE(4121)] = 129637, - [SMALL_STATE(4122)] = 129647, - [SMALL_STATE(4123)] = 129657, - [SMALL_STATE(4124)] = 129667, - [SMALL_STATE(4125)] = 129677, - [SMALL_STATE(4126)] = 129685, - [SMALL_STATE(4127)] = 129695, - [SMALL_STATE(4128)] = 129705, - [SMALL_STATE(4129)] = 129715, - [SMALL_STATE(4130)] = 129723, - [SMALL_STATE(4131)] = 129733, - [SMALL_STATE(4132)] = 129741, - [SMALL_STATE(4133)] = 129749, - [SMALL_STATE(4134)] = 129759, - [SMALL_STATE(4135)] = 129769, - [SMALL_STATE(4136)] = 129779, - [SMALL_STATE(4137)] = 129789, - [SMALL_STATE(4138)] = 129799, - [SMALL_STATE(4139)] = 129809, - [SMALL_STATE(4140)] = 129819, - [SMALL_STATE(4141)] = 129829, - [SMALL_STATE(4142)] = 129839, - [SMALL_STATE(4143)] = 129849, - [SMALL_STATE(4144)] = 129859, - [SMALL_STATE(4145)] = 129869, - [SMALL_STATE(4146)] = 129879, - [SMALL_STATE(4147)] = 129889, - [SMALL_STATE(4148)] = 129899, - [SMALL_STATE(4149)] = 129909, - [SMALL_STATE(4150)] = 129919, - [SMALL_STATE(4151)] = 129929, - [SMALL_STATE(4152)] = 129937, - [SMALL_STATE(4153)] = 129947, - [SMALL_STATE(4154)] = 129955, - [SMALL_STATE(4155)] = 129965, - [SMALL_STATE(4156)] = 129975, - [SMALL_STATE(4157)] = 129985, - [SMALL_STATE(4158)] = 129995, - [SMALL_STATE(4159)] = 130005, - [SMALL_STATE(4160)] = 130015, - [SMALL_STATE(4161)] = 130023, - [SMALL_STATE(4162)] = 130033, - [SMALL_STATE(4163)] = 130041, - [SMALL_STATE(4164)] = 130051, - [SMALL_STATE(4165)] = 130061, - [SMALL_STATE(4166)] = 130071, - [SMALL_STATE(4167)] = 130081, - [SMALL_STATE(4168)] = 130091, - [SMALL_STATE(4169)] = 130101, - [SMALL_STATE(4170)] = 130111, - [SMALL_STATE(4171)] = 130121, - [SMALL_STATE(4172)] = 130131, - [SMALL_STATE(4173)] = 130141, - [SMALL_STATE(4174)] = 130151, - [SMALL_STATE(4175)] = 130161, - [SMALL_STATE(4176)] = 130171, - [SMALL_STATE(4177)] = 130181, - [SMALL_STATE(4178)] = 130191, - [SMALL_STATE(4179)] = 130201, - [SMALL_STATE(4180)] = 130211, - [SMALL_STATE(4181)] = 130221, - [SMALL_STATE(4182)] = 130231, - [SMALL_STATE(4183)] = 130239, - [SMALL_STATE(4184)] = 130247, - [SMALL_STATE(4185)] = 130255, - [SMALL_STATE(4186)] = 130265, - [SMALL_STATE(4187)] = 130275, - [SMALL_STATE(4188)] = 130285, - [SMALL_STATE(4189)] = 130295, - [SMALL_STATE(4190)] = 130305, - [SMALL_STATE(4191)] = 130315, - [SMALL_STATE(4192)] = 130325, - [SMALL_STATE(4193)] = 130335, - [SMALL_STATE(4194)] = 130345, - [SMALL_STATE(4195)] = 130355, - [SMALL_STATE(4196)] = 130365, - [SMALL_STATE(4197)] = 130373, - [SMALL_STATE(4198)] = 130383, - [SMALL_STATE(4199)] = 130393, - [SMALL_STATE(4200)] = 130403, - [SMALL_STATE(4201)] = 130413, - [SMALL_STATE(4202)] = 130423, - [SMALL_STATE(4203)] = 130433, - [SMALL_STATE(4204)] = 130443, - [SMALL_STATE(4205)] = 130453, - [SMALL_STATE(4206)] = 130463, - [SMALL_STATE(4207)] = 130473, - [SMALL_STATE(4208)] = 130483, - [SMALL_STATE(4209)] = 130493, - [SMALL_STATE(4210)] = 130503, - [SMALL_STATE(4211)] = 130513, - [SMALL_STATE(4212)] = 130523, - [SMALL_STATE(4213)] = 130533, - [SMALL_STATE(4214)] = 130541, - [SMALL_STATE(4215)] = 130551, - [SMALL_STATE(4216)] = 130561, - [SMALL_STATE(4217)] = 130571, - [SMALL_STATE(4218)] = 130581, - [SMALL_STATE(4219)] = 130589, - [SMALL_STATE(4220)] = 130599, - [SMALL_STATE(4221)] = 130609, - [SMALL_STATE(4222)] = 130619, - [SMALL_STATE(4223)] = 130629, - [SMALL_STATE(4224)] = 130639, - [SMALL_STATE(4225)] = 130649, - [SMALL_STATE(4226)] = 130659, - [SMALL_STATE(4227)] = 130669, - [SMALL_STATE(4228)] = 130679, - [SMALL_STATE(4229)] = 130689, - [SMALL_STATE(4230)] = 130699, - [SMALL_STATE(4231)] = 130707, - [SMALL_STATE(4232)] = 130717, - [SMALL_STATE(4233)] = 130727, - [SMALL_STATE(4234)] = 130737, - [SMALL_STATE(4235)] = 130747, - [SMALL_STATE(4236)] = 130757, - [SMALL_STATE(4237)] = 130767, - [SMALL_STATE(4238)] = 130777, - [SMALL_STATE(4239)] = 130787, - [SMALL_STATE(4240)] = 130797, - [SMALL_STATE(4241)] = 130807, - [SMALL_STATE(4242)] = 130817, - [SMALL_STATE(4243)] = 130827, - [SMALL_STATE(4244)] = 130837, - [SMALL_STATE(4245)] = 130847, - [SMALL_STATE(4246)] = 130857, - [SMALL_STATE(4247)] = 130867, - [SMALL_STATE(4248)] = 130875, - [SMALL_STATE(4249)] = 130885, - [SMALL_STATE(4250)] = 130895, - [SMALL_STATE(4251)] = 130905, - [SMALL_STATE(4252)] = 130915, - [SMALL_STATE(4253)] = 130925, - [SMALL_STATE(4254)] = 130935, - [SMALL_STATE(4255)] = 130945, - [SMALL_STATE(4256)] = 130955, - [SMALL_STATE(4257)] = 130965, - [SMALL_STATE(4258)] = 130975, - [SMALL_STATE(4259)] = 130985, - [SMALL_STATE(4260)] = 130995, - [SMALL_STATE(4261)] = 131005, - [SMALL_STATE(4262)] = 131015, - [SMALL_STATE(4263)] = 131025, - [SMALL_STATE(4264)] = 131035, - [SMALL_STATE(4265)] = 131045, - [SMALL_STATE(4266)] = 131055, - [SMALL_STATE(4267)] = 131065, - [SMALL_STATE(4268)] = 131075, - [SMALL_STATE(4269)] = 131085, - [SMALL_STATE(4270)] = 131095, - [SMALL_STATE(4271)] = 131105, - [SMALL_STATE(4272)] = 131115, - [SMALL_STATE(4273)] = 131125, - [SMALL_STATE(4274)] = 131135, - [SMALL_STATE(4275)] = 131145, - [SMALL_STATE(4276)] = 131155, - [SMALL_STATE(4277)] = 131165, - [SMALL_STATE(4278)] = 131175, - [SMALL_STATE(4279)] = 131185, - [SMALL_STATE(4280)] = 131195, - [SMALL_STATE(4281)] = 131205, - [SMALL_STATE(4282)] = 131215, - [SMALL_STATE(4283)] = 131225, - [SMALL_STATE(4284)] = 131235, - [SMALL_STATE(4285)] = 131243, - [SMALL_STATE(4286)] = 131253, - [SMALL_STATE(4287)] = 131263, - [SMALL_STATE(4288)] = 131273, - [SMALL_STATE(4289)] = 131283, - [SMALL_STATE(4290)] = 131293, - [SMALL_STATE(4291)] = 131303, - [SMALL_STATE(4292)] = 131313, - [SMALL_STATE(4293)] = 131323, - [SMALL_STATE(4294)] = 131333, - [SMALL_STATE(4295)] = 131343, - [SMALL_STATE(4296)] = 131353, - [SMALL_STATE(4297)] = 131363, - [SMALL_STATE(4298)] = 131373, - [SMALL_STATE(4299)] = 131383, - [SMALL_STATE(4300)] = 131393, - [SMALL_STATE(4301)] = 131403, - [SMALL_STATE(4302)] = 131413, - [SMALL_STATE(4303)] = 131423, - [SMALL_STATE(4304)] = 131433, - [SMALL_STATE(4305)] = 131443, - [SMALL_STATE(4306)] = 131453, - [SMALL_STATE(4307)] = 131463, - [SMALL_STATE(4308)] = 131473, - [SMALL_STATE(4309)] = 131483, - [SMALL_STATE(4310)] = 131493, - [SMALL_STATE(4311)] = 131503, - [SMALL_STATE(4312)] = 131513, - [SMALL_STATE(4313)] = 131523, - [SMALL_STATE(4314)] = 131533, - [SMALL_STATE(4315)] = 131543, - [SMALL_STATE(4316)] = 131553, - [SMALL_STATE(4317)] = 131563, - [SMALL_STATE(4318)] = 131573, - [SMALL_STATE(4319)] = 131583, - [SMALL_STATE(4320)] = 131593, - [SMALL_STATE(4321)] = 131603, - [SMALL_STATE(4322)] = 131613, - [SMALL_STATE(4323)] = 131623, - [SMALL_STATE(4324)] = 131633, - [SMALL_STATE(4325)] = 131643, - [SMALL_STATE(4326)] = 131653, - [SMALL_STATE(4327)] = 131663, - [SMALL_STATE(4328)] = 131673, - [SMALL_STATE(4329)] = 131683, - [SMALL_STATE(4330)] = 131693, - [SMALL_STATE(4331)] = 131703, - [SMALL_STATE(4332)] = 131713, - [SMALL_STATE(4333)] = 131723, - [SMALL_STATE(4334)] = 131733, - [SMALL_STATE(4335)] = 131743, - [SMALL_STATE(4336)] = 131753, - [SMALL_STATE(4337)] = 131763, - [SMALL_STATE(4338)] = 131773, - [SMALL_STATE(4339)] = 131783, - [SMALL_STATE(4340)] = 131793, - [SMALL_STATE(4341)] = 131803, - [SMALL_STATE(4342)] = 131813, - [SMALL_STATE(4343)] = 131823, - [SMALL_STATE(4344)] = 131833, - [SMALL_STATE(4345)] = 131843, - [SMALL_STATE(4346)] = 131851, - [SMALL_STATE(4347)] = 131861, - [SMALL_STATE(4348)] = 131871, - [SMALL_STATE(4349)] = 131881, - [SMALL_STATE(4350)] = 131891, - [SMALL_STATE(4351)] = 131901, - [SMALL_STATE(4352)] = 131911, - [SMALL_STATE(4353)] = 131921, - [SMALL_STATE(4354)] = 131931, - [SMALL_STATE(4355)] = 131941, - [SMALL_STATE(4356)] = 131951, - [SMALL_STATE(4357)] = 131961, - [SMALL_STATE(4358)] = 131971, - [SMALL_STATE(4359)] = 131981, - [SMALL_STATE(4360)] = 131991, - [SMALL_STATE(4361)] = 132001, - [SMALL_STATE(4362)] = 132011, - [SMALL_STATE(4363)] = 132021, - [SMALL_STATE(4364)] = 132031, - [SMALL_STATE(4365)] = 132041, - [SMALL_STATE(4366)] = 132051, - [SMALL_STATE(4367)] = 132061, - [SMALL_STATE(4368)] = 132071, - [SMALL_STATE(4369)] = 132081, - [SMALL_STATE(4370)] = 132091, - [SMALL_STATE(4371)] = 132101, - [SMALL_STATE(4372)] = 132109, - [SMALL_STATE(4373)] = 132119, - [SMALL_STATE(4374)] = 132129, - [SMALL_STATE(4375)] = 132137, - [SMALL_STATE(4376)] = 132147, - [SMALL_STATE(4377)] = 132157, - [SMALL_STATE(4378)] = 132167, - [SMALL_STATE(4379)] = 132177, - [SMALL_STATE(4380)] = 132187, - [SMALL_STATE(4381)] = 132197, - [SMALL_STATE(4382)] = 132207, - [SMALL_STATE(4383)] = 132215, - [SMALL_STATE(4384)] = 132223, - [SMALL_STATE(4385)] = 132233, - [SMALL_STATE(4386)] = 132241, - [SMALL_STATE(4387)] = 132251, - [SMALL_STATE(4388)] = 132261, - [SMALL_STATE(4389)] = 132271, - [SMALL_STATE(4390)] = 132281, - [SMALL_STATE(4391)] = 132291, - [SMALL_STATE(4392)] = 132299, - [SMALL_STATE(4393)] = 132309, - [SMALL_STATE(4394)] = 132319, - [SMALL_STATE(4395)] = 132329, - [SMALL_STATE(4396)] = 132337, - [SMALL_STATE(4397)] = 132347, - [SMALL_STATE(4398)] = 132357, - [SMALL_STATE(4399)] = 132367, - [SMALL_STATE(4400)] = 132377, - [SMALL_STATE(4401)] = 132387, - [SMALL_STATE(4402)] = 132395, - [SMALL_STATE(4403)] = 132405, - [SMALL_STATE(4404)] = 132415, - [SMALL_STATE(4405)] = 132425, - [SMALL_STATE(4406)] = 132435, - [SMALL_STATE(4407)] = 132445, - [SMALL_STATE(4408)] = 132455, - [SMALL_STATE(4409)] = 132462, - [SMALL_STATE(4410)] = 132469, - [SMALL_STATE(4411)] = 132476, - [SMALL_STATE(4412)] = 132483, - [SMALL_STATE(4413)] = 132490, - [SMALL_STATE(4414)] = 132497, - [SMALL_STATE(4415)] = 132504, - [SMALL_STATE(4416)] = 132511, - [SMALL_STATE(4417)] = 132518, - [SMALL_STATE(4418)] = 132525, - [SMALL_STATE(4419)] = 132532, - [SMALL_STATE(4420)] = 132539, - [SMALL_STATE(4421)] = 132546, - [SMALL_STATE(4422)] = 132553, - [SMALL_STATE(4423)] = 132560, - [SMALL_STATE(4424)] = 132567, - [SMALL_STATE(4425)] = 132574, - [SMALL_STATE(4426)] = 132581, - [SMALL_STATE(4427)] = 132588, - [SMALL_STATE(4428)] = 132595, - [SMALL_STATE(4429)] = 132602, - [SMALL_STATE(4430)] = 132609, - [SMALL_STATE(4431)] = 132616, - [SMALL_STATE(4432)] = 132623, - [SMALL_STATE(4433)] = 132630, - [SMALL_STATE(4434)] = 132637, - [SMALL_STATE(4435)] = 132644, - [SMALL_STATE(4436)] = 132651, - [SMALL_STATE(4437)] = 132658, - [SMALL_STATE(4438)] = 132665, - [SMALL_STATE(4439)] = 132672, - [SMALL_STATE(4440)] = 132679, - [SMALL_STATE(4441)] = 132686, - [SMALL_STATE(4442)] = 132693, - [SMALL_STATE(4443)] = 132700, - [SMALL_STATE(4444)] = 132707, - [SMALL_STATE(4445)] = 132714, - [SMALL_STATE(4446)] = 132721, - [SMALL_STATE(4447)] = 132728, - [SMALL_STATE(4448)] = 132735, - [SMALL_STATE(4449)] = 132742, - [SMALL_STATE(4450)] = 132749, - [SMALL_STATE(4451)] = 132756, - [SMALL_STATE(4452)] = 132763, - [SMALL_STATE(4453)] = 132770, - [SMALL_STATE(4454)] = 132777, - [SMALL_STATE(4455)] = 132784, - [SMALL_STATE(4456)] = 132791, - [SMALL_STATE(4457)] = 132798, - [SMALL_STATE(4458)] = 132805, - [SMALL_STATE(4459)] = 132812, - [SMALL_STATE(4460)] = 132819, - [SMALL_STATE(4461)] = 132826, - [SMALL_STATE(4462)] = 132833, - [SMALL_STATE(4463)] = 132840, - [SMALL_STATE(4464)] = 132847, - [SMALL_STATE(4465)] = 132854, - [SMALL_STATE(4466)] = 132861, - [SMALL_STATE(4467)] = 132868, - [SMALL_STATE(4468)] = 132875, - [SMALL_STATE(4469)] = 132882, - [SMALL_STATE(4470)] = 132889, - [SMALL_STATE(4471)] = 132896, - [SMALL_STATE(4472)] = 132903, - [SMALL_STATE(4473)] = 132910, - [SMALL_STATE(4474)] = 132917, - [SMALL_STATE(4475)] = 132924, - [SMALL_STATE(4476)] = 132931, - [SMALL_STATE(4477)] = 132938, - [SMALL_STATE(4478)] = 132945, - [SMALL_STATE(4479)] = 132952, - [SMALL_STATE(4480)] = 132959, - [SMALL_STATE(4481)] = 132966, - [SMALL_STATE(4482)] = 132973, - [SMALL_STATE(4483)] = 132980, - [SMALL_STATE(4484)] = 132987, - [SMALL_STATE(4485)] = 132994, - [SMALL_STATE(4486)] = 133001, - [SMALL_STATE(4487)] = 133008, - [SMALL_STATE(4488)] = 133015, - [SMALL_STATE(4489)] = 133022, - [SMALL_STATE(4490)] = 133029, - [SMALL_STATE(4491)] = 133036, - [SMALL_STATE(4492)] = 133043, - [SMALL_STATE(4493)] = 133050, - [SMALL_STATE(4494)] = 133057, - [SMALL_STATE(4495)] = 133064, - [SMALL_STATE(4496)] = 133071, - [SMALL_STATE(4497)] = 133078, - [SMALL_STATE(4498)] = 133085, - [SMALL_STATE(4499)] = 133092, - [SMALL_STATE(4500)] = 133099, - [SMALL_STATE(4501)] = 133106, - [SMALL_STATE(4502)] = 133113, - [SMALL_STATE(4503)] = 133120, - [SMALL_STATE(4504)] = 133127, - [SMALL_STATE(4505)] = 133134, - [SMALL_STATE(4506)] = 133141, - [SMALL_STATE(4507)] = 133148, - [SMALL_STATE(4508)] = 133155, - [SMALL_STATE(4509)] = 133162, - [SMALL_STATE(4510)] = 133169, - [SMALL_STATE(4511)] = 133176, - [SMALL_STATE(4512)] = 133183, - [SMALL_STATE(4513)] = 133190, - [SMALL_STATE(4514)] = 133197, - [SMALL_STATE(4515)] = 133204, - [SMALL_STATE(4516)] = 133211, - [SMALL_STATE(4517)] = 133218, - [SMALL_STATE(4518)] = 133225, - [SMALL_STATE(4519)] = 133232, - [SMALL_STATE(4520)] = 133239, - [SMALL_STATE(4521)] = 133246, - [SMALL_STATE(4522)] = 133253, - [SMALL_STATE(4523)] = 133260, - [SMALL_STATE(4524)] = 133267, - [SMALL_STATE(4525)] = 133274, - [SMALL_STATE(4526)] = 133281, - [SMALL_STATE(4527)] = 133288, - [SMALL_STATE(4528)] = 133295, - [SMALL_STATE(4529)] = 133302, - [SMALL_STATE(4530)] = 133309, - [SMALL_STATE(4531)] = 133316, - [SMALL_STATE(4532)] = 133323, - [SMALL_STATE(4533)] = 133330, - [SMALL_STATE(4534)] = 133337, - [SMALL_STATE(4535)] = 133344, - [SMALL_STATE(4536)] = 133351, - [SMALL_STATE(4537)] = 133358, - [SMALL_STATE(4538)] = 133365, - [SMALL_STATE(4539)] = 133372, - [SMALL_STATE(4540)] = 133379, - [SMALL_STATE(4541)] = 133386, - [SMALL_STATE(4542)] = 133393, - [SMALL_STATE(4543)] = 133400, - [SMALL_STATE(4544)] = 133407, - [SMALL_STATE(4545)] = 133414, - [SMALL_STATE(4546)] = 133421, - [SMALL_STATE(4547)] = 133428, - [SMALL_STATE(4548)] = 133435, - [SMALL_STATE(4549)] = 133442, - [SMALL_STATE(4550)] = 133449, - [SMALL_STATE(4551)] = 133456, - [SMALL_STATE(4552)] = 133463, - [SMALL_STATE(4553)] = 133470, - [SMALL_STATE(4554)] = 133477, - [SMALL_STATE(4555)] = 133484, - [SMALL_STATE(4556)] = 133491, - [SMALL_STATE(4557)] = 133498, - [SMALL_STATE(4558)] = 133505, - [SMALL_STATE(4559)] = 133512, - [SMALL_STATE(4560)] = 133519, - [SMALL_STATE(4561)] = 133526, - [SMALL_STATE(4562)] = 133533, - [SMALL_STATE(4563)] = 133540, - [SMALL_STATE(4564)] = 133547, - [SMALL_STATE(4565)] = 133554, - [SMALL_STATE(4566)] = 133561, - [SMALL_STATE(4567)] = 133568, - [SMALL_STATE(4568)] = 133575, - [SMALL_STATE(4569)] = 133582, - [SMALL_STATE(4570)] = 133589, - [SMALL_STATE(4571)] = 133596, - [SMALL_STATE(4572)] = 133603, - [SMALL_STATE(4573)] = 133610, - [SMALL_STATE(4574)] = 133617, - [SMALL_STATE(4575)] = 133624, - [SMALL_STATE(4576)] = 133631, - [SMALL_STATE(4577)] = 133638, - [SMALL_STATE(4578)] = 133645, - [SMALL_STATE(4579)] = 133652, - [SMALL_STATE(4580)] = 133659, - [SMALL_STATE(4581)] = 133666, - [SMALL_STATE(4582)] = 133673, - [SMALL_STATE(4583)] = 133680, - [SMALL_STATE(4584)] = 133687, - [SMALL_STATE(4585)] = 133694, - [SMALL_STATE(4586)] = 133701, - [SMALL_STATE(4587)] = 133708, - [SMALL_STATE(4588)] = 133715, - [SMALL_STATE(4589)] = 133722, - [SMALL_STATE(4590)] = 133729, - [SMALL_STATE(4591)] = 133736, - [SMALL_STATE(4592)] = 133743, - [SMALL_STATE(4593)] = 133750, - [SMALL_STATE(4594)] = 133757, - [SMALL_STATE(4595)] = 133764, - [SMALL_STATE(4596)] = 133771, - [SMALL_STATE(4597)] = 133778, - [SMALL_STATE(4598)] = 133785, - [SMALL_STATE(4599)] = 133792, - [SMALL_STATE(4600)] = 133799, - [SMALL_STATE(4601)] = 133806, - [SMALL_STATE(4602)] = 133813, - [SMALL_STATE(4603)] = 133820, - [SMALL_STATE(4604)] = 133827, - [SMALL_STATE(4605)] = 133834, - [SMALL_STATE(4606)] = 133841, - [SMALL_STATE(4607)] = 133848, - [SMALL_STATE(4608)] = 133855, - [SMALL_STATE(4609)] = 133862, - [SMALL_STATE(4610)] = 133869, - [SMALL_STATE(4611)] = 133876, - [SMALL_STATE(4612)] = 133883, - [SMALL_STATE(4613)] = 133890, - [SMALL_STATE(4614)] = 133897, - [SMALL_STATE(4615)] = 133904, - [SMALL_STATE(4616)] = 133911, - [SMALL_STATE(4617)] = 133918, - [SMALL_STATE(4618)] = 133925, - [SMALL_STATE(4619)] = 133932, - [SMALL_STATE(4620)] = 133939, - [SMALL_STATE(4621)] = 133946, - [SMALL_STATE(4622)] = 133953, - [SMALL_STATE(4623)] = 133960, - [SMALL_STATE(4624)] = 133967, - [SMALL_STATE(4625)] = 133974, - [SMALL_STATE(4626)] = 133981, - [SMALL_STATE(4627)] = 133988, - [SMALL_STATE(4628)] = 133995, - [SMALL_STATE(4629)] = 134002, - [SMALL_STATE(4630)] = 134009, - [SMALL_STATE(4631)] = 134016, - [SMALL_STATE(4632)] = 134023, - [SMALL_STATE(4633)] = 134030, - [SMALL_STATE(4634)] = 134037, - [SMALL_STATE(4635)] = 134044, - [SMALL_STATE(4636)] = 134051, - [SMALL_STATE(4637)] = 134058, - [SMALL_STATE(4638)] = 134065, - [SMALL_STATE(4639)] = 134072, - [SMALL_STATE(4640)] = 134079, - [SMALL_STATE(4641)] = 134086, - [SMALL_STATE(4642)] = 134093, - [SMALL_STATE(4643)] = 134100, - [SMALL_STATE(4644)] = 134107, - [SMALL_STATE(4645)] = 134114, - [SMALL_STATE(4646)] = 134121, - [SMALL_STATE(4647)] = 134128, - [SMALL_STATE(4648)] = 134135, - [SMALL_STATE(4649)] = 134142, - [SMALL_STATE(4650)] = 134149, - [SMALL_STATE(4651)] = 134156, - [SMALL_STATE(4652)] = 134163, - [SMALL_STATE(4653)] = 134170, - [SMALL_STATE(4654)] = 134177, - [SMALL_STATE(4655)] = 134184, - [SMALL_STATE(4656)] = 134191, - [SMALL_STATE(4657)] = 134198, - [SMALL_STATE(4658)] = 134205, - [SMALL_STATE(4659)] = 134212, - [SMALL_STATE(4660)] = 134219, - [SMALL_STATE(4661)] = 134226, - [SMALL_STATE(4662)] = 134233, - [SMALL_STATE(4663)] = 134240, - [SMALL_STATE(4664)] = 134247, - [SMALL_STATE(4665)] = 134254, - [SMALL_STATE(4666)] = 134261, - [SMALL_STATE(4667)] = 134268, - [SMALL_STATE(4668)] = 134275, - [SMALL_STATE(4669)] = 134282, - [SMALL_STATE(4670)] = 134289, - [SMALL_STATE(4671)] = 134296, - [SMALL_STATE(4672)] = 134303, - [SMALL_STATE(4673)] = 134310, - [SMALL_STATE(4674)] = 134317, - [SMALL_STATE(4675)] = 134324, - [SMALL_STATE(4676)] = 134331, - [SMALL_STATE(4677)] = 134338, - [SMALL_STATE(4678)] = 134345, - [SMALL_STATE(4679)] = 134352, - [SMALL_STATE(4680)] = 134359, - [SMALL_STATE(4681)] = 134366, - [SMALL_STATE(4682)] = 134373, - [SMALL_STATE(4683)] = 134380, - [SMALL_STATE(4684)] = 134387, - [SMALL_STATE(4685)] = 134394, - [SMALL_STATE(4686)] = 134401, - [SMALL_STATE(4687)] = 134408, - [SMALL_STATE(4688)] = 134415, - [SMALL_STATE(4689)] = 134422, - [SMALL_STATE(4690)] = 134429, - [SMALL_STATE(4691)] = 134436, - [SMALL_STATE(4692)] = 134443, - [SMALL_STATE(4693)] = 134450, - [SMALL_STATE(4694)] = 134457, - [SMALL_STATE(4695)] = 134464, - [SMALL_STATE(4696)] = 134471, - [SMALL_STATE(4697)] = 134478, - [SMALL_STATE(4698)] = 134485, - [SMALL_STATE(4699)] = 134492, - [SMALL_STATE(4700)] = 134499, - [SMALL_STATE(4701)] = 134506, - [SMALL_STATE(4702)] = 134513, - [SMALL_STATE(4703)] = 134520, - [SMALL_STATE(4704)] = 134527, - [SMALL_STATE(4705)] = 134534, - [SMALL_STATE(4706)] = 134541, - [SMALL_STATE(4707)] = 134548, - [SMALL_STATE(4708)] = 134555, - [SMALL_STATE(4709)] = 134562, - [SMALL_STATE(4710)] = 134569, - [SMALL_STATE(4711)] = 134576, - [SMALL_STATE(4712)] = 134583, - [SMALL_STATE(4713)] = 134590, - [SMALL_STATE(4714)] = 134597, - [SMALL_STATE(4715)] = 134604, - [SMALL_STATE(4716)] = 134611, - [SMALL_STATE(4717)] = 134618, - [SMALL_STATE(4718)] = 134625, - [SMALL_STATE(4719)] = 134632, - [SMALL_STATE(4720)] = 134639, - [SMALL_STATE(4721)] = 134646, - [SMALL_STATE(4722)] = 134653, - [SMALL_STATE(4723)] = 134660, - [SMALL_STATE(4724)] = 134667, - [SMALL_STATE(4725)] = 134674, - [SMALL_STATE(4726)] = 134681, - [SMALL_STATE(4727)] = 134688, - [SMALL_STATE(4728)] = 134695, - [SMALL_STATE(4729)] = 134702, - [SMALL_STATE(4730)] = 134709, - [SMALL_STATE(4731)] = 134716, - [SMALL_STATE(4732)] = 134723, - [SMALL_STATE(4733)] = 134730, - [SMALL_STATE(4734)] = 134737, + [SMALL_STATE(3760)] = 125014, + [SMALL_STATE(3761)] = 125024, + [SMALL_STATE(3762)] = 125034, + [SMALL_STATE(3763)] = 125044, + [SMALL_STATE(3764)] = 125054, + [SMALL_STATE(3765)] = 125064, + [SMALL_STATE(3766)] = 125074, + [SMALL_STATE(3767)] = 125090, + [SMALL_STATE(3768)] = 125104, + [SMALL_STATE(3769)] = 125114, + [SMALL_STATE(3770)] = 125124, + [SMALL_STATE(3771)] = 125134, + [SMALL_STATE(3772)] = 125150, + [SMALL_STATE(3773)] = 125164, + [SMALL_STATE(3774)] = 125174, + [SMALL_STATE(3775)] = 125184, + [SMALL_STATE(3776)] = 125198, + [SMALL_STATE(3777)] = 125212, + [SMALL_STATE(3778)] = 125226, + [SMALL_STATE(3779)] = 125236, + [SMALL_STATE(3780)] = 125250, + [SMALL_STATE(3781)] = 125260, + [SMALL_STATE(3782)] = 125274, + [SMALL_STATE(3783)] = 125284, + [SMALL_STATE(3784)] = 125298, + [SMALL_STATE(3785)] = 125308, + [SMALL_STATE(3786)] = 125322, + [SMALL_STATE(3787)] = 125332, + [SMALL_STATE(3788)] = 125348, + [SMALL_STATE(3789)] = 125360, + [SMALL_STATE(3790)] = 125372, + [SMALL_STATE(3791)] = 125386, + [SMALL_STATE(3792)] = 125400, + [SMALL_STATE(3793)] = 125414, + [SMALL_STATE(3794)] = 125426, + [SMALL_STATE(3795)] = 125442, + [SMALL_STATE(3796)] = 125456, + [SMALL_STATE(3797)] = 125472, + [SMALL_STATE(3798)] = 125482, + [SMALL_STATE(3799)] = 125496, + [SMALL_STATE(3800)] = 125510, + [SMALL_STATE(3801)] = 125524, + [SMALL_STATE(3802)] = 125540, + [SMALL_STATE(3803)] = 125554, + [SMALL_STATE(3804)] = 125570, + [SMALL_STATE(3805)] = 125584, + [SMALL_STATE(3806)] = 125598, + [SMALL_STATE(3807)] = 125614, + [SMALL_STATE(3808)] = 125628, + [SMALL_STATE(3809)] = 125642, + [SMALL_STATE(3810)] = 125658, + [SMALL_STATE(3811)] = 125672, + [SMALL_STATE(3812)] = 125686, + [SMALL_STATE(3813)] = 125696, + [SMALL_STATE(3814)] = 125710, + [SMALL_STATE(3815)] = 125724, + [SMALL_STATE(3816)] = 125738, + [SMALL_STATE(3817)] = 125752, + [SMALL_STATE(3818)] = 125768, + [SMALL_STATE(3819)] = 125782, + [SMALL_STATE(3820)] = 125796, + [SMALL_STATE(3821)] = 125810, + [SMALL_STATE(3822)] = 125824, + [SMALL_STATE(3823)] = 125838, + [SMALL_STATE(3824)] = 125852, + [SMALL_STATE(3825)] = 125868, + [SMALL_STATE(3826)] = 125882, + [SMALL_STATE(3827)] = 125896, + [SMALL_STATE(3828)] = 125910, + [SMALL_STATE(3829)] = 125926, + [SMALL_STATE(3830)] = 125940, + [SMALL_STATE(3831)] = 125954, + [SMALL_STATE(3832)] = 125968, + [SMALL_STATE(3833)] = 125980, + [SMALL_STATE(3834)] = 125994, + [SMALL_STATE(3835)] = 126010, + [SMALL_STATE(3836)] = 126024, + [SMALL_STATE(3837)] = 126038, + [SMALL_STATE(3838)] = 126054, + [SMALL_STATE(3839)] = 126068, + [SMALL_STATE(3840)] = 126082, + [SMALL_STATE(3841)] = 126096, + [SMALL_STATE(3842)] = 126110, + [SMALL_STATE(3843)] = 126124, + [SMALL_STATE(3844)] = 126138, + [SMALL_STATE(3845)] = 126152, + [SMALL_STATE(3846)] = 126162, + [SMALL_STATE(3847)] = 126178, + [SMALL_STATE(3848)] = 126194, + [SMALL_STATE(3849)] = 126210, + [SMALL_STATE(3850)] = 126224, + [SMALL_STATE(3851)] = 126240, + [SMALL_STATE(3852)] = 126254, + [SMALL_STATE(3853)] = 126264, + [SMALL_STATE(3854)] = 126278, + [SMALL_STATE(3855)] = 126294, + [SMALL_STATE(3856)] = 126308, + [SMALL_STATE(3857)] = 126318, + [SMALL_STATE(3858)] = 126332, + [SMALL_STATE(3859)] = 126345, + [SMALL_STATE(3860)] = 126358, + [SMALL_STATE(3861)] = 126371, + [SMALL_STATE(3862)] = 126384, + [SMALL_STATE(3863)] = 126397, + [SMALL_STATE(3864)] = 126410, + [SMALL_STATE(3865)] = 126423, + [SMALL_STATE(3866)] = 126432, + [SMALL_STATE(3867)] = 126445, + [SMALL_STATE(3868)] = 126454, + [SMALL_STATE(3869)] = 126467, + [SMALL_STATE(3870)] = 126480, + [SMALL_STATE(3871)] = 126493, + [SMALL_STATE(3872)] = 126506, + [SMALL_STATE(3873)] = 126515, + [SMALL_STATE(3874)] = 126528, + [SMALL_STATE(3875)] = 126541, + [SMALL_STATE(3876)] = 126554, + [SMALL_STATE(3877)] = 126567, + [SMALL_STATE(3878)] = 126580, + [SMALL_STATE(3879)] = 126589, + [SMALL_STATE(3880)] = 126602, + [SMALL_STATE(3881)] = 126615, + [SMALL_STATE(3882)] = 126628, + [SMALL_STATE(3883)] = 126641, + [SMALL_STATE(3884)] = 126654, + [SMALL_STATE(3885)] = 126667, + [SMALL_STATE(3886)] = 126680, + [SMALL_STATE(3887)] = 126693, + [SMALL_STATE(3888)] = 126706, + [SMALL_STATE(3889)] = 126719, + [SMALL_STATE(3890)] = 126732, + [SMALL_STATE(3891)] = 126745, + [SMALL_STATE(3892)] = 126758, + [SMALL_STATE(3893)] = 126771, + [SMALL_STATE(3894)] = 126784, + [SMALL_STATE(3895)] = 126797, + [SMALL_STATE(3896)] = 126810, + [SMALL_STATE(3897)] = 126821, + [SMALL_STATE(3898)] = 126834, + [SMALL_STATE(3899)] = 126847, + [SMALL_STATE(3900)] = 126860, + [SMALL_STATE(3901)] = 126873, + [SMALL_STATE(3902)] = 126886, + [SMALL_STATE(3903)] = 126899, + [SMALL_STATE(3904)] = 126912, + [SMALL_STATE(3905)] = 126925, + [SMALL_STATE(3906)] = 126938, + [SMALL_STATE(3907)] = 126951, + [SMALL_STATE(3908)] = 126964, + [SMALL_STATE(3909)] = 126977, + [SMALL_STATE(3910)] = 126990, + [SMALL_STATE(3911)] = 127003, + [SMALL_STATE(3912)] = 127016, + [SMALL_STATE(3913)] = 127029, + [SMALL_STATE(3914)] = 127042, + [SMALL_STATE(3915)] = 127055, + [SMALL_STATE(3916)] = 127064, + [SMALL_STATE(3917)] = 127077, + [SMALL_STATE(3918)] = 127090, + [SMALL_STATE(3919)] = 127103, + [SMALL_STATE(3920)] = 127116, + [SMALL_STATE(3921)] = 127129, + [SMALL_STATE(3922)] = 127142, + [SMALL_STATE(3923)] = 127155, + [SMALL_STATE(3924)] = 127168, + [SMALL_STATE(3925)] = 127181, + [SMALL_STATE(3926)] = 127190, + [SMALL_STATE(3927)] = 127203, + [SMALL_STATE(3928)] = 127216, + [SMALL_STATE(3929)] = 127225, + [SMALL_STATE(3930)] = 127236, + [SMALL_STATE(3931)] = 127249, + [SMALL_STATE(3932)] = 127258, + [SMALL_STATE(3933)] = 127271, + [SMALL_STATE(3934)] = 127284, + [SMALL_STATE(3935)] = 127297, + [SMALL_STATE(3936)] = 127306, + [SMALL_STATE(3937)] = 127319, + [SMALL_STATE(3938)] = 127332, + [SMALL_STATE(3939)] = 127345, + [SMALL_STATE(3940)] = 127358, + [SMALL_STATE(3941)] = 127371, + [SMALL_STATE(3942)] = 127384, + [SMALL_STATE(3943)] = 127397, + [SMALL_STATE(3944)] = 127410, + [SMALL_STATE(3945)] = 127423, + [SMALL_STATE(3946)] = 127436, + [SMALL_STATE(3947)] = 127449, + [SMALL_STATE(3948)] = 127462, + [SMALL_STATE(3949)] = 127475, + [SMALL_STATE(3950)] = 127488, + [SMALL_STATE(3951)] = 127501, + [SMALL_STATE(3952)] = 127514, + [SMALL_STATE(3953)] = 127527, + [SMALL_STATE(3954)] = 127540, + [SMALL_STATE(3955)] = 127553, + [SMALL_STATE(3956)] = 127562, + [SMALL_STATE(3957)] = 127575, + [SMALL_STATE(3958)] = 127588, + [SMALL_STATE(3959)] = 127601, + [SMALL_STATE(3960)] = 127614, + [SMALL_STATE(3961)] = 127627, + [SMALL_STATE(3962)] = 127640, + [SMALL_STATE(3963)] = 127653, + [SMALL_STATE(3964)] = 127666, + [SMALL_STATE(3965)] = 127679, + [SMALL_STATE(3966)] = 127692, + [SMALL_STATE(3967)] = 127705, + [SMALL_STATE(3968)] = 127718, + [SMALL_STATE(3969)] = 127731, + [SMALL_STATE(3970)] = 127744, + [SMALL_STATE(3971)] = 127757, + [SMALL_STATE(3972)] = 127770, + [SMALL_STATE(3973)] = 127783, + [SMALL_STATE(3974)] = 127796, + [SMALL_STATE(3975)] = 127809, + [SMALL_STATE(3976)] = 127822, + [SMALL_STATE(3977)] = 127835, + [SMALL_STATE(3978)] = 127848, + [SMALL_STATE(3979)] = 127857, + [SMALL_STATE(3980)] = 127866, + [SMALL_STATE(3981)] = 127879, + [SMALL_STATE(3982)] = 127890, + [SMALL_STATE(3983)] = 127903, + [SMALL_STATE(3984)] = 127916, + [SMALL_STATE(3985)] = 127929, + [SMALL_STATE(3986)] = 127942, + [SMALL_STATE(3987)] = 127955, + [SMALL_STATE(3988)] = 127968, + [SMALL_STATE(3989)] = 127981, + [SMALL_STATE(3990)] = 127994, + [SMALL_STATE(3991)] = 128007, + [SMALL_STATE(3992)] = 128020, + [SMALL_STATE(3993)] = 128033, + [SMALL_STATE(3994)] = 128046, + [SMALL_STATE(3995)] = 128059, + [SMALL_STATE(3996)] = 128072, + [SMALL_STATE(3997)] = 128081, + [SMALL_STATE(3998)] = 128094, + [SMALL_STATE(3999)] = 128103, + [SMALL_STATE(4000)] = 128116, + [SMALL_STATE(4001)] = 128129, + [SMALL_STATE(4002)] = 128142, + [SMALL_STATE(4003)] = 128155, + [SMALL_STATE(4004)] = 128168, + [SMALL_STATE(4005)] = 128181, + [SMALL_STATE(4006)] = 128194, + [SMALL_STATE(4007)] = 128207, + [SMALL_STATE(4008)] = 128220, + [SMALL_STATE(4009)] = 128233, + [SMALL_STATE(4010)] = 128246, + [SMALL_STATE(4011)] = 128259, + [SMALL_STATE(4012)] = 128272, + [SMALL_STATE(4013)] = 128285, + [SMALL_STATE(4014)] = 128298, + [SMALL_STATE(4015)] = 128309, + [SMALL_STATE(4016)] = 128322, + [SMALL_STATE(4017)] = 128335, + [SMALL_STATE(4018)] = 128348, + [SMALL_STATE(4019)] = 128361, + [SMALL_STATE(4020)] = 128374, + [SMALL_STATE(4021)] = 128387, + [SMALL_STATE(4022)] = 128398, + [SMALL_STATE(4023)] = 128411, + [SMALL_STATE(4024)] = 128424, + [SMALL_STATE(4025)] = 128437, + [SMALL_STATE(4026)] = 128450, + [SMALL_STATE(4027)] = 128463, + [SMALL_STATE(4028)] = 128476, + [SMALL_STATE(4029)] = 128489, + [SMALL_STATE(4030)] = 128502, + [SMALL_STATE(4031)] = 128515, + [SMALL_STATE(4032)] = 128528, + [SMALL_STATE(4033)] = 128541, + [SMALL_STATE(4034)] = 128554, + [SMALL_STATE(4035)] = 128567, + [SMALL_STATE(4036)] = 128580, + [SMALL_STATE(4037)] = 128593, + [SMALL_STATE(4038)] = 128606, + [SMALL_STATE(4039)] = 128619, + [SMALL_STATE(4040)] = 128632, + [SMALL_STATE(4041)] = 128645, + [SMALL_STATE(4042)] = 128658, + [SMALL_STATE(4043)] = 128671, + [SMALL_STATE(4044)] = 128684, + [SMALL_STATE(4045)] = 128697, + [SMALL_STATE(4046)] = 128710, + [SMALL_STATE(4047)] = 128723, + [SMALL_STATE(4048)] = 128736, + [SMALL_STATE(4049)] = 128749, + [SMALL_STATE(4050)] = 128762, + [SMALL_STATE(4051)] = 128775, + [SMALL_STATE(4052)] = 128788, + [SMALL_STATE(4053)] = 128801, + [SMALL_STATE(4054)] = 128814, + [SMALL_STATE(4055)] = 128827, + [SMALL_STATE(4056)] = 128840, + [SMALL_STATE(4057)] = 128853, + [SMALL_STATE(4058)] = 128866, + [SMALL_STATE(4059)] = 128879, + [SMALL_STATE(4060)] = 128892, + [SMALL_STATE(4061)] = 128905, + [SMALL_STATE(4062)] = 128918, + [SMALL_STATE(4063)] = 128931, + [SMALL_STATE(4064)] = 128944, + [SMALL_STATE(4065)] = 128957, + [SMALL_STATE(4066)] = 128970, + [SMALL_STATE(4067)] = 128983, + [SMALL_STATE(4068)] = 128996, + [SMALL_STATE(4069)] = 129009, + [SMALL_STATE(4070)] = 129022, + [SMALL_STATE(4071)] = 129035, + [SMALL_STATE(4072)] = 129048, + [SMALL_STATE(4073)] = 129061, + [SMALL_STATE(4074)] = 129074, + [SMALL_STATE(4075)] = 129087, + [SMALL_STATE(4076)] = 129100, + [SMALL_STATE(4077)] = 129113, + [SMALL_STATE(4078)] = 129126, + [SMALL_STATE(4079)] = 129139, + [SMALL_STATE(4080)] = 129152, + [SMALL_STATE(4081)] = 129165, + [SMALL_STATE(4082)] = 129178, + [SMALL_STATE(4083)] = 129191, + [SMALL_STATE(4084)] = 129204, + [SMALL_STATE(4085)] = 129217, + [SMALL_STATE(4086)] = 129230, + [SMALL_STATE(4087)] = 129243, + [SMALL_STATE(4088)] = 129256, + [SMALL_STATE(4089)] = 129269, + [SMALL_STATE(4090)] = 129280, + [SMALL_STATE(4091)] = 129293, + [SMALL_STATE(4092)] = 129302, + [SMALL_STATE(4093)] = 129315, + [SMALL_STATE(4094)] = 129328, + [SMALL_STATE(4095)] = 129341, + [SMALL_STATE(4096)] = 129354, + [SMALL_STATE(4097)] = 129367, + [SMALL_STATE(4098)] = 129377, + [SMALL_STATE(4099)] = 129387, + [SMALL_STATE(4100)] = 129397, + [SMALL_STATE(4101)] = 129407, + [SMALL_STATE(4102)] = 129417, + [SMALL_STATE(4103)] = 129427, + [SMALL_STATE(4104)] = 129437, + [SMALL_STATE(4105)] = 129447, + [SMALL_STATE(4106)] = 129457, + [SMALL_STATE(4107)] = 129467, + [SMALL_STATE(4108)] = 129477, + [SMALL_STATE(4109)] = 129487, + [SMALL_STATE(4110)] = 129497, + [SMALL_STATE(4111)] = 129507, + [SMALL_STATE(4112)] = 129517, + [SMALL_STATE(4113)] = 129527, + [SMALL_STATE(4114)] = 129537, + [SMALL_STATE(4115)] = 129547, + [SMALL_STATE(4116)] = 129557, + [SMALL_STATE(4117)] = 129567, + [SMALL_STATE(4118)] = 129577, + [SMALL_STATE(4119)] = 129587, + [SMALL_STATE(4120)] = 129597, + [SMALL_STATE(4121)] = 129607, + [SMALL_STATE(4122)] = 129617, + [SMALL_STATE(4123)] = 129625, + [SMALL_STATE(4124)] = 129635, + [SMALL_STATE(4125)] = 129645, + [SMALL_STATE(4126)] = 129655, + [SMALL_STATE(4127)] = 129665, + [SMALL_STATE(4128)] = 129675, + [SMALL_STATE(4129)] = 129685, + [SMALL_STATE(4130)] = 129695, + [SMALL_STATE(4131)] = 129705, + [SMALL_STATE(4132)] = 129715, + [SMALL_STATE(4133)] = 129725, + [SMALL_STATE(4134)] = 129735, + [SMALL_STATE(4135)] = 129745, + [SMALL_STATE(4136)] = 129755, + [SMALL_STATE(4137)] = 129765, + [SMALL_STATE(4138)] = 129775, + [SMALL_STATE(4139)] = 129785, + [SMALL_STATE(4140)] = 129795, + [SMALL_STATE(4141)] = 129805, + [SMALL_STATE(4142)] = 129815, + [SMALL_STATE(4143)] = 129825, + [SMALL_STATE(4144)] = 129835, + [SMALL_STATE(4145)] = 129845, + [SMALL_STATE(4146)] = 129855, + [SMALL_STATE(4147)] = 129865, + [SMALL_STATE(4148)] = 129875, + [SMALL_STATE(4149)] = 129885, + [SMALL_STATE(4150)] = 129895, + [SMALL_STATE(4151)] = 129905, + [SMALL_STATE(4152)] = 129915, + [SMALL_STATE(4153)] = 129925, + [SMALL_STATE(4154)] = 129935, + [SMALL_STATE(4155)] = 129943, + [SMALL_STATE(4156)] = 129951, + [SMALL_STATE(4157)] = 129961, + [SMALL_STATE(4158)] = 129971, + [SMALL_STATE(4159)] = 129981, + [SMALL_STATE(4160)] = 129991, + [SMALL_STATE(4161)] = 130001, + [SMALL_STATE(4162)] = 130011, + [SMALL_STATE(4163)] = 130021, + [SMALL_STATE(4164)] = 130031, + [SMALL_STATE(4165)] = 130041, + [SMALL_STATE(4166)] = 130051, + [SMALL_STATE(4167)] = 130061, + [SMALL_STATE(4168)] = 130071, + [SMALL_STATE(4169)] = 130081, + [SMALL_STATE(4170)] = 130091, + [SMALL_STATE(4171)] = 130099, + [SMALL_STATE(4172)] = 130109, + [SMALL_STATE(4173)] = 130119, + [SMALL_STATE(4174)] = 130129, + [SMALL_STATE(4175)] = 130139, + [SMALL_STATE(4176)] = 130149, + [SMALL_STATE(4177)] = 130159, + [SMALL_STATE(4178)] = 130169, + [SMALL_STATE(4179)] = 130179, + [SMALL_STATE(4180)] = 130189, + [SMALL_STATE(4181)] = 130199, + [SMALL_STATE(4182)] = 130209, + [SMALL_STATE(4183)] = 130219, + [SMALL_STATE(4184)] = 130229, + [SMALL_STATE(4185)] = 130239, + [SMALL_STATE(4186)] = 130249, + [SMALL_STATE(4187)] = 130259, + [SMALL_STATE(4188)] = 130269, + [SMALL_STATE(4189)] = 130279, + [SMALL_STATE(4190)] = 130289, + [SMALL_STATE(4191)] = 130299, + [SMALL_STATE(4192)] = 130309, + [SMALL_STATE(4193)] = 130319, + [SMALL_STATE(4194)] = 130329, + [SMALL_STATE(4195)] = 130339, + [SMALL_STATE(4196)] = 130349, + [SMALL_STATE(4197)] = 130359, + [SMALL_STATE(4198)] = 130369, + [SMALL_STATE(4199)] = 130379, + [SMALL_STATE(4200)] = 130389, + [SMALL_STATE(4201)] = 130399, + [SMALL_STATE(4202)] = 130407, + [SMALL_STATE(4203)] = 130417, + [SMALL_STATE(4204)] = 130427, + [SMALL_STATE(4205)] = 130437, + [SMALL_STATE(4206)] = 130447, + [SMALL_STATE(4207)] = 130457, + [SMALL_STATE(4208)] = 130467, + [SMALL_STATE(4209)] = 130477, + [SMALL_STATE(4210)] = 130487, + [SMALL_STATE(4211)] = 130497, + [SMALL_STATE(4212)] = 130507, + [SMALL_STATE(4213)] = 130517, + [SMALL_STATE(4214)] = 130527, + [SMALL_STATE(4215)] = 130537, + [SMALL_STATE(4216)] = 130547, + [SMALL_STATE(4217)] = 130557, + [SMALL_STATE(4218)] = 130567, + [SMALL_STATE(4219)] = 130577, + [SMALL_STATE(4220)] = 130587, + [SMALL_STATE(4221)] = 130597, + [SMALL_STATE(4222)] = 130607, + [SMALL_STATE(4223)] = 130617, + [SMALL_STATE(4224)] = 130627, + [SMALL_STATE(4225)] = 130637, + [SMALL_STATE(4226)] = 130647, + [SMALL_STATE(4227)] = 130657, + [SMALL_STATE(4228)] = 130667, + [SMALL_STATE(4229)] = 130677, + [SMALL_STATE(4230)] = 130687, + [SMALL_STATE(4231)] = 130697, + [SMALL_STATE(4232)] = 130707, + [SMALL_STATE(4233)] = 130717, + [SMALL_STATE(4234)] = 130727, + [SMALL_STATE(4235)] = 130737, + [SMALL_STATE(4236)] = 130745, + [SMALL_STATE(4237)] = 130755, + [SMALL_STATE(4238)] = 130763, + [SMALL_STATE(4239)] = 130773, + [SMALL_STATE(4240)] = 130781, + [SMALL_STATE(4241)] = 130791, + [SMALL_STATE(4242)] = 130801, + [SMALL_STATE(4243)] = 130811, + [SMALL_STATE(4244)] = 130821, + [SMALL_STATE(4245)] = 130831, + [SMALL_STATE(4246)] = 130841, + [SMALL_STATE(4247)] = 130851, + [SMALL_STATE(4248)] = 130861, + [SMALL_STATE(4249)] = 130871, + [SMALL_STATE(4250)] = 130879, + [SMALL_STATE(4251)] = 130889, + [SMALL_STATE(4252)] = 130899, + [SMALL_STATE(4253)] = 130909, + [SMALL_STATE(4254)] = 130919, + [SMALL_STATE(4255)] = 130929, + [SMALL_STATE(4256)] = 130939, + [SMALL_STATE(4257)] = 130949, + [SMALL_STATE(4258)] = 130959, + [SMALL_STATE(4259)] = 130967, + [SMALL_STATE(4260)] = 130977, + [SMALL_STATE(4261)] = 130987, + [SMALL_STATE(4262)] = 130997, + [SMALL_STATE(4263)] = 131007, + [SMALL_STATE(4264)] = 131017, + [SMALL_STATE(4265)] = 131027, + [SMALL_STATE(4266)] = 131037, + [SMALL_STATE(4267)] = 131047, + [SMALL_STATE(4268)] = 131057, + [SMALL_STATE(4269)] = 131067, + [SMALL_STATE(4270)] = 131077, + [SMALL_STATE(4271)] = 131087, + [SMALL_STATE(4272)] = 131097, + [SMALL_STATE(4273)] = 131107, + [SMALL_STATE(4274)] = 131117, + [SMALL_STATE(4275)] = 131127, + [SMALL_STATE(4276)] = 131137, + [SMALL_STATE(4277)] = 131147, + [SMALL_STATE(4278)] = 131157, + [SMALL_STATE(4279)] = 131167, + [SMALL_STATE(4280)] = 131177, + [SMALL_STATE(4281)] = 131187, + [SMALL_STATE(4282)] = 131197, + [SMALL_STATE(4283)] = 131205, + [SMALL_STATE(4284)] = 131215, + [SMALL_STATE(4285)] = 131225, + [SMALL_STATE(4286)] = 131235, + [SMALL_STATE(4287)] = 131245, + [SMALL_STATE(4288)] = 131255, + [SMALL_STATE(4289)] = 131265, + [SMALL_STATE(4290)] = 131275, + [SMALL_STATE(4291)] = 131285, + [SMALL_STATE(4292)] = 131295, + [SMALL_STATE(4293)] = 131305, + [SMALL_STATE(4294)] = 131313, + [SMALL_STATE(4295)] = 131323, + [SMALL_STATE(4296)] = 131333, + [SMALL_STATE(4297)] = 131343, + [SMALL_STATE(4298)] = 131351, + [SMALL_STATE(4299)] = 131361, + [SMALL_STATE(4300)] = 131371, + [SMALL_STATE(4301)] = 131381, + [SMALL_STATE(4302)] = 131389, + [SMALL_STATE(4303)] = 131399, + [SMALL_STATE(4304)] = 131409, + [SMALL_STATE(4305)] = 131419, + [SMALL_STATE(4306)] = 131429, + [SMALL_STATE(4307)] = 131439, + [SMALL_STATE(4308)] = 131449, + [SMALL_STATE(4309)] = 131457, + [SMALL_STATE(4310)] = 131467, + [SMALL_STATE(4311)] = 131477, + [SMALL_STATE(4312)] = 131487, + [SMALL_STATE(4313)] = 131497, + [SMALL_STATE(4314)] = 131507, + [SMALL_STATE(4315)] = 131517, + [SMALL_STATE(4316)] = 131525, + [SMALL_STATE(4317)] = 131533, + [SMALL_STATE(4318)] = 131543, + [SMALL_STATE(4319)] = 131551, + [SMALL_STATE(4320)] = 131561, + [SMALL_STATE(4321)] = 131569, + [SMALL_STATE(4322)] = 131577, + [SMALL_STATE(4323)] = 131587, + [SMALL_STATE(4324)] = 131595, + [SMALL_STATE(4325)] = 131605, + [SMALL_STATE(4326)] = 131613, + [SMALL_STATE(4327)] = 131623, + [SMALL_STATE(4328)] = 131633, + [SMALL_STATE(4329)] = 131643, + [SMALL_STATE(4330)] = 131653, + [SMALL_STATE(4331)] = 131663, + [SMALL_STATE(4332)] = 131673, + [SMALL_STATE(4333)] = 131683, + [SMALL_STATE(4334)] = 131691, + [SMALL_STATE(4335)] = 131699, + [SMALL_STATE(4336)] = 131709, + [SMALL_STATE(4337)] = 131719, + [SMALL_STATE(4338)] = 131729, + [SMALL_STATE(4339)] = 131739, + [SMALL_STATE(4340)] = 131749, + [SMALL_STATE(4341)] = 131759, + [SMALL_STATE(4342)] = 131769, + [SMALL_STATE(4343)] = 131779, + [SMALL_STATE(4344)] = 131789, + [SMALL_STATE(4345)] = 131799, + [SMALL_STATE(4346)] = 131809, + [SMALL_STATE(4347)] = 131819, + [SMALL_STATE(4348)] = 131829, + [SMALL_STATE(4349)] = 131839, + [SMALL_STATE(4350)] = 131849, + [SMALL_STATE(4351)] = 131859, + [SMALL_STATE(4352)] = 131869, + [SMALL_STATE(4353)] = 131877, + [SMALL_STATE(4354)] = 131887, + [SMALL_STATE(4355)] = 131897, + [SMALL_STATE(4356)] = 131907, + [SMALL_STATE(4357)] = 131917, + [SMALL_STATE(4358)] = 131927, + [SMALL_STATE(4359)] = 131937, + [SMALL_STATE(4360)] = 131947, + [SMALL_STATE(4361)] = 131957, + [SMALL_STATE(4362)] = 131967, + [SMALL_STATE(4363)] = 131977, + [SMALL_STATE(4364)] = 131985, + [SMALL_STATE(4365)] = 131995, + [SMALL_STATE(4366)] = 132005, + [SMALL_STATE(4367)] = 132015, + [SMALL_STATE(4368)] = 132025, + [SMALL_STATE(4369)] = 132035, + [SMALL_STATE(4370)] = 132045, + [SMALL_STATE(4371)] = 132055, + [SMALL_STATE(4372)] = 132065, + [SMALL_STATE(4373)] = 132075, + [SMALL_STATE(4374)] = 132085, + [SMALL_STATE(4375)] = 132095, + [SMALL_STATE(4376)] = 132105, + [SMALL_STATE(4377)] = 132113, + [SMALL_STATE(4378)] = 132123, + [SMALL_STATE(4379)] = 132133, + [SMALL_STATE(4380)] = 132141, + [SMALL_STATE(4381)] = 132149, + [SMALL_STATE(4382)] = 132159, + [SMALL_STATE(4383)] = 132169, + [SMALL_STATE(4384)] = 132179, + [SMALL_STATE(4385)] = 132189, + [SMALL_STATE(4386)] = 132199, + [SMALL_STATE(4387)] = 132209, + [SMALL_STATE(4388)] = 132219, + [SMALL_STATE(4389)] = 132229, + [SMALL_STATE(4390)] = 132239, + [SMALL_STATE(4391)] = 132249, + [SMALL_STATE(4392)] = 132259, + [SMALL_STATE(4393)] = 132269, + [SMALL_STATE(4394)] = 132279, + [SMALL_STATE(4395)] = 132289, + [SMALL_STATE(4396)] = 132299, + [SMALL_STATE(4397)] = 132309, + [SMALL_STATE(4398)] = 132319, + [SMALL_STATE(4399)] = 132329, + [SMALL_STATE(4400)] = 132339, + [SMALL_STATE(4401)] = 132347, + [SMALL_STATE(4402)] = 132357, + [SMALL_STATE(4403)] = 132367, + [SMALL_STATE(4404)] = 132377, + [SMALL_STATE(4405)] = 132387, + [SMALL_STATE(4406)] = 132397, + [SMALL_STATE(4407)] = 132407, + [SMALL_STATE(4408)] = 132417, + [SMALL_STATE(4409)] = 132427, + [SMALL_STATE(4410)] = 132437, + [SMALL_STATE(4411)] = 132445, + [SMALL_STATE(4412)] = 132455, + [SMALL_STATE(4413)] = 132462, + [SMALL_STATE(4414)] = 132469, + [SMALL_STATE(4415)] = 132476, + [SMALL_STATE(4416)] = 132483, + [SMALL_STATE(4417)] = 132490, + [SMALL_STATE(4418)] = 132497, + [SMALL_STATE(4419)] = 132504, + [SMALL_STATE(4420)] = 132511, + [SMALL_STATE(4421)] = 132518, + [SMALL_STATE(4422)] = 132525, + [SMALL_STATE(4423)] = 132532, + [SMALL_STATE(4424)] = 132539, + [SMALL_STATE(4425)] = 132546, + [SMALL_STATE(4426)] = 132553, + [SMALL_STATE(4427)] = 132560, + [SMALL_STATE(4428)] = 132567, + [SMALL_STATE(4429)] = 132574, + [SMALL_STATE(4430)] = 132581, + [SMALL_STATE(4431)] = 132588, + [SMALL_STATE(4432)] = 132595, + [SMALL_STATE(4433)] = 132602, + [SMALL_STATE(4434)] = 132609, + [SMALL_STATE(4435)] = 132616, + [SMALL_STATE(4436)] = 132623, + [SMALL_STATE(4437)] = 132630, + [SMALL_STATE(4438)] = 132637, + [SMALL_STATE(4439)] = 132644, + [SMALL_STATE(4440)] = 132651, + [SMALL_STATE(4441)] = 132658, + [SMALL_STATE(4442)] = 132665, + [SMALL_STATE(4443)] = 132672, + [SMALL_STATE(4444)] = 132679, + [SMALL_STATE(4445)] = 132686, + [SMALL_STATE(4446)] = 132693, + [SMALL_STATE(4447)] = 132700, + [SMALL_STATE(4448)] = 132707, + [SMALL_STATE(4449)] = 132714, + [SMALL_STATE(4450)] = 132721, + [SMALL_STATE(4451)] = 132728, + [SMALL_STATE(4452)] = 132735, + [SMALL_STATE(4453)] = 132742, + [SMALL_STATE(4454)] = 132749, + [SMALL_STATE(4455)] = 132756, + [SMALL_STATE(4456)] = 132763, + [SMALL_STATE(4457)] = 132770, + [SMALL_STATE(4458)] = 132777, + [SMALL_STATE(4459)] = 132784, + [SMALL_STATE(4460)] = 132791, + [SMALL_STATE(4461)] = 132798, + [SMALL_STATE(4462)] = 132805, + [SMALL_STATE(4463)] = 132812, + [SMALL_STATE(4464)] = 132819, + [SMALL_STATE(4465)] = 132826, + [SMALL_STATE(4466)] = 132833, + [SMALL_STATE(4467)] = 132840, + [SMALL_STATE(4468)] = 132847, + [SMALL_STATE(4469)] = 132854, + [SMALL_STATE(4470)] = 132861, + [SMALL_STATE(4471)] = 132868, + [SMALL_STATE(4472)] = 132875, + [SMALL_STATE(4473)] = 132882, + [SMALL_STATE(4474)] = 132889, + [SMALL_STATE(4475)] = 132896, + [SMALL_STATE(4476)] = 132903, + [SMALL_STATE(4477)] = 132910, + [SMALL_STATE(4478)] = 132917, + [SMALL_STATE(4479)] = 132924, + [SMALL_STATE(4480)] = 132931, + [SMALL_STATE(4481)] = 132938, + [SMALL_STATE(4482)] = 132945, + [SMALL_STATE(4483)] = 132952, + [SMALL_STATE(4484)] = 132959, + [SMALL_STATE(4485)] = 132966, + [SMALL_STATE(4486)] = 132973, + [SMALL_STATE(4487)] = 132980, + [SMALL_STATE(4488)] = 132987, + [SMALL_STATE(4489)] = 132994, + [SMALL_STATE(4490)] = 133001, + [SMALL_STATE(4491)] = 133008, + [SMALL_STATE(4492)] = 133015, + [SMALL_STATE(4493)] = 133022, + [SMALL_STATE(4494)] = 133029, + [SMALL_STATE(4495)] = 133036, + [SMALL_STATE(4496)] = 133043, + [SMALL_STATE(4497)] = 133050, + [SMALL_STATE(4498)] = 133057, + [SMALL_STATE(4499)] = 133064, + [SMALL_STATE(4500)] = 133071, + [SMALL_STATE(4501)] = 133078, + [SMALL_STATE(4502)] = 133085, + [SMALL_STATE(4503)] = 133092, + [SMALL_STATE(4504)] = 133099, + [SMALL_STATE(4505)] = 133106, + [SMALL_STATE(4506)] = 133113, + [SMALL_STATE(4507)] = 133120, + [SMALL_STATE(4508)] = 133127, + [SMALL_STATE(4509)] = 133134, + [SMALL_STATE(4510)] = 133141, + [SMALL_STATE(4511)] = 133148, + [SMALL_STATE(4512)] = 133155, + [SMALL_STATE(4513)] = 133162, + [SMALL_STATE(4514)] = 133169, + [SMALL_STATE(4515)] = 133176, + [SMALL_STATE(4516)] = 133183, + [SMALL_STATE(4517)] = 133190, + [SMALL_STATE(4518)] = 133197, + [SMALL_STATE(4519)] = 133204, + [SMALL_STATE(4520)] = 133211, + [SMALL_STATE(4521)] = 133218, + [SMALL_STATE(4522)] = 133225, + [SMALL_STATE(4523)] = 133232, + [SMALL_STATE(4524)] = 133239, + [SMALL_STATE(4525)] = 133246, + [SMALL_STATE(4526)] = 133253, + [SMALL_STATE(4527)] = 133260, + [SMALL_STATE(4528)] = 133267, + [SMALL_STATE(4529)] = 133274, + [SMALL_STATE(4530)] = 133281, + [SMALL_STATE(4531)] = 133288, + [SMALL_STATE(4532)] = 133295, + [SMALL_STATE(4533)] = 133302, + [SMALL_STATE(4534)] = 133309, + [SMALL_STATE(4535)] = 133316, + [SMALL_STATE(4536)] = 133323, + [SMALL_STATE(4537)] = 133330, + [SMALL_STATE(4538)] = 133337, + [SMALL_STATE(4539)] = 133344, + [SMALL_STATE(4540)] = 133351, + [SMALL_STATE(4541)] = 133358, + [SMALL_STATE(4542)] = 133365, + [SMALL_STATE(4543)] = 133372, + [SMALL_STATE(4544)] = 133379, + [SMALL_STATE(4545)] = 133386, + [SMALL_STATE(4546)] = 133393, + [SMALL_STATE(4547)] = 133400, + [SMALL_STATE(4548)] = 133407, + [SMALL_STATE(4549)] = 133414, + [SMALL_STATE(4550)] = 133421, + [SMALL_STATE(4551)] = 133428, + [SMALL_STATE(4552)] = 133435, + [SMALL_STATE(4553)] = 133442, + [SMALL_STATE(4554)] = 133449, + [SMALL_STATE(4555)] = 133456, + [SMALL_STATE(4556)] = 133463, + [SMALL_STATE(4557)] = 133470, + [SMALL_STATE(4558)] = 133477, + [SMALL_STATE(4559)] = 133484, + [SMALL_STATE(4560)] = 133491, + [SMALL_STATE(4561)] = 133498, + [SMALL_STATE(4562)] = 133505, + [SMALL_STATE(4563)] = 133512, + [SMALL_STATE(4564)] = 133519, + [SMALL_STATE(4565)] = 133526, + [SMALL_STATE(4566)] = 133533, + [SMALL_STATE(4567)] = 133540, + [SMALL_STATE(4568)] = 133547, + [SMALL_STATE(4569)] = 133554, + [SMALL_STATE(4570)] = 133561, + [SMALL_STATE(4571)] = 133568, + [SMALL_STATE(4572)] = 133575, + [SMALL_STATE(4573)] = 133582, + [SMALL_STATE(4574)] = 133589, + [SMALL_STATE(4575)] = 133596, + [SMALL_STATE(4576)] = 133603, + [SMALL_STATE(4577)] = 133610, + [SMALL_STATE(4578)] = 133617, + [SMALL_STATE(4579)] = 133624, + [SMALL_STATE(4580)] = 133631, + [SMALL_STATE(4581)] = 133638, + [SMALL_STATE(4582)] = 133645, + [SMALL_STATE(4583)] = 133652, + [SMALL_STATE(4584)] = 133659, + [SMALL_STATE(4585)] = 133666, + [SMALL_STATE(4586)] = 133673, + [SMALL_STATE(4587)] = 133680, + [SMALL_STATE(4588)] = 133687, + [SMALL_STATE(4589)] = 133694, + [SMALL_STATE(4590)] = 133701, + [SMALL_STATE(4591)] = 133708, + [SMALL_STATE(4592)] = 133715, + [SMALL_STATE(4593)] = 133722, + [SMALL_STATE(4594)] = 133729, + [SMALL_STATE(4595)] = 133736, + [SMALL_STATE(4596)] = 133743, + [SMALL_STATE(4597)] = 133750, + [SMALL_STATE(4598)] = 133757, + [SMALL_STATE(4599)] = 133764, + [SMALL_STATE(4600)] = 133771, + [SMALL_STATE(4601)] = 133778, + [SMALL_STATE(4602)] = 133785, + [SMALL_STATE(4603)] = 133792, + [SMALL_STATE(4604)] = 133799, + [SMALL_STATE(4605)] = 133806, + [SMALL_STATE(4606)] = 133813, + [SMALL_STATE(4607)] = 133820, + [SMALL_STATE(4608)] = 133827, + [SMALL_STATE(4609)] = 133834, + [SMALL_STATE(4610)] = 133841, + [SMALL_STATE(4611)] = 133848, + [SMALL_STATE(4612)] = 133855, + [SMALL_STATE(4613)] = 133862, + [SMALL_STATE(4614)] = 133869, + [SMALL_STATE(4615)] = 133876, + [SMALL_STATE(4616)] = 133883, + [SMALL_STATE(4617)] = 133890, + [SMALL_STATE(4618)] = 133897, + [SMALL_STATE(4619)] = 133904, + [SMALL_STATE(4620)] = 133911, + [SMALL_STATE(4621)] = 133918, + [SMALL_STATE(4622)] = 133925, + [SMALL_STATE(4623)] = 133932, + [SMALL_STATE(4624)] = 133939, + [SMALL_STATE(4625)] = 133946, + [SMALL_STATE(4626)] = 133953, + [SMALL_STATE(4627)] = 133960, + [SMALL_STATE(4628)] = 133967, + [SMALL_STATE(4629)] = 133974, + [SMALL_STATE(4630)] = 133981, + [SMALL_STATE(4631)] = 133988, + [SMALL_STATE(4632)] = 133995, + [SMALL_STATE(4633)] = 134002, + [SMALL_STATE(4634)] = 134009, + [SMALL_STATE(4635)] = 134016, + [SMALL_STATE(4636)] = 134023, + [SMALL_STATE(4637)] = 134030, + [SMALL_STATE(4638)] = 134037, + [SMALL_STATE(4639)] = 134044, + [SMALL_STATE(4640)] = 134051, + [SMALL_STATE(4641)] = 134058, + [SMALL_STATE(4642)] = 134065, + [SMALL_STATE(4643)] = 134072, + [SMALL_STATE(4644)] = 134079, + [SMALL_STATE(4645)] = 134086, + [SMALL_STATE(4646)] = 134093, + [SMALL_STATE(4647)] = 134100, + [SMALL_STATE(4648)] = 134107, + [SMALL_STATE(4649)] = 134114, + [SMALL_STATE(4650)] = 134121, + [SMALL_STATE(4651)] = 134128, + [SMALL_STATE(4652)] = 134135, + [SMALL_STATE(4653)] = 134142, + [SMALL_STATE(4654)] = 134149, + [SMALL_STATE(4655)] = 134156, + [SMALL_STATE(4656)] = 134163, + [SMALL_STATE(4657)] = 134170, + [SMALL_STATE(4658)] = 134177, + [SMALL_STATE(4659)] = 134184, + [SMALL_STATE(4660)] = 134191, + [SMALL_STATE(4661)] = 134198, + [SMALL_STATE(4662)] = 134205, + [SMALL_STATE(4663)] = 134212, + [SMALL_STATE(4664)] = 134219, + [SMALL_STATE(4665)] = 134226, + [SMALL_STATE(4666)] = 134233, + [SMALL_STATE(4667)] = 134240, + [SMALL_STATE(4668)] = 134247, + [SMALL_STATE(4669)] = 134254, + [SMALL_STATE(4670)] = 134261, + [SMALL_STATE(4671)] = 134268, + [SMALL_STATE(4672)] = 134275, + [SMALL_STATE(4673)] = 134282, + [SMALL_STATE(4674)] = 134289, + [SMALL_STATE(4675)] = 134296, + [SMALL_STATE(4676)] = 134303, + [SMALL_STATE(4677)] = 134310, + [SMALL_STATE(4678)] = 134317, + [SMALL_STATE(4679)] = 134324, + [SMALL_STATE(4680)] = 134331, + [SMALL_STATE(4681)] = 134338, + [SMALL_STATE(4682)] = 134345, + [SMALL_STATE(4683)] = 134352, + [SMALL_STATE(4684)] = 134359, + [SMALL_STATE(4685)] = 134366, + [SMALL_STATE(4686)] = 134373, + [SMALL_STATE(4687)] = 134380, + [SMALL_STATE(4688)] = 134387, + [SMALL_STATE(4689)] = 134394, + [SMALL_STATE(4690)] = 134401, + [SMALL_STATE(4691)] = 134408, + [SMALL_STATE(4692)] = 134415, + [SMALL_STATE(4693)] = 134422, + [SMALL_STATE(4694)] = 134429, + [SMALL_STATE(4695)] = 134436, + [SMALL_STATE(4696)] = 134443, + [SMALL_STATE(4697)] = 134450, + [SMALL_STATE(4698)] = 134457, + [SMALL_STATE(4699)] = 134464, + [SMALL_STATE(4700)] = 134471, + [SMALL_STATE(4701)] = 134478, + [SMALL_STATE(4702)] = 134485, + [SMALL_STATE(4703)] = 134492, + [SMALL_STATE(4704)] = 134499, + [SMALL_STATE(4705)] = 134506, + [SMALL_STATE(4706)] = 134513, + [SMALL_STATE(4707)] = 134520, + [SMALL_STATE(4708)] = 134527, + [SMALL_STATE(4709)] = 134534, + [SMALL_STATE(4710)] = 134541, + [SMALL_STATE(4711)] = 134548, + [SMALL_STATE(4712)] = 134555, + [SMALL_STATE(4713)] = 134562, + [SMALL_STATE(4714)] = 134569, + [SMALL_STATE(4715)] = 134576, + [SMALL_STATE(4716)] = 134583, + [SMALL_STATE(4717)] = 134590, + [SMALL_STATE(4718)] = 134597, + [SMALL_STATE(4719)] = 134604, + [SMALL_STATE(4720)] = 134611, + [SMALL_STATE(4721)] = 134618, + [SMALL_STATE(4722)] = 134625, + [SMALL_STATE(4723)] = 134632, + [SMALL_STATE(4724)] = 134639, + [SMALL_STATE(4725)] = 134646, + [SMALL_STATE(4726)] = 134653, + [SMALL_STATE(4727)] = 134660, + [SMALL_STATE(4728)] = 134667, + [SMALL_STATE(4729)] = 134674, + [SMALL_STATE(4730)] = 134681, + [SMALL_STATE(4731)] = 134688, + [SMALL_STATE(4732)] = 134695, + [SMALL_STATE(4733)] = 134702, + [SMALL_STATE(4734)] = 134709, + [SMALL_STATE(4735)] = 134716, + [SMALL_STATE(4736)] = 134723, + [SMALL_STATE(4737)] = 134730, + [SMALL_STATE(4738)] = 134737, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -304562,3869 +305188,3872 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(792), - [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4386), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(11), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3872), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(840), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3444), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4724), - [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3327), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(834), - [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(832), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3884), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4718), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3496), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2162), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4714), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4712), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2923), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(813), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(811), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(809), - [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4349), - [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(170), - [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(804), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(803), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(859), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(227), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(801), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(424), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(310), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(226), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4341), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3909), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(859), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4702), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1589), - [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3300), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3302), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3303), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3307), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(786), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4267), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4258), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1455), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1456), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(61), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3658), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(103), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4686), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4685), - [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3314), - [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3621), - [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3612), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3591), - [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3583), - [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3979), - [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3980), - [295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3), - [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 3), - [471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 2), - [473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_labeled_statement, 1), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), - [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 1), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 1), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 3), - [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 3), - [587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 1, .production_id = 2), - [589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 1, .production_id = 2), - [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 2), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 2), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 1), - [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 1), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1912), - [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4127), - [953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(250), - [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), - [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(590), - [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3455), - [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(555), - [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(528), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4348), - [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2162), - [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2923), - [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(527), - [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(549), - [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(545), - [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4133), - [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(374), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(524), - [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(543), - [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2030), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(257), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), - [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(574), - [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(426), - [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(356), - [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(262), - [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4136), - [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4050), - [1026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2030), - [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4654), - [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1589), - [1035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3300), - [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3302), - [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3303), - [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3307), - [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3649), - [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3650), - [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3651), - [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3652), - [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4041), - [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4040), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [1305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2822), - [1308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4227), - [1311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(256), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), - [1316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(500), - [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3459), - [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(497), - [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(474), - [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4373), - [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2162), - [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2923), - [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(419), - [1340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(494), - [1343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(493), - [1346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4217), - [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(336), - [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(472), - [1355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(491), - [1358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2674), - [1361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(237), - [1364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4144), - [1367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(516), - [1370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(432), - [1373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(370), - [1376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(249), - [1379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4215), - [1382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3995), - [1385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2674), - [1388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4665), - [1391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(1589), - [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3300), - [1397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3302), - [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3303), - [1403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3307), - [1406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3582), - [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3584), - [1412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3590), - [1415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3592), - [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4001), - [1421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4002), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arms, 1), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 91), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 2), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 54), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 60), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 3), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 3), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_statement, 1), - [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_statement, 1), - [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 1), - [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1143), - [1783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4185), - [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(273), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), - [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(702), - [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3452), - [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(633), - [1800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(592), - [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4304), - [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2162), - [1809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2923), - [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(591), - [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(629), - [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(628), - [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4181), - [1824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(346), - [1827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(587), - [1830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(623), - [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1174), - [1836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(272), - [1839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(692), - [1842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(421), - [1845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(318), - [1848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(276), - [1851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4175), - [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4024), - [1857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1174), - [1860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4595), - [1863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1589), - [1866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3300), - [1869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3302), - [1872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3303), - [1875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3307), - [1878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3585), - [1881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3586), - [1884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3587), - [1887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3588), - [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4028), - [1893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4035), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_element_list, 1), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2444), - [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4112), - [1924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(247), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), - [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(671), - [1932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3460), - [1935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(676), - [1938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(675), - [1941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4190), - [1944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2162), - [1947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2923), - [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(673), - [1953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(666), - [1956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(664), - [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4121), - [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(343), - [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(662), - [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(661), - [1971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2336), - [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(270), - [1977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(693), - [1980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(412), - [1983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(341), - [1986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(251), - [1989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4126), - [1992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4057), - [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2336), - [1998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4550), - [2001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(1589), - [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3300), - [2007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3302), - [2010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3303), - [2013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3307), - [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3573), - [2019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3574), - [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3575), - [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3576), - [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4054), - [2031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4052), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 26), - [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 26), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_append_statement, 3, .production_id = 29), - [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_append_statement, 3, .production_id = 29), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in_expression, 3, .production_id = 29), - [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in_expression, 3, .production_id = 29), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_in_expression, 3, .production_id = 29), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_in_expression, 3, .production_id = 29), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_expression, 2), - [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutable_expression, 2), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 3), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 3), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_go_expression, 2), - [2210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_go_expression, 2), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spawn_expression, 2), - [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spawn_expression, 2), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receive_expression, 2, .production_id = 3), - [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receive_expression, 2, .production_id = 3), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [2234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1282), - [2237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4252), - [2240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(235), - [2243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(755), - [2246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3456), - [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(727), - [2252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(729), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), - [2257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4257), - [2260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2162), - [2263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2923), - [2266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(730), - [2269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(731), - [2272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(732), - [2275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4255), - [2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(332), - [2281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(736), - [2284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(740), - [2287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1291), - [2290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(274), - [2293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(762), - [2296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(414), - [2299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(330), - [2302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(223), - [2305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4342), - [2308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3952), - [2311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1291), - [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4520), - [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1589), - [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3300), - [2323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3302), - [2326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3303), - [2329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3307), - [2332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3644), - [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3643), - [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3642), - [2341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3641), - [2344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3949), - [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3945), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 20), - [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 20), - [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 21), - [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 21), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 64), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), - [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 1, .production_id = 27), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), - [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_type_without_special, 1), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plain_type_without_special, 1), - [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), - [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), - [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 20), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 20), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 53), - [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 53), - [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 2), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 2), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 1), - [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 1), - [2774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), - [2777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_type, 2), - [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_type, 2), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 3), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 3), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 25), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 25), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 6, .production_id = 56), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 6, .production_id = 56), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 4, .production_id = 54), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 4, .production_id = 54), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4), - [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 5, .production_id = 50), - [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 5, .production_id = 50), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 112), - [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 112), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4, .production_id = 56), - [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4, .production_id = 56), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_selector_expression, 4), - [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_selector_expression, 4), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), - [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__content_block, 3), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__content_block, 3), - [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1), - [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_type_cast_expression, 3), - [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_type_cast_expression, 3), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 2), - [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 2), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thread_type, 2), - [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thread_type, 2), - [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 47), - [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 47), - [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shared_type, 2), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shared_type, 2), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 63), - [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 63), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block, 2, .production_id = 30), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block, 2, .production_id = 30), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), - [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), - [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), - [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), - [2886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4293), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_with_blocks, 1), - [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_with_blocks, 1), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), - [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 19), - [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 19), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 31), - [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 31), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 3, .production_id = 15), - [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 3, .production_id = 15), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2), - [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 2), - [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 2), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 2), - [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 2), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 2), - [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 2), - [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, .production_id = 65), - [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, .production_id = 65), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wrong_pointer_type, 2), - [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wrong_pointer_type, 2), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 1), - [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 1), - [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 3), - [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 3), - [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [2951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [2954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_type, 2), - [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_type, 2), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), - [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 3), - [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 3), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [2973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [2976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 69), - [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 69), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 70), - [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 70), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plain_type, 1), - [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plain_type, 1), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 2), - [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 2), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 3, .production_id = 22), - [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 3, .production_id = 22), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 20), - [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 20), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 3), - [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 3), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 2, .production_id = 16), - [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 2, .production_id = 16), - [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 45), - [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 45), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 46), - [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 46), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 4), - [3021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 4), - [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 3, .production_id = 50), - [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 3, .production_id = 50), - [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_reference_expression, 1), - [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_reference_expression, 1), - [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 2), - [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 2), - [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 2), - [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 2), - [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 2), - [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 2), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 4), - [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 4), - [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inc_expression, 2), - [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inc_expression, 2), - [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 2, .production_id = 7), - [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 2, .production_id = 7), - [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_expression, 2), - [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_expression, 2), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dec_expression, 2), - [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dec_expression, 2), - [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, .production_id = 82), - [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, .production_id = 82), - [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5, .production_id = 56), - [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5, .production_id = 56), - [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5), - [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5), - [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 3), - [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 3), - [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 21), - [3085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 21), - [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 3), - [3089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 3), - [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3), - [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 4), - [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 4), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3), - [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 3), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 3), - [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 3), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_type, 4, .production_id = 51), - [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_type, 4, .production_id = 51), - [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5, .production_id = 54), - [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5, .production_id = 54), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 4, .production_id = 57), - [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_type, 4, .production_id = 57), - [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 87), - [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 87), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 5), - [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 5), - [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4), - [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 4), - [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 30), - [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 30), - [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 86), - [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 86), - [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_propagation_expression, 2), - [3149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_propagation_expression, 2), - [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 3), - [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 3), - [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pseudo_compile_time_identifier, 2), - [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pseudo_compile_time_identifier, 2), - [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer, 2, .production_id = 10), - [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer, 2, .production_id = 10), - [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), - [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), - [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 32), - [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type, 3, .production_id = 32), - [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), - [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), - [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), - [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), - [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_propagation_expression, 2), - [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_propagation_expression, 2), - [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block_expression, 2), - [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block_expression, 2), - [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 48), - [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 48), - [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 2), - [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 2), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), - [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 1), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), - [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), - [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 2), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), - [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), - [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), - [3313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 4), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__global_var_value, 2, .production_id = 37), - [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__global_var_value, 2, .production_id = 37), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_definition, 3, .production_id = 36), - [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_definition, 3, .production_id = 36), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_statement, 3, .production_id = 28), - [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_statement, 3, .production_id = 28), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), - [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), - [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), - [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), - [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), - [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), - [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), - [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), - [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_element, 1), - [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), - [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), - [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_keyed_element, 3, .production_id = 35), - [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), - [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [3517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), REDUCE(aux_sym_element_list_repeat1, 1), - [3520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4084), - [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_element_list_repeat1, 1), - [3525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_name, 1), - [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), - [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), - [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), - [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), - [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [3581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [3585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4200), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 1), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 1), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 6), - [3654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_literal, 1), SHIFT(3216), - [3657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__max_group, 1), - [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_attribute, 1), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__max_group, 1), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [3667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(3216), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 2), - [3760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), - [3762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(4653), - [3765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(3157), - [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 2), - [3770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 2), - [3772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 2), SHIFT(4653), - [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [3777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(399), - [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 1), - [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 1), - [3784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 1), SHIFT(4653), - [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), - [3789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2), - [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 4), - [3793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 4), - [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 119), - [3797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 119), - [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 120), - [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 120), - [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 123), - [3807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 123), - [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 133), - [3811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 133), - [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 81), - [3815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 81), - [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 96), - [3819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 96), - [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 71), - [3823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 71), - [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 5, .production_id = 78), - [3827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 5, .production_id = 78), - [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 66), - [3833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 66), - [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 136), - [3837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 136), - [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 95), - [3841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 95), - [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 138), - [3845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 138), - [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1), - [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), - [3855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1), - [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 107), - [3859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 107), - [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 125), - [3863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 125), - [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 116), - [3867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 116), - [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 99), - [3871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 99), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 14), - [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 14), - [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 126), - [3879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 126), - [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 141), - [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 141), - [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 3), - [3887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 3), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 100), - [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 100), - [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 43), - [3895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 43), - [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 44), - [3899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 44), - [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 145), - [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 145), - [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 102), - [3907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 102), - [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 121), - [3911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 121), - [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 139), - [3915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 139), - [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3, .production_id = 34), - [3919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3, .production_id = 34), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, .production_id = 34), - [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, .production_id = 34), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, .production_id = 34), - [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, .production_id = 34), - [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4), - [3931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4), - [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_statement, 2), - [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_statement, 2), - [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 108), - [3939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 108), - [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4), - [3943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4), - [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 101), - [3947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 101), - [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 49), - [3951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 49), - [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 2, .production_id = 7), - [3955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 2, .production_id = 7), - [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 42), - [3959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 42), - [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 2), - [3963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 2), - [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 18), - [3967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 18), - [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 2), - [3971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 2), - [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 6, .production_id = 115), - [3975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 6, .production_id = 115), - [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 97), - [3979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 97), - [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 67), - [3983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 67), - [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 142), - [3987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 142), - [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 143), - [3991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 143), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 2), - [3995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 2), - [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 144), - [3999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 144), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3, .production_id = 34), - [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3, .production_id = 34), - [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, .production_id = 38), - [4007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, .production_id = 38), - [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, .production_id = 146), - [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, .production_id = 146), - [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 97), - [4015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 97), - [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 9, .production_id = 147), - [4019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 9, .production_id = 147), - [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 5, .production_id = 34), - [4023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 5, .production_id = 34), - [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 2), - [4027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 2), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 137), - [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 137), - [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 3, .production_id = 33), - [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 3, .production_id = 33), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 106), - [4039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 106), - [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 103), - [4043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 103), - [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 26), - [4047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 26), - [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_statement, 3), - [4051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_statement, 3), - [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 49), - [4055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 49), - [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 94), - [4059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 94), - [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 93), - [4063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 93), - [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5), - [4067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5), - [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, .production_id = 24), - [4071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, .production_id = 24), - [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 140), - [4075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 140), - [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 24), - [4079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 24), - [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 117), - [4083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 117), - [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 118), - [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 118), - [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 72), - [4091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 72), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 18), - [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 18), - [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 18), - [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 18), - [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, .production_id = 18), - [4103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, .production_id = 18), - [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), - [4107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), - [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 72), - [4111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 72), - [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 135), - [4115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 135), - [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), - [4119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), - [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3), - [4123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3), - [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 3), - [4127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 3), - [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3), - [4131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3), - [4133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 122), - [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 122), - [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 3), - [4139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 3), - [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 134), - [4143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 134), - [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 6, .production_id = 34), - [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 6, .production_id = 34), - [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 103), - [4151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 103), - [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 132), - [4155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 132), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 98), - [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 98), - [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 80), - [4163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 80), - [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), - [4167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), - [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2), - [4173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2), - [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 1), - [4177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 1), - [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 124), - [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 124), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2), - [4185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2), - [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [4189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 2), - [4193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 2), - [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 67), - [4197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 67), - [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [4201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 67), - [4205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 67), - [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), - [4209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), - [4211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), SHIFT_REPEAT(3849), - [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [4216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 67), - [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 67), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, .production_id = 8), - [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, .production_id = 8), - [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 72), - [4228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 72), - [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 72), - [4232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 72), - [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_list, 1), - [4236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_list, 1), - [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 103), - [4240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 103), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 79), - [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 79), - [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, .production_id = 127), - [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 6, .production_id = 127), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4, .production_id = 34), - [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4, .production_id = 34), - [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 103), - [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 103), - [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 73), - [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 73), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 127), - [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 127), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 101), - [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 101), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 128), - [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 128), - [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 2), - [4306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 2), - [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 3), - [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 3), - [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 1), - [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 1), - [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), - [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), - [4322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), - [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), - [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [4416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_definition, 2), - [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_definition, 2), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), - [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4730), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2), + [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4), + [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(526), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4389), + [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3911), + [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(3447), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4734), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3331), + [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(443), + [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(455), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3912), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4732), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3524), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2170), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4730), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4728), + [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2900), + [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(481), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(482), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(484), + [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4331), + [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(175), + [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(509), + [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(520), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(952), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(230), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(523), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(419), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(353), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(228), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4304), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3937), + [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(952), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4720), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1590), + [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3108), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3109), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3111), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3114), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(562), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4285), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4270), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1439), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1438), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(65), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3679), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(106), + [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4712), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4710), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3319), + [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3594), + [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3573), + [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3550), + [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3551), + [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4051), + [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4068), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 2), + [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 3), + [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_labeled_statement, 1), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), + [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 1), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 1), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 2), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 2), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 1, .production_id = 2), + [613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 1, .production_id = 2), + [615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 3), + [617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 3), + [619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 1), + [621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 1), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1847), + [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4349), + [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(283), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), + [980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(486), + [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3467), + [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(598), + [989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(813), + [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4240), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2170), + [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2900), + [1001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(816), + [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(576), + [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(514), + [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4220), + [1013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(387), + [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(775), + [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(480), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2034), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(278), + [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(483), + [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(407), + [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(336), + [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(272), + [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4230), + [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3953), + [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2034), + [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4648), + [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1590), + [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3108), + [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3109), + [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3111), + [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3114), + [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3617), + [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3607), + [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3606), + [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3604), + [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3870), + [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3871), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2826), + [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4225), + [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(249), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), + [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(511), + [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3455), + [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(527), + [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(800), + [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4303), + [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2170), + [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2900), + [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(401), + [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(550), + [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(628), + [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4209), + [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(295), + [1228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(807), + [1231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(648), + [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2705), + [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(262), + [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4373), + [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(513), + [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(416), + [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(321), + [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(288), + [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4207), + [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3999), + [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2705), + [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4545), + [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(1590), + [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3108), + [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3109), + [1276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3111), + [1279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3114), + [1282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3593), + [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3588), + [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3587), + [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3586), + [1294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4005), + [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4006), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arms, 1), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 60), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 54), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 2), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 91), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 3), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 3), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_element_list, 1), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_statement, 1), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_statement, 1), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 1), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1160), + [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4134), + [1800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(253), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), + [1805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(504), + [1808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3459), + [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(596), + [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(833), + [1817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4227), + [1820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2170), + [1823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2900), + [1826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(837), + [1829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(608), + [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(617), + [1835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4366), + [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(354), + [1841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(780), + [1844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(623), + [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1243), + [1850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(263), + [1853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(502), + [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(405), + [1859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(382), + [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(244), + [1865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4199), + [1868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4004), + [1871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1243), + [1874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4681), + [1877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1590), + [1880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3108), + [1883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3109), + [1886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3111), + [1889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3114), + [1892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3589), + [1895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3590), + [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3591), + [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3592), + [1904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4002), + [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4001), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [1934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2440), + [1937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4319), + [1940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(286), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), + [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(665), + [1948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3465), + [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(491), + [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(492), + [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4381), + [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2170), + [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2900), + [1966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(495), + [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(499), + [1972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(507), + [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4329), + [1978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(350), + [1981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(508), + [1984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(510), + [1987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2329), + [1990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(243), + [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(661), + [1996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(396), + [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(345), + [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(232), + [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4339), + [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3918), + [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2329), + [2014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4584), + [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(1590), + [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3108), + [2023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3109), + [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3111), + [2029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3114), + [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3622), + [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3623), + [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3624), + [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3629), + [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3899), + [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3898), + [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_go_expression, 2), + [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_go_expression, 2), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_in_expression, 3, .production_id = 29), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_in_expression, 3, .production_id = 29), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in_expression, 3, .production_id = 29), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in_expression, 3, .production_id = 29), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 26), + [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 26), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_expression, 2), + [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutable_expression, 2), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_append_statement, 3, .production_id = 29), + [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_append_statement, 3, .production_id = 29), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receive_expression, 2, .production_id = 3), + [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receive_expression, 2, .production_id = 3), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spawn_expression, 2), + [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spawn_expression, 2), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 3), + [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 3), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [2262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1288), + [2265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4191), + [2268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(257), + [2271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(613), + [2274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3458), + [2277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(469), + [2280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(467), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), + [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4120), + [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2170), + [2291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2900), + [2294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(466), + [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(465), + [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(452), + [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4193), + [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(381), + [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(447), + [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(444), + [2315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1294), + [2318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(290), + [2321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(610), + [2324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(398), + [2327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(320), + [2330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(235), + [2333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4267), + [2336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4012), + [2339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1294), + [2342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4625), + [2345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1590), + [2348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3108), + [2351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3109), + [2354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3111), + [2357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3114), + [2360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3631), + [2363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3602), + [2366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3545), + [2369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3552), + [2372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3987), + [2375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3986), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 20), + [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 20), + [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 21), + [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 21), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 64), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 1, .production_id = 27), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 20), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 20), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), + [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), + [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 1), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 1), + [2742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), + [2745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 53), + [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 53), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_type_without_special, 1), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plain_type_without_special, 1), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 2), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 2), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inc_expression, 2), + [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inc_expression, 2), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 5, .production_id = 50), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 5, .production_id = 50), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 6, .production_id = 56), + [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 6, .production_id = 56), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 4), + [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 4), + [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3), + [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 3), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_type, 4, .production_id = 51), + [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_type, 4, .production_id = 51), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_selector_expression, 4), + [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_selector_expression, 4), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), + [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 4, .production_id = 57), + [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_type, 4, .production_id = 57), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 3), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 3), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 5), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 5), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_reference_expression, 1), + [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_reference_expression, 1), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 4), + [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 4), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4), + [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 4), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block, 2, .production_id = 30), + [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block, 2, .production_id = 30), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 19), + [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 19), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), + [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2), + [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 2), + [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 2), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wrong_pointer_type, 2), + [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wrong_pointer_type, 2), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 2, .production_id = 7), + [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 2, .production_id = 7), + [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 1), + [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 1), + [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_expression, 2), + [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_expression, 2), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 2), + [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 2), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5, .production_id = 56), + [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5, .production_id = 56), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 2), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 2), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 2, .production_id = 16), + [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 2, .production_id = 16), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5), + [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 3), + [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 3), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pseudo_compile_time_identifier, 2), + [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pseudo_compile_time_identifier, 2), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), + [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5, .production_id = 54), + [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5, .production_id = 54), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 87), + [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 87), + [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 30), + [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 30), + [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 86), + [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 86), + [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, .production_id = 82), + [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, .production_id = 82), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), + [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 31), + [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 31), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 3, .production_id = 22), + [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 3, .production_id = 22), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 3), + [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 3), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 32), + [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type, 3, .production_id = 32), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), + [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), + [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), + [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), + [2984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), + [2987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), + [2994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), + [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), + [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 3), + [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 3), + [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3), + [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 3), + [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 3), + [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), + [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), + [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 2), + [3022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 2), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 70), + [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 70), + [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 2), + [3030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 2), + [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 69), + [3034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 69), + [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thread_type, 2), + [3038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thread_type, 2), + [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_type, 2), + [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_type, 2), + [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shared_type, 2), + [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shared_type, 2), + [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 25), + [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 25), + [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, .production_id = 65), + [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, .production_id = 65), + [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 2), + [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 2), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 63), + [3062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 63), + [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 2), + [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 2), + [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 2), + [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 2), + [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 112), + [3078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 112), + [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 3), + [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 3), + [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 2), + [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 2), + [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dec_expression, 2), + [3090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dec_expression, 2), + [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_type_cast_expression, 3), + [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_type_cast_expression, 3), + [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_propagation_expression, 2), + [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_propagation_expression, 2), + [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__content_block, 3), + [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__content_block, 3), + [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_type, 2), + [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_type, 2), + [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_propagation_expression, 2), + [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_propagation_expression, 2), + [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4, .production_id = 56), + [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4, .production_id = 56), + [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), + [3118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), + [3120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4105), + [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_with_blocks, 1), + [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_with_blocks, 1), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plain_type, 1), + [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plain_type, 1), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4), + [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 3), + [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 3), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block_expression, 2), + [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block_expression, 2), + [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 4, .production_id = 54), + [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 4, .production_id = 54), + [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 21), + [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 21), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 20), + [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 20), + [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer, 2, .production_id = 10), + [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer, 2, .production_id = 10), + [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 4), + [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 4), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1), + [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 3, .production_id = 15), + [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 3, .production_id = 15), + [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 3, .production_id = 50), + [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 3, .production_id = 50), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), + [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), + [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 45), + [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 45), + [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 46), + [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 46), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 3), + [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 3), + [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 47), + [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 47), + [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 48), + [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 48), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 1), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), + [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), + [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), + [3313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 2), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), + [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 4), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_definition, 3, .production_id = 36), + [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_definition, 3, .production_id = 36), + [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__global_var_value, 2, .production_id = 37), + [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__global_var_value, 2, .production_id = 37), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_statement, 3, .production_id = 28), + [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_statement, 3, .production_id = 28), + [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), + [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [3501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_element, 1), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), + [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_keyed_element, 3, .production_id = 35), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [3525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), + [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), + [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), + [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [3577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), REDUCE(aux_sym_element_list_repeat1, 1), + [3580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(3872), + [3583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_element_list_repeat1, 1), + [3585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_name, 1), + [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [3591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4406), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [3602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 1), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 1), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 6), + [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__max_group, 1), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_attribute, 1), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__max_group, 1), + [3666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_literal, 1), SHIFT(3194), + [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), + [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [3701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(3194), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 4), + [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 4), + [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 2), + [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), + [3744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(4443), + [3747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(3081), + [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 1), + [3752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 1), + [3754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 1), SHIFT(4443), + [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [3759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), + [3761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), + [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 2), + [3793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 2), + [3795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 2), SHIFT(4443), + [3798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(431), + [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 14), + [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 14), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), + [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [3811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1), + [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), + [3815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1), + [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 5, .production_id = 78), + [3819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 5, .production_id = 78), + [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 81), + [3823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 81), + [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 133), + [3827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 133), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 3), + [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 3), + [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 126), + [3835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 126), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 125), + [3841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 125), + [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 123), + [3845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 123), + [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 141), + [3849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 141), + [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 96), + [3853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 96), + [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 145), + [3857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 145), + [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 120), + [3861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 120), + [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 71), + [3865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 71), + [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 119), + [3869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 119), + [3871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 116), + [3873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 116), + [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 107), + [3877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 107), + [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 136), + [3881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 136), + [3883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 43), + [3885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 43), + [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 44), + [3889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 44), + [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 138), + [3893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 138), + [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 102), + [3897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 102), + [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 100), + [3901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 100), + [3903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 95), + [3905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 95), + [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 99), + [3909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 99), + [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 66), + [3913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 66), + [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, .production_id = 38), + [3917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, .production_id = 38), + [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 124), + [3921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 124), + [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, .production_id = 34), + [3925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, .production_id = 34), + [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 67), + [3929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 67), + [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 67), + [3933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 67), + [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 139), + [3937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 139), + [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 94), + [3941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 94), + [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 67), + [3945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 67), + [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 73), + [3949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 73), + [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), + [3953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), + [3955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), SHIFT_REPEAT(3697), + [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2), + [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2), + [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 93), + [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 93), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 2), + [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 2), + [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [3972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 2), + [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 2), + [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, .production_id = 8), + [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, .production_id = 8), + [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 49), + [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 49), + [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5), + [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5), + [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 137), + [3996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 137), + [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 2), + [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 2), + [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4, .production_id = 34), + [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4, .production_id = 34), + [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2), + [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2), + [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 18), + [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 18), + [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 101), + [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 101), + [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 2), + [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 2), + [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 49), + [4024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 49), + [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 3), + [4028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 3), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 2, .production_id = 7), + [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 2, .production_id = 7), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 72), + [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 72), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 101), + [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 101), + [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_statement, 2), + [4044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_statement, 2), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 103), + [4048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 103), + [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 1), + [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 1), + [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 103), + [4056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 103), + [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 103), + [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 103), + [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 5, .production_id = 34), + [4064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 5, .production_id = 34), + [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, .production_id = 34), + [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, .production_id = 34), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 135), + [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 135), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3, .production_id = 34), + [4080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3, .production_id = 34), + [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 97), + [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 97), + [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 2), + [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 2), + [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 106), + [4092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 106), + [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 42), + [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 42), + [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 108), + [4100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 108), + [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4), + [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4), + [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4), + [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 6, .production_id = 115), + [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 6, .production_id = 115), + [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 3), + [4116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 3), + [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 80), + [4120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 80), + [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 79), + [4124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 79), + [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 134), + [4128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 134), + [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 67), + [4132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 67), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 97), + [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 97), + [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 140), + [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 140), + [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3), + [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3), + [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 24), + [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 24), + [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), + [4152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), + [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3, .production_id = 34), + [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3, .production_id = 34), + [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), + [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), + [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 98), + [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 98), + [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 9, .production_id = 147), + [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 9, .production_id = 147), + [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_statement, 3), + [4172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_statement, 3), + [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_list, 1), + [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_list, 1), + [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 142), + [4180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 142), + [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, .production_id = 24), + [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, .production_id = 24), + [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 117), + [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 117), + [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 3, .production_id = 33), + [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 3, .production_id = 33), + [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 118), + [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 118), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, .production_id = 146), + [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, .production_id = 146), + [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), + [4204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, .production_id = 18), + [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, .production_id = 18), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 72), + [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 72), + [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 72), + [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 72), + [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 121), + [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 121), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 72), + [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 72), + [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 26), + [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 26), + [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 144), + [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 144), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 143), + [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 143), + [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 122), + [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 122), + [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3), + [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3), + [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 6, .production_id = 34), + [4250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 6, .production_id = 34), + [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 132), + [4254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 132), + [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 18), + [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 18), + [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 18), + [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 18), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, .production_id = 127), + [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 6, .production_id = 127), + [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 103), + [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 103), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 128), + [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 128), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 127), + [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 127), + [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), + [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [4310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 1), + [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 1), + [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 3), + [4316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 3), + [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), + [4322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 2), + [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 2), + [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), + [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), + [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), + [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), + [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), + [4472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_definition, 2), + [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_definition, 2), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), + [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), [4550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 1), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 1), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [4568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_without_blocks_list, 1), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [4578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 1), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [4582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4293), - [4585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 1), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 1, .production_id = 6), - [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), - [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), - [4609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), - [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [4619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_arm, 2), - [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm, 2), - [4623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 4, .production_id = 109), - [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), - [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), - [4659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 30), - [4661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 30), - [4663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 2, .production_id = 88), - [4665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 2, .production_id = 88), - [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), - [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [4673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), - [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), - [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [4695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), - [4697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 2), - [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 2), - [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [4717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_expression, 2), - [4719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyed_element, 3, .production_id = 35), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [4723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 3), - [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 3), - [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), - [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), - [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 1), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [4578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_without_blocks_list, 1), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 1, .production_id = 6), + [4586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4105), + [4589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 1), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [4597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 1), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), + [4615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [4625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 30), + [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 30), + [4629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 2, .production_id = 88), + [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 2, .production_id = 88), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [4635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_arm, 2), + [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm, 2), + [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), + [4643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 4, .production_id = 109), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), + [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), + [4695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 2), + [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 2), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [4701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), + [4703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), + [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [4709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyed_element, 3, .production_id = 35), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [4725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_expression, 2), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [4729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 3), + [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 3), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), [4773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 3, .production_id = 36), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), - [4777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [4965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), + [4785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1), + [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), + [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 29), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), - [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 2), - [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [5065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [5071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__definite_range, 3, .production_id = 92), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [5131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [5161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, .production_id = 92), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [5227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 62), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [5243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [5295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_identifier, 2), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), - [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), - [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), - [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__definite_range, 3, .production_id = 92), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 2), + [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [5207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, .production_id = 92), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 62), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [5321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_identifier, 2), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [5465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), - [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), - [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), - [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), - [5669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3), - [5671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 4), - [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [5679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(422), - [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 2), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [5688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(611), - [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [5693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 1), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [5703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(2174), - [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_body_repeat1, 2), - [5708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4443), - [5711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4311), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [5790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(2561), - [5793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__struct_body_repeat1, 2), - [5795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4443), - [5798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4311), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [5805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [5819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), - [5821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), SHIFT_REPEAT(3314), - [5824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1), - [5826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 2, .production_id = 40), - [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [5830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 4, .production_id = 75), - [5832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 4, .production_id = 75), - [5834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 5, .production_id = 105), - [5836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 5, .production_id = 105), - [5838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 111), - [5840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_embedded_definition, 1), - [5842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 2, .production_id = 85), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [5862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifiers, 1), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), - [5870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 1, .production_id = 6), - [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [5876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 3, .production_id = 83), - [5878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 1), - [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_list, 1), - [5886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 3), - [5888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 1), - [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), - [5892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), - [5894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), - [5896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), SHIFT_REPEAT(4362), - [5899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 1), - [5901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [5907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), - [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), - [5911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(3448), - [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), - [5916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(697), - [5919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 110), - [5921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 5, .production_id = 129), - [5923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1), - [5925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1, .production_id = 17), - [5927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 1), - [5929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), + [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), + [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [5677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [5679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 4), + [5681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3), + [5683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(615), + [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [5688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 2), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [5692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(420), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [5703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 1), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [5709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(2288), + [5712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_body_repeat1, 2), + [5714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4564), + [5717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4271), + [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [5740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [5782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(2549), + [5785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__struct_body_repeat1, 2), + [5787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4564), + [5790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4271), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [5825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), + [5827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), SHIFT_REPEAT(3319), + [5830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1), + [5832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 4, .production_id = 75), + [5834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 4, .production_id = 75), + [5836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 5, .production_id = 105), + [5838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 5, .production_id = 105), + [5840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 2, .production_id = 40), + [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [5844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 2, .production_id = 85), + [5846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_embedded_definition, 1), + [5848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 111), + [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [5852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifiers, 1), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [5878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 1, .production_id = 6), + [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [5882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 2), + [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), + [5886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 1), + [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), + [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), + [5892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 4, .production_id = 131), + [5894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 1), + [5896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 5, .production_id = 129), + [5898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), + [5900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), SHIFT_REPEAT(4392), + [5903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(3463), + [5906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), + [5908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(521), + [5911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 1), + [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [5915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1, .production_id = 17), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [5919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_list, 1), + [5921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 1), + [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [5925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 3, .production_id = 83), + [5927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1), + [5929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 3), [5931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 2), - [5933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 4, .production_id = 131), - [5935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 2), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [5955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [5959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [5965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [5967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [5969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifiers, 1), - [5971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [5973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [5977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [5981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [5985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(210), - [5988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [6004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 1), - [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [6042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [6046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_name, 1), - [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [6072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), - [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [6144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), SHIFT_REPEAT(3510), - [6147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), - [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [6161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(3571), - [6164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(3571), - [6167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(480), - [6170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), - [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [6300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 2), - [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [6344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [6358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(3639), - [6361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(3639), - [6364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(476), - [6367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), - [6369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(433), - [6372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [6418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 1), - [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [6430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 4, .production_id = 130), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [6438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [6440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [6444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 5), - [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [6448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 2), - [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [6452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 1), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), - [6460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 2), - [6462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), - [6464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), SHIFT_REPEAT(60), - [6467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), - [6469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 2, .production_id = 84), - [6471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), - [6473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__enum_body_repeat1, 1), - [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [6505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 3), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [6537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [6543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), SHIFT_REPEAT(3006), - [6546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), - [6548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), SHIFT_REPEAT(4336), - [6551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [6555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3122), - [6558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [6574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), SHIFT_REPEAT(4518), - [6577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), - [6579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), SHIFT_REPEAT(3458), - [6582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [6594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), - [6600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym___rcbr, 1), - [6602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym___rcbr, 1), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4709), - [6608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 3, .production_id = 61), - [6610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 3, .production_id = 61), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [6614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 4, .production_id = 61), - [6616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 4, .production_id = 61), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [6644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 3), - [6646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 4), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [6652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_name, 1), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), - [6672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [6720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), SHIFT_REPEAT(2887), - [6723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [6727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), SHIFT_REPEAT(331), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [6780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameter, 1), - [6782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 2), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [6790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, .production_id = 13), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [6800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), SHIFT_REPEAT(3936), - [6803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [6819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 5), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [6845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 5), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [6881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [6907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(431), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [6914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1, .production_id = 55), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [6918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 2), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [6942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm_type, 1), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [6948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), SHIFT_REPEAT(3954), - [6951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), - [6953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), SHIFT_REPEAT(3955), - [6956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [6992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(3668), - [6995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [7017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 1), - [7019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2, .production_id = 55), - [7021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [7031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), SHIFT_REPEAT(3317), - [7034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [7040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [7078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_attribute, 1), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [7090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), SHIFT_REPEAT(3568), - [7093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [7125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [7143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 4), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [7179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(393), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [7192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(389), - [7195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(3683), - [7198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [7222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overridable_operator, 1), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [7226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [7234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(457), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), - [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), - [7247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 3), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), - [7255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 2), - [7257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 3, .production_id = 76), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [7265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 41), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [7279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 77), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [7283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 74), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [7309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 40), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [7313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 39), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [5937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), + [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), + [5941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 110), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [5955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [5957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(216), + [5960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [5972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [5978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [5986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_name, 1), + [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [6008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 1), + [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [6014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [6018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifiers, 1), + [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [6042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [6092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(3548), + [6095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(3548), + [6098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(774), + [6101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), + [6103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(3549), + [6106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(3549), + [6109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(658), + [6112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), + [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [6130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(414), + [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [6139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [6141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [6187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [6205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [6229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [6233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [6241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [6255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), SHIFT_REPEAT(3518), + [6258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), + [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [6344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [6372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [6378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 2), + [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [6420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 1), + [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [6430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [6434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 5), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), + [6448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__enum_body_repeat1, 1), + [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [6452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 2, .production_id = 84), + [6454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), + [6456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), SHIFT_REPEAT(64), + [6459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), + [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [6463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 2), + [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), + [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), + [6471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 2), + [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [6475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 1), + [6477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 4, .production_id = 130), + [6479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [6499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [6511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym___rcbr, 1), + [6513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym___rcbr, 1), + [6515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), SHIFT_REPEAT(4463), + [6518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [6522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 3, .production_id = 61), + [6524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 3, .production_id = 61), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [6540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 3), + [6542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), SHIFT_REPEAT(3010), + [6545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [6551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), SHIFT_REPEAT(4246), + [6554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [6558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), SHIFT_REPEAT(3460), + [6561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [6565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3056), + [6568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [6570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 3), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [6574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [6582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 4, .production_id = 61), + [6584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 4, .production_id = 61), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [6592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 4), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), + [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4709), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [6680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_name, 1), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [6724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [6742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 3), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [6746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [6772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overridable_operator, 1), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [6784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), SHIFT_REPEAT(3316), + [6787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [6811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm_type, 1), + [6813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1, .production_id = 55), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [6821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), + [6823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), SHIFT_REPEAT(4080), + [6826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [6860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameter, 1), + [6862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(439), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [6877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(3672), + [6880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [6882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), SHIFT_REPEAT(2919), + [6885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), + [6887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 4), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [6893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_attribute, 1), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [6897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4), + [6899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), SHIFT_REPEAT(3597), + [6902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), + [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [6906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 2), + [6908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(779), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [6925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [6933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2, .production_id = 55), + [6935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(408), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [6942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(3662), + [6945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [6971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(393), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [6994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 1), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [7008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 5), + [7010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 5), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [7014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, .production_id = 13), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [7020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), SHIFT_REPEAT(352), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [7067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), + [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4499), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [7189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), SHIFT_REPEAT(4066), + [7192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [7206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), SHIFT_REPEAT(4073), + [7209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [7233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 2), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [7283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 2, .production_id = 23), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [7331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_expression, 1), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [7339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 3), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [7353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_attribute, 3, .production_id = 52), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [7397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 2, .production_id = 23), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [7435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 5), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [7441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 4, .production_id = 104), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [7451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [7463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 1), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [7483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2, .production_id = 113), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [7505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 114), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), - [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [7345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 5), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [7353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [7373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2, .production_id = 113), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [7385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 4, .production_id = 104), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [7415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 1), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [7431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 77), + [7433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 3, .production_id = 76), + [7435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 74), + [7437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 39), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [7445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 40), + [7447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_expression, 1), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [7471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_attribute, 3, .production_id = 52), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [7475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 3), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [7487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 2), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [7497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 41), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [7501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 2), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [7505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 59), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [7513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_backed_type, 2), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [7519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_else_arn_clause, 2), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [7527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 58), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [7549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 4), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [7557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_var_declaration, 3, .production_id = 33), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [7569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 89), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [7575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 90), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [7597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 6), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [7607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 89), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [7671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 90), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [7687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_arm_assignment_statement, 2), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [7695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_var_declaration, 3, .production_id = 33), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [7825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_receiver, 1), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [7903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 4), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [7907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_backed_type, 2), - [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [7927] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [7951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [7955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), - [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [7969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_else_arn_clause, 2), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 2), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 58), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 59), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [7601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 114), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [7609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_arm_assignment_statement, 2), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [7621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 6), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [7909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_receiver, 1), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [7969] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [7999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), }; #ifdef __cplusplus diff --git a/tree_sitter_v/test/corpus/comments.txt b/tree_sitter_v/test/corpus/comments.txt index 9802dd51..525272d7 100644 --- a/tree_sitter_v/test/corpus/comments.txt +++ b/tree_sitter_v/test/corpus/comments.txt @@ -74,22 +74,3 @@ module foo (module_clause (identifier)) (comment)) - -================================================================================ -Shebang -================================================================================ -#!/usr/bin/env -S v - -foo := 'foo' --------------------------------------------------------------------------------- - -(source_file - (comment) - (simple_statement - (var_declaration - (expression_list - (reference_expression - (identifier))) - (expression_list - (literal - (interpreted_string_literal)))))) diff --git a/tree_sitter_v/test/corpus/shebang.txt b/tree_sitter_v/test/corpus/shebang.txt new file mode 100644 index 00000000..0307983b --- /dev/null +++ b/tree_sitter_v/test/corpus/shebang.txt @@ -0,0 +1,18 @@ +================================================================================ +Shebang +================================================================================ +#!/usr/bin/env -S v + +foo := 'foo' +-------------------------------------------------------------------------------- + +(source_file + (shebang) + (simple_statement + (var_declaration + (expression_list + (reference_expression + (identifier))) + (expression_list + (literal + (interpreted_string_literal)))))) From 3e6555b4d0f53ee522a9a55840c0dcc12105f85d Mon Sep 17 00:00:00 2001 From: Lycs-D <139197676+Lycs-D@users.noreply.github.com> Date: Sat, 16 Mar 2024 08:14:13 +0800 Subject: [PATCH 2/2] [tree_sitter_v] Add shebang highlights to comment --- tree_sitter_v/queries/helix.highlights.scm | 5 ++++- tree_sitter_v/queries/highlights.scm | 6 +++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/tree_sitter_v/queries/helix.highlights.scm b/tree_sitter_v/queries/helix.highlights.scm index c39c4ca7..ec66e11d 100644 --- a/tree_sitter_v/queries/helix.highlights.scm +++ b/tree_sitter_v/queries/helix.highlights.scm @@ -1,4 +1,7 @@ -(comment) @comment +[ + (comment) + (shebang) +] @comment (module_clause (identifier) @namespace) diff --git a/tree_sitter_v/queries/highlights.scm b/tree_sitter_v/queries/highlights.scm index 0d2f73bf..0403d767 100644 --- a/tree_sitter_v/queries/highlights.scm +++ b/tree_sitter_v/queries/highlights.scm @@ -1,5 +1,9 @@ (ERROR) @error -(comment) @comment + +[ + (comment) + (shebang) +] @comment (identifier) @variable (import_path) @variable